2 * linux/arch/arm/mach-pxa/tavorevb.c
4 * Support for the Marvell PXA930 Evaluation Board
6 * Copyright (C) 2007-2008 Marvell International Ltd.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * publishhed by the Free Software Foundation.
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/interrupt.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/clk.h>
19 #include <linux/gpio.h>
20 #include <linux/smc91x.h>
21 #include <linux/pwm_backlight.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/arch.h>
25 #include <mach/hardware.h>
26 #include <mach/pxa3xx-regs.h>
27 #include <mach/mfp-pxa930.h>
28 #include <mach/pxafb.h>
29 #include <mach/pxa27x_keypad.h>
34 /* Tavor EVB MFP configurations */
35 static mfp_cfg_t tavorevb_mfp_cfg[] __initdata = {
57 GPIO43_PWM3, /* primary backlight */
58 GPIO32_PWM0, /* secondary backlight */
80 #define TAVOREVB_ETH_PHYS (0x14000000)
82 static struct resource smc91x_resources[] = {
84 .start = (TAVOREVB_ETH_PHYS + 0x300),
85 .end = (TAVOREVB_ETH_PHYS + 0xfffff),
86 .flags = IORESOURCE_MEM,
89 .start = gpio_to_irq(mfp_to_gpio(MFP_PIN_GPIO47)),
90 .end = gpio_to_irq(mfp_to_gpio(MFP_PIN_GPIO47)),
91 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
95 static struct smc91x_platdata tavorevb_smc91x_info = {
96 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT | SMC91X_USE_DMA,
99 static struct platform_device smc91x_device = {
102 .num_resources = ARRAY_SIZE(smc91x_resources),
103 .resource = smc91x_resources,
105 .platform_data = &tavorevb_smc91x_info,
109 #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
110 static unsigned int tavorevb_matrix_key_map[] = {
111 /* KEY(row, col, key_code) */
112 KEY(0, 4, KEY_A), KEY(0, 5, KEY_B), KEY(0, 6, KEY_C),
113 KEY(1, 4, KEY_E), KEY(1, 5, KEY_F), KEY(1, 6, KEY_G),
114 KEY(2, 4, KEY_I), KEY(2, 5, KEY_J), KEY(2, 6, KEY_K),
115 KEY(3, 4, KEY_M), KEY(3, 5, KEY_N), KEY(3, 6, KEY_O),
116 KEY(4, 5, KEY_R), KEY(4, 6, KEY_S),
117 KEY(5, 4, KEY_U), KEY(5, 4, KEY_V), KEY(5, 6, KEY_W),
119 KEY(6, 4, KEY_Y), KEY(6, 5, KEY_Z),
121 KEY(0, 3, KEY_0), KEY(2, 0, KEY_1), KEY(2, 1, KEY_2), KEY(2, 2, KEY_3),
122 KEY(2, 3, KEY_4), KEY(1, 0, KEY_5), KEY(1, 1, KEY_6), KEY(1, 2, KEY_7),
123 KEY(1, 3, KEY_8), KEY(0, 2, KEY_9),
125 KEY(6, 6, KEY_SPACE),
126 KEY(0, 0, KEY_KPASTERISK), /* * */
127 KEY(0, 1, KEY_KPDOT), /* # */
132 KEY(4, 2, KEY_RIGHT),
135 KEY(6, 1, KEY_DELETE),
137 KEY(6, 3, KEY_CAPSLOCK), /* KEY_LEFTSHIFT), */
139 KEY(4, 4, KEY_ENTER), /* scroll push */
140 KEY(6, 2, KEY_ENTER), /* keypad action */
143 KEY(5, 3, KEY_RECORD),
144 KEY(5, 0, KEY_VOLUMEUP),
145 KEY(5, 1, KEY_VOLUMEDOWN),
147 KEY(3, 0, KEY_F22), /* soft1 */
148 KEY(3, 3, KEY_F23), /* soft2 */
151 static struct pxa27x_keypad_platform_data tavorevb_keypad_info = {
152 .matrix_key_rows = 7,
153 .matrix_key_cols = 7,
154 .matrix_key_map = tavorevb_matrix_key_map,
155 .matrix_key_map_size = ARRAY_SIZE(tavorevb_matrix_key_map),
156 .debounce_interval = 30,
159 static void __init tavorevb_init_keypad(void)
161 pxa_set_keypad_info(&tavorevb_keypad_info);
164 static inline void tavorevb_init_keypad(void) {}
165 #endif /* CONFIG_KEYBOARD_PXA27x || CONFIG_KEYBOARD_PXA27x_MODULE */
167 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
168 static struct platform_pwm_backlight_data tavorevb_backlight_data[] = {
170 /* primary backlight */
172 .max_brightness = 100,
173 .dft_brightness = 100,
174 .pwm_period_ns = 100000,
177 /* secondary backlight */
179 .max_brightness = 100,
180 .dft_brightness = 100,
181 .pwm_period_ns = 100000,
185 static struct platform_device tavorevb_backlight_devices[] = {
187 .name = "pwm-backlight",
190 .platform_data = &tavorevb_backlight_data[0],
194 .name = "pwm-backlight",
197 .platform_data = &tavorevb_backlight_data[1],
202 static uint16_t panel_init[] = {
223 /* P-ON Init sequence */
224 SMART_CMD(0x00), /* OSC ON */
229 SMART_CMD(0x01), /* SOURCE DRIVER SHIFT DIRECTION and display RAM setting */
233 SMART_CMD(0x02), /* LINE INV */
237 SMART_CMD(0x03), /* IF mode(1) */
238 SMART_DAT(0x01), /* 8bit smart mode(8-8),high speed write mode */
241 SMART_CMD(0x00), /* RAM Write Mode */
246 /* DISPLAY Setting, 262K, fixed(NO scroll), no split screen */
248 SMART_DAT(0x40), /* 16/18/19 BPP */
251 SMART_CMD(0x08), /* BP, FP Seting, BP=2H, FP=3H */
255 SMART_CMD(0x0C), /* IF mode(2), using internal clock & MPU */
259 SMART_CMD(0x0D), /* Frame setting, 1Min. Frequence, 16CLK */
263 SMART_CMD(0x12), /* Timing(1),ASW W=4CLK, ASW ST=1CLK */
267 SMART_CMD(0x13), /* Timing(2),OEV ST=0.5CLK, OEV ED=1CLK */
271 SMART_CMD(0x14), /* Timing(3), ASW HOLD=0.5CLK */
275 SMART_CMD(0x15), /* Timing(4), CKV ST=0CLK, CKV ED=1CLK */
316 /* DISP RAM setting: 240*320 */
317 SMART_CMD(0x04), /* HADDR, START 0 */
320 SMART_DAT(0x00), /* x1,3 */
321 SMART_CMD(0x04), /* HADDR, END 4 */
324 SMART_DAT(0xEF), /* x2, 7 */
325 SMART_CMD(0x04), /* VADDR, START 8 */
327 SMART_DAT(0x00), /* y1, 10 */
328 SMART_DAT(0x00), /* y1, 11 */
329 SMART_CMD(0x04), /* VADDR, END 12 */
331 SMART_DAT(0x01), /* y2, 14 */
332 SMART_DAT(0x3F), /* y2, 15 */
333 SMART_CMD(0x02), /* RAM ADDR SETTING 16 */
336 SMART_DAT(0x00), /* x1, 19 */
337 SMART_CMD(0x02), /* RAM ADDR SETTING 20 */
339 SMART_DAT(0x00), /* y1, 22 */
340 SMART_DAT(0x00), /* y1, 23 */
343 static uint16_t panel_on[] = {
379 static uint16_t panel_off[] = {
410 static uint16_t update_framedata[] = {
415 /* write frame data */
416 SMART_CMD_WRITE_FRAME,
419 static void ltm020d550_lcd_power(int on, struct fb_var_screeninfo *var)
421 struct fb_info *info = container_of(var, struct fb_info, var);
424 pxafb_smart_queue(info, ARRAY_AND_SIZE(panel_init));
425 pxafb_smart_queue(info, ARRAY_AND_SIZE(panel_on));
427 pxafb_smart_queue(info, ARRAY_AND_SIZE(panel_off));
430 if (pxafb_smart_flush(info))
431 pr_err("%s: timed out\n", __func__);
434 static void ltm020d550_update(struct fb_info *info)
436 pxafb_smart_queue(info, ARRAY_AND_SIZE(update_framedata));
437 pxafb_smart_flush(info);
440 static struct pxafb_mode_info toshiba_ltm020d550_modes[] = {
445 .a0csrd_set_hld = 30,
446 .a0cswr_set_hld = 30,
447 .wr_pulse_width = 30,
448 .rd_pulse_width = 170,
452 /* L_LCLK_A0 and L_LCLK_RD active low */
453 .sync = FB_SYNC_HOR_HIGH_ACT |
454 FB_SYNC_VERT_HIGH_ACT,
458 static struct pxafb_mach_info tavorevb_lcd_info = {
459 .modes = toshiba_ltm020d550_modes,
461 .lcd_conn = LCD_SMART_PANEL_8BPP | LCD_PCLK_EDGE_FALL,
462 .pxafb_lcd_power = ltm020d550_lcd_power,
463 .smart_update = ltm020d550_update,
466 static void __init tavorevb_init_lcd(void)
468 platform_device_register(&tavorevb_backlight_devices[0]);
469 platform_device_register(&tavorevb_backlight_devices[1]);
470 set_pxa_fb_info(&tavorevb_lcd_info);
473 static inline void tavorevb_init_lcd(void) {}
474 #endif /* CONFIG_FB_PXA || CONFIG_FB_PXA_MODULE */
476 static void __init tavorevb_init(void)
478 /* initialize MFP configurations */
479 pxa3xx_mfp_config(ARRAY_AND_SIZE(tavorevb_mfp_cfg));
481 platform_device_register(&smc91x_device);
484 tavorevb_init_keypad();
487 MACHINE_START(TAVOREVB, "PXA930 Evaluation Board (aka TavorEVB)")
488 /* Maintainer: Eric Miao <eric.miao@marvell.com> */
489 .phys_io = 0x40000000,
490 .boot_params = 0xa0000100,
491 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
492 .map_io = pxa_map_io,
493 .init_irq = pxa3xx_init_irq,
495 .init_machine = tavorevb_init,