1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 18:23:09 +02:00

backfire: generic: make chip detection more reliable in the AR8216 driver (backport of r20753)

Fixes broken ethernet on the Planex MZK-W04NU/W300NH boards.


git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@20762 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2010-04-09 12:06:17 +00:00
parent ae38454455
commit c2d7208f8a

View File

@ -33,6 +33,7 @@
/* size of the vlan table */
#define AR8X16_MAX_VLANS 128
#define AR8X16_PROBE_RETRIES 10
struct ar8216_priv {
struct switch_dev dev;
@ -119,8 +120,25 @@ ar8216_id_chip(struct ar8216_priv *priv)
{
u32 val;
u16 id;
int i;
val = ar8216_mii_read(priv, AR8216_REG_CTRL);
if (val == ~0)
return UNKNOWN;
id = val & (AR8216_CTRL_REVISION | AR8216_CTRL_VERSION);
for (i = 0; i < AR8X16_PROBE_RETRIES; i++) {
u16 t;
val = ar8216_mii_read(priv, AR8216_REG_CTRL);
if (val == ~0)
return UNKNOWN;
t = val & (AR8216_CTRL_REVISION | AR8216_CTRL_VERSION);
if (t != id)
return UNKNOWN;
}
switch (id) {
case 0x0101:
return AR8216;
@ -736,11 +754,13 @@ static int
ar8216_probe(struct phy_device *pdev)
{
struct ar8216_priv priv;
u16 chip;
priv.phy = pdev;
if (ar8216_id_chip(&priv) == UNKNOWN) {
chip = ar8216_id_chip(&priv);
if (chip == UNKNOWN)
return -ENODEV;
}
return 0;
}