2 * linux/arch/arm/mach-pxa/zylonite.c
4 * Support for the PXA3xx Development Platform (aka Zylonite)
6 * Copyright (C) 2006 Marvell International Ltd.
8 * 2007-09-04: eric miao <eric.miao@marvell.com>
9 * rewrite to align with latest kernel
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/module.h>
17 #include <linux/kernel.h>
18 #include <linux/interrupt.h>
19 #include <linux/init.h>
20 #include <linux/platform_device.h>
21 #include <linux/gpio.h>
22 #include <linux/pwm.h>
23 #include <linux/pwm_backlight.h>
24 #include <linux/smc91x.h>
26 #include <asm/mach-types.h>
27 #include <asm/mach/arch.h>
28 #include <mach/pxa3xx.h>
29 #include <mach/audio.h>
30 #include <linux/platform_data/video-pxafb.h>
31 #include <mach/zylonite.h>
32 #include <linux/platform_data/mmc-pxamci.h>
33 #include <linux/platform_data/usb-ohci-pxa27x.h>
34 #include <linux/platform_data/keypad-pxa27x.h>
35 #include <linux/platform_data/mtd-nand-pxa3xx.h>
49 struct platform_device pxa_device_wm9713_audio
= {
50 .name
= "wm9713-codec",
54 static void __init
zylonite_init_wm9713_audio(void)
56 platform_device_register(&pxa_device_wm9713_audio
);
59 static struct resource smc91x_resources
[] = {
61 .start
= ZYLONITE_ETH_PHYS
+ 0x300,
62 .end
= ZYLONITE_ETH_PHYS
+ 0xfffff,
63 .flags
= IORESOURCE_MEM
,
66 .start
= -1, /* for run-time assignment */
68 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
,
72 static struct smc91x_platdata zylonite_smc91x_info
= {
73 .flags
= SMC91X_USE_8BIT
| SMC91X_USE_16BIT
|
74 SMC91X_NOWAIT
| SMC91X_USE_DMA
,
77 static struct platform_device smc91x_device
= {
80 .num_resources
= ARRAY_SIZE(smc91x_resources
),
81 .resource
= smc91x_resources
,
83 .platform_data
= &zylonite_smc91x_info
,
87 #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
88 static struct gpio_led zylonite_debug_leds
[] = {
90 .name
= "zylonite:yellow:1",
91 .default_trigger
= "heartbeat",
94 .name
= "zylonite:yellow:2",
95 .default_trigger
= "default-on",
99 static struct gpio_led_platform_data zylonite_debug_leds_info
= {
100 .leds
= zylonite_debug_leds
,
101 .num_leds
= ARRAY_SIZE(zylonite_debug_leds
),
104 static struct platform_device zylonite_device_leds
= {
108 .platform_data
= &zylonite_debug_leds_info
,
112 static void __init
zylonite_init_leds(void)
114 zylonite_debug_leds
[0].gpio
= gpio_debug_led1
;
115 zylonite_debug_leds
[1].gpio
= gpio_debug_led2
;
117 platform_device_register(&zylonite_device_leds
);
120 static inline void zylonite_init_leds(void) {}
123 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
124 static struct pwm_lookup zylonite_pwm_lookup
[] = {
125 PWM_LOOKUP("pxa27x-pwm.1", 1, "pwm-backlight.0", NULL
, 10000,
126 PWM_POLARITY_NORMAL
),
129 static struct platform_pwm_backlight_data zylonite_backlight_data
= {
130 .max_brightness
= 100,
131 .dft_brightness
= 100,
135 static struct platform_device zylonite_backlight_device
= {
136 .name
= "pwm-backlight",
138 .parent
= &pxa27x_device_pwm1
.dev
,
139 .platform_data
= &zylonite_backlight_data
,
143 static struct pxafb_mode_info toshiba_ltm035a776c_mode
= {
154 .sync
= FB_SYNC_VERT_HIGH_ACT
,
157 static struct pxafb_mode_info toshiba_ltm04c380k_mode
= {
168 .sync
= FB_SYNC_HOR_HIGH_ACT
|FB_SYNC_VERT_HIGH_ACT
,
171 static struct pxafb_mach_info zylonite_toshiba_lcd_info
= {
173 .lcd_conn
= LCD_COLOR_TFT_16BPP
| LCD_PCLK_EDGE_FALL
,
176 static struct pxafb_mode_info sharp_ls037_modes
[] = {
205 static struct pxafb_mach_info zylonite_sharp_lcd_info
= {
206 .modes
= sharp_ls037_modes
,
208 .lcd_conn
= LCD_COLOR_TFT_16BPP
| LCD_PCLK_EDGE_FALL
,
211 static void __init
zylonite_init_lcd(void)
213 pwm_add_table(zylonite_pwm_lookup
, ARRAY_SIZE(zylonite_pwm_lookup
));
214 platform_device_register(&zylonite_backlight_device
);
217 pxa_set_fb_info(NULL
, &zylonite_sharp_lcd_info
);
221 /* legacy LCD panels, it would be handy here if LCD panel type can
222 * be decided at run-time
225 zylonite_toshiba_lcd_info
.modes
= &toshiba_ltm035a776c_mode
;
227 zylonite_toshiba_lcd_info
.modes
= &toshiba_ltm04c380k_mode
;
229 pxa_set_fb_info(NULL
, &zylonite_toshiba_lcd_info
);
232 static inline void zylonite_init_lcd(void) {}
235 #if defined(CONFIG_MMC)
236 static struct pxamci_platform_data zylonite_mci_platform_data
= {
237 .detect_delay_ms
= 200,
238 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
239 .gpio_card_detect
= EXT_GPIO(0),
240 .gpio_card_ro
= EXT_GPIO(2),
244 static struct pxamci_platform_data zylonite_mci2_platform_data
= {
245 .detect_delay_ms
= 200,
246 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
247 .gpio_card_detect
= EXT_GPIO(1),
248 .gpio_card_ro
= EXT_GPIO(3),
252 static struct pxamci_platform_data zylonite_mci3_platform_data
= {
253 .detect_delay_ms
= 200,
254 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
255 .gpio_card_detect
= EXT_GPIO(30),
256 .gpio_card_ro
= EXT_GPIO(31),
260 static void __init
zylonite_init_mmc(void)
262 pxa_set_mci_info(&zylonite_mci_platform_data
);
263 pxa3xx_set_mci2_info(&zylonite_mci2_platform_data
);
265 pxa3xx_set_mci3_info(&zylonite_mci3_platform_data
);
268 static inline void zylonite_init_mmc(void) {}
271 #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
272 static const unsigned int zylonite_matrix_key_map
[] = {
273 /* KEY(row, col, key_code) */
274 KEY(0, 0, KEY_A
), KEY(0, 1, KEY_B
), KEY(0, 2, KEY_C
), KEY(0, 5, KEY_D
),
275 KEY(1, 0, KEY_E
), KEY(1, 1, KEY_F
), KEY(1, 2, KEY_G
), KEY(1, 5, KEY_H
),
276 KEY(2, 0, KEY_I
), KEY(2, 1, KEY_J
), KEY(2, 2, KEY_K
), KEY(2, 5, KEY_L
),
277 KEY(3, 0, KEY_M
), KEY(3, 1, KEY_N
), KEY(3, 2, KEY_O
), KEY(3, 5, KEY_P
),
278 KEY(5, 0, KEY_Q
), KEY(5, 1, KEY_R
), KEY(5, 2, KEY_S
), KEY(5, 5, KEY_T
),
279 KEY(6, 0, KEY_U
), KEY(6, 1, KEY_V
), KEY(6, 2, KEY_W
), KEY(6, 5, KEY_X
),
280 KEY(7, 1, KEY_Y
), KEY(7, 2, KEY_Z
),
282 KEY(4, 4, KEY_0
), KEY(1, 3, KEY_1
), KEY(4, 1, KEY_2
), KEY(1, 4, KEY_3
),
283 KEY(2, 3, KEY_4
), KEY(4, 2, KEY_5
), KEY(2, 4, KEY_6
), KEY(3, 3, KEY_7
),
284 KEY(4, 3, KEY_8
), KEY(3, 4, KEY_9
),
286 KEY(4, 5, KEY_SPACE
),
287 KEY(5, 3, KEY_KPASTERISK
), /* * */
288 KEY(5, 4, KEY_KPDOT
), /* #" */
293 KEY(3, 7, KEY_RIGHT
),
296 KEY(6, 4, KEY_DELETE
),
298 KEY(6, 3, KEY_CAPSLOCK
), /* KEY_LEFTSHIFT), */
300 KEY(4, 6, KEY_ENTER
), /* scroll push */
301 KEY(5, 7, KEY_ENTER
), /* keypad action */
303 KEY(0, 4, KEY_EMAIL
),
305 KEY(4, 0, KEY_CALENDAR
),
306 KEY(7, 6, KEY_RECORD
),
307 KEY(6, 7, KEY_VOLUMEUP
),
308 KEY(7, 7, KEY_VOLUMEDOWN
),
310 KEY(0, 6, KEY_F22
), /* soft1 */
311 KEY(1, 6, KEY_F23
), /* soft2 */
312 KEY(0, 3, KEY_AUX
), /* contact */
315 static struct matrix_keymap_data zylonite_matrix_keymap_data
= {
316 .keymap
= zylonite_matrix_key_map
,
317 .keymap_size
= ARRAY_SIZE(zylonite_matrix_key_map
),
320 static struct pxa27x_keypad_platform_data zylonite_keypad_info
= {
321 .matrix_key_rows
= 8,
322 .matrix_key_cols
= 8,
323 .matrix_keymap_data
= &zylonite_matrix_keymap_data
,
326 .rotary0_up_key
= KEY_UP
,
327 .rotary0_down_key
= KEY_DOWN
,
329 .debounce_interval
= 30,
332 static void __init
zylonite_init_keypad(void)
334 pxa_set_keypad_info(&zylonite_keypad_info
);
337 static inline void zylonite_init_keypad(void) {}
340 #if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
341 static struct mtd_partition zylonite_nand_partitions
[] = {
343 .name
= "Bootloader",
346 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
352 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
355 .name
= "Filesystem",
357 .size
= 0x3000000, /* 48M - rootfs */
360 .name
= "MassStorage",
368 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
370 /* NOTE: we reserve some blocks at the end of the NAND flash for
371 * bad block management, and the max number of relocation blocks
372 * differs on different platforms. Please take care with it when
373 * defining the partition table.
377 static struct pxa3xx_nand_platform_data zylonite_nand_info
= {
380 .parts
[0] = zylonite_nand_partitions
,
381 .nr_parts
[0] = ARRAY_SIZE(zylonite_nand_partitions
),
384 static void __init
zylonite_init_nand(void)
386 pxa3xx_set_nand_info(&zylonite_nand_info
);
389 static inline void zylonite_init_nand(void) {}
390 #endif /* CONFIG_MTD_NAND_PXA3xx || CONFIG_MTD_NAND_PXA3xx_MODULE */
392 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
393 static struct pxaohci_platform_data zylonite_ohci_info
= {
394 .port_mode
= PMM_PERPORT_MODE
,
395 .flags
= ENABLE_PORT1
| ENABLE_PORT2
|
396 POWER_CONTROL_LOW
| POWER_SENSE_LOW
,
399 static void __init
zylonite_init_ohci(void)
401 pxa_set_ohci_info(&zylonite_ohci_info
);
404 static inline void zylonite_init_ohci(void) {}
405 #endif /* CONFIG_USB_OHCI_HCD || CONFIG_USB_OHCI_HCD_MODULE */
407 static void __init
zylonite_init(void)
409 pxa_set_ffuart_info(NULL
);
410 pxa_set_btuart_info(NULL
);
411 pxa_set_stuart_info(NULL
);
413 /* board-processor specific initialization */
414 zylonite_pxa300_init();
415 zylonite_pxa320_init();
418 * Note: We depend that the bootloader set
419 * the correct value to MSC register for SMC91x.
421 smc91x_resources
[1].start
= PXA_GPIO_TO_IRQ(gpio_eth_irq
);
422 smc91x_resources
[1].end
= PXA_GPIO_TO_IRQ(gpio_eth_irq
);
423 platform_device_register(&smc91x_device
);
425 pxa_set_ac97_info(NULL
);
428 zylonite_init_keypad();
429 zylonite_init_nand();
430 zylonite_init_leds();
431 zylonite_init_ohci();
432 zylonite_init_wm9713_audio();
435 MACHINE_START(ZYLONITE
, "PXA3xx Platform Development Kit (aka Zylonite)")
436 .atag_offset
= 0x100,
437 .map_io
= pxa3xx_map_io
,
438 .nr_irqs
= ZYLONITE_NR_IRQS
,
439 .init_irq
= pxa3xx_init_irq
,
440 .handle_irq
= pxa3xx_handle_irq
,
441 .init_time
= pxa_timer_init
,
442 .init_machine
= zylonite_init
,
443 .restart
= pxa_restart
,