From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49317) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoAnR-0000ws-6k for qemu-devel@nongnu.org; Mon, 09 Jul 2012 06:02:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SoAnP-0006rw-By for qemu-devel@nongnu.org; Mon, 09 Jul 2012 06:02:24 -0400 Received: from smtp1-g21.free.fr ([212.27.42.1]:55874) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoAnO-0006nI-Pd for qemu-devel@nongnu.org; Mon, 09 Jul 2012 06:02:23 -0400 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Mon, 9 Jul 2012 12:02:21 +0200 Message-Id: <1341828152-15199-1-git-send-email-hpoussin@reactos.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v3 00/10] esp: add AMD PCscsi emulation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , Paolo Bonzini , =?UTF-8?q?Herv=C3=A9=20Poussineau?= , Kevin Wolf This patchset adds a PCI connection to the 53c9x emulation already present in QEMU. The emulated card is the AMD PCscsi adapter, and has been tested on multiple Microsoft operating systems. Changes v2 -> v3: - add support for accesses with size 1 or 2 - fix compilation for sparc target Changes v1 -> v2: - use qemu_log_mask(LOG_UNIMP, ...) instead of error_report() - use prefix esp_pci_* for functions related to PCI emulation - add missing break - fix DMA start for Select and Transfer Information commands Herv=C3=A9 Poussineau (10): esp: execute select commands immediately when it is a non-dma command esp: delay Transfer Information command if dma is not enabled esp: implement Disable selection command esp: implement Reset ATN command esp: support future change of chip_id esp: use hba_private field instead of a complex cast esp: split esp code into generic chip emulation and sysbus layer esp: use trace framework instead of stderr output pci: add some stubs esp: add AMD PCscsi emulation (PCI SCSI adapter) default-configs/i386-softmmu.mak | 1 + hw/esp.c | 574 ++++++++++++++++++++++++++++++++= ------ hw/pci-stub.c | 15 + hw/pci_ids.h | 1 + trace-events | 17 ++ 5 files changed, 526 insertions(+), 82 deletions(-) --=20 1.7.10.4