2 * linux/arch/arm/mach-pxa/lpd270.c
4 * Support for the LogicPD PXA270 Card Engine.
5 * Derived from the mainstone code, which carries these notices:
7 * Author: Nicolas Pitre
8 * Created: Nov 05, 2002
9 * Copyright: MontaVista Software Inc.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/sysdev.h>
19 #include <linux/interrupt.h>
20 #include <linux/sched.h>
21 #include <linux/bitops.h>
23 #include <linux/ioport.h>
24 #include <linux/mtd/mtd.h>
25 #include <linux/mtd/partitions.h>
27 #include <asm/types.h>
28 #include <asm/setup.h>
29 #include <asm/memory.h>
30 #include <asm/mach-types.h>
31 #include <asm/hardware.h>
33 #include <asm/sizes.h>
35 #include <asm/mach/arch.h>
36 #include <asm/mach/map.h>
37 #include <asm/mach/irq.h>
38 #include <asm/mach/flash.h>
40 #include <asm/arch/pxa-regs.h>
41 #include <asm/arch/pxa2xx-regs.h>
42 #include <asm/arch/pxa2xx-gpio.h>
43 #include <asm/arch/lpd270.h>
44 #include <asm/arch/audio.h>
45 #include <asm/arch/pxafb.h>
46 #include <asm/arch/mmc.h>
47 #include <asm/arch/irda.h>
48 #include <asm/arch/ohci.h>
54 static unsigned int lpd270_irq_enabled;
56 static void lpd270_mask_irq(unsigned int irq)
58 int lpd270_irq = irq - LPD270_IRQ(0);
60 __raw_writew(~(1 << lpd270_irq), LPD270_INT_STATUS);
62 lpd270_irq_enabled &= ~(1 << lpd270_irq);
63 __raw_writew(lpd270_irq_enabled, LPD270_INT_MASK);
66 static void lpd270_unmask_irq(unsigned int irq)
68 int lpd270_irq = irq - LPD270_IRQ(0);
70 lpd270_irq_enabled |= 1 << lpd270_irq;
71 __raw_writew(lpd270_irq_enabled, LPD270_INT_MASK);
74 static struct irq_chip lpd270_irq_chip = {
76 .ack = lpd270_mask_irq,
77 .mask = lpd270_mask_irq,
78 .unmask = lpd270_unmask_irq,
81 static void lpd270_irq_handler(unsigned int irq, struct irq_desc *desc)
83 unsigned long pending;
85 pending = __raw_readw(LPD270_INT_STATUS) & lpd270_irq_enabled;
87 GEDR(0) = GPIO_bit(0); /* clear useless edge notification */
88 if (likely(pending)) {
89 irq = LPD270_IRQ(0) + __ffs(pending);
90 desc = irq_desc + irq;
91 desc_handle_irq(irq, desc);
93 pending = __raw_readw(LPD270_INT_STATUS) &
99 static void __init lpd270_init_irq(void)
105 __raw_writew(0, LPD270_INT_MASK);
106 __raw_writew(0, LPD270_INT_STATUS);
108 /* setup extra LogicPD PXA270 irqs */
109 for (irq = LPD270_IRQ(2); irq <= LPD270_IRQ(4); irq++) {
110 set_irq_chip(irq, &lpd270_irq_chip);
111 set_irq_handler(irq, handle_level_irq);
112 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
114 set_irq_chained_handler(IRQ_GPIO(0), lpd270_irq_handler);
115 set_irq_type(IRQ_GPIO(0), IRQT_FALLING);
120 static int lpd270_irq_resume(struct sys_device *dev)
122 __raw_writew(lpd270_irq_enabled, LPD270_INT_MASK);
126 static struct sysdev_class lpd270_irq_sysclass = {
128 .resume = lpd270_irq_resume,
131 static struct sys_device lpd270_irq_device = {
132 .cls = &lpd270_irq_sysclass,
135 static int __init lpd270_irq_device_init(void)
137 int ret = sysdev_class_register(&lpd270_irq_sysclass);
139 ret = sysdev_register(&lpd270_irq_device);
143 device_initcall(lpd270_irq_device_init);
147 static struct resource smc91x_resources[] = {
149 .start = LPD270_ETH_PHYS,
150 .end = (LPD270_ETH_PHYS + 0xfffff),
151 .flags = IORESOURCE_MEM,
154 .start = LPD270_ETHERNET_IRQ,
155 .end = LPD270_ETHERNET_IRQ,
156 .flags = IORESOURCE_IRQ,
160 static struct platform_device smc91x_device = {
163 .num_resources = ARRAY_SIZE(smc91x_resources),
164 .resource = smc91x_resources,
167 static struct platform_device lpd270_audio_device = {
168 .name = "pxa2xx-ac97",
172 static struct resource lpd270_flash_resources[] = {
174 .start = PXA_CS0_PHYS,
175 .end = PXA_CS0_PHYS + SZ_64M - 1,
176 .flags = IORESOURCE_MEM,
179 .start = PXA_CS1_PHYS,
180 .end = PXA_CS1_PHYS + SZ_64M - 1,
181 .flags = IORESOURCE_MEM,
185 static struct mtd_partition lpd270_flash0_partitions[] = {
187 .name = "Bootloader",
190 .mask_flags = MTD_WRITEABLE /* force read-only */
194 .offset = 0x00040000,
196 .name = "Filesystem",
197 .size = MTDPART_SIZ_FULL,
202 static struct flash_platform_data lpd270_flash_data[2] = {
204 .name = "processor-flash",
205 .map_name = "cfi_probe",
206 .parts = lpd270_flash0_partitions,
207 .nr_parts = ARRAY_SIZE(lpd270_flash0_partitions),
209 .name = "mainboard-flash",
210 .map_name = "cfi_probe",
216 static struct platform_device lpd270_flash_device[2] = {
218 .name = "pxa2xx-flash",
221 .platform_data = &lpd270_flash_data[0],
223 .resource = &lpd270_flash_resources[0],
226 .name = "pxa2xx-flash",
229 .platform_data = &lpd270_flash_data[1],
231 .resource = &lpd270_flash_resources[1],
236 static void lpd270_backlight_power(int on)
239 pxa_gpio_mode(GPIO16_PWM0_MD);
240 pxa_set_cken(CKEN_PWM0, 1);
248 pxa_set_cken(CKEN_PWM0, 0);
252 /* 5.7" TFT QVGA (LoLo display number 1) */
253 static struct pxafb_mode_info sharp_lq057q3dc02_mode = {
260 .right_margin = 0x0a,
262 .upper_margin = 0x08,
263 .lower_margin = 0x14,
264 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
267 static struct pxafb_mach_info sharp_lq057q3dc02 = {
268 .modes = &sharp_lq057q3dc02_mode,
272 .pxafb_backlight_power = lpd270_backlight_power,
275 /* 12.1" TFT SVGA (LoLo display number 2) */
276 static struct pxafb_mode_info sharp_lq121s1dg31_mode = {
283 .right_margin = 0x05,
285 .upper_margin = 0x14,
286 .lower_margin = 0x0a,
287 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
290 static struct pxafb_mach_info sharp_lq121s1dg31 = {
291 .modes = &sharp_lq121s1dg31_mode,
295 .pxafb_backlight_power = lpd270_backlight_power,
298 /* 3.6" TFT QVGA (LoLo display number 3) */
299 static struct pxafb_mode_info sharp_lq036q1da01_mode = {
306 .right_margin = 0x0a,
308 .upper_margin = 0x03,
309 .lower_margin = 0x03,
310 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
313 static struct pxafb_mach_info sharp_lq036q1da01 = {
314 .modes = &sharp_lq036q1da01_mode,
318 .pxafb_backlight_power = lpd270_backlight_power,
321 /* 6.4" TFT VGA (LoLo display number 5) */
322 static struct pxafb_mode_info sharp_lq64d343_mode = {
329 .right_margin = 0x19,
331 .upper_margin = 0x22,
332 .lower_margin = 0x00,
333 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
336 static struct pxafb_mach_info sharp_lq64d343 = {
337 .modes = &sharp_lq64d343_mode,
341 .pxafb_backlight_power = lpd270_backlight_power,
344 /* 10.4" TFT VGA (LoLo display number 7) */
345 static struct pxafb_mode_info sharp_lq10d368_mode = {
352 .right_margin = 0x19,
354 .upper_margin = 0x22,
355 .lower_margin = 0x00,
356 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
359 static struct pxafb_mach_info sharp_lq10d368 = {
360 .modes = &sharp_lq10d368_mode,
364 .pxafb_backlight_power = lpd270_backlight_power,
367 /* 3.5" TFT QVGA (LoLo display number 8) */
368 static struct pxafb_mode_info sharp_lq035q7db02_20_mode = {
375 .right_margin = 0x0a,
377 .upper_margin = 0x05,
378 .lower_margin = 0x14,
379 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
382 static struct pxafb_mach_info sharp_lq035q7db02_20 = {
383 .modes = &sharp_lq035q7db02_20_mode,
387 .pxafb_backlight_power = lpd270_backlight_power,
390 static struct pxafb_mach_info *lpd270_lcd_to_use;
392 static int __init lpd270_set_lcd(char *str)
394 if (!strnicmp(str, "lq057q3dc02", 11)) {
395 lpd270_lcd_to_use = &sharp_lq057q3dc02;
396 } else if (!strnicmp(str, "lq121s1dg31", 11)) {
397 lpd270_lcd_to_use = &sharp_lq121s1dg31;
398 } else if (!strnicmp(str, "lq036q1da01", 11)) {
399 lpd270_lcd_to_use = &sharp_lq036q1da01;
400 } else if (!strnicmp(str, "lq64d343", 8)) {
401 lpd270_lcd_to_use = &sharp_lq64d343;
402 } else if (!strnicmp(str, "lq10d368", 8)) {
403 lpd270_lcd_to_use = &sharp_lq10d368;
404 } else if (!strnicmp(str, "lq035q7db02-20", 14)) {
405 lpd270_lcd_to_use = &sharp_lq035q7db02_20;
407 printk(KERN_INFO "lpd270: unknown lcd panel [%s]\n", str);
413 __setup("lcd=", lpd270_set_lcd);
415 static struct platform_device *platform_devices[] __initdata = {
417 &lpd270_audio_device,
418 &lpd270_flash_device[0],
419 &lpd270_flash_device[1],
422 static int lpd270_ohci_init(struct device *dev)
424 /* setup Port1 GPIO pin. */
425 pxa_gpio_mode(88 | GPIO_ALT_FN_1_IN); /* USBHPWR1 */
426 pxa_gpio_mode(89 | GPIO_ALT_FN_2_OUT); /* USBHPEN1 */
428 /* Set the Power Control Polarity Low and Power Sense
429 Polarity Low to active low. */
430 UHCHR = (UHCHR | UHCHR_PCPL | UHCHR_PSPL) &
431 ~(UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSEP3 | UHCHR_SSE);
436 static struct pxaohci_platform_data lpd270_ohci_platform_data = {
437 .port_mode = PMM_PERPORT_MODE,
438 .init = lpd270_ohci_init,
441 static void __init lpd270_init(void)
443 lpd270_flash_data[0].width = (BOOT_DEF & 1) ? 2 : 4;
444 lpd270_flash_data[1].width = 4;
447 * System bus arbiter setting:
449 * - LCD_wt:DMA_wt:CORE_Wt = 2:3:4
451 ARB_CNTRL = ARB_CORE_PARK | 0x234;
454 * On LogicPD PXA270, we route AC97_SYSCLK via GPIO45.
456 pxa_gpio_mode(GPIO45_SYSCLK_AC97_MD);
458 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
460 if (lpd270_lcd_to_use != NULL)
461 set_pxa_fb_info(lpd270_lcd_to_use);
463 pxa_set_ohci_info(&lpd270_ohci_platform_data);
467 static struct map_desc lpd270_io_desc[] __initdata = {
469 .virtual = LPD270_CPLD_VIRT,
470 .pfn = __phys_to_pfn(LPD270_CPLD_PHYS),
471 .length = LPD270_CPLD_SIZE,
476 static void __init lpd270_map_io(void)
479 iotable_init(lpd270_io_desc, ARRAY_SIZE(lpd270_io_desc));
481 /* initialize sleep mode regs (wake-up sources, etc) */
490 /* for use I SRAM as framebuffer. */
495 MACHINE_START(LOGICPD_PXA270, "LogicPD PXA270 Card Engine")
496 /* Maintainer: Peter Barada */
497 .phys_io = 0x40000000,
498 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
499 .boot_params = 0xa0000100,
500 .map_io = lpd270_map_io,
501 .init_irq = lpd270_init_irq,
503 .init_machine = lpd270_init,