Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ahci.c - AHCI SATA support |
| 3 | * |
Jeff Garzik | af36d7f | 2005-08-28 20:18:39 -0400 | [diff] [blame] | 4 | * Maintained by: Jeff Garzik <jgarzik@pobox.com> |
| 5 | * Please ALWAYS copy linux-ide@vger.kernel.org |
| 6 | * on emails. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Jeff Garzik | af36d7f | 2005-08-28 20:18:39 -0400 | [diff] [blame] | 8 | * Copyright 2004-2005 Red Hat, Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * |
Jeff Garzik | af36d7f | 2005-08-28 20:18:39 -0400 | [diff] [blame] | 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2, or (at your option) |
| 14 | * any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; see the file COPYING. If not, write to |
| 23 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 24 | * |
| 25 | * |
| 26 | * libata documentation is available via 'make {ps|pdf}docs', |
| 27 | * as Documentation/DocBook/libata.* |
| 28 | * |
| 29 | * AHCI hardware documentation: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf |
Jeff Garzik | af36d7f | 2005-08-28 20:18:39 -0400 | [diff] [blame] | 31 | * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | * |
| 33 | */ |
| 34 | |
| 35 | #include <linux/kernel.h> |
| 36 | #include <linux/module.h> |
| 37 | #include <linux/pci.h> |
| 38 | #include <linux/init.h> |
| 39 | #include <linux/blkdev.h> |
| 40 | #include <linux/delay.h> |
| 41 | #include <linux/interrupt.h> |
domen@coderock.org | 87507cf | 2005-04-08 09:53:06 +0200 | [diff] [blame] | 42 | #include <linux/dma-mapping.h> |
Jeff Garzik | a9524a7 | 2005-10-30 14:39:11 -0500 | [diff] [blame] | 43 | #include <linux/device.h> |
Tejun Heo | edc9305 | 2007-10-25 14:59:16 +0900 | [diff] [blame] | 44 | #include <linux/dmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <scsi/scsi_host.h> |
Jeff Garzik | 193515d | 2005-11-07 00:59:37 -0500 | [diff] [blame] | 46 | #include <scsi/scsi_cmnd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/libata.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | #define DRV_NAME "ahci" |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 50 | #define DRV_VERSION "3.0" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 52 | static int ahci_enable_alpm(struct ata_port *ap, |
| 53 | enum link_pm policy); |
| 54 | static void ahci_disable_alpm(struct ata_port *ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | enum { |
| 57 | AHCI_PCI_BAR = 5, |
Tejun Heo | 648a88b | 2006-11-09 15:08:40 +0900 | [diff] [blame] | 58 | AHCI_MAX_PORTS = 32, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | AHCI_MAX_SG = 168, /* hardware max is 64K */ |
| 60 | AHCI_DMA_BOUNDARY = 0xffffffff, |
Jens Axboe | be5d821 | 2007-05-22 09:45:39 +0200 | [diff] [blame] | 61 | AHCI_USE_CLUSTERING = 1, |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 62 | AHCI_MAX_CMDS = 32, |
Tejun Heo | dd410ff | 2006-05-15 21:03:50 +0900 | [diff] [blame] | 63 | AHCI_CMD_SZ = 32, |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 64 | AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | AHCI_RX_FIS_SZ = 256, |
Jeff Garzik | a0ea732 | 2005-06-04 01:13:15 -0400 | [diff] [blame] | 66 | AHCI_CMD_TBL_CDB = 0x40, |
Tejun Heo | dd410ff | 2006-05-15 21:03:50 +0900 | [diff] [blame] | 67 | AHCI_CMD_TBL_HDR_SZ = 0x80, |
| 68 | AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16), |
| 69 | AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS, |
| 70 | AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | AHCI_RX_FIS_SZ, |
| 72 | AHCI_IRQ_ON_SG = (1 << 31), |
| 73 | AHCI_CMD_ATAPI = (1 << 5), |
| 74 | AHCI_CMD_WRITE = (1 << 6), |
Tejun Heo | 4b10e55 | 2006-03-12 11:25:27 +0900 | [diff] [blame] | 75 | AHCI_CMD_PREFETCH = (1 << 7), |
Tejun Heo | 22b4998 | 2006-01-23 21:38:44 +0900 | [diff] [blame] | 76 | AHCI_CMD_RESET = (1 << 8), |
| 77 | AHCI_CMD_CLR_BUSY = (1 << 10), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */ |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 80 | RX_FIS_SDB = 0x58, /* offset of SDB FIS data */ |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 81 | RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | board_ahci = 0, |
Tejun Heo | 7a234af | 2007-09-03 12:44:57 +0900 | [diff] [blame] | 84 | board_ahci_vt8251 = 1, |
| 85 | board_ahci_ign_iferr = 2, |
| 86 | board_ahci_sb600 = 3, |
| 87 | board_ahci_mv = 4, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | /* global controller registers */ |
| 90 | HOST_CAP = 0x00, /* host capabilities */ |
| 91 | HOST_CTL = 0x04, /* global host control */ |
| 92 | HOST_IRQ_STAT = 0x08, /* interrupt status */ |
| 93 | HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */ |
| 94 | HOST_VERSION = 0x10, /* AHCI spec. version compliancy */ |
| 95 | |
| 96 | /* HOST_CTL bits */ |
| 97 | HOST_RESET = (1 << 0), /* reset controller; self-clear */ |
| 98 | HOST_IRQ_EN = (1 << 1), /* global IRQ enable */ |
| 99 | HOST_AHCI_EN = (1 << 31), /* AHCI enabled */ |
| 100 | |
| 101 | /* HOST_CAP bits */ |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 102 | HOST_CAP_SSC = (1 << 14), /* Slumber capable */ |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 103 | HOST_CAP_PMP = (1 << 17), /* Port Multiplier support */ |
Tejun Heo | 22b4998 | 2006-01-23 21:38:44 +0900 | [diff] [blame] | 104 | HOST_CAP_CLO = (1 << 24), /* Command List Override support */ |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 105 | HOST_CAP_ALPM = (1 << 26), /* Aggressive Link PM support */ |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 106 | HOST_CAP_SSS = (1 << 27), /* Staggered Spin-up */ |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 107 | HOST_CAP_SNTF = (1 << 29), /* SNotification register */ |
Tejun Heo | 979db80 | 2006-05-15 21:03:52 +0900 | [diff] [blame] | 108 | HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */ |
Tejun Heo | dd410ff | 2006-05-15 21:03:50 +0900 | [diff] [blame] | 109 | HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | /* registers for each SATA port */ |
| 112 | PORT_LST_ADDR = 0x00, /* command list DMA addr */ |
| 113 | PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */ |
| 114 | PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */ |
| 115 | PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */ |
| 116 | PORT_IRQ_STAT = 0x10, /* interrupt status */ |
| 117 | PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */ |
| 118 | PORT_CMD = 0x18, /* port command */ |
| 119 | PORT_TFDATA = 0x20, /* taskfile data */ |
| 120 | PORT_SIG = 0x24, /* device TF signature */ |
| 121 | PORT_CMD_ISSUE = 0x38, /* command issue */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */ |
| 123 | PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */ |
| 124 | PORT_SCR_ERR = 0x30, /* SATA phy register: SError */ |
| 125 | PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */ |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 126 | PORT_SCR_NTF = 0x3c, /* SATA phy register: SNotification */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | /* PORT_IRQ_{STAT,MASK} bits */ |
| 129 | PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */ |
| 130 | PORT_IRQ_TF_ERR = (1 << 30), /* task file error */ |
| 131 | PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */ |
| 132 | PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */ |
| 133 | PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */ |
| 134 | PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */ |
| 135 | PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */ |
| 136 | PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */ |
| 137 | |
| 138 | PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */ |
| 139 | PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */ |
| 140 | PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */ |
| 141 | PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */ |
| 142 | PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */ |
| 143 | PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */ |
| 144 | PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */ |
| 145 | PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */ |
| 146 | PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */ |
| 147 | |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 148 | PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR | |
| 149 | PORT_IRQ_IF_ERR | |
| 150 | PORT_IRQ_CONNECT | |
Tejun Heo | 4296971 | 2006-05-31 18:28:18 +0900 | [diff] [blame] | 151 | PORT_IRQ_PHYRDY | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 152 | PORT_IRQ_UNK_FIS | |
| 153 | PORT_IRQ_BAD_PMP, |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 154 | PORT_IRQ_ERROR = PORT_IRQ_FREEZE | |
| 155 | PORT_IRQ_TF_ERR | |
| 156 | PORT_IRQ_HBUS_DATA_ERR, |
| 157 | DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE | |
| 158 | PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS | |
| 159 | PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | /* PORT_CMD bits */ |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 162 | PORT_CMD_ASP = (1 << 27), /* Aggressive Slumber/Partial */ |
| 163 | PORT_CMD_ALPE = (1 << 26), /* Aggressive Link PM enable */ |
Jeff Garzik | 02eaa66 | 2005-11-12 01:32:19 -0500 | [diff] [blame] | 164 | PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */ |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 165 | PORT_CMD_PMP = (1 << 17), /* PMP attached */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */ |
| 167 | PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */ |
| 168 | PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */ |
Tejun Heo | 22b4998 | 2006-01-23 21:38:44 +0900 | [diff] [blame] | 169 | PORT_CMD_CLO = (1 << 3), /* Command list override */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | PORT_CMD_POWER_ON = (1 << 2), /* Power up device */ |
| 171 | PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */ |
| 172 | PORT_CMD_START = (1 << 0), /* Enable port DMA engine */ |
| 173 | |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 174 | PORT_CMD_ICC_MASK = (0xf << 28), /* i/f ICC state mask */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */ |
| 176 | PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */ |
| 177 | PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */ |
Jeff Garzik | 4b0060f | 2005-06-04 00:50:22 -0400 | [diff] [blame] | 178 | |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 179 | /* hpriv->flags bits */ |
| 180 | AHCI_HFLAG_NO_NCQ = (1 << 0), |
| 181 | AHCI_HFLAG_IGN_IRQ_IF_ERR = (1 << 1), /* ignore IRQ_IF_ERR */ |
| 182 | AHCI_HFLAG_IGN_SERR_INTERNAL = (1 << 2), /* ignore SERR_INTERNAL */ |
| 183 | AHCI_HFLAG_32BIT_ONLY = (1 << 3), /* force 32bit */ |
| 184 | AHCI_HFLAG_MV_PATA = (1 << 4), /* PATA port */ |
| 185 | AHCI_HFLAG_NO_MSI = (1 << 5), /* no PCI MSI */ |
Tejun Heo | 6949b91 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 186 | AHCI_HFLAG_NO_PMP = (1 << 6), /* no PMP */ |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 187 | AHCI_HFLAG_NO_HOTPLUG = (1 << 7), /* ignore PxSERR.DIAG.N */ |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 188 | |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 189 | /* ap->flags bits */ |
Tejun Heo | 1188c0d | 2007-04-23 02:41:05 +0900 | [diff] [blame] | 190 | |
| 191 | AHCI_FLAG_COMMON = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | |
| 192 | ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA | |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 193 | ATA_FLAG_ACPI_SATA | ATA_FLAG_AN | |
| 194 | ATA_FLAG_IPM, |
Tejun Heo | 0c88758 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 195 | AHCI_LFLAG_COMMON = ATA_LFLAG_SKIP_D2H_BSY, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | }; |
| 197 | |
| 198 | struct ahci_cmd_hdr { |
| 199 | u32 opts; |
| 200 | u32 status; |
| 201 | u32 tbl_addr; |
| 202 | u32 tbl_addr_hi; |
| 203 | u32 reserved[4]; |
| 204 | }; |
| 205 | |
| 206 | struct ahci_sg { |
| 207 | u32 addr; |
| 208 | u32 addr_hi; |
| 209 | u32 reserved; |
| 210 | u32 flags_size; |
| 211 | }; |
| 212 | |
| 213 | struct ahci_host_priv { |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 214 | unsigned int flags; /* AHCI_HFLAG_* */ |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 215 | u32 cap; /* cap to use */ |
| 216 | u32 port_map; /* port map to use */ |
| 217 | u32 saved_cap; /* saved initial cap */ |
| 218 | u32 saved_port_map; /* saved initial port_map */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | }; |
| 220 | |
| 221 | struct ahci_port_priv { |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 222 | struct ata_link *active_link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | struct ahci_cmd_hdr *cmd_slot; |
| 224 | dma_addr_t cmd_slot_dma; |
| 225 | void *cmd_tbl; |
| 226 | dma_addr_t cmd_tbl_dma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | void *rx_fis; |
| 228 | dma_addr_t rx_fis_dma; |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 229 | /* for NCQ spurious interrupt analysis */ |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 230 | unsigned int ncq_saw_d2h:1; |
| 231 | unsigned int ncq_saw_dmas:1; |
Tejun Heo | afb2d55 | 2007-02-27 13:24:19 +0900 | [diff] [blame] | 232 | unsigned int ncq_saw_sdb:1; |
Kristen Carlson Accardi | a738492 | 2007-08-09 14:23:41 -0700 | [diff] [blame] | 233 | u32 intr_mask; /* interrupts to enable */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | }; |
| 235 | |
Tejun Heo | da3dbb1 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 236 | static int ahci_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val); |
| 237 | static int ahci_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val); |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 238 | static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent); |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 239 | static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | static void ahci_irq_clear(struct ata_port *ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | static int ahci_port_start(struct ata_port *ap); |
| 242 | static void ahci_port_stop(struct ata_port *ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf); |
| 244 | static void ahci_qc_prep(struct ata_queued_cmd *qc); |
| 245 | static u8 ahci_check_status(struct ata_port *ap); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 246 | static void ahci_freeze(struct ata_port *ap); |
| 247 | static void ahci_thaw(struct ata_port *ap); |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 248 | static void ahci_pmp_attach(struct ata_port *ap); |
| 249 | static void ahci_pmp_detach(struct ata_port *ap); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 250 | static void ahci_error_handler(struct ata_port *ap); |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 251 | static void ahci_vt8251_error_handler(struct ata_port *ap); |
Tejun Heo | edc9305 | 2007-10-25 14:59:16 +0900 | [diff] [blame] | 252 | static void ahci_p5wdh_error_handler(struct ata_port *ap); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 253 | static void ahci_post_internal_cmd(struct ata_queued_cmd *qc); |
Jeff Garzik | df69c9c | 2007-05-26 20:46:51 -0400 | [diff] [blame] | 254 | static int ahci_port_resume(struct ata_port *ap); |
Jeff Garzik | dab632e | 2007-05-28 08:33:01 -0400 | [diff] [blame] | 255 | static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl); |
| 256 | static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag, |
| 257 | u32 opts); |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 258 | #ifdef CONFIG_PM |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 259 | static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg); |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 260 | static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg); |
| 261 | static int ahci_pci_device_resume(struct pci_dev *pdev); |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 262 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 264 | static struct class_device_attribute *ahci_shost_attrs[] = { |
| 265 | &class_device_attr_link_power_management_policy, |
| 266 | NULL |
| 267 | }; |
| 268 | |
Jeff Garzik | 193515d | 2005-11-07 00:59:37 -0500 | [diff] [blame] | 269 | static struct scsi_host_template ahci_sht = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | .module = THIS_MODULE, |
| 271 | .name = DRV_NAME, |
| 272 | .ioctl = ata_scsi_ioctl, |
| 273 | .queuecommand = ata_scsi_queuecmd, |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 274 | .change_queue_depth = ata_scsi_change_queue_depth, |
| 275 | .can_queue = AHCI_MAX_CMDS - 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | .this_id = ATA_SHT_THIS_ID, |
| 277 | .sg_tablesize = AHCI_MAX_SG, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, |
| 279 | .emulated = ATA_SHT_EMULATED, |
| 280 | .use_clustering = AHCI_USE_CLUSTERING, |
| 281 | .proc_name = DRV_NAME, |
| 282 | .dma_boundary = AHCI_DMA_BOUNDARY, |
| 283 | .slave_configure = ata_scsi_slave_config, |
Tejun Heo | ccf68c3 | 2006-05-31 18:28:09 +0900 | [diff] [blame] | 284 | .slave_destroy = ata_scsi_slave_destroy, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | .bios_param = ata_std_bios_param, |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 286 | .shost_attrs = ahci_shost_attrs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | }; |
| 288 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 289 | static const struct ata_port_operations ahci_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | .check_status = ahci_check_status, |
| 291 | .check_altstatus = ahci_check_status, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | .dev_select = ata_noop_dev_select, |
| 293 | |
| 294 | .tf_read = ahci_tf_read, |
| 295 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 296 | .qc_defer = sata_pmp_qc_defer_cmd_switch, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | .qc_prep = ahci_qc_prep, |
| 298 | .qc_issue = ahci_qc_issue, |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | .irq_clear = ahci_irq_clear, |
| 301 | |
| 302 | .scr_read = ahci_scr_read, |
| 303 | .scr_write = ahci_scr_write, |
| 304 | |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 305 | .freeze = ahci_freeze, |
| 306 | .thaw = ahci_thaw, |
| 307 | |
| 308 | .error_handler = ahci_error_handler, |
| 309 | .post_internal_cmd = ahci_post_internal_cmd, |
| 310 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 311 | .pmp_attach = ahci_pmp_attach, |
| 312 | .pmp_detach = ahci_pmp_detach, |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 313 | |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 314 | #ifdef CONFIG_PM |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 315 | .port_suspend = ahci_port_suspend, |
| 316 | .port_resume = ahci_port_resume, |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 317 | #endif |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 318 | .enable_pm = ahci_enable_alpm, |
| 319 | .disable_pm = ahci_disable_alpm, |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | .port_start = ahci_port_start, |
| 322 | .port_stop = ahci_port_stop, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | }; |
| 324 | |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 325 | static const struct ata_port_operations ahci_vt8251_ops = { |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 326 | .check_status = ahci_check_status, |
| 327 | .check_altstatus = ahci_check_status, |
| 328 | .dev_select = ata_noop_dev_select, |
| 329 | |
| 330 | .tf_read = ahci_tf_read, |
| 331 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 332 | .qc_defer = sata_pmp_qc_defer_cmd_switch, |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 333 | .qc_prep = ahci_qc_prep, |
| 334 | .qc_issue = ahci_qc_issue, |
| 335 | |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 336 | .irq_clear = ahci_irq_clear, |
| 337 | |
| 338 | .scr_read = ahci_scr_read, |
| 339 | .scr_write = ahci_scr_write, |
| 340 | |
| 341 | .freeze = ahci_freeze, |
| 342 | .thaw = ahci_thaw, |
| 343 | |
| 344 | .error_handler = ahci_vt8251_error_handler, |
| 345 | .post_internal_cmd = ahci_post_internal_cmd, |
| 346 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 347 | .pmp_attach = ahci_pmp_attach, |
| 348 | .pmp_detach = ahci_pmp_detach, |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 349 | |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 350 | #ifdef CONFIG_PM |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 351 | .port_suspend = ahci_port_suspend, |
| 352 | .port_resume = ahci_port_resume, |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 353 | #endif |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 354 | |
| 355 | .port_start = ahci_port_start, |
| 356 | .port_stop = ahci_port_stop, |
| 357 | }; |
| 358 | |
Tejun Heo | edc9305 | 2007-10-25 14:59:16 +0900 | [diff] [blame] | 359 | static const struct ata_port_operations ahci_p5wdh_ops = { |
| 360 | .check_status = ahci_check_status, |
| 361 | .check_altstatus = ahci_check_status, |
| 362 | .dev_select = ata_noop_dev_select, |
| 363 | |
| 364 | .tf_read = ahci_tf_read, |
| 365 | |
| 366 | .qc_defer = sata_pmp_qc_defer_cmd_switch, |
| 367 | .qc_prep = ahci_qc_prep, |
| 368 | .qc_issue = ahci_qc_issue, |
| 369 | |
| 370 | .irq_clear = ahci_irq_clear, |
| 371 | |
| 372 | .scr_read = ahci_scr_read, |
| 373 | .scr_write = ahci_scr_write, |
| 374 | |
| 375 | .freeze = ahci_freeze, |
| 376 | .thaw = ahci_thaw, |
| 377 | |
| 378 | .error_handler = ahci_p5wdh_error_handler, |
| 379 | .post_internal_cmd = ahci_post_internal_cmd, |
| 380 | |
| 381 | .pmp_attach = ahci_pmp_attach, |
| 382 | .pmp_detach = ahci_pmp_detach, |
| 383 | |
| 384 | #ifdef CONFIG_PM |
| 385 | .port_suspend = ahci_port_suspend, |
| 386 | .port_resume = ahci_port_resume, |
| 387 | #endif |
| 388 | |
| 389 | .port_start = ahci_port_start, |
| 390 | .port_stop = ahci_port_stop, |
| 391 | }; |
| 392 | |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 393 | #define AHCI_HFLAGS(flags) .private_data = (void *)(flags) |
| 394 | |
Arjan van de Ven | 98ac62d | 2005-11-28 10:06:23 +0100 | [diff] [blame] | 395 | static const struct ata_port_info ahci_port_info[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | /* board_ahci */ |
| 397 | { |
Tejun Heo | 1188c0d | 2007-04-23 02:41:05 +0900 | [diff] [blame] | 398 | .flags = AHCI_FLAG_COMMON, |
Tejun Heo | 0c88758 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 399 | .link_flags = AHCI_LFLAG_COMMON, |
Brett Russ | 7da7931 | 2005-09-01 21:53:34 -0400 | [diff] [blame] | 400 | .pio_mask = 0x1f, /* pio0-4 */ |
Jeff Garzik | 469248a | 2007-07-08 01:13:16 -0400 | [diff] [blame] | 401 | .udma_mask = ATA_UDMA6, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | .port_ops = &ahci_ops, |
| 403 | }, |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 404 | /* board_ahci_vt8251 */ |
| 405 | { |
Tejun Heo | 6949b91 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 406 | AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP), |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 407 | .flags = AHCI_FLAG_COMMON, |
Tejun Heo | 0c88758 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 408 | .link_flags = AHCI_LFLAG_COMMON | ATA_LFLAG_HRST_TO_RESUME, |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 409 | .pio_mask = 0x1f, /* pio0-4 */ |
Jeff Garzik | 469248a | 2007-07-08 01:13:16 -0400 | [diff] [blame] | 410 | .udma_mask = ATA_UDMA6, |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 411 | .port_ops = &ahci_vt8251_ops, |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 412 | }, |
Tejun Heo | 4166955 | 2006-11-29 11:33:14 +0900 | [diff] [blame] | 413 | /* board_ahci_ign_iferr */ |
| 414 | { |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 415 | AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR), |
| 416 | .flags = AHCI_FLAG_COMMON, |
Tejun Heo | 0c88758 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 417 | .link_flags = AHCI_LFLAG_COMMON, |
Tejun Heo | 4166955 | 2006-11-29 11:33:14 +0900 | [diff] [blame] | 418 | .pio_mask = 0x1f, /* pio0-4 */ |
Jeff Garzik | 469248a | 2007-07-08 01:13:16 -0400 | [diff] [blame] | 419 | .udma_mask = ATA_UDMA6, |
Tejun Heo | 4166955 | 2006-11-29 11:33:14 +0900 | [diff] [blame] | 420 | .port_ops = &ahci_ops, |
| 421 | }, |
Conke Hu | 55a6160 | 2007-03-27 18:33:05 +0800 | [diff] [blame] | 422 | /* board_ahci_sb600 */ |
| 423 | { |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 424 | AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL | |
Tejun Heo | 6949b91 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 425 | AHCI_HFLAG_32BIT_ONLY | AHCI_HFLAG_NO_PMP), |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 426 | .flags = AHCI_FLAG_COMMON, |
Tejun Heo | 0c88758 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 427 | .link_flags = AHCI_LFLAG_COMMON, |
Conke Hu | 55a6160 | 2007-03-27 18:33:05 +0800 | [diff] [blame] | 428 | .pio_mask = 0x1f, /* pio0-4 */ |
Jeff Garzik | 469248a | 2007-07-08 01:13:16 -0400 | [diff] [blame] | 429 | .udma_mask = ATA_UDMA6, |
Conke Hu | 55a6160 | 2007-03-27 18:33:05 +0800 | [diff] [blame] | 430 | .port_ops = &ahci_ops, |
| 431 | }, |
Jeff Garzik | cd70c26 | 2007-07-08 02:29:42 -0400 | [diff] [blame] | 432 | /* board_ahci_mv */ |
| 433 | { |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 434 | AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI | |
| 435 | AHCI_HFLAG_MV_PATA), |
Jeff Garzik | cd70c26 | 2007-07-08 02:29:42 -0400 | [diff] [blame] | 436 | .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 437 | ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA, |
Tejun Heo | 0c88758 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 438 | .link_flags = AHCI_LFLAG_COMMON, |
Jeff Garzik | cd70c26 | 2007-07-08 02:29:42 -0400 | [diff] [blame] | 439 | .pio_mask = 0x1f, /* pio0-4 */ |
| 440 | .udma_mask = ATA_UDMA6, |
| 441 | .port_ops = &ahci_ops, |
| 442 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | }; |
| 444 | |
Jeff Garzik | 3b7d697 | 2005-11-10 11:04:11 -0500 | [diff] [blame] | 445 | static const struct pci_device_id ahci_pci_tbl[] = { |
Jeff Garzik | fe7fa31 | 2006-06-22 23:05:36 -0400 | [diff] [blame] | 446 | /* Intel */ |
Jeff Garzik | 54bb3a94 | 2006-09-27 22:20:11 -0400 | [diff] [blame] | 447 | { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */ |
| 448 | { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */ |
| 449 | { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */ |
| 450 | { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */ |
| 451 | { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */ |
Tejun Heo | 82490c0 | 2007-01-23 15:13:39 +0900 | [diff] [blame] | 452 | { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */ |
Jeff Garzik | 54bb3a94 | 2006-09-27 22:20:11 -0400 | [diff] [blame] | 453 | { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */ |
| 454 | { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */ |
| 455 | { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */ |
| 456 | { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */ |
Tejun Heo | 7a234af | 2007-09-03 12:44:57 +0900 | [diff] [blame] | 457 | { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */ |
| 458 | { PCI_VDEVICE(INTEL, 0x2822), board_ahci }, /* ICH8 */ |
| 459 | { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */ |
| 460 | { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */ |
| 461 | { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */ |
| 462 | { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */ |
| 463 | { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */ |
| 464 | { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */ |
| 465 | { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */ |
| 466 | { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */ |
| 467 | { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */ |
| 468 | { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */ |
| 469 | { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */ |
| 470 | { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */ |
| 471 | { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */ |
| 472 | { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */ |
| 473 | { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */ |
Jason Gaston | d4155e6 | 2007-09-20 17:35:00 -0400 | [diff] [blame] | 474 | { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */ |
| 475 | { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */ |
Jeff Garzik | fe7fa31 | 2006-06-22 23:05:36 -0400 | [diff] [blame] | 476 | |
Tejun Heo | e34bb37 | 2007-02-26 20:24:03 +0900 | [diff] [blame] | 477 | /* JMicron 360/1/3/5/6, match class to avoid IDE function */ |
| 478 | { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
| 479 | PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr }, |
Jeff Garzik | fe7fa31 | 2006-06-22 23:05:36 -0400 | [diff] [blame] | 480 | |
| 481 | /* ATI */ |
Conke Hu | c65ec1c | 2007-04-11 18:23:14 +0800 | [diff] [blame] | 482 | { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */ |
henry su | c69c089 | 2007-09-20 16:07:33 -0400 | [diff] [blame] | 483 | { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb600 }, /* ATI SB700/800 */ |
| 484 | { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb600 }, /* ATI SB700/800 */ |
| 485 | { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb600 }, /* ATI SB700/800 */ |
| 486 | { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb600 }, /* ATI SB700/800 */ |
| 487 | { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb600 }, /* ATI SB700/800 */ |
| 488 | { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb600 }, /* ATI SB700/800 */ |
Jeff Garzik | fe7fa31 | 2006-06-22 23:05:36 -0400 | [diff] [blame] | 489 | |
| 490 | /* VIA */ |
Jeff Garzik | 54bb3a94 | 2006-09-27 22:20:11 -0400 | [diff] [blame] | 491 | { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */ |
Tejun Heo | bf33554 | 2007-04-11 17:27:14 +0900 | [diff] [blame] | 492 | { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */ |
Jeff Garzik | fe7fa31 | 2006-06-22 23:05:36 -0400 | [diff] [blame] | 493 | |
| 494 | /* NVIDIA */ |
Jeff Garzik | 54bb3a94 | 2006-09-27 22:20:11 -0400 | [diff] [blame] | 495 | { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci }, /* MCP65 */ |
| 496 | { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci }, /* MCP65 */ |
| 497 | { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci }, /* MCP65 */ |
| 498 | { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci }, /* MCP65 */ |
Peer Chen | 6fbf5ba | 2006-12-20 14:18:00 -0500 | [diff] [blame] | 499 | { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci }, /* MCP65 */ |
| 500 | { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci }, /* MCP65 */ |
| 501 | { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci }, /* MCP65 */ |
| 502 | { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci }, /* MCP65 */ |
| 503 | { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci }, /* MCP67 */ |
| 504 | { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci }, /* MCP67 */ |
| 505 | { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci }, /* MCP67 */ |
| 506 | { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci }, /* MCP67 */ |
Peer Chen | 895663c | 2006-11-02 17:59:46 -0500 | [diff] [blame] | 507 | { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci }, /* MCP67 */ |
| 508 | { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci }, /* MCP67 */ |
| 509 | { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci }, /* MCP67 */ |
| 510 | { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci }, /* MCP67 */ |
| 511 | { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci }, /* MCP67 */ |
| 512 | { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci }, /* MCP67 */ |
| 513 | { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci }, /* MCP67 */ |
| 514 | { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci }, /* MCP67 */ |
Peer Chen | 0522b28 | 2007-06-07 18:05:12 +0800 | [diff] [blame] | 515 | { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci }, /* MCP73 */ |
| 516 | { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci }, /* MCP73 */ |
| 517 | { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci }, /* MCP73 */ |
| 518 | { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci }, /* MCP73 */ |
| 519 | { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci }, /* MCP73 */ |
| 520 | { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci }, /* MCP73 */ |
| 521 | { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci }, /* MCP73 */ |
| 522 | { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci }, /* MCP73 */ |
| 523 | { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci }, /* MCP73 */ |
| 524 | { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci }, /* MCP73 */ |
| 525 | { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci }, /* MCP73 */ |
| 526 | { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci }, /* MCP73 */ |
| 527 | { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */ |
| 528 | { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */ |
| 529 | { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */ |
| 530 | { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */ |
| 531 | { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */ |
| 532 | { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */ |
| 533 | { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */ |
| 534 | { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */ |
| 535 | { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */ |
| 536 | { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */ |
| 537 | { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */ |
| 538 | { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */ |
peerchen | 6ba8695 | 2007-12-03 22:20:37 +0800 | [diff] [blame] | 539 | { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */ |
| 540 | { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */ |
| 541 | { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */ |
| 542 | { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */ |
Peer Chen | 7100819 | 2007-09-24 10:16:25 +0800 | [diff] [blame] | 543 | { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */ |
| 544 | { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */ |
| 545 | { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */ |
| 546 | { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */ |
| 547 | { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */ |
| 548 | { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */ |
| 549 | { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */ |
| 550 | { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */ |
Jeff Garzik | fe7fa31 | 2006-06-22 23:05:36 -0400 | [diff] [blame] | 551 | |
Jeff Garzik | 95916ed | 2006-07-29 04:10:14 -0400 | [diff] [blame] | 552 | /* SiS */ |
Jeff Garzik | 54bb3a94 | 2006-09-27 22:20:11 -0400 | [diff] [blame] | 553 | { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */ |
| 554 | { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 966 */ |
| 555 | { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */ |
Jeff Garzik | 95916ed | 2006-07-29 04:10:14 -0400 | [diff] [blame] | 556 | |
Jeff Garzik | cd70c26 | 2007-07-08 02:29:42 -0400 | [diff] [blame] | 557 | /* Marvell */ |
| 558 | { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */ |
| 559 | |
Jeff Garzik | 415ae2b | 2006-11-01 05:10:42 -0500 | [diff] [blame] | 560 | /* Generic, PCI class code for AHCI */ |
| 561 | { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
Conke Hu | c9f8947 | 2007-01-09 05:32:51 -0500 | [diff] [blame] | 562 | PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci }, |
Jeff Garzik | 415ae2b | 2006-11-01 05:10:42 -0500 | [diff] [blame] | 563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | { } /* terminate list */ |
| 565 | }; |
| 566 | |
| 567 | |
| 568 | static struct pci_driver ahci_pci_driver = { |
| 569 | .name = DRV_NAME, |
| 570 | .id_table = ahci_pci_tbl, |
| 571 | .probe = ahci_init_one, |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 572 | .remove = ata_pci_remove_one, |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 573 | #ifdef CONFIG_PM |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 574 | .suspend = ahci_pci_device_suspend, |
| 575 | .resume = ahci_pci_device_resume, |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 576 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | }; |
| 578 | |
| 579 | |
Tejun Heo | 98fa4b6 | 2006-11-02 12:17:23 +0900 | [diff] [blame] | 580 | static inline int ahci_nr_ports(u32 cap) |
| 581 | { |
| 582 | return (cap & 0x1f) + 1; |
| 583 | } |
| 584 | |
Jeff Garzik | dab632e | 2007-05-28 08:33:01 -0400 | [diff] [blame] | 585 | static inline void __iomem *__ahci_port_base(struct ata_host *host, |
| 586 | unsigned int port_no) |
| 587 | { |
| 588 | void __iomem *mmio = host->iomap[AHCI_PCI_BAR]; |
| 589 | |
| 590 | return mmio + 0x100 + (port_no * 0x80); |
| 591 | } |
| 592 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 593 | static inline void __iomem *ahci_port_base(struct ata_port *ap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | { |
Jeff Garzik | dab632e | 2007-05-28 08:33:01 -0400 | [diff] [blame] | 595 | return __ahci_port_base(ap->host, ap->port_no); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | } |
| 597 | |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 598 | /** |
| 599 | * ahci_save_initial_config - Save and fixup initial config values |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 600 | * @pdev: target PCI device |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 601 | * @hpriv: host private area to store config values |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 602 | * |
| 603 | * Some registers containing configuration info might be setup by |
| 604 | * BIOS and might be cleared on reset. This function saves the |
| 605 | * initial values of those registers into @hpriv such that they |
| 606 | * can be restored after controller reset. |
| 607 | * |
| 608 | * If inconsistent, config values are fixed up by this function. |
| 609 | * |
| 610 | * LOCKING: |
| 611 | * None. |
| 612 | */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 613 | static void ahci_save_initial_config(struct pci_dev *pdev, |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 614 | struct ahci_host_priv *hpriv) |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 615 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 616 | void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR]; |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 617 | u32 cap, port_map; |
Tejun Heo | 17199b1 | 2007-03-18 22:26:53 +0900 | [diff] [blame] | 618 | int i; |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 619 | |
| 620 | /* Values prefixed with saved_ are written back to host after |
| 621 | * reset. Values without are used for driver operation. |
| 622 | */ |
| 623 | hpriv->saved_cap = cap = readl(mmio + HOST_CAP); |
| 624 | hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL); |
| 625 | |
Tejun Heo | 274c1fd | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 626 | /* some chips have errata preventing 64bit use */ |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 627 | if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) { |
Tejun Heo | c7a4215 | 2007-05-18 16:23:19 +0200 | [diff] [blame] | 628 | dev_printk(KERN_INFO, &pdev->dev, |
| 629 | "controller can't do 64bit DMA, forcing 32bit\n"); |
| 630 | cap &= ~HOST_CAP_64; |
| 631 | } |
| 632 | |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 633 | if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) { |
Tejun Heo | 274c1fd | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 634 | dev_printk(KERN_INFO, &pdev->dev, |
| 635 | "controller can't do NCQ, turning off CAP_NCQ\n"); |
| 636 | cap &= ~HOST_CAP_NCQ; |
| 637 | } |
| 638 | |
Tejun Heo | 6949b91 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 639 | if ((cap && HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) { |
| 640 | dev_printk(KERN_INFO, &pdev->dev, |
| 641 | "controller can't do PMP, turning off CAP_PMP\n"); |
| 642 | cap &= ~HOST_CAP_PMP; |
| 643 | } |
| 644 | |
Jeff Garzik | cd70c26 | 2007-07-08 02:29:42 -0400 | [diff] [blame] | 645 | /* |
| 646 | * Temporary Marvell 6145 hack: PATA port presence |
| 647 | * is asserted through the standard AHCI port |
| 648 | * presence register, as bit 4 (counting from 0) |
| 649 | */ |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 650 | if (hpriv->flags & AHCI_HFLAG_MV_PATA) { |
Jeff Garzik | cd70c26 | 2007-07-08 02:29:42 -0400 | [diff] [blame] | 651 | dev_printk(KERN_ERR, &pdev->dev, |
| 652 | "MV_AHCI HACK: port_map %x -> %x\n", |
| 653 | hpriv->port_map, |
| 654 | hpriv->port_map & 0xf); |
| 655 | |
| 656 | port_map &= 0xf; |
| 657 | } |
| 658 | |
Tejun Heo | 17199b1 | 2007-03-18 22:26:53 +0900 | [diff] [blame] | 659 | /* cross check port_map and cap.n_ports */ |
Tejun Heo | 7a234af | 2007-09-03 12:44:57 +0900 | [diff] [blame] | 660 | if (port_map) { |
Tejun Heo | 17199b1 | 2007-03-18 22:26:53 +0900 | [diff] [blame] | 661 | u32 tmp_port_map = port_map; |
| 662 | int n_ports = ahci_nr_ports(cap); |
| 663 | |
| 664 | for (i = 0; i < AHCI_MAX_PORTS && n_ports; i++) { |
| 665 | if (tmp_port_map & (1 << i)) { |
| 666 | n_ports--; |
| 667 | tmp_port_map &= ~(1 << i); |
| 668 | } |
| 669 | } |
| 670 | |
Tejun Heo | 7a234af | 2007-09-03 12:44:57 +0900 | [diff] [blame] | 671 | /* If n_ports and port_map are inconsistent, whine and |
| 672 | * clear port_map and let it be generated from n_ports. |
Tejun Heo | 17199b1 | 2007-03-18 22:26:53 +0900 | [diff] [blame] | 673 | */ |
Tejun Heo | 7a234af | 2007-09-03 12:44:57 +0900 | [diff] [blame] | 674 | if (n_ports || tmp_port_map) { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 675 | dev_printk(KERN_WARNING, &pdev->dev, |
Tejun Heo | 17199b1 | 2007-03-18 22:26:53 +0900 | [diff] [blame] | 676 | "nr_ports (%u) and implemented port map " |
Tejun Heo | 7a234af | 2007-09-03 12:44:57 +0900 | [diff] [blame] | 677 | "(0x%x) don't match, using nr_ports\n", |
Tejun Heo | 17199b1 | 2007-03-18 22:26:53 +0900 | [diff] [blame] | 678 | ahci_nr_ports(cap), port_map); |
Tejun Heo | 7a234af | 2007-09-03 12:44:57 +0900 | [diff] [blame] | 679 | port_map = 0; |
| 680 | } |
| 681 | } |
| 682 | |
| 683 | /* fabricate port_map from cap.nr_ports */ |
| 684 | if (!port_map) { |
Tejun Heo | 17199b1 | 2007-03-18 22:26:53 +0900 | [diff] [blame] | 685 | port_map = (1 << ahci_nr_ports(cap)) - 1; |
Tejun Heo | 7a234af | 2007-09-03 12:44:57 +0900 | [diff] [blame] | 686 | dev_printk(KERN_WARNING, &pdev->dev, |
| 687 | "forcing PORTS_IMPL to 0x%x\n", port_map); |
| 688 | |
| 689 | /* write the fixed up value to the PI register */ |
| 690 | hpriv->saved_port_map = port_map; |
Tejun Heo | 17199b1 | 2007-03-18 22:26:53 +0900 | [diff] [blame] | 691 | } |
| 692 | |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 693 | /* record values to use during operation */ |
| 694 | hpriv->cap = cap; |
| 695 | hpriv->port_map = port_map; |
| 696 | } |
| 697 | |
| 698 | /** |
| 699 | * ahci_restore_initial_config - Restore initial config |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 700 | * @host: target ATA host |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 701 | * |
| 702 | * Restore initial config stored by ahci_save_initial_config(). |
| 703 | * |
| 704 | * LOCKING: |
| 705 | * None. |
| 706 | */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 707 | static void ahci_restore_initial_config(struct ata_host *host) |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 708 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 709 | struct ahci_host_priv *hpriv = host->private_data; |
| 710 | void __iomem *mmio = host->iomap[AHCI_PCI_BAR]; |
| 711 | |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 712 | writel(hpriv->saved_cap, mmio + HOST_CAP); |
| 713 | writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL); |
| 714 | (void) readl(mmio + HOST_PORTS_IMPL); /* flush */ |
| 715 | } |
| 716 | |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 717 | static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | { |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 719 | static const int offset[] = { |
| 720 | [SCR_STATUS] = PORT_SCR_STAT, |
| 721 | [SCR_CONTROL] = PORT_SCR_CTL, |
| 722 | [SCR_ERROR] = PORT_SCR_ERR, |
| 723 | [SCR_ACTIVE] = PORT_SCR_ACT, |
| 724 | [SCR_NOTIFICATION] = PORT_SCR_NTF, |
| 725 | }; |
| 726 | struct ahci_host_priv *hpriv = ap->host->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 728 | if (sc_reg < ARRAY_SIZE(offset) && |
| 729 | (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF))) |
| 730 | return offset[sc_reg]; |
Tejun Heo | da3dbb1 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 731 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | } |
| 733 | |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 734 | static int ahci_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | { |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 736 | void __iomem *port_mmio = ahci_port_base(ap); |
| 737 | int offset = ahci_scr_offset(ap, sc_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 739 | if (offset) { |
| 740 | *val = readl(port_mmio + offset); |
| 741 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | } |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 743 | return -EINVAL; |
| 744 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 746 | static int ahci_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val) |
| 747 | { |
| 748 | void __iomem *port_mmio = ahci_port_base(ap); |
| 749 | int offset = ahci_scr_offset(ap, sc_reg); |
| 750 | |
| 751 | if (offset) { |
| 752 | writel(val, port_mmio + offset); |
| 753 | return 0; |
| 754 | } |
| 755 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
| 757 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 758 | static void ahci_start_engine(struct ata_port *ap) |
Tejun Heo | 7c76d1e | 2005-12-19 22:36:34 +0900 | [diff] [blame] | 759 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 760 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 7c76d1e | 2005-12-19 22:36:34 +0900 | [diff] [blame] | 761 | u32 tmp; |
| 762 | |
Tejun Heo | d8fcd11 | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 763 | /* start DMA */ |
Tejun Heo | 9f59205 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 764 | tmp = readl(port_mmio + PORT_CMD); |
Tejun Heo | 7c76d1e | 2005-12-19 22:36:34 +0900 | [diff] [blame] | 765 | tmp |= PORT_CMD_START; |
| 766 | writel(tmp, port_mmio + PORT_CMD); |
| 767 | readl(port_mmio + PORT_CMD); /* flush */ |
| 768 | } |
| 769 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 770 | static int ahci_stop_engine(struct ata_port *ap) |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 771 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 772 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 773 | u32 tmp; |
| 774 | |
| 775 | tmp = readl(port_mmio + PORT_CMD); |
| 776 | |
Tejun Heo | d8fcd11 | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 777 | /* check if the HBA is idle */ |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 778 | if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0) |
| 779 | return 0; |
| 780 | |
Tejun Heo | d8fcd11 | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 781 | /* setting HBA to idle */ |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 782 | tmp &= ~PORT_CMD_START; |
| 783 | writel(tmp, port_mmio + PORT_CMD); |
| 784 | |
Tejun Heo | d8fcd11 | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 785 | /* wait for engine to stop. This could be as long as 500 msec */ |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 786 | tmp = ata_wait_register(port_mmio + PORT_CMD, |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 787 | PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500); |
Tejun Heo | d8fcd11 | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 788 | if (tmp & PORT_CMD_LIST_ON) |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 789 | return -EIO; |
| 790 | |
| 791 | return 0; |
| 792 | } |
| 793 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 794 | static void ahci_start_fis_rx(struct ata_port *ap) |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 795 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 796 | void __iomem *port_mmio = ahci_port_base(ap); |
| 797 | struct ahci_host_priv *hpriv = ap->host->private_data; |
| 798 | struct ahci_port_priv *pp = ap->private_data; |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 799 | u32 tmp; |
| 800 | |
| 801 | /* set FIS registers */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 802 | if (hpriv->cap & HOST_CAP_64) |
| 803 | writel((pp->cmd_slot_dma >> 16) >> 16, |
| 804 | port_mmio + PORT_LST_ADDR_HI); |
| 805 | writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 806 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 807 | if (hpriv->cap & HOST_CAP_64) |
| 808 | writel((pp->rx_fis_dma >> 16) >> 16, |
| 809 | port_mmio + PORT_FIS_ADDR_HI); |
| 810 | writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 811 | |
| 812 | /* enable FIS reception */ |
| 813 | tmp = readl(port_mmio + PORT_CMD); |
| 814 | tmp |= PORT_CMD_FIS_RX; |
| 815 | writel(tmp, port_mmio + PORT_CMD); |
| 816 | |
| 817 | /* flush */ |
| 818 | readl(port_mmio + PORT_CMD); |
| 819 | } |
| 820 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 821 | static int ahci_stop_fis_rx(struct ata_port *ap) |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 822 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 823 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 824 | u32 tmp; |
| 825 | |
| 826 | /* disable FIS reception */ |
| 827 | tmp = readl(port_mmio + PORT_CMD); |
| 828 | tmp &= ~PORT_CMD_FIS_RX; |
| 829 | writel(tmp, port_mmio + PORT_CMD); |
| 830 | |
| 831 | /* wait for completion, spec says 500ms, give it 1000 */ |
| 832 | tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON, |
| 833 | PORT_CMD_FIS_ON, 10, 1000); |
| 834 | if (tmp & PORT_CMD_FIS_ON) |
| 835 | return -EBUSY; |
| 836 | |
| 837 | return 0; |
| 838 | } |
| 839 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 840 | static void ahci_power_up(struct ata_port *ap) |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 841 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 842 | struct ahci_host_priv *hpriv = ap->host->private_data; |
| 843 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 844 | u32 cmd; |
| 845 | |
| 846 | cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK; |
| 847 | |
| 848 | /* spin up device */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 849 | if (hpriv->cap & HOST_CAP_SSS) { |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 850 | cmd |= PORT_CMD_SPIN_UP; |
| 851 | writel(cmd, port_mmio + PORT_CMD); |
| 852 | } |
| 853 | |
| 854 | /* wake up link */ |
| 855 | writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD); |
| 856 | } |
| 857 | |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 858 | static void ahci_disable_alpm(struct ata_port *ap) |
| 859 | { |
| 860 | struct ahci_host_priv *hpriv = ap->host->private_data; |
| 861 | void __iomem *port_mmio = ahci_port_base(ap); |
| 862 | u32 cmd; |
| 863 | struct ahci_port_priv *pp = ap->private_data; |
| 864 | |
| 865 | /* IPM bits should be disabled by libata-core */ |
| 866 | /* get the existing command bits */ |
| 867 | cmd = readl(port_mmio + PORT_CMD); |
| 868 | |
| 869 | /* disable ALPM and ASP */ |
| 870 | cmd &= ~PORT_CMD_ASP; |
| 871 | cmd &= ~PORT_CMD_ALPE; |
| 872 | |
| 873 | /* force the interface back to active */ |
| 874 | cmd |= PORT_CMD_ICC_ACTIVE; |
| 875 | |
| 876 | /* write out new cmd value */ |
| 877 | writel(cmd, port_mmio + PORT_CMD); |
| 878 | cmd = readl(port_mmio + PORT_CMD); |
| 879 | |
| 880 | /* wait 10ms to be sure we've come out of any low power state */ |
| 881 | msleep(10); |
| 882 | |
| 883 | /* clear out any PhyRdy stuff from interrupt status */ |
| 884 | writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT); |
| 885 | |
| 886 | /* go ahead and clean out PhyRdy Change from Serror too */ |
| 887 | ahci_scr_write(ap, SCR_ERROR, ((1 << 16) | (1 << 18))); |
| 888 | |
| 889 | /* |
| 890 | * Clear flag to indicate that we should ignore all PhyRdy |
| 891 | * state changes |
| 892 | */ |
| 893 | hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG; |
| 894 | |
| 895 | /* |
| 896 | * Enable interrupts on Phy Ready. |
| 897 | */ |
| 898 | pp->intr_mask |= PORT_IRQ_PHYRDY; |
| 899 | writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK); |
| 900 | |
| 901 | /* |
| 902 | * don't change the link pm policy - we can be called |
| 903 | * just to turn of link pm temporarily |
| 904 | */ |
| 905 | } |
| 906 | |
| 907 | static int ahci_enable_alpm(struct ata_port *ap, |
| 908 | enum link_pm policy) |
| 909 | { |
| 910 | struct ahci_host_priv *hpriv = ap->host->private_data; |
| 911 | void __iomem *port_mmio = ahci_port_base(ap); |
| 912 | u32 cmd; |
| 913 | struct ahci_port_priv *pp = ap->private_data; |
| 914 | u32 asp; |
| 915 | |
| 916 | /* Make sure the host is capable of link power management */ |
| 917 | if (!(hpriv->cap & HOST_CAP_ALPM)) |
| 918 | return -EINVAL; |
| 919 | |
| 920 | switch (policy) { |
| 921 | case MAX_PERFORMANCE: |
| 922 | case NOT_AVAILABLE: |
| 923 | /* |
| 924 | * if we came here with NOT_AVAILABLE, |
| 925 | * it just means this is the first time we |
| 926 | * have tried to enable - default to max performance, |
| 927 | * and let the user go to lower power modes on request. |
| 928 | */ |
| 929 | ahci_disable_alpm(ap); |
| 930 | return 0; |
| 931 | case MIN_POWER: |
| 932 | /* configure HBA to enter SLUMBER */ |
| 933 | asp = PORT_CMD_ASP; |
| 934 | break; |
| 935 | case MEDIUM_POWER: |
| 936 | /* configure HBA to enter PARTIAL */ |
| 937 | asp = 0; |
| 938 | break; |
| 939 | default: |
| 940 | return -EINVAL; |
| 941 | } |
| 942 | |
| 943 | /* |
| 944 | * Disable interrupts on Phy Ready. This keeps us from |
| 945 | * getting woken up due to spurious phy ready interrupts |
| 946 | * TBD - Hot plug should be done via polling now, is |
| 947 | * that even supported? |
| 948 | */ |
| 949 | pp->intr_mask &= ~PORT_IRQ_PHYRDY; |
| 950 | writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK); |
| 951 | |
| 952 | /* |
| 953 | * Set a flag to indicate that we should ignore all PhyRdy |
| 954 | * state changes since these can happen now whenever we |
| 955 | * change link state |
| 956 | */ |
| 957 | hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG; |
| 958 | |
| 959 | /* get the existing command bits */ |
| 960 | cmd = readl(port_mmio + PORT_CMD); |
| 961 | |
| 962 | /* |
| 963 | * Set ASP based on Policy |
| 964 | */ |
| 965 | cmd |= asp; |
| 966 | |
| 967 | /* |
| 968 | * Setting this bit will instruct the HBA to aggressively |
| 969 | * enter a lower power link state when it's appropriate and |
| 970 | * based on the value set above for ASP |
| 971 | */ |
| 972 | cmd |= PORT_CMD_ALPE; |
| 973 | |
| 974 | /* write out new cmd value */ |
| 975 | writel(cmd, port_mmio + PORT_CMD); |
| 976 | cmd = readl(port_mmio + PORT_CMD); |
| 977 | |
| 978 | /* IPM bits should be set by libata-core */ |
| 979 | return 0; |
| 980 | } |
| 981 | |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 982 | #ifdef CONFIG_PM |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 983 | static void ahci_power_down(struct ata_port *ap) |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 984 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 985 | struct ahci_host_priv *hpriv = ap->host->private_data; |
| 986 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 987 | u32 cmd, scontrol; |
| 988 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 989 | if (!(hpriv->cap & HOST_CAP_SSS)) |
Tejun Heo | 07c53da | 2007-01-21 02:10:11 +0900 | [diff] [blame] | 990 | return; |
| 991 | |
| 992 | /* put device into listen mode, first set PxSCTL.DET to 0 */ |
| 993 | scontrol = readl(port_mmio + PORT_SCR_CTL); |
| 994 | scontrol &= ~0xf; |
| 995 | writel(scontrol, port_mmio + PORT_SCR_CTL); |
| 996 | |
| 997 | /* then set PxCMD.SUD to 0 */ |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 998 | cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK; |
Tejun Heo | 07c53da | 2007-01-21 02:10:11 +0900 | [diff] [blame] | 999 | cmd &= ~PORT_CMD_SPIN_UP; |
| 1000 | writel(cmd, port_mmio + PORT_CMD); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1001 | } |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 1002 | #endif |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1003 | |
Jeff Garzik | df69c9c | 2007-05-26 20:46:51 -0400 | [diff] [blame] | 1004 | static void ahci_start_port(struct ata_port *ap) |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1005 | { |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1006 | /* enable FIS reception */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1007 | ahci_start_fis_rx(ap); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1008 | |
| 1009 | /* enable DMA */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1010 | ahci_start_engine(ap); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1011 | } |
| 1012 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1013 | static int ahci_deinit_port(struct ata_port *ap, const char **emsg) |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1014 | { |
| 1015 | int rc; |
| 1016 | |
| 1017 | /* disable DMA */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1018 | rc = ahci_stop_engine(ap); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1019 | if (rc) { |
| 1020 | *emsg = "failed to stop engine"; |
| 1021 | return rc; |
| 1022 | } |
| 1023 | |
| 1024 | /* disable FIS reception */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1025 | rc = ahci_stop_fis_rx(ap); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1026 | if (rc) { |
| 1027 | *emsg = "failed stop FIS RX"; |
| 1028 | return rc; |
| 1029 | } |
| 1030 | |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1031 | return 0; |
| 1032 | } |
| 1033 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1034 | static int ahci_reset_controller(struct ata_host *host) |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1035 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1036 | struct pci_dev *pdev = to_pci_dev(host->dev); |
| 1037 | void __iomem *mmio = host->iomap[AHCI_PCI_BAR]; |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 1038 | u32 tmp; |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1039 | |
Jeff Garzik | 3cc3eb1 | 2007-09-26 00:02:41 -0400 | [diff] [blame] | 1040 | /* we must be in AHCI mode, before using anything |
| 1041 | * AHCI-specific, such as HOST_RESET. |
| 1042 | */ |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1043 | tmp = readl(mmio + HOST_CTL); |
Jeff Garzik | ab6fc95 | 2007-10-29 10:43:55 -0400 | [diff] [blame] | 1044 | if (!(tmp & HOST_AHCI_EN)) { |
| 1045 | tmp |= HOST_AHCI_EN; |
| 1046 | writel(tmp, mmio + HOST_CTL); |
| 1047 | } |
Jeff Garzik | 3cc3eb1 | 2007-09-26 00:02:41 -0400 | [diff] [blame] | 1048 | |
| 1049 | /* global controller reset */ |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1050 | if ((tmp & HOST_RESET) == 0) { |
| 1051 | writel(tmp | HOST_RESET, mmio + HOST_CTL); |
| 1052 | readl(mmio + HOST_CTL); /* flush */ |
| 1053 | } |
| 1054 | |
| 1055 | /* reset must complete within 1 second, or |
| 1056 | * the hardware should be considered fried. |
| 1057 | */ |
| 1058 | ssleep(1); |
| 1059 | |
| 1060 | tmp = readl(mmio + HOST_CTL); |
| 1061 | if (tmp & HOST_RESET) { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1062 | dev_printk(KERN_ERR, host->dev, |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1063 | "controller reset failed (0x%x)\n", tmp); |
| 1064 | return -EIO; |
| 1065 | } |
| 1066 | |
Tejun Heo | 98fa4b6 | 2006-11-02 12:17:23 +0900 | [diff] [blame] | 1067 | /* turn on AHCI mode */ |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1068 | writel(HOST_AHCI_EN, mmio + HOST_CTL); |
| 1069 | (void) readl(mmio + HOST_CTL); /* flush */ |
Tejun Heo | 98fa4b6 | 2006-11-02 12:17:23 +0900 | [diff] [blame] | 1070 | |
Tejun Heo | d447df1 | 2007-03-18 22:15:33 +0900 | [diff] [blame] | 1071 | /* some registers might be cleared on reset. restore initial values */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1072 | ahci_restore_initial_config(host); |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1073 | |
| 1074 | if (pdev->vendor == PCI_VENDOR_ID_INTEL) { |
| 1075 | u16 tmp16; |
| 1076 | |
| 1077 | /* configure PCS */ |
| 1078 | pci_read_config_word(pdev, 0x92, &tmp16); |
| 1079 | tmp16 |= 0xf; |
| 1080 | pci_write_config_word(pdev, 0x92, tmp16); |
| 1081 | } |
| 1082 | |
| 1083 | return 0; |
| 1084 | } |
| 1085 | |
Jeff Garzik | 2bcd866 | 2007-05-28 07:45:27 -0400 | [diff] [blame] | 1086 | static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap, |
| 1087 | int port_no, void __iomem *mmio, |
| 1088 | void __iomem *port_mmio) |
| 1089 | { |
| 1090 | const char *emsg = NULL; |
| 1091 | int rc; |
| 1092 | u32 tmp; |
| 1093 | |
| 1094 | /* make sure port is not active */ |
| 1095 | rc = ahci_deinit_port(ap, &emsg); |
| 1096 | if (rc) |
| 1097 | dev_printk(KERN_WARNING, &pdev->dev, |
| 1098 | "%s (%d)\n", emsg, rc); |
| 1099 | |
| 1100 | /* clear SError */ |
| 1101 | tmp = readl(port_mmio + PORT_SCR_ERR); |
| 1102 | VPRINTK("PORT_SCR_ERR 0x%x\n", tmp); |
| 1103 | writel(tmp, port_mmio + PORT_SCR_ERR); |
| 1104 | |
| 1105 | /* clear port IRQ */ |
| 1106 | tmp = readl(port_mmio + PORT_IRQ_STAT); |
| 1107 | VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp); |
| 1108 | if (tmp) |
| 1109 | writel(tmp, port_mmio + PORT_IRQ_STAT); |
| 1110 | |
| 1111 | writel(1 << port_no, mmio + HOST_IRQ_STAT); |
| 1112 | } |
| 1113 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1114 | static void ahci_init_controller(struct ata_host *host) |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1115 | { |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 1116 | struct ahci_host_priv *hpriv = host->private_data; |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1117 | struct pci_dev *pdev = to_pci_dev(host->dev); |
| 1118 | void __iomem *mmio = host->iomap[AHCI_PCI_BAR]; |
Jeff Garzik | 2bcd866 | 2007-05-28 07:45:27 -0400 | [diff] [blame] | 1119 | int i; |
Jeff Garzik | cd70c26 | 2007-07-08 02:29:42 -0400 | [diff] [blame] | 1120 | void __iomem *port_mmio; |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1121 | u32 tmp; |
| 1122 | |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 1123 | if (hpriv->flags & AHCI_HFLAG_MV_PATA) { |
Jeff Garzik | cd70c26 | 2007-07-08 02:29:42 -0400 | [diff] [blame] | 1124 | port_mmio = __ahci_port_base(host, 4); |
| 1125 | |
| 1126 | writel(0, port_mmio + PORT_IRQ_MASK); |
| 1127 | |
| 1128 | /* clear port IRQ */ |
| 1129 | tmp = readl(port_mmio + PORT_IRQ_STAT); |
| 1130 | VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp); |
| 1131 | if (tmp) |
| 1132 | writel(tmp, port_mmio + PORT_IRQ_STAT); |
| 1133 | } |
| 1134 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1135 | for (i = 0; i < host->n_ports; i++) { |
| 1136 | struct ata_port *ap = host->ports[i]; |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1137 | |
Jeff Garzik | cd70c26 | 2007-07-08 02:29:42 -0400 | [diff] [blame] | 1138 | port_mmio = ahci_port_base(ap); |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1139 | if (ata_port_is_dummy(ap)) |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1140 | continue; |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1141 | |
Jeff Garzik | 2bcd866 | 2007-05-28 07:45:27 -0400 | [diff] [blame] | 1142 | ahci_port_init(pdev, ap, i, mmio, port_mmio); |
Tejun Heo | d91542c | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | tmp = readl(mmio + HOST_CTL); |
| 1146 | VPRINTK("HOST_CTL 0x%x\n", tmp); |
| 1147 | writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL); |
| 1148 | tmp = readl(mmio + HOST_CTL); |
| 1149 | VPRINTK("HOST_CTL 0x%x\n", tmp); |
| 1150 | } |
| 1151 | |
Tejun Heo | 422b759 | 2005-12-19 22:37:17 +0900 | [diff] [blame] | 1152 | static unsigned int ahci_dev_classify(struct ata_port *ap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1154 | void __iomem *port_mmio = ahci_port_base(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | struct ata_taskfile tf; |
Tejun Heo | 422b759 | 2005-12-19 22:37:17 +0900 | [diff] [blame] | 1156 | u32 tmp; |
| 1157 | |
| 1158 | tmp = readl(port_mmio + PORT_SIG); |
| 1159 | tf.lbah = (tmp >> 24) & 0xff; |
| 1160 | tf.lbam = (tmp >> 16) & 0xff; |
| 1161 | tf.lbal = (tmp >> 8) & 0xff; |
| 1162 | tf.nsect = (tmp) & 0xff; |
| 1163 | |
| 1164 | return ata_dev_classify(&tf); |
| 1165 | } |
| 1166 | |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1167 | static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag, |
| 1168 | u32 opts) |
Tejun Heo | cc9278e | 2006-02-10 17:25:47 +0900 | [diff] [blame] | 1169 | { |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1170 | dma_addr_t cmd_tbl_dma; |
| 1171 | |
| 1172 | cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ; |
| 1173 | |
| 1174 | pp->cmd_slot[tag].opts = cpu_to_le32(opts); |
| 1175 | pp->cmd_slot[tag].status = 0; |
| 1176 | pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff); |
| 1177 | pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16); |
Tejun Heo | cc9278e | 2006-02-10 17:25:47 +0900 | [diff] [blame] | 1178 | } |
| 1179 | |
Tejun Heo | d2e75df | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1180 | static int ahci_kick_engine(struct ata_port *ap, int force_restart) |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 1181 | { |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 1182 | void __iomem *port_mmio = ap->ioaddr.cmd_addr; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1183 | struct ahci_host_priv *hpriv = ap->host->private_data; |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 1184 | u32 tmp; |
Tejun Heo | d2e75df | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1185 | int busy, rc; |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 1186 | |
Tejun Heo | d2e75df | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1187 | /* do we need to kick the port? */ |
| 1188 | busy = ahci_check_status(ap) & (ATA_BUSY | ATA_DRQ); |
| 1189 | if (!busy && !force_restart) |
| 1190 | return 0; |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 1191 | |
Tejun Heo | d2e75df | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1192 | /* stop engine */ |
| 1193 | rc = ahci_stop_engine(ap); |
| 1194 | if (rc) |
| 1195 | goto out_restart; |
| 1196 | |
| 1197 | /* need to do CLO? */ |
| 1198 | if (!busy) { |
| 1199 | rc = 0; |
| 1200 | goto out_restart; |
| 1201 | } |
| 1202 | |
| 1203 | if (!(hpriv->cap & HOST_CAP_CLO)) { |
| 1204 | rc = -EOPNOTSUPP; |
| 1205 | goto out_restart; |
| 1206 | } |
| 1207 | |
| 1208 | /* perform CLO */ |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 1209 | tmp = readl(port_mmio + PORT_CMD); |
| 1210 | tmp |= PORT_CMD_CLO; |
| 1211 | writel(tmp, port_mmio + PORT_CMD); |
| 1212 | |
Tejun Heo | d2e75df | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1213 | rc = 0; |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 1214 | tmp = ata_wait_register(port_mmio + PORT_CMD, |
| 1215 | PORT_CMD_CLO, PORT_CMD_CLO, 1, 500); |
| 1216 | if (tmp & PORT_CMD_CLO) |
Tejun Heo | d2e75df | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1217 | rc = -EIO; |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 1218 | |
Tejun Heo | d2e75df | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1219 | /* restart engine */ |
| 1220 | out_restart: |
| 1221 | ahci_start_engine(ap); |
| 1222 | return rc; |
Bastiaan Jacques | bf2af2a | 2006-04-17 14:17:59 +0200 | [diff] [blame] | 1223 | } |
| 1224 | |
Tejun Heo | 91c4a2e | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1225 | static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp, |
| 1226 | struct ata_taskfile *tf, int is_cmd, u16 flags, |
| 1227 | unsigned long timeout_msec) |
| 1228 | { |
| 1229 | const u32 cmd_fis_len = 5; /* five dwords */ |
| 1230 | struct ahci_port_priv *pp = ap->private_data; |
| 1231 | void __iomem *port_mmio = ahci_port_base(ap); |
| 1232 | u8 *fis = pp->cmd_tbl; |
| 1233 | u32 tmp; |
| 1234 | |
| 1235 | /* prep the command */ |
| 1236 | ata_tf_to_fis(tf, pmp, is_cmd, fis); |
| 1237 | ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12)); |
| 1238 | |
| 1239 | /* issue & wait */ |
| 1240 | writel(1, port_mmio + PORT_CMD_ISSUE); |
| 1241 | |
| 1242 | if (timeout_msec) { |
| 1243 | tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1, |
| 1244 | 1, timeout_msec); |
| 1245 | if (tmp & 0x1) { |
| 1246 | ahci_kick_engine(ap, 1); |
| 1247 | return -EBUSY; |
| 1248 | } |
| 1249 | } else |
| 1250 | readl(port_mmio + PORT_CMD_ISSUE); /* flush */ |
| 1251 | |
| 1252 | return 0; |
| 1253 | } |
| 1254 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1255 | static int ahci_do_softreset(struct ata_link *link, unsigned int *class, |
Tejun Heo | a9cf5e8 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1256 | int pmp, unsigned long deadline) |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1257 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1258 | struct ata_port *ap = link->ap; |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1259 | const char *reason = NULL; |
Tejun Heo | 2cbb79e | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 1260 | unsigned long now, msecs; |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1261 | struct ata_taskfile tf; |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1262 | int rc; |
| 1263 | |
| 1264 | DPRINTK("ENTER\n"); |
| 1265 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1266 | if (ata_link_offline(link)) { |
Tejun Heo | c2a6585 | 2006-04-03 01:58:06 +0900 | [diff] [blame] | 1267 | DPRINTK("PHY reports no device\n"); |
| 1268 | *class = ATA_DEV_NONE; |
| 1269 | return 0; |
| 1270 | } |
| 1271 | |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1272 | /* prepare for SRST (AHCI-1.1 10.4.1) */ |
Tejun Heo | d2e75df | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1273 | rc = ahci_kick_engine(ap, 1); |
Tejun Heo | 994056d | 2007-12-06 15:02:48 +0900 | [diff] [blame] | 1274 | if (rc && rc != -EOPNOTSUPP) |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1275 | ata_link_printk(link, KERN_WARNING, |
Tejun Heo | 994056d | 2007-12-06 15:02:48 +0900 | [diff] [blame] | 1276 | "failed to reset engine (errno=%d)\n", rc); |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1277 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1278 | ata_tf_init(link->device, &tf); |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1279 | |
| 1280 | /* issue the first D2H Register FIS */ |
Tejun Heo | 2cbb79e | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 1281 | msecs = 0; |
| 1282 | now = jiffies; |
| 1283 | if (time_after(now, deadline)) |
| 1284 | msecs = jiffies_to_msecs(deadline - now); |
| 1285 | |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1286 | tf.ctl |= ATA_SRST; |
Tejun Heo | a9cf5e8 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1287 | if (ahci_exec_polled_cmd(ap, pmp, &tf, 0, |
Tejun Heo | 91c4a2e | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1288 | AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) { |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1289 | rc = -EIO; |
| 1290 | reason = "1st FIS failed"; |
| 1291 | goto fail; |
| 1292 | } |
| 1293 | |
| 1294 | /* spec says at least 5us, but be generous and sleep for 1ms */ |
| 1295 | msleep(1); |
| 1296 | |
| 1297 | /* issue the second D2H Register FIS */ |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1298 | tf.ctl &= ~ATA_SRST; |
Tejun Heo | a9cf5e8 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1299 | ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0); |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1300 | |
Tejun Heo | 88ff6ea | 2007-10-16 14:21:24 -0700 | [diff] [blame] | 1301 | /* wait a while before checking status */ |
| 1302 | ata_wait_after_reset(ap, deadline); |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1303 | |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 1304 | rc = ata_wait_ready(ap, deadline); |
| 1305 | /* link occupied, -ENODEV too is an error */ |
| 1306 | if (rc) { |
| 1307 | reason = "device not ready"; |
| 1308 | goto fail; |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1309 | } |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 1310 | *class = ahci_dev_classify(ap); |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1311 | |
| 1312 | DPRINTK("EXIT, class=%u\n", *class); |
| 1313 | return 0; |
| 1314 | |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1315 | fail: |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1316 | ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason); |
Tejun Heo | 4658f79 | 2006-03-22 21:07:03 +0900 | [diff] [blame] | 1317 | return rc; |
| 1318 | } |
| 1319 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1320 | static int ahci_softreset(struct ata_link *link, unsigned int *class, |
Tejun Heo | a9cf5e8 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1321 | unsigned long deadline) |
| 1322 | { |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1323 | int pmp = 0; |
| 1324 | |
| 1325 | if (link->ap->flags & ATA_FLAG_PMP) |
| 1326 | pmp = SATA_PMP_CTRL_PORT; |
| 1327 | |
| 1328 | return ahci_do_softreset(link, class, pmp, deadline); |
Tejun Heo | a9cf5e8 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1329 | } |
| 1330 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1331 | static int ahci_hardreset(struct ata_link *link, unsigned int *class, |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 1332 | unsigned long deadline) |
Tejun Heo | 422b759 | 2005-12-19 22:37:17 +0900 | [diff] [blame] | 1333 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1334 | struct ata_port *ap = link->ap; |
Tejun Heo | 4296971 | 2006-05-31 18:28:18 +0900 | [diff] [blame] | 1335 | struct ahci_port_priv *pp = ap->private_data; |
| 1336 | u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG; |
| 1337 | struct ata_taskfile tf; |
Tejun Heo | 4bd00f6 | 2006-02-11 16:26:02 +0900 | [diff] [blame] | 1338 | int rc; |
| 1339 | |
| 1340 | DPRINTK("ENTER\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1342 | ahci_stop_engine(ap); |
Tejun Heo | 4296971 | 2006-05-31 18:28:18 +0900 | [diff] [blame] | 1343 | |
| 1344 | /* clear D2H reception area to properly wait for D2H FIS */ |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1345 | ata_tf_init(link->device, &tf); |
Tejun Heo | dfd7a3d | 2007-01-26 15:37:20 +0900 | [diff] [blame] | 1346 | tf.command = 0x80; |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 1347 | ata_tf_to_fis(&tf, 0, 0, d2h_fis); |
Tejun Heo | 4296971 | 2006-05-31 18:28:18 +0900 | [diff] [blame] | 1348 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1349 | rc = sata_std_hardreset(link, class, deadline); |
Tejun Heo | 4296971 | 2006-05-31 18:28:18 +0900 | [diff] [blame] | 1350 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1351 | ahci_start_engine(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1353 | if (rc == 0 && ata_link_online(link)) |
Tejun Heo | 4bd00f6 | 2006-02-11 16:26:02 +0900 | [diff] [blame] | 1354 | *class = ahci_dev_classify(ap); |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1355 | if (rc != -EAGAIN && *class == ATA_DEV_UNKNOWN) |
Tejun Heo | 4bd00f6 | 2006-02-11 16:26:02 +0900 | [diff] [blame] | 1356 | *class = ATA_DEV_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | |
Tejun Heo | 4bd00f6 | 2006-02-11 16:26:02 +0900 | [diff] [blame] | 1358 | DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class); |
| 1359 | return rc; |
| 1360 | } |
| 1361 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1362 | static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class, |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 1363 | unsigned long deadline) |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 1364 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1365 | struct ata_port *ap = link->ap; |
Tejun Heo | da3dbb1 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 1366 | u32 serror; |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 1367 | int rc; |
| 1368 | |
| 1369 | DPRINTK("ENTER\n"); |
| 1370 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1371 | ahci_stop_engine(ap); |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 1372 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1373 | rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context), |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 1374 | deadline); |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 1375 | |
| 1376 | /* vt8251 needs SError cleared for the port to operate */ |
Tejun Heo | da3dbb1 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 1377 | ahci_scr_read(ap, SCR_ERROR, &serror); |
| 1378 | ahci_scr_write(ap, SCR_ERROR, serror); |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 1379 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1380 | ahci_start_engine(ap); |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 1381 | |
| 1382 | DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class); |
| 1383 | |
| 1384 | /* vt8251 doesn't clear BSY on signature FIS reception, |
| 1385 | * request follow-up softreset. |
| 1386 | */ |
| 1387 | return rc ?: -EAGAIN; |
| 1388 | } |
| 1389 | |
Tejun Heo | edc9305 | 2007-10-25 14:59:16 +0900 | [diff] [blame] | 1390 | static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class, |
| 1391 | unsigned long deadline) |
| 1392 | { |
| 1393 | struct ata_port *ap = link->ap; |
| 1394 | struct ahci_port_priv *pp = ap->private_data; |
| 1395 | u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG; |
| 1396 | struct ata_taskfile tf; |
| 1397 | int rc; |
| 1398 | |
| 1399 | ahci_stop_engine(ap); |
| 1400 | |
| 1401 | /* clear D2H reception area to properly wait for D2H FIS */ |
| 1402 | ata_tf_init(link->device, &tf); |
| 1403 | tf.command = 0x80; |
| 1404 | ata_tf_to_fis(&tf, 0, 0, d2h_fis); |
| 1405 | |
| 1406 | rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context), |
| 1407 | deadline); |
| 1408 | |
| 1409 | ahci_start_engine(ap); |
| 1410 | |
| 1411 | if (rc || ata_link_offline(link)) |
| 1412 | return rc; |
| 1413 | |
| 1414 | /* spec mandates ">= 2ms" before checking status */ |
| 1415 | msleep(150); |
| 1416 | |
| 1417 | /* The pseudo configuration device on SIMG4726 attached to |
| 1418 | * ASUS P5W-DH Deluxe doesn't send signature FIS after |
| 1419 | * hardreset if no device is attached to the first downstream |
| 1420 | * port && the pseudo device locks up on SRST w/ PMP==0. To |
| 1421 | * work around this, wait for !BSY only briefly. If BSY isn't |
| 1422 | * cleared, perform CLO and proceed to IDENTIFY (achieved by |
| 1423 | * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA). |
| 1424 | * |
| 1425 | * Wait for two seconds. Devices attached to downstream port |
| 1426 | * which can't process the following IDENTIFY after this will |
| 1427 | * have to be reset again. For most cases, this should |
| 1428 | * suffice while making probing snappish enough. |
| 1429 | */ |
| 1430 | rc = ata_wait_ready(ap, jiffies + 2 * HZ); |
| 1431 | if (rc) |
| 1432 | ahci_kick_engine(ap, 0); |
| 1433 | |
| 1434 | return 0; |
| 1435 | } |
| 1436 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1437 | static void ahci_postreset(struct ata_link *link, unsigned int *class) |
Tejun Heo | 4bd00f6 | 2006-02-11 16:26:02 +0900 | [diff] [blame] | 1438 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1439 | struct ata_port *ap = link->ap; |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1440 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 4bd00f6 | 2006-02-11 16:26:02 +0900 | [diff] [blame] | 1441 | u32 new_tmp, tmp; |
| 1442 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1443 | ata_std_postreset(link, class); |
Jeff Garzik | 02eaa66 | 2005-11-12 01:32:19 -0500 | [diff] [blame] | 1444 | |
| 1445 | /* Make sure port's ATAPI bit is set appropriately */ |
| 1446 | new_tmp = tmp = readl(port_mmio + PORT_CMD); |
Tejun Heo | 4bd00f6 | 2006-02-11 16:26:02 +0900 | [diff] [blame] | 1447 | if (*class == ATA_DEV_ATAPI) |
Jeff Garzik | 02eaa66 | 2005-11-12 01:32:19 -0500 | [diff] [blame] | 1448 | new_tmp |= PORT_CMD_ATAPI; |
| 1449 | else |
| 1450 | new_tmp &= ~PORT_CMD_ATAPI; |
| 1451 | if (new_tmp != tmp) { |
| 1452 | writel(new_tmp, port_mmio + PORT_CMD); |
| 1453 | readl(port_mmio + PORT_CMD); /* flush */ |
| 1454 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | } |
| 1456 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1457 | static int ahci_pmp_softreset(struct ata_link *link, unsigned int *class, |
| 1458 | unsigned long deadline) |
| 1459 | { |
| 1460 | return ahci_do_softreset(link, class, link->pmp, deadline); |
| 1461 | } |
| 1462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | static u8 ahci_check_status(struct ata_port *ap) |
| 1464 | { |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 1465 | void __iomem *mmio = ap->ioaddr.cmd_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | |
| 1467 | return readl(mmio + PORT_TFDATA) & 0xFF; |
| 1468 | } |
| 1469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf) |
| 1471 | { |
| 1472 | struct ahci_port_priv *pp = ap->private_data; |
| 1473 | u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG; |
| 1474 | |
| 1475 | ata_tf_from_fis(d2h_fis, tf); |
| 1476 | } |
| 1477 | |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1478 | static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | { |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 1480 | struct scatterlist *sg; |
| 1481 | struct ahci_sg *ahci_sg; |
Jeff Garzik | 828d09d | 2005-11-12 01:27:07 -0500 | [diff] [blame] | 1482 | unsigned int n_sg = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | |
| 1484 | VPRINTK("ENTER\n"); |
| 1485 | |
| 1486 | /* |
| 1487 | * Next, the S/G list. |
| 1488 | */ |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1489 | ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 1490 | ata_for_each_sg(sg, qc) { |
| 1491 | dma_addr_t addr = sg_dma_address(sg); |
| 1492 | u32 sg_len = sg_dma_len(sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 1494 | ahci_sg->addr = cpu_to_le32(addr & 0xffffffff); |
| 1495 | ahci_sg->addr_hi = cpu_to_le32((addr >> 16) >> 16); |
| 1496 | ahci_sg->flags_size = cpu_to_le32(sg_len - 1); |
Jeff Garzik | 828d09d | 2005-11-12 01:27:07 -0500 | [diff] [blame] | 1497 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 1498 | ahci_sg++; |
Jeff Garzik | 828d09d | 2005-11-12 01:27:07 -0500 | [diff] [blame] | 1499 | n_sg++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | } |
Jeff Garzik | 828d09d | 2005-11-12 01:27:07 -0500 | [diff] [blame] | 1501 | |
| 1502 | return n_sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | } |
| 1504 | |
| 1505 | static void ahci_qc_prep(struct ata_queued_cmd *qc) |
| 1506 | { |
Jeff Garzik | a0ea732 | 2005-06-04 01:13:15 -0400 | [diff] [blame] | 1507 | struct ata_port *ap = qc->ap; |
| 1508 | struct ahci_port_priv *pp = ap->private_data; |
Tejun Heo | cc9278e | 2006-02-10 17:25:47 +0900 | [diff] [blame] | 1509 | int is_atapi = is_atapi_taskfile(&qc->tf); |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1510 | void *cmd_tbl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | u32 opts; |
| 1512 | const u32 cmd_fis_len = 5; /* five dwords */ |
Jeff Garzik | 828d09d | 2005-11-12 01:27:07 -0500 | [diff] [blame] | 1513 | unsigned int n_elem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | |
| 1515 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | * Fill in command table information. First, the header, |
| 1517 | * a SATA Register - Host to Device command FIS. |
| 1518 | */ |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1519 | cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ; |
| 1520 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1521 | ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl); |
Tejun Heo | cc9278e | 2006-02-10 17:25:47 +0900 | [diff] [blame] | 1522 | if (is_atapi) { |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1523 | memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32); |
| 1524 | memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len); |
Jeff Garzik | a0ea732 | 2005-06-04 01:13:15 -0400 | [diff] [blame] | 1525 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | |
Tejun Heo | cc9278e | 2006-02-10 17:25:47 +0900 | [diff] [blame] | 1527 | n_elem = 0; |
| 1528 | if (qc->flags & ATA_QCFLAG_DMAMAP) |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1529 | n_elem = ahci_fill_sg(qc, cmd_tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | |
Tejun Heo | cc9278e | 2006-02-10 17:25:47 +0900 | [diff] [blame] | 1531 | /* |
| 1532 | * Fill in command slot information. |
| 1533 | */ |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1534 | opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12); |
Tejun Heo | cc9278e | 2006-02-10 17:25:47 +0900 | [diff] [blame] | 1535 | if (qc->tf.flags & ATA_TFLAG_WRITE) |
| 1536 | opts |= AHCI_CMD_WRITE; |
| 1537 | if (is_atapi) |
Tejun Heo | 4b10e55 | 2006-03-12 11:25:27 +0900 | [diff] [blame] | 1538 | opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH; |
Jeff Garzik | 828d09d | 2005-11-12 01:27:07 -0500 | [diff] [blame] | 1539 | |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1540 | ahci_fill_cmd_slot(pp, qc->tag, opts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | } |
| 1542 | |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1543 | static void ahci_error_intr(struct ata_port *ap, u32 irq_stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | { |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 1545 | struct ahci_host_priv *hpriv = ap->host->private_data; |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1546 | struct ahci_port_priv *pp = ap->private_data; |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1547 | struct ata_eh_info *host_ehi = &ap->link.eh_info; |
| 1548 | struct ata_link *link = NULL; |
| 1549 | struct ata_queued_cmd *active_qc; |
| 1550 | struct ata_eh_info *active_ehi; |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1551 | u32 serror; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1553 | /* determine active link */ |
| 1554 | ata_port_for_each_link(link, ap) |
| 1555 | if (ata_link_active(link)) |
| 1556 | break; |
| 1557 | if (!link) |
| 1558 | link = &ap->link; |
| 1559 | |
| 1560 | active_qc = ata_qc_from_tag(ap, link->active_tag); |
| 1561 | active_ehi = &link->eh_info; |
| 1562 | |
| 1563 | /* record irq stat */ |
| 1564 | ata_ehi_clear_desc(host_ehi); |
| 1565 | ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat); |
Jeff Garzik | 9f68a24 | 2005-11-15 14:03:47 -0500 | [diff] [blame] | 1566 | |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1567 | /* AHCI needs SError cleared; otherwise, it might lock up */ |
Tejun Heo | da3dbb1 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 1568 | ahci_scr_read(ap, SCR_ERROR, &serror); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1569 | ahci_scr_write(ap, SCR_ERROR, serror); |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1570 | host_ehi->serror |= serror; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | |
Tejun Heo | 4166955 | 2006-11-29 11:33:14 +0900 | [diff] [blame] | 1572 | /* some controllers set IRQ_IF_ERR on device errors, ignore it */ |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 1573 | if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR) |
Tejun Heo | 4166955 | 2006-11-29 11:33:14 +0900 | [diff] [blame] | 1574 | irq_stat &= ~PORT_IRQ_IF_ERR; |
| 1575 | |
Conke Hu | 55a6160 | 2007-03-27 18:33:05 +0800 | [diff] [blame] | 1576 | if (irq_stat & PORT_IRQ_TF_ERR) { |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1577 | /* If qc is active, charge it; otherwise, the active |
| 1578 | * link. There's no active qc on NCQ errors. It will |
| 1579 | * be determined by EH by reading log page 10h. |
| 1580 | */ |
| 1581 | if (active_qc) |
| 1582 | active_qc->err_mask |= AC_ERR_DEV; |
| 1583 | else |
| 1584 | active_ehi->err_mask |= AC_ERR_DEV; |
| 1585 | |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 1586 | if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL) |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1587 | host_ehi->serror &= ~SERR_INTERNAL; |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1588 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1590 | if (irq_stat & PORT_IRQ_UNK_FIS) { |
| 1591 | u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1593 | active_ehi->err_mask |= AC_ERR_HSM; |
| 1594 | active_ehi->action |= ATA_EH_SOFTRESET; |
| 1595 | ata_ehi_push_desc(active_ehi, |
| 1596 | "unknown FIS %08x %08x %08x %08x" , |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1597 | unk[0], unk[1], unk[2], unk[3]); |
| 1598 | } |
Jeff Garzik | b8f6153 | 2005-08-25 22:01:20 -0400 | [diff] [blame] | 1599 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1600 | if (ap->nr_pmp_links && (irq_stat & PORT_IRQ_BAD_PMP)) { |
| 1601 | active_ehi->err_mask |= AC_ERR_HSM; |
| 1602 | active_ehi->action |= ATA_EH_SOFTRESET; |
| 1603 | ata_ehi_push_desc(active_ehi, "incorrect PMP"); |
| 1604 | } |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1605 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1606 | if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) { |
| 1607 | host_ehi->err_mask |= AC_ERR_HOST_BUS; |
| 1608 | host_ehi->action |= ATA_EH_SOFTRESET; |
| 1609 | ata_ehi_push_desc(host_ehi, "host bus error"); |
| 1610 | } |
| 1611 | |
| 1612 | if (irq_stat & PORT_IRQ_IF_ERR) { |
| 1613 | host_ehi->err_mask |= AC_ERR_ATA_BUS; |
| 1614 | host_ehi->action |= ATA_EH_SOFTRESET; |
| 1615 | ata_ehi_push_desc(host_ehi, "interface fatal error"); |
| 1616 | } |
| 1617 | |
| 1618 | if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) { |
| 1619 | ata_ehi_hotplugged(host_ehi); |
| 1620 | ata_ehi_push_desc(host_ehi, "%s", |
| 1621 | irq_stat & PORT_IRQ_CONNECT ? |
| 1622 | "connection status changed" : "PHY RDY changed"); |
| 1623 | } |
| 1624 | |
| 1625 | /* okay, let's hand over to EH */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1627 | if (irq_stat & PORT_IRQ_FREEZE) |
| 1628 | ata_port_freeze(ap); |
| 1629 | else |
| 1630 | ata_port_abort(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | } |
| 1632 | |
Jeff Garzik | df69c9c | 2007-05-26 20:46:51 -0400 | [diff] [blame] | 1633 | static void ahci_port_intr(struct ata_port *ap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1635 | void __iomem *port_mmio = ap->ioaddr.cmd_addr; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1636 | struct ata_eh_info *ehi = &ap->link.eh_info; |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 1637 | struct ahci_port_priv *pp = ap->private_data; |
Tejun Heo | 5f226c6 | 2007-10-09 15:02:23 +0900 | [diff] [blame] | 1638 | struct ahci_host_priv *hpriv = ap->host->private_data; |
Tejun Heo | b06ce3e | 2007-10-09 15:06:48 +0900 | [diff] [blame] | 1639 | int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING); |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1640 | u32 status, qc_active; |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 1641 | int rc, known_irq = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | |
| 1643 | status = readl(port_mmio + PORT_IRQ_STAT); |
| 1644 | writel(status, port_mmio + PORT_IRQ_STAT); |
| 1645 | |
Tejun Heo | b06ce3e | 2007-10-09 15:06:48 +0900 | [diff] [blame] | 1646 | /* ignore BAD_PMP while resetting */ |
| 1647 | if (unlikely(resetting)) |
| 1648 | status &= ~PORT_IRQ_BAD_PMP; |
| 1649 | |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 1650 | /* If we are getting PhyRdy, this is |
| 1651 | * just a power state change, we should |
| 1652 | * clear out this, plus the PhyRdy/Comm |
| 1653 | * Wake bits from Serror |
| 1654 | */ |
| 1655 | if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) && |
| 1656 | (status & PORT_IRQ_PHYRDY)) { |
| 1657 | status &= ~PORT_IRQ_PHYRDY; |
| 1658 | ahci_scr_write(ap, SCR_ERROR, ((1 << 16) | (1 << 18))); |
| 1659 | } |
| 1660 | |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1661 | if (unlikely(status & PORT_IRQ_ERROR)) { |
| 1662 | ahci_error_intr(ap, status); |
| 1663 | return; |
| 1664 | } |
| 1665 | |
Kristen Carlson Accardi | 2f29496 | 2007-08-15 04:11:25 -0400 | [diff] [blame] | 1666 | if (status & PORT_IRQ_SDB_FIS) { |
Tejun Heo | 5f226c6 | 2007-10-09 15:02:23 +0900 | [diff] [blame] | 1667 | /* If SNotification is available, leave notification |
| 1668 | * handling to sata_async_notification(). If not, |
| 1669 | * emulate it by snooping SDB FIS RX area. |
| 1670 | * |
| 1671 | * Snooping FIS RX area is probably cheaper than |
| 1672 | * poking SNotification but some constrollers which |
| 1673 | * implement SNotification, ICH9 for example, don't |
| 1674 | * store AN SDB FIS into receive area. |
Kristen Carlson Accardi | 2f29496 | 2007-08-15 04:11:25 -0400 | [diff] [blame] | 1675 | */ |
Tejun Heo | 5f226c6 | 2007-10-09 15:02:23 +0900 | [diff] [blame] | 1676 | if (hpriv->cap & HOST_CAP_SNTF) |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 1677 | sata_async_notification(ap); |
Tejun Heo | 5f226c6 | 2007-10-09 15:02:23 +0900 | [diff] [blame] | 1678 | else { |
| 1679 | /* If the 'N' bit in word 0 of the FIS is set, |
| 1680 | * we just received asynchronous notification. |
| 1681 | * Tell libata about it. |
| 1682 | */ |
| 1683 | const __le32 *f = pp->rx_fis + RX_FIS_SDB; |
| 1684 | u32 f0 = le32_to_cpu(f[0]); |
| 1685 | |
| 1686 | if (f0 & (1 << 15)) |
| 1687 | sata_async_notification(ap); |
| 1688 | } |
Kristen Carlson Accardi | 2f29496 | 2007-08-15 04:11:25 -0400 | [diff] [blame] | 1689 | } |
| 1690 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1691 | /* pp->active_link is valid iff any command is in flight */ |
| 1692 | if (ap->qc_active && pp->active_link->sactive) |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1693 | qc_active = readl(port_mmio + PORT_SCR_ACT); |
| 1694 | else |
| 1695 | qc_active = readl(port_mmio + PORT_CMD_ISSUE); |
| 1696 | |
| 1697 | rc = ata_qc_complete_multiple(ap, qc_active, NULL); |
Tejun Heo | b06ce3e | 2007-10-09 15:06:48 +0900 | [diff] [blame] | 1698 | |
| 1699 | /* If resetting, spurious or invalid completions are expected, |
| 1700 | * return unconditionally. |
| 1701 | */ |
| 1702 | if (resetting) |
| 1703 | return; |
| 1704 | |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1705 | if (rc > 0) |
| 1706 | return; |
| 1707 | if (rc < 0) { |
| 1708 | ehi->err_mask |= AC_ERR_HSM; |
| 1709 | ehi->action |= ATA_EH_SOFTRESET; |
| 1710 | ata_port_freeze(ap); |
| 1711 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | } |
| 1713 | |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 1714 | /* hmmm... a spurious interrupt */ |
Tejun Heo | 2a3917a | 2006-05-15 20:58:30 +0900 | [diff] [blame] | 1715 | |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 1716 | /* if !NCQ, ignore. No modern ATA device has broken HSM |
| 1717 | * implementation for non-NCQ commands. |
| 1718 | */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1719 | if (!ap->link.sactive) |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1720 | return; |
| 1721 | |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 1722 | if (status & PORT_IRQ_D2H_REG_FIS) { |
| 1723 | if (!pp->ncq_saw_d2h) |
| 1724 | ata_port_printk(ap, KERN_INFO, |
| 1725 | "D2H reg with I during NCQ, " |
| 1726 | "this message won't be printed again\n"); |
| 1727 | pp->ncq_saw_d2h = 1; |
| 1728 | known_irq = 1; |
| 1729 | } |
Tejun Heo | 2a3917a | 2006-05-15 20:58:30 +0900 | [diff] [blame] | 1730 | |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 1731 | if (status & PORT_IRQ_DMAS_FIS) { |
| 1732 | if (!pp->ncq_saw_dmas) |
| 1733 | ata_port_printk(ap, KERN_INFO, |
| 1734 | "DMAS FIS during NCQ, " |
| 1735 | "this message won't be printed again\n"); |
| 1736 | pp->ncq_saw_dmas = 1; |
| 1737 | known_irq = 1; |
| 1738 | } |
| 1739 | |
Tejun Heo | a2bbd0c | 2007-02-21 16:34:25 +0900 | [diff] [blame] | 1740 | if (status & PORT_IRQ_SDB_FIS) { |
Al Viro | 04d4f7a | 2007-02-09 16:39:30 +0000 | [diff] [blame] | 1741 | const __le32 *f = pp->rx_fis + RX_FIS_SDB; |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 1742 | |
Tejun Heo | afb2d55 | 2007-02-27 13:24:19 +0900 | [diff] [blame] | 1743 | if (le32_to_cpu(f[1])) { |
| 1744 | /* SDB FIS containing spurious completions |
| 1745 | * might be dangerous, whine and fail commands |
| 1746 | * with HSM violation. EH will turn off NCQ |
| 1747 | * after several such failures. |
| 1748 | */ |
| 1749 | ata_ehi_push_desc(ehi, |
| 1750 | "spurious completions during NCQ " |
| 1751 | "issue=0x%x SAct=0x%x FIS=%08x:%08x", |
| 1752 | readl(port_mmio + PORT_CMD_ISSUE), |
| 1753 | readl(port_mmio + PORT_SCR_ACT), |
| 1754 | le32_to_cpu(f[0]), le32_to_cpu(f[1])); |
| 1755 | ehi->err_mask |= AC_ERR_HSM; |
| 1756 | ehi->action |= ATA_EH_SOFTRESET; |
| 1757 | ata_port_freeze(ap); |
| 1758 | } else { |
| 1759 | if (!pp->ncq_saw_sdb) |
| 1760 | ata_port_printk(ap, KERN_INFO, |
| 1761 | "spurious SDB FIS %08x:%08x during NCQ, " |
| 1762 | "this message won't be printed again\n", |
| 1763 | le32_to_cpu(f[0]), le32_to_cpu(f[1])); |
| 1764 | pp->ncq_saw_sdb = 1; |
| 1765 | } |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 1766 | known_irq = 1; |
| 1767 | } |
| 1768 | |
| 1769 | if (!known_irq) |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1770 | ata_port_printk(ap, KERN_INFO, "spurious interrupt " |
Tejun Heo | 0291f95 | 2007-01-25 19:16:28 +0900 | [diff] [blame] | 1771 | "(irq_stat 0x%x active_tag 0x%x sactive 0x%x)\n", |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1772 | status, ap->link.active_tag, ap->link.sactive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | } |
| 1774 | |
| 1775 | static void ahci_irq_clear(struct ata_port *ap) |
| 1776 | { |
| 1777 | /* TODO */ |
| 1778 | } |
| 1779 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1780 | static irqreturn_t ahci_interrupt(int irq, void *dev_instance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1782 | struct ata_host *host = dev_instance; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | struct ahci_host_priv *hpriv; |
| 1784 | unsigned int i, handled = 0; |
Jeff Garzik | ea6ba10 | 2005-08-30 05:18:18 -0400 | [diff] [blame] | 1785 | void __iomem *mmio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | u32 irq_stat, irq_ack = 0; |
| 1787 | |
| 1788 | VPRINTK("ENTER\n"); |
| 1789 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1790 | hpriv = host->private_data; |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 1791 | mmio = host->iomap[AHCI_PCI_BAR]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | |
| 1793 | /* sigh. 0xffffffff is a valid return from h/w */ |
| 1794 | irq_stat = readl(mmio + HOST_IRQ_STAT); |
| 1795 | irq_stat &= hpriv->port_map; |
| 1796 | if (!irq_stat) |
| 1797 | return IRQ_NONE; |
| 1798 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1799 | spin_lock(&host->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1801 | for (i = 0; i < host->n_ports; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | struct ata_port *ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 1804 | if (!(irq_stat & (1 << i))) |
| 1805 | continue; |
| 1806 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1807 | ap = host->ports[i]; |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 1808 | if (ap) { |
Jeff Garzik | df69c9c | 2007-05-26 20:46:51 -0400 | [diff] [blame] | 1809 | ahci_port_intr(ap); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 1810 | VPRINTK("port %u\n", i); |
| 1811 | } else { |
| 1812 | VPRINTK("port %u (no irq)\n", i); |
Tejun Heo | 6971ed1 | 2006-03-11 12:47:54 +0900 | [diff] [blame] | 1813 | if (ata_ratelimit()) |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1814 | dev_printk(KERN_WARNING, host->dev, |
Jeff Garzik | a9524a7 | 2005-10-30 14:39:11 -0500 | [diff] [blame] | 1815 | "interrupt on disabled port %u\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | } |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 1817 | |
| 1818 | irq_ack |= (1 << i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | } |
| 1820 | |
| 1821 | if (irq_ack) { |
| 1822 | writel(irq_ack, mmio + HOST_IRQ_STAT); |
| 1823 | handled = 1; |
| 1824 | } |
| 1825 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1826 | spin_unlock(&host->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | |
| 1828 | VPRINTK("EXIT\n"); |
| 1829 | |
| 1830 | return IRQ_RETVAL(handled); |
| 1831 | } |
| 1832 | |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1833 | static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | { |
| 1835 | struct ata_port *ap = qc->ap; |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1836 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1837 | struct ahci_port_priv *pp = ap->private_data; |
| 1838 | |
| 1839 | /* Keep track of the currently active link. It will be used |
| 1840 | * in completion path to determine whether NCQ phase is in |
| 1841 | * progress. |
| 1842 | */ |
| 1843 | pp->active_link = qc->dev->link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 1845 | if (qc->tf.protocol == ATA_PROT_NCQ) |
| 1846 | writel(1 << qc->tag, port_mmio + PORT_SCR_ACT); |
| 1847 | writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | readl(port_mmio + PORT_CMD_ISSUE); /* flush */ |
| 1849 | |
| 1850 | return 0; |
| 1851 | } |
| 1852 | |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1853 | static void ahci_freeze(struct ata_port *ap) |
| 1854 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1855 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1856 | |
| 1857 | /* turn IRQ off */ |
| 1858 | writel(0, port_mmio + PORT_IRQ_MASK); |
| 1859 | } |
| 1860 | |
| 1861 | static void ahci_thaw(struct ata_port *ap) |
| 1862 | { |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 1863 | void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR]; |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1864 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1865 | u32 tmp; |
Kristen Carlson Accardi | a738492 | 2007-08-09 14:23:41 -0700 | [diff] [blame] | 1866 | struct ahci_port_priv *pp = ap->private_data; |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1867 | |
| 1868 | /* clear IRQ */ |
| 1869 | tmp = readl(port_mmio + PORT_IRQ_STAT); |
| 1870 | writel(tmp, port_mmio + PORT_IRQ_STAT); |
Tejun Heo | a718728 | 2007-01-27 11:04:26 +0900 | [diff] [blame] | 1871 | writel(1 << ap->port_no, mmio + HOST_IRQ_STAT); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1872 | |
Tejun Heo | 1c954a4 | 2007-10-09 15:01:37 +0900 | [diff] [blame] | 1873 | /* turn IRQ back on */ |
| 1874 | writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1875 | } |
| 1876 | |
| 1877 | static void ahci_error_handler(struct ata_port *ap) |
| 1878 | { |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 1879 | if (!(ap->pflags & ATA_PFLAG_FROZEN)) { |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1880 | /* restart engine */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1881 | ahci_stop_engine(ap); |
| 1882 | ahci_start_engine(ap); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1883 | } |
| 1884 | |
| 1885 | /* perform recovery */ |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1886 | sata_pmp_do_eh(ap, ata_std_prereset, ahci_softreset, |
| 1887 | ahci_hardreset, ahci_postreset, |
| 1888 | sata_pmp_std_prereset, ahci_pmp_softreset, |
| 1889 | sata_pmp_std_hardreset, sata_pmp_std_postreset); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1890 | } |
| 1891 | |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 1892 | static void ahci_vt8251_error_handler(struct ata_port *ap) |
| 1893 | { |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 1894 | if (!(ap->pflags & ATA_PFLAG_FROZEN)) { |
| 1895 | /* restart engine */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1896 | ahci_stop_engine(ap); |
| 1897 | ahci_start_engine(ap); |
Tejun Heo | ad616ff | 2006-11-01 18:00:24 +0900 | [diff] [blame] | 1898 | } |
| 1899 | |
| 1900 | /* perform recovery */ |
| 1901 | ata_do_eh(ap, ata_std_prereset, ahci_softreset, ahci_vt8251_hardreset, |
| 1902 | ahci_postreset); |
| 1903 | } |
| 1904 | |
Tejun Heo | edc9305 | 2007-10-25 14:59:16 +0900 | [diff] [blame] | 1905 | static void ahci_p5wdh_error_handler(struct ata_port *ap) |
| 1906 | { |
| 1907 | if (!(ap->pflags & ATA_PFLAG_FROZEN)) { |
| 1908 | /* restart engine */ |
| 1909 | ahci_stop_engine(ap); |
| 1910 | ahci_start_engine(ap); |
| 1911 | } |
| 1912 | |
| 1913 | /* perform recovery */ |
| 1914 | ata_do_eh(ap, ata_std_prereset, ahci_softreset, ahci_p5wdh_hardreset, |
| 1915 | ahci_postreset); |
| 1916 | } |
| 1917 | |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1918 | static void ahci_post_internal_cmd(struct ata_queued_cmd *qc) |
| 1919 | { |
| 1920 | struct ata_port *ap = qc->ap; |
| 1921 | |
Tejun Heo | d2e75df | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 1922 | /* make DMA engine forget about the failed command */ |
| 1923 | if (qc->flags & ATA_QCFLAG_FAILED) |
| 1924 | ahci_kick_engine(ap, 1); |
Tejun Heo | 78cd52d | 2006-05-15 20:58:29 +0900 | [diff] [blame] | 1925 | } |
| 1926 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1927 | static void ahci_pmp_attach(struct ata_port *ap) |
| 1928 | { |
| 1929 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 1c954a4 | 2007-10-09 15:01:37 +0900 | [diff] [blame] | 1930 | struct ahci_port_priv *pp = ap->private_data; |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1931 | u32 cmd; |
| 1932 | |
| 1933 | cmd = readl(port_mmio + PORT_CMD); |
| 1934 | cmd |= PORT_CMD_PMP; |
| 1935 | writel(cmd, port_mmio + PORT_CMD); |
Tejun Heo | 1c954a4 | 2007-10-09 15:01:37 +0900 | [diff] [blame] | 1936 | |
| 1937 | pp->intr_mask |= PORT_IRQ_BAD_PMP; |
| 1938 | writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK); |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1939 | } |
| 1940 | |
| 1941 | static void ahci_pmp_detach(struct ata_port *ap) |
| 1942 | { |
| 1943 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 1c954a4 | 2007-10-09 15:01:37 +0900 | [diff] [blame] | 1944 | struct ahci_port_priv *pp = ap->private_data; |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1945 | u32 cmd; |
| 1946 | |
| 1947 | cmd = readl(port_mmio + PORT_CMD); |
| 1948 | cmd &= ~PORT_CMD_PMP; |
| 1949 | writel(cmd, port_mmio + PORT_CMD); |
Tejun Heo | 1c954a4 | 2007-10-09 15:01:37 +0900 | [diff] [blame] | 1950 | |
| 1951 | pp->intr_mask &= ~PORT_IRQ_BAD_PMP; |
| 1952 | writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK); |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1953 | } |
| 1954 | |
Alexey Dobriyan | 028a259 | 2007-07-17 23:48:48 +0400 | [diff] [blame] | 1955 | static int ahci_port_resume(struct ata_port *ap) |
| 1956 | { |
| 1957 | ahci_power_up(ap); |
| 1958 | ahci_start_port(ap); |
| 1959 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1960 | if (ap->nr_pmp_links) |
| 1961 | ahci_pmp_attach(ap); |
| 1962 | else |
| 1963 | ahci_pmp_detach(ap); |
| 1964 | |
Alexey Dobriyan | 028a259 | 2007-07-17 23:48:48 +0400 | [diff] [blame] | 1965 | return 0; |
| 1966 | } |
| 1967 | |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 1968 | #ifdef CONFIG_PM |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1969 | static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg) |
| 1970 | { |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1971 | const char *emsg = NULL; |
| 1972 | int rc; |
| 1973 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1974 | rc = ahci_deinit_port(ap, &emsg); |
Tejun Heo | 8e16f94 | 2006-11-20 15:42:36 +0900 | [diff] [blame] | 1975 | if (rc == 0) |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 1976 | ahci_power_down(ap); |
Tejun Heo | 8e16f94 | 2006-11-20 15:42:36 +0900 | [diff] [blame] | 1977 | else { |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1978 | ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc); |
Jeff Garzik | df69c9c | 2007-05-26 20:46:51 -0400 | [diff] [blame] | 1979 | ahci_start_port(ap); |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1980 | } |
| 1981 | |
| 1982 | return rc; |
| 1983 | } |
| 1984 | |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1985 | static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg) |
| 1986 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1987 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 1988 | void __iomem *mmio = host->iomap[AHCI_PCI_BAR]; |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 1989 | u32 ctl; |
| 1990 | |
| 1991 | if (mesg.event == PM_EVENT_SUSPEND) { |
| 1992 | /* AHCI spec rev1.1 section 8.3.3: |
| 1993 | * Software must disable interrupts prior to requesting a |
| 1994 | * transition of the HBA to D3 state. |
| 1995 | */ |
| 1996 | ctl = readl(mmio + HOST_CTL); |
| 1997 | ctl &= ~HOST_IRQ_EN; |
| 1998 | writel(ctl, mmio + HOST_CTL); |
| 1999 | readl(mmio + HOST_CTL); /* flush */ |
| 2000 | } |
| 2001 | |
| 2002 | return ata_pci_device_suspend(pdev, mesg); |
| 2003 | } |
| 2004 | |
| 2005 | static int ahci_pci_device_resume(struct pci_dev *pdev) |
| 2006 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2007 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 2008 | int rc; |
| 2009 | |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 2010 | rc = ata_pci_device_do_resume(pdev); |
| 2011 | if (rc) |
| 2012 | return rc; |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 2013 | |
| 2014 | if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2015 | rc = ahci_reset_controller(host); |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 2016 | if (rc) |
| 2017 | return rc; |
| 2018 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2019 | ahci_init_controller(host); |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 2020 | } |
| 2021 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2022 | ata_host_resume(host); |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 2023 | |
| 2024 | return 0; |
| 2025 | } |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 2026 | #endif |
Tejun Heo | c133287 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 2027 | |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2028 | static int ahci_port_start(struct ata_port *ap) |
| 2029 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2030 | struct device *dev = ap->host->dev; |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2031 | struct ahci_port_priv *pp; |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2032 | void *mem; |
| 2033 | dma_addr_t mem_dma; |
| 2034 | int rc; |
| 2035 | |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2036 | pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL); |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2037 | if (!pp) |
| 2038 | return -ENOMEM; |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2039 | |
| 2040 | rc = ata_pad_alloc(ap, dev); |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2041 | if (rc) |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2042 | return rc; |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2043 | |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2044 | mem = dmam_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma, |
| 2045 | GFP_KERNEL); |
| 2046 | if (!mem) |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2047 | return -ENOMEM; |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2048 | memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ); |
| 2049 | |
| 2050 | /* |
| 2051 | * First item in chunk of DMA memory: 32-slot command table, |
| 2052 | * 32 bytes each in size |
| 2053 | */ |
| 2054 | pp->cmd_slot = mem; |
| 2055 | pp->cmd_slot_dma = mem_dma; |
| 2056 | |
| 2057 | mem += AHCI_CMD_SLOT_SZ; |
| 2058 | mem_dma += AHCI_CMD_SLOT_SZ; |
| 2059 | |
| 2060 | /* |
| 2061 | * Second item: Received-FIS area |
| 2062 | */ |
| 2063 | pp->rx_fis = mem; |
| 2064 | pp->rx_fis_dma = mem_dma; |
| 2065 | |
| 2066 | mem += AHCI_RX_FIS_SZ; |
| 2067 | mem_dma += AHCI_RX_FIS_SZ; |
| 2068 | |
| 2069 | /* |
| 2070 | * Third item: data area for storing a single command |
| 2071 | * and its scatter-gather table |
| 2072 | */ |
| 2073 | pp->cmd_tbl = mem; |
| 2074 | pp->cmd_tbl_dma = mem_dma; |
| 2075 | |
Kristen Carlson Accardi | a738492 | 2007-08-09 14:23:41 -0700 | [diff] [blame] | 2076 | /* |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2077 | * Save off initial list of interrupts to be enabled. |
| 2078 | * This could be changed later |
| 2079 | */ |
Kristen Carlson Accardi | a738492 | 2007-08-09 14:23:41 -0700 | [diff] [blame] | 2080 | pp->intr_mask = DEF_PORT_IRQ; |
| 2081 | |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2082 | ap->private_data = pp; |
| 2083 | |
Jeff Garzik | df69c9c | 2007-05-26 20:46:51 -0400 | [diff] [blame] | 2084 | /* engage engines, captain */ |
| 2085 | return ahci_port_resume(ap); |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2086 | } |
| 2087 | |
| 2088 | static void ahci_port_stop(struct ata_port *ap) |
| 2089 | { |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 2090 | const char *emsg = NULL; |
| 2091 | int rc; |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2092 | |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 2093 | /* de-initialize port */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2094 | rc = ahci_deinit_port(ap, &emsg); |
Tejun Heo | 0be0aa9 | 2006-07-26 15:59:26 +0900 | [diff] [blame] | 2095 | if (rc) |
| 2096 | ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc); |
Tejun Heo | 254950c | 2006-07-26 15:59:25 +0900 | [diff] [blame] | 2097 | } |
| 2098 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2099 | static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | if (using_dac && |
| 2104 | !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) { |
| 2105 | rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); |
| 2106 | if (rc) { |
| 2107 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); |
| 2108 | if (rc) { |
Jeff Garzik | a9524a7 | 2005-10-30 14:39:11 -0500 | [diff] [blame] | 2109 | dev_printk(KERN_ERR, &pdev->dev, |
| 2110 | "64-bit DMA enable failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | return rc; |
| 2112 | } |
| 2113 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | } else { |
| 2115 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); |
| 2116 | if (rc) { |
Jeff Garzik | a9524a7 | 2005-10-30 14:39:11 -0500 | [diff] [blame] | 2117 | dev_printk(KERN_ERR, &pdev->dev, |
| 2118 | "32-bit DMA enable failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | return rc; |
| 2120 | } |
| 2121 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); |
| 2122 | if (rc) { |
Jeff Garzik | a9524a7 | 2005-10-30 14:39:11 -0500 | [diff] [blame] | 2123 | dev_printk(KERN_ERR, &pdev->dev, |
| 2124 | "32-bit consistent DMA enable failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2125 | return rc; |
| 2126 | } |
| 2127 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | return 0; |
| 2129 | } |
| 2130 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2131 | static void ahci_print_info(struct ata_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | { |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2133 | struct ahci_host_priv *hpriv = host->private_data; |
| 2134 | struct pci_dev *pdev = to_pci_dev(host->dev); |
| 2135 | void __iomem *mmio = host->iomap[AHCI_PCI_BAR]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | u32 vers, cap, impl, speed; |
| 2137 | const char *speed_s; |
| 2138 | u16 cc; |
| 2139 | const char *scc_s; |
| 2140 | |
| 2141 | vers = readl(mmio + HOST_VERSION); |
| 2142 | cap = hpriv->cap; |
| 2143 | impl = hpriv->port_map; |
| 2144 | |
| 2145 | speed = (cap >> 20) & 0xf; |
| 2146 | if (speed == 1) |
| 2147 | speed_s = "1.5"; |
| 2148 | else if (speed == 2) |
| 2149 | speed_s = "3"; |
| 2150 | else |
| 2151 | speed_s = "?"; |
| 2152 | |
| 2153 | pci_read_config_word(pdev, 0x0a, &cc); |
Conke Hu | c9f8947 | 2007-01-09 05:32:51 -0500 | [diff] [blame] | 2154 | if (cc == PCI_CLASS_STORAGE_IDE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | scc_s = "IDE"; |
Conke Hu | c9f8947 | 2007-01-09 05:32:51 -0500 | [diff] [blame] | 2156 | else if (cc == PCI_CLASS_STORAGE_SATA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | scc_s = "SATA"; |
Conke Hu | c9f8947 | 2007-01-09 05:32:51 -0500 | [diff] [blame] | 2158 | else if (cc == PCI_CLASS_STORAGE_RAID) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | scc_s = "RAID"; |
| 2160 | else |
| 2161 | scc_s = "unknown"; |
| 2162 | |
Jeff Garzik | a9524a7 | 2005-10-30 14:39:11 -0500 | [diff] [blame] | 2163 | dev_printk(KERN_INFO, &pdev->dev, |
| 2164 | "AHCI %02x%02x.%02x%02x " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | "%u slots %u ports %s Gbps 0x%x impl %s mode\n" |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2166 | , |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2168 | (vers >> 24) & 0xff, |
| 2169 | (vers >> 16) & 0xff, |
| 2170 | (vers >> 8) & 0xff, |
| 2171 | vers & 0xff, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | |
| 2173 | ((cap >> 8) & 0x1f) + 1, |
| 2174 | (cap & 0x1f) + 1, |
| 2175 | speed_s, |
| 2176 | impl, |
| 2177 | scc_s); |
| 2178 | |
Jeff Garzik | a9524a7 | 2005-10-30 14:39:11 -0500 | [diff] [blame] | 2179 | dev_printk(KERN_INFO, &pdev->dev, |
| 2180 | "flags: " |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2181 | "%s%s%s%s%s%s%s" |
| 2182 | "%s%s%s%s%s%s%s\n" |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2183 | , |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | |
| 2185 | cap & (1 << 31) ? "64bit " : "", |
| 2186 | cap & (1 << 30) ? "ncq " : "", |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2187 | cap & (1 << 29) ? "sntf " : "", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | cap & (1 << 28) ? "ilck " : "", |
| 2189 | cap & (1 << 27) ? "stag " : "", |
| 2190 | cap & (1 << 26) ? "pm " : "", |
| 2191 | cap & (1 << 25) ? "led " : "", |
| 2192 | |
| 2193 | cap & (1 << 24) ? "clo " : "", |
| 2194 | cap & (1 << 19) ? "nz " : "", |
| 2195 | cap & (1 << 18) ? "only " : "", |
| 2196 | cap & (1 << 17) ? "pmp " : "", |
| 2197 | cap & (1 << 15) ? "pio " : "", |
| 2198 | cap & (1 << 14) ? "slum " : "", |
| 2199 | cap & (1 << 13) ? "part " : "" |
| 2200 | ); |
| 2201 | } |
| 2202 | |
Tejun Heo | edc9305 | 2007-10-25 14:59:16 +0900 | [diff] [blame] | 2203 | /* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is |
| 2204 | * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't |
| 2205 | * support PMP and the 4726 either directly exports the device |
| 2206 | * attached to the first downstream port or acts as a hardware storage |
| 2207 | * controller and emulate a single ATA device (can be RAID 0/1 or some |
| 2208 | * other configuration). |
| 2209 | * |
| 2210 | * When there's no device attached to the first downstream port of the |
| 2211 | * 4726, "Config Disk" appears, which is a pseudo ATA device to |
| 2212 | * configure the 4726. However, ATA emulation of the device is very |
| 2213 | * lame. It doesn't send signature D2H Reg FIS after the initial |
| 2214 | * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues. |
| 2215 | * |
| 2216 | * The following function works around the problem by always using |
| 2217 | * hardreset on the port and not depending on receiving signature FIS |
| 2218 | * afterward. If signature FIS isn't received soon, ATA class is |
| 2219 | * assumed without follow-up softreset. |
| 2220 | */ |
| 2221 | static void ahci_p5wdh_workaround(struct ata_host *host) |
| 2222 | { |
| 2223 | static struct dmi_system_id sysids[] = { |
| 2224 | { |
| 2225 | .ident = "P5W DH Deluxe", |
| 2226 | .matches = { |
| 2227 | DMI_MATCH(DMI_SYS_VENDOR, |
| 2228 | "ASUSTEK COMPUTER INC"), |
| 2229 | DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"), |
| 2230 | }, |
| 2231 | }, |
| 2232 | { } |
| 2233 | }; |
| 2234 | struct pci_dev *pdev = to_pci_dev(host->dev); |
| 2235 | |
| 2236 | if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) && |
| 2237 | dmi_check_system(sysids)) { |
| 2238 | struct ata_port *ap = host->ports[1]; |
| 2239 | |
| 2240 | dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH " |
| 2241 | "Deluxe on-board SIMG4726 workaround\n"); |
| 2242 | |
| 2243 | ap->ops = &ahci_p5wdh_ops; |
| 2244 | ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA; |
| 2245 | } |
| 2246 | } |
| 2247 | |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2248 | static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | { |
| 2250 | static int printed_version; |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2251 | struct ata_port_info pi = ahci_port_info[ent->driver_data]; |
| 2252 | const struct ata_port_info *ppi[] = { &pi, NULL }; |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2253 | struct device *dev = &pdev->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | struct ahci_host_priv *hpriv; |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2255 | struct ata_host *host; |
| 2256 | int i, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | |
| 2258 | VPRINTK("ENTER\n"); |
| 2259 | |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 2260 | WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS); |
| 2261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | if (!printed_version++) |
Jeff Garzik | a9524a7 | 2005-10-30 14:39:11 -0500 | [diff] [blame] | 2263 | dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2265 | /* acquire resources */ |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2266 | rc = pcim_enable_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | if (rc) |
| 2268 | return rc; |
| 2269 | |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 2270 | rc = pcim_iomap_regions(pdev, 1 << AHCI_PCI_BAR, DRV_NAME); |
| 2271 | if (rc == -EBUSY) |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2272 | pcim_pin_device(pdev); |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 2273 | if (rc) |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2274 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2276 | hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL); |
| 2277 | if (!hpriv) |
| 2278 | return -ENOMEM; |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 2279 | hpriv->flags |= (unsigned long)pi.private_data; |
| 2280 | |
| 2281 | if ((hpriv->flags & AHCI_HFLAG_NO_MSI) || pci_enable_msi(pdev)) |
| 2282 | pci_intx(pdev, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2284 | /* save initial config */ |
Tejun Heo | 417a1a6 | 2007-09-23 13:19:55 +0900 | [diff] [blame] | 2285 | ahci_save_initial_config(pdev, hpriv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2287 | /* prepare host */ |
Tejun Heo | 274c1fd | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2288 | if (hpriv->cap & HOST_CAP_NCQ) |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2289 | pi.flags |= ATA_FLAG_NCQ; |
| 2290 | |
Tejun Heo | 7d50b60 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 2291 | if (hpriv->cap & HOST_CAP_PMP) |
| 2292 | pi.flags |= ATA_FLAG_PMP; |
| 2293 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2294 | host = ata_host_alloc_pinfo(&pdev->dev, ppi, fls(hpriv->port_map)); |
| 2295 | if (!host) |
| 2296 | return -ENOMEM; |
| 2297 | host->iomap = pcim_iomap_table(pdev); |
| 2298 | host->private_data = hpriv; |
| 2299 | |
| 2300 | for (i = 0; i < host->n_ports; i++) { |
Jeff Garzik | dab632e | 2007-05-28 08:33:01 -0400 | [diff] [blame] | 2301 | struct ata_port *ap = host->ports[i]; |
| 2302 | void __iomem *port_mmio = ahci_port_base(ap); |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2303 | |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 2304 | ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar"); |
| 2305 | ata_port_pbar_desc(ap, AHCI_PCI_BAR, |
| 2306 | 0x100 + ap->port_no * 0x80, "port"); |
| 2307 | |
Kristen Carlson Accardi | 3155659 | 2007-10-25 01:33:26 -0400 | [diff] [blame] | 2308 | /* set initial link pm policy */ |
| 2309 | ap->pm_policy = NOT_AVAILABLE; |
| 2310 | |
Jeff Garzik | dab632e | 2007-05-28 08:33:01 -0400 | [diff] [blame] | 2311 | /* standard SATA port setup */ |
Tejun Heo | 203ef6c | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2312 | if (hpriv->port_map & (1 << i)) |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2313 | ap->ioaddr.cmd_addr = port_mmio; |
Jeff Garzik | dab632e | 2007-05-28 08:33:01 -0400 | [diff] [blame] | 2314 | |
| 2315 | /* disabled/not-implemented port */ |
| 2316 | else |
| 2317 | ap->ops = &ata_dummy_port_ops; |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2318 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | |
Tejun Heo | edc9305 | 2007-10-25 14:59:16 +0900 | [diff] [blame] | 2320 | /* apply workaround for ASUS P5W DH Deluxe mainboard */ |
| 2321 | ahci_p5wdh_workaround(host); |
| 2322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | /* initialize adapter */ |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2324 | rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | if (rc) |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 2326 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2328 | rc = ahci_reset_controller(host); |
| 2329 | if (rc) |
| 2330 | return rc; |
Tejun Heo | 12fad3f | 2006-05-15 21:03:55 +0900 | [diff] [blame] | 2331 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2332 | ahci_init_controller(host); |
| 2333 | ahci_print_info(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2334 | |
Tejun Heo | 4447d35 | 2007-04-17 23:44:08 +0900 | [diff] [blame] | 2335 | pci_set_master(pdev); |
| 2336 | return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED, |
| 2337 | &ahci_sht); |
Jeff Garzik | 907f467 | 2005-05-12 15:03:42 -0400 | [diff] [blame] | 2338 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | |
| 2340 | static int __init ahci_init(void) |
| 2341 | { |
Pavel Roskin | b788719 | 2006-08-10 18:13:18 +0900 | [diff] [blame] | 2342 | return pci_register_driver(&ahci_pci_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2343 | } |
| 2344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | static void __exit ahci_exit(void) |
| 2346 | { |
| 2347 | pci_unregister_driver(&ahci_pci_driver); |
| 2348 | } |
| 2349 | |
| 2350 | |
| 2351 | MODULE_AUTHOR("Jeff Garzik"); |
| 2352 | MODULE_DESCRIPTION("AHCI SATA low-level driver"); |
| 2353 | MODULE_LICENSE("GPL"); |
| 2354 | MODULE_DEVICE_TABLE(pci, ahci_pci_tbl); |
Jeff Garzik | 6885433 | 2005-08-23 02:53:51 -0400 | [diff] [blame] | 2355 | MODULE_VERSION(DRV_VERSION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | |
| 2357 | module_init(ahci_init); |
| 2358 | module_exit(ahci_exit); |