2 * Copyright (C) 2005 SAN People
3 * Copyright (C) 2007 Atmel Corporation
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file COPYING in the main directory of this archive for
10 #include <linux/types.h>
11 #include <linux/gpio.h>
12 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/spi/spi.h>
18 #include <linux/clk.h>
19 #include <linux/input.h>
20 #include <linux/gpio_keys.h>
22 #include <video/atmel_lcdc.h>
24 #include <asm/setup.h>
25 #include <asm/mach-types.h>
28 #include <asm/mach/arch.h>
29 #include <asm/mach/map.h>
30 #include <asm/mach/irq.h>
32 #include <mach/hardware.h>
33 #include <mach/at91sam9_smc.h>
37 #include "at91_shdwc.h"
43 static void __init
ek_init_early(void)
45 /* Initialize processor: 12.000 MHz crystal */
46 at91_initialize(12000000);
52 static struct usba_platform_data __initdata ek_usba_udc_data
= {
53 .vbus_pin
= AT91_PIN_PA8
,
60 static struct mci_platform_data __initdata mci0_data
= {
63 .detect_pin
= AT91_PIN_PA15
,
72 static struct mtd_partition __initdata ek_nand_partition
[] = {
74 .name
= "Partition 1",
79 .name
= "Partition 2",
80 .offset
= MTDPART_OFS_NXTBLK
,
81 .size
= MTDPART_SIZ_FULL
,
85 static struct atmel_nand_data __initdata ek_nand_data
= {
89 .rdy_pin
= AT91_PIN_PD17
,
90 .enable_pin
= AT91_PIN_PB6
,
91 .ecc_mode
= NAND_ECC_SOFT
,
93 .parts
= ek_nand_partition
,
94 .num_parts
= ARRAY_SIZE(ek_nand_partition
),
97 static struct sam9_smc_config __initdata ek_nand_smc_config
= {
100 .ncs_write_setup
= 0,
105 .ncs_write_pulse
= 3,
111 .mode
= AT91_SMC_READMODE
| AT91_SMC_WRITEMODE
| AT91_SMC_EXNWMODE_DISABLE
| AT91_SMC_DBW_8
,
115 static void __init
ek_add_device_nand(void)
117 /* configure chip-select 3 (NAND) */
118 sam9_smc_configure(0, 3, &ek_nand_smc_config
);
120 at91_add_device_nand(&ek_nand_data
);
127 static struct spi_board_info ek_spi_devices
[] = {
128 { /* DataFlash chip */
129 .modalias
= "mtd_dataflash",
131 .max_speed_hz
= 15 * 1000 * 1000,
140 #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
141 static struct fb_videomode at91_tft_vga_modes
[] = {
143 .name
= "TX09D50VM1CCA @ 60",
145 .xres
= 240, .yres
= 320,
146 .pixclock
= KHZ2PICOS(4965),
148 .left_margin
= 1, .right_margin
= 33,
149 .upper_margin
= 1, .lower_margin
= 0,
150 .hsync_len
= 5, .vsync_len
= 1,
152 .sync
= FB_SYNC_HOR_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
153 .vmode
= FB_VMODE_NONINTERLACED
,
157 static struct fb_monspecs at91fb_default_monspecs
= {
158 .manufacturer
= "HIT",
159 .monitor
= "TX09D50VM1CCA",
161 .modedb
= at91_tft_vga_modes
,
162 .modedb_len
= ARRAY_SIZE(at91_tft_vga_modes
),
169 #define AT91SAM9RL_DEFAULT_LCDCON2 (ATMEL_LCDC_MEMOR_LITTLE \
170 | ATMEL_LCDC_DISTYPE_TFT \
171 | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE)
173 static void at91_lcdc_power_control(int on
)
176 at91_set_gpio_value(AT91_PIN_PC1
, 0); /* power up */
178 at91_set_gpio_value(AT91_PIN_PC1
, 1); /* power down */
182 static struct atmel_lcdfb_info __initdata ek_lcdc_data
= {
183 .lcdcon_is_backlight
= true,
185 .default_dmacon
= ATMEL_LCDC_DMAEN
,
186 .default_lcdcon2
= AT91SAM9RL_DEFAULT_LCDCON2
,
187 .default_monspecs
= &at91fb_default_monspecs
,
188 .atmel_lcdfb_power_control
= at91_lcdc_power_control
,
190 .lcd_wiring_mode
= ATMEL_LCDC_WIRING_RGB
,
194 static struct atmel_lcdfb_info __initdata ek_lcdc_data
;
200 * reset_pin is not connected: NRST
202 static struct ac97c_platform_data ek_ac97_data
= {
203 .reset_pin
= -EINVAL
,
210 static struct gpio_led ek_leds
[] = {
211 { /* "bottom" led, green, userled1 to be defined */
213 .gpio
= AT91_PIN_PD15
,
215 .default_trigger
= "none",
217 { /* "bottom" led, green, userled2 to be defined */
219 .gpio
= AT91_PIN_PD16
,
221 .default_trigger
= "none",
223 { /* "power" led, yellow */
225 .gpio
= AT91_PIN_PD14
,
226 .default_trigger
= "heartbeat",
234 static struct at91_tsadcc_data ek_tsadcc_data
= {
235 .adc_clock
= 1000000,
236 .pendet_debounce
= 0x0f,
237 .ts_sample_hold_time
= 0x03,
244 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
245 static struct gpio_keys_button ek_buttons
[] = {
247 .gpio
= AT91_PIN_PB0
,
249 .desc
= "Right Click",
254 .gpio
= AT91_PIN_PB1
,
256 .desc
= "Left Click",
262 static struct gpio_keys_platform_data ek_button_data
= {
263 .buttons
= ek_buttons
,
264 .nbuttons
= ARRAY_SIZE(ek_buttons
),
267 static struct platform_device ek_button_device
= {
272 .platform_data
= &ek_button_data
,
276 static void __init
ek_add_device_buttons(void)
278 at91_set_gpio_input(AT91_PIN_PB1
, 1); /* btn1 */
279 at91_set_deglitch(AT91_PIN_PB1
, 1);
280 at91_set_gpio_input(AT91_PIN_PB0
, 1); /* btn2 */
281 at91_set_deglitch(AT91_PIN_PB0
, 1);
283 platform_device_register(&ek_button_device
);
286 static void __init
ek_add_device_buttons(void) {}
290 static void __init
ek_board_init(void)
293 /* DBGU on ttyS0. (Rx & Tx only) */
294 at91_register_uart(0, 0, 0);
296 /* USART0 on ttyS1. (Rx, Tx, CTS, RTS) */
297 at91_register_uart(AT91SAM9RL_ID_US0
, 1, ATMEL_UART_CTS
| ATMEL_UART_RTS
);
298 at91_add_device_serial();
300 at91_add_device_usba(&ek_usba_udc_data
);
302 at91_add_device_i2c(NULL
, 0);
304 ek_add_device_nand();
306 at91_add_device_spi(ek_spi_devices
, ARRAY_SIZE(ek_spi_devices
));
308 at91_add_device_mci(0, &mci0_data
);
310 at91_add_device_lcdc(&ek_lcdc_data
);
312 at91_add_device_ac97(&ek_ac97_data
);
313 /* Touch Screen Controller */
314 at91_add_device_tsadcc(&ek_tsadcc_data
);
316 at91_gpio_leds(ek_leds
, ARRAY_SIZE(ek_leds
));
318 ek_add_device_buttons();
321 MACHINE_START(AT91SAM9RLEK
, "Atmel AT91SAM9RL-EK")
322 /* Maintainer: Atmel */
323 .timer
= &at91sam926x_timer
,
324 .map_io
= at91_map_io
,
325 .handle_irq
= at91_aic_handle_irq
,
326 .init_early
= ek_init_early
,
327 .init_irq
= at91_init_irq_default
,
328 .init_machine
= ek_board_init
,