From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46012) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TsNjD-0005SY-CP for qemu-devel@nongnu.org; Mon, 07 Jan 2013 20:11:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TsNjC-0005Tp-4N for qemu-devel@nongnu.org; Mon, 07 Jan 2013 20:11:43 -0500 Received: from smtp4.mundo-r.com ([212.51.32.151]:44330) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TsNjB-0005Sh-TX for qemu-devel@nongnu.org; Mon, 07 Jan 2013 20:11:42 -0500 From: Alberto Garcia Date: Tue, 8 Jan 2013 02:10:54 +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_v4_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 , Blue Swirl , Avi Kivity , Paolo Bonzini , =?UTF-8?q?Andreas=20F=C3=A4rber?= Rebased (and tested) against the current master as requested. On Mon, Jan 07, 2013 at 02:32:41PM -0600, Anthony Liguori wrote: > Alberto Garcia writes: > > > Ping, > > > > Here's a QEMU image (124 MB) of a Debian system with the tpci200 and > > ipoctal drivers, in case you want to try them out: > > Please rebase and top-post. Don't send the new series as a response to > a previous thread. > > Regards, > > Anthony Liguori > > > > > http://dl.dropbox.com/u/1667385/qemu-ipoctal.qcow2 > > > > The root password is just 'root'. > > > > The patches for QEMU are here: > > > > http://patchwork.ozlabs.org/patch/203892/ > > http://patchwork.ozlabs.org/patch/203896/ > > > > And you need to run it with these options: > > > > -device tpci200 -device ipoctal232,serialX=DEV > > > > where X is a channel number (from 0 to 7) and DEV a host character > > device (e.g. "pty"). > > > > 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 | 106 ++++++++ hw/ipack.h | 75 ++++++ hw/ipoctal.c | 614 +++++++++++++++++++++++++++++++++++++++++++ hw/pci/pci_ids.h | 3 + hw/tpci200.c | 667 +++++++++++++++++++++++++++++++++++++++++++++++ 7 ficheiros modificados, 1469 adições(+) create mode 100644 hw/ipack.c create mode 100644 hw/ipack.h create mode 100644 hw/ipoctal.c create mode 100644 hw/tpci200.c -- 1.7.10.4