2 * linux/arch/arm/mach-at91/board-sam9261ek.c
4 * Copyright (C) 2005 SAN People
5 * Copyright (C) 2006 Atmel
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.
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.
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
22 #include <linux/types.h>
23 #include <linux/init.h>
25 #include <linux/module.h>
26 #include <linux/platform_device.h>
27 #include <linux/spi/spi.h>
28 #include <linux/spi/ads7846.h>
29 #include <linux/dm9000.h>
31 #include <linux/gpio_keys.h>
32 #include <linux/input.h>
34 #include <video/atmel_lcdc.h>
36 #include <asm/hardware.h>
37 #include <asm/setup.h>
38 #include <asm/mach-types.h>
41 #include <asm/mach/arch.h>
42 #include <asm/mach/map.h>
43 #include <asm/mach/irq.h>
45 #include <asm/arch/board.h>
46 #include <asm/arch/gpio.h>
47 #include <asm/arch/at91sam926x_mc.h>
53 * Serial port configuration.
54 * 0 .. 2 = USART0 .. USART2
57 static struct at91_uart_config __initdata ek_uart_config
= {
58 .console_tty
= 0, /* ttyS0 */
60 .tty_map
= { 3, -1, -1, -1 } /* ttyS0, ..., ttyS3 */
63 static void __init
ek_map_io(void)
65 /* Initialize processor: 18.432 MHz crystal */
66 at91sam9261_initialize(18432000);
69 at91_init_leds(AT91_PIN_PA13
, AT91_PIN_PA14
);
71 /* Setup the serial ports and console */
72 at91_init_serial(&ek_uart_config
);
75 static void __init
ek_init_irq(void)
77 at91sam9261_init_interrupts(NULL
);
82 * DM9000 ethernet device
84 #if defined(CONFIG_DM9000)
85 static struct resource at91sam9261_dm9000_resource
[] = {
87 .start
= AT91_CHIPSELECT_2
,
88 .end
= AT91_CHIPSELECT_2
+ 3,
89 .flags
= IORESOURCE_MEM
92 .start
= AT91_CHIPSELECT_2
+ 0x44,
93 .end
= AT91_CHIPSELECT_2
+ 0xFF,
94 .flags
= IORESOURCE_MEM
97 .start
= AT91_PIN_PC11
,
99 .flags
= IORESOURCE_IRQ
103 static struct dm9000_plat_data dm9000_platdata
= {
104 .flags
= DM9000_PLATF_16BITONLY
,
107 static struct platform_device at91sam9261_dm9000_device
= {
110 .num_resources
= ARRAY_SIZE(at91sam9261_dm9000_resource
),
111 .resource
= at91sam9261_dm9000_resource
,
113 .platform_data
= &dm9000_platdata
,
117 static void __init
ek_add_device_dm9000(void)
120 * Configure Chip-Select 2 on SMC for the DM9000.
121 * Note: These timings were calculated for MASTER_CLOCK = 100000000
122 * according to the DM9000 timings.
124 at91_sys_write(AT91_SMC_SETUP(2), AT91_SMC_NWESETUP_(2) | AT91_SMC_NCS_WRSETUP_(0) | AT91_SMC_NRDSETUP_(2) | AT91_SMC_NCS_RDSETUP_(0));
125 at91_sys_write(AT91_SMC_PULSE(2), AT91_SMC_NWEPULSE_(4) | AT91_SMC_NCS_WRPULSE_(8) | AT91_SMC_NRDPULSE_(4) | AT91_SMC_NCS_RDPULSE_(8));
126 at91_sys_write(AT91_SMC_CYCLE(2), AT91_SMC_NWECYCLE_(16) | AT91_SMC_NRDCYCLE_(16));
127 at91_sys_write(AT91_SMC_MODE(2), AT91_SMC_READMODE
| AT91_SMC_WRITEMODE
| AT91_SMC_EXNWMODE_DISABLE
| AT91_SMC_BAT_WRITE
| AT91_SMC_DBW_16
| AT91_SMC_TDF_(1));
129 /* Configure Reset signal as output */
130 at91_set_gpio_output(AT91_PIN_PC10
, 0);
132 /* Configure Interrupt pin as input, no pull-up */
133 at91_set_gpio_input(AT91_PIN_PC11
, 0);
135 platform_device_register(&at91sam9261_dm9000_device
);
138 static void __init
ek_add_device_dm9000(void) {}
139 #endif /* CONFIG_DM9000 */
145 static struct at91_usbh_data __initdata ek_usbh_data
= {
153 static struct at91_udc_data __initdata ek_udc_data
= {
154 .vbus_pin
= AT91_PIN_PB29
,
155 .pullup_pin
= 0, /* pull-up driven by UDC */
162 static struct at91_mmc_data __initdata ek_mmc_data
= {
164 // .det_pin = ... not connected
165 // .wp_pin = ... not connected
166 // .vcc_pin = ... not connected
173 static struct mtd_partition __initdata ek_nand_partition
[] = {
175 .name
= "Partition 1",
180 .name
= "Partition 2",
181 .offset
= 256 * 1024 ,
182 .size
= MTDPART_SIZ_FULL
,
186 static struct mtd_partition
* __init
nand_partitions(int size
, int *num_partitions
)
188 *num_partitions
= ARRAY_SIZE(ek_nand_partition
);
189 return ek_nand_partition
;
192 static struct at91_nand_data __initdata ek_nand_data
= {
195 // .det_pin = ... not connected
196 .rdy_pin
= AT91_PIN_PC15
,
197 .enable_pin
= AT91_PIN_PC14
,
198 .partition_info
= nand_partitions
,
199 #if defined(CONFIG_MTD_NAND_AT91_BUSWIDTH_16)
207 * ADS7846 Touchscreen
209 #if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
211 static int ads7843_pendown_state(void)
213 return !at91_get_gpio_value(AT91_PIN_PC2
); /* Touchscreen PENIRQ */
216 static struct ads7846_platform_data ads_info
= {
222 .vref_delay_usecs
= 100,
225 .pressure_max
= 15000,
228 .debounce_tol
= (~0),
229 .get_pendown_state
= ads7843_pendown_state
,
232 static void __init
ek_add_device_ts(void)
234 at91_set_B_periph(AT91_PIN_PC2
, 1); /* External IRQ0, with pullup */
235 at91_set_gpio_input(AT91_PIN_PA11
, 1); /* Touchscreen BUSY signal */
238 static void __init
ek_add_device_ts(void) {}
244 static struct spi_board_info ek_spi_devices
[] = {
245 { /* DataFlash chip */
246 .modalias
= "mtd_dataflash",
248 .max_speed_hz
= 15 * 1000 * 1000,
251 #if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
253 .modalias
= "ads7846",
255 .max_speed_hz
= 125000 * 26, /* (max sample rate @ 3V) * (cmd + data + overhead) */
257 .platform_data
= &ads_info
,
258 .irq
= AT91SAM9261_ID_IRQ0
,
261 #if defined(CONFIG_MTD_AT91_DATAFLASH_CARD)
262 { /* DataFlash card - jumper (J12) configurable to CS3 or CS0 */
263 .modalias
= "mtd_dataflash",
265 .max_speed_hz
= 15 * 1000 * 1000,
268 #elif defined(CONFIG_SND_AT73C213) || defined(CONFIG_SND_AT73C213_MODULE)
270 .modalias
= "at73c213",
272 .max_speed_hz
= 10 * 1000 * 1000,
282 #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
284 #if defined(CONFIG_FB_ATMEL_STN)
287 static struct fb_videomode at91_stn_modes
[] = {
289 .name
= "SP06Q002 @ 75",
291 .xres
= 320, .yres
= 240,
292 .pixclock
= KHZ2PICOS(1440),
294 .left_margin
= 1, .right_margin
= 1,
295 .upper_margin
= 0, .lower_margin
= 0,
296 .hsync_len
= 1, .vsync_len
= 1,
298 .sync
= FB_SYNC_HOR_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
299 .vmode
= FB_VMODE_NONINTERLACED
,
303 static struct fb_monspecs at91fb_default_stn_monspecs
= {
304 .manufacturer
= "HIT",
305 .monitor
= "SP06Q002",
307 .modedb
= at91_stn_modes
,
308 .modedb_len
= ARRAY_SIZE(at91_stn_modes
),
315 #define AT91SAM9261_DEFAULT_STN_LCDCON2 (ATMEL_LCDC_MEMOR_LITTLE \
316 | ATMEL_LCDC_DISTYPE_STNMONO \
317 | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE \
318 | ATMEL_LCDC_IFWIDTH_4 \
319 | ATMEL_LCDC_SCANMOD_SINGLE)
321 static void at91_lcdc_stn_power_control(int on
)
324 if (on
) { /* power up */
325 at91_set_gpio_value(AT91_PIN_PC14
, 0);
326 at91_set_gpio_value(AT91_PIN_PC15
, 0);
327 } else { /* power down */
328 at91_set_gpio_value(AT91_PIN_PC14
, 1);
329 at91_set_gpio_value(AT91_PIN_PC15
, 1);
333 static struct atmel_lcdfb_info __initdata ek_lcdc_data
= {
335 .default_dmacon
= ATMEL_LCDC_DMAEN
,
336 .default_lcdcon2
= AT91SAM9261_DEFAULT_STN_LCDCON2
,
337 .default_monspecs
= &at91fb_default_stn_monspecs
,
338 .atmel_lcdfb_power_control
= at91_lcdc_stn_power_control
,
345 static struct fb_videomode at91_tft_vga_modes
[] = {
347 .name
= "TX09D50VM1CCA @ 60",
349 .xres
= 240, .yres
= 320,
350 .pixclock
= KHZ2PICOS(4965),
352 .left_margin
= 1, .right_margin
= 33,
353 .upper_margin
= 1, .lower_margin
= 0,
354 .hsync_len
= 5, .vsync_len
= 1,
356 .sync
= FB_SYNC_HOR_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
357 .vmode
= FB_VMODE_NONINTERLACED
,
361 static struct fb_monspecs at91fb_default_tft_monspecs
= {
362 .manufacturer
= "HIT",
363 .monitor
= "TX09D50VM1CCA",
365 .modedb
= at91_tft_vga_modes
,
366 .modedb_len
= ARRAY_SIZE(at91_tft_vga_modes
),
373 #define AT91SAM9261_DEFAULT_TFT_LCDCON2 (ATMEL_LCDC_MEMOR_LITTLE \
374 | ATMEL_LCDC_DISTYPE_TFT \
375 | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE)
377 static void at91_lcdc_tft_power_control(int on
)
380 at91_set_gpio_value(AT91_PIN_PA12
, 0); /* power up */
382 at91_set_gpio_value(AT91_PIN_PA12
, 1); /* power down */
385 static struct atmel_lcdfb_info __initdata ek_lcdc_data
= {
386 .lcdcon_is_backlight
= true,
388 .default_dmacon
= ATMEL_LCDC_DMAEN
,
389 .default_lcdcon2
= AT91SAM9261_DEFAULT_TFT_LCDCON2
,
390 .default_monspecs
= &at91fb_default_tft_monspecs
,
391 .atmel_lcdfb_power_control
= at91_lcdc_tft_power_control
,
397 static struct atmel_lcdfb_info __initdata ek_lcdc_data
;
404 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
405 static struct gpio_keys_button ek_buttons
[] = {
407 .gpio
= AT91_PIN_PA27
,
413 .gpio
= AT91_PIN_PA26
,
419 .gpio
= AT91_PIN_PA25
,
425 .gpio
= AT91_PIN_PA24
,
432 static struct gpio_keys_platform_data ek_button_data
= {
433 .buttons
= ek_buttons
,
434 .nbuttons
= ARRAY_SIZE(ek_buttons
),
437 static struct platform_device ek_button_device
= {
442 .platform_data
= &ek_button_data
,
446 static void __init
ek_add_device_buttons(void)
448 at91_set_gpio_input(AT91_PIN_PA27
, 0); /* btn0 */
449 at91_set_deglitch(AT91_PIN_PA27
, 1);
450 at91_set_gpio_input(AT91_PIN_PA26
, 0); /* btn1 */
451 at91_set_deglitch(AT91_PIN_PA26
, 1);
452 at91_set_gpio_input(AT91_PIN_PA25
, 0); /* btn2 */
453 at91_set_deglitch(AT91_PIN_PA25
, 1);
454 at91_set_gpio_input(AT91_PIN_PA24
, 0); /* btn3 */
455 at91_set_deglitch(AT91_PIN_PA24
, 1);
457 platform_device_register(&ek_button_device
);
460 static void __init
ek_add_device_buttons(void) {}
463 static void __init
ek_board_init(void)
466 at91_add_device_serial();
468 at91_add_device_usbh(&ek_usbh_data
);
470 at91_add_device_udc(&ek_udc_data
);
472 at91_add_device_i2c(NULL
, 0);
474 at91_add_device_nand(&ek_nand_data
);
475 /* DM9000 ethernet */
476 ek_add_device_dm9000();
478 /* spi0 and mmc/sd share the same PIO pins */
479 #if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
481 at91_add_device_spi(ek_spi_devices
, ARRAY_SIZE(ek_spi_devices
));
486 at91_add_device_mmc(0, &ek_mmc_data
);
489 at91_add_device_lcdc(&ek_lcdc_data
);
491 ek_add_device_buttons();
494 MACHINE_START(AT91SAM9261EK
, "Atmel AT91SAM9261-EK")
495 /* Maintainer: Atmel */
496 .phys_io
= AT91_BASE_SYS
,
497 .io_pg_offst
= (AT91_VA_BASE_SYS
>> 18) & 0xfffc,
498 .boot_params
= AT91_SDRAM_BASE
+ 0x100,
499 .timer
= &at91sam926x_timer
,
501 .init_irq
= ek_init_irq
,
502 .init_machine
= ek_board_init
,