123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- #include <linux/module.h>
- #include <linux/phy.h>
- #define TI_DP83848C_PHY_ID 0x20005ca0
- #define TI_DP83620_PHY_ID 0x20005ce0
- #define NS_DP83848C_PHY_ID 0x20005c90
- #define TLK10X_PHY_ID 0x2000a210
- #define TI_DP83822_PHY_ID 0x2000a240
- #define DP83848_MICR 0x11
- #define DP83848_MISR 0x12
- #define DP83848_MICR_INT_OE BIT(0)
- #define DP83848_MICR_INTEN BIT(1)
- #define DP83848_MISR_RHF_INT_EN BIT(0)
- #define DP83848_MISR_FHF_INT_EN BIT(1)
- #define DP83848_MISR_ANC_INT_EN BIT(2)
- #define DP83848_MISR_DUP_INT_EN BIT(3)
- #define DP83848_MISR_SPD_INT_EN BIT(4)
- #define DP83848_MISR_LINK_INT_EN BIT(5)
- #define DP83848_MISR_ED_INT_EN BIT(6)
- #define DP83848_MISR_LQM_INT_EN BIT(7)
- #define DP83848_INT_EN_MASK \
- (DP83848_MISR_ANC_INT_EN | \
- DP83848_MISR_DUP_INT_EN | \
- DP83848_MISR_SPD_INT_EN | \
- DP83848_MISR_LINK_INT_EN)
- static int dp83848_ack_interrupt(struct phy_device *phydev)
- {
- int err = phy_read(phydev, DP83848_MISR);
- return err < 0 ? err : 0;
- }
- static int dp83848_config_intr(struct phy_device *phydev)
- {
- int control, ret;
- control = phy_read(phydev, DP83848_MICR);
- if (control < 0)
- return control;
- if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
- control |= DP83848_MICR_INT_OE;
- control |= DP83848_MICR_INTEN;
- ret = phy_write(phydev, DP83848_MISR, DP83848_INT_EN_MASK);
- if (ret < 0)
- return ret;
- } else {
- control &= ~DP83848_MICR_INTEN;
- }
- return phy_write(phydev, DP83848_MICR, control);
- }
- static struct mdio_device_id __maybe_unused dp83848_tbl[] = {
- { TI_DP83848C_PHY_ID, 0xfffffff0 },
- { NS_DP83848C_PHY_ID, 0xfffffff0 },
- { TI_DP83620_PHY_ID, 0xfffffff0 },
- { TLK10X_PHY_ID, 0xfffffff0 },
- { TI_DP83822_PHY_ID, 0xfffffff0 },
- { }
- };
- MODULE_DEVICE_TABLE(mdio, dp83848_tbl);
- #define DP83848_PHY_DRIVER(_id, _name) \
- { \
- .phy_id = _id, \
- .phy_id_mask = 0xfffffff0, \
- .name = _name, \
- .features = PHY_BASIC_FEATURES, \
- .flags = PHY_HAS_INTERRUPT, \
- \
- .soft_reset = genphy_soft_reset, \
- .config_init = genphy_config_init, \
- .suspend = genphy_suspend, \
- .resume = genphy_resume, \
- .config_aneg = genphy_config_aneg, \
- .read_status = genphy_read_status, \
- \
- \
- .ack_interrupt = dp83848_ack_interrupt, \
- .config_intr = dp83848_config_intr, \
- }
- static struct phy_driver dp83848_driver[] = {
- DP83848_PHY_DRIVER(TI_DP83848C_PHY_ID, "TI DP83848C 10/100 Mbps PHY"),
- DP83848_PHY_DRIVER(NS_DP83848C_PHY_ID, "NS DP83848C 10/100 Mbps PHY"),
- DP83848_PHY_DRIVER(TI_DP83620_PHY_ID, "TI DP83620 10/100 Mbps PHY"),
- DP83848_PHY_DRIVER(TLK10X_PHY_ID, "TI TLK10X 10/100 Mbps PHY"),
- DP83848_PHY_DRIVER(TI_DP83822_PHY_ID, "TI DP83822 10/100 Mbps PHY"),
- };
- module_phy_driver(dp83848_driver);
- MODULE_DESCRIPTION("Texas Instruments DP83848 PHY driver");
- MODULE_AUTHOR("Andrew F. Davis <afd@ti.com");
- MODULE_LICENSE("GPL");
|