Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc
[pandora-kernel.git] / arch / arm / mach-at91 / board-cpuat91.c
1 /*
2  * linux/arch/arm/mach-at91/board-cpuat91.c
3  *
4  *  Copyright (C) 2009 Eric Benard - eric@eukrea.com
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <linux/types.h>
22 #include <linux/gpio.h>
23 #include <linux/init.h>
24 #include <linux/mm.h>
25 #include <linux/module.h>
26 #include <linux/platform_device.h>
27 #include <linux/mtd/physmap.h>
28 #include <linux/mtd/plat-ram.h>
29
30 #include <mach/hardware.h>
31 #include <asm/setup.h>
32 #include <asm/mach-types.h>
33 #include <asm/irq.h>
34
35 #include <asm/mach/arch.h>
36 #include <asm/mach/map.h>
37 #include <asm/mach/irq.h>
38
39 #include <mach/at91rm9200_mc.h>
40 #include <mach/at91_ramc.h>
41 #include <mach/cpu.h>
42
43 #include "at91_aic.h"
44 #include "board.h"
45 #include "generic.h"
46 #include "gpio.h"
47
48
49 static struct gpio_led cpuat91_leds[] = {
50         {
51                 .name                   = "led1",
52                 .default_trigger        = "heartbeat",
53                 .active_low             = 1,
54                 .gpio                   = AT91_PIN_PC0,
55         },
56 };
57
58 static void __init cpuat91_init_early(void)
59 {
60         /* Set cpu type: PQFP */
61         at91rm9200_set_type(ARCH_REVISON_9200_PQFP);
62
63         /* Initialize processor: 18.432 MHz crystal */
64         at91_initialize(18432000);
65 }
66
67 static struct macb_platform_data __initdata cpuat91_eth_data = {
68         .phy_irq_pin    = -EINVAL,
69         .is_rmii        = 1,
70 };
71
72 static struct at91_usbh_data __initdata cpuat91_usbh_data = {
73         .ports          = 1,
74         .vbus_pin       = {-EINVAL, -EINVAL},
75         .overcurrent_pin= {-EINVAL, -EINVAL},
76 };
77
78 static struct at91_udc_data __initdata cpuat91_udc_data = {
79         .vbus_pin       = AT91_PIN_PC15,
80         .pullup_pin     = AT91_PIN_PC14,
81 };
82
83 static struct mci_platform_data __initdata cpuat91_mci0_data = {
84         .slot[0] = {
85                 .bus_width      = 4,
86                 .detect_pin     = AT91_PIN_PC2,
87                 .wp_pin         = -EINVAL,
88         },
89 };
90
91 static struct physmap_flash_data cpuat91_flash_data = {
92         .width          = 2,
93 };
94
95 static struct resource cpuat91_flash_resource = {
96         .start          = AT91_CHIPSELECT_0,
97         .end            = AT91_CHIPSELECT_0 + SZ_16M - 1,
98         .flags          = IORESOURCE_MEM,
99 };
100
101 static struct platform_device cpuat91_norflash = {
102         .name           = "physmap-flash",
103         .id             = 0,
104         .dev    = {
105                 .platform_data  = &cpuat91_flash_data,
106         },
107         .resource       = &cpuat91_flash_resource,
108         .num_resources  = 1,
109 };
110
111 #ifdef CONFIG_MTD_PLATRAM
112 struct platdata_mtd_ram at91_sram_pdata = {
113         .mapname        = "SRAM",
114         .bankwidth      = 2,
115 };
116
117 static struct resource at91_sram_resource[] = {
118         [0] = {
119                 .start = AT91RM9200_SRAM_BASE,
120                 .end   = AT91RM9200_SRAM_BASE + AT91RM9200_SRAM_SIZE - 1,
121                 .flags = IORESOURCE_MEM,
122         },
123 };
124
125 static struct platform_device at91_sram = {
126         .name           = "mtd-ram",
127         .id             = 0,
128         .resource       = at91_sram_resource,
129         .num_resources  = ARRAY_SIZE(at91_sram_resource),
130         .dev    = {
131                 .platform_data = &at91_sram_pdata,
132         },
133 };
134 #endif /* MTD_PLATRAM */
135
136 static struct platform_device *platform_devices[] __initdata = {
137         &cpuat91_norflash,
138 #ifdef CONFIG_MTD_PLATRAM
139         &at91_sram,
140 #endif /* CONFIG_MTD_PLATRAM */
141 };
142
143 static void __init cpuat91_board_init(void)
144 {
145         /* Serial */
146         /* DBGU on ttyS0. (Rx & Tx only) */
147         at91_register_uart(0, 0, 0);
148
149         /* USART0 on ttyS1. (Rx, Tx, CTS, RTS) */
150         at91_register_uart(AT91RM9200_ID_US0, 1, ATMEL_UART_CTS |
151                 ATMEL_UART_RTS);
152
153         /* USART1 on ttyS2. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */
154         at91_register_uart(AT91RM9200_ID_US1, 2, ATMEL_UART_CTS |
155                 ATMEL_UART_RTS | ATMEL_UART_DTR | ATMEL_UART_DSR |
156                 ATMEL_UART_DCD | ATMEL_UART_RI);
157
158         /* USART2 on ttyS3 (Rx, Tx) */
159         at91_register_uart(AT91RM9200_ID_US2, 3, 0);
160
161         /* USART3 on ttyS4 (Rx, Tx, CTS, RTS) */
162         at91_register_uart(AT91RM9200_ID_US3, 4, ATMEL_UART_CTS |
163                 ATMEL_UART_RTS);
164         at91_add_device_serial();
165         /* LEDs. */
166         at91_gpio_leds(cpuat91_leds, ARRAY_SIZE(cpuat91_leds));
167         /* Ethernet */
168         at91_add_device_eth(&cpuat91_eth_data);
169         /* USB Host */
170         at91_add_device_usbh(&cpuat91_usbh_data);
171         /* USB Device */
172         at91_add_device_udc(&cpuat91_udc_data);
173         /* MMC */
174         at91_add_device_mci(0, &cpuat91_mci0_data);
175         /* I2C */
176         at91_add_device_i2c(NULL, 0);
177         /* Platform devices */
178         platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
179 }
180
181 MACHINE_START(CPUAT91, "Eukrea")
182         /* Maintainer: Eric Benard - EUKREA Electromatique */
183         .init_time      = at91rm9200_timer_init,
184         .map_io         = at91_map_io,
185         .handle_irq     = at91_aic_handle_irq,
186         .init_early     = cpuat91_init_early,
187         .init_irq       = at91_init_irq_default,
188         .init_machine   = cpuat91_board_init,
189 MACHINE_END