From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K0a4e-0006IJ-NR for qemu-devel@nongnu.org; Mon, 26 May 2008 06:37:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K0a4a-0006FA-PA for qemu-devel@nongnu.org; Mon, 26 May 2008 06:37:00 -0400 Received: from [199.232.76.173] (port=49694 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K0a4Z-0006Ed-BZ for qemu-devel@nongnu.org; Mon, 26 May 2008 06:36:59 -0400 Received: from il.qumranet.com ([212.179.150.194]:44099) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K0a4Y-0003VL-6s for qemu-devel@nongnu.org; Mon, 26 May 2008 06:36:58 -0400 From: Amit Shah Date: Mon, 26 May 2008 13:36:44 +0300 Message-Id: <1211798213-4187-8-git-send-email-amit.shah@qumranet.com> In-Reply-To: <1211798213-4187-7-git-send-email-amit.shah@qumranet.com> References: <1211798213-4187-1-git-send-email-amit.shah@qumranet.com> <1211798213-4187-2-git-send-email-amit.shah@qumranet.com> <1211798213-4187-3-git-send-email-amit.shah@qumranet.com> <1211798213-4187-4-git-send-email-amit.shah@qumranet.com> <1211798213-4187-5-git-send-email-amit.shah@qumranet.com> <1211798213-4187-6-git-send-email-amit.shah@qumranet.com> <1211798213-4187-7-git-send-email-amit.shah@qumranet.com> Subject: [Qemu-devel] [PATCH 05/14] QEMU: Fill in PCI subsystem vendor id for ide Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Amit Shah , kvm@vger.kernel.org The subsystem vendor ID shouldn't be 0x0 or 0xffff according to the PCI spec Signed-off-by: Amit Shah --- qemu/hw/ide.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/qemu/hw/ide.c b/qemu/hw/ide.c index 69363a9..d3e0ef6 100644 --- a/qemu/hw/ide.c +++ b/qemu/hw/ide.c @@ -2874,8 +2874,8 @@ void pci_cmd646_ide_init(PCIBus *bus, BlockDriverState **hd_table, NULL, NULL); d->type = IDE_TYPE_CMD646; pci_conf = d->dev.config; - pci_conf[0x00] = 0x95; // CMD646 - pci_conf[0x01] = 0x10; + pci_conf[0x00] = pci_conf[0x2c] = 0x95; // CMD646 + pci_conf[0x01] = pci_conf[0x2d] = 0x10; pci_conf[0x02] = 0x46; pci_conf[0x03] = 0x06; @@ -3005,8 +3005,8 @@ void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn, d->type = IDE_TYPE_PIIX3; pci_conf = d->dev.config; - pci_conf[0x00] = 0x86; // Intel - pci_conf[0x01] = 0x80; + pci_conf[0x00] = pci_conf[0x2c] = 0x86; // Intel + pci_conf[0x01] = pci_conf[0x2d] = 0x80; pci_conf[0x02] = 0x10; pci_conf[0x03] = 0x70; pci_conf[0x09] = 0x80; // legacy ATA mode @@ -3047,8 +3047,8 @@ void pci_piix4_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn, d->type = IDE_TYPE_PIIX4; pci_conf = d->dev.config; - pci_conf[0x00] = 0x86; // Intel - pci_conf[0x01] = 0x80; + pci_conf[0x00] = pci_conf[0x2c] = 0x86; // Intel + pci_conf[0x01] = pci_conf[0x2d] = 0x80; pci_conf[0x02] = 0x11; pci_conf[0x03] = 0x71; pci_conf[0x09] = 0x80; // legacy ATA mode -- 1.5.5.1