From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Hershberger Date: Thu, 18 Jul 2019 16:38:22 -0500 Subject: [U-Boot] Pull request: u-boot-net.git master Message-ID: <201907182139.x6ILdYCg057465@osboxes.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, These patches passed Travis-CI here: https://travis-ci.org/jhershbe/u-boot/builds/559182108 The following changes since commit 0e80dda32c8d724c2a98dbbfb2f1e59762788f15: Merge branch 'master' of https://gitlab.denx.de/u-boot/custodians/u-boot-sunxi (2019-07-16 11:19:31 -0400) are available in the git repository at: git://git.denx.de/u-boot-net.git master for you to fetch changes up to bbfc562719c463ba6e7b03125aedd5720a325d2d: net: unaligned copying of unsigned long (2019-07-18 16:37:13 -0500) ---------------------------------------------------------------- Alex Marginean (6): drivers: net: phy: Ignore PHY ID 0 during PHY probing net: add comments to phy APIs net: add MDIO_MUX DM class doc: bindings: Add description for MDIO MUX dts nodes test: dm_mdio: add a 2nd register to the emulated PHY test: dm: add a test for MDIO MUX DM uclass Alexandru Marginean (1): drivers: net: phy: Use Aquantia driver for AQR112, AQR412 Heinrich Schuchardt (2): net: assign maintainer for include/net.h net: unaligned copying of unsigned long Simon Goldschmidt (2): cmd: mdio: prevent data abort when no mdio bus is found net: designware: remove mdio bus on probe failure MAINTAINERS | 1 + arch/Kconfig | 1 + arch/sandbox/dts/test.dts | 23 ++- cmd/mdio.c | 5 + doc/device-tree-bindings/net/mdio-mux.txt | 138 ++++++++++++++++++ drivers/net/Kconfig | 22 +++ drivers/net/Makefile | 1 + drivers/net/designware.c | 20 ++- drivers/net/mdio_mux_sandbox.c | 97 +++++++++++++ drivers/net/mdio_sandbox.c | 16 ++- drivers/net/phy/aquantia.c | 28 ++++ drivers/net/phy/phy.c | 11 ++ include/dm/uclass-id.h | 1 + include/miiphy.h | 20 +++ include/net.h | 4 +- include/phy.h | 80 +++++++++++ net/Makefile | 1 + net/mdio-mux-uclass.c | 232 ++++++++++++++++++++++++++++++ test/dm/Makefile | 1 + test/dm/mdio.c | 3 + test/dm/mdio_mux.c | 80 +++++++++++ 21 files changed, 770 insertions(+), 15 deletions(-) create mode 100644 doc/device-tree-bindings/net/mdio-mux.txt create mode 100644 drivers/net/mdio_mux_sandbox.c create mode 100644 net/mdio-mux-uclass.c create mode 100644 test/dm/mdio_mux.c Thanks! -Joe