spi-topcliff-pch: supports a spi mode setup and bit order setup by IO control
[zen-stable.git] / arch / arm / mach-at91 / board-sam9m10g45ek.c
blob1d2b1d19f521d3a61e0ed27b474cb6d82f07ac24
1 /*
2 * Board-specific setup code for the AT91SAM9M10G45 Evaluation Kit family
4 * Covers: * AT91SAM9G45-EKES board
5 * * AT91SAM9M10G45-EK board
7 * Copyright (C) 2009 Atmel Corporation.
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.
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>
30 #include <mach/hardware.h>
31 #include <video/atmel_lcdc.h>
33 #include <asm/setup.h>
34 #include <asm/mach-types.h>
35 #include <asm/irq.h>
37 #include <asm/mach/arch.h>
38 #include <asm/mach/map.h>
39 #include <asm/mach/irq.h>
41 #include <mach/board.h>
42 #include <mach/at91sam9_smc.h>
43 #include <mach/at91_shdwc.h>
44 #include <mach/system_rev.h>
46 #include "sam9_smc.h"
47 #include "generic.h"
50 static void __init ek_init_early(void)
52 /* Initialize processor: 12.000 MHz crystal */
53 at91_initialize(12000000);
55 /* DGBU on ttyS0. (Rx & Tx only) */
56 at91_register_uart(0, 0, 0);
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);
62 /* set serial console to ttyS0 (ie, DBGU) */
63 at91_set_serial_console(0);
67 * USB HS Host port (common to OHCI & EHCI)
69 static struct at91_usbh_data __initdata ek_usbh_hs_data = {
70 .ports = 2,
71 .vbus_pin = {AT91_PIN_PD1, AT91_PIN_PD3},
72 .vbus_pin_active_low = {1, 1},
73 .overcurrent_pin= {-EINVAL, -EINVAL},
78 * USB HS Device port
80 static struct usba_platform_data __initdata ek_usba_udc_data = {
81 .vbus_pin = AT91_PIN_PB19,
86 * SPI devices.
88 static struct spi_board_info ek_spi_devices[] = {
89 { /* DataFlash chip */
90 .modalias = "mtd_dataflash",
91 .chip_select = 0,
92 .max_speed_hz = 15 * 1000 * 1000,
93 .bus_num = 0,
99 * MCI (SD/MMC)
101 static struct mci_platform_data __initdata mci0_data = {
102 .slot[0] = {
103 .bus_width = 4,
104 .detect_pin = AT91_PIN_PD10,
105 .wp_pin = -EINVAL,
109 static struct mci_platform_data __initdata mci1_data = {
110 .slot[0] = {
111 .bus_width = 4,
112 .detect_pin = AT91_PIN_PD11,
113 .wp_pin = AT91_PIN_PD29,
119 * MACB Ethernet device
121 static struct macb_platform_data __initdata ek_macb_data = {
122 .phy_irq_pin = AT91_PIN_PD5,
123 .is_rmii = 1,
128 * NAND flash
130 static struct mtd_partition __initdata ek_nand_partition[] = {
132 .name = "Partition 1",
133 .offset = 0,
134 .size = SZ_64M,
137 .name = "Partition 2",
138 .offset = MTDPART_OFS_NXTBLK,
139 .size = MTDPART_SIZ_FULL,
143 /* det_pin is not connected */
144 static struct atmel_nand_data __initdata ek_nand_data = {
145 .ale = 21,
146 .cle = 22,
147 .rdy_pin = AT91_PIN_PC8,
148 .enable_pin = AT91_PIN_PC14,
149 .det_pin = -EINVAL,
150 .parts = ek_nand_partition,
151 .num_parts = ARRAY_SIZE(ek_nand_partition),
154 static struct sam9_smc_config __initdata ek_nand_smc_config = {
155 .ncs_read_setup = 0,
156 .nrd_setup = 2,
157 .ncs_write_setup = 0,
158 .nwe_setup = 2,
160 .ncs_read_pulse = 4,
161 .nrd_pulse = 4,
162 .ncs_write_pulse = 4,
163 .nwe_pulse = 4,
165 .read_cycle = 7,
166 .write_cycle = 7,
168 .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE,
169 .tdf_cycles = 3,
172 static void __init ek_add_device_nand(void)
174 ek_nand_data.bus_width_16 = board_have_nand_16bit();
175 /* setup bus-width (8 or 16) */
176 if (ek_nand_data.bus_width_16)
177 ek_nand_smc_config.mode |= AT91_SMC_DBW_16;
178 else
179 ek_nand_smc_config.mode |= AT91_SMC_DBW_8;
181 /* configure chip-select 3 (NAND) */
182 sam9_smc_configure(0, 3, &ek_nand_smc_config);
184 at91_add_device_nand(&ek_nand_data);
189 * LCD Controller
191 #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
192 static struct fb_videomode at91_tft_vga_modes[] = {
194 .name = "LG",
195 .refresh = 60,
196 .xres = 480, .yres = 272,
197 .pixclock = KHZ2PICOS(9000),
199 .left_margin = 1, .right_margin = 1,
200 .upper_margin = 40, .lower_margin = 1,
201 .hsync_len = 45, .vsync_len = 1,
203 .sync = 0,
204 .vmode = FB_VMODE_NONINTERLACED,
208 static struct fb_monspecs at91fb_default_monspecs = {
209 .manufacturer = "LG",
210 .monitor = "LB043WQ1",
212 .modedb = at91_tft_vga_modes,
213 .modedb_len = ARRAY_SIZE(at91_tft_vga_modes),
214 .hfmin = 15000,
215 .hfmax = 17640,
216 .vfmin = 57,
217 .vfmax = 67,
220 #define AT91SAM9G45_DEFAULT_LCDCON2 (ATMEL_LCDC_MEMOR_LITTLE \
221 | ATMEL_LCDC_DISTYPE_TFT \
222 | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE)
224 /* Driver datas */
225 static struct atmel_lcdfb_info __initdata ek_lcdc_data = {
226 .lcdcon_is_backlight = true,
227 .default_bpp = 32,
228 .default_dmacon = ATMEL_LCDC_DMAEN,
229 .default_lcdcon2 = AT91SAM9G45_DEFAULT_LCDCON2,
230 .default_monspecs = &at91fb_default_monspecs,
231 .guard_time = 9,
232 .lcd_wiring_mode = ATMEL_LCDC_WIRING_RGB,
235 #else
236 static struct atmel_lcdfb_info __initdata ek_lcdc_data;
237 #endif
241 * Touchscreen
243 static struct at91_tsadcc_data ek_tsadcc_data = {
244 .adc_clock = 300000,
245 .pendet_debounce = 0x0d,
246 .ts_sample_hold_time = 0x0a,
251 * GPIO Buttons
253 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
254 static struct gpio_keys_button ek_buttons[] = {
255 { /* BP1, "leftclic" */
256 .code = BTN_LEFT,
257 .gpio = AT91_PIN_PB6,
258 .active_low = 1,
259 .desc = "left_click",
260 .wakeup = 1,
262 { /* BP2, "rightclic" */
263 .code = BTN_RIGHT,
264 .gpio = AT91_PIN_PB7,
265 .active_low = 1,
266 .desc = "right_click",
267 .wakeup = 1,
269 /* BP3, "joystick" */
271 .code = KEY_LEFT,
272 .gpio = AT91_PIN_PB14,
273 .active_low = 1,
274 .desc = "Joystick Left",
277 .code = KEY_RIGHT,
278 .gpio = AT91_PIN_PB15,
279 .active_low = 1,
280 .desc = "Joystick Right",
283 .code = KEY_UP,
284 .gpio = AT91_PIN_PB16,
285 .active_low = 1,
286 .desc = "Joystick Up",
289 .code = KEY_DOWN,
290 .gpio = AT91_PIN_PB17,
291 .active_low = 1,
292 .desc = "Joystick Down",
295 .code = KEY_ENTER,
296 .gpio = AT91_PIN_PB18,
297 .active_low = 1,
298 .desc = "Joystick Press",
302 static struct gpio_keys_platform_data ek_button_data = {
303 .buttons = ek_buttons,
304 .nbuttons = ARRAY_SIZE(ek_buttons),
307 static struct platform_device ek_button_device = {
308 .name = "gpio-keys",
309 .id = -1,
310 .num_resources = 0,
311 .dev = {
312 .platform_data = &ek_button_data,
316 static void __init ek_add_device_buttons(void)
318 int i;
320 for (i = 0; i < ARRAY_SIZE(ek_buttons); i++) {
321 at91_set_GPIO_periph(ek_buttons[i].gpio, 1);
322 at91_set_deglitch(ek_buttons[i].gpio, 1);
325 platform_device_register(&ek_button_device);
327 #else
328 static void __init ek_add_device_buttons(void) {}
329 #endif
333 * AC97
334 * reset_pin is not connected: NRST
336 static struct ac97c_platform_data ek_ac97_data = {
337 .reset_pin = -EINVAL,
342 * LEDs ... these could all be PWM-driven, for variable brightness
344 static struct gpio_led ek_leds[] = {
345 { /* "top" led, red, powerled */
346 .name = "d8",
347 .gpio = AT91_PIN_PD30,
348 .default_trigger = "heartbeat",
350 { /* "left" led, green, userled2, pwm3 */
351 .name = "d6",
352 .gpio = AT91_PIN_PD0,
353 .active_low = 1,
354 .default_trigger = "nand-disk",
356 #if !(defined(CONFIG_LEDS_ATMEL_PWM) || defined(CONFIG_LEDS_ATMEL_PWM_MODULE))
357 { /* "right" led, green, userled1, pwm1 */
358 .name = "d7",
359 .gpio = AT91_PIN_PD31,
360 .active_low = 1,
361 .default_trigger = "mmc0",
363 #endif
368 * PWM Leds
370 static struct gpio_led ek_pwm_led[] = {
371 #if defined(CONFIG_LEDS_ATMEL_PWM) || defined(CONFIG_LEDS_ATMEL_PWM_MODULE)
372 { /* "right" led, green, userled1, pwm1 */
373 .name = "d7",
374 .gpio = 1, /* is PWM channel number */
375 .active_low = 1,
376 .default_trigger = "none",
378 #endif
383 static void __init ek_board_init(void)
385 /* Serial */
386 at91_add_device_serial();
387 /* USB HS Host */
388 at91_add_device_usbh_ohci(&ek_usbh_hs_data);
389 at91_add_device_usbh_ehci(&ek_usbh_hs_data);
390 /* USB HS Device */
391 at91_add_device_usba(&ek_usba_udc_data);
392 /* SPI */
393 at91_add_device_spi(ek_spi_devices, ARRAY_SIZE(ek_spi_devices));
394 /* MMC */
395 at91_add_device_mci(0, &mci0_data);
396 at91_add_device_mci(1, &mci1_data);
397 /* Ethernet */
398 at91_add_device_eth(&ek_macb_data);
399 /* NAND */
400 ek_add_device_nand();
401 /* I2C */
402 at91_add_device_i2c(0, NULL, 0);
403 /* LCD Controller */
404 at91_add_device_lcdc(&ek_lcdc_data);
405 /* Touch Screen */
406 at91_add_device_tsadcc(&ek_tsadcc_data);
407 /* Push Buttons */
408 ek_add_device_buttons();
409 /* AC97 */
410 at91_add_device_ac97(&ek_ac97_data);
411 /* LEDs */
412 at91_gpio_leds(ek_leds, ARRAY_SIZE(ek_leds));
413 at91_pwm_leds(ek_pwm_led, ARRAY_SIZE(ek_pwm_led));
416 MACHINE_START(AT91SAM9M10G45EK, "Atmel AT91SAM9M10G45-EK")
417 /* Maintainer: Atmel */
418 .timer = &at91sam926x_timer,
419 .map_io = at91_map_io,
420 .init_early = ek_init_early,
421 .init_irq = at91_init_irq_default,
422 .init_machine = ek_board_init,
423 MACHINE_END