From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59329) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvRWK-00036t-Vn for qemu-devel@nongnu.org; Fri, 22 Sep 2017 13:13:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dvRWH-0003Lm-NS for qemu-devel@nongnu.org; Fri, 22 Sep 2017 13:13:44 -0400 Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Fri, 22 Sep 2017 14:13:16 -0300 Message-Id: <20170922171323.10348-1-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v5 0/7] Generalize MDIO framework List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , Grant Likely , Jason Wang , Stefan Hajnoczi , "Edgar E. Iglesias" , Alistair Francis Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , qemu-devel@nongnu.org, qemu-arm@nongnu.org Hi, I have a follow up series using multiples PHY on the MDIO bus based on this series. Regards, Phil. Grant's previous work: http://lists.nongnu.org/archive/html/qemu-devel/2013-02/msg00257.html "There is more work to be done, particularly in moving to the common GPIO api, but that work can be done as a follow on patch series." Grant Likely (7): hw/mdio: Generalize etraxfs MDIO bitbanging emulation hw/mdio: Add PHY register definition hw/mdio: Generalize phy initialization routine hw/mdio: Mask out read-only bits. hw/mdio: Refactor bitbanging state machine hw/mdio: Add VMState support hw/mdio: Use bitbang core for smc91c111 network device include/hw/net/mdio.h | 124 +++++++++++++++++++++ hw/net/etraxfs_eth.c | 291 +----------------------------------------------- hw/net/mdio.c | 280 ++++++++++++++++++++++++++++++++++++++++++++++ hw/net/smc91c111.c | 27 ++++- hw/net/xilinx_axienet.c | 189 +------------------------------ hw/net/Makefile.objs | 2 + 6 files changed, 438 insertions(+), 475 deletions(-) create mode 100644 include/hw/net/mdio.h create mode 100644 hw/net/mdio.c -- 2.14.1