mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-20 11:14:44 +02:00
ip17xx: fix autonegotioation issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21727 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
4fd38b6534
commit
3106e73c42
@ -1298,21 +1298,12 @@ static int ip17xx_config_init(struct phy_device *pdev)
|
|||||||
struct net_device *dev = pdev->attached_dev;
|
struct net_device *dev = pdev->attached_dev;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
pdev->irq = PHY_IGNORE_INTERRUPT;
|
|
||||||
err = register_switch(&state->dev, dev);
|
err = register_switch(&state->dev, dev);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
ip17xx_reset(&state->dev);
|
|
||||||
|
|
||||||
state->registered = true;
|
state->registered = true;
|
||||||
|
ip17xx_reset(&state->dev);
|
||||||
pdev->state = PHY_RUNNING;
|
|
||||||
pdev->speed = SPEED_100;
|
|
||||||
pdev->duplex = DUPLEX_FULL;
|
|
||||||
pdev->pause = pdev->asym_pause = 0;
|
|
||||||
netif_carrier_on(pdev->attached_dev);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1330,8 +1321,24 @@ static int ip17xx_config_aneg(struct phy_device *pdev)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int ip17xx_aneg_done(struct phy_device *pdev)
|
||||||
|
{
|
||||||
|
return BMSR_ANEGCOMPLETE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int ip17xx_update_link(struct phy_device *pdev)
|
||||||
|
{
|
||||||
|
pdev->link = 1;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int ip17xx_read_status(struct phy_device *pdev)
|
static int ip17xx_read_status(struct phy_device *pdev)
|
||||||
{
|
{
|
||||||
|
pdev->speed = SPEED_100;
|
||||||
|
pdev->duplex = DUPLEX_FULL;
|
||||||
|
pdev->pause = pdev->asym_pause = 0;
|
||||||
|
pdev->link = 1;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1344,6 +1351,8 @@ static struct phy_driver ip17xx_driver = {
|
|||||||
.remove = ip17xx_remove,
|
.remove = ip17xx_remove,
|
||||||
.config_init = ip17xx_config_init,
|
.config_init = ip17xx_config_init,
|
||||||
.config_aneg = ip17xx_config_aneg,
|
.config_aneg = ip17xx_config_aneg,
|
||||||
|
.aneg_done = ip17xx_aneg_done,
|
||||||
|
.update_link = ip17xx_update_link,
|
||||||
.read_status = ip17xx_read_status,
|
.read_status = ip17xx_read_status,
|
||||||
.driver = { .owner = THIS_MODULE },
|
.driver = { .owner = THIS_MODULE },
|
||||||
};
|
};
|
||||||
@ -1357,6 +1366,8 @@ static struct phy_driver ip175a_driver = {
|
|||||||
.remove = ip17xx_remove,
|
.remove = ip17xx_remove,
|
||||||
.config_init = ip17xx_config_init,
|
.config_init = ip17xx_config_init,
|
||||||
.config_aneg = ip17xx_config_aneg,
|
.config_aneg = ip17xx_config_aneg,
|
||||||
|
.aneg_done = ip17xx_aneg_done,
|
||||||
|
.update_link = ip17xx_update_link,
|
||||||
.read_status = ip17xx_read_status,
|
.read_status = ip17xx_read_status,
|
||||||
.driver = { .owner = THIS_MODULE },
|
.driver = { .owner = THIS_MODULE },
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user