diff options
author | Tom Rini <trini@konsulko.com> | 2017-04-04 09:17:56 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-04 09:17:56 -0400 |
commit | f532703665ae5e5957211bbc4e7296a8313cc403 (patch) | |
tree | 83553bf3d230f555feadaa1d3958742f232bd4cc /include/phy.h | |
parent | 797f165f7ae90a75579ae3df7932d8d1518e8544 (diff) | |
parent | 941f7a4b2606ef468f4f3b763261b758eadee861 (diff) | |
download | u-boot-f532703665ae5e5957211bbc4e7296a8313cc403.tar.gz u-boot-f532703665ae5e5957211bbc4e7296a8313cc403.tar.bz2 u-boot-f532703665ae5e5957211bbc4e7296a8313cc403.zip |
Merge git://www.denx.de/git/u-boot-marvell
This includes Marvell mvpp2 patches with the ethernet support for the
ARMv8 Armada 7k/8k platforms. The ethernet patches are all acked by Joe
and he is okay with me pushing them via the Marvell tree.
Diffstat (limited to 'include/phy.h')
-rw-r--r-- | include/phy.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/phy.h b/include/phy.h index f5fdc04b6e..4f2094bdf0 100644 --- a/include/phy.h +++ b/include/phy.h @@ -63,6 +63,9 @@ typedef enum { PHY_INTERFACE_MODE_RGMII_TXID, PHY_INTERFACE_MODE_RTBI, PHY_INTERFACE_MODE_XGMII, + PHY_INTERFACE_MODE_XAUI, + PHY_INTERFACE_MODE_RXAUI, + PHY_INTERFACE_MODE_SFI, PHY_INTERFACE_MODE_NONE, /* Must be last */ PHY_INTERFACE_MODE_COUNT, @@ -82,6 +85,9 @@ static const char *phy_interface_strings[] = { [PHY_INTERFACE_MODE_RGMII_TXID] = "rgmii-txid", [PHY_INTERFACE_MODE_RTBI] = "rtbi", [PHY_INTERFACE_MODE_XGMII] = "xgmii", + [PHY_INTERFACE_MODE_XAUI] = "xaui", + [PHY_INTERFACE_MODE_RXAUI] = "rxaui", + [PHY_INTERFACE_MODE_SFI] = "sfi", [PHY_INTERFACE_MODE_NONE] = "", }; |