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/pwm_backlight.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/arch.h>
25 #include <asm/hardware.h>
26 #include <asm/arch/audio.h>
27 #include <asm/arch/gpio.h>
28 #include <asm/arch/pxafb.h>
29 #include <asm/arch/zylonite.h>
30 #include <asm/arch/mmc.h>
31 #include <asm/arch/pxa27x_keypad.h>
32 #include <asm/arch/pxa3xx_nand.h>
38 struct platform_mmc_slot zylonite_mmc_slot
[MAX_SLOTS
];
47 static struct resource smc91x_resources
[] = {
49 .start
= ZYLONITE_ETH_PHYS
+ 0x300,
50 .end
= ZYLONITE_ETH_PHYS
+ 0xfffff,
51 .flags
= IORESOURCE_MEM
,
54 .start
= -1, /* for run-time assignment */
56 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
,
60 static struct platform_device smc91x_device
= {
63 .num_resources
= ARRAY_SIZE(smc91x_resources
),
64 .resource
= smc91x_resources
,
67 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
68 static struct platform_pwm_backlight_data zylonite_backlight_data
= {
70 .max_brightness
= 100,
71 .dft_brightness
= 100,
72 .pwm_period_ns
= 10000,
75 static struct platform_device zylonite_backlight_device
= {
76 .name
= "pwm-backlight",
78 .parent
= &pxa27x_device_pwm1
.dev
,
79 .platform_data
= &zylonite_backlight_data
,
83 static struct pxafb_mode_info toshiba_ltm035a776c_mode
= {
94 .sync
= FB_SYNC_VERT_HIGH_ACT
,
97 static struct pxafb_mode_info toshiba_ltm04c380k_mode
= {
108 .sync
= FB_SYNC_HOR_HIGH_ACT
|FB_SYNC_VERT_HIGH_ACT
,
111 static struct pxafb_mach_info zylonite_toshiba_lcd_info
= {
113 .lcd_conn
= LCD_COLOR_TFT_16BPP
| LCD_PCLK_EDGE_FALL
,
116 static struct pxafb_mode_info sharp_ls037_modes
[] = {
145 static struct pxafb_mach_info zylonite_sharp_lcd_info
= {
146 .modes
= sharp_ls037_modes
,
148 .lcd_conn
= LCD_COLOR_TFT_16BPP
| LCD_PCLK_EDGE_FALL
,
151 static void __init
zylonite_init_lcd(void)
153 platform_device_register(&zylonite_backlight_device
);
156 set_pxa_fb_info(&zylonite_sharp_lcd_info
);
160 /* legacy LCD panels, it would be handy here if LCD panel type can
161 * be decided at run-time
164 zylonite_toshiba_lcd_info
.modes
= &toshiba_ltm035a776c_mode
;
166 zylonite_toshiba_lcd_info
.modes
= &toshiba_ltm04c380k_mode
;
168 set_pxa_fb_info(&zylonite_toshiba_lcd_info
);
171 static inline void zylonite_init_lcd(void) {}
174 #if defined(CONFIG_MMC)
175 static int zylonite_mci_ro(struct device
*dev
)
177 struct platform_device
*pdev
= to_platform_device(dev
);
179 return gpio_get_value(zylonite_mmc_slot
[pdev
->id
].gpio_wp
);
182 static int zylonite_mci_init(struct device
*dev
,
183 irq_handler_t zylonite_detect_int
,
186 struct platform_device
*pdev
= to_platform_device(dev
);
187 int err
, cd_irq
, gpio_cd
, gpio_wp
;
189 cd_irq
= gpio_to_irq(zylonite_mmc_slot
[pdev
->id
].gpio_cd
);
190 gpio_cd
= zylonite_mmc_slot
[pdev
->id
].gpio_cd
;
191 gpio_wp
= zylonite_mmc_slot
[pdev
->id
].gpio_wp
;
194 * setup GPIO for Zylonite MMC controller
196 err
= gpio_request(gpio_cd
, "mmc card detect");
199 gpio_direction_input(gpio_cd
);
201 err
= gpio_request(gpio_wp
, "mmc write protect");
204 gpio_direction_input(gpio_wp
);
206 err
= request_irq(cd_irq
, zylonite_detect_int
,
207 IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
,
208 "MMC card detect", data
);
210 printk(KERN_ERR
"%s: MMC/SD/SDIO: "
211 "can't request card detect IRQ\n", __func__
);
212 goto err_request_irq
;
225 static void zylonite_mci_exit(struct device
*dev
, void *data
)
227 struct platform_device
*pdev
= to_platform_device(dev
);
228 int cd_irq
, gpio_cd
, gpio_wp
;
230 cd_irq
= gpio_to_irq(zylonite_mmc_slot
[pdev
->id
].gpio_cd
);
231 gpio_cd
= zylonite_mmc_slot
[pdev
->id
].gpio_cd
;
232 gpio_wp
= zylonite_mmc_slot
[pdev
->id
].gpio_wp
;
234 free_irq(cd_irq
, data
);
239 static struct pxamci_platform_data zylonite_mci_platform_data
= {
241 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
242 .init
= zylonite_mci_init
,
243 .exit
= zylonite_mci_exit
,
244 .get_ro
= zylonite_mci_ro
,
247 static struct pxamci_platform_data zylonite_mci2_platform_data
= {
249 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
252 static void __init
zylonite_init_mmc(void)
254 pxa_set_mci_info(&zylonite_mci_platform_data
);
255 pxa3xx_set_mci2_info(&zylonite_mci2_platform_data
);
257 pxa3xx_set_mci3_info(&zylonite_mci_platform_data
);
260 static inline void zylonite_init_mmc(void) {}
263 #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
264 static unsigned int zylonite_matrix_key_map
[] = {
265 /* KEY(row, col, key_code) */
266 KEY(0, 0, KEY_A
), KEY(0, 1, KEY_B
), KEY(0, 2, KEY_C
), KEY(0, 5, KEY_D
),
267 KEY(1, 0, KEY_E
), KEY(1, 1, KEY_F
), KEY(1, 2, KEY_G
), KEY(1, 5, KEY_H
),
268 KEY(2, 0, KEY_I
), KEY(2, 1, KEY_J
), KEY(2, 2, KEY_K
), KEY(2, 5, KEY_L
),
269 KEY(3, 0, KEY_M
), KEY(3, 1, KEY_N
), KEY(3, 2, KEY_O
), KEY(3, 5, KEY_P
),
270 KEY(5, 0, KEY_Q
), KEY(5, 1, KEY_R
), KEY(5, 2, KEY_S
), KEY(5, 5, KEY_T
),
271 KEY(6, 0, KEY_U
), KEY(6, 1, KEY_V
), KEY(6, 2, KEY_W
), KEY(6, 5, KEY_X
),
272 KEY(7, 1, KEY_Y
), KEY(7, 2, KEY_Z
),
274 KEY(4, 4, KEY_0
), KEY(1, 3, KEY_1
), KEY(4, 1, KEY_2
), KEY(1, 4, KEY_3
),
275 KEY(2, 3, KEY_4
), KEY(4, 2, KEY_5
), KEY(2, 4, KEY_6
), KEY(3, 3, KEY_7
),
276 KEY(4, 3, KEY_8
), KEY(3, 4, KEY_9
),
278 KEY(4, 5, KEY_SPACE
),
279 KEY(5, 3, KEY_KPASTERISK
), /* * */
280 KEY(5, 4, KEY_KPDOT
), /* #" */
285 KEY(3, 7, KEY_RIGHT
),
288 KEY(6, 4, KEY_DELETE
),
290 KEY(6, 3, KEY_CAPSLOCK
), /* KEY_LEFTSHIFT), */
292 KEY(4, 6, KEY_ENTER
), /* scroll push */
293 KEY(5, 7, KEY_ENTER
), /* keypad action */
295 KEY(0, 4, KEY_EMAIL
),
297 KEY(4, 0, KEY_CALENDAR
),
298 KEY(7, 6, KEY_RECORD
),
299 KEY(6, 7, KEY_VOLUMEUP
),
300 KEY(7, 7, KEY_VOLUMEDOWN
),
302 KEY(0, 6, KEY_F22
), /* soft1 */
303 KEY(1, 6, KEY_F23
), /* soft2 */
304 KEY(0, 3, KEY_AUX
), /* contact */
307 static struct pxa27x_keypad_platform_data zylonite_keypad_info
= {
308 .matrix_key_rows
= 8,
309 .matrix_key_cols
= 8,
310 .matrix_key_map
= zylonite_matrix_key_map
,
311 .matrix_key_map_size
= ARRAY_SIZE(zylonite_matrix_key_map
),
314 .rotary0_up_key
= KEY_UP
,
315 .rotary0_down_key
= KEY_DOWN
,
317 .debounce_interval
= 30,
320 static void __init
zylonite_init_keypad(void)
322 pxa_set_keypad_info(&zylonite_keypad_info
);
325 static inline void zylonite_init_keypad(void) {}
328 #if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
329 static struct mtd_partition zylonite_nand_partitions
[] = {
331 .name
= "Bootloader",
334 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
340 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
343 .name
= "Filesystem",
345 .size
= 0x3000000, /* 48M - rootfs */
348 .name
= "MassStorage",
356 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
358 /* NOTE: we reserve some blocks at the end of the NAND flash for
359 * bad block management, and the max number of relocation blocks
360 * differs on different platforms. Please take care with it when
361 * defining the partition table.
365 static struct pxa3xx_nand_platform_data zylonite_nand_info
= {
367 .parts
= zylonite_nand_partitions
,
368 .nr_parts
= ARRAY_SIZE(zylonite_nand_partitions
),
371 static void __init
zylonite_init_nand(void)
373 pxa3xx_set_nand_info(&zylonite_nand_info
);
376 static inline void zylonite_init_nand(void) {}
377 #endif /* CONFIG_MTD_NAND_PXA3xx || CONFIG_MTD_NAND_PXA3xx_MODULE */
379 static void __init
zylonite_init(void)
381 /* board-processor specific initialization */
382 zylonite_pxa300_init();
383 zylonite_pxa320_init();
386 * Note: We depend that the bootloader set
387 * the correct value to MSC register for SMC91x.
389 smc91x_resources
[1].start
= gpio_to_irq(gpio_eth_irq
);
390 smc91x_resources
[1].end
= gpio_to_irq(gpio_eth_irq
);
391 platform_device_register(&smc91x_device
);
393 pxa_set_ac97_info(NULL
);
396 zylonite_init_keypad();
397 zylonite_init_nand();
400 MACHINE_START(ZYLONITE
, "PXA3xx Platform Development Kit (aka Zylonite)")
401 .phys_io
= 0x40000000,
402 .boot_params
= 0xa0000100,
403 .io_pg_offst
= (io_p2v(0x40000000) >> 18) & 0xfffc,
404 .map_io
= pxa_map_io
,
405 .init_irq
= pxa3xx_init_irq
,
407 .init_machine
= zylonite_init
,