diff options
| author | Troy Kisky <troy.kisky@boundarydevices.com> | 2012-02-07 14:08:48 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-02-27 21:19:25 +0100 | 
| commit | 8682aba7da2af2842296710acca7c03fcebafd5c (patch) | |
| tree | 8f10c869ca68f06fc00472d5194779eadda5f628 /include/phy.h | |
| parent | 13947f43c995e8c33d8a902d3fe2624f74ec5a12 (diff) | |
| download | olio-uboot-2014.01-8682aba7da2af2842296710acca7c03fcebafd5c.tar.xz olio-uboot-2014.01-8682aba7da2af2842296710acca7c03fcebafd5c.zip | |
net: phy: add support for Micrel's KSZ9021
Add the gigabit phy KSZ9021.
Also, add function ksz9021_phy_extended_write
/_read for access to the phys extended registers.
The environment variable "disable_giga"
can be used to disable 1000baseTx.
Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
Acked-by: Dirk Behme <dirk.behme@de.bosch.com>
Diffstat (limited to 'include/phy.h')
| -rw-r--r-- | include/phy.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/include/phy.h b/include/phy.h index bc522d57c..3c30f115b 100644 --- a/include/phy.h +++ b/include/phy.h @@ -207,6 +207,7 @@ int phy_config(struct phy_device *phydev);  int phy_shutdown(struct phy_device *phydev);  int phy_register(struct phy_driver *drv);  int genphy_config_aneg(struct phy_device *phydev); +int genphy_restart_aneg(struct phy_device *phydev);  int genphy_update_link(struct phy_device *phydev);  int genphy_config(struct phy_device *phydev);  int genphy_startup(struct phy_device *phydev); |