Merge git://git.infradead.org/mtd-2.6
[pandora-kernel.git] / arch / arm / mach-at91 / board-sam9m10g45ek.c
1 /*
2  *  Board-specific setup code for the AT91SAM9M10G45 Evaluation Kit family
3  *
4  *  Covers: * AT91SAM9G45-EKES  board
5  *          * AT91SAM9M10G45-EK board
6  *
7  *  Copyright (C) 2009 Atmel Corporation.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  */
15
16 #include <linux/types.h>
17 #include <linux/gpio.h>
18 #include <linux/init.h>
19 #include <linux/mm.h>
20 #include <linux/module.h>
21 #include <linux/platform_device.h>
22 #include <linux/spi/spi.h>
23 #include <linux/fb.h>
24 #include <linux/gpio_keys.h>
25 #include <linux/input.h>
26 #include <linux/leds.h>
27 #include <linux/clk.h>
28 #include <linux/atmel-mci.h>
29
30 #include <mach/hardware.h>
31 #include <video/atmel_lcdc.h>
32
33 #include <asm/setup.h>
34 #include <asm/mach-types.h>
35 #include <asm/irq.h>
36
37 #include <asm/mach/arch.h>
38 #include <asm/mach/map.h>
39 #include <asm/mach/irq.h>
40
41 #include <mach/board.h>
42 #include <mach/at91sam9_smc.h>
43 #include <mach/at91_shdwc.h>
44 #include <mach/system_rev.h>
45
46 #include "sam9_smc.h"
47 #include "generic.h"
48
49
50 static void __init ek_init_early(void)
51 {
52         /* Initialize processor: 12.000 MHz crystal */
53         at91_initialize(12000000);
54
55         /* DGBU on ttyS0. (Rx & Tx only) */
56         at91_register_uart(0, 0, 0);
57
58         /* USART0 not connected on the -EK board */
59         /* USART1 on ttyS2. (Rx, Tx, RTS, CTS) */
60         at91_register_uart(AT91SAM9G45_ID_US1, 2, ATMEL_UART_CTS | ATMEL_UART_RTS);
61
62         /* set serial console to ttyS0 (ie, DBGU) */
63         at91_set_serial_console(0);
64 }
65
66 /*
67  * USB HS Host port (common to OHCI & EHCI)
68  */
69 static struct at91_usbh_data __initdata ek_usbh_hs_data = {
70         .ports          = 2,
71         .vbus_pin       = {AT91_PIN_PD1, AT91_PIN_PD3},
72 };
73
74
75 /*
76  * USB HS Device port
77  */
78 static struct usba_platform_data __initdata ek_usba_udc_data = {
79         .vbus_pin       = AT91_PIN_PB19,
80 };
81
82
83 /*
84  * SPI devices.
85  */
86 static struct spi_board_info ek_spi_devices[] = {
87         {       /* DataFlash chip */
88                 .modalias       = "mtd_dataflash",
89                 .chip_select    = 0,
90                 .max_speed_hz   = 15 * 1000 * 1000,
91                 .bus_num        = 0,
92         },
93 };
94
95
96 /*
97  * MCI (SD/MMC)
98  */
99 static struct mci_platform_data __initdata mci0_data = {
100         .slot[0] = {
101                 .bus_width      = 4,
102                 .detect_pin     = AT91_PIN_PD10,
103         },
104 };
105
106 static struct mci_platform_data __initdata mci1_data = {
107         .slot[0] = {
108                 .bus_width      = 4,
109                 .detect_pin     = AT91_PIN_PD11,
110                 .wp_pin         = AT91_PIN_PD29,
111         },
112 };
113
114
115 /*
116  * MACB Ethernet device
117  */
118 static struct at91_eth_data __initdata ek_macb_data = {
119         .phy_irq_pin    = AT91_PIN_PD5,
120         .is_rmii        = 1,
121 };
122
123
124 /*
125  * NAND flash
126  */
127 static struct mtd_partition __initdata ek_nand_partition[] = {
128         {
129                 .name   = "Partition 1",
130                 .offset = 0,
131                 .size   = SZ_64M,
132         },
133         {
134                 .name   = "Partition 2",
135                 .offset = MTDPART_OFS_NXTBLK,
136                 .size   = MTDPART_SIZ_FULL,
137         },
138 };
139
140 /* det_pin is not connected */
141 static struct atmel_nand_data __initdata ek_nand_data = {
142         .ale            = 21,
143         .cle            = 22,
144         .rdy_pin        = AT91_PIN_PC8,
145         .enable_pin     = AT91_PIN_PC14,
146         .parts          = ek_nand_partition,
147         .num_parts      = ARRAY_SIZE(ek_nand_partition),
148 };
149
150 static struct sam9_smc_config __initdata ek_nand_smc_config = {
151         .ncs_read_setup         = 0,
152         .nrd_setup              = 2,
153         .ncs_write_setup        = 0,
154         .nwe_setup              = 2,
155
156         .ncs_read_pulse         = 4,
157         .nrd_pulse              = 4,
158         .ncs_write_pulse        = 4,
159         .nwe_pulse              = 4,
160
161         .read_cycle             = 7,
162         .write_cycle            = 7,
163
164         .mode                   = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE,
165         .tdf_cycles             = 3,
166 };
167
168 static void __init ek_add_device_nand(void)
169 {
170         ek_nand_data.bus_width_16 = board_have_nand_16bit();
171         /* setup bus-width (8 or 16) */
172         if (ek_nand_data.bus_width_16)
173                 ek_nand_smc_config.mode |= AT91_SMC_DBW_16;
174         else
175                 ek_nand_smc_config.mode |= AT91_SMC_DBW_8;
176
177         /* configure chip-select 3 (NAND) */
178         sam9_smc_configure(3, &ek_nand_smc_config);
179
180         at91_add_device_nand(&ek_nand_data);
181 }
182
183
184 /*
185  * LCD Controller
186  */
187 #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
188 static struct fb_videomode at91_tft_vga_modes[] = {
189         {
190                 .name           = "LG",
191                 .refresh        = 60,
192                 .xres           = 480,          .yres           = 272,
193                 .pixclock       = KHZ2PICOS(9000),
194
195                 .left_margin    = 1,            .right_margin   = 1,
196                 .upper_margin   = 40,           .lower_margin   = 1,
197                 .hsync_len      = 45,           .vsync_len      = 1,
198
199                 .sync           = 0,
200                 .vmode          = FB_VMODE_NONINTERLACED,
201         },
202 };
203
204 static struct fb_monspecs at91fb_default_monspecs = {
205         .manufacturer   = "LG",
206         .monitor        = "LB043WQ1",
207
208         .modedb         = at91_tft_vga_modes,
209         .modedb_len     = ARRAY_SIZE(at91_tft_vga_modes),
210         .hfmin          = 15000,
211         .hfmax          = 17640,
212         .vfmin          = 57,
213         .vfmax          = 67,
214 };
215
216 #define AT91SAM9G45_DEFAULT_LCDCON2     (ATMEL_LCDC_MEMOR_LITTLE \
217                                         | ATMEL_LCDC_DISTYPE_TFT \
218                                         | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE)
219
220 /* Driver datas */
221 static struct atmel_lcdfb_info __initdata ek_lcdc_data = {
222         .lcdcon_is_backlight            = true,
223         .default_bpp                    = 32,
224         .default_dmacon                 = ATMEL_LCDC_DMAEN,
225         .default_lcdcon2                = AT91SAM9G45_DEFAULT_LCDCON2,
226         .default_monspecs               = &at91fb_default_monspecs,
227         .guard_time                     = 9,
228         .lcd_wiring_mode                = ATMEL_LCDC_WIRING_RGB,
229 };
230
231 #else
232 static struct atmel_lcdfb_info __initdata ek_lcdc_data;
233 #endif
234
235
236 /*
237  * Touchscreen
238  */
239 static struct at91_tsadcc_data ek_tsadcc_data = {
240         .adc_clock              = 300000,
241         .pendet_debounce        = 0x0d,
242         .ts_sample_hold_time    = 0x0a,
243 };
244
245
246 /*
247  * GPIO Buttons
248  */
249 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
250 static struct gpio_keys_button ek_buttons[] = {
251         {       /* BP1, "leftclic" */
252                 .code           = BTN_LEFT,
253                 .gpio           = AT91_PIN_PB6,
254                 .active_low     = 1,
255                 .desc           = "left_click",
256                 .wakeup         = 1,
257         },
258         {       /* BP2, "rightclic" */
259                 .code           = BTN_RIGHT,
260                 .gpio           = AT91_PIN_PB7,
261                 .active_low     = 1,
262                 .desc           = "right_click",
263                 .wakeup         = 1,
264         },
265                 /* BP3, "joystick" */
266         {
267                 .code           = KEY_LEFT,
268                 .gpio           = AT91_PIN_PB14,
269                 .active_low     = 1,
270                 .desc           = "Joystick Left",
271         },
272         {
273                 .code           = KEY_RIGHT,
274                 .gpio           = AT91_PIN_PB15,
275                 .active_low     = 1,
276                 .desc           = "Joystick Right",
277         },
278         {
279                 .code           = KEY_UP,
280                 .gpio           = AT91_PIN_PB16,
281                 .active_low     = 1,
282                 .desc           = "Joystick Up",
283         },
284         {
285                 .code           = KEY_DOWN,
286                 .gpio           = AT91_PIN_PB17,
287                 .active_low     = 1,
288                 .desc           = "Joystick Down",
289         },
290         {
291                 .code           = KEY_ENTER,
292                 .gpio           = AT91_PIN_PB18,
293                 .active_low     = 1,
294                 .desc           = "Joystick Press",
295         },
296 };
297
298 static struct gpio_keys_platform_data ek_button_data = {
299         .buttons        = ek_buttons,
300         .nbuttons       = ARRAY_SIZE(ek_buttons),
301 };
302
303 static struct platform_device ek_button_device = {
304         .name           = "gpio-keys",
305         .id             = -1,
306         .num_resources  = 0,
307         .dev            = {
308                 .platform_data  = &ek_button_data,
309         }
310 };
311
312 static void __init ek_add_device_buttons(void)
313 {
314         int i;
315
316         for (i = 0; i < ARRAY_SIZE(ek_buttons); i++) {
317                 at91_set_GPIO_periph(ek_buttons[i].gpio, 1);
318                 at91_set_deglitch(ek_buttons[i].gpio, 1);
319         }
320
321         platform_device_register(&ek_button_device);
322 }
323 #else
324 static void __init ek_add_device_buttons(void) {}
325 #endif
326
327
328 /*
329  * AC97
330  * reset_pin is not connected: NRST
331  */
332 static struct ac97c_platform_data ek_ac97_data = {
333 };
334
335
336 /*
337  * LEDs ... these could all be PWM-driven, for variable brightness
338  */
339 static struct gpio_led ek_leds[] = {
340         {       /* "top" led, red, powerled */
341                 .name                   = "d8",
342                 .gpio                   = AT91_PIN_PD30,
343                 .default_trigger        = "heartbeat",
344         },
345         {       /* "left" led, green, userled2, pwm3 */
346                 .name                   = "d6",
347                 .gpio                   = AT91_PIN_PD0,
348                 .active_low             = 1,
349                 .default_trigger        = "nand-disk",
350         },
351 #if !(defined(CONFIG_LEDS_ATMEL_PWM) || defined(CONFIG_LEDS_ATMEL_PWM_MODULE))
352         {       /* "right" led, green, userled1, pwm1 */
353                 .name                   = "d7",
354                 .gpio                   = AT91_PIN_PD31,
355                 .active_low             = 1,
356                 .default_trigger        = "mmc0",
357         },
358 #endif
359 };
360
361
362 /*
363  * PWM Leds
364  */
365 static struct gpio_led ek_pwm_led[] = {
366 #if defined(CONFIG_LEDS_ATMEL_PWM) || defined(CONFIG_LEDS_ATMEL_PWM_MODULE)
367         {       /* "right" led, green, userled1, pwm1 */
368                 .name                   = "d7",
369                 .gpio                   = 1,    /* is PWM channel number */
370                 .active_low             = 1,
371                 .default_trigger        = "none",
372         },
373 #endif
374 };
375
376
377
378 static void __init ek_board_init(void)
379 {
380         /* Serial */
381         at91_add_device_serial();
382         /* USB HS Host */
383         at91_add_device_usbh_ohci(&ek_usbh_hs_data);
384         at91_add_device_usbh_ehci(&ek_usbh_hs_data);
385         /* USB HS Device */
386         at91_add_device_usba(&ek_usba_udc_data);
387         /* SPI */
388         at91_add_device_spi(ek_spi_devices, ARRAY_SIZE(ek_spi_devices));
389         /* MMC */
390         at91_add_device_mci(0, &mci0_data);
391         at91_add_device_mci(1, &mci1_data);
392         /* Ethernet */
393         at91_add_device_eth(&ek_macb_data);
394         /* NAND */
395         ek_add_device_nand();
396         /* I2C */
397         at91_add_device_i2c(0, NULL, 0);
398         /* LCD Controller */
399         at91_add_device_lcdc(&ek_lcdc_data);
400         /* Touch Screen */
401         at91_add_device_tsadcc(&ek_tsadcc_data);
402         /* Push Buttons */
403         ek_add_device_buttons();
404         /* AC97 */
405         at91_add_device_ac97(&ek_ac97_data);
406         /* LEDs */
407         at91_gpio_leds(ek_leds, ARRAY_SIZE(ek_leds));
408         at91_pwm_leds(ek_pwm_led, ARRAY_SIZE(ek_pwm_led));
409 }
410
411 MACHINE_START(AT91SAM9M10G45EK, "Atmel AT91SAM9M10G45-EK")
412         /* Maintainer: Atmel */
413         .timer          = &at91sam926x_timer,
414         .map_io         = at91_map_io,
415         .init_early     = ek_init_early,
416         .init_irq       = at91_init_irq_default,
417         .init_machine   = ek_board_init,
418 MACHINE_END