net: phy: aquantia: add PHY ID of AQR106 and AQR107
The AQR106 and AQR107 can use the existing driver. Signed-off-by: Shaohui Xie <Shaohui.Xie@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
01e5943ac1
commit
547412fe08
|
@ -21,6 +21,8 @@
|
||||||
#define PHY_ID_AQ1202 0x03a1b445
|
#define PHY_ID_AQ1202 0x03a1b445
|
||||||
#define PHY_ID_AQ2104 0x03a1b460
|
#define PHY_ID_AQ2104 0x03a1b460
|
||||||
#define PHY_ID_AQR105 0x03a1b4a2
|
#define PHY_ID_AQR105 0x03a1b4a2
|
||||||
|
#define PHY_ID_AQR106 0x03a1b4d0
|
||||||
|
#define PHY_ID_AQR107 0x03a1b4e0
|
||||||
#define PHY_ID_AQR405 0x03a1b4b0
|
#define PHY_ID_AQR405 0x03a1b4b0
|
||||||
|
|
||||||
#define PHY_AQUANTIA_FEATURES (SUPPORTED_10000baseT_Full | \
|
#define PHY_AQUANTIA_FEATURES (SUPPORTED_10000baseT_Full | \
|
||||||
|
@ -153,6 +155,30 @@ static struct phy_driver aquantia_driver[] = {
|
||||||
.ack_interrupt = aquantia_ack_interrupt,
|
.ack_interrupt = aquantia_ack_interrupt,
|
||||||
.read_status = aquantia_read_status,
|
.read_status = aquantia_read_status,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.phy_id = PHY_ID_AQR106,
|
||||||
|
.phy_id_mask = 0xfffffff0,
|
||||||
|
.name = "Aquantia AQR106",
|
||||||
|
.features = PHY_AQUANTIA_FEATURES,
|
||||||
|
.flags = PHY_HAS_INTERRUPT,
|
||||||
|
.aneg_done = aquantia_aneg_done,
|
||||||
|
.config_aneg = aquantia_config_aneg,
|
||||||
|
.config_intr = aquantia_config_intr,
|
||||||
|
.ack_interrupt = aquantia_ack_interrupt,
|
||||||
|
.read_status = aquantia_read_status,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.phy_id = PHY_ID_AQR107,
|
||||||
|
.phy_id_mask = 0xfffffff0,
|
||||||
|
.name = "Aquantia AQR107",
|
||||||
|
.features = PHY_AQUANTIA_FEATURES,
|
||||||
|
.flags = PHY_HAS_INTERRUPT,
|
||||||
|
.aneg_done = aquantia_aneg_done,
|
||||||
|
.config_aneg = aquantia_config_aneg,
|
||||||
|
.config_intr = aquantia_config_intr,
|
||||||
|
.ack_interrupt = aquantia_ack_interrupt,
|
||||||
|
.read_status = aquantia_read_status,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.phy_id = PHY_ID_AQR405,
|
.phy_id = PHY_ID_AQR405,
|
||||||
.phy_id_mask = 0xfffffff0,
|
.phy_id_mask = 0xfffffff0,
|
||||||
|
@ -173,6 +199,8 @@ static struct mdio_device_id __maybe_unused aquantia_tbl[] = {
|
||||||
{ PHY_ID_AQ1202, 0xfffffff0 },
|
{ PHY_ID_AQ1202, 0xfffffff0 },
|
||||||
{ PHY_ID_AQ2104, 0xfffffff0 },
|
{ PHY_ID_AQ2104, 0xfffffff0 },
|
||||||
{ PHY_ID_AQR105, 0xfffffff0 },
|
{ PHY_ID_AQR105, 0xfffffff0 },
|
||||||
|
{ PHY_ID_AQR106, 0xfffffff0 },
|
||||||
|
{ PHY_ID_AQR107, 0xfffffff0 },
|
||||||
{ PHY_ID_AQR405, 0xfffffff0 },
|
{ PHY_ID_AQR405, 0xfffffff0 },
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue