From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Hershberger Date: Thu, 9 Feb 2017 10:25:32 -0600 Subject: [U-Boot] Pull request: u-boot-net.git master Message-ID: <20170209162554.128BDFEB1D@linux-xvxi.amer.corp.natinst.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Tom, The following changes since commit c83a824e62277162ad35f52879b2316902c0eff5: Merge git://git.denx.de/u-boot-fsl-qoriq (2017-02-03 20:33:42 -0500) are available in the git repository at: git://git.denx.de/u-boot-net.git master for you to fetch changes up to a5fd13ad1913d9c66c47666dbedac7703a48e502: net: phy: MSCC Add Support for VSC8530-VSC8531-VSC8540-VSC8541 (2017-02-08 16:32:58 -0600) ---------------------------------------------------------------- Alex (1): drivers: net: Provide Kconfig menu for PHYLIB Daniel Strnad (1): net: fec_mxc: Fix corruption of device tree blob Heiner Kallweit (1): net: designware: Fix for use with current Linux device tree for Meson GX Joe Hershberger (1): net: phy: Improve the Marvell 151x constants John Haechten (1): net: phy: MSCC Add Support for VSC8530-VSC8531-VSC8540-VSC8541 Mugunthan V N (1): net: phy: dp83867: Add support for MAC impedance configuration Phil Edworthy (5): net: phy: ti: Fix dp83867 RGMII_TXID interface path net: phy: Fix mask so that we can identify Marvell 88E1518 net: phy: Add support for Marvell M88E1512 net: phy: Marvell: Use phy_interface_is_rgmii helper function net: phy: vitesse: Fix cis8204 RGMII_ID code Wenyou Yang (3): net: Kconfig: Add CONFIG_MACB option net: macb: Add the clock support net: macb: Remove redundant #ifdef CONFIG_DM_ETH oliver at schinagl.nl (6): net: cosmetic: Do not use magic values for ARP_HLEN net: cosmetic: Make the MAC address string less magical net: cosmetic: Define ethernet name length net: core: cosmetic: A MAC address is not limited to SROM tools: Allow crc8 to be used tools: Add tool to add crc8 to a mac address arch/arm/dts/dra72-evm-revc.dts | 4 +- common/fdt_support.c | 2 +- configs/am335x_evm_defconfig | 1 + drivers/net/Kconfig | 38 +-- drivers/net/designware.c | 1 + drivers/net/fec_mxc.c | 1 - drivers/net/macb.c | 44 +++- drivers/net/phy/Kconfig | 93 ++++++++ drivers/net/phy/Makefile | 1 + drivers/net/phy/marvell.c | 63 +++-- drivers/net/phy/mscc.c | 508 ++++++++++++++++++++++++++++++++++++++++ drivers/net/phy/phy.c | 3 + drivers/net/phy/ti.c | 34 ++- drivers/net/phy/vitesse.c | 4 +- include/net.h | 60 +++-- include/phy.h | 1 + include/u-boot/crc.h | 3 + net/eth-uclass.c | 12 +- net/eth_common.c | 2 +- net/eth_legacy.c | 10 +- tools/.gitignore | 1 + tools/Makefile | 5 + tools/gen_ethaddr_crc.c | 75 ++++++ 23 files changed, 872 insertions(+), 94 deletions(-) create mode 100644 drivers/net/phy/Kconfig create mode 100644 drivers/net/phy/mscc.c create mode 100644 tools/gen_ethaddr_crc.c Thanks! -Joe