From patchwork Thu Jul 18 21:38:22 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joe Hershberger X-Patchwork-Id: 1133868 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ni.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 45qSGC2V87z9s3l for ; Fri, 19 Jul 2019 07:39:47 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 055B9C21FE2; Thu, 18 Jul 2019 21:39:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: * X-Spam-Status: No, score=1.3 required=5.0 tests=RDNS_NONE autolearn=no autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id B1AA9C21EAE; Thu, 18 Jul 2019 21:39:40 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id D9653C21C8B; Thu, 18 Jul 2019 21:39:38 +0000 (UTC) Received: from osboxes.amer.corp.natinst.com (unknown [130.164.62.189]) by lists.denx.de (Postfix) with ESMTPS id 4D89EC21EAE for ; Thu, 18 Jul 2019 21:39:38 +0000 (UTC) Received: from osboxes.amer.corp.natinst.com (localhost [127.0.0.1]) by osboxes.amer.corp.natinst.com (8.15.2/8.15.2/Debian-8) with ESMTP id x6ILdZ3q057466; Thu, 18 Jul 2019 16:39:35 -0500 Received: (from osboxes@localhost) by osboxes.amer.corp.natinst.com (8.15.2/8.15.2/Submit) id x6ILdYCg057465; Thu, 18 Jul 2019 16:39:34 -0500 Message-Id: <201907182139.x6ILdYCg057465@osboxes.amer.corp.natinst.com> Date: Thu, 18 Jul 2019 16:38:22 -0500 From: Joe Hershberger To: Tom Rini Cc: u-boot Subject: [U-Boot] Pull request: u-boot-net.git master X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" 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