diff options
author | John Crispin <john@openwrt.org> | 2015-07-07 13:47:39 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-07-07 13:47:39 +0000 |
commit | f7ffbbc5fcb6e117a19b88f6e81cfb6fa038033a (patch) | |
tree | 86fc119bee63c4756ceff631947aec3904a1c409 /target | |
parent | a4f941b0e461a6b164d1d4af96012726b141b149 (diff) | |
download | upstream-f7ffbbc5fcb6e117a19b88f6e81cfb6fa038033a.tar.gz upstream-f7ffbbc5fcb6e117a19b88f6e81cfb6fa038033a.tar.bz2 upstream-f7ffbbc5fcb6e117a19b88f6e81cfb6fa038033a.zip |
ar71xx: Use *_eth_cfg helper for Open Mesh MR900 boards
Signed-off-by: Sven Eckelmann <sven@open-mesh.com>
SVN-Revision: 46241
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-mr900.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-mr900.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-mr900.c index fe3e1fad51..9c3164d05e 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-mr900.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-mr900.c @@ -94,24 +94,6 @@ static struct gpio_keys_button mr900_gpio_keys[] __initdata = { }, }; - -static void __init mr900_gmac_setup(void) -{ - void __iomem *base; - u32 t; - - base = ioremap(QCA955X_GMAC_BASE, QCA955X_GMAC_SIZE); - - t = __raw_readl(base + QCA955X_GMAC_REG_ETH_CFG); - - t &= ~(QCA955X_ETH_CFG_RGMII_EN | QCA955X_ETH_CFG_GE0_SGMII); - t |= QCA955X_ETH_CFG_RGMII_EN; - - __raw_writel(t, base + QCA955X_GMAC_REG_ETH_CFG); - - iounmap(base); -} - static void __init mr900_setup(void) { u8 *art = (u8 *)KSEG1ADDR(0x1fff0000); @@ -141,8 +123,7 @@ static void __init mr900_setup(void) } pdata->use_eeprom = true; - mr900_gmac_setup(); - + ath79_setup_qca955x_eth_cfg(QCA955X_ETH_CFG_RGMII_EN); ath79_register_mdio(0, 0x0); ath79_init_mac(ath79_eth0_data.mac_addr, art + MR900_MAC0_OFFSET, 0); |