From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35626) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtiMs-0001ce-PQ for qemu-devel@nongnu.org; Fri, 11 Jan 2013 12:26:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TtiMo-0007B9-Oh for qemu-devel@nongnu.org; Fri, 11 Jan 2013 12:26:10 -0500 Received: from smtp4.mundo-r.com ([212.51.32.151]:62041) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtiMo-00079y-G9 for qemu-devel@nongnu.org; Fri, 11 Jan 2013 12:26:06 -0500 From: Alberto Garcia Date: Fri, 11 Jan 2013 18:25:28 +0100 Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] =?utf-8?q?=5BPATCH_v5_0/2=5D_Add_TPCI200_and_IP-Octa?= =?utf-8?q?l_232_IndustryPack_emulation?= List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , Alberto Garcia , =?UTF-8?q?Andreas=20F=C3=A4rber?= I updated the patches again, here are the changes from v4: * Replaced DO_UPCAST() with checked casts. * Added ipack_bus_new_inplace(). The fields of IPackBus are now private. * Renamed ipoctal.c to ipoctal232.c (*). * Replaced qdev->parent_bus with qdev_get_parent_bus(qdev). * Replaced bus->qbus with BUS(bus). * Replaced dev->qdev with DEVICE(dev). (*) I didn't rename everything in the code from ipoctal to ipoctal232 for the reasons I told Andreas: all devices from the IP-Octal family are almost identical from the emulation point of view. Regards, Berto Alberto Garcia (2): Add TEWS TPCI200 IndustryPack emulation Add GE IP-Octal 232 IndustryPack emulation default-configs/pci.mak | 1 + hw/Makefile.objs | 3 + hw/ipack.c | 115 ++++++++ hw/ipack.h | 79 ++++++ hw/ipoctal232.c | 619 +++++++++++++++++++++++++++++++++++++++++++ hw/pci/pci_ids.h | 3 + hw/tpci200.c | 671 +++++++++++++++++++++++++++++++++++++++++++++++ 7 ficheiros modificados, 1491 adições(+) create mode 100644 hw/ipack.c create mode 100644 hw/ipack.h create mode 100644 hw/ipoctal232.c create mode 100644 hw/tpci200.c -- 1.7.10.4