2 * Copyright (C) 2010 Christian Glindkamp <christian.glindkamp@taskit.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/platform_device.h>
22 #include <linux/gpio.h>
23 #include <linux/w1-gpio.h>
25 #include <asm/mach-types.h>
26 #include <asm/mach/arch.h>
28 #include <mach/at91sam9_smc.h>
36 void __init
stamp9g20_init_early(void)
38 /* Initialize processor: 18.432 MHz crystal */
39 at91_initialize(18432000);
45 static struct atmel_nand_data __initdata nand_data
= {
48 .rdy_pin
= AT91_PIN_PC13
,
49 .enable_pin
= AT91_PIN_PC14
,
52 .ecc_mode
= NAND_ECC_SOFT
,
55 static struct sam9_smc_config __initdata nand_smc_config
= {
69 .mode
= AT91_SMC_READMODE
| AT91_SMC_WRITEMODE
| AT91_SMC_EXNWMODE_DISABLE
| AT91_SMC_DBW_8
,
73 static void __init
add_device_nand(void)
75 /* configure chip-select 3 (NAND) */
76 sam9_smc_configure(0, 3, &nand_smc_config
);
78 at91_add_device_nand(&nand_data
);
84 * det_pin, wp_pin and vcc_pin are not connected
86 static struct mci_platform_data __initdata mmc_data
= {
98 static struct at91_usbh_data __initdata usbh_data
= {
100 .vbus_pin
= {-EINVAL
, -EINVAL
},
101 .overcurrent_pin
= {-EINVAL
, -EINVAL
},
108 static struct at91_udc_data __initdata portuxg20_udc_data
= {
109 .vbus_pin
= AT91_PIN_PC7
,
110 .pullup_pin
= -EINVAL
, /* pull-up driven by UDC */
113 static struct at91_udc_data __initdata stamp9g20evb_udc_data
= {
114 .vbus_pin
= AT91_PIN_PA22
,
115 .pullup_pin
= -EINVAL
, /* pull-up driven by UDC */
120 * MACB Ethernet device
122 static struct macb_platform_data __initdata macb_data
= {
123 .phy_irq_pin
= AT91_PIN_PA28
,
131 static struct gpio_led portuxg20_leds
[] = {
134 .gpio
= AT91_PIN_PC5
,
135 .default_trigger
= "none",
138 .gpio
= AT91_PIN_PC4
,
139 .default_trigger
= "none",
142 .gpio
= AT91_PIN_PC10
,
143 .default_trigger
= "heartbeat",
147 static struct gpio_led stamp9g20evb_leds
[] = {
150 .gpio
= AT91_PIN_PB18
,
152 .default_trigger
= "none",
155 .gpio
= AT91_PIN_PB19
,
157 .default_trigger
= "none",
160 .gpio
= AT91_PIN_PB20
,
162 .default_trigger
= "heartbeat",
170 static struct spi_board_info portuxg20_spi_devices
[] = {
172 .modalias
= "spidev",
174 .max_speed_hz
= 1 * 1000 * 1000,
177 .modalias
= "spidev",
179 .max_speed_hz
= 1 * 1000 * 1000,
188 static struct w1_gpio_platform_data w1_gpio_pdata
= {
189 .pin
= AT91_PIN_PA29
,
191 .ext_pullup_enable_pin
= -EINVAL
,
194 static struct platform_device w1_device
= {
197 .dev
.platform_data
= &w1_gpio_pdata
,
202 at91_set_GPIO_periph(w1_gpio_pdata
.pin
, 1);
203 at91_set_multi_drive(w1_gpio_pdata
.pin
, 1);
204 platform_device_register(&w1_device
);
208 void __init
stamp9g20_board_init(void)
211 /* DGBU on ttyS0. (Rx & Tx only) */
212 at91_register_uart(0, 0, 0);
213 at91_add_device_serial();
217 at91_add_device_mci(0, &mmc_data
);
222 static void __init
portuxg20_board_init(void)
224 /* USART0 on ttyS1. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */
225 at91_register_uart(AT91SAM9260_ID_US0
, 1, ATMEL_UART_CTS
| ATMEL_UART_RTS
226 | ATMEL_UART_DTR
| ATMEL_UART_DSR
227 | ATMEL_UART_DCD
| ATMEL_UART_RI
);
229 /* USART1 on ttyS2. (Rx, Tx, CTS, RTS) */
230 at91_register_uart(AT91SAM9260_ID_US1
, 2, ATMEL_UART_CTS
| ATMEL_UART_RTS
);
232 /* USART2 on ttyS3. (Rx, Tx, CTS, RTS) */
233 at91_register_uart(AT91SAM9260_ID_US2
, 3, ATMEL_UART_CTS
| ATMEL_UART_RTS
);
235 /* USART4 on ttyS5. (Rx, Tx only) */
236 at91_register_uart(AT91SAM9260_ID_US4
, 5, 0);
238 /* USART5 on ttyS6. (Rx, Tx only) */
239 at91_register_uart(AT91SAM9260_ID_US5
, 6, 0);
240 stamp9g20_board_init();
242 at91_add_device_usbh(&usbh_data
);
244 at91_add_device_udc(&portuxg20_udc_data
);
246 at91_add_device_eth(&macb_data
);
248 at91_add_device_i2c(NULL
, 0);
250 at91_add_device_spi(portuxg20_spi_devices
, ARRAY_SIZE(portuxg20_spi_devices
));
252 at91_gpio_leds(portuxg20_leds
, ARRAY_SIZE(portuxg20_leds
));
255 static void __init
stamp9g20evb_board_init(void)
257 /* USART0 on ttyS1. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */
258 at91_register_uart(AT91SAM9260_ID_US0
, 1, ATMEL_UART_CTS
| ATMEL_UART_RTS
259 | ATMEL_UART_DTR
| ATMEL_UART_DSR
260 | ATMEL_UART_DCD
| ATMEL_UART_RI
);
261 stamp9g20_board_init();
263 at91_add_device_usbh(&usbh_data
);
265 at91_add_device_udc(&stamp9g20evb_udc_data
);
267 at91_add_device_eth(&macb_data
);
269 at91_add_device_i2c(NULL
, 0);
271 at91_gpio_leds(stamp9g20evb_leds
, ARRAY_SIZE(stamp9g20evb_leds
));
274 MACHINE_START(PORTUXG20
, "taskit PortuxG20")
275 /* Maintainer: taskit GmbH */
276 .init_time
= at91sam926x_pit_init
,
277 .map_io
= at91_map_io
,
278 .handle_irq
= at91_aic_handle_irq
,
279 .init_early
= stamp9g20_init_early
,
280 .init_irq
= at91_init_irq_default
,
281 .init_machine
= portuxg20_board_init
,
284 MACHINE_START(STAMP9G20
, "taskit Stamp9G20")
285 /* Maintainer: taskit GmbH */
286 .init_time
= at91sam926x_pit_init
,
287 .map_io
= at91_map_io
,
288 .handle_irq
= at91_aic_handle_irq
,
289 .init_early
= stamp9g20_init_early
,
290 .init_irq
= at91_init_irq_default
,
291 .init_machine
= stamp9g20evb_board_init
,