From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50099) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uwxui-0005CD-Kk for qemu-devel@nongnu.org; Wed, 10 Jul 2013 13:10:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uwxud-0006Wg-Kv for qemu-devel@nongnu.org; Wed, 10 Jul 2013 13:10:48 -0400 From: Fabien Chouteau Date: Wed, 10 Jul 2013 19:10:00 +0200 Message-Id: <1373476202-11277-1-git-send-email-chouteau@adacore.com> Subject: [Qemu-devel] [PATCH 0/2] Enhanced Three Speed Ethernet Controller (eTSEC) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-ppc@nongnu.org, agraf@suse.de I know it will be difficult to get this patch in the mainstream version, but Alex already told me that some people here may have interest in eTSEC so I thought I could just send it so everyone can have a look. It has been tested with vxWorks and vxWorks only. I have no idea if it will work with linux. It should be backwards compatible with TSEC. Have fun :) Fabien Chouteau (2): Add be16_to_cpupu function Add Enhanced Three-Speed Ethernet Controller (eTSEC) default-configs/ppc-softmmu.mak | 1 + hw/net/Makefile.objs | 1 + hw/net/etsec.c | 472 +++++++++++++++++++++++++++ hw/net/etsec.h | 169 ++++++++++ hw/net/etsec_miim.c | 146 +++++++++ hw/net/etsec_registers.c | 295 +++++++++++++++++ hw/net/etsec_registers.h | 302 ++++++++++++++++++ hw/net/etsec_rings.c | 673 +++++++++++++++++++++++++++++++++++++++ include/qemu/bswap.h | 5 + 9 files changed, 2064 insertions(+) create mode 100644 hw/net/etsec.c create mode 100644 hw/net/etsec.h create mode 100644 hw/net/etsec_miim.c create mode 100644 hw/net/etsec_registers.c create mode 100644 hw/net/etsec_registers.h create mode 100644 hw/net/etsec_rings.c -- 1.7.9.5