]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-at91/board-sam9m10g45ek.c
ffef9698d2c11172357ad412511b8ee4d96429fe
[karo-tx-linux.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/atmel-mci.h>
28 #include <linux/delay.h>
29
30 #include <linux/platform_data/at91_adc.h>
31
32 #include <mach/hardware.h>
33 #include <video/atmel_lcdc.h>
34 #include <media/soc_camera.h>
35 #include <media/atmel-isi.h>
36
37 #include <asm/setup.h>
38 #include <asm/mach-types.h>
39 #include <asm/irq.h>
40
41 #include <asm/mach/arch.h>
42 #include <asm/mach/map.h>
43 #include <asm/mach/irq.h>
44
45 #include <mach/at91sam9_smc.h>
46 #include <mach/system_rev.h>
47
48 #include "at91_aic.h"
49 #include "at91_shdwc.h"
50 #include "board.h"
51 #include "sam9_smc.h"
52 #include "generic.h"
53 #include "gpio.h"
54
55
56 static void __init ek_init_early(void)
57 {
58         /* Initialize processor: 12.000 MHz crystal */
59         at91_initialize(12000000);
60 }
61
62 /*
63  * USB HS Host port (common to OHCI & EHCI)
64  */
65 static struct at91_usbh_data __initdata ek_usbh_hs_data = {
66         .ports          = 2,
67         .vbus_pin       = {AT91_PIN_PD1, AT91_PIN_PD3},
68         .vbus_pin_active_low = {1, 1},
69         .overcurrent_pin= {-EINVAL, -EINVAL},
70 };
71
72
73 /*
74  * USB HS Device port
75  */
76 static struct usba_platform_data __initdata ek_usba_udc_data = {
77         .vbus_pin       = AT91_PIN_PB19,
78 };
79
80
81 /*
82  * SPI devices.
83  */
84 static struct spi_board_info ek_spi_devices[] = {
85         {       /* DataFlash chip */
86                 .modalias       = "mtd_dataflash",
87                 .chip_select    = 0,
88                 .max_speed_hz   = 15 * 1000 * 1000,
89                 .bus_num        = 0,
90         },
91 };
92
93
94 /*
95  * MCI (SD/MMC)
96  */
97 static struct mci_platform_data __initdata mci0_data = {
98         .slot[0] = {
99                 .bus_width      = 4,
100                 .detect_pin     = AT91_PIN_PD10,
101                 .wp_pin         = -EINVAL,
102         },
103 };
104
105 static struct mci_platform_data __initdata mci1_data = {
106         .slot[0] = {
107                 .bus_width      = 4,
108                 .detect_pin     = AT91_PIN_PD11,
109                 .wp_pin         = AT91_PIN_PD29,
110         },
111 };
112
113
114 /*
115  * MACB Ethernet device
116  */
117 static struct macb_platform_data __initdata ek_macb_data = {
118         .phy_irq_pin    = AT91_PIN_PD5,
119         .is_rmii        = 1,
120 };
121
122
123 /*
124  * NAND flash
125  */
126 static struct mtd_partition __initdata ek_nand_partition[] = {
127         {
128                 .name   = "Partition 1",
129                 .offset = 0,
130                 .size   = SZ_64M,
131         },
132         {
133                 .name   = "Partition 2",
134                 .offset = MTDPART_OFS_NXTBLK,
135                 .size   = MTDPART_SIZ_FULL,
136         },
137 };
138
139 /* det_pin is not connected */
140 static struct atmel_nand_data __initdata ek_nand_data = {
141         .ale            = 21,
142         .cle            = 22,
143         .rdy_pin        = AT91_PIN_PC8,
144         .enable_pin     = AT91_PIN_PC14,
145         .det_pin        = -EINVAL,
146         .ecc_mode       = NAND_ECC_SOFT,
147         .on_flash_bbt   = 1,
148         .parts          = ek_nand_partition,
149         .num_parts      = ARRAY_SIZE(ek_nand_partition),
150 };
151
152 static struct sam9_smc_config __initdata ek_nand_smc_config = {
153         .ncs_read_setup         = 0,
154         .nrd_setup              = 2,
155         .ncs_write_setup        = 0,
156         .nwe_setup              = 2,
157
158         .ncs_read_pulse         = 4,
159         .nrd_pulse              = 4,
160         .ncs_write_pulse        = 4,
161         .nwe_pulse              = 4,
162
163         .read_cycle             = 7,
164         .write_cycle            = 7,
165
166         .mode                   = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE,
167         .tdf_cycles             = 3,
168 };
169
170 static void __init ek_add_device_nand(void)
171 {
172         ek_nand_data.bus_width_16 = board_have_nand_16bit();
173         /* setup bus-width (8 or 16) */
174         if (ek_nand_data.bus_width_16)
175                 ek_nand_smc_config.mode |= AT91_SMC_DBW_16;
176         else
177                 ek_nand_smc_config.mode |= AT91_SMC_DBW_8;
178
179         /* configure chip-select 3 (NAND) */
180         sam9_smc_configure(0, 3, &ek_nand_smc_config);
181
182         at91_add_device_nand(&ek_nand_data);
183 }
184
185
186 /*
187  *  ISI
188  */
189 static struct isi_platform_data __initdata isi_data = {
190         .frate                  = ISI_CFG1_FRATE_CAPTURE_ALL,
191         /* to use codec and preview path simultaneously */
192         .full_mode              = 1,
193         .data_width_flags       = ISI_DATAWIDTH_8 | ISI_DATAWIDTH_10,
194         /* ISI_MCK is provided by programmable clock or external clock */
195         .mck_hz                 = 25000000,
196 };
197
198
199 /*
200  * soc-camera OV2640
201  */
202 #if defined(CONFIG_SOC_CAMERA_OV2640) || \
203         defined(CONFIG_SOC_CAMERA_OV2640_MODULE)
204 static unsigned long isi_camera_query_bus_param(struct soc_camera_link *link)
205 {
206         /* ISI board for ek using default 8-bits connection */
207         return SOCAM_DATAWIDTH_8;
208 }
209
210 static int i2c_camera_power(struct device *dev, int on)
211 {
212         /* enable or disable the camera */
213         pr_debug("%s: %s the camera\n", __func__, on ? "ENABLE" : "DISABLE");
214         at91_set_gpio_output(AT91_PIN_PD13, !on);
215
216         if (!on)
217                 goto out;
218
219         /* If enabled, give a reset impulse */
220         at91_set_gpio_output(AT91_PIN_PD12, 0);
221         msleep(20);
222         at91_set_gpio_output(AT91_PIN_PD12, 1);
223         msleep(100);
224
225 out:
226         return 0;
227 }
228
229 static struct i2c_board_info i2c_camera = {
230         I2C_BOARD_INFO("ov2640", 0x30),
231 };
232
233 static struct soc_camera_link iclink_ov2640 = {
234         .bus_id                 = 0,
235         .board_info             = &i2c_camera,
236         .i2c_adapter_id         = 0,
237         .power                  = i2c_camera_power,
238         .query_bus_param        = isi_camera_query_bus_param,
239 };
240
241 static struct platform_device isi_ov2640 = {
242         .name   = "soc-camera-pdrv",
243         .id     = 0,
244         .dev    = {
245                 .platform_data = &iclink_ov2640,
246         },
247 };
248 #endif
249
250
251 /*
252  * LCD Controller
253  */
254 #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
255 static struct fb_videomode at91_tft_vga_modes[] = {
256         {
257                 .name           = "LG",
258                 .refresh        = 60,
259                 .xres           = 480,          .yres           = 272,
260                 .pixclock       = KHZ2PICOS(9000),
261
262                 .left_margin    = 1,            .right_margin   = 1,
263                 .upper_margin   = 40,           .lower_margin   = 1,
264                 .hsync_len      = 45,           .vsync_len      = 1,
265
266                 .sync           = 0,
267                 .vmode          = FB_VMODE_NONINTERLACED,
268         },
269 };
270
271 static struct fb_monspecs at91fb_default_monspecs = {
272         .manufacturer   = "LG",
273         .monitor        = "LB043WQ1",
274
275         .modedb         = at91_tft_vga_modes,
276         .modedb_len     = ARRAY_SIZE(at91_tft_vga_modes),
277         .hfmin          = 15000,
278         .hfmax          = 17640,
279         .vfmin          = 57,
280         .vfmax          = 67,
281 };
282
283 #define AT91SAM9G45_DEFAULT_LCDCON2     (ATMEL_LCDC_MEMOR_LITTLE \
284                                         | ATMEL_LCDC_DISTYPE_TFT \
285                                         | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE)
286
287 /* Driver datas */
288 static struct atmel_lcdfb_pdata __initdata ek_lcdc_data = {
289         .lcdcon_is_backlight            = true,
290         .default_bpp                    = 32,
291         .default_dmacon                 = ATMEL_LCDC_DMAEN,
292         .default_lcdcon2                = AT91SAM9G45_DEFAULT_LCDCON2,
293         .default_monspecs               = &at91fb_default_monspecs,
294         .guard_time                     = 9,
295         .lcd_wiring_mode                = ATMEL_LCDC_WIRING_RGB,
296 };
297
298 #else
299 static struct atmel_lcdfb_pdata __initdata ek_lcdc_data;
300 #endif
301
302
303 /*
304  * Touchscreen
305  */
306 static struct at91_tsadcc_data ek_tsadcc_data = {
307         .adc_clock              = 300000,
308         .pendet_debounce        = 0x0d,
309         .ts_sample_hold_time    = 0x0a,
310 };
311
312 /*
313  * ADCs
314  */
315 static struct at91_adc_data ek_adc_data = {
316         .channels_used = BIT(0) | BIT(1) | BIT(2) | BIT(3) | BIT(4) | BIT(5) | BIT(6) | BIT(7),
317         .use_external_triggers = true,
318         .vref = 3300,
319         .touchscreen_type = ATMEL_ADC_TOUCHSCREEN_4WIRE,
320 };
321
322 /*
323  * GPIO Buttons
324  */
325 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
326 static struct gpio_keys_button ek_buttons[] = {
327         {       /* BP1, "leftclic" */
328                 .code           = BTN_LEFT,
329                 .gpio           = AT91_PIN_PB6,
330                 .active_low     = 1,
331                 .desc           = "left_click",
332                 .wakeup         = 1,
333         },
334         {       /* BP2, "rightclic" */
335                 .code           = BTN_RIGHT,
336                 .gpio           = AT91_PIN_PB7,
337                 .active_low     = 1,
338                 .desc           = "right_click",
339                 .wakeup         = 1,
340         },
341                 /* BP3, "joystick" */
342         {
343                 .code           = KEY_LEFT,
344                 .gpio           = AT91_PIN_PB14,
345                 .active_low     = 1,
346                 .desc           = "Joystick Left",
347         },
348         {
349                 .code           = KEY_RIGHT,
350                 .gpio           = AT91_PIN_PB15,
351                 .active_low     = 1,
352                 .desc           = "Joystick Right",
353         },
354         {
355                 .code           = KEY_UP,
356                 .gpio           = AT91_PIN_PB16,
357                 .active_low     = 1,
358                 .desc           = "Joystick Up",
359         },
360         {
361                 .code           = KEY_DOWN,
362                 .gpio           = AT91_PIN_PB17,
363                 .active_low     = 1,
364                 .desc           = "Joystick Down",
365         },
366         {
367                 .code           = KEY_ENTER,
368                 .gpio           = AT91_PIN_PB18,
369                 .active_low     = 1,
370                 .desc           = "Joystick Press",
371         },
372 };
373
374 static struct gpio_keys_platform_data ek_button_data = {
375         .buttons        = ek_buttons,
376         .nbuttons       = ARRAY_SIZE(ek_buttons),
377 };
378
379 static struct platform_device ek_button_device = {
380         .name           = "gpio-keys",
381         .id             = -1,
382         .num_resources  = 0,
383         .dev            = {
384                 .platform_data  = &ek_button_data,
385         }
386 };
387
388 static void __init ek_add_device_buttons(void)
389 {
390         int i;
391
392         for (i = 0; i < ARRAY_SIZE(ek_buttons); i++) {
393                 at91_set_GPIO_periph(ek_buttons[i].gpio, 1);
394                 at91_set_deglitch(ek_buttons[i].gpio, 1);
395         }
396
397         platform_device_register(&ek_button_device);
398 }
399 #else
400 static void __init ek_add_device_buttons(void) {}
401 #endif
402
403
404 /*
405  * AC97
406  * reset_pin is not connected: NRST
407  */
408 static struct ac97c_platform_data ek_ac97_data = {
409         .reset_pin      = -EINVAL,
410 };
411
412
413 /*
414  * LEDs ... these could all be PWM-driven, for variable brightness
415  */
416 static struct gpio_led ek_leds[] = {
417         {       /* "top" led, red, powerled */
418                 .name                   = "d8",
419                 .gpio                   = AT91_PIN_PD30,
420                 .default_trigger        = "heartbeat",
421         },
422         {       /* "left" led, green, userled2, pwm3 */
423                 .name                   = "d6",
424                 .gpio                   = AT91_PIN_PD0,
425                 .active_low             = 1,
426                 .default_trigger        = "nand-disk",
427         },
428 #if !(defined(CONFIG_LEDS_ATMEL_PWM) || defined(CONFIG_LEDS_ATMEL_PWM_MODULE))
429         {       /* "right" led, green, userled1, pwm1 */
430                 .name                   = "d7",
431                 .gpio                   = AT91_PIN_PD31,
432                 .active_low             = 1,
433                 .default_trigger        = "mmc0",
434         },
435 #endif
436 };
437
438
439 /*
440  * PWM Leds
441  */
442 static struct gpio_led ek_pwm_led[] = {
443 #if defined(CONFIG_LEDS_ATMEL_PWM) || defined(CONFIG_LEDS_ATMEL_PWM_MODULE)
444         {       /* "right" led, green, userled1, pwm1 */
445                 .name                   = "d7",
446                 .gpio                   = 1,    /* is PWM channel number */
447                 .active_low             = 1,
448                 .default_trigger        = "none",
449         },
450 #endif
451 };
452
453 static struct platform_device *devices[] __initdata = {
454 #if defined(CONFIG_SOC_CAMERA_OV2640) || \
455         defined(CONFIG_SOC_CAMERA_OV2640_MODULE)
456         &isi_ov2640,
457 #endif
458 };
459
460 static void __init ek_board_init(void)
461 {
462         /* Serial */
463         /* DGBU on ttyS0. (Rx & Tx only) */
464         at91_register_uart(0, 0, 0);
465
466         /* USART0 not connected on the -EK board */
467         /* USART1 on ttyS2. (Rx, Tx, RTS, CTS) */
468         at91_register_uart(AT91SAM9G45_ID_US1, 2, ATMEL_UART_CTS | ATMEL_UART_RTS);
469         at91_add_device_serial();
470         /* USB HS Host */
471         at91_add_device_usbh_ohci(&ek_usbh_hs_data);
472         at91_add_device_usbh_ehci(&ek_usbh_hs_data);
473         /* USB HS Device */
474         at91_add_device_usba(&ek_usba_udc_data);
475         /* SPI */
476         at91_add_device_spi(ek_spi_devices, ARRAY_SIZE(ek_spi_devices));
477         /* MMC */
478         at91_add_device_mci(0, &mci0_data);
479         at91_add_device_mci(1, &mci1_data);
480         /* Ethernet */
481         at91_add_device_eth(&ek_macb_data);
482         /* NAND */
483         ek_add_device_nand();
484         /* I2C */
485         at91_add_device_i2c(0, NULL, 0);
486         /* ISI, using programmable clock as ISI_MCK */
487         at91_add_device_isi(&isi_data, true);
488         /* LCD Controller */
489         at91_add_device_lcdc(&ek_lcdc_data);
490         /* Touch Screen */
491         at91_add_device_tsadcc(&ek_tsadcc_data);
492         /* ADC */
493         at91_add_device_adc(&ek_adc_data);
494         /* Push Buttons */
495         ek_add_device_buttons();
496         /* AC97 */
497         at91_add_device_ac97(&ek_ac97_data);
498         /* LEDs */
499         at91_gpio_leds(ek_leds, ARRAY_SIZE(ek_leds));
500         at91_pwm_leds(ek_pwm_led, ARRAY_SIZE(ek_pwm_led));
501         /* Other platform devices */
502         platform_add_devices(devices, ARRAY_SIZE(devices));
503 }
504
505 MACHINE_START(AT91SAM9M10G45EK, "Atmel AT91SAM9M10G45-EK")
506         /* Maintainer: Atmel */
507         .init_time      = at91sam926x_pit_init,
508         .map_io         = at91_map_io,
509         .handle_irq     = at91_aic_handle_irq,
510         .init_early     = ek_init_early,
511         .init_irq       = at91_init_irq_default,
512         .init_machine   = ek_board_init,
513 MACHINE_END