2 * linux/arch/arm/mach-at91/board-cpu9krea.c
4 * Copyright (C) 2005 SAN People
5 * Copyright (C) 2006 Atmel
6 * Copyright (C) 2009 Eric Benard - eric@eukrea.com
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/types.h>
24 #include <linux/gpio.h>
25 #include <linux/init.h>
27 #include <linux/module.h>
28 #include <linux/platform_device.h>
29 #include <linux/clk.h>
30 #include <linux/gpio_keys.h>
31 #include <linux/input.h>
32 #include <linux/mtd/physmap.h>
34 #include <asm/setup.h>
35 #include <asm/mach-types.h>
38 #include <asm/mach/arch.h>
39 #include <asm/mach/map.h>
40 #include <asm/mach/irq.h>
42 #include <mach/hardware.h>
43 #include <mach/board.h>
44 #include <mach/at91sam9_smc.h>
45 #include <mach/at91sam9260_matrix.h>
50 static void __init
cpu9krea_init_early(void)
52 /* Initialize processor: 18.432 MHz crystal */
53 at91_initialize(18432000);
55 /* DGBU on ttyS0. (Rx & Tx only) */
56 at91_register_uart(0, 0, 0);
58 /* USART0 on ttyS1. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */
59 at91_register_uart(AT91SAM9260_ID_US0
, 1, ATMEL_UART_CTS
|
60 ATMEL_UART_RTS
| ATMEL_UART_DTR
| ATMEL_UART_DSR
|
61 ATMEL_UART_DCD
| ATMEL_UART_RI
);
63 /* USART1 on ttyS2. (Rx, Tx, RTS, CTS) */
64 at91_register_uart(AT91SAM9260_ID_US1
, 2, ATMEL_UART_CTS
|
67 /* USART2 on ttyS3. (Rx, Tx, RTS, CTS) */
68 at91_register_uart(AT91SAM9260_ID_US2
, 3, ATMEL_UART_CTS
|
71 /* USART3 on ttyS4. (Rx, Tx) */
72 at91_register_uart(AT91SAM9260_ID_US3
, 4, 0);
74 /* USART4 on ttyS5. (Rx, Tx) */
75 at91_register_uart(AT91SAM9260_ID_US4
, 5, 0);
77 /* USART5 on ttyS6. (Rx, Tx) */
78 at91_register_uart(AT91SAM9260_ID_US5
, 6, 0);
80 /* set serial console to ttyS0 (ie, DBGU) */
81 at91_set_serial_console(0);
87 static struct at91_usbh_data __initdata cpu9krea_usbh_data
= {
89 .vbus_pin
= {-EINVAL
, -EINVAL
},
90 .overcurrent_pin
= {-EINVAL
, -EINVAL
},
96 static struct at91_udc_data __initdata cpu9krea_udc_data
= {
97 .vbus_pin
= AT91_PIN_PC8
,
98 .pullup_pin
= -EINVAL
, /* pull-up driven by UDC */
102 * MACB Ethernet device
104 static struct macb_platform_data __initdata cpu9krea_macb_data
= {
105 .phy_irq_pin
= -EINVAL
,
112 static struct atmel_nand_data __initdata cpu9krea_nand_data
= {
115 .rdy_pin
= AT91_PIN_PC13
,
116 .enable_pin
= AT91_PIN_PC14
,
121 #ifdef CONFIG_MACH_CPU9260
122 static struct sam9_smc_config __initdata cpu9krea_nand_smc_config
= {
125 .ncs_write_setup
= 0,
130 .ncs_write_pulse
= 3,
136 .mode
= AT91_SMC_READMODE
| AT91_SMC_WRITEMODE
137 | AT91_SMC_EXNWMODE_DISABLE
| AT91_SMC_DBW_8
,
141 static struct sam9_smc_config __initdata cpu9krea_nand_smc_config
= {
144 .ncs_write_setup
= 0,
149 .ncs_write_pulse
= 4,
155 .mode
= AT91_SMC_READMODE
| AT91_SMC_WRITEMODE
156 | AT91_SMC_EXNWMODE_DISABLE
| AT91_SMC_DBW_8
,
161 static void __init
cpu9krea_add_device_nand(void)
163 sam9_smc_configure(0, 3, &cpu9krea_nand_smc_config
);
164 at91_add_device_nand(&cpu9krea_nand_data
);
170 static struct physmap_flash_data cpuat9260_nor_data
= {
174 #define NOR_BASE AT91_CHIPSELECT_0
175 #define NOR_SIZE SZ_64M
177 static struct resource nor_flash_resources
[] = {
180 .end
= NOR_BASE
+ NOR_SIZE
- 1,
181 .flags
= IORESOURCE_MEM
,
185 static struct platform_device cpu9krea_nor_flash
= {
186 .name
= "physmap-flash",
189 .platform_data
= &cpuat9260_nor_data
,
191 .resource
= nor_flash_resources
,
192 .num_resources
= ARRAY_SIZE(nor_flash_resources
),
195 #ifdef CONFIG_MACH_CPU9260
196 static struct sam9_smc_config __initdata cpu9krea_nor_smc_config
= {
199 .ncs_write_setup
= 0,
202 .ncs_read_pulse
= 10,
204 .ncs_write_pulse
= 6,
210 .mode
= AT91_SMC_READMODE
| AT91_SMC_WRITEMODE
211 | AT91_SMC_EXNWMODE_DISABLE
| AT91_SMC_BAT_WRITE
216 static struct sam9_smc_config __initdata cpu9krea_nor_smc_config
= {
219 .ncs_write_setup
= 0,
222 .ncs_read_pulse
= 13,
224 .ncs_write_pulse
= 8,
230 .mode
= AT91_SMC_READMODE
| AT91_SMC_WRITEMODE
231 | AT91_SMC_EXNWMODE_DISABLE
| AT91_SMC_BAT_WRITE
237 static __init
void cpu9krea_add_device_nor(void)
241 csa
= at91_sys_read(AT91_MATRIX_EBICSA
);
242 at91_sys_write(AT91_MATRIX_EBICSA
, csa
| AT91_MATRIX_VDDIOMSEL_3_3V
);
244 /* configure chip-select 0 (NOR) */
245 sam9_smc_configure(0, 0, &cpu9krea_nor_smc_config
);
247 platform_device_register(&cpu9krea_nor_flash
);
253 static struct gpio_led cpu9krea_leds
[] = {
256 .gpio
= AT91_PIN_PC11
,
258 .default_trigger
= "timer",
262 .gpio
= AT91_PIN_PC12
,
264 .default_trigger
= "heartbeat",
268 .gpio
= AT91_PIN_PC7
,
270 .default_trigger
= "none",
274 .gpio
= AT91_PIN_PC9
,
276 .default_trigger
= "none",
280 static struct i2c_board_info __initdata cpu9krea_i2c_devices
[] = {
282 I2C_BOARD_INFO("rtc-ds1307", 0x68),
290 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
291 static struct gpio_keys_button cpu9krea_buttons
[] = {
293 .gpio
= AT91_PIN_PC3
,
300 .gpio
= AT91_PIN_PB20
,
308 static struct gpio_keys_platform_data cpu9krea_button_data
= {
309 .buttons
= cpu9krea_buttons
,
310 .nbuttons
= ARRAY_SIZE(cpu9krea_buttons
),
313 static struct platform_device cpu9krea_button_device
= {
318 .platform_data
= &cpu9krea_button_data
,
322 static void __init
cpu9krea_add_device_buttons(void)
324 at91_set_gpio_input(AT91_PIN_PC3
, 1); /* BP1 */
325 at91_set_deglitch(AT91_PIN_PC3
, 1);
326 at91_set_gpio_input(AT91_PIN_PB20
, 1); /* BP2 */
327 at91_set_deglitch(AT91_PIN_PB20
, 1);
329 platform_device_register(&cpu9krea_button_device
);
332 static void __init
cpu9krea_add_device_buttons(void)
340 static struct at91_mmc_data __initdata cpu9krea_mmc_data
= {
343 .det_pin
= AT91_PIN_PA29
,
348 static void __init
cpu9krea_board_init(void)
351 cpu9krea_add_device_nor();
353 at91_add_device_serial();
355 at91_add_device_usbh(&cpu9krea_usbh_data
);
357 at91_add_device_udc(&cpu9krea_udc_data
);
359 cpu9krea_add_device_nand();
361 at91_add_device_eth(&cpu9krea_macb_data
);
363 at91_add_device_mmc(0, &cpu9krea_mmc_data
);
365 at91_add_device_i2c(cpu9krea_i2c_devices
,
366 ARRAY_SIZE(cpu9krea_i2c_devices
));
368 at91_gpio_leds(cpu9krea_leds
, ARRAY_SIZE(cpu9krea_leds
));
370 cpu9krea_add_device_buttons();
373 #ifdef CONFIG_MACH_CPU9260
374 MACHINE_START(CPUAT9260
, "Eukrea CPU9260")
376 MACHINE_START(CPUAT9G20
, "Eukrea CPU9G20")
378 /* Maintainer: Eric Benard - EUKREA Electromatique */
379 .timer
= &at91sam926x_timer
,
380 .map_io
= at91_map_io
,
381 .init_early
= cpu9krea_init_early
,
382 .init_irq
= at91_init_irq_default
,
383 .init_machine
= cpu9krea_board_init
,