From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Hershberger Date: Mon, 15 Jan 2018 12:06:17 -0600 Subject: [U-Boot] Pull request: u-boot-net.git master Message-ID: <20180115180626.4F323FED04@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 3dde8f20377c3a051dda64497bdf0cdb23e03a2d: Merge git://git.denx.de/u-boot-mmc (2018-01-14 22:26:38 -0500) are available in the git repository at: git://git.denx.de/u-boot-net.git master for you to fetch changes up to 1e2d2597a667e16adfe0a8a9be22e904cee84727: phy: atheros: set auto-negotiation for AR8021 (2018-01-15 12:05:27 -0600) ---------------------------------------------------------------- Chris Brandt (3): net: sh-eth: fix inl and outl definitions net: sh-eth: remove sh_eth_offset_rz table net: miiphybb: fix casting error Florian Fainelli (4): net: phy: Add Broadcom BCM53xx switch driver net: designware: Pad small packets net: phy: b53: Add b53_reg read/write commands configs: Update Lamobo_R1 with B53 switch options Jason Brown (1): net: mvneta - Fixed recv() when multiple packets have arrived. Joe Hershberger (3): net: Fix buffer overrun error in netconsole net: Remove nfs.h include from bootp.c net: dhcp: Allow "MAY_FAIL" to still try each adapter Lukasz Majewski (1): net: phy: marvell: Add functions to read PHY's extended registers Nobuhiro Iwamatsu (5): net: sh-eth: Fix coding style checked by checkpatch.pl net: sh-eth: Remove bd_t from sh_eth_config() net: sh-eth: Change read/write() param to struct sh_eth_info net: sh-eth: Fix misaligned cache operation warning net: sh-eth: Add to Kconfig and convert Patrice Chotard (2): dm: core: add missing dev_count_phandle_with_args() net: designware: add clock support Wilson Lee (1): net: macb: Add support for Xilinx Zynq SoC Zhao Qiang (1): phy: atheros: set auto-negotiation for AR8021 configs/Lamobo_R1_defconfig | 3 + configs/alt_defconfig | 3 +- configs/ap_sh4a_4a_defconfig | 3 +- configs/armadillo-800eva_defconfig | 3 +- configs/ecovec_defconfig | 3 +- configs/espt_defconfig | 3 +- configs/gose_defconfig | 3 +- configs/koelsch_defconfig | 3 +- configs/lager_defconfig | 3 +- configs/porter_defconfig | 3 +- configs/r0p7734_defconfig | 3 +- configs/sh7752evb_defconfig | 3 +- configs/sh7753evb_defconfig | 3 +- configs/sh7757lcr_defconfig | 3 +- configs/sh7763rdp_defconfig | 3 +- configs/silk_defconfig | 3 +- configs/stout_defconfig | 3 +- drivers/core/read.c | 7 + drivers/net/Kconfig | 13 + drivers/net/designware.c | 48 +++ drivers/net/designware.h | 4 + drivers/net/macb.c | 91 ++++- drivers/net/macb.h | 1 + drivers/net/mvneta.c | 6 +- drivers/net/netconsole.c | 7 +- drivers/net/phy/Kconfig | 17 + drivers/net/phy/Makefile | 1 + drivers/net/phy/atheros.c | 1 + drivers/net/phy/b53.c | 768 +++++++++++++++++++++++++++++++++++++ drivers/net/phy/marvell.c | 29 ++ drivers/net/phy/miiphybb.c | 2 +- drivers/net/phy/phy.c | 3 + drivers/net/sh_eth.c | 155 ++++---- drivers/net/sh_eth.h | 76 +--- include/configs/alt.h | 1 - include/configs/ap_sh4a_4a.h | 1 - include/configs/armadillo-800eva.h | 1 - include/configs/ecovec.h | 1 - include/configs/espt.h | 1 - include/configs/gose.h | 1 - include/configs/koelsch.h | 1 - include/configs/lager.h | 1 - include/configs/porter.h | 1 - include/configs/r0p7734.h | 1 - include/configs/sh7752evb.h | 1 - include/configs/sh7753evb.h | 1 - include/configs/sh7757lcr.h | 1 - include/configs/sh7763rdp.h | 1 - include/configs/silk.h | 1 - include/configs/stout.h | 1 - include/phy.h | 1 + net/bootp.c | 18 +- scripts/config_whitelist.txt | 1 - 53 files changed, 1131 insertions(+), 185 deletions(-) create mode 100644 drivers/net/phy/b53.c Thanks! -Joe