diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-11-18 10:18:01 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-11-18 10:18:01 +0000 |
commit | d44d954dec6c9c2647a5d66e9d049eeb02367bc7 (patch) | |
tree | 383073e5be9697d82f7eab3ba9556dfeedc4e3ea /target/linux/ar71xx/files/arch | |
parent | d62bddc620b372446cf437c228d24b17c34ad0f2 (diff) | |
download | upstream-d44d954dec6c9c2647a5d66e9d049eeb02367bc7.tar.gz upstream-d44d954dec6c9c2647a5d66e9d049eeb02367bc7.tar.bz2 upstream-d44d954dec6c9c2647a5d66e9d049eeb02367bc7.zip |
ar71xx: add kernel support for the RB435G board
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 34239
Diffstat (limited to 'target/linux/ar71xx/files/arch')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-rb4xx.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-rb4xx.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-rb4xx.c index 0699232e5d..3f02be791e 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-rb4xx.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-rb4xx.c @@ -305,6 +305,35 @@ static void __init rb433u_setup(void) MIPS_MACHINE(ATH79_MACH_RB_433U, "433U", "MikroTik RouterBOARD 433UAH", rb433u_setup); +static void __init rb435g_setup(void) +{ + rb4xx_generic_setup(); + + spi_register_board_info(rb4xx_microsd_info, + ARRAY_SIZE(rb4xx_microsd_info)); + + ath79_register_mdio(0, ~RB433_MDIO_PHYMASK); + + ath79_init_mac(ath79_eth0_data.mac_addr, ath79_mac_base, 1); + ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII; + ath79_eth0_data.phy_mask = RB433_LAN_PHYMASK; + + ath79_init_mac(ath79_eth1_data.mac_addr, ath79_mac_base, 0); + ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII; + ath79_eth1_data.phy_mask = RB433_WAN_PHYMASK; + + ath79_register_eth(1); + ath79_register_eth(0); + + ath79_pci_set_irq_map(ARRAY_SIZE(rb4xx_pci_irqs), rb4xx_pci_irqs); + ath79_register_pci(); + + ath79_register_usb(); +} + +MIPS_MACHINE(ATH79_MACH_RB_435G, "435G", "MikroTik RouterBOARD 435G", + rb435g_setup); + #define RB450_LAN_PHYMASK BIT(0) #define RB450_WAN_PHYMASK BIT(4) #define RB450_MDIO_PHYMASK (RB450_LAN_PHYMASK | RB450_WAN_PHYMASK) |