diff options
| author | Michal Simek <monstr@monstr.eu> | 2012-10-15 14:03:00 +0200 | 
|---|---|---|
| committer | Michal Simek <michal.simek@xilinx.com> | 2013-04-30 11:39:13 +0200 | 
| commit | 1415107e46460f988e19a5fc59e18f368e72ef19 (patch) | |
| tree | df5fc4ac01e6e897f5ae04b50e7f301ba0067902 /drivers | |
| parent | 4b21284b8ceb50a7b3ba8bc69148e22ee7d4416f (diff) | |
| download | olio-uboot-2014.01-1415107e46460f988e19a5fc59e18f368e72ef19.tar.xz olio-uboot-2014.01-1415107e46460f988e19a5fc59e18f368e72ef19.zip | |
net: phy: Define Marvell 88e1518 phy
This phy is used on zedboard (xilinx zynq platform).
Signed-off-by: Michal Simek <monstr@monstr.eu>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/phy/marvell.c | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index 4b271989a..46801c791 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c @@ -465,6 +465,16 @@ static struct phy_driver M88E1149S_driver = {  	.shutdown = &genphy_shutdown,  }; +static struct phy_driver M88E1518_driver = { +	.name = "Marvell 88E1518", +	.uid = 0x1410dd1, +	.mask = 0xffffff0, +	.features = PHY_GBIT_FEATURES, +	.config = &m88e1111s_config, +	.startup = &m88e1011s_startup, +	.shutdown = &genphy_shutdown, +}; +  int phy_marvell_init(void)  {  	phy_register(&M88E1149S_driver); @@ -474,6 +484,7 @@ int phy_marvell_init(void)  	phy_register(&M88E1118R_driver);  	phy_register(&M88E1111S_driver);  	phy_register(&M88E1011S_driver); +	phy_register(&M88E1518_driver);  	return 0;  } |