From 71067e3b79a0d3b7f9af29c8ce9670196f6d4e81 Mon Sep 17 00:00:00 2001 From: Enrique Giraldo Date: Thu, 6 Jul 2017 14:04:31 +0200 Subject: [PATCH] ar71xx: wpj558: remove unused eth1 device and fix MAC address Signed-off-by: Enrique Giraldo --- .../linux/ar71xx/base-files/etc/board.d/02_network | 3 ++- .../ar71xx/files/arch/mips/ath79/mach-wpj558.c | 13 +++---------- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/target/linux/ar71xx/base-files/etc/board.d/02_network b/target/linux/ar71xx/base-files/etc/board.d/02_network index 5fa8c2f4c8..9a9288780c 100755 --- a/target/linux/ar71xx/base-files/etc/board.d/02_network +++ b/target/linux/ar71xx/base-files/etc/board.d/02_network @@ -540,7 +540,8 @@ ar71xx_setup_macs() mynet-n750) wan_mac=$(mtd_get_mac_ascii devdata "wanmac") ;; - wpj344) + wpj344|\ + wpj558) wan_mac=$(mtd_get_mac_binary u-boot 0x2e018) ;; esac diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-wpj558.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-wpj558.c index c7b120dc2e..910a962e16 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-wpj558.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-wpj558.c @@ -50,7 +50,7 @@ #define WPJ558_KEYS_POLL_INTERVAL 20 /* msecs */ #define WPJ558_KEYS_DEBOUNCE_INTERVAL (3 * WPJ558_KEYS_POLL_INTERVAL) -#define WPJ558_MAC_OFFSET 0x1002 +#define WPJ558_MAC_OFFSET 0x10 #define WPJ558_WMAC_CALDATA_OFFSET 0x1000 static struct gpio_led wpj558_leds_gpio[] __initdata = { @@ -135,6 +135,7 @@ static struct mdio_board_info wpj558_mdio0_info[] = { static void __init wpj558_setup(void) { u8 *art = (u8 *) KSEG1ADDR(0x1fff0000); + u8 *mac = (u8 *) KSEG1ADDR(0x1f02e000); ath79_register_m25p80(NULL); ath79_register_leds_gpio(-1, ARRAY_SIZE(wpj558_leds_gpio), @@ -153,8 +154,7 @@ static void __init wpj558_setup(void) ARRAY_SIZE(wpj558_mdio0_info)); ath79_register_mdio(0, 0x0); - ath79_init_mac(ath79_eth0_data.mac_addr, art + WPJ558_MAC_OFFSET, 0); - ath79_init_mac(ath79_eth1_data.mac_addr, art + WPJ558_MAC_OFFSET, 0); + ath79_init_mac(ath79_eth0_data.mac_addr, mac + WPJ558_MAC_OFFSET, 0); ath79_setup_qca955x_eth_cfg(QCA955X_ETH_CFG_RGMII_EN); @@ -164,14 +164,7 @@ static void __init wpj558_setup(void) ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev; ath79_eth0_pll_data.pll_1000 = 0x56000000; - /* GMAC1 is connected to the SGMII interface */ - ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_SGMII; - ath79_eth1_data.speed = SPEED_1000; - ath79_eth1_data.duplex = DUPLEX_FULL; - ath79_eth1_pll_data.pll_1000 = 0x03000101; - ath79_register_eth(0); - ath79_register_eth(1); } MIPS_MACHINE(ATH79_MACH_WPJ558, "WPJ558", "Compex WPJ558", wpj558_setup);