diff options
author | Giuseppe Cavallaro <peppe.cavallaro@st.com> | 2010-01-06 23:35:14 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-06 23:35:14 -0500 |
commit | 698244ace8b63896565022143ab19f141bc48993 (patch) | |
tree | 34996baa2d5b64c75f7508211a04f4642b095baa /drivers/net/phy | |
parent | 635267130855e91f4681df5e4d26ca9ce908447f (diff) |
phy: SMSC device Energy Detect power-down mode
SMSC Ethernet Transceivers (LAN88710, LAN8710, LAN8720, LAN8187,
LAN8700, LAN83C185) provide a mechanism to conserve power when
the device is not connected to an active link partner
(Energy Detect Mode).
So this patch enables the Energy Detect power-down mode
for these Transceivers.
Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/smsc.c | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/drivers/net/phy/smsc.c b/drivers/net/phy/smsc.c index 5123bb954dd7..ed2644a57500 100644 --- a/drivers/net/phy/smsc.c +++ b/drivers/net/phy/smsc.c | |||
@@ -25,6 +25,7 @@ | |||
25 | 25 | ||
26 | #define MII_LAN83C185_ISF 29 /* Interrupt Source Flags */ | 26 | #define MII_LAN83C185_ISF 29 /* Interrupt Source Flags */ |
27 | #define MII_LAN83C185_IM 30 /* Interrupt Mask */ | 27 | #define MII_LAN83C185_IM 30 /* Interrupt Mask */ |
28 | #define MII_LAN83C185_CTRL_STATUS 17 /* Mode/Status Register */ | ||
28 | 29 | ||
29 | #define MII_LAN83C185_ISF_INT1 (1<<1) /* Auto-Negotiation Page Received */ | 30 | #define MII_LAN83C185_ISF_INT1 (1<<1) /* Auto-Negotiation Page Received */ |
30 | #define MII_LAN83C185_ISF_INT2 (1<<2) /* Parallel Detection Fault */ | 31 | #define MII_LAN83C185_ISF_INT2 (1<<2) /* Parallel Detection Fault */ |
@@ -37,8 +38,10 @@ | |||
37 | #define MII_LAN83C185_ISF_INT_ALL (0x0e) | 38 | #define MII_LAN83C185_ISF_INT_ALL (0x0e) |
38 | 39 | ||
39 | #define MII_LAN83C185_ISF_INT_PHYLIB_EVENTS \ | 40 | #define MII_LAN83C185_ISF_INT_PHYLIB_EVENTS \ |
40 | (MII_LAN83C185_ISF_INT6 | MII_LAN83C185_ISF_INT4) | 41 | (MII_LAN83C185_ISF_INT6 | MII_LAN83C185_ISF_INT4 | \ |
42 | MII_LAN83C185_ISF_INT7) | ||
41 | 43 | ||
44 | #define MII_LAN83C185_EDPWRDOWN (1 << 13) /* EDPWRDOWN */ | ||
42 | 45 | ||
43 | static int smsc_phy_config_intr(struct phy_device *phydev) | 46 | static int smsc_phy_config_intr(struct phy_device *phydev) |
44 | { | 47 | { |
@@ -59,9 +62,23 @@ static int smsc_phy_ack_interrupt(struct phy_device *phydev) | |||
59 | 62 | ||
60 | static int smsc_phy_config_init(struct phy_device *phydev) | 63 | static int smsc_phy_config_init(struct phy_device *phydev) |
61 | { | 64 | { |
65 | int rc = phy_read(phydev, MII_LAN83C185_CTRL_STATUS); | ||
66 | if (rc < 0) | ||
67 | return rc; | ||
68 | |||
69 | /* Enable energy detect mode for this SMSC Transceivers */ | ||
70 | rc = phy_write(phydev, MII_LAN83C185_CTRL_STATUS, | ||
71 | rc | MII_LAN83C185_EDPWRDOWN); | ||
72 | if (rc < 0) | ||
73 | return rc; | ||
74 | |||
62 | return smsc_phy_ack_interrupt (phydev); | 75 | return smsc_phy_ack_interrupt (phydev); |
63 | } | 76 | } |
64 | 77 | ||
78 | static int lan911x_config_init(struct phy_device *phydev) | ||
79 | { | ||
80 | return smsc_phy_ack_interrupt(phydev); | ||
81 | } | ||
65 | 82 | ||
66 | static struct phy_driver lan83c185_driver = { | 83 | static struct phy_driver lan83c185_driver = { |
67 | .phy_id = 0x0007c0a0, /* OUI=0x00800f, Model#=0x0a */ | 84 | .phy_id = 0x0007c0a0, /* OUI=0x00800f, Model#=0x0a */ |
@@ -147,7 +164,7 @@ static struct phy_driver lan911x_int_driver = { | |||
147 | /* basic functions */ | 164 | /* basic functions */ |
148 | .config_aneg = genphy_config_aneg, | 165 | .config_aneg = genphy_config_aneg, |
149 | .read_status = genphy_read_status, | 166 | .read_status = genphy_read_status, |
150 | .config_init = smsc_phy_config_init, | 167 | .config_init = lan911x_config_init, |
151 | 168 | ||
152 | /* IRQ related */ | 169 | /* IRQ related */ |
153 | .ack_interrupt = smsc_phy_ack_interrupt, | 170 | .ack_interrupt = smsc_phy_ack_interrupt, |