From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg Felix Subject: [PATCH] ata_piix.c: check PCI sub-class code before AHCI disabling Date: Fri, 4 Mar 2005 17:04:55 -0700 Message-ID: Reply-To: Greg Felix Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Received: from wproxy.gmail.com ([64.233.184.200]:6964 "EHLO wproxy.gmail.com") by vger.kernel.org with ESMTP id S263428AbVCEAE5 (ORCPT ); Fri, 4 Mar 2005 19:04:57 -0500 Received: by wproxy.gmail.com with SMTP id 68so993291wra for ; Fri, 04 Mar 2005 16:04:57 -0800 (PST) Sender: linux-ide-owner@vger.kernel.org List-Id: linux-ide@vger.kernel.org To: Jeff Garzik Cc: linux-kernel@vger.kernel.org, "linux-ide@vger.kernel.org" This patch adds functionality to check the PCI sub-class code of an AHCI capable device before disabling AHCI. It fixes a bug where an ICH7 sata controller is being setup by the BIOS as sub-class 1 (ide) and the AHCI control registers weren't being initialized, thus causing an IO error in piix_disable_ahci(). Thanks, Greg Felix Signed-off-by: Gregory Felix --- drivers/scsi/ata_piix.c.orig 2005-03-04 15:25:48.966846795 -0700 +++ drivers/scsi/ata_piix.c 2005-03-04 15:27:55.942404850 -0700 @@ -38,6 +38,7 @@ enum { PIIX_IOCFG = 0x54, /* IDE I/O configuration register */ ICH5_PMR = 0x90, /* port mapping register */ ICH5_PCS = 0x92, /* port control and status */ + PIIX_SCC = 0x0A, /* sub-class code register */ PIIX_FLAG_AHCI = (1 << 28), /* AHCI possible */ PIIX_FLAG_CHECKINTR = (1 << 29), /* make sure PCI INTx enabled */ @@ -61,6 +62,8 @@ enum { ich6_sata = 3, ich6_sata_rm = 4, ich7_sata = 5, + + PIIX_AHCI_DEVICE = 6, }; static int piix_init_one (struct pci_dev *pdev, @@ -609,9 +612,13 @@ static int piix_init_one (struct pci_dev port_info[1] = NULL; if (port_info[0]->host_flags & PIIX_FLAG_AHCI) { - int rc = piix_disable_ahci(pdev); - if (rc) - return rc; + u8 tmp; + pci_read_config_byte(pdev, PIIX_SCC, &tmp); + if (tmp == PIIX_AHCI_DEVICE) { + int rc = piix_disable_ahci(pdev); + if (rc) + return rc; + } } if (port_info[0]->host_flags & PIIX_FLAG_COMBINED) {