2 * MikroTik RouterBOARD 4xx series support
4 * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
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.
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>
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>
25 #define RB4XX_GPIO_USER_LED 4
26 #define RB4XX_GPIO_RESET_SWITCH 7
28 #define RB4XX_BUTTONS_POLL_INTERVAL 20
30 static struct gpio_led rb4xx_leds_gpio
[] __initdata
= {
32 .name
= "rb4xx:yellow:user",
33 .gpio
= RB4XX_GPIO_USER_LED
,
38 static struct gpio_button rb4xx_gpio_buttons
[] __initdata
= {
40 .desc
= "reset_switch",
44 .gpio
= RB4XX_GPIO_RESET_SWITCH
,
49 static struct platform_device rb4xx_nand_device
= {
54 static struct ar71xx_pci_irq rb4xx_pci_irqs
[] __initdata
= {
58 .irq
= AR71XX_PCI_IRQ_DEV0
,
62 .irq
= AR71XX_PCI_IRQ_DEV1
,
66 .irq
= AR71XX_PCI_IRQ_DEV1
,
70 .irq
= AR71XX_PCI_IRQ_DEV2
,
76 * SPI device support is experimental
78 static struct flash_platform_data rb4xx_flash_data
= {
82 static struct spi_board_info rb4xx_spi_info
[] = {
86 .max_speed_hz
= 25000000,
88 .platform_data
= &rb4xx_flash_data
,
92 static struct mmc_spi_platform_data rb433_mmc_data
= {
93 .ocr_mask
= MMC_VDD_32_33
| MMC_VDD_33_34
,
96 static struct spi_board_info rb433_spi_info
[] = {
100 .max_speed_hz
= 25000000,
101 .modalias
= "m25p80",
102 .platform_data
= &rb433_flash_data
,
106 .max_speed_hz
= 25000000,
107 .modalias
= "mmc_spi",
108 .platform_data
= &rb433_mmc_data
,
112 static u32
rb433_spi_get_ioc_base(u8 chip_select
, int cs_high
, int is_on
)
116 if (is_on
== AR71XX_SPI_CS_INACTIVE
) {
117 ret
= SPI_IOC_CS0
| SPI_IOC_CS1
;
120 ret
= SPI_IOC_CS0
| SPI_IOC_CS1
;
122 if ((chip_select
^ 2) == 0)
123 ret
= SPI_IOC_CS1
^ (SPI_IOC_CS0
| SPI_IOC_CS1
);
125 ret
= SPI_IOC_CS0
^ (SPI_IOC_CS0
| SPI_IOC_CS1
);
132 struct ar71xx_spi_platform_data rb433_spi_data
= {
135 .get_ioc_base
= rb433_spi_get_ioc_base
,
138 static void rb4xx_add_device_spi(void)
140 ar71xx_add_device_spi(NULL
, rb4xx_spi_info
, ARRAY_SIZE(rb4xx_spi_info
));
143 static void rb433_add_device_spi(void)
145 ar71xx_add_device_spi(&rb433_spi_data
, rb433_spi_info
,
146 ARRAY_SIZE(rb433_spi_info
));
149 static inline void rb4xx_add_device_spi(void) {}
150 static inline void rb433_add_device_spi(void) {}
153 static void __init
rb4xx_generic_setup(void)
155 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(rb4xx_leds_gpio
),
158 ar71xx_add_device_gpio_buttons(-1, RB4XX_BUTTONS_POLL_INTERVAL
,
159 ARRAY_SIZE(rb4xx_gpio_buttons
),
162 platform_device_register(&rb4xx_nand_device
);
165 static void __init
rb411_setup(void)
167 rb4xx_generic_setup();
168 rb4xx_add_device_spi();
170 ar71xx_add_device_mdio(0xfffffffe);
172 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
173 ar71xx_eth0_data
.phy_mask
= 0x00000001;
175 ar71xx_add_device_eth(0);
177 ar71xx_pci_init(ARRAY_SIZE(rb4xx_pci_irqs
), rb4xx_pci_irqs
);
180 MIPS_MACHINE(AR71XX_MACH_RB_411
, "MikroTik RouterBOARD 411/A/AH", rb411_setup
);
182 static void __init
rb433_setup(void)
184 rb4xx_generic_setup();
185 rb433_add_device_spi();
187 ar71xx_add_device_mdio(0xffffffe9);
189 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
190 ar71xx_eth0_data
.phy_mask
= 0x00000006;
191 ar71xx_eth0_data
.speed
= SPEED_100
;
192 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
194 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
195 ar71xx_eth1_data
.phy_mask
= 0x00000010;
197 ar71xx_add_device_eth(1);
198 ar71xx_add_device_eth(0);
200 ar71xx_pci_init(ARRAY_SIZE(rb4xx_pci_irqs
), rb4xx_pci_irqs
);
203 MIPS_MACHINE(AR71XX_MACH_RB_433
, "MikroTik RouterBOARD 433/AH", rb433_setup
);
205 static void __init
rb450_setup(void)
207 rb4xx_generic_setup();
208 rb4xx_add_device_spi();
210 ar71xx_add_device_mdio(0xffffffe0);
212 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
213 ar71xx_eth0_data
.phy_mask
= 0x0000000f;
214 ar71xx_eth0_data
.speed
= SPEED_100
;
215 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
217 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
218 ar71xx_eth1_data
.phy_mask
= 0x00000010;
220 ar71xx_add_device_eth(1);
221 ar71xx_add_device_eth(0);
224 MIPS_MACHINE(AR71XX_MACH_RB_450
, "MikroTik RouterBOARD 450", rb450_setup
);
226 static void __init
rb493_setup(void)
228 rb4xx_generic_setup();
229 rb4xx_add_device_spi();
231 ar71xx_add_device_mdio(0x3fffff00);
233 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
234 ar71xx_eth0_data
.phy_mask
= 0;
235 ar71xx_eth0_data
.speed
= SPEED_100
;
236 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
238 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
239 ar71xx_eth1_data
.phy_mask
= 0x00000001;
241 ar71xx_add_device_eth(0);
242 ar71xx_add_device_eth(1);
244 ar71xx_pci_init(ARRAY_SIZE(rb4xx_pci_irqs
), rb4xx_pci_irqs
);
247 MIPS_MACHINE(AR71XX_MACH_RB_493
, "MikroTik RouterBOARD 493/AH", rb493_setup
);