[ARM] pxa/cm-x300: update defconfig
[deliverable/linux.git] / arch / arm / mach-pxa / littleton.c
CommitLineData
e1d9b953 1/*
2 * linux/arch/arm/mach-pxa/littleton.c
3 *
4 * Support for the Marvell Littleton Development Platform.
5 *
6 * Author: Jason Chagas (largely modified code)
7 * Created: Nov 20, 2006
8 * Copyright: (C) Copyright 2006 Marvell International Ltd.
9 *
10 * 2007-11-22 modified to align with latest kernel
11 * eric miao <eric.miao@marvell.com>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * publishhed by the Free Software Foundation.
16 */
17
18#include <linux/init.h>
19#include <linux/interrupt.h>
20#include <linux/delay.h>
21#include <linux/platform_device.h>
22#include <linux/clk.h>
80796f2a 23#include <linux/gpio.h>
24ff4cdd 24#include <linux/spi/spi.h>
e1719da6 25#include <linux/smc91x.h>
3b24f30c
EM
26#include <linux/i2c.h>
27#include <linux/leds.h>
28#include <linux/mfd/da903x.h>
29#include <linux/i2c/max732x.h>
e1d9b953 30
31#include <asm/types.h>
32#include <asm/setup.h>
33#include <asm/memory.h>
34#include <asm/mach-types.h>
a09e64fb 35#include <mach/hardware.h>
e1d9b953 36#include <asm/irq.h>
37
38#include <asm/mach/arch.h>
39#include <asm/mach/map.h>
40#include <asm/mach/irq.h>
41
51c62982 42#include <mach/pxa300.h>
a09e64fb
RK
43#include <mach/pxafb.h>
44#include <mach/ssp.h>
24ff4cdd 45#include <mach/pxa2xx_spi.h>
f0a83701 46#include <plat/i2c.h>
a09e64fb
RK
47#include <mach/pxa27x_keypad.h>
48#include <mach/pxa3xx_nand.h>
49#include <mach/littleton.h>
e1d9b953 50
51#include "generic.h"
52
e1d9b953 53/* Littleton MFP configurations */
54static mfp_cfg_t littleton_mfp_cfg[] __initdata = {
55 /* LCD */
56 GPIO54_LCD_LDD_0,
57 GPIO55_LCD_LDD_1,
58 GPIO56_LCD_LDD_2,
59 GPIO57_LCD_LDD_3,
60 GPIO58_LCD_LDD_4,
61 GPIO59_LCD_LDD_5,
62 GPIO60_LCD_LDD_6,
63 GPIO61_LCD_LDD_7,
64 GPIO62_LCD_LDD_8,
65 GPIO63_LCD_LDD_9,
66 GPIO64_LCD_LDD_10,
67 GPIO65_LCD_LDD_11,
68 GPIO66_LCD_LDD_12,
69 GPIO67_LCD_LDD_13,
70 GPIO68_LCD_LDD_14,
71 GPIO69_LCD_LDD_15,
72 GPIO70_LCD_LDD_16,
73 GPIO71_LCD_LDD_17,
74 GPIO72_LCD_FCLK,
75 GPIO73_LCD_LCLK,
76 GPIO74_LCD_PCLK,
77 GPIO75_LCD_BIAS,
78
79 /* SSP2 */
80 GPIO25_SSP2_SCLK,
e1d9b953 81 GPIO27_SSP2_TXD,
24ff4cdd 82 GPIO17_GPIO, /* SFRM as chip-select */
e1d9b953 83
84 /* Debug Ethernet */
85 GPIO90_GPIO,
5fa41510 86
87 /* Keypad */
88 GPIO107_KP_DKIN_0,
89 GPIO108_KP_DKIN_1,
90 GPIO115_KP_MKIN_0,
91 GPIO116_KP_MKIN_1,
92 GPIO117_KP_MKIN_2,
93 GPIO118_KP_MKIN_3,
94 GPIO119_KP_MKIN_4,
95 GPIO120_KP_MKIN_5,
96 GPIO121_KP_MKOUT_0,
97 GPIO122_KP_MKOUT_1,
98 GPIO123_KP_MKOUT_2,
99 GPIO124_KP_MKOUT_3,
100 GPIO125_KP_MKOUT_4,
e1d9b953 101};
102
103static struct resource smc91x_resources[] = {
104 [0] = {
105 .start = (LITTLETON_ETH_PHYS + 0x300),
106 .end = (LITTLETON_ETH_PHYS + 0xfffff),
107 .flags = IORESOURCE_MEM,
108 },
109 [1] = {
110 .start = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO90)),
111 .end = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO90)),
8a6e8873 112 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE,
e1d9b953 113 }
114};
115
e1719da6
EM
116static struct smc91x_platdata littleton_smc91x_info = {
117 .flags = SMC91X_USE_8BIT | SMC91X_USE_16BIT |
118 SMC91X_NOWAIT | SMC91X_USE_DMA,
119};
120
e1d9b953 121static struct platform_device smc91x_device = {
122 .name = "smc91x",
123 .id = 0,
124 .num_resources = ARRAY_SIZE(smc91x_resources),
125 .resource = smc91x_resources,
e1719da6
EM
126 .dev = {
127 .platform_data = &littleton_smc91x_info,
128 },
e1d9b953 129};
130
36caeb4e 131#if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
e1d9b953 132static struct pxafb_mode_info tpo_tdo24mtea1_modes[] = {
133 [0] = {
134 /* VGA */
135 .pixclock = 38250,
136 .xres = 480,
137 .yres = 640,
138 .bpp = 16,
139 .hsync_len = 8,
140 .left_margin = 8,
141 .right_margin = 24,
142 .vsync_len = 2,
143 .upper_margin = 2,
144 .lower_margin = 4,
145 .sync = 0,
146 },
147 [1] = {
148 /* QVGA */
149 .pixclock = 153000,
150 .xres = 240,
151 .yres = 320,
152 .bpp = 16,
153 .hsync_len = 8,
154 .left_margin = 8,
155 .right_margin = 88,
156 .vsync_len = 2,
157 .upper_margin = 2,
158 .lower_margin = 2,
159 .sync = 0,
160 },
161};
162
163static struct pxafb_mach_info littleton_lcd_info = {
164 .modes = tpo_tdo24mtea1_modes,
165 .num_modes = 2,
0454bd09 166 .lcd_conn = LCD_COLOR_TFT_16BPP,
e1d9b953 167};
168
169static void littleton_init_lcd(void)
170{
171 set_pxa_fb_info(&littleton_lcd_info);
172}
173#else
174static inline void littleton_init_lcd(void) {};
36caeb4e 175#endif /* CONFIG_FB_PXA || CONFIG_FB_PXA_MODULE */
e1d9b953 176
24ff4cdd
EM
177#if defined(CONFIG_SPI_PXA2XX) || defined(CONFIG_SPI_PXA2XX_MODULE)
178static struct pxa2xx_spi_master littleton_spi_info = {
179 .num_chipselect = 1,
180};
181
24ff4cdd
EM
182static struct pxa2xx_spi_chip littleton_tdo24m_chip = {
183 .rx_threshold = 1,
184 .tx_threshold = 1,
46580c03 185 .gpio_cs = LITTLETON_GPIO_LCD_CS,
24ff4cdd
EM
186};
187
188static struct spi_board_info littleton_spi_devices[] __initdata = {
189 {
190 .modalias = "tdo24m",
191 .max_speed_hz = 1000000,
192 .bus_num = 2,
193 .chip_select = 0,
194 .controller_data= &littleton_tdo24m_chip,
195 },
196};
197
198static void __init littleton_init_spi(void)
199{
24ff4cdd
EM
200 pxa2xx_set_spi_info(2, &littleton_spi_info);
201 spi_register_board_info(ARRAY_AND_SIZE(littleton_spi_devices));
202}
203#else
204static inline void littleton_init_spi(void) {}
205#endif
206
36caeb4e 207#if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
5fa41510 208static unsigned int littleton_matrix_key_map[] = {
209 /* KEY(row, col, key_code) */
210 KEY(1, 3, KEY_0), KEY(0, 0, KEY_1), KEY(1, 0, KEY_2), KEY(2, 0, KEY_3),
211 KEY(0, 1, KEY_4), KEY(1, 1, KEY_5), KEY(2, 1, KEY_6), KEY(0, 2, KEY_7),
212 KEY(1, 2, KEY_8), KEY(2, 2, KEY_9),
213
214 KEY(0, 3, KEY_KPASTERISK), /* * */
215 KEY(2, 3, KEY_KPDOT), /* # */
216
217 KEY(5, 4, KEY_ENTER),
218
219 KEY(5, 0, KEY_UP),
220 KEY(5, 1, KEY_DOWN),
221 KEY(5, 2, KEY_LEFT),
222 KEY(5, 3, KEY_RIGHT),
223 KEY(3, 2, KEY_HOME),
224 KEY(4, 1, KEY_END),
225 KEY(3, 3, KEY_BACK),
226
227 KEY(4, 0, KEY_SEND),
228 KEY(4, 2, KEY_VOLUMEUP),
229 KEY(4, 3, KEY_VOLUMEDOWN),
230
231 KEY(3, 0, KEY_F22), /* soft1 */
232 KEY(3, 1, KEY_F23), /* soft2 */
233};
234
235static struct pxa27x_keypad_platform_data littleton_keypad_info = {
236 .matrix_key_rows = 6,
237 .matrix_key_cols = 5,
238 .matrix_key_map = littleton_matrix_key_map,
239 .matrix_key_map_size = ARRAY_SIZE(littleton_matrix_key_map),
240
241 .enable_rotary0 = 1,
242 .rotary0_up_key = KEY_UP,
243 .rotary0_down_key = KEY_DOWN,
244
245 .debounce_interval = 30,
246};
247static void __init littleton_init_keypad(void)
248{
249 pxa_set_keypad_info(&littleton_keypad_info);
250}
251#else
252static inline void littleton_init_keypad(void) {}
253#endif
254
9c1db1a1
EM
255#if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
256static struct mtd_partition littleton_nand_partitions[] = {
257 [0] = {
258 .name = "Bootloader",
259 .offset = 0,
260 .size = 0x060000,
261 .mask_flags = MTD_WRITEABLE, /* force read-only */
262 },
263 [1] = {
264 .name = "Kernel",
265 .offset = 0x060000,
266 .size = 0x200000,
267 .mask_flags = MTD_WRITEABLE, /* force read-only */
268 },
269 [2] = {
270 .name = "Filesystem",
271 .offset = 0x0260000,
272 .size = 0x3000000, /* 48M - rootfs */
273 },
274 [3] = {
275 .name = "MassStorage",
276 .offset = 0x3260000,
277 .size = 0x3d40000,
278 },
279 [4] = {
280 .name = "BBT",
281 .offset = 0x6FA0000,
282 .size = 0x80000,
283 .mask_flags = MTD_WRITEABLE, /* force read-only */
284 },
285 /* NOTE: we reserve some blocks at the end of the NAND flash for
286 * bad block management, and the max number of relocation blocks
287 * differs on different platforms. Please take care with it when
288 * defining the partition table.
289 */
290};
291
292static struct pxa3xx_nand_platform_data littleton_nand_info = {
293 .enable_arbiter = 1,
294 .parts = littleton_nand_partitions,
295 .nr_parts = ARRAY_SIZE(littleton_nand_partitions),
296};
297
298static void __init littleton_init_nand(void)
299{
300 pxa3xx_set_nand_info(&littleton_nand_info);
301}
302#else
303static inline void littleton_init_nand(void) {}
304#endif /* CONFIG_MTD_NAND_PXA3xx || CONFIG_MTD_NAND_PXA3xx_MODULE */
305
3b24f30c
EM
306#if defined(CONFIG_I2C_PXA) || defined(CONFIG_I2C_PXA_MODULE)
307static struct led_info littleton_da9034_leds[] = {
308 [0] = {
309 .name = "littleton:keypad1",
310 .flags = DA9034_LED_RAMP,
311 },
312 [1] = {
313 .name = "littleton:keypad2",
314 .flags = DA9034_LED_RAMP,
315 },
316 [2] = {
317 .name = "littleton:vibra",
318 .flags = 0,
319 },
320};
321
fc76132b
EM
322static struct da9034_touch_pdata littleton_da9034_touch = {
323 .x_inverted = 1,
324 .interval_ms = 20,
325};
326
3b24f30c
EM
327static struct da903x_subdev_info littleton_da9034_subdevs[] = {
328 {
329 .name = "da903x-led",
330 .id = DA9034_ID_LED_1,
331 .platform_data = &littleton_da9034_leds[0],
332 }, {
333 .name = "da903x-led",
334 .id = DA9034_ID_LED_2,
335 .platform_data = &littleton_da9034_leds[1],
336 }, {
337 .name = "da903x-led",
338 .id = DA9034_ID_VIBRA,
339 .platform_data = &littleton_da9034_leds[2],
340 }, {
341 .name = "da903x-backlight",
342 .id = DA9034_ID_WLED,
fc76132b
EM
343 }, {
344 .name = "da9034-touch",
345 .id = DA9034_ID_TOUCH,
346 .platform_data = &littleton_da9034_touch,
3b24f30c
EM
347 },
348};
349
350static struct da903x_platform_data littleton_da9034_info = {
351 .num_subdevs = ARRAY_SIZE(littleton_da9034_subdevs),
352 .subdevs = littleton_da9034_subdevs,
353};
354
355static struct max732x_platform_data littleton_max7320_info = {
356 .gpio_base = EXT0_GPIO_BASE,
357};
358
359static struct i2c_board_info littleton_i2c_info[] = {
360 [0] = {
361 .type = "da9034",
362 .addr = 0x34,
363 .platform_data = &littleton_da9034_info,
364 .irq = gpio_to_irq(mfp_to_gpio(MFP_PIN_GPIO18)),
365 },
366 [1] = {
367 .type = "max7320",
368 .addr = 0x50,
369 .platform_data = &littleton_max7320_info,
370 },
371};
372
373static void __init littleton_init_i2c(void)
374{
375 pxa_set_i2c_info(NULL);
376 i2c_register_board_info(0, ARRAY_AND_SIZE(littleton_i2c_info));
377}
378#else
379static inline void littleton_init_i2c(void) {}
380#endif /* CONFIG_I2C_PXA || CONFIG_I2C_PXA_MODULE */
381
e1d9b953 382static void __init littleton_init(void)
383{
384 /* initialize MFP configurations */
385 pxa3xx_mfp_config(ARRAY_AND_SIZE(littleton_mfp_cfg));
386
387 /*
388 * Note: we depend bootloader set the correct
389 * value to MSC register for SMC91x.
390 */
391 platform_device_register(&smc91x_device);
392
24ff4cdd 393 littleton_init_spi();
3b24f30c 394 littleton_init_i2c();
e1d9b953 395 littleton_init_lcd();
5fa41510 396 littleton_init_keypad();
9c1db1a1 397 littleton_init_nand();
e1d9b953 398}
399
400MACHINE_START(LITTLETON, "Marvell Form Factor Development Platform (aka Littleton)")
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,
406 .timer = &pxa_timer,
407 .init_machine = littleton_init,
408MACHINE_END
This page took 0.142157 seconds and 5 git commands to generate.