diff options
author | Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us> | 2019-06-26 12:39:37 -0700 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-07-17 22:59:29 +0200 |
commit | abf09cfddb12cca0597dad08e6f3ac745e16ef1d (patch) | |
tree | 0552e5769d3ad6610e49b4e7ccbd85f327b900ab /target | |
parent | fd104daa2f818d39d9b53476f7e099fc481ce783 (diff) | |
download | upstream-abf09cfddb12cca0597dad08e6f3ac745e16ef1d.tar.gz upstream-abf09cfddb12cca0597dad08e6f3ac745e16ef1d.tar.bz2 upstream-abf09cfddb12cca0597dad08e6f3ac745e16ef1d.zip |
ath79: support "rgmii-id" PHY mode in ag71xx
The ag71xx code did not include a case for the "rgmii-id" PHY mode in the
code. There are devices that need this mode, so I'm adding it.
Signed-off-by: Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c b/target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c index bcc9e22713..5847a6bf5c 100644 --- a/target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c +++ b/target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c @@ -581,6 +581,7 @@ static void ath79_mii0_ctrl_set_if(struct ag71xx *ag) mii_if = AR71XX_MII0_CTRL_IF_GMII; break; case PHY_INTERFACE_MODE_RGMII: + case PHY_INTERFACE_MODE_RGMII_ID: mii_if = AR71XX_MII0_CTRL_IF_RGMII; break; case PHY_INTERFACE_MODE_RMII: @@ -603,6 +604,7 @@ static void ath79_mii1_ctrl_set_if(struct ag71xx *ag) mii_if = AR71XX_MII1_CTRL_IF_RMII; break; case PHY_INTERFACE_MODE_RGMII: + case PHY_INTERFACE_MODE_RGMII_ID: mii_if = AR71XX_MII1_CTRL_IF_RGMII; break; default: |