From: Vladimir Zapolskiy Date: Tue, 6 Dec 2011 02:47:57 +0000 (+0000) Subject: phy: add Micrel KS8721BL phy definition X-Git-Tag: v2012.04-rc1~341^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fcc0c75dea90f2bb8394e7031fc33f72119be544;p=platform%2Fkernel%2Fu-boot.git phy: add Micrel KS8721BL phy definition This adds support for the Micrel KS8721BL/SL PHY. The definition is taken from the correspondent datasheet. Signed-off-by: Vladimir Zapolskiy --- diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c index 47064a1..d4e64f2 100644 --- a/drivers/net/phy/micrel.c +++ b/drivers/net/phy/micrel.c @@ -32,9 +32,20 @@ static struct phy_driver KSZ804_driver = { .shutdown = &genphy_shutdown, }; +static struct phy_driver KS8721_driver = { + .name = "Micrel KS8721BL", + .uid = 0x221610, + .mask = 0xfffff0, + .features = PHY_BASIC_FEATURES, + .config = &genphy_config, + .startup = &genphy_startup, + .shutdown = &genphy_shutdown, +}; + int phy_micrel_init(void) { phy_register(&KSZ804_driver); + phy_register(&KS8721_driver); return 0; }