Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 1 | /* |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 2 | * linux/arch/arm/mach-pxa/cm-x2xx.c |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 3 | * |
Mike Rapoport | 4adc5fb | 2008-10-05 10:26:10 +0100 | [diff] [blame] | 4 | * Copyright (C) 2008 CompuLab, Ltd. |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 5 | * Mike Rapoport <mike@compulab.co.il> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 12 | #include <linux/platform_device.h> |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 13 | #include <linux/sysdev.h> |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 14 | #include <linux/irq.h> |
| 15 | #include <linux/gpio.h> |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 16 | |
| 17 | #include <linux/dm9000.h> |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 18 | #include <linux/leds.h> |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 19 | |
| 20 | #include <asm/mach/arch.h> |
| 21 | #include <asm/mach-types.h> |
| 22 | #include <asm/mach/map.h> |
| 23 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 24 | #include <mach/pxa2xx-regs.h> |
| 25 | #include <mach/mfp-pxa27x.h> |
| 26 | #include <mach/pxa-regs.h> |
| 27 | #include <mach/audio.h> |
| 28 | #include <mach/pxafb.h> |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 29 | |
| 30 | #include <asm/hardware/it8152.h> |
| 31 | |
| 32 | #include "generic.h" |
Mike Rapoport | 7d76e3f | 2008-10-07 11:58:25 +0100 | [diff] [blame] | 33 | #include "cm-x2xx-pci.h" |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 34 | |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 35 | extern void cmx255_init(void); |
Mike Rapoport | 4adc5fb | 2008-10-05 10:26:10 +0100 | [diff] [blame] | 36 | extern void cmx270_init(void); |
| 37 | |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 38 | /* virtual addresses for statically mapped regions */ |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 39 | #define CMX2XX_VIRT_BASE (0xe8000000) |
| 40 | #define CMX2XX_IT8152_VIRT (CMX2XX_VIRT_BASE) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 41 | |
Mike Rapoport | 4adc5fb | 2008-10-05 10:26:10 +0100 | [diff] [blame] | 42 | /* physical address if local-bus attached devices */ |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 43 | #define CMX255_DM9000_PHYS_BASE (PXA_CS1_PHYS + (8 << 22)) |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 44 | #define CMX270_DM9000_PHYS_BASE (PXA_CS1_PHYS + (6 << 22)) |
| 45 | |
| 46 | /* leds */ |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 47 | #define CMX255_GPIO_RED (27) |
| 48 | #define CMX255_GPIO_GREEN (32) |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 49 | #define CMX270_GPIO_RED (93) |
| 50 | #define CMX270_GPIO_GREEN (94) |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 51 | |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 52 | /* GPIO IRQ usage */ |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 53 | #define GPIO22_ETHIRQ (22) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 54 | #define GPIO10_ETHIRQ (10) |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 55 | #define CMX255_GPIO_IT8152_IRQ (0) |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 56 | #define CMX270_GPIO_IT8152_IRQ (22) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 57 | |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 58 | #define CMX255_ETHIRQ IRQ_GPIO(GPIO22_ETHIRQ) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 59 | #define CMX270_ETHIRQ IRQ_GPIO(GPIO10_ETHIRQ) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 60 | |
| 61 | #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE) |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 62 | static struct resource cmx255_dm9000_resource[] = { |
| 63 | [0] = { |
| 64 | .start = CMX255_DM9000_PHYS_BASE, |
| 65 | .end = CMX255_DM9000_PHYS_BASE + 3, |
| 66 | .flags = IORESOURCE_MEM, |
| 67 | }, |
| 68 | [1] = { |
| 69 | .start = CMX255_DM9000_PHYS_BASE + 4, |
| 70 | .end = CMX255_DM9000_PHYS_BASE + 4 + 500, |
| 71 | .flags = IORESOURCE_MEM, |
| 72 | }, |
| 73 | [2] = { |
| 74 | .start = CMX255_ETHIRQ, |
| 75 | .end = CMX255_ETHIRQ, |
| 76 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE, |
| 77 | } |
| 78 | }; |
| 79 | |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 80 | static struct resource cmx270_dm9000_resource[] = { |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 81 | [0] = { |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 82 | .start = CMX270_DM9000_PHYS_BASE, |
| 83 | .end = CMX270_DM9000_PHYS_BASE + 3, |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 84 | .flags = IORESOURCE_MEM, |
| 85 | }, |
| 86 | [1] = { |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 87 | .start = CMX270_DM9000_PHYS_BASE + 8, |
| 88 | .end = CMX270_DM9000_PHYS_BASE + 8 + 500, |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 89 | .flags = IORESOURCE_MEM, |
| 90 | }, |
| 91 | [2] = { |
| 92 | .start = CMX270_ETHIRQ, |
| 93 | .end = CMX270_ETHIRQ, |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 94 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE, |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 95 | } |
| 96 | }; |
| 97 | |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 98 | static struct dm9000_plat_data cmx270_dm9000_platdata = { |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 99 | .flags = DM9000_PLATF_32BITONLY, |
| 100 | }; |
| 101 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 102 | static struct platform_device cmx2xx_dm9000_device = { |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 103 | .name = "dm9000", |
| 104 | .id = 0, |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 105 | .num_resources = ARRAY_SIZE(cmx270_dm9000_resource), |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 106 | .dev = { |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 107 | .platform_data = &cmx270_dm9000_platdata, |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 108 | } |
| 109 | }; |
| 110 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 111 | static void __init cmx2xx_init_dm9000(void) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 112 | { |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 113 | if (cpu_is_pxa25x()) |
| 114 | cmx2xx_dm9000_device.resource = cmx255_dm9000_resource; |
| 115 | else |
| 116 | cmx2xx_dm9000_device.resource = cmx270_dm9000_resource; |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 117 | platform_device_register(&cmx2xx_dm9000_device); |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 118 | } |
| 119 | #else |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 120 | static inline void cmx2xx_init_dm9000(void) {} |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 121 | #endif |
| 122 | |
| 123 | /* UCB1400 touchscreen controller */ |
| 124 | #if defined(CONFIG_TOUCHSCREEN_UCB1400) || defined(CONFIG_TOUCHSCREEN_UCB1400_MODULE) |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 125 | static struct platform_device cmx2xx_ts_device = { |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 126 | .name = "ucb1400_ts", |
| 127 | .id = -1, |
| 128 | }; |
| 129 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 130 | static void __init cmx2xx_init_touchscreen(void) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 131 | { |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 132 | platform_device_register(&cmx2xx_ts_device); |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 133 | } |
| 134 | #else |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 135 | static inline void cmx2xx_init_touchscreen(void) {} |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 136 | #endif |
| 137 | |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 138 | /* CM-X270 LEDs */ |
| 139 | #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE) |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 140 | static struct gpio_led cmx2xx_leds[] = { |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 141 | [0] = { |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 142 | .name = "cm-x2xx:red", |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 143 | .default_trigger = "nand-disk", |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 144 | .active_low = 1, |
| 145 | }, |
| 146 | [1] = { |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 147 | .name = "cm-x2xx:green", |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 148 | .default_trigger = "heartbeat", |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 149 | .active_low = 1, |
| 150 | }, |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 151 | }; |
| 152 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 153 | static struct gpio_led_platform_data cmx2xx_gpio_led_pdata = { |
| 154 | .num_leds = ARRAY_SIZE(cmx2xx_leds), |
| 155 | .leds = cmx2xx_leds, |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 156 | }; |
| 157 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 158 | static struct platform_device cmx2xx_led_device = { |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 159 | .name = "leds-gpio", |
| 160 | .id = -1, |
| 161 | .dev = { |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 162 | .platform_data = &cmx2xx_gpio_led_pdata, |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 163 | }, |
| 164 | }; |
| 165 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 166 | static void __init cmx2xx_init_leds(void) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 167 | { |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 168 | if (cpu_is_pxa25x()) { |
| 169 | cmx2xx_leds[0].gpio = CMX255_GPIO_RED; |
| 170 | cmx2xx_leds[1].gpio = CMX255_GPIO_GREEN; |
| 171 | } else { |
| 172 | cmx2xx_leds[0].gpio = CMX270_GPIO_RED; |
| 173 | cmx2xx_leds[1].gpio = CMX270_GPIO_GREEN; |
| 174 | } |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 175 | platform_device_register(&cmx2xx_led_device); |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 176 | } |
| 177 | #else |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 178 | static inline void cmx2xx_init_leds(void) {} |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 179 | #endif |
| 180 | |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 181 | #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE) |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 182 | /* |
| 183 | Display definitions |
| 184 | keep these for backwards compatibility, although symbolic names (as |
| 185 | e.g. in lpd270.c) looks better |
| 186 | */ |
| 187 | #define MTYPE_STN320x240 0 |
| 188 | #define MTYPE_TFT640x480 1 |
| 189 | #define MTYPE_CRT640x480 2 |
| 190 | #define MTYPE_CRT800x600 3 |
| 191 | #define MTYPE_TFT320x240 6 |
| 192 | #define MTYPE_STN640x480 7 |
| 193 | |
| 194 | static struct pxafb_mode_info generic_stn_320x240_mode = { |
| 195 | .pixclock = 76923, |
| 196 | .bpp = 8, |
| 197 | .xres = 320, |
| 198 | .yres = 240, |
| 199 | .hsync_len = 3, |
| 200 | .vsync_len = 2, |
| 201 | .left_margin = 3, |
| 202 | .upper_margin = 0, |
| 203 | .right_margin = 3, |
| 204 | .lower_margin = 0, |
| 205 | .sync = (FB_SYNC_HOR_HIGH_ACT | |
| 206 | FB_SYNC_VERT_HIGH_ACT), |
| 207 | .cmap_greyscale = 0, |
| 208 | }; |
| 209 | |
| 210 | static struct pxafb_mach_info generic_stn_320x240 = { |
| 211 | .modes = &generic_stn_320x240_mode, |
| 212 | .num_modes = 1, |
| 213 | .lccr0 = 0, |
| 214 | .lccr3 = (LCCR3_PixClkDiv(0x03) | |
| 215 | LCCR3_Acb(0xff) | |
| 216 | LCCR3_PCP), |
| 217 | .cmap_inverse = 0, |
| 218 | .cmap_static = 0, |
| 219 | }; |
| 220 | |
| 221 | static struct pxafb_mode_info generic_tft_640x480_mode = { |
| 222 | .pixclock = 38461, |
| 223 | .bpp = 8, |
| 224 | .xres = 640, |
| 225 | .yres = 480, |
| 226 | .hsync_len = 60, |
| 227 | .vsync_len = 2, |
| 228 | .left_margin = 70, |
| 229 | .upper_margin = 10, |
| 230 | .right_margin = 70, |
| 231 | .lower_margin = 5, |
| 232 | .sync = 0, |
| 233 | .cmap_greyscale = 0, |
| 234 | }; |
| 235 | |
| 236 | static struct pxafb_mach_info generic_tft_640x480 = { |
| 237 | .modes = &generic_tft_640x480_mode, |
| 238 | .num_modes = 1, |
| 239 | .lccr0 = (LCCR0_PAS), |
| 240 | .lccr3 = (LCCR3_PixClkDiv(0x01) | |
| 241 | LCCR3_Acb(0xff) | |
| 242 | LCCR3_PCP), |
| 243 | .cmap_inverse = 0, |
| 244 | .cmap_static = 0, |
| 245 | }; |
| 246 | |
| 247 | static struct pxafb_mode_info generic_crt_640x480_mode = { |
| 248 | .pixclock = 38461, |
| 249 | .bpp = 8, |
| 250 | .xres = 640, |
| 251 | .yres = 480, |
| 252 | .hsync_len = 63, |
| 253 | .vsync_len = 2, |
| 254 | .left_margin = 81, |
| 255 | .upper_margin = 33, |
| 256 | .right_margin = 16, |
| 257 | .lower_margin = 10, |
| 258 | .sync = (FB_SYNC_HOR_HIGH_ACT | |
| 259 | FB_SYNC_VERT_HIGH_ACT), |
| 260 | .cmap_greyscale = 0, |
| 261 | }; |
| 262 | |
| 263 | static struct pxafb_mach_info generic_crt_640x480 = { |
| 264 | .modes = &generic_crt_640x480_mode, |
| 265 | .num_modes = 1, |
| 266 | .lccr0 = (LCCR0_PAS), |
| 267 | .lccr3 = (LCCR3_PixClkDiv(0x01) | |
| 268 | LCCR3_Acb(0xff)), |
| 269 | .cmap_inverse = 0, |
| 270 | .cmap_static = 0, |
| 271 | }; |
| 272 | |
| 273 | static struct pxafb_mode_info generic_crt_800x600_mode = { |
| 274 | .pixclock = 28846, |
| 275 | .bpp = 8, |
| 276 | .xres = 800, |
| 277 | .yres = 600, |
| 278 | .hsync_len = 63, |
| 279 | .vsync_len = 2, |
| 280 | .left_margin = 26, |
| 281 | .upper_margin = 21, |
| 282 | .right_margin = 26, |
| 283 | .lower_margin = 11, |
| 284 | .sync = (FB_SYNC_HOR_HIGH_ACT | |
| 285 | FB_SYNC_VERT_HIGH_ACT), |
| 286 | .cmap_greyscale = 0, |
| 287 | }; |
| 288 | |
| 289 | static struct pxafb_mach_info generic_crt_800x600 = { |
| 290 | .modes = &generic_crt_800x600_mode, |
| 291 | .num_modes = 1, |
| 292 | .lccr0 = (LCCR0_PAS), |
| 293 | .lccr3 = (LCCR3_PixClkDiv(0x02) | |
| 294 | LCCR3_Acb(0xff)), |
| 295 | .cmap_inverse = 0, |
| 296 | .cmap_static = 0, |
| 297 | }; |
| 298 | |
| 299 | static struct pxafb_mode_info generic_tft_320x240_mode = { |
| 300 | .pixclock = 134615, |
| 301 | .bpp = 16, |
| 302 | .xres = 320, |
| 303 | .yres = 240, |
| 304 | .hsync_len = 63, |
| 305 | .vsync_len = 7, |
| 306 | .left_margin = 75, |
| 307 | .upper_margin = 0, |
| 308 | .right_margin = 15, |
| 309 | .lower_margin = 15, |
| 310 | .sync = 0, |
| 311 | .cmap_greyscale = 0, |
| 312 | }; |
| 313 | |
| 314 | static struct pxafb_mach_info generic_tft_320x240 = { |
| 315 | .modes = &generic_tft_320x240_mode, |
| 316 | .num_modes = 1, |
| 317 | .lccr0 = (LCCR0_PAS), |
| 318 | .lccr3 = (LCCR3_PixClkDiv(0x06) | |
| 319 | LCCR3_Acb(0xff) | |
| 320 | LCCR3_PCP), |
| 321 | .cmap_inverse = 0, |
| 322 | .cmap_static = 0, |
| 323 | }; |
| 324 | |
| 325 | static struct pxafb_mode_info generic_stn_640x480_mode = { |
| 326 | .pixclock = 57692, |
| 327 | .bpp = 8, |
| 328 | .xres = 640, |
| 329 | .yres = 480, |
| 330 | .hsync_len = 4, |
| 331 | .vsync_len = 2, |
| 332 | .left_margin = 10, |
| 333 | .upper_margin = 5, |
| 334 | .right_margin = 10, |
| 335 | .lower_margin = 5, |
| 336 | .sync = (FB_SYNC_HOR_HIGH_ACT | |
| 337 | FB_SYNC_VERT_HIGH_ACT), |
| 338 | .cmap_greyscale = 0, |
| 339 | }; |
| 340 | |
| 341 | static struct pxafb_mach_info generic_stn_640x480 = { |
| 342 | .modes = &generic_stn_640x480_mode, |
| 343 | .num_modes = 1, |
| 344 | .lccr0 = 0, |
| 345 | .lccr3 = (LCCR3_PixClkDiv(0x02) | |
| 346 | LCCR3_Acb(0xff)), |
| 347 | .cmap_inverse = 0, |
| 348 | .cmap_static = 0, |
| 349 | }; |
| 350 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 351 | static struct pxafb_mach_info *cmx2xx_display = &generic_crt_640x480; |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 352 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 353 | static int __init cmx2xx_set_display(char *str) |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 354 | { |
| 355 | int disp_type = simple_strtol(str, NULL, 0); |
| 356 | switch (disp_type) { |
| 357 | case MTYPE_STN320x240: |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 358 | cmx2xx_display = &generic_stn_320x240; |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 359 | break; |
| 360 | case MTYPE_TFT640x480: |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 361 | cmx2xx_display = &generic_tft_640x480; |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 362 | break; |
| 363 | case MTYPE_CRT640x480: |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 364 | cmx2xx_display = &generic_crt_640x480; |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 365 | break; |
| 366 | case MTYPE_CRT800x600: |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 367 | cmx2xx_display = &generic_crt_800x600; |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 368 | break; |
| 369 | case MTYPE_TFT320x240: |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 370 | cmx2xx_display = &generic_tft_320x240; |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 371 | break; |
| 372 | case MTYPE_STN640x480: |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 373 | cmx2xx_display = &generic_stn_640x480; |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 374 | break; |
| 375 | default: /* fallback to CRT 640x480 */ |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 376 | cmx2xx_display = &generic_crt_640x480; |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 377 | break; |
| 378 | } |
| 379 | return 1; |
| 380 | } |
| 381 | |
| 382 | /* |
| 383 | This should be done really early to get proper configuration for |
| 384 | frame buffer. |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 385 | Indeed, pxafb parameters can be used istead, but CM-X2XX bootloader |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 386 | has limitied line length for kernel command line, and also it will |
| 387 | break compatibitlty with proprietary releases already in field. |
| 388 | */ |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 389 | __setup("monitor=", cmx2xx_set_display); |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 390 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 391 | static void __init cmx2xx_init_display(void) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 392 | { |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 393 | set_pxa_fb_info(cmx2xx_display); |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 394 | } |
| 395 | #else |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 396 | static inline void cmx2xx_init_display(void) {} |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 397 | #endif |
| 398 | |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 399 | #ifdef CONFIG_PM |
| 400 | static unsigned long sleep_save_msc[10]; |
| 401 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 402 | static int cmx2xx_suspend(struct sys_device *dev, pm_message_t state) |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 403 | { |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 404 | cmx2xx_pci_suspend(); |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 405 | |
| 406 | /* save MSC registers */ |
| 407 | sleep_save_msc[0] = MSC0; |
| 408 | sleep_save_msc[1] = MSC1; |
| 409 | sleep_save_msc[2] = MSC2; |
| 410 | |
| 411 | /* setup power saving mode registers */ |
| 412 | PCFR = 0x0; |
| 413 | PSLR = 0xff400000; |
| 414 | PMCR = 0x00000005; |
| 415 | PWER = 0x80000000; |
| 416 | PFER = 0x00000000; |
| 417 | PRER = 0x00000000; |
| 418 | PGSR0 = 0xC0018800; |
| 419 | PGSR1 = 0x004F0002; |
| 420 | PGSR2 = 0x6021C000; |
| 421 | PGSR3 = 0x00020000; |
| 422 | |
| 423 | return 0; |
| 424 | } |
| 425 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 426 | static int cmx2xx_resume(struct sys_device *dev) |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 427 | { |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 428 | cmx2xx_pci_resume(); |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 429 | |
| 430 | /* restore MSC registers */ |
| 431 | MSC0 = sleep_save_msc[0]; |
| 432 | MSC1 = sleep_save_msc[1]; |
| 433 | MSC2 = sleep_save_msc[2]; |
| 434 | |
| 435 | return 0; |
| 436 | } |
| 437 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 438 | static struct sysdev_class cmx2xx_pm_sysclass = { |
Kay Sievers | af5ca3f | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 439 | .name = "pm", |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 440 | .resume = cmx2xx_resume, |
| 441 | .suspend = cmx2xx_suspend, |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 442 | }; |
| 443 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 444 | static struct sys_device cmx2xx_pm_device = { |
| 445 | .cls = &cmx2xx_pm_sysclass, |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 446 | }; |
| 447 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 448 | static int __init cmx2xx_pm_init(void) |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 449 | { |
| 450 | int error; |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 451 | error = sysdev_class_register(&cmx2xx_pm_sysclass); |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 452 | if (error == 0) |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 453 | error = sysdev_register(&cmx2xx_pm_device); |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 454 | return error; |
| 455 | } |
| 456 | #else |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 457 | static int __init cmx2xx_pm_init(void) { return 0; } |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 458 | #endif |
| 459 | |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 460 | #if defined(CONFIG_SND_PXA2XX_AC97) || defined(CONFIG_SND_PXA2XX_AC97_MODULE) |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 461 | static void __init cmx2xx_init_ac97(void) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 462 | { |
| 463 | pxa_set_ac97_info(NULL); |
| 464 | } |
| 465 | #else |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 466 | static inline void cmx2xx_init_ac97(void) {} |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 467 | #endif |
| 468 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 469 | static void __init cmx2xx_init(void) |
| 470 | { |
| 471 | cmx2xx_pm_init(); |
| 472 | |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 473 | if (cpu_is_pxa25x()) |
| 474 | cmx255_init(); |
| 475 | else |
| 476 | cmx270_init(); |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 477 | |
| 478 | cmx2xx_init_dm9000(); |
| 479 | cmx2xx_init_display(); |
| 480 | cmx2xx_init_ac97(); |
| 481 | cmx2xx_init_touchscreen(); |
| 482 | cmx2xx_init_leds(); |
| 483 | } |
| 484 | |
| 485 | static void __init cmx2xx_init_irq(void) |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 486 | { |
| 487 | pxa27x_init_irq(); |
| 488 | |
Mike Rapoport | a7f3f03 | 2008-10-05 10:26:55 +0100 | [diff] [blame] | 489 | if (cpu_is_pxa25x()) { |
| 490 | pxa25x_init_irq(); |
| 491 | cmx2xx_pci_init_irq(CMX255_GPIO_IT8152_IRQ); |
| 492 | } else { |
| 493 | pxa27x_init_irq(); |
| 494 | cmx2xx_pci_init_irq(CMX270_GPIO_IT8152_IRQ); |
| 495 | } |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 496 | } |
| 497 | |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 498 | #ifdef CONFIG_PCI |
| 499 | /* Map PCI companion statically */ |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 500 | static struct map_desc cmx2xx_io_desc[] __initdata = { |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 501 | [0] = { /* PCI bridge */ |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 502 | .virtual = CMX2XX_IT8152_VIRT, |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 503 | .pfn = __phys_to_pfn(PXA_CS4_PHYS), |
| 504 | .length = SZ_64M, |
| 505 | .type = MT_DEVICE |
| 506 | }, |
| 507 | }; |
| 508 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 509 | static void __init cmx2xx_map_io(void) |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 510 | { |
| 511 | pxa_map_io(); |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 512 | iotable_init(cmx2xx_io_desc, ARRAY_SIZE(cmx2xx_io_desc)); |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 513 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 514 | it8152_base_address = CMX2XX_IT8152_VIRT; |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 515 | } |
| 516 | #else |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 517 | static void __init cmx2xx_map_io(void) |
Mike Rapoport | 2f01a97 | 2008-06-17 12:29:58 +0100 | [diff] [blame] | 518 | { |
| 519 | pxa_map_io(); |
| 520 | } |
| 521 | #endif |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 522 | |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 523 | MACHINE_START(ARMCORE, "Compulab CM-X2XX") |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 524 | .boot_params = 0xa0000100, |
| 525 | .phys_io = 0x40000000, |
| 526 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 527 | .map_io = cmx2xx_map_io, |
| 528 | .init_irq = cmx2xx_init_irq, |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 529 | .timer = &pxa_timer, |
Mike Rapoport | da59193 | 2008-10-05 10:25:44 +0100 | [diff] [blame] | 530 | .init_machine = cmx2xx_init, |
Mike Rapoport | 3696a8a | 2007-09-23 15:59:26 +0100 | [diff] [blame] | 531 | MACHINE_END |