aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/pata_ali.c
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2008-03-24 23:22:47 -0400
committerJeff Garzik <jgarzik@redhat.com>2008-04-17 15:44:16 -0400
commitf08048e94564d009b19038cfbdd800aa83e79c7f (patch)
tree4afa7e4fff9ec716e9acbe746a464cda5daec063 /drivers/ata/pata_ali.c
parentb558edddb1c42c70a30cfe494984d4be409f7b2b (diff)
libata: PCI device should be powered up before being accessed
PCI device should be powered up or powered up before its PCI regsiters are accessed. Although PCI configuration register access is allowed in D3hot, PCI device is free to reset its status when transiting from D3hot to D0 causing configuration data to change. Many libata SFF drivers which use ata_pci_init_one() read and update configuration registers before calling ata_pci_init_one() which enables the PCI device. Also, in resume paths, some drivers access registers without resuming the PCI device. This patch adds a call to pcim_enable_device() in init path if register is accessed before calling ata_pci_init_one() and make resume paths first resume PCI devices, access PCI configuration regiters then resume ATA host. While at it... * cmd640 was strange in that it set ->resume even when CONFIG_PM is not. This is by-product of minimal build fix. Updated. * In cs5530, Don't BUG() on reinit failure. Just whine and fail resume. Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'drivers/ata/pata_ali.c')
-rw-r--r--drivers/ata/pata_ali.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/drivers/ata/pata_ali.c b/drivers/ata/pata_ali.c
index 511a830b6256..3814aebefb2d 100644
--- a/drivers/ata/pata_ali.c
+++ b/drivers/ata/pata_ali.c
@@ -637,6 +637,11 @@ static int ali_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
637 const struct ata_port_info *ppi[] = { NULL, NULL }; 637 const struct ata_port_info *ppi[] = { NULL, NULL };
638 u8 tmp; 638 u8 tmp;
639 struct pci_dev *isa_bridge; 639 struct pci_dev *isa_bridge;
640 int rc;
641
642 rc = pcim_enable_device(pdev);
643 if (rc)
644 return rc;
640 645
641 /* 646 /*
642 * The chipset revision selects the driver operations and 647 * The chipset revision selects the driver operations and
@@ -672,8 +677,15 @@ static int ali_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
672#ifdef CONFIG_PM 677#ifdef CONFIG_PM
673static int ali_reinit_one(struct pci_dev *pdev) 678static int ali_reinit_one(struct pci_dev *pdev)
674{ 679{
680 struct ata_host *host = dev_get_drvdata(&pdev->dev);
681 int rc;
682
683 rc = ata_pci_device_do_resume(pdev);
684 if (rc)
685 return rc;
675 ali_init_chipset(pdev); 686 ali_init_chipset(pdev);
676 return ata_pci_device_resume(pdev); 687 ata_host_resume(host);
688 return 0;
677} 689}
678#endif 690#endif
679 691