aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/ahci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r--drivers/ata/ahci.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index 9f3c591c721..b615390b6b8 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -827,8 +827,14 @@ static int ahci_reset_controller(struct ata_host *host)
827 void __iomem *mmio = host->iomap[AHCI_PCI_BAR]; 827 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
828 u32 tmp; 828 u32 tmp;
829 829
830 /* global controller reset */ 830 /* we must be in AHCI mode, before using anything
831 * AHCI-specific, such as HOST_RESET.
832 */
831 tmp = readl(mmio + HOST_CTL); 833 tmp = readl(mmio + HOST_CTL);
834 if (!(tmp & HOST_AHCI_EN))
835 writel(tmp | HOST_AHCI_EN, mmio + HOST_CTL);
836
837 /* global controller reset */
832 if ((tmp & HOST_RESET) == 0) { 838 if ((tmp & HOST_RESET) == 0) {
833 writel(tmp | HOST_RESET, mmio + HOST_CTL); 839 writel(tmp | HOST_RESET, mmio + HOST_CTL);
834 readl(mmio + HOST_CTL); /* flush */ 840 readl(mmio + HOST_CTL); /* flush */