2 * linux/arch/arm/mach-pxa/zylonite.c
4 * Support for the PXA3xx Development Platform (aka Zylonite)
6 * Copyright (C) 2006 Marvell International Ltd.
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_backlight.h>
23 #include <linux/smc91x.h>
25 #include <asm/mach-types.h>
26 #include <asm/mach/arch.h>
27 #include <mach/hardware.h>
28 #include <mach/audio.h>
29 #include <mach/pxafb.h>
30 #include <mach/zylonite.h>
32 #include <mach/ohci.h>
33 #include <mach/pxa27x_keypad.h>
34 #include <plat/pxa3xx_nand.h>
48 static struct resource smc91x_resources[] = {
50 .start = ZYLONITE_ETH_PHYS + 0x300,
51 .end = ZYLONITE_ETH_PHYS + 0xfffff,
52 .flags = IORESOURCE_MEM,
55 .start = -1, /* for run-time assignment */
57 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
61 static struct smc91x_platdata zylonite_smc91x_info = {
62 .flags = SMC91X_USE_8BIT | SMC91X_USE_16BIT |
63 SMC91X_NOWAIT | SMC91X_USE_DMA,
66 static struct platform_device smc91x_device = {
69 .num_resources = ARRAY_SIZE(smc91x_resources),
70 .resource = smc91x_resources,
72 .platform_data = &zylonite_smc91x_info,
76 #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
77 static struct gpio_led zylonite_debug_leds[] = {
79 .name = "zylonite:yellow:1",
80 .default_trigger = "heartbeat",
83 .name = "zylonite:yellow:2",
84 .default_trigger = "default-on",
88 static struct gpio_led_platform_data zylonite_debug_leds_info = {
89 .leds = zylonite_debug_leds,
90 .num_leds = ARRAY_SIZE(zylonite_debug_leds),
93 static struct platform_device zylonite_device_leds = {
97 .platform_data = &zylonite_debug_leds_info,
101 static void __init zylonite_init_leds(void)
103 zylonite_debug_leds[0].gpio = gpio_debug_led1;
104 zylonite_debug_leds[1].gpio = gpio_debug_led2;
106 platform_device_register(&zylonite_device_leds);
109 static inline void zylonite_init_leds(void) {}
112 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
113 static struct platform_pwm_backlight_data zylonite_backlight_data = {
115 .max_brightness = 100,
116 .dft_brightness = 100,
117 .pwm_period_ns = 10000,
120 static struct platform_device zylonite_backlight_device = {
121 .name = "pwm-backlight",
123 .parent = &pxa27x_device_pwm1.dev,
124 .platform_data = &zylonite_backlight_data,
128 static struct pxafb_mode_info toshiba_ltm035a776c_mode = {
139 .sync = FB_SYNC_VERT_HIGH_ACT,
142 static struct pxafb_mode_info toshiba_ltm04c380k_mode = {
153 .sync = FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT,
156 static struct pxafb_mach_info zylonite_toshiba_lcd_info = {
158 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
161 static struct pxafb_mode_info sharp_ls037_modes[] = {
190 static struct pxafb_mach_info zylonite_sharp_lcd_info = {
191 .modes = sharp_ls037_modes,
193 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
196 static void __init zylonite_init_lcd(void)
198 platform_device_register(&zylonite_backlight_device);
201 set_pxa_fb_info(&zylonite_sharp_lcd_info);
205 /* legacy LCD panels, it would be handy here if LCD panel type can
206 * be decided at run-time
209 zylonite_toshiba_lcd_info.modes = &toshiba_ltm035a776c_mode;
211 zylonite_toshiba_lcd_info.modes = &toshiba_ltm04c380k_mode;
213 set_pxa_fb_info(&zylonite_toshiba_lcd_info);
216 static inline void zylonite_init_lcd(void) {}
219 #if defined(CONFIG_MMC)
220 static struct pxamci_platform_data zylonite_mci_platform_data = {
221 .detect_delay_ms= 200,
222 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
223 .gpio_card_detect = EXT_GPIO(0),
224 .gpio_card_ro = EXT_GPIO(2),
228 static struct pxamci_platform_data zylonite_mci2_platform_data = {
229 .detect_delay_ms= 200,
230 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
231 .gpio_card_detect = EXT_GPIO(1),
232 .gpio_card_ro = EXT_GPIO(3),
236 static struct pxamci_platform_data zylonite_mci3_platform_data = {
237 .detect_delay_ms= 200,
238 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
239 .gpio_card_detect = EXT_GPIO(30),
240 .gpio_card_ro = EXT_GPIO(31),
244 static void __init zylonite_init_mmc(void)
246 pxa_set_mci_info(&zylonite_mci_platform_data);
247 pxa3xx_set_mci2_info(&zylonite_mci2_platform_data);
249 pxa3xx_set_mci3_info(&zylonite_mci3_platform_data);
252 static inline void zylonite_init_mmc(void) {}
255 #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
256 static unsigned int zylonite_matrix_key_map[] = {
257 /* KEY(row, col, key_code) */
258 KEY(0, 0, KEY_A), KEY(0, 1, KEY_B), KEY(0, 2, KEY_C), KEY(0, 5, KEY_D),
259 KEY(1, 0, KEY_E), KEY(1, 1, KEY_F), KEY(1, 2, KEY_G), KEY(1, 5, KEY_H),
260 KEY(2, 0, KEY_I), KEY(2, 1, KEY_J), KEY(2, 2, KEY_K), KEY(2, 5, KEY_L),
261 KEY(3, 0, KEY_M), KEY(3, 1, KEY_N), KEY(3, 2, KEY_O), KEY(3, 5, KEY_P),
262 KEY(5, 0, KEY_Q), KEY(5, 1, KEY_R), KEY(5, 2, KEY_S), KEY(5, 5, KEY_T),
263 KEY(6, 0, KEY_U), KEY(6, 1, KEY_V), KEY(6, 2, KEY_W), KEY(6, 5, KEY_X),
264 KEY(7, 1, KEY_Y), KEY(7, 2, KEY_Z),
266 KEY(4, 4, KEY_0), KEY(1, 3, KEY_1), KEY(4, 1, KEY_2), KEY(1, 4, KEY_3),
267 KEY(2, 3, KEY_4), KEY(4, 2, KEY_5), KEY(2, 4, KEY_6), KEY(3, 3, KEY_7),
268 KEY(4, 3, KEY_8), KEY(3, 4, KEY_9),
270 KEY(4, 5, KEY_SPACE),
271 KEY(5, 3, KEY_KPASTERISK), /* * */
272 KEY(5, 4, KEY_KPDOT), /* #" */
277 KEY(3, 7, KEY_RIGHT),
280 KEY(6, 4, KEY_DELETE),
282 KEY(6, 3, KEY_CAPSLOCK), /* KEY_LEFTSHIFT), */
284 KEY(4, 6, KEY_ENTER), /* scroll push */
285 KEY(5, 7, KEY_ENTER), /* keypad action */
287 KEY(0, 4, KEY_EMAIL),
289 KEY(4, 0, KEY_CALENDAR),
290 KEY(7, 6, KEY_RECORD),
291 KEY(6, 7, KEY_VOLUMEUP),
292 KEY(7, 7, KEY_VOLUMEDOWN),
294 KEY(0, 6, KEY_F22), /* soft1 */
295 KEY(1, 6, KEY_F23), /* soft2 */
296 KEY(0, 3, KEY_AUX), /* contact */
299 static struct pxa27x_keypad_platform_data zylonite_keypad_info = {
300 .matrix_key_rows = 8,
301 .matrix_key_cols = 8,
302 .matrix_key_map = zylonite_matrix_key_map,
303 .matrix_key_map_size = ARRAY_SIZE(zylonite_matrix_key_map),
306 .rotary0_up_key = KEY_UP,
307 .rotary0_down_key = KEY_DOWN,
309 .debounce_interval = 30,
312 static void __init zylonite_init_keypad(void)
314 pxa_set_keypad_info(&zylonite_keypad_info);
317 static inline void zylonite_init_keypad(void) {}
320 #if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
321 static struct mtd_partition zylonite_nand_partitions[] = {
323 .name = "Bootloader",
326 .mask_flags = MTD_WRITEABLE, /* force read-only */
332 .mask_flags = MTD_WRITEABLE, /* force read-only */
335 .name = "Filesystem",
337 .size = 0x3000000, /* 48M - rootfs */
340 .name = "MassStorage",
348 .mask_flags = MTD_WRITEABLE, /* force read-only */
350 /* NOTE: we reserve some blocks at the end of the NAND flash for
351 * bad block management, and the max number of relocation blocks
352 * differs on different platforms. Please take care with it when
353 * defining the partition table.
357 static struct pxa3xx_nand_platform_data zylonite_nand_info = {
359 .parts = zylonite_nand_partitions,
360 .nr_parts = ARRAY_SIZE(zylonite_nand_partitions),
363 static void __init zylonite_init_nand(void)
365 pxa3xx_set_nand_info(&zylonite_nand_info);
368 static inline void zylonite_init_nand(void) {}
369 #endif /* CONFIG_MTD_NAND_PXA3xx || CONFIG_MTD_NAND_PXA3xx_MODULE */
371 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
372 static struct pxaohci_platform_data zylonite_ohci_info = {
373 .port_mode = PMM_PERPORT_MODE,
374 .flags = ENABLE_PORT1 | ENABLE_PORT2 |
375 POWER_CONTROL_LOW | POWER_SENSE_LOW,
378 static void __init zylonite_init_ohci(void)
380 pxa_set_ohci_info(&zylonite_ohci_info);
383 static inline void zylonite_init_ohci(void) {}
384 #endif /* CONFIG_USB_OHCI_HCD || CONFIG_USB_OHCI_HCD_MODULE */
386 static void __init zylonite_init(void)
388 pxa_set_ffuart_info(NULL);
389 pxa_set_btuart_info(NULL);
390 pxa_set_stuart_info(NULL);
392 /* board-processor specific initialization */
393 zylonite_pxa300_init();
394 zylonite_pxa320_init();
397 * Note: We depend that the bootloader set
398 * the correct value to MSC register for SMC91x.
400 smc91x_resources[1].start = gpio_to_irq(gpio_eth_irq);
401 smc91x_resources[1].end = gpio_to_irq(gpio_eth_irq);
402 platform_device_register(&smc91x_device);
404 pxa_set_ac97_info(NULL);
407 zylonite_init_keypad();
408 zylonite_init_nand();
409 zylonite_init_leds();
410 zylonite_init_ohci();
413 MACHINE_START(ZYLONITE, "PXA3xx Platform Development Kit (aka Zylonite)")
414 .phys_io = 0x40000000,
415 .boot_params = 0xa0000100,
416 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
417 .map_io = pxa_map_io,
418 .init_irq = pxa3xx_init_irq,
420 .init_machine = zylonite_init,