blob: 6ea069b5733584b5a0fc68dd2cc61665763258c9 [file] [log] [blame]
Andrew Victorca0a7892008-05-24 17:47:04 +01001/*
Nico Erfurth6939fd42011-08-30 18:25:52 +02002 * linux/arch/arm/mach-at91/board-usb-a926x.c
Andrew Victorca0a7892008-05-24 17:47:04 +01003 *
4 * Copyright (C) 2005 SAN People
5 * Copyright (C) 2007 Atmel Corporation.
6 * Copyright (C) 2007 Calao-systems
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +02007 * Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Andrew Victorca0a7892008-05-24 17:47:04 +01008 *
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 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24#include <linux/types.h>
25#include <linux/init.h>
26#include <linux/mm.h>
27#include <linux/module.h>
28#include <linux/platform_device.h>
29#include <linux/spi/spi.h>
30#include <linux/gpio_keys.h>
Arnd Bergmann33533272011-10-21 16:46:26 +020031#include <linux/gpio.h>
Andrew Victorca0a7892008-05-24 17:47:04 +010032#include <linux/input.h>
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +020033#include <linux/spi/mmc_spi.h>
Andrew Victorca0a7892008-05-24 17:47:04 +010034
Andrew Victorca0a7892008-05-24 17:47:04 +010035#include <asm/setup.h>
36#include <asm/mach-types.h>
37#include <asm/irq.h>
38
39#include <asm/mach/arch.h>
40#include <asm/mach/map.h>
41#include <asm/mach/irq.h>
42
Andrew Victore5052402008-09-21 21:30:02 +010043#include <mach/hardware.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010044#include <mach/board.h>
Ludovic Desroches3e135462012-06-11 15:38:03 +020045#include <mach/at91_aic.h>
Andrew Victor8cdae512008-10-06 20:05:35 +010046#include <mach/at91sam9_smc.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010047#include <mach/at91_shdwc.h>
Andrew Victorca0a7892008-05-24 17:47:04 +010048
Andrew Victor8cdae512008-10-06 20:05:35 +010049#include "sam9_smc.h"
Andrew Victorca0a7892008-05-24 17:47:04 +010050#include "generic.h"
51
52
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +080053static void __init ek_init_early(void)
Andrew Victorca0a7892008-05-24 17:47:04 +010054{
55 /* Initialize processor: 12.00 MHz crystal */
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080056 at91_initialize(12000000);
Andrew Victorca0a7892008-05-24 17:47:04 +010057}
58
Andrew Victorca0a7892008-05-24 17:47:04 +010059/*
60 * USB Host port
61 */
62static struct at91_usbh_data __initdata ek_usbh_data = {
63 .ports = 2,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +080064 .vbus_pin = {-EINVAL, -EINVAL},
65 .overcurrent_pin= {-EINVAL, -EINVAL},
Andrew Victorca0a7892008-05-24 17:47:04 +010066};
67
68/*
69 * USB Device port
70 */
71static struct at91_udc_data __initdata ek_udc_data = {
72 .vbus_pin = AT91_PIN_PB11,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +080073 .pullup_pin = -EINVAL, /* pull-up driven by UDC */
Andrew Victorca0a7892008-05-24 17:47:04 +010074};
75
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +020076static void __init ek_add_device_udc(void)
Nico Erfurth6939fd42011-08-30 18:25:52 +020077{
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +020078 if (machine_is_usb_a9260() || machine_is_usb_a9g20())
Nico Erfurth6939fd42011-08-30 18:25:52 +020079 ek_udc_data.vbus_pin = AT91_PIN_PC5;
80
81 at91_add_device_udc(&ek_udc_data);
82}
83
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +020084#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
85#define MMC_SPI_CARD_DETECT_INT AT91_PIN_PC4
86static int at91_mmc_spi_init(struct device *dev,
87 irqreturn_t (*detect_int)(int, void *), void *data)
88{
89 /* Configure Interrupt pin as input, no pull-up */
90 at91_set_gpio_input(MMC_SPI_CARD_DETECT_INT, 0);
91 return request_irq(gpio_to_irq(MMC_SPI_CARD_DETECT_INT), detect_int,
92 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
93 "mmc-spi-detect", data);
94}
95
96static void at91_mmc_spi_exit(struct device *dev, void *data)
97{
98 free_irq(gpio_to_irq(MMC_SPI_CARD_DETECT_INT), data);
99}
100
101static struct mmc_spi_platform_data at91_mmc_spi_pdata = {
102 .init = at91_mmc_spi_init,
103 .exit = at91_mmc_spi_exit,
104 .detect_delay = 100, /* msecs */
105};
106#endif
107
Andrew Victorca0a7892008-05-24 17:47:04 +0100108/*
109 * SPI devices.
110 */
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200111static struct spi_board_info usb_a9263_spi_devices[] = {
Andrew Victorca0a7892008-05-24 17:47:04 +0100112 { /* DataFlash chip */
113 .modalias = "mtd_dataflash",
114 .chip_select = 0,
115 .max_speed_hz = 15 * 1000 * 1000,
116 .bus_num = 0,
117 }
Andrew Victorca0a7892008-05-24 17:47:04 +0100118};
119
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200120static struct spi_board_info usb_a9g20_spi_devices[] = {
121#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
122 {
123 .modalias = "mmc_spi",
124 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
125 .bus_num = 1,
126 .chip_select = 0,
127 .platform_data = &at91_mmc_spi_pdata,
128 .mode = SPI_MODE_3,
129 },
130#endif
131};
132
133static void __init ek_add_device_spi(void)
Nico Erfurth6939fd42011-08-30 18:25:52 +0200134{
135 if (machine_is_usb_a9263())
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200136 at91_add_device_spi(usb_a9263_spi_devices, ARRAY_SIZE(usb_a9263_spi_devices));
137 else if (machine_is_usb_a9g20())
138 at91_add_device_spi(usb_a9g20_spi_devices, ARRAY_SIZE(usb_a9g20_spi_devices));
Nico Erfurth6939fd42011-08-30 18:25:52 +0200139}
140
Andrew Victorca0a7892008-05-24 17:47:04 +0100141/*
142 * MACB Ethernet device
143 */
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000144static struct macb_platform_data __initdata ek_macb_data = {
Andrew Victorca0a7892008-05-24 17:47:04 +0100145 .phy_irq_pin = AT91_PIN_PE31,
146 .is_rmii = 1,
147};
148
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200149static void __init ek_add_device_eth(void)
Nico Erfurth6939fd42011-08-30 18:25:52 +0200150{
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200151 if (machine_is_usb_a9260() || machine_is_usb_a9g20())
Nico Erfurth6939fd42011-08-30 18:25:52 +0200152 ek_macb_data.phy_irq_pin = AT91_PIN_PA31;
153
154 at91_add_device_eth(&ek_macb_data);
155}
156
Andrew Victorca0a7892008-05-24 17:47:04 +0100157/*
158 * NAND flash
159 */
160static struct mtd_partition __initdata ek_nand_partition[] = {
161 {
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200162 .name = "barebox",
Andrew Victore5052402008-09-21 21:30:02 +0100163 .offset = 0,
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200164 .size = 3 * SZ_128K,
165 }, {
166 .name = "bareboxenv",
167 .offset = MTDPART_OFS_NXTBLK,
168 .size = SZ_128K,
169 }, {
170 .name = "bareboxenv2",
171 .offset = MTDPART_OFS_NXTBLK,
172 .size = SZ_128K,
173 }, {
Jean-Christophe PLAGNIOL-VILLARDd7850472012-04-11 23:40:31 +0800174 .name = "oftree",
175 .offset = MTDPART_OFS_NXTBLK,
176 .size = SZ_128K,
177 }, {
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200178 .name = "kernel",
179 .offset = MTDPART_OFS_NXTBLK,
180 .size = 4 * SZ_1M,
181 }, {
182 .name = "rootfs",
Andrew Victore5052402008-09-21 21:30:02 +0100183 .offset = MTDPART_OFS_NXTBLK,
184 .size = 120 * SZ_1M,
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200185 }, {
186 .name = "data",
Andrew Victore5052402008-09-21 21:30:02 +0100187 .offset = MTDPART_OFS_NXTBLK,
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200188 .size = MTDPART_SIZ_FULL,
Andrew Victorca0a7892008-05-24 17:47:04 +0100189 }
190};
191
Haavard Skinnemoen7c896832008-07-28 16:57:22 +0100192static struct atmel_nand_data __initdata ek_nand_data = {
Andrew Victorca0a7892008-05-24 17:47:04 +0100193 .ale = 21,
194 .cle = 22,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +0800195 .det_pin = -EINVAL,
Andrew Victorca0a7892008-05-24 17:47:04 +0100196 .rdy_pin = AT91_PIN_PA22,
197 .enable_pin = AT91_PIN_PD15,
Jean-Christophe PLAGNIOL-VILLARDbf4289c2011-12-29 14:43:24 +0800198 .ecc_mode = NAND_ECC_SOFT,
Jean-Christophe PLAGNIOL-VILLARD98619dc2011-12-29 15:05:50 +0800199 .on_flash_bbt = 1,
Linus Torvaldse0d65112011-11-07 09:11:16 -0800200 .parts = ek_nand_partition,
201 .num_parts = ARRAY_SIZE(ek_nand_partition),
Andrew Victorca0a7892008-05-24 17:47:04 +0100202};
203
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200204static struct sam9_smc_config __initdata usb_a9260_nand_smc_config = {
Andrew Victor8cdae512008-10-06 20:05:35 +0100205 .ncs_read_setup = 0,
206 .nrd_setup = 1,
207 .ncs_write_setup = 0,
208 .nwe_setup = 1,
209
210 .ncs_read_pulse = 3,
211 .nrd_pulse = 3,
212 .ncs_write_pulse = 3,
213 .nwe_pulse = 3,
214
215 .read_cycle = 5,
216 .write_cycle = 5,
217
218 .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE | AT91_SMC_DBW_8,
219 .tdf_cycles = 2,
220};
221
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200222static struct sam9_smc_config __initdata usb_a9g20_nand_smc_config = {
223 .ncs_read_setup = 0,
224 .nrd_setup = 2,
225 .ncs_write_setup = 0,
226 .nwe_setup = 2,
227
228 .ncs_read_pulse = 4,
229 .nrd_pulse = 4,
230 .ncs_write_pulse = 4,
231 .nwe_pulse = 4,
232
233 .read_cycle = 7,
234 .write_cycle = 7,
235
236 .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE | AT91_SMC_DBW_8,
237 .tdf_cycles = 3,
238};
239
Andrew Victor8cdae512008-10-06 20:05:35 +0100240static void __init ek_add_device_nand(void)
241{
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200242 if (machine_is_usb_a9260() || machine_is_usb_a9g20()) {
Nico Erfurth6939fd42011-08-30 18:25:52 +0200243 ek_nand_data.rdy_pin = AT91_PIN_PC13;
244 ek_nand_data.enable_pin = AT91_PIN_PC14;
245 }
246
Andrew Victor8cdae512008-10-06 20:05:35 +0100247 /* configure chip-select 3 (NAND) */
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200248 if (machine_is_usb_a9g20())
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800249 sam9_smc_configure(0, 3, &usb_a9g20_nand_smc_config);
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200250 else
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800251 sam9_smc_configure(0, 3, &usb_a9260_nand_smc_config);
Andrew Victor8cdae512008-10-06 20:05:35 +0100252
253 at91_add_device_nand(&ek_nand_data);
254}
255
256
Andrew Victorca0a7892008-05-24 17:47:04 +0100257/*
258 * GPIO Buttons
259 */
260#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
261static struct gpio_keys_button ek_buttons[] = {
262 { /* USER PUSH BUTTON */
263 .code = KEY_ENTER,
264 .gpio = AT91_PIN_PB10,
265 .active_low = 1,
266 .desc = "user_pb",
267 .wakeup = 1,
268 }
269};
270
271static struct gpio_keys_platform_data ek_button_data = {
272 .buttons = ek_buttons,
273 .nbuttons = ARRAY_SIZE(ek_buttons),
274};
275
276static struct platform_device ek_button_device = {
277 .name = "gpio-keys",
278 .id = -1,
279 .num_resources = 0,
280 .dev = {
281 .platform_data = &ek_button_data,
282 }
283};
284
285static void __init ek_add_device_buttons(void)
286{
287 at91_set_GPIO_periph(AT91_PIN_PB10, 1); /* user push button, pull up enabled */
288 at91_set_deglitch(AT91_PIN_PB10, 1);
289
290 platform_device_register(&ek_button_device);
291}
292#else
293static void __init ek_add_device_buttons(void) {}
294#endif
295
296/*
297 * LEDs
298 */
299static struct gpio_led ek_leds[] = {
300 { /* user_led (green) */
301 .name = "user_led",
302 .gpio = AT91_PIN_PB21,
303 .active_low = 1,
304 .default_trigger = "heartbeat",
305 }
306};
307
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200308static struct i2c_board_info __initdata ek_i2c_devices[] = {
309 {
310 I2C_BOARD_INFO("rv3029c2", 0x56),
311 },
312};
313
314static void __init ek_add_device_leds(void)
Nico Erfurth6939fd42011-08-30 18:25:52 +0200315{
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200316 if (machine_is_usb_a9260() || machine_is_usb_a9g20())
Nico Erfurth6939fd42011-08-30 18:25:52 +0200317 ek_leds[0].active_low = 0;
318
319 at91_gpio_leds(ek_leds, ARRAY_SIZE(ek_leds));
320}
321
Andrew Victorca0a7892008-05-24 17:47:04 +0100322static void __init ek_board_init(void)
323{
324 /* Serial */
Jean-Christophe PLAGNIOL-VILLARD71b149b2012-04-05 14:14:28 +0800325 /* DBGU on ttyS0. (Rx & Tx only) */
326 at91_register_uart(0, 0, 0);
Andrew Victorca0a7892008-05-24 17:47:04 +0100327 at91_add_device_serial();
328 /* USB Host */
329 at91_add_device_usbh(&ek_usbh_data);
330 /* USB Device */
Nico Erfurth6939fd42011-08-30 18:25:52 +0200331 ek_add_device_udc();
Andrew Victorca0a7892008-05-24 17:47:04 +0100332 /* SPI */
Nico Erfurth6939fd42011-08-30 18:25:52 +0200333 ek_add_device_spi();
Andrew Victorca0a7892008-05-24 17:47:04 +0100334 /* Ethernet */
Nico Erfurth6939fd42011-08-30 18:25:52 +0200335 ek_add_device_eth();
Andrew Victorca0a7892008-05-24 17:47:04 +0100336 /* NAND */
Andrew Victor8cdae512008-10-06 20:05:35 +0100337 ek_add_device_nand();
Andrew Victorca0a7892008-05-24 17:47:04 +0100338 /* Push Buttons */
339 ek_add_device_buttons();
340 /* LEDs */
Nico Erfurth6939fd42011-08-30 18:25:52 +0200341 ek_add_device_leds();
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200342
343 if (machine_is_usb_a9g20()) {
344 /* I2C */
345 at91_add_device_i2c(ek_i2c_devices, ARRAY_SIZE(ek_i2c_devices));
346 } else {
347 /* I2C */
348 at91_add_device_i2c(NULL, 0);
349 /* shutdown controller, wakeup button (5 msec low) */
Jean-Christophe PLAGNIOL-VILLARDf22deee2011-11-01 01:23:20 +0800350 at91_shdwc_write(AT91_SHDW_MR, AT91_SHDW_CPTWK0_(10)
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200351 | AT91_SHDW_WKMODE0_LOW
Andrew Victorca0a7892008-05-24 17:47:04 +0100352 | AT91_SHDW_RTTWKEN);
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200353 }
Andrew Victorca0a7892008-05-24 17:47:04 +0100354}
355
356MACHINE_START(USB_A9263, "CALAO USB_A9263")
357 /* Maintainer: calao-systems */
Andrew Victorca0a7892008-05-24 17:47:04 +0100358 .timer = &at91sam926x_timer,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800359 .map_io = at91_map_io,
Ludovic Desroches3e135462012-06-11 15:38:03 +0200360 .handle_irq = at91_aic_handle_irq,
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800361 .init_early = ek_init_early,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800362 .init_irq = at91_init_irq_default,
Andrew Victorca0a7892008-05-24 17:47:04 +0100363 .init_machine = ek_board_init,
364MACHINE_END
Nico Erfurth6939fd42011-08-30 18:25:52 +0200365
366MACHINE_START(USB_A9260, "CALAO USB_A9260")
367 /* Maintainer: calao-systems */
368 .timer = &at91sam926x_timer,
369 .map_io = at91_map_io,
Ludovic Desroches3e135462012-06-11 15:38:03 +0200370 .handle_irq = at91_aic_handle_irq,
Nico Erfurth6939fd42011-08-30 18:25:52 +0200371 .init_early = ek_init_early,
372 .init_irq = at91_init_irq_default,
373 .init_machine = ek_board_init,
374MACHINE_END
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200375
376MACHINE_START(USB_A9G20, "CALAO USB_A92G0")
377 /* Maintainer: Jean-Christophe PLAGNIOL-VILLARD */
378 .timer = &at91sam926x_timer,
379 .map_io = at91_map_io,
Ludovic Desroches3e135462012-06-11 15:38:03 +0200380 .handle_irq = at91_aic_handle_irq,
Jean-Christophe PLAGNIOL-VILLARD0a072a22011-08-30 18:25:53 +0200381 .init_early = ek_init_early,
382 .init_irq = at91_init_irq_default,
383 .init_machine = ek_board_init,
384MACHINE_END