diff options
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/marvell.c | 38 | ||||
-rw-r--r-- | drivers/net/phy/smsc.c | 21 |
2 files changed, 57 insertions, 2 deletions
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index 6f69b9ba0df8..65ed385c2ceb 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c | |||
@@ -63,6 +63,7 @@ | |||
63 | #define MII_M1111_HWCFG_MODE_COPPER_RGMII 0xb | 63 | #define MII_M1111_HWCFG_MODE_COPPER_RGMII 0xb |
64 | #define MII_M1111_HWCFG_MODE_FIBER_RGMII 0x3 | 64 | #define MII_M1111_HWCFG_MODE_FIBER_RGMII 0x3 |
65 | #define MII_M1111_HWCFG_MODE_SGMII_NO_CLK 0x4 | 65 | #define MII_M1111_HWCFG_MODE_SGMII_NO_CLK 0x4 |
66 | #define MII_M1111_HWCFG_MODE_COPPER_RTBI 0x9 | ||
66 | #define MII_M1111_HWCFG_FIBER_COPPER_AUTO 0x8000 | 67 | #define MII_M1111_HWCFG_FIBER_COPPER_AUTO 0x8000 |
67 | #define MII_M1111_HWCFG_FIBER_COPPER_RES 0x2000 | 68 | #define MII_M1111_HWCFG_FIBER_COPPER_RES 0x2000 |
68 | 69 | ||
@@ -269,6 +270,43 @@ static int m88e1111_config_init(struct phy_device *phydev) | |||
269 | return err; | 270 | return err; |
270 | } | 271 | } |
271 | 272 | ||
273 | if (phydev->interface == PHY_INTERFACE_MODE_RTBI) { | ||
274 | temp = phy_read(phydev, MII_M1111_PHY_EXT_CR); | ||
275 | if (temp < 0) | ||
276 | return temp; | ||
277 | temp |= (MII_M1111_RX_DELAY | MII_M1111_TX_DELAY); | ||
278 | err = phy_write(phydev, MII_M1111_PHY_EXT_CR, temp); | ||
279 | if (err < 0) | ||
280 | return err; | ||
281 | |||
282 | temp = phy_read(phydev, MII_M1111_PHY_EXT_SR); | ||
283 | if (temp < 0) | ||
284 | return temp; | ||
285 | temp &= ~(MII_M1111_HWCFG_MODE_MASK | MII_M1111_HWCFG_FIBER_COPPER_RES); | ||
286 | temp |= 0x7 | MII_M1111_HWCFG_FIBER_COPPER_AUTO; | ||
287 | err = phy_write(phydev, MII_M1111_PHY_EXT_SR, temp); | ||
288 | if (err < 0) | ||
289 | return err; | ||
290 | |||
291 | /* soft reset */ | ||
292 | err = phy_write(phydev, MII_BMCR, BMCR_RESET); | ||
293 | if (err < 0) | ||
294 | return err; | ||
295 | do | ||
296 | temp = phy_read(phydev, MII_BMCR); | ||
297 | while (temp & BMCR_RESET); | ||
298 | |||
299 | temp = phy_read(phydev, MII_M1111_PHY_EXT_SR); | ||
300 | if (temp < 0) | ||
301 | return temp; | ||
302 | temp &= ~(MII_M1111_HWCFG_MODE_MASK | MII_M1111_HWCFG_FIBER_COPPER_RES); | ||
303 | temp |= MII_M1111_HWCFG_MODE_COPPER_RTBI | MII_M1111_HWCFG_FIBER_COPPER_AUTO; | ||
304 | err = phy_write(phydev, MII_M1111_PHY_EXT_SR, temp); | ||
305 | if (err < 0) | ||
306 | return err; | ||
307 | } | ||
308 | |||
309 | |||
272 | err = phy_write(phydev, MII_BMCR, BMCR_RESET); | 310 | err = phy_write(phydev, MII_BMCR, BMCR_RESET); |
273 | if (err < 0) | 311 | if (err < 0) |
274 | return err; | 312 | return err; |
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, |