blob: 2736453821b0d55e9782d065107c176102ca4c35 [file] [log] [blame]
Andrew Victor022cbd72006-12-01 14:38:59 +01001/*
Andrew Victord0760b32007-02-08 09:00:39 +01002 * linux/arch/arm/mach-at91/board-sam9261ek.c
Andrew Victor022cbd72006-12-01 14:38:59 +01003 *
4 * Copyright (C) 2005 SAN People
5 * Copyright (C) 2006 Atmel
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <linux/types.h>
Russell King2f8163b2011-07-26 10:53:52 +010023#include <linux/gpio.h>
Andrew Victor022cbd72006-12-01 14:38:59 +010024#include <linux/init.h>
25#include <linux/mm.h>
26#include <linux/module.h>
27#include <linux/platform_device.h>
28#include <linux/spi/spi.h>
Andrew Victor23522722007-05-02 17:58:51 +010029#include <linux/spi/ads7846.h>
Andrew Victor5e9df922008-04-02 22:18:35 +010030#include <linux/spi/at73c213.h>
31#include <linux/clk.h>
Andrew Victor022cbd72006-12-01 14:38:59 +010032#include <linux/dm9000.h>
Andrew Victorcdf95c72007-05-14 15:08:21 +010033#include <linux/fb.h>
Andrew Victord0f9b552007-06-04 08:41:59 +010034#include <linux/gpio_keys.h>
35#include <linux/input.h>
Andrew Victorcdf95c72007-05-14 15:08:21 +010036
37#include <video/atmel_lcdc.h>
Andrew Victor022cbd72006-12-01 14:38:59 +010038
Andrew Victor022cbd72006-12-01 14:38:59 +010039#include <asm/setup.h>
40#include <asm/mach-types.h>
41#include <asm/irq.h>
42
43#include <asm/mach/arch.h>
44#include <asm/mach/map.h>
45#include <asm/mach/irq.h>
46
Andrew Victore5052402008-09-21 21:30:02 +010047#include <mach/hardware.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010048#include <mach/board.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010049#include <mach/at91sam9_smc.h>
Andrew Victor8cdae512008-10-06 20:05:35 +010050#include <mach/at91_shdwc.h>
Jean-Christophe PLAGNIOL-VILLARD76b2ab72011-04-14 00:34:03 +080051#include <mach/system_rev.h>
Andrew Victor022cbd72006-12-01 14:38:59 +010052
Andrew Victor8cdae512008-10-06 20:05:35 +010053#include "sam9_smc.h"
Andrew Victor022cbd72006-12-01 14:38:59 +010054#include "generic.h"
55
56
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +080057static void __init ek_init_early(void)
Andrew Victor022cbd72006-12-01 14:38:59 +010058{
59 /* Initialize processor: 18.432 MHz crystal */
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080060 at91_initialize(18432000);
Andrew Victor022cbd72006-12-01 14:38:59 +010061}
62
Andrew Victor022cbd72006-12-01 14:38:59 +010063/*
64 * DM9000 ethernet device
65 */
66#if defined(CONFIG_DM9000)
Andrew Victor8cdae512008-10-06 20:05:35 +010067static struct resource dm9000_resource[] = {
Andrew Victor022cbd72006-12-01 14:38:59 +010068 [0] = {
69 .start = AT91_CHIPSELECT_2,
70 .end = AT91_CHIPSELECT_2 + 3,
71 .flags = IORESOURCE_MEM
72 },
73 [1] = {
74 .start = AT91_CHIPSELECT_2 + 0x44,
75 .end = AT91_CHIPSELECT_2 + 0xFF,
76 .flags = IORESOURCE_MEM
77 },
78 [2] = {
Andrew Victor022cbd72006-12-01 14:38:59 +010079 .flags = IORESOURCE_IRQ
Nicolas Ferre1879c452010-09-10 11:38:43 +020080 | IORESOURCE_IRQ_LOWEDGE | IORESOURCE_IRQ_HIGHEDGE,
Andrew Victor022cbd72006-12-01 14:38:59 +010081 }
82};
83
84static struct dm9000_plat_data dm9000_platdata = {
Nicolas Ferre1879c452010-09-10 11:38:43 +020085 .flags = DM9000_PLATF_16BITONLY | DM9000_PLATF_NO_EEPROM,
Andrew Victor022cbd72006-12-01 14:38:59 +010086};
87
Andrew Victor8cdae512008-10-06 20:05:35 +010088static struct platform_device dm9000_device = {
Andrew Victor022cbd72006-12-01 14:38:59 +010089 .name = "dm9000",
90 .id = 0,
Andrew Victor8cdae512008-10-06 20:05:35 +010091 .num_resources = ARRAY_SIZE(dm9000_resource),
92 .resource = dm9000_resource,
Andrew Victor022cbd72006-12-01 14:38:59 +010093 .dev = {
94 .platform_data = &dm9000_platdata,
95 }
96};
97
Andrew Victor8cdae512008-10-06 20:05:35 +010098/*
99 * SMC timings for the DM9000.
100 * Note: These timings were calculated for MASTER_CLOCK = 100000000 according to the DM9000 timings.
101 */
102static struct sam9_smc_config __initdata dm9000_smc_config = {
103 .ncs_read_setup = 0,
104 .nrd_setup = 2,
105 .ncs_write_setup = 0,
106 .nwe_setup = 2,
107
108 .ncs_read_pulse = 8,
109 .nrd_pulse = 4,
110 .ncs_write_pulse = 8,
111 .nwe_pulse = 4,
112
113 .read_cycle = 16,
114 .write_cycle = 16,
115
116 .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE | AT91_SMC_BAT_WRITE | AT91_SMC_DBW_16,
117 .tdf_cycles = 1,
118};
119
Andrew Victor022cbd72006-12-01 14:38:59 +0100120static void __init ek_add_device_dm9000(void)
121{
Jean-Christophe PLAGNIOL-VILLARDee9dd762012-04-10 17:32:44 +0200122 struct resource *r = &dm9000_resource[2];
123
Andrew Victor8cdae512008-10-06 20:05:35 +0100124 /* Configure chip-select 2 (DM9000) */
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800125 sam9_smc_configure(0, 2, &dm9000_smc_config);
Andrew Victor022cbd72006-12-01 14:38:59 +0100126
127 /* Configure Reset signal as output */
128 at91_set_gpio_output(AT91_PIN_PC10, 0);
129
130 /* Configure Interrupt pin as input, no pull-up */
131 at91_set_gpio_input(AT91_PIN_PC11, 0);
132
Jean-Christophe PLAGNIOL-VILLARDee9dd762012-04-10 17:32:44 +0200133 r->start = r->end = gpio_to_irq(AT91_PIN_PC11);
Andrew Victor8cdae512008-10-06 20:05:35 +0100134 platform_device_register(&dm9000_device);
Andrew Victor022cbd72006-12-01 14:38:59 +0100135}
136#else
137static void __init ek_add_device_dm9000(void) {}
138#endif /* CONFIG_DM9000 */
139
140
141/*
142 * USB Host Port
143 */
144static struct at91_usbh_data __initdata ek_usbh_data = {
145 .ports = 2,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +0800146 .vbus_pin = {-EINVAL, -EINVAL},
147 .overcurrent_pin= {-EINVAL, -EINVAL},
Andrew Victor022cbd72006-12-01 14:38:59 +0100148};
149
150
151/*
152 * USB Device Port
153 */
154static struct at91_udc_data __initdata ek_udc_data = {
155 .vbus_pin = AT91_PIN_PB29,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +0800156 .pullup_pin = -EINVAL, /* pull-up driven by UDC */
Andrew Victor022cbd72006-12-01 14:38:59 +0100157};
158
159
160/*
Andrew Victor022cbd72006-12-01 14:38:59 +0100161 * NAND flash
162 */
163static struct mtd_partition __initdata ek_nand_partition[] = {
164 {
165 .name = "Partition 1",
166 .offset = 0,
Andrew Victore5052402008-09-21 21:30:02 +0100167 .size = SZ_256K,
Andrew Victor022cbd72006-12-01 14:38:59 +0100168 },
169 {
170 .name = "Partition 2",
Andrew Victore5052402008-09-21 21:30:02 +0100171 .offset = MTDPART_OFS_NXTBLK,
Andrew Victor022cbd72006-12-01 14:38:59 +0100172 .size = MTDPART_SIZ_FULL,
173 },
174};
175
HÃ¥vard Skinnemoen3c3796c2008-06-06 18:04:53 +0200176static struct atmel_nand_data __initdata ek_nand_data = {
Andrew Victor022cbd72006-12-01 14:38:59 +0100177 .ale = 22,
178 .cle = 21,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +0800179 .det_pin = -EINVAL,
Andrew Victor022cbd72006-12-01 14:38:59 +0100180 .rdy_pin = AT91_PIN_PC15,
181 .enable_pin = AT91_PIN_PC14,
Jean-Christophe PLAGNIOL-VILLARDbf4289c2011-12-29 14:43:24 +0800182 .ecc_mode = NAND_ECC_SOFT,
Jean-Christophe PLAGNIOL-VILLARD98619dc2011-12-29 15:05:50 +0800183 .on_flash_bbt = 1,
Dmitry Eremin-Solenikov1754aab2011-05-29 17:49:22 +0400184 .parts = ek_nand_partition,
185 .num_parts = ARRAY_SIZE(ek_nand_partition),
Andrew Victor022cbd72006-12-01 14:38:59 +0100186};
187
Andrew Victor8cdae512008-10-06 20:05:35 +0100188static struct sam9_smc_config __initdata ek_nand_smc_config = {
189 .ncs_read_setup = 0,
190 .nrd_setup = 1,
191 .ncs_write_setup = 0,
192 .nwe_setup = 1,
193
194 .ncs_read_pulse = 3,
195 .nrd_pulse = 3,
196 .ncs_write_pulse = 3,
197 .nwe_pulse = 3,
198
199 .read_cycle = 5,
200 .write_cycle = 5,
201
202 .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE,
203 .tdf_cycles = 2,
204};
205
206static void __init ek_add_device_nand(void)
207{
Nicolas Ferre64393b32011-07-01 12:25:24 +0200208 ek_nand_data.bus_width_16 = board_have_nand_16bit();
Andrew Victor8cdae512008-10-06 20:05:35 +0100209 /* setup bus-width (8 or 16) */
210 if (ek_nand_data.bus_width_16)
211 ek_nand_smc_config.mode |= AT91_SMC_DBW_16;
212 else
213 ek_nand_smc_config.mode |= AT91_SMC_DBW_8;
214
215 /* configure chip-select 3 (NAND) */
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800216 sam9_smc_configure(0, 3, &ek_nand_smc_config);
Andrew Victor8cdae512008-10-06 20:05:35 +0100217
218 at91_add_device_nand(&ek_nand_data);
219}
220
Nicolas Ferre64d72bb2010-09-10 11:26:42 +0200221/*
222 * SPI related devices
223 */
224#if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
Andrew Victor8cdae512008-10-06 20:05:35 +0100225
Andrew Victor022cbd72006-12-01 14:38:59 +0100226/*
Andrew Victor23522722007-05-02 17:58:51 +0100227 * ADS7846 Touchscreen
228 */
229#if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
230
231static int ads7843_pendown_state(void)
232{
233 return !at91_get_gpio_value(AT91_PIN_PC2); /* Touchscreen PENIRQ */
234}
235
236static struct ads7846_platform_data ads_info = {
237 .model = 7843,
238 .x_min = 150,
239 .x_max = 3830,
240 .y_min = 190,
241 .y_max = 3830,
242 .vref_delay_usecs = 100,
243 .x_plate_ohms = 450,
244 .y_plate_ohms = 250,
245 .pressure_max = 15000,
246 .debounce_max = 1,
247 .debounce_rep = 0,
248 .debounce_tol = (~0),
249 .get_pendown_state = ads7843_pendown_state,
250};
251
252static void __init ek_add_device_ts(void)
253{
254 at91_set_B_periph(AT91_PIN_PC2, 1); /* External IRQ0, with pullup */
255 at91_set_gpio_input(AT91_PIN_PA11, 1); /* Touchscreen BUSY signal */
256}
257#else
258static void __init ek_add_device_ts(void) {}
259#endif
260
261/*
Andrew Victor5e9df922008-04-02 22:18:35 +0100262 * Audio
263 */
264static struct at73c213_board_info at73c213_data = {
265 .ssc_id = 1,
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100266#if defined(CONFIG_MACH_AT91SAM9261EK)
Andrew Victor5e9df922008-04-02 22:18:35 +0100267 .shortname = "AT91SAM9261-EK external DAC",
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100268#else
269 .shortname = "AT91SAM9G10-EK external DAC",
270#endif
Andrew Victor5e9df922008-04-02 22:18:35 +0100271};
272
273#if defined(CONFIG_SND_AT73C213) || defined(CONFIG_SND_AT73C213_MODULE)
274static void __init at73c213_set_clk(struct at73c213_board_info *info)
275{
276 struct clk *pck2;
277 struct clk *plla;
278
279 pck2 = clk_get(NULL, "pck2");
280 plla = clk_get(NULL, "plla");
281
282 /* AT73C213 MCK Clock */
283 at91_set_B_periph(AT91_PIN_PB31, 0); /* PCK2 */
284
285 clk_set_parent(pck2, plla);
286 clk_put(plla);
287
288 info->dac_clk = pck2;
289}
290#else
291static void __init at73c213_set_clk(struct at73c213_board_info *info) {}
292#endif
293
294/*
Andrew Victor022cbd72006-12-01 14:38:59 +0100295 * SPI devices
296 */
297static struct spi_board_info ek_spi_devices[] = {
298 { /* DataFlash chip */
299 .modalias = "mtd_dataflash",
300 .chip_select = 0,
301 .max_speed_hz = 15 * 1000 * 1000,
302 .bus_num = 0,
303 },
Andrew Victor23522722007-05-02 17:58:51 +0100304#if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
305 {
306 .modalias = "ads7846",
307 .chip_select = 2,
308 .max_speed_hz = 125000 * 26, /* (max sample rate @ 3V) * (cmd + data + overhead) */
309 .bus_num = 0,
310 .platform_data = &ads_info,
311 .irq = AT91SAM9261_ID_IRQ0,
Andrew Victor5e9df922008-04-02 22:18:35 +0100312 .controller_data = (void *) AT91_PIN_PA28, /* CS pin */
Andrew Victor23522722007-05-02 17:58:51 +0100313 },
314#endif
Andrew Victor022cbd72006-12-01 14:38:59 +0100315#if defined(CONFIG_MTD_AT91_DATAFLASH_CARD)
316 { /* DataFlash card - jumper (J12) configurable to CS3 or CS0 */
317 .modalias = "mtd_dataflash",
318 .chip_select = 3,
319 .max_speed_hz = 15 * 1000 * 1000,
320 .bus_num = 0,
321 },
Andrew Victor23522722007-05-02 17:58:51 +0100322#elif defined(CONFIG_SND_AT73C213) || defined(CONFIG_SND_AT73C213_MODULE)
Andrew Victor022cbd72006-12-01 14:38:59 +0100323 { /* AT73C213 DAC */
Andrew Victor23522722007-05-02 17:58:51 +0100324 .modalias = "at73c213",
Andrew Victor022cbd72006-12-01 14:38:59 +0100325 .chip_select = 3,
326 .max_speed_hz = 10 * 1000 * 1000,
327 .bus_num = 0,
Andrew Victor5e9df922008-04-02 22:18:35 +0100328 .mode = SPI_MODE_1,
329 .platform_data = &at73c213_data,
330 .controller_data = (void*) AT91_PIN_PA29, /* default for CS3 is PA6, but it must be PA29 */
Andrew Victor022cbd72006-12-01 14:38:59 +0100331 },
332#endif
333};
334
Nicolas Ferre64d72bb2010-09-10 11:26:42 +0200335#else /* CONFIG_SPI_ATMEL_* */
Nicolas Ferre4deb22a2010-09-10 14:36:06 +0200336/* spi0 and mmc/sd share the same PIO pins: cannot be used at the same time */
Nicolas Ferre64d72bb2010-09-10 11:26:42 +0200337
338/*
339 * MCI (SD/MMC)
Nicolas Ferre4deb22a2010-09-10 14:36:06 +0200340 * det_pin, wp_pin and vcc_pin are not connected
Nicolas Ferre64d72bb2010-09-10 11:26:42 +0200341 */
342static struct at91_mmc_data __initdata ek_mmc_data = {
343 .wire4 = 1,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +0800344 .det_pin = -EINVAL,
345 .wp_pin = -EINVAL,
346 .vcc_pin = -EINVAL,
Nicolas Ferre64d72bb2010-09-10 11:26:42 +0200347};
348
349#endif /* CONFIG_SPI_ATMEL_* */
350
Andrew Victor022cbd72006-12-01 14:38:59 +0100351
Andrew Victorcdf95c72007-05-14 15:08:21 +0100352/*
353 * LCD Controller
354 */
355#if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
Andrew Victor51708742007-11-20 09:40:12 +0100356
357#if defined(CONFIG_FB_ATMEL_STN)
358
359/* STN */
360static struct fb_videomode at91_stn_modes[] = {
361 {
362 .name = "SP06Q002 @ 75",
363 .refresh = 75,
364 .xres = 320, .yres = 240,
365 .pixclock = KHZ2PICOS(1440),
366
367 .left_margin = 1, .right_margin = 1,
368 .upper_margin = 0, .lower_margin = 0,
369 .hsync_len = 1, .vsync_len = 1,
370
371 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
372 .vmode = FB_VMODE_NONINTERLACED,
373 },
374};
375
376static struct fb_monspecs at91fb_default_stn_monspecs = {
377 .manufacturer = "HIT",
378 .monitor = "SP06Q002",
379
380 .modedb = at91_stn_modes,
381 .modedb_len = ARRAY_SIZE(at91_stn_modes),
382 .hfmin = 15000,
383 .hfmax = 64000,
384 .vfmin = 50,
385 .vfmax = 150,
386};
387
388#define AT91SAM9261_DEFAULT_STN_LCDCON2 (ATMEL_LCDC_MEMOR_LITTLE \
389 | ATMEL_LCDC_DISTYPE_STNMONO \
390 | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE \
391 | ATMEL_LCDC_IFWIDTH_4 \
392 | ATMEL_LCDC_SCANMOD_SINGLE)
393
394static void at91_lcdc_stn_power_control(int on)
395{
396 /* backlight */
397 if (on) { /* power up */
398 at91_set_gpio_value(AT91_PIN_PC14, 0);
399 at91_set_gpio_value(AT91_PIN_PC15, 0);
400 } else { /* power down */
401 at91_set_gpio_value(AT91_PIN_PC14, 1);
402 at91_set_gpio_value(AT91_PIN_PC15, 1);
403 }
404}
405
406static struct atmel_lcdfb_info __initdata ek_lcdc_data = {
407 .default_bpp = 1,
408 .default_dmacon = ATMEL_LCDC_DMAEN,
409 .default_lcdcon2 = AT91SAM9261_DEFAULT_STN_LCDCON2,
410 .default_monspecs = &at91fb_default_stn_monspecs,
411 .atmel_lcdfb_power_control = at91_lcdc_stn_power_control,
412 .guard_time = 1,
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100413#if defined(CONFIG_MACH_AT91SAM9G10EK)
414 .lcd_wiring_mode = ATMEL_LCDC_WIRING_RGB,
415#endif
Andrew Victor51708742007-11-20 09:40:12 +0100416};
417
418#else
419
420/* TFT */
Andrew Victorcdf95c72007-05-14 15:08:21 +0100421static struct fb_videomode at91_tft_vga_modes[] = {
422 {
423 .name = "TX09D50VM1CCA @ 60",
424 .refresh = 60,
425 .xres = 240, .yres = 320,
426 .pixclock = KHZ2PICOS(4965),
427
428 .left_margin = 1, .right_margin = 33,
429 .upper_margin = 1, .lower_margin = 0,
430 .hsync_len = 5, .vsync_len = 1,
431
432 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
433 .vmode = FB_VMODE_NONINTERLACED,
434 },
435};
436
Andrew Victor51708742007-11-20 09:40:12 +0100437static struct fb_monspecs at91fb_default_tft_monspecs = {
Andrew Victorcdf95c72007-05-14 15:08:21 +0100438 .manufacturer = "HIT",
439 .monitor = "TX09D50VM1CCA",
440
441 .modedb = at91_tft_vga_modes,
442 .modedb_len = ARRAY_SIZE(at91_tft_vga_modes),
443 .hfmin = 15000,
444 .hfmax = 64000,
445 .vfmin = 50,
446 .vfmax = 150,
447};
448
Andrew Victor51708742007-11-20 09:40:12 +0100449#define AT91SAM9261_DEFAULT_TFT_LCDCON2 (ATMEL_LCDC_MEMOR_LITTLE \
Andrew Victorcdf95c72007-05-14 15:08:21 +0100450 | ATMEL_LCDC_DISTYPE_TFT \
451 | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE)
452
Andrew Victor51708742007-11-20 09:40:12 +0100453static void at91_lcdc_tft_power_control(int on)
Andrew Victorcdf95c72007-05-14 15:08:21 +0100454{
455 if (on)
456 at91_set_gpio_value(AT91_PIN_PA12, 0); /* power up */
457 else
458 at91_set_gpio_value(AT91_PIN_PA12, 1); /* power down */
459}
460
Andrew Victorcdf95c72007-05-14 15:08:21 +0100461static struct atmel_lcdfb_info __initdata ek_lcdc_data = {
David Brownella9a84c32008-02-06 01:39:26 -0800462 .lcdcon_is_backlight = true,
Andrew Victorcdf95c72007-05-14 15:08:21 +0100463 .default_bpp = 16,
464 .default_dmacon = ATMEL_LCDC_DMAEN,
Andrew Victor51708742007-11-20 09:40:12 +0100465 .default_lcdcon2 = AT91SAM9261_DEFAULT_TFT_LCDCON2,
466 .default_monspecs = &at91fb_default_tft_monspecs,
467 .atmel_lcdfb_power_control = at91_lcdc_tft_power_control,
Andrew Victorcdf95c72007-05-14 15:08:21 +0100468 .guard_time = 1,
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100469#if defined(CONFIG_MACH_AT91SAM9G10EK)
470 .lcd_wiring_mode = ATMEL_LCDC_WIRING_RGB,
471#endif
Andrew Victorcdf95c72007-05-14 15:08:21 +0100472};
Andrew Victor51708742007-11-20 09:40:12 +0100473#endif
Andrew Victorcdf95c72007-05-14 15:08:21 +0100474
475#else
476static struct atmel_lcdfb_info __initdata ek_lcdc_data;
477#endif
478
479
Andrew Victord0f9b552007-06-04 08:41:59 +0100480/*
481 * GPIO Buttons
482 */
483#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
484static struct gpio_keys_button ek_buttons[] = {
485 {
486 .gpio = AT91_PIN_PA27,
David Brownelleaf858a2008-01-14 08:53:22 +0100487 .code = BTN_0,
Andrew Victord0f9b552007-06-04 08:41:59 +0100488 .desc = "Button 0",
489 .active_low = 1,
Andrew Victor77789ad2008-09-21 21:34:06 +0100490 .wakeup = 1,
Andrew Victord0f9b552007-06-04 08:41:59 +0100491 },
492 {
493 .gpio = AT91_PIN_PA26,
David Brownelleaf858a2008-01-14 08:53:22 +0100494 .code = BTN_1,
Andrew Victord0f9b552007-06-04 08:41:59 +0100495 .desc = "Button 1",
496 .active_low = 1,
Andrew Victor77789ad2008-09-21 21:34:06 +0100497 .wakeup = 1,
Andrew Victord0f9b552007-06-04 08:41:59 +0100498 },
499 {
500 .gpio = AT91_PIN_PA25,
David Brownelleaf858a2008-01-14 08:53:22 +0100501 .code = BTN_2,
Andrew Victord0f9b552007-06-04 08:41:59 +0100502 .desc = "Button 2",
503 .active_low = 1,
Andrew Victor77789ad2008-09-21 21:34:06 +0100504 .wakeup = 1,
Andrew Victord0f9b552007-06-04 08:41:59 +0100505 },
506 {
507 .gpio = AT91_PIN_PA24,
David Brownelleaf858a2008-01-14 08:53:22 +0100508 .code = BTN_3,
Andrew Victord0f9b552007-06-04 08:41:59 +0100509 .desc = "Button 3",
510 .active_low = 1,
Andrew Victor77789ad2008-09-21 21:34:06 +0100511 .wakeup = 1,
Andrew Victord0f9b552007-06-04 08:41:59 +0100512 }
513};
514
515static struct gpio_keys_platform_data ek_button_data = {
516 .buttons = ek_buttons,
517 .nbuttons = ARRAY_SIZE(ek_buttons),
518};
519
520static struct platform_device ek_button_device = {
521 .name = "gpio-keys",
522 .id = -1,
523 .num_resources = 0,
524 .dev = {
525 .platform_data = &ek_button_data,
526 }
527};
528
529static void __init ek_add_device_buttons(void)
530{
Andrew Victor77789ad2008-09-21 21:34:06 +0100531 at91_set_gpio_input(AT91_PIN_PA27, 1); /* btn0 */
Andrew Victor302edfd2007-11-20 09:12:41 +0100532 at91_set_deglitch(AT91_PIN_PA27, 1);
Andrew Victor77789ad2008-09-21 21:34:06 +0100533 at91_set_gpio_input(AT91_PIN_PA26, 1); /* btn1 */
Andrew Victor302edfd2007-11-20 09:12:41 +0100534 at91_set_deglitch(AT91_PIN_PA26, 1);
Andrew Victor77789ad2008-09-21 21:34:06 +0100535 at91_set_gpio_input(AT91_PIN_PA25, 1); /* btn2 */
Andrew Victor302edfd2007-11-20 09:12:41 +0100536 at91_set_deglitch(AT91_PIN_PA25, 1);
Andrew Victor77789ad2008-09-21 21:34:06 +0100537 at91_set_gpio_input(AT91_PIN_PA24, 1); /* btn3 */
Andrew Victor302edfd2007-11-20 09:12:41 +0100538 at91_set_deglitch(AT91_PIN_PA24, 1);
Andrew Victord0f9b552007-06-04 08:41:59 +0100539
540 platform_device_register(&ek_button_device);
541}
542#else
543static void __init ek_add_device_buttons(void) {}
544#endif
545
Andrew Victor5b7659d2008-04-02 22:20:45 +0100546/*
547 * LEDs
548 */
549static struct gpio_led ek_leds[] = {
550 { /* "bottom" led, green, userled1 to be defined */
551 .name = "ds7",
552 .gpio = AT91_PIN_PA14,
553 .active_low = 1,
554 .default_trigger = "none",
555 },
556 { /* "top" led, green, userled2 to be defined */
557 .name = "ds8",
558 .gpio = AT91_PIN_PA13,
559 .active_low = 1,
560 .default_trigger = "none",
561 },
562 { /* "power" led, yellow */
563 .name = "ds1",
564 .gpio = AT91_PIN_PA23,
565 .default_trigger = "heartbeat",
566 }
567};
568
Andrew Victor022cbd72006-12-01 14:38:59 +0100569static void __init ek_board_init(void)
570{
Jean-Christophe PLAGNIOL-VILLARD7eb1dbb2012-04-05 14:27:57 +0800571 /* Setup the LEDs */
572 at91_init_leds(AT91_PIN_PA13, AT91_PIN_PA14);
573
Andrew Victor022cbd72006-12-01 14:38:59 +0100574 /* Serial */
Jean-Christophe PLAGNIOL-VILLARD71b149b2012-04-05 14:14:28 +0800575 /* DBGU on ttyS0. (Rx & Tx only) */
576 at91_register_uart(0, 0, 0);
Andrew Victor022cbd72006-12-01 14:38:59 +0100577 at91_add_device_serial();
578 /* USB Host */
579 at91_add_device_usbh(&ek_usbh_data);
580 /* USB Device */
581 at91_add_device_udc(&ek_udc_data);
582 /* I2C */
Andrew Victorf230d3f2007-11-19 13:47:20 +0100583 at91_add_device_i2c(NULL, 0);
Andrew Victor022cbd72006-12-01 14:38:59 +0100584 /* NAND */
Andrew Victor8cdae512008-10-06 20:05:35 +0100585 ek_add_device_nand();
Andrew Victor022cbd72006-12-01 14:38:59 +0100586 /* DM9000 ethernet */
587 ek_add_device_dm9000();
588
589 /* spi0 and mmc/sd share the same PIO pins */
590#if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
591 /* SPI */
592 at91_add_device_spi(ek_spi_devices, ARRAY_SIZE(ek_spi_devices));
Andrew Victor23522722007-05-02 17:58:51 +0100593 /* Touchscreen */
594 ek_add_device_ts();
Andrew Victor5e9df922008-04-02 22:18:35 +0100595 /* SSC (to AT73C213) */
596 at73c213_set_clk(&at73c213_data);
597 at91_add_device_ssc(AT91SAM9261_ID_SSC1, ATMEL_SSC_TX);
Andrew Victor022cbd72006-12-01 14:38:59 +0100598#else
599 /* MMC */
Andrew Victord0760b32007-02-08 09:00:39 +0100600 at91_add_device_mmc(0, &ek_mmc_data);
Andrew Victor022cbd72006-12-01 14:38:59 +0100601#endif
Andrew Victorcdf95c72007-05-14 15:08:21 +0100602 /* LCD Controller */
603 at91_add_device_lcdc(&ek_lcdc_data);
Andrew Victord0f9b552007-06-04 08:41:59 +0100604 /* Push Buttons */
605 ek_add_device_buttons();
Andrew Victor5b7659d2008-04-02 22:20:45 +0100606 /* LEDs */
607 at91_gpio_leds(ek_leds, ARRAY_SIZE(ek_leds));
Andrew Victor022cbd72006-12-01 14:38:59 +0100608}
609
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100610#if defined(CONFIG_MACH_AT91SAM9261EK)
Andrew Victor022cbd72006-12-01 14:38:59 +0100611MACHINE_START(AT91SAM9261EK, "Atmel AT91SAM9261-EK")
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100612#else
613MACHINE_START(AT91SAM9G10EK, "Atmel AT91SAM9G10-EK")
614#endif
Andrew Victor022cbd72006-12-01 14:38:59 +0100615 /* Maintainer: Atmel */
Andrew Victor022cbd72006-12-01 14:38:59 +0100616 .timer = &at91sam926x_timer,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800617 .map_io = at91_map_io,
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800618 .init_early = ek_init_early,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800619 .init_irq = at91_init_irq_default,
Andrew Victor022cbd72006-12-01 14:38:59 +0100620 .init_machine = ek_board_init,
621MACHINE_END