ar71xx: allow overriding of the lan port names on AP91 based boards
[openwrt-10.03/.git] / target / linux / ar71xx / files / arch / mips / ar71xx / dev-ap91-eth.c
index be48b8a9ed0406a79c0ab2664cff4582dfd4be74..571901e670b50085a02a3c8943ea4a5df5b83f4f 100644 (file)
@@ -10,6 +10,7 @@
 
 #include "devices.h"
 #include "dev-dsa.h"
+#include "dev-ap91-eth.h"
 
 static struct dsa_chip_data ap91_dsa_chip = {
        .port_names[0]  = "cpu",
@@ -24,11 +25,27 @@ static struct dsa_platform_data ap91_dsa_data = {
        .chip           = &ap91_dsa_chip,
 };
 
-void __init ap91_eth_init(u8 *mac_addr)
+static void ap91_eth_set_port_name(unsigned port, const char *name)
+{
+       if (port < 1 || port > 5)
+               return;
+
+       if (name)
+               ap91_dsa_chip.port_names[port] = (char *) name;
+}
+
+void __init ap91_eth_init(u8 *mac_addr, const char *port_names[])
 {
        if (mac_addr)
                ar71xx_set_mac_base(mac_addr);
 
+       if (port_names) {
+               int i;
+
+               for (i = 0; i < AP91_ETH_NUM_PORT_NAMES; i++)
+                       ap91_eth_set_port_name(i + 1, port_names[i]);
+       }
+
        /* WAN port */
        ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
        ar71xx_eth0_data.phy_mask = 0x0;