blob: cc79005b179467f4009f704669b6d72afc9934bb [file] [log] [blame]
Mike Rapoport3696a8a2007-09-23 15:59:26 +01001/*
Mike Rapoportda591932008-10-05 10:25:44 +01002 * linux/arch/arm/mach-pxa/cm-x2xx.c
Mike Rapoport3696a8a2007-09-23 15:59:26 +01003 *
Mike Rapoport2f01a972008-06-17 12:29:58 +01004 * Copyright (C) 2007, 2008 CompuLab, Ltd.
Mike Rapoport3696a8a2007-09-23 15:59:26 +01005 * 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 Rapoport3696a8a2007-09-23 15:59:26 +010012#include <linux/platform_device.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010013#include <linux/sysdev.h>
Mike Rapoport2f01a972008-06-17 12:29:58 +010014#include <linux/irq.h>
15#include <linux/gpio.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010016
17#include <linux/dm9000.h>
18#include <linux/rtc-v3020.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010019#include <video/mbxfb.h>
Mike Rapoport2f01a972008-06-17 12:29:58 +010020#include <linux/leds.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010021
22#include <asm/mach/arch.h>
23#include <asm/mach-types.h>
24#include <asm/mach/map.h>
25
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/pxa2xx-regs.h>
27#include <mach/mfp-pxa27x.h>
28#include <mach/pxa-regs.h>
29#include <mach/audio.h>
30#include <mach/pxafb.h>
31#include <mach/ohci.h>
32#include <mach/mmc.h>
33#include <mach/bitfield.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010034
35#include <asm/hardware/it8152.h>
36
37#include "generic.h"
Mike Rapoport7d76e3f2008-10-07 11:58:25 +010038#include "cm-x2xx-pci.h"
Mike Rapoport3696a8a2007-09-23 15:59:26 +010039
Mike Rapoport2f01a972008-06-17 12:29:58 +010040/* virtual addresses for statically mapped regions */
Mike Rapoportda591932008-10-05 10:25:44 +010041#define CMX2XX_VIRT_BASE (0xe8000000)
42#define CMX2XX_IT8152_VIRT (CMX2XX_VIRT_BASE)
Mike Rapoport2f01a972008-06-17 12:29:58 +010043
Mike Rapoport3696a8a2007-09-23 15:59:26 +010044#define RTC_PHYS_BASE (PXA_CS1_PHYS + (5 << 22))
Mike Rapoportda591932008-10-05 10:25:44 +010045#define CMX270_DM9000_PHYS_BASE (PXA_CS1_PHYS + (6 << 22))
46
47/* leds */
48#define CMX270_GPIO_RED (93)
49#define CMX270_GPIO_GREEN (94)
Mike Rapoport3696a8a2007-09-23 15:59:26 +010050
Mike Rapoport2f01a972008-06-17 12:29:58 +010051/* GPIO IRQ usage */
52#define GPIO10_ETHIRQ (10)
Mike Rapoportda591932008-10-05 10:25:44 +010053#define CMX270_GPIO_IT8152_IRQ (22)
Mike Rapoport2f01a972008-06-17 12:29:58 +010054#define GPIO83_MMC_IRQ (83)
55#define GPIO95_GFXIRQ (95)
56
57#define CMX270_ETHIRQ IRQ_GPIO(GPIO10_ETHIRQ)
Mike Rapoport2f01a972008-06-17 12:29:58 +010058#define CMX270_MMC_IRQ IRQ_GPIO(GPIO83_MMC_IRQ)
59#define CMX270_GFXIRQ IRQ_GPIO(GPIO95_GFXIRQ)
60
61/* MMC power enable */
62#define GPIO105_MMC_POWER (105)
63
64static unsigned long cmx270_pin_config[] = {
65 /* AC'97 */
66 GPIO28_AC97_BITCLK,
67 GPIO29_AC97_SDATA_IN_0,
68 GPIO30_AC97_SDATA_OUT,
69 GPIO31_AC97_SYNC,
70 GPIO98_AC97_SYSCLK,
71 GPIO113_AC97_nRESET,
72
73 /* BTUART */
74 GPIO42_BTUART_RXD,
75 GPIO43_BTUART_TXD,
76 GPIO44_BTUART_CTS,
77 GPIO45_BTUART_RTS,
78
79 /* STUART */
80 GPIO46_STUART_RXD,
81 GPIO47_STUART_TXD,
82
83 /* MCI controller */
84 GPIO32_MMC_CLK,
85 GPIO112_MMC_CMD,
86 GPIO92_MMC_DAT_0,
87 GPIO109_MMC_DAT_1,
88 GPIO110_MMC_DAT_2,
89 GPIO111_MMC_DAT_3,
90
91 /* LCD */
92 GPIO58_LCD_LDD_0,
93 GPIO59_LCD_LDD_1,
94 GPIO60_LCD_LDD_2,
95 GPIO61_LCD_LDD_3,
96 GPIO62_LCD_LDD_4,
97 GPIO63_LCD_LDD_5,
98 GPIO64_LCD_LDD_6,
99 GPIO65_LCD_LDD_7,
100 GPIO66_LCD_LDD_8,
101 GPIO67_LCD_LDD_9,
102 GPIO68_LCD_LDD_10,
103 GPIO69_LCD_LDD_11,
104 GPIO70_LCD_LDD_12,
105 GPIO71_LCD_LDD_13,
106 GPIO72_LCD_LDD_14,
107 GPIO73_LCD_LDD_15,
108 GPIO74_LCD_FCLK,
109 GPIO75_LCD_LCLK,
110 GPIO76_LCD_PCLK,
111 GPIO77_LCD_BIAS,
112
113 /* I2C */
114 GPIO117_I2C_SCL,
115 GPIO118_I2C_SDA,
116
117 /* SSP1 */
118 GPIO23_SSP1_SCLK,
119 GPIO24_SSP1_SFRM,
120 GPIO25_SSP1_TXD,
121 GPIO26_SSP1_RXD,
122
123 /* SSP2 */
124 GPIO19_SSP2_SCLK,
125 GPIO14_SSP2_SFRM,
126 GPIO87_SSP2_TXD,
127 GPIO88_SSP2_RXD,
128
129 /* PC Card */
130 GPIO48_nPOE,
131 GPIO49_nPWE,
132 GPIO50_nPIOR,
133 GPIO51_nPIOW,
134 GPIO85_nPCE_1,
135 GPIO54_nPCE_2,
136 GPIO55_nPREG,
137 GPIO56_nPWAIT,
138 GPIO57_nIOIS16,
139
140 /* SDRAM and local bus */
141 GPIO15_nCS_1,
142 GPIO78_nCS_2,
143 GPIO79_nCS_3,
144 GPIO80_nCS_4,
145 GPIO33_nCS_5,
146 GPIO49_nPWE,
147 GPIO18_RDY,
148
149 /* GPIO */
150 GPIO0_GPIO | WAKEUP_ON_EDGE_BOTH,
151 GPIO105_GPIO | MFP_LPM_DRIVE_HIGH, /* MMC/SD power */
152 GPIO53_GPIO, /* PC card reset */
153
154 /* NAND controls */
155 GPIO11_GPIO | MFP_LPM_DRIVE_HIGH, /* NAND CE# */
156 GPIO89_GPIO, /* NAND Ready/Busy */
157
158 /* interrupts */
159 GPIO10_GPIO, /* DM9000 interrupt */
160 GPIO83_GPIO, /* MMC card detect */
161};
162
163#if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
164static struct resource cmx270_dm9000_resource[] = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100165 [0] = {
Mike Rapoportda591932008-10-05 10:25:44 +0100166 .start = CMX270_DM9000_PHYS_BASE,
167 .end = CMX270_DM9000_PHYS_BASE + 3,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100168 .flags = IORESOURCE_MEM,
169 },
170 [1] = {
Mike Rapoportda591932008-10-05 10:25:44 +0100171 .start = CMX270_DM9000_PHYS_BASE + 8,
172 .end = CMX270_DM9000_PHYS_BASE + 8 + 500,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100173 .flags = IORESOURCE_MEM,
174 },
175 [2] = {
176 .start = CMX270_ETHIRQ,
177 .end = CMX270_ETHIRQ,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100178 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100179 }
180};
181
Mike Rapoport2f01a972008-06-17 12:29:58 +0100182static struct dm9000_plat_data cmx270_dm9000_platdata = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100183 .flags = DM9000_PLATF_32BITONLY,
184};
185
Mike Rapoportda591932008-10-05 10:25:44 +0100186static struct platform_device cmx2xx_dm9000_device = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100187 .name = "dm9000",
188 .id = 0,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100189 .num_resources = ARRAY_SIZE(cmx270_dm9000_resource),
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100190 .dev = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100191 .platform_data = &cmx270_dm9000_platdata,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100192 }
193};
194
Mike Rapoportda591932008-10-05 10:25:44 +0100195static void __init cmx2xx_init_dm9000(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100196{
Mike Rapoportda591932008-10-05 10:25:44 +0100197 cmx2xx_dm9000_device.resource = cmx270_dm9000_resource,
198 platform_device_register(&cmx2xx_dm9000_device);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100199}
200#else
Mike Rapoportda591932008-10-05 10:25:44 +0100201static inline void cmx2xx_init_dm9000(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100202#endif
203
204/* UCB1400 touchscreen controller */
205#if defined(CONFIG_TOUCHSCREEN_UCB1400) || defined(CONFIG_TOUCHSCREEN_UCB1400_MODULE)
Mike Rapoportda591932008-10-05 10:25:44 +0100206static struct platform_device cmx2xx_ts_device = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100207 .name = "ucb1400_ts",
208 .id = -1,
209};
210
Mike Rapoportda591932008-10-05 10:25:44 +0100211static void __init cmx2xx_init_touchscreen(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100212{
Mike Rapoportda591932008-10-05 10:25:44 +0100213 platform_device_register(&cmx2xx_ts_device);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100214}
215#else
Mike Rapoportda591932008-10-05 10:25:44 +0100216static inline void cmx2xx_init_touchscreen(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100217#endif
218
219/* V3020 RTC */
220#if defined(CONFIG_RTC_DRV_V3020) || defined(CONFIG_RTC_DRV_V3020_MODULE)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100221static struct resource cmx270_v3020_resource[] = {
222 [0] = {
223 .start = RTC_PHYS_BASE,
224 .end = RTC_PHYS_BASE + 4,
225 .flags = IORESOURCE_MEM,
226 },
227};
228
229struct v3020_platform_data cmx270_v3020_pdata = {
230 .leftshift = 16,
231};
232
233static struct platform_device cmx270_rtc_device = {
234 .name = "v3020",
235 .num_resources = ARRAY_SIZE(cmx270_v3020_resource),
236 .resource = cmx270_v3020_resource,
237 .id = -1,
238 .dev = {
239 .platform_data = &cmx270_v3020_pdata,
240 }
241};
242
Mike Rapoport2f01a972008-06-17 12:29:58 +0100243static void __init cmx270_init_rtc(void)
244{
245 platform_device_register(&cmx270_rtc_device);
246}
247#else
Mike Rapoportda591932008-10-05 10:25:44 +0100248static inline void cmx2xx_init_rtc(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100249#endif
250
251/* CM-X270 LEDs */
252#if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
Mike Rapoportda591932008-10-05 10:25:44 +0100253static struct gpio_led cmx2xx_leds[] = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100254 [0] = {
Mike Rapoportda591932008-10-05 10:25:44 +0100255 .name = "cm-x2xx:red",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100256 .default_trigger = "nand-disk",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100257 .active_low = 1,
258 },
259 [1] = {
Mike Rapoportda591932008-10-05 10:25:44 +0100260 .name = "cm-x2xx:green",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100261 .default_trigger = "heartbeat",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100262 .active_low = 1,
263 },
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100264};
265
Mike Rapoportda591932008-10-05 10:25:44 +0100266static struct gpio_led_platform_data cmx2xx_gpio_led_pdata = {
267 .num_leds = ARRAY_SIZE(cmx2xx_leds),
268 .leds = cmx2xx_leds,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100269};
270
Mike Rapoportda591932008-10-05 10:25:44 +0100271static struct platform_device cmx2xx_led_device = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100272 .name = "leds-gpio",
273 .id = -1,
274 .dev = {
Mike Rapoportda591932008-10-05 10:25:44 +0100275 .platform_data = &cmx2xx_gpio_led_pdata,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100276 },
277};
278
Mike Rapoportda591932008-10-05 10:25:44 +0100279static void __init cmx2xx_init_leds(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100280{
Mike Rapoportda591932008-10-05 10:25:44 +0100281 cmx2xx_leds[0].gpio = CMX270_GPIO_RED;
282 cmx2xx_leds[1].gpio = CMX270_GPIO_GREEN;
283 platform_device_register(&cmx2xx_led_device);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100284}
285#else
Mike Rapoportda591932008-10-05 10:25:44 +0100286static inline void cmx2xx_init_leds(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100287#endif
288
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100289/* 2700G graphics */
Mike Rapoport2f01a972008-06-17 12:29:58 +0100290#if defined(CONFIG_FB_MBX) || defined(CONFIG_FB_MBX_MODULE)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100291static u64 fb_dma_mask = ~(u64)0;
292
293static struct resource cmx270_2700G_resource[] = {
294 /* frame buffer memory including ODFB and External SDRAM */
295 [0] = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100296 .start = PXA_CS2_PHYS,
297 .end = PXA_CS2_PHYS + 0x01ffffff,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100298 .flags = IORESOURCE_MEM,
299 },
300 /* Marathon registers */
301 [1] = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100302 .start = PXA_CS2_PHYS + 0x03fe0000,
303 .end = PXA_CS2_PHYS + 0x03ffffff,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100304 .flags = IORESOURCE_MEM,
305 },
306};
307
308static unsigned long save_lcd_regs[10];
309
310static int cmx270_marathon_probe(struct fb_info *fb)
311{
312 /* save PXA-270 pin settings before enabling 2700G */
313 save_lcd_regs[0] = GPDR1;
314 save_lcd_regs[1] = GPDR2;
315 save_lcd_regs[2] = GAFR1_U;
316 save_lcd_regs[3] = GAFR2_L;
317 save_lcd_regs[4] = GAFR2_U;
318
319 /* Disable PXA-270 on-chip controller driving pins */
320 GPDR1 &= ~(0xfc000000);
321 GPDR2 &= ~(0x00c03fff);
322 GAFR1_U &= ~(0xfff00000);
323 GAFR2_L &= ~(0x0fffffff);
324 GAFR2_U &= ~(0x0000f000);
325 return 0;
326}
327
328static int cmx270_marathon_remove(struct fb_info *fb)
329{
330 GPDR1 = save_lcd_regs[0];
331 GPDR2 = save_lcd_regs[1];
332 GAFR1_U = save_lcd_regs[2];
333 GAFR2_L = save_lcd_regs[3];
334 GAFR2_U = save_lcd_regs[4];
335 return 0;
336}
337
338static struct mbxfb_platform_data cmx270_2700G_data = {
339 .xres = {
340 .min = 240,
341 .max = 1200,
342 .defval = 640,
343 },
344 .yres = {
345 .min = 240,
346 .max = 1200,
347 .defval = 480,
348 },
349 .bpp = {
350 .min = 16,
351 .max = 32,
352 .defval = 16,
353 },
354 .memsize = 8*1024*1024,
355 .probe = cmx270_marathon_probe,
356 .remove = cmx270_marathon_remove,
357};
358
359static struct platform_device cmx270_2700G = {
360 .name = "mbx-fb",
361 .dev = {
362 .platform_data = &cmx270_2700G_data,
363 .dma_mask = &fb_dma_mask,
364 .coherent_dma_mask = 0xffffffff,
365 },
366 .num_resources = ARRAY_SIZE(cmx270_2700G_resource),
367 .resource = cmx270_2700G_resource,
368 .id = -1,
369};
370
Mike Rapoport2f01a972008-06-17 12:29:58 +0100371static void __init cmx270_init_2700G(void)
372{
373 platform_device_register(&cmx270_2700G);
374}
375#else
376static inline void cmx270_init_2700G(void) {}
377#endif
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100378
Mike Rapoport2f01a972008-06-17 12:29:58 +0100379#if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100380/*
381 Display definitions
382 keep these for backwards compatibility, although symbolic names (as
383 e.g. in lpd270.c) looks better
384*/
385#define MTYPE_STN320x240 0
386#define MTYPE_TFT640x480 1
387#define MTYPE_CRT640x480 2
388#define MTYPE_CRT800x600 3
389#define MTYPE_TFT320x240 6
390#define MTYPE_STN640x480 7
391
392static struct pxafb_mode_info generic_stn_320x240_mode = {
393 .pixclock = 76923,
394 .bpp = 8,
395 .xres = 320,
396 .yres = 240,
397 .hsync_len = 3,
398 .vsync_len = 2,
399 .left_margin = 3,
400 .upper_margin = 0,
401 .right_margin = 3,
402 .lower_margin = 0,
403 .sync = (FB_SYNC_HOR_HIGH_ACT |
404 FB_SYNC_VERT_HIGH_ACT),
405 .cmap_greyscale = 0,
406};
407
408static struct pxafb_mach_info generic_stn_320x240 = {
409 .modes = &generic_stn_320x240_mode,
410 .num_modes = 1,
411 .lccr0 = 0,
412 .lccr3 = (LCCR3_PixClkDiv(0x03) |
413 LCCR3_Acb(0xff) |
414 LCCR3_PCP),
415 .cmap_inverse = 0,
416 .cmap_static = 0,
417};
418
419static struct pxafb_mode_info generic_tft_640x480_mode = {
420 .pixclock = 38461,
421 .bpp = 8,
422 .xres = 640,
423 .yres = 480,
424 .hsync_len = 60,
425 .vsync_len = 2,
426 .left_margin = 70,
427 .upper_margin = 10,
428 .right_margin = 70,
429 .lower_margin = 5,
430 .sync = 0,
431 .cmap_greyscale = 0,
432};
433
434static struct pxafb_mach_info generic_tft_640x480 = {
435 .modes = &generic_tft_640x480_mode,
436 .num_modes = 1,
437 .lccr0 = (LCCR0_PAS),
438 .lccr3 = (LCCR3_PixClkDiv(0x01) |
439 LCCR3_Acb(0xff) |
440 LCCR3_PCP),
441 .cmap_inverse = 0,
442 .cmap_static = 0,
443};
444
445static struct pxafb_mode_info generic_crt_640x480_mode = {
446 .pixclock = 38461,
447 .bpp = 8,
448 .xres = 640,
449 .yres = 480,
450 .hsync_len = 63,
451 .vsync_len = 2,
452 .left_margin = 81,
453 .upper_margin = 33,
454 .right_margin = 16,
455 .lower_margin = 10,
456 .sync = (FB_SYNC_HOR_HIGH_ACT |
457 FB_SYNC_VERT_HIGH_ACT),
458 .cmap_greyscale = 0,
459};
460
461static struct pxafb_mach_info generic_crt_640x480 = {
462 .modes = &generic_crt_640x480_mode,
463 .num_modes = 1,
464 .lccr0 = (LCCR0_PAS),
465 .lccr3 = (LCCR3_PixClkDiv(0x01) |
466 LCCR3_Acb(0xff)),
467 .cmap_inverse = 0,
468 .cmap_static = 0,
469};
470
471static struct pxafb_mode_info generic_crt_800x600_mode = {
472 .pixclock = 28846,
473 .bpp = 8,
474 .xres = 800,
475 .yres = 600,
476 .hsync_len = 63,
477 .vsync_len = 2,
478 .left_margin = 26,
479 .upper_margin = 21,
480 .right_margin = 26,
481 .lower_margin = 11,
482 .sync = (FB_SYNC_HOR_HIGH_ACT |
483 FB_SYNC_VERT_HIGH_ACT),
484 .cmap_greyscale = 0,
485};
486
487static struct pxafb_mach_info generic_crt_800x600 = {
488 .modes = &generic_crt_800x600_mode,
489 .num_modes = 1,
490 .lccr0 = (LCCR0_PAS),
491 .lccr3 = (LCCR3_PixClkDiv(0x02) |
492 LCCR3_Acb(0xff)),
493 .cmap_inverse = 0,
494 .cmap_static = 0,
495};
496
497static struct pxafb_mode_info generic_tft_320x240_mode = {
498 .pixclock = 134615,
499 .bpp = 16,
500 .xres = 320,
501 .yres = 240,
502 .hsync_len = 63,
503 .vsync_len = 7,
504 .left_margin = 75,
505 .upper_margin = 0,
506 .right_margin = 15,
507 .lower_margin = 15,
508 .sync = 0,
509 .cmap_greyscale = 0,
510};
511
512static struct pxafb_mach_info generic_tft_320x240 = {
513 .modes = &generic_tft_320x240_mode,
514 .num_modes = 1,
515 .lccr0 = (LCCR0_PAS),
516 .lccr3 = (LCCR3_PixClkDiv(0x06) |
517 LCCR3_Acb(0xff) |
518 LCCR3_PCP),
519 .cmap_inverse = 0,
520 .cmap_static = 0,
521};
522
523static struct pxafb_mode_info generic_stn_640x480_mode = {
524 .pixclock = 57692,
525 .bpp = 8,
526 .xres = 640,
527 .yres = 480,
528 .hsync_len = 4,
529 .vsync_len = 2,
530 .left_margin = 10,
531 .upper_margin = 5,
532 .right_margin = 10,
533 .lower_margin = 5,
534 .sync = (FB_SYNC_HOR_HIGH_ACT |
535 FB_SYNC_VERT_HIGH_ACT),
536 .cmap_greyscale = 0,
537};
538
539static struct pxafb_mach_info generic_stn_640x480 = {
540 .modes = &generic_stn_640x480_mode,
541 .num_modes = 1,
542 .lccr0 = 0,
543 .lccr3 = (LCCR3_PixClkDiv(0x02) |
544 LCCR3_Acb(0xff)),
545 .cmap_inverse = 0,
546 .cmap_static = 0,
547};
548
Mike Rapoportda591932008-10-05 10:25:44 +0100549static struct pxafb_mach_info *cmx2xx_display = &generic_crt_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100550
Mike Rapoportda591932008-10-05 10:25:44 +0100551static int __init cmx2xx_set_display(char *str)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100552{
553 int disp_type = simple_strtol(str, NULL, 0);
554 switch (disp_type) {
555 case MTYPE_STN320x240:
Mike Rapoportda591932008-10-05 10:25:44 +0100556 cmx2xx_display = &generic_stn_320x240;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100557 break;
558 case MTYPE_TFT640x480:
Mike Rapoportda591932008-10-05 10:25:44 +0100559 cmx2xx_display = &generic_tft_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100560 break;
561 case MTYPE_CRT640x480:
Mike Rapoportda591932008-10-05 10:25:44 +0100562 cmx2xx_display = &generic_crt_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100563 break;
564 case MTYPE_CRT800x600:
Mike Rapoportda591932008-10-05 10:25:44 +0100565 cmx2xx_display = &generic_crt_800x600;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100566 break;
567 case MTYPE_TFT320x240:
Mike Rapoportda591932008-10-05 10:25:44 +0100568 cmx2xx_display = &generic_tft_320x240;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100569 break;
570 case MTYPE_STN640x480:
Mike Rapoportda591932008-10-05 10:25:44 +0100571 cmx2xx_display = &generic_stn_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100572 break;
573 default: /* fallback to CRT 640x480 */
Mike Rapoportda591932008-10-05 10:25:44 +0100574 cmx2xx_display = &generic_crt_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100575 break;
576 }
577 return 1;
578}
579
580/*
581 This should be done really early to get proper configuration for
582 frame buffer.
Mike Rapoportda591932008-10-05 10:25:44 +0100583 Indeed, pxafb parameters can be used istead, but CM-X2XX bootloader
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100584 has limitied line length for kernel command line, and also it will
585 break compatibitlty with proprietary releases already in field.
586*/
Mike Rapoportda591932008-10-05 10:25:44 +0100587__setup("monitor=", cmx2xx_set_display);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100588
Mike Rapoportda591932008-10-05 10:25:44 +0100589static void __init cmx2xx_init_display(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100590{
Mike Rapoportda591932008-10-05 10:25:44 +0100591 set_pxa_fb_info(cmx2xx_display);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100592}
593#else
Mike Rapoportda591932008-10-05 10:25:44 +0100594static inline void cmx2xx_init_display(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100595#endif
596
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100597/* PXA27x OHCI controller setup */
Mike Rapoport2f01a972008-06-17 12:29:58 +0100598#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100599static int cmx270_ohci_init(struct device *dev)
600{
601 /* Set the Power Control Polarity Low */
602 UHCHR = (UHCHR | UHCHR_PCPL) &
603 ~(UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE);
604
605 return 0;
606}
607
608static struct pxaohci_platform_data cmx270_ohci_platform_data = {
609 .port_mode = PMM_PERPORT_MODE,
610 .init = cmx270_ohci_init,
611};
612
Mike Rapoport2f01a972008-06-17 12:29:58 +0100613static void __init cmx270_init_ohci(void)
614{
615 pxa_set_ohci_info(&cmx270_ohci_platform_data);
616}
617#else
618static inline void cmx270_init_ohci(void) {}
619#endif
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100620
Mike Rapoport2f01a972008-06-17 12:29:58 +0100621#if defined(CONFIG_MMC) || defined(CONFIG_MMC_MODULE)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100622static int cmx270_mci_init(struct device *dev,
623 irq_handler_t cmx270_detect_int,
624 void *data)
625{
626 int err;
627
Mike Rapoport2f01a972008-06-17 12:29:58 +0100628 err = gpio_request(GPIO105_MMC_POWER, "MMC/SD power");
629 if (err) {
630 dev_warn(dev, "power gpio unavailable\n");
631 return err;
632 }
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100633
Mike Rapoport2f01a972008-06-17 12:29:58 +0100634 gpio_direction_output(GPIO105_MMC_POWER, 0);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100635
636 err = request_irq(CMX270_MMC_IRQ, cmx270_detect_int,
637 IRQF_DISABLED | IRQF_TRIGGER_FALLING,
638 "MMC card detect", data);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100639 if (err) {
640 gpio_free(GPIO105_MMC_POWER);
641 dev_err(dev, "cmx270_mci_init: MMC/SD: can't"
642 " request MMC card detect IRQ\n");
643 }
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100644
Russell King2687bd32008-01-23 14:05:58 +0000645 return err;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100646}
647
648static void cmx270_mci_setpower(struct device *dev, unsigned int vdd)
649{
650 struct pxamci_platform_data *p_d = dev->platform_data;
651
652 if ((1 << vdd) & p_d->ocr_mask) {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100653 dev_dbg(dev, "power on\n");
654 gpio_set_value(GPIO105_MMC_POWER, 0);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100655 } else {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100656 gpio_set_value(GPIO105_MMC_POWER, 1);
657 dev_dbg(dev, "power off\n");
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100658 }
659}
660
661static void cmx270_mci_exit(struct device *dev, void *data)
662{
663 free_irq(CMX270_MMC_IRQ, data);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100664 gpio_free(GPIO105_MMC_POWER);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100665}
666
667static struct pxamci_platform_data cmx270_mci_platform_data = {
668 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
669 .init = cmx270_mci_init,
670 .setpower = cmx270_mci_setpower,
671 .exit = cmx270_mci_exit,
672};
673
Mike Rapoport2f01a972008-06-17 12:29:58 +0100674static void __init cmx270_init_mmc(void)
675{
676 pxa_set_mci_info(&cmx270_mci_platform_data);
677}
678#else
679static inline void cmx270_init_mmc(void) {}
680#endif
681
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100682#ifdef CONFIG_PM
683static unsigned long sleep_save_msc[10];
684
Mike Rapoportda591932008-10-05 10:25:44 +0100685static int cmx2xx_suspend(struct sys_device *dev, pm_message_t state)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100686{
Mike Rapoportda591932008-10-05 10:25:44 +0100687 cmx2xx_pci_suspend();
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100688
689 /* save MSC registers */
690 sleep_save_msc[0] = MSC0;
691 sleep_save_msc[1] = MSC1;
692 sleep_save_msc[2] = MSC2;
693
694 /* setup power saving mode registers */
695 PCFR = 0x0;
696 PSLR = 0xff400000;
697 PMCR = 0x00000005;
698 PWER = 0x80000000;
699 PFER = 0x00000000;
700 PRER = 0x00000000;
701 PGSR0 = 0xC0018800;
702 PGSR1 = 0x004F0002;
703 PGSR2 = 0x6021C000;
704 PGSR3 = 0x00020000;
705
706 return 0;
707}
708
Mike Rapoportda591932008-10-05 10:25:44 +0100709static int cmx2xx_resume(struct sys_device *dev)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100710{
Mike Rapoportda591932008-10-05 10:25:44 +0100711 cmx2xx_pci_resume();
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100712
713 /* restore MSC registers */
714 MSC0 = sleep_save_msc[0];
715 MSC1 = sleep_save_msc[1];
716 MSC2 = sleep_save_msc[2];
717
718 return 0;
719}
720
Mike Rapoportda591932008-10-05 10:25:44 +0100721static struct sysdev_class cmx2xx_pm_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100722 .name = "pm",
Mike Rapoportda591932008-10-05 10:25:44 +0100723 .resume = cmx2xx_resume,
724 .suspend = cmx2xx_suspend,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100725};
726
Mike Rapoportda591932008-10-05 10:25:44 +0100727static struct sys_device cmx2xx_pm_device = {
728 .cls = &cmx2xx_pm_sysclass,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100729};
730
Mike Rapoportda591932008-10-05 10:25:44 +0100731static int __init cmx2xx_pm_init(void)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100732{
733 int error;
Mike Rapoportda591932008-10-05 10:25:44 +0100734 error = sysdev_class_register(&cmx2xx_pm_sysclass);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100735 if (error == 0)
Mike Rapoportda591932008-10-05 10:25:44 +0100736 error = sysdev_register(&cmx2xx_pm_device);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100737 return error;
738}
739#else
Mike Rapoportda591932008-10-05 10:25:44 +0100740static int __init cmx2xx_pm_init(void) { return 0; }
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100741#endif
742
Mike Rapoport2f01a972008-06-17 12:29:58 +0100743#if defined(CONFIG_SND_PXA2XX_AC97) || defined(CONFIG_SND_PXA2XX_AC97_MODULE)
Mike Rapoportda591932008-10-05 10:25:44 +0100744static void __init cmx2xx_init_ac97(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100745{
746 pxa_set_ac97_info(NULL);
747}
748#else
Mike Rapoportda591932008-10-05 10:25:44 +0100749static inline void cmx2xx_init_ac97(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100750#endif
751
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100752static void __init cmx270_init(void)
753{
Mike Rapoport2f01a972008-06-17 12:29:58 +0100754 pxa2xx_mfp_config(ARRAY_AND_SIZE(cmx270_pin_config));
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100755
Mike Rapoport2f01a972008-06-17 12:29:58 +0100756 cmx270_init_rtc();
Mike Rapoport2f01a972008-06-17 12:29:58 +0100757 cmx270_init_mmc();
758 cmx270_init_ohci();
Mike Rapoport2f01a972008-06-17 12:29:58 +0100759 cmx270_init_2700G();
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100760}
761
Mike Rapoportda591932008-10-05 10:25:44 +0100762static void __init cmx2xx_init(void)
763{
764 cmx2xx_pm_init();
765
766 cmx270_init();
767
768 cmx2xx_init_dm9000();
769 cmx2xx_init_display();
770 cmx2xx_init_ac97();
771 cmx2xx_init_touchscreen();
772 cmx2xx_init_leds();
773}
774
775static void __init cmx2xx_init_irq(void)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100776{
777 pxa27x_init_irq();
778
Mike Rapoportda591932008-10-05 10:25:44 +0100779 cmx2xx_pci_init_irq(CMX270_GPIO_IT8152_IRQ);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100780}
781
Mike Rapoport2f01a972008-06-17 12:29:58 +0100782#ifdef CONFIG_PCI
783/* Map PCI companion statically */
Mike Rapoportda591932008-10-05 10:25:44 +0100784static struct map_desc cmx2xx_io_desc[] __initdata = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100785 [0] = { /* PCI bridge */
Mike Rapoportda591932008-10-05 10:25:44 +0100786 .virtual = CMX2XX_IT8152_VIRT,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100787 .pfn = __phys_to_pfn(PXA_CS4_PHYS),
788 .length = SZ_64M,
789 .type = MT_DEVICE
790 },
791};
792
Mike Rapoportda591932008-10-05 10:25:44 +0100793static void __init cmx2xx_map_io(void)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100794{
795 pxa_map_io();
Mike Rapoportda591932008-10-05 10:25:44 +0100796 iotable_init(cmx2xx_io_desc, ARRAY_SIZE(cmx2xx_io_desc));
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100797
Mike Rapoportda591932008-10-05 10:25:44 +0100798 it8152_base_address = CMX2XX_IT8152_VIRT;
Mike Rapoport2f01a972008-06-17 12:29:58 +0100799}
800#else
Mike Rapoportda591932008-10-05 10:25:44 +0100801static void __init cmx2xx_map_io(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100802{
803 pxa_map_io();
804}
805#endif
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100806
Mike Rapoportda591932008-10-05 10:25:44 +0100807MACHINE_START(ARMCORE, "Compulab CM-X2XX")
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100808 .boot_params = 0xa0000100,
809 .phys_io = 0x40000000,
810 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Mike Rapoportda591932008-10-05 10:25:44 +0100811 .map_io = cmx2xx_map_io,
812 .init_irq = cmx2xx_init_irq,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100813 .timer = &pxa_timer,
Mike Rapoportda591932008-10-05 10:25:44 +0100814 .init_machine = cmx2xx_init,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100815MACHINE_END