summaryrefslogtreecommitdiffstats
path: root/target/linux/atheros/patches-2.6.37/220-enet_micrel_workaround.patch
blob: 374b292821b236ee7ba83c68e0f722e780da63d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
--- a/drivers/net/ar231x.c
+++ b/drivers/net/ar231x.c
@@ -149,6 +149,7 @@ static int ar231x_mdiobus_write(struct m
 static int ar231x_mdiobus_reset(struct mii_bus *bus);
 static int ar231x_mdiobus_probe (struct net_device *dev);
 static void ar231x_adjust_link(struct net_device *dev);
+static bool no_phy = false;
 
 #ifndef ERR
 #define ERR(fmt, args...) printk("%s: " fmt, __func__, ##args)
@@ -298,6 +299,21 @@ int __init ar231x_probe(struct platform_
 
 	mdiobus_register(sp->mii_bus);
 
+	/* Workaround for Micrel switch, which is only available on
+	 * one PHY and cannot be configured through MDIO */
+	if (!no_phy) {
+		u32 phy_id = 0;
+		get_phy_id(sp->mii_bus, 1, &phy_id);
+		if (phy_id == 0x00221450)
+			no_phy = true;
+	}
+	if (no_phy) {
+		sp->link = 1;
+		netif_carrier_on(dev);
+		return 0;
+	}
+	no_phy = true;
+
 	if (ar231x_mdiobus_probe(dev) != 0) {
 		printk(KERN_ERR "%s: mdiobus_probe failed\n", dev->name);
 		rx_tasklet_cleanup(dev);
@@ -354,8 +370,10 @@ static int __devexit ar231x_remove(struc
 	rx_tasklet_cleanup(dev);
 	ar231x_init_cleanup(dev);
 	unregister_netdev(dev);
-	mdiobus_unregister(sp->mii_bus);
-	mdiobus_free(sp->mii_bus);
+	if (sp->mii_bus) {
+		mdiobus_unregister(sp->mii_bus);
+		mdiobus_free(sp->mii_bus);
+	}
 	kfree(dev);
 	return 0;
 }
@@ -856,7 +874,12 @@ static int ar231x_rx_int(struct net_devi
 				dev->stats.rx_bytes += skb->len;
 
 				/* pass the packet to upper layers */
-				sp->rx(skb);
+				if (sp->rx) {
+					sp->rx(skb);
+				} else {
+					skb->protocol = eth_type_trans(skb, skb->dev);
+					netif_rx(skb);
+				}
 				skb_new->dev = dev;
 
 				/* 16 bit align */
@@ -1153,6 +1176,9 @@ static int ar231x_ioctl(struct net_devic
 	struct ar231x_private *sp = netdev_priv(dev);
 	int ret;
 
+	if (!sp->phy_dev)
+		return -ENODEV;
+
 	switch (cmd) {
 
 	case SIOCETHTOOL: