mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
net: phy: davicom: add IDs for DM9161B and C variants
Add PHY IDs for Davicom DM9161B and DM9161C variants. Tested with a DM9161C on a custom Atmel-based SAM9X25 board in RMII mode. The DM9161B uses the same model id with just the LSB bit of the version id changing (which is masked out). For all intents and purposes they're the same as the DM9161A with an added GPSI mode and better fabrication process. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a0d2f20650
commit
1059261e7d
1 changed files with 13 additions and 0 deletions
|
@ -157,6 +157,18 @@ static struct phy_driver dm91xx_driver[] = {
|
|||
.ack_interrupt = dm9161_ack_interrupt,
|
||||
.config_intr = dm9161_config_intr,
|
||||
.driver = { .owner = THIS_MODULE,},
|
||||
}, {
|
||||
.phy_id = 0x0181b8b0,
|
||||
.name = "Davicom DM9161B/C",
|
||||
.phy_id_mask = 0x0ffffff0,
|
||||
.features = PHY_BASIC_FEATURES,
|
||||
.flags = PHY_HAS_INTERRUPT,
|
||||
.config_init = dm9161_config_init,
|
||||
.config_aneg = dm9161_config_aneg,
|
||||
.read_status = genphy_read_status,
|
||||
.ack_interrupt = dm9161_ack_interrupt,
|
||||
.config_intr = dm9161_config_intr,
|
||||
.driver = { .owner = THIS_MODULE,},
|
||||
}, {
|
||||
.phy_id = 0x0181b8a0,
|
||||
.name = "Davicom DM9161A",
|
||||
|
@ -186,6 +198,7 @@ module_phy_driver(dm91xx_driver);
|
|||
|
||||
static struct mdio_device_id __maybe_unused davicom_tbl[] = {
|
||||
{ 0x0181b880, 0x0ffffff0 },
|
||||
{ 0x0181b8b0, 0x0ffffff0 },
|
||||
{ 0x0181b8a0, 0x0ffffff0 },
|
||||
{ 0x00181b80, 0x0ffffff0 },
|
||||
{ }
|
||||
|
|
Loading…
Add table
Reference in a new issue