diff options
author | Andrew Victor <andrew@sanpeople.com> | 2007-05-03 03:17:15 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-05-08 01:30:21 -0400 |
commit | 6b4aea7352bed6e2fdb59a3fe24ce2b42b31c35a (patch) | |
tree | 414331d4c3790883a25a652c864098e650028e86 /drivers/net/arm/at91_ether.c | |
parent | 0b45d18643f0a3eab09616b8a1283b013a7417ea (diff) |
AT91RM9200 Ethernet: Support additional PHYs
Add support for a number of new PHY's in the AT91RM9200 Ethernet driver.
- Teridian 78Q21x3
- SMSC LAN83C185
(Patch from Luca Gamma)
- National Semiconductor DP83848
(Patches from Ivan Kuten & Thomas Foldesi)
Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/arm/at91_ether.c')
-rw-r--r-- | drivers/net/arm/at91_ether.c | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/drivers/net/arm/at91_ether.c b/drivers/net/arm/at91_ether.c index 152fa7a042b8..b9cb5cb4d97f 100644 --- a/drivers/net/arm/at91_ether.c +++ b/drivers/net/arm/at91_ether.c | |||
@@ -225,6 +225,16 @@ static irqreturn_t at91ether_phy_interrupt(int irq, void *dev_id) | |||
225 | if (!(phy & ((1 << 2) | 1))) | 225 | if (!(phy & ((1 << 2) | 1))) |
226 | goto done; | 226 | goto done; |
227 | } | 227 | } |
228 | else if (lp->phy_type == MII_T78Q21x3_ID) { /* ack interrupt in Teridian PHY */ | ||
229 | read_phy(lp->phy_address, MII_T78Q21INT_REG, &phy); | ||
230 | if (!(phy & ((1 << 2) | 1))) | ||
231 | goto done; | ||
232 | } | ||
233 | else if (lp->phy_type == MII_DP83848_ID) { | ||
234 | read_phy(lp->phy_address, MII_DPPHYSTS_REG, &phy); /* ack interrupt in DP83848 PHY */ | ||
235 | if (!(phy & (1 << 7))) | ||
236 | goto done; | ||
237 | } | ||
228 | 238 | ||
229 | update_linkspeed(dev, 0); | 239 | update_linkspeed(dev, 0); |
230 | 240 | ||
@@ -280,6 +290,19 @@ static void enable_phyirq(struct net_device *dev) | |||
280 | dsintr = (1 << 10) | ( 1 << 8); | 290 | dsintr = (1 << 10) | ( 1 << 8); |
281 | write_phy(lp->phy_address, MII_TPISTATUS, dsintr); | 291 | write_phy(lp->phy_address, MII_TPISTATUS, dsintr); |
282 | } | 292 | } |
293 | else if (lp->phy_type == MII_T78Q21x3_ID) { /* for Teridian PHY */ | ||
294 | read_phy(lp->phy_address, MII_T78Q21INT_REG, &dsintr); | ||
295 | dsintr = dsintr | 0x500; /* set bits 8, 10 */ | ||
296 | write_phy(lp->phy_address, MII_T78Q21INT_REG, dsintr); | ||
297 | } | ||
298 | else if (lp->phy_type == MII_DP83848_ID) { /* National Semiconductor DP83848 PHY */ | ||
299 | read_phy(lp->phy_address, MII_DPMISR_REG, &dsintr); | ||
300 | dsintr = dsintr | 0x3c; /* set bits 2..5 */ | ||
301 | write_phy(lp->phy_address, MII_DPMISR_REG, dsintr); | ||
302 | read_phy(lp->phy_address, MII_DPMICR_REG, &dsintr); | ||
303 | dsintr = dsintr | 0x3; /* set bits 0,1 */ | ||
304 | write_phy(lp->phy_address, MII_DPMICR_REG, dsintr); | ||
305 | } | ||
283 | 306 | ||
284 | disable_mdi(); | 307 | disable_mdi(); |
285 | spin_unlock_irq(&lp->lock); | 308 | spin_unlock_irq(&lp->lock); |
@@ -323,6 +346,19 @@ static void disable_phyirq(struct net_device *dev) | |||
323 | dsintr = ~((1 << 10) | (1 << 8)); | 346 | dsintr = ~((1 << 10) | (1 << 8)); |
324 | write_phy(lp->phy_address, MII_TPISTATUS, dsintr); | 347 | write_phy(lp->phy_address, MII_TPISTATUS, dsintr); |
325 | } | 348 | } |
349 | else if (lp->phy_type == MII_T78Q21x3_ID) { /* for Teridian PHY */ | ||
350 | read_phy(lp->phy_address, MII_T78Q21INT_REG, &dsintr); | ||
351 | dsintr = dsintr & ~0x500; /* clear bits 8, 10 */ | ||
352 | write_phy(lp->phy_address, MII_T78Q21INT_REG, dsintr); | ||
353 | } | ||
354 | else if (lp->phy_type == MII_DP83848_ID) { /* National Semiconductor DP83848 PHY */ | ||
355 | read_phy(lp->phy_address, MII_DPMICR_REG, &dsintr); | ||
356 | dsintr = dsintr & ~0x3; /* clear bits 0, 1 */ | ||
357 | write_phy(lp->phy_address, MII_DPMICR_REG, dsintr); | ||
358 | read_phy(lp->phy_address, MII_DPMISR_REG, &dsintr); | ||
359 | dsintr = dsintr & ~0x3c; /* clear bits 2..5 */ | ||
360 | write_phy(lp->phy_address, MII_DPMISR_REG, dsintr); | ||
361 | } | ||
326 | 362 | ||
327 | disable_mdi(); | 363 | disable_mdi(); |
328 | spin_unlock_irq(&lp->lock); | 364 | spin_unlock_irq(&lp->lock); |
@@ -1062,10 +1098,16 @@ static int __init at91ether_setup(unsigned long phy_type, unsigned short phy_add | |||
1062 | printk(KERN_INFO "%s: Broadcom BCM5221 PHY\n", dev->name); | 1098 | printk(KERN_INFO "%s: Broadcom BCM5221 PHY\n", dev->name); |
1063 | else if (phy_type == MII_DP83847_ID) | 1099 | else if (phy_type == MII_DP83847_ID) |
1064 | printk(KERN_INFO "%s: National Semiconductor DP83847 PHY\n", dev->name); | 1100 | printk(KERN_INFO "%s: National Semiconductor DP83847 PHY\n", dev->name); |
1101 | else if (phy_type == MII_DP83848_ID) | ||
1102 | printk(KERN_INFO "%s: National Semiconductor DP83848 PHY\n", dev->name); | ||
1065 | else if (phy_type == MII_AC101L_ID) | 1103 | else if (phy_type == MII_AC101L_ID) |
1066 | printk(KERN_INFO "%s: Altima AC101L PHY\n", dev->name); | 1104 | printk(KERN_INFO "%s: Altima AC101L PHY\n", dev->name); |
1067 | else if (phy_type == MII_KS8721_ID) | 1105 | else if (phy_type == MII_KS8721_ID) |
1068 | printk(KERN_INFO "%s: Micrel KS8721 PHY\n", dev->name); | 1106 | printk(KERN_INFO "%s: Micrel KS8721 PHY\n", dev->name); |
1107 | else if (phy_type == MII_T78Q21x3_ID) | ||
1108 | printk(KERN_INFO "%s: Teridian 78Q21x3 PHY\n", dev->name); | ||
1109 | else if (phy_type == MII_LAN83C185_ID) | ||
1110 | printk(KERN_INFO "%s: SMSC LAN83C185 PHY\n", dev->name); | ||
1069 | 1111 | ||
1070 | return 0; | 1112 | return 0; |
1071 | } | 1113 | } |
@@ -1103,8 +1145,11 @@ static int __init at91ether_probe(struct platform_device *pdev) | |||
1103 | case MII_RTL8201_ID: /* Realtek RTL8201: PHY_ID1 = 0, PHY_ID2 = 0x8201 */ | 1145 | case MII_RTL8201_ID: /* Realtek RTL8201: PHY_ID1 = 0, PHY_ID2 = 0x8201 */ |
1104 | case MII_BCM5221_ID: /* Broadcom BCM5221: PHY_ID1 = 0x40, PHY_ID2 = 0x61e0 */ | 1146 | case MII_BCM5221_ID: /* Broadcom BCM5221: PHY_ID1 = 0x40, PHY_ID2 = 0x61e0 */ |
1105 | case MII_DP83847_ID: /* National Semiconductor DP83847: */ | 1147 | case MII_DP83847_ID: /* National Semiconductor DP83847: */ |
1148 | case MII_DP83848_ID: /* National Semiconductor DP83848: */ | ||
1106 | case MII_AC101L_ID: /* Altima AC101L: PHY_ID1 = 0x22, PHY_ID2 = 0x5520 */ | 1149 | case MII_AC101L_ID: /* Altima AC101L: PHY_ID1 = 0x22, PHY_ID2 = 0x5520 */ |
1107 | case MII_KS8721_ID: /* Micrel KS8721: PHY_ID1 = 0x22, PHY_ID2 = 0x1610 */ | 1150 | case MII_KS8721_ID: /* Micrel KS8721: PHY_ID1 = 0x22, PHY_ID2 = 0x1610 */ |
1151 | case MII_T78Q21x3_ID: /* Teridian 78Q21x3: PHY_ID1 = 0x0E, PHY_ID2 = 7237 */ | ||
1152 | case MII_LAN83C185_ID: /* SMSC LAN83C185: PHY_ID1 = 0x0007, PHY_ID2 = 0xC0A1 */ | ||
1108 | detected = at91ether_setup(phy_id, phy_address, pdev, ether_clk); | 1153 | detected = at91ether_setup(phy_id, phy_address, pdev, ether_clk); |
1109 | break; | 1154 | break; |
1110 | } | 1155 | } |