fix GPIO function select bit definitions (based on a patch by Jonas <jmajau at ubnt...
[openwrt/openwrt.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-rb-4xx.c
1 /*
2 * MikroTik RouterBOARD 4xx series support
3 *
4 * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
10 */
11
12 #include <linux/platform_device.h>
13 #include <linux/irq.h>
14 #include <linux/mmc/host.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/flash.h>
17 #include <linux/spi/mmc_spi.h>
18 #include <linux/input.h>
19
20 #include <asm/mips_machine.h>
21 #include <asm/mach-ar71xx/ar71xx.h>
22 #include <asm/mach-ar71xx/pci.h>
23 #include <asm/mach-ar71xx/platform.h>
24
25 #define RB4XX_GPIO_USER_LED 4
26 #define RB4XX_GPIO_RESET_SWITCH 7
27
28 #define RB4XX_BUTTONS_POLL_INTERVAL 20
29
30 static struct gpio_led rb4xx_leds_gpio[] __initdata = {
31 {
32 .name = "rb4xx:yellow:user",
33 .gpio = RB4XX_GPIO_USER_LED,
34 .active_low = 0,
35 },
36 };
37
38 static struct gpio_button rb4xx_gpio_buttons[] __initdata = {
39 {
40 .desc = "reset_switch",
41 .type = EV_KEY,
42 .code = BTN_0,
43 .threshold = 5,
44 .gpio = RB4XX_GPIO_RESET_SWITCH,
45 .active_low = 1,
46 }
47 };
48
49 static struct platform_device rb4xx_nand_device = {
50 .name = "rb4xx-nand",
51 .id = -1,
52 };
53
54 static struct ar71xx_pci_irq rb4xx_pci_irqs[] __initdata = {
55 {
56 .slot = 1,
57 .pin = 1,
58 .irq = AR71XX_PCI_IRQ_DEV0,
59 }, {
60 .slot = 1,
61 .pin = 2,
62 .irq = AR71XX_PCI_IRQ_DEV1,
63 }, {
64 .slot = 2,
65 .pin = 1,
66 .irq = AR71XX_PCI_IRQ_DEV1,
67 }, {
68 .slot = 3,
69 .pin = 1,
70 .irq = AR71XX_PCI_IRQ_DEV2,
71 }
72 };
73
74 #if 0
75 /*
76 * SPI device support is experimental
77 */
78 static struct flash_platform_data rb4xx_flash_data = {
79 .type = "pm25lv512",
80 };
81
82 static struct spi_board_info rb4xx_spi_info[] = {
83 {
84 .bus_num = 0,
85 .chip_select = 0,
86 .max_speed_hz = 25000000,
87 .modalias = "m25p80",
88 .platform_data = &rb4xx_flash_data,
89 }
90 };
91
92 static struct mmc_spi_platform_data rb433_mmc_data = {
93 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34,
94 };
95
96 static struct spi_board_info rb433_spi_info[] = {
97 {
98 .bus_num = 0,
99 .chip_select = 0,
100 .max_speed_hz = 25000000,
101 .modalias = "m25p80",
102 .platform_data = &rb433_flash_data,
103 }, {
104 .bus_num = 0,
105 .chip_select = 2,
106 .max_speed_hz = 25000000,
107 .modalias = "mmc_spi",
108 .platform_data = &rb433_mmc_data,
109 }
110 };
111
112 static u32 rb433_spi_get_ioc_base(u8 chip_select, int cs_high, int is_on)
113 {
114 u32 ret;
115
116 if (is_on == AR71XX_SPI_CS_INACTIVE) {
117 ret = SPI_IOC_CS0 | SPI_IOC_CS1;
118 } else {
119 if (cs_high) {
120 ret = SPI_IOC_CS0 | SPI_IOC_CS1;
121 } else {
122 if ((chip_select ^ 2) == 0)
123 ret = SPI_IOC_CS1 ^ (SPI_IOC_CS0 | SPI_IOC_CS1);
124 else
125 ret = SPI_IOC_CS0 ^ (SPI_IOC_CS0 | SPI_IOC_CS1);
126 }
127 }
128
129 return ret;
130 }
131
132 struct ar71xx_spi_platform_data rb433_spi_data = {
133 .bus_num = 0,
134 .num_chipselect = 3,
135 .get_ioc_base = rb433_spi_get_ioc_base,
136 };
137
138 static void rb4xx_add_device_spi(void)
139 {
140 ar71xx_add_device_spi(NULL, rb4xx_spi_info, ARRAY_SIZE(rb4xx_spi_info));
141 }
142
143 static void rb433_add_device_spi(void)
144 {
145 ar71xx_add_device_spi(&rb433_spi_data, rb433_spi_info,
146 ARRAY_SIZE(rb433_spi_info));
147 }
148 #else
149 static inline void rb4xx_add_device_spi(void) {}
150 static inline void rb433_add_device_spi(void) {}
151 #endif
152
153 static void __init rb4xx_generic_setup(void)
154 {
155 ar71xx_gpio_function_enable(GPIO_FUNC_SPI_CS1_EN |
156 GPIO_FUNC_SPI_CS2_EN);
157
158 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(rb4xx_leds_gpio),
159 rb4xx_leds_gpio);
160
161 ar71xx_add_device_gpio_buttons(-1, RB4XX_BUTTONS_POLL_INTERVAL,
162 ARRAY_SIZE(rb4xx_gpio_buttons),
163 rb4xx_gpio_buttons);
164
165 platform_device_register(&rb4xx_nand_device);
166 }
167
168 static void __init rb411_setup(void)
169 {
170 rb4xx_generic_setup();
171 rb4xx_add_device_spi();
172
173 ar71xx_add_device_mdio(0xfffffffe);
174
175 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
176 ar71xx_eth0_data.phy_mask = 0x00000001;
177
178 ar71xx_add_device_eth(0);
179
180 ar71xx_pci_init(ARRAY_SIZE(rb4xx_pci_irqs), rb4xx_pci_irqs);
181 }
182
183 MIPS_MACHINE(AR71XX_MACH_RB_411, "MikroTik RouterBOARD 411/A/AH", rb411_setup);
184
185 static void __init rb433_setup(void)
186 {
187 rb4xx_generic_setup();
188 rb433_add_device_spi();
189
190 ar71xx_add_device_mdio(0xffffffe9);
191
192 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
193 ar71xx_eth0_data.phy_mask = 0x00000006;
194 ar71xx_eth0_data.speed = SPEED_100;
195 ar71xx_eth0_data.duplex = DUPLEX_FULL;
196
197 ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
198 ar71xx_eth1_data.phy_mask = 0x00000010;
199
200 ar71xx_add_device_eth(1);
201 ar71xx_add_device_eth(0);
202
203 ar71xx_pci_init(ARRAY_SIZE(rb4xx_pci_irqs), rb4xx_pci_irqs);
204 }
205
206 MIPS_MACHINE(AR71XX_MACH_RB_433, "MikroTik RouterBOARD 433/AH", rb433_setup);
207
208 static void __init rb450_setup(void)
209 {
210 rb4xx_generic_setup();
211 rb4xx_add_device_spi();
212
213 ar71xx_add_device_mdio(0xffffffe0);
214
215 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
216 ar71xx_eth0_data.phy_mask = 0x0000000f;
217 ar71xx_eth0_data.speed = SPEED_100;
218 ar71xx_eth0_data.duplex = DUPLEX_FULL;
219
220 ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
221 ar71xx_eth1_data.phy_mask = 0x00000010;
222
223 ar71xx_add_device_eth(1);
224 ar71xx_add_device_eth(0);
225 }
226
227 MIPS_MACHINE(AR71XX_MACH_RB_450, "MikroTik RouterBOARD 450", rb450_setup);
228
229 static void __init rb493_setup(void)
230 {
231 rb4xx_generic_setup();
232 rb4xx_add_device_spi();
233
234 ar71xx_add_device_mdio(0x3fffff00);
235
236 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
237 ar71xx_eth0_data.phy_mask = 0;
238 ar71xx_eth0_data.speed = SPEED_100;
239 ar71xx_eth0_data.duplex = DUPLEX_FULL;
240
241 ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
242 ar71xx_eth1_data.phy_mask = 0x00000001;
243
244 ar71xx_add_device_eth(0);
245 ar71xx_add_device_eth(1);
246
247 ar71xx_pci_init(ARRAY_SIZE(rb4xx_pci_irqs), rb4xx_pci_irqs);
248 }
249
250 MIPS_MACHINE(AR71XX_MACH_RB_493, "MikroTik RouterBOARD 493/AH", rb493_setup);