blob: e7e2c7a147f132948f0decee5cec658cb2389b12 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ahci.c - AHCI SATA support
3 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04004 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04008 * Copyright 2004-2005 Red Hat, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040011 * 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 Torvalds1da177e2005-04-16 15:20:36 -070030 * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040031 * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 *
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.org87507cf2005-04-08 09:53:06 +020042#include <linux/dma-mapping.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050043#include <linux/device.h>
Tejun Heoedc93052007-10-25 14:59:16 +090044#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050046#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define DRV_NAME "ahci"
Tejun Heo7d50b602007-09-23 13:19:54 +090050#define DRV_VERSION "3.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Milburn87943ac2008-10-13 14:38:36 -050052/* Enclosure Management Control */
53#define EM_CTRL_MSG_TYPE 0x000f0000
54
55/* Enclosure Management LED Message Type */
56#define EM_MSG_LED_HBA_PORT 0x0000000f
57#define EM_MSG_LED_PMP_SLOT 0x0000ff00
58#define EM_MSG_LED_VALUE 0xffff0000
59#define EM_MSG_LED_VALUE_ACTIVITY 0x00070000
60#define EM_MSG_LED_VALUE_OFF 0xfff80000
61#define EM_MSG_LED_VALUE_ON 0x00010000
62
Tejun Heoa22e6442008-03-10 10:25:25 +090063static int ahci_skip_host_reset;
Arjan van de Venf3d7f232009-01-26 02:05:44 -080064static int ahci_ignore_sss;
65
Tejun Heoa22e6442008-03-10 10:25:25 +090066module_param_named(skip_host_reset, ahci_skip_host_reset, int, 0444);
67MODULE_PARM_DESC(skip_host_reset, "skip global host reset (0=don't skip, 1=skip)");
68
Arjan van de Venf3d7f232009-01-26 02:05:44 -080069module_param_named(ignore_sss, ahci_ignore_sss, int, 0444);
70MODULE_PARM_DESC(ignore_sss, "Ignore staggered spinup flag (0=don't ignore, 1=ignore)");
71
Kristen Carlson Accardi31556592007-10-25 01:33:26 -040072static int ahci_enable_alpm(struct ata_port *ap,
73 enum link_pm policy);
74static void ahci_disable_alpm(struct ata_port *ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -070075static ssize_t ahci_led_show(struct ata_port *ap, char *buf);
76static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
77 size_t size);
78static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
79 ssize_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81enum {
82 AHCI_PCI_BAR = 5,
Tejun Heo648a88b2006-11-09 15:08:40 +090083 AHCI_MAX_PORTS = 32,
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 AHCI_MAX_SG = 168, /* hardware max is 64K */
85 AHCI_DMA_BOUNDARY = 0xffffffff,
Tejun Heo12fad3f2006-05-15 21:03:55 +090086 AHCI_MAX_CMDS = 32,
Tejun Heodd410ff2006-05-15 21:03:50 +090087 AHCI_CMD_SZ = 32,
Tejun Heo12fad3f2006-05-15 21:03:55 +090088 AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 AHCI_RX_FIS_SZ = 256,
Jeff Garzika0ea7322005-06-04 01:13:15 -040090 AHCI_CMD_TBL_CDB = 0x40,
Tejun Heodd410ff2006-05-15 21:03:50 +090091 AHCI_CMD_TBL_HDR_SZ = 0x80,
92 AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16),
93 AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS,
94 AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ +
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 AHCI_RX_FIS_SZ,
Shane Huangd6ef3152009-12-09 17:23:04 +080096 AHCI_PORT_PRIV_FBS_DMA_SZ = AHCI_CMD_SLOT_SZ +
97 AHCI_CMD_TBL_AR_SZ +
98 (AHCI_RX_FIS_SZ * 16),
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 AHCI_IRQ_ON_SG = (1 << 31),
100 AHCI_CMD_ATAPI = (1 << 5),
101 AHCI_CMD_WRITE = (1 << 6),
Tejun Heo4b10e552006-03-12 11:25:27 +0900102 AHCI_CMD_PREFETCH = (1 << 7),
Tejun Heo22b49982006-01-23 21:38:44 +0900103 AHCI_CMD_RESET = (1 << 8),
104 AHCI_CMD_CLR_BUSY = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
Tejun Heo0291f952007-01-25 19:16:28 +0900107 RX_FIS_SDB = 0x58, /* offset of SDB FIS data */
Tejun Heo78cd52d2006-05-15 20:58:29 +0900108 RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 board_ahci = 0,
Tejun Heo7a234af2007-09-03 12:44:57 +0900111 board_ahci_vt8251 = 1,
112 board_ahci_ign_iferr = 2,
113 board_ahci_sb600 = 3,
114 board_ahci_mv = 4,
Shane Huange427fe02008-12-30 10:53:41 +0800115 board_ahci_sb700 = 5, /* for SB700 and SB800 */
Tejun Heoe297d992008-06-10 00:13:04 +0900116 board_ahci_mcp65 = 6,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400117 board_ahci_nopmp = 7,
Tejun Heoaa431dd2009-04-08 14:25:31 -0700118 board_ahci_yesncq = 8,
Shaohua Li1b677af2009-11-16 09:56:05 +0800119 board_ahci_nosntf = 9,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 /* global controller registers */
122 HOST_CAP = 0x00, /* host capabilities */
123 HOST_CTL = 0x04, /* global host control */
124 HOST_IRQ_STAT = 0x08, /* interrupt status */
125 HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
126 HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700127 HOST_EM_LOC = 0x1c, /* Enclosure Management location */
128 HOST_EM_CTL = 0x20, /* Enclosure Management Control */
Robert Hancock4c521c82009-09-20 17:02:31 -0600129 HOST_CAP2 = 0x24, /* host capabilities, extended */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 /* HOST_CTL bits */
132 HOST_RESET = (1 << 0), /* reset controller; self-clear */
133 HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
134 HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
135
136 /* HOST_CAP bits */
Robert Hancock4c521c82009-09-20 17:02:31 -0600137 HOST_CAP_SXS = (1 << 5), /* Supports External SATA */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700138 HOST_CAP_EMS = (1 << 6), /* Enclosure Management support */
Robert Hancock4c521c82009-09-20 17:02:31 -0600139 HOST_CAP_CCC = (1 << 7), /* Command Completion Coalescing */
140 HOST_CAP_PART = (1 << 13), /* Partial state capable */
141 HOST_CAP_SSC = (1 << 14), /* Slumber state capable */
142 HOST_CAP_PIO_MULTI = (1 << 15), /* PIO multiple DRQ support */
143 HOST_CAP_FBS = (1 << 16), /* FIS-based switching support */
Tejun Heo7d50b602007-09-23 13:19:54 +0900144 HOST_CAP_PMP = (1 << 17), /* Port Multiplier support */
Robert Hancock4c521c82009-09-20 17:02:31 -0600145 HOST_CAP_ONLY = (1 << 18), /* Supports AHCI mode only */
Tejun Heo22b49982006-01-23 21:38:44 +0900146 HOST_CAP_CLO = (1 << 24), /* Command List Override support */
Robert Hancock4c521c82009-09-20 17:02:31 -0600147 HOST_CAP_LED = (1 << 25), /* Supports activity LED */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400148 HOST_CAP_ALPM = (1 << 26), /* Aggressive Link PM support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900149 HOST_CAP_SSS = (1 << 27), /* Staggered Spin-up */
Robert Hancock4c521c82009-09-20 17:02:31 -0600150 HOST_CAP_MPS = (1 << 28), /* Mechanical presence switch */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900151 HOST_CAP_SNTF = (1 << 29), /* SNotification register */
Tejun Heo979db802006-05-15 21:03:52 +0900152 HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */
Tejun Heodd410ff2006-05-15 21:03:50 +0900153 HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Robert Hancock4c521c82009-09-20 17:02:31 -0600155 /* HOST_CAP2 bits */
156 HOST_CAP2_BOH = (1 << 0), /* BIOS/OS handoff supported */
157 HOST_CAP2_NVMHCI = (1 << 1), /* NVMHCI supported */
158 HOST_CAP2_APST = (1 << 2), /* Automatic partial to slumber */
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /* registers for each SATA port */
161 PORT_LST_ADDR = 0x00, /* command list DMA addr */
162 PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
163 PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
164 PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
165 PORT_IRQ_STAT = 0x10, /* interrupt status */
166 PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
167 PORT_CMD = 0x18, /* port command */
168 PORT_TFDATA = 0x20, /* taskfile data */
169 PORT_SIG = 0x24, /* device TF signature */
170 PORT_CMD_ISSUE = 0x38, /* command issue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
172 PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
173 PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
174 PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900175 PORT_SCR_NTF = 0x3c, /* SATA phy register: SNotification */
Shane Huangd6ef3152009-12-09 17:23:04 +0800176 PORT_FBS = 0x40, /* FIS-based Switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /* PORT_IRQ_{STAT,MASK} bits */
179 PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
180 PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
181 PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
182 PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
183 PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
184 PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
185 PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
186 PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
187
188 PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
189 PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
190 PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
191 PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
192 PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
193 PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
194 PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
195 PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
196 PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
197
Tejun Heo78cd52d2006-05-15 20:58:29 +0900198 PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR |
199 PORT_IRQ_IF_ERR |
200 PORT_IRQ_CONNECT |
Tejun Heo42969712006-05-31 18:28:18 +0900201 PORT_IRQ_PHYRDY |
Tejun Heo7d50b602007-09-23 13:19:54 +0900202 PORT_IRQ_UNK_FIS |
203 PORT_IRQ_BAD_PMP,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900204 PORT_IRQ_ERROR = PORT_IRQ_FREEZE |
205 PORT_IRQ_TF_ERR |
206 PORT_IRQ_HBUS_DATA_ERR,
207 DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
208 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS |
209 PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 /* PORT_CMD bits */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400212 PORT_CMD_ASP = (1 << 27), /* Aggressive Slumber/Partial */
213 PORT_CMD_ALPE = (1 << 26), /* Aggressive Link PM enable */
Jeff Garzik02eaa662005-11-12 01:32:19 -0500214 PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
Shane Huangd6ef3152009-12-09 17:23:04 +0800215 PORT_CMD_FBSCP = (1 << 22), /* FBS Capable Port */
Tejun Heo7d50b602007-09-23 13:19:54 +0900216 PORT_CMD_PMP = (1 << 17), /* PMP attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
218 PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
219 PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
Tejun Heo22b49982006-01-23 21:38:44 +0900220 PORT_CMD_CLO = (1 << 3), /* Command list override */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
222 PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
223 PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
224
Tejun Heo0be0aa92006-07-26 15:59:26 +0900225 PORT_CMD_ICC_MASK = (0xf << 28), /* i/f ICC state mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
227 PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
228 PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
Jeff Garzik4b0060f2005-06-04 00:50:22 -0400229
Shane Huangd6ef3152009-12-09 17:23:04 +0800230 PORT_FBS_DWE_OFFSET = 16, /* FBS device with error offset */
231 PORT_FBS_ADO_OFFSET = 12, /* FBS active dev optimization offset */
232 PORT_FBS_DEV_OFFSET = 8, /* FBS device to issue offset */
233 PORT_FBS_DEV_MASK = (0xf << PORT_FBS_DEV_OFFSET), /* FBS.DEV */
234 PORT_FBS_SDE = (1 << 2), /* FBS single device error */
235 PORT_FBS_DEC = (1 << 1), /* FBS device error clear */
236 PORT_FBS_EN = (1 << 0), /* Enable FBS */
237
Tejun Heo417a1a62007-09-23 13:19:55 +0900238 /* hpriv->flags bits */
239 AHCI_HFLAG_NO_NCQ = (1 << 0),
240 AHCI_HFLAG_IGN_IRQ_IF_ERR = (1 << 1), /* ignore IRQ_IF_ERR */
241 AHCI_HFLAG_IGN_SERR_INTERNAL = (1 << 2), /* ignore SERR_INTERNAL */
242 AHCI_HFLAG_32BIT_ONLY = (1 << 3), /* force 32bit */
243 AHCI_HFLAG_MV_PATA = (1 << 4), /* PATA port */
244 AHCI_HFLAG_NO_MSI = (1 << 5), /* no PCI MSI */
Tejun Heo6949b912007-09-23 13:19:55 +0900245 AHCI_HFLAG_NO_PMP = (1 << 6), /* no PMP */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400246 AHCI_HFLAG_NO_HOTPLUG = (1 << 7), /* ignore PxSERR.DIAG.N */
Jeff Garzika8785392008-02-28 15:43:48 -0500247 AHCI_HFLAG_SECT255 = (1 << 8), /* max 255 sectors */
Tejun Heoe297d992008-06-10 00:13:04 +0900248 AHCI_HFLAG_YES_NCQ = (1 << 9), /* force NCQ cap on */
Tejun Heo9b10ae82009-05-30 20:50:12 +0900249 AHCI_HFLAG_NO_SUSPEND = (1 << 10), /* don't suspend */
Tejun Heo55946392009-08-04 14:30:08 +0900250 AHCI_HFLAG_SRST_TOUT_IS_OFFLINE = (1 << 11), /* treat SRST timeout as
251 link offline */
Shaohua Li1b677af2009-11-16 09:56:05 +0800252 AHCI_HFLAG_NO_SNTF = (1 << 12), /* no sntf */
Tejun Heo417a1a62007-09-23 13:19:55 +0900253
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200254 /* ap->flags bits */
Tejun Heo1188c0d2007-04-23 02:41:05 +0900255
256 AHCI_FLAG_COMMON = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
257 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400258 ATA_FLAG_ACPI_SATA | ATA_FLAG_AN |
259 ATA_FLAG_IPM,
Tejun Heoc4f77922007-12-06 15:09:43 +0900260
261 ICH_MAP = 0x90, /* ICH MAP register */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700262
Tejun Heod50ce072009-05-12 10:57:41 +0900263 /* em constants */
264 EM_MAX_SLOTS = 8,
265 EM_MAX_RETRY = 5,
266
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700267 /* em_ctl bits */
268 EM_CTL_RST = (1 << 9), /* Reset */
269 EM_CTL_TM = (1 << 8), /* Transmit Message */
270 EM_CTL_ALHD = (1 << 26), /* Activity LED */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271};
272
273struct ahci_cmd_hdr {
Al Viro4ca4e432007-12-30 09:32:22 +0000274 __le32 opts;
275 __le32 status;
276 __le32 tbl_addr;
277 __le32 tbl_addr_hi;
278 __le32 reserved[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279};
280
281struct ahci_sg {
Al Viro4ca4e432007-12-30 09:32:22 +0000282 __le32 addr;
283 __le32 addr_hi;
284 __le32 reserved;
285 __le32 flags_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286};
287
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700288struct ahci_em_priv {
289 enum sw_activity blink_policy;
290 struct timer_list timer;
291 unsigned long saved_activity;
292 unsigned long activity;
293 unsigned long led_state;
294};
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296struct ahci_host_priv {
Tejun Heo417a1a62007-09-23 13:19:55 +0900297 unsigned int flags; /* AHCI_HFLAG_* */
Tejun Heod447df12007-03-18 22:15:33 +0900298 u32 cap; /* cap to use */
Robert Hancock4c521c82009-09-20 17:02:31 -0600299 u32 cap2; /* cap2 to use */
Tejun Heod447df12007-03-18 22:15:33 +0900300 u32 port_map; /* port map to use */
301 u32 saved_cap; /* saved initial cap */
Robert Hancock4c521c82009-09-20 17:02:31 -0600302 u32 saved_cap2; /* saved initial cap2 */
Tejun Heod447df12007-03-18 22:15:33 +0900303 u32 saved_port_map; /* saved initial port_map */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700304 u32 em_loc; /* enclosure management location */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
307struct ahci_port_priv {
Tejun Heo7d50b602007-09-23 13:19:54 +0900308 struct ata_link *active_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 struct ahci_cmd_hdr *cmd_slot;
310 dma_addr_t cmd_slot_dma;
311 void *cmd_tbl;
312 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 void *rx_fis;
314 dma_addr_t rx_fis_dma;
Tejun Heo0291f952007-01-25 19:16:28 +0900315 /* for NCQ spurious interrupt analysis */
Tejun Heo0291f952007-01-25 19:16:28 +0900316 unsigned int ncq_saw_d2h:1;
317 unsigned int ncq_saw_dmas:1;
Tejun Heoafb2d552007-02-27 13:24:19 +0900318 unsigned int ncq_saw_sdb:1;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -0700319 u32 intr_mask; /* interrupts to enable */
Shane Huangd6ef3152009-12-09 17:23:04 +0800320 bool fbs_supported; /* set iff FBS is supported */
321 bool fbs_enabled; /* set iff FBS is enabled */
322 int fbs_last_dev; /* save FBS.DEV of last FIS */
Tejun Heod50ce072009-05-12 10:57:41 +0900323 /* enclosure management info per PM slot */
324 struct ahci_em_priv em_priv[EM_MAX_SLOTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325};
326
Tejun Heo82ef04f2008-07-31 17:02:40 +0900327static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
328static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400329static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900330static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900331static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332static int ahci_port_start(struct ata_port *ap);
333static void ahci_port_stop(struct ata_port *ap);
Shane Huangd6ef3152009-12-09 17:23:04 +0800334static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335static void ahci_qc_prep(struct ata_queued_cmd *qc);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900336static void ahci_freeze(struct ata_port *ap);
337static void ahci_thaw(struct ata_port *ap);
Shane Huangd6ef3152009-12-09 17:23:04 +0800338static void ahci_enable_fbs(struct ata_port *ap);
339static void ahci_disable_fbs(struct ata_port *ap);
Tejun Heo7d50b602007-09-23 13:19:54 +0900340static void ahci_pmp_attach(struct ata_port *ap);
341static void ahci_pmp_detach(struct ata_port *ap);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900342static int ahci_softreset(struct ata_link *link, unsigned int *class,
343 unsigned long deadline);
Shane Huangbd172432008-06-10 15:52:04 +0800344static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
345 unsigned long deadline);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900346static int ahci_hardreset(struct ata_link *link, unsigned int *class,
347 unsigned long deadline);
348static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
349 unsigned long deadline);
350static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
351 unsigned long deadline);
352static void ahci_postreset(struct ata_link *link, unsigned int *class);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900353static void ahci_error_handler(struct ata_port *ap);
354static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -0400355static int ahci_port_resume(struct ata_port *ap);
Jeff Garzika8785392008-02-28 15:43:48 -0500356static void ahci_dev_config(struct ata_device *dev);
Jeff Garzikdab632e2007-05-28 08:33:01 -0400357static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
358 u32 opts);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900359#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900360static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
Tejun Heoc1332872006-07-26 15:59:26 +0900361static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
362static int ahci_pci_device_resume(struct pci_dev *pdev);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900363#endif
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700364static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
365static ssize_t ahci_activity_store(struct ata_device *dev,
366 enum sw_activity val);
367static void ahci_init_sw_activity(struct ata_link *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Matthew Garrett77cdec12009-07-17 19:13:47 +0100369static ssize_t ahci_show_host_caps(struct device *dev,
370 struct device_attribute *attr, char *buf);
Robert Hancock4c521c82009-09-20 17:02:31 -0600371static ssize_t ahci_show_host_cap2(struct device *dev,
372 struct device_attribute *attr, char *buf);
Matthew Garrett77cdec12009-07-17 19:13:47 +0100373static ssize_t ahci_show_host_version(struct device *dev,
374 struct device_attribute *attr, char *buf);
375static ssize_t ahci_show_port_cmd(struct device *dev,
376 struct device_attribute *attr, char *buf);
377
Robert Hancock9ffc5da2010-01-19 23:03:39 -0600378static DEVICE_ATTR(ahci_host_caps, S_IRUGO, ahci_show_host_caps, NULL);
379static DEVICE_ATTR(ahci_host_cap2, S_IRUGO, ahci_show_host_cap2, NULL);
380static DEVICE_ATTR(ahci_host_version, S_IRUGO, ahci_show_host_version, NULL);
381static DEVICE_ATTR(ahci_port_cmd, S_IRUGO, ahci_show_port_cmd, NULL);
Matthew Garrett77cdec12009-07-17 19:13:47 +0100382
Tony Jonesee959b02008-02-22 00:13:36 +0100383static struct device_attribute *ahci_shost_attrs[] = {
384 &dev_attr_link_power_management_policy,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700385 &dev_attr_em_message_type,
386 &dev_attr_em_message,
Matthew Garrett77cdec12009-07-17 19:13:47 +0100387 &dev_attr_ahci_host_caps,
Robert Hancock4c521c82009-09-20 17:02:31 -0600388 &dev_attr_ahci_host_cap2,
Matthew Garrett77cdec12009-07-17 19:13:47 +0100389 &dev_attr_ahci_host_version,
390 &dev_attr_ahci_port_cmd,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700391 NULL
392};
393
394static struct device_attribute *ahci_sdev_attrs[] = {
395 &dev_attr_sw_activity,
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200396 &dev_attr_unload_heads,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400397 NULL
398};
399
Jeff Garzik193515d2005-11-07 00:59:37 -0500400static struct scsi_host_template ahci_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900401 ATA_NCQ_SHT(DRV_NAME),
Tejun Heo12fad3f2006-05-15 21:03:55 +0900402 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 .dma_boundary = AHCI_DMA_BOUNDARY,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400405 .shost_attrs = ahci_shost_attrs,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700406 .sdev_attrs = ahci_sdev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407};
408
Tejun Heo029cfd62008-03-25 12:22:49 +0900409static struct ata_port_operations ahci_ops = {
410 .inherits = &sata_pmp_port_ops,
411
Shane Huangd6ef3152009-12-09 17:23:04 +0800412 .qc_defer = ahci_pmp_qc_defer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 .qc_prep = ahci_qc_prep,
414 .qc_issue = ahci_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900415 .qc_fill_rtf = ahci_qc_fill_rtf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Tejun Heo78cd52d2006-05-15 20:58:29 +0900417 .freeze = ahci_freeze,
418 .thaw = ahci_thaw,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900419 .softreset = ahci_softreset,
420 .hardreset = ahci_hardreset,
421 .postreset = ahci_postreset,
Tejun Heo071f44b2008-04-07 22:47:22 +0900422 .pmp_softreset = ahci_softreset,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900423 .error_handler = ahci_error_handler,
424 .post_internal_cmd = ahci_post_internal_cmd,
Tejun Heo029cfd62008-03-25 12:22:49 +0900425 .dev_config = ahci_dev_config,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900426
Tejun Heo029cfd62008-03-25 12:22:49 +0900427 .scr_read = ahci_scr_read,
428 .scr_write = ahci_scr_write,
Tejun Heo7d50b602007-09-23 13:19:54 +0900429 .pmp_attach = ahci_pmp_attach,
430 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900431
Tejun Heo029cfd62008-03-25 12:22:49 +0900432 .enable_pm = ahci_enable_alpm,
433 .disable_pm = ahci_disable_alpm,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700434 .em_show = ahci_led_show,
435 .em_store = ahci_led_store,
436 .sw_activity_show = ahci_activity_show,
437 .sw_activity_store = ahci_activity_store,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900438#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900439 .port_suspend = ahci_port_suspend,
440 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900441#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 .port_start = ahci_port_start,
443 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444};
445
Tejun Heo029cfd62008-03-25 12:22:49 +0900446static struct ata_port_operations ahci_vt8251_ops = {
447 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900448 .hardreset = ahci_vt8251_hardreset,
Tejun Heoad616ff2006-11-01 18:00:24 +0900449};
450
Tejun Heo029cfd62008-03-25 12:22:49 +0900451static struct ata_port_operations ahci_p5wdh_ops = {
452 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900453 .hardreset = ahci_p5wdh_hardreset,
Tejun Heoedc93052007-10-25 14:59:16 +0900454};
455
Shane Huangbd172432008-06-10 15:52:04 +0800456static struct ata_port_operations ahci_sb600_ops = {
457 .inherits = &ahci_ops,
458 .softreset = ahci_sb600_softreset,
459 .pmp_softreset = ahci_sb600_softreset,
460};
461
Tejun Heo417a1a62007-09-23 13:19:55 +0900462#define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
463
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100464static const struct ata_port_info ahci_port_info[] = {
Jeff Garzik4da646b2009-04-08 02:00:13 -0400465 [board_ahci] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 {
Tejun Heo1188c0d2007-04-23 02:41:05 +0900467 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100468 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400469 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 .port_ops = &ahci_ops,
471 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400472 [board_ahci_vt8251] =
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200473 {
Tejun Heo6949b912007-09-23 13:19:55 +0900474 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900475 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100476 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400477 .udma_mask = ATA_UDMA6,
Tejun Heoad616ff2006-11-01 18:00:24 +0900478 .port_ops = &ahci_vt8251_ops,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200479 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400480 [board_ahci_ign_iferr] =
Tejun Heo41669552006-11-29 11:33:14 +0900481 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900482 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR),
483 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100484 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400485 .udma_mask = ATA_UDMA6,
Tejun Heo41669552006-11-29 11:33:14 +0900486 .port_ops = &ahci_ops,
487 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400488 [board_ahci_sb600] =
Conke Hu55a61602007-03-27 18:33:05 +0800489 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900490 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
Tejun Heo2fcad9d2009-10-03 18:27:29 +0900491 AHCI_HFLAG_NO_MSI | AHCI_HFLAG_SECT255 |
492 AHCI_HFLAG_32BIT_ONLY),
Tejun Heo417a1a62007-09-23 13:19:55 +0900493 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100494 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400495 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800496 .port_ops = &ahci_sb600_ops,
Conke Hu55a61602007-03-27 18:33:05 +0800497 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400498 [board_ahci_mv] =
Jeff Garzikcd70c262007-07-08 02:29:42 -0400499 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900500 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI |
Tejun Heo17248462008-08-29 16:03:59 +0200501 AHCI_HFLAG_MV_PATA | AHCI_HFLAG_NO_PMP),
Jeff Garzikcd70c262007-07-08 02:29:42 -0400502 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo417a1a62007-09-23 13:19:55 +0900503 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100504 .pio_mask = ATA_PIO4,
Jeff Garzikcd70c262007-07-08 02:29:42 -0400505 .udma_mask = ATA_UDMA6,
506 .port_ops = &ahci_ops,
507 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400508 [board_ahci_sb700] = /* for SB700 and SB800 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800509 {
Shane Huangbd172432008-06-10 15:52:04 +0800510 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL),
Shane Huange39fc8c2008-02-22 05:00:31 -0800511 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100512 .pio_mask = ATA_PIO4,
Shane Huange39fc8c2008-02-22 05:00:31 -0800513 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800514 .port_ops = &ahci_sb600_ops,
Shane Huange39fc8c2008-02-22 05:00:31 -0800515 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400516 [board_ahci_mcp65] =
Tejun Heoe297d992008-06-10 00:13:04 +0900517 {
518 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
519 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100520 .pio_mask = ATA_PIO4,
Tejun Heoe297d992008-06-10 00:13:04 +0900521 .udma_mask = ATA_UDMA6,
522 .port_ops = &ahci_ops,
523 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400524 [board_ahci_nopmp] =
Tejun Heo9a3b1032008-06-18 20:56:58 -0400525 {
526 AHCI_HFLAGS (AHCI_HFLAG_NO_PMP),
527 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100528 .pio_mask = ATA_PIO4,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400529 .udma_mask = ATA_UDMA6,
530 .port_ops = &ahci_ops,
531 },
Shaohua Li1b677af2009-11-16 09:56:05 +0800532 [board_ahci_yesncq] =
Tejun Heoaa431dd2009-04-08 14:25:31 -0700533 {
534 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
535 .flags = AHCI_FLAG_COMMON,
536 .pio_mask = ATA_PIO4,
537 .udma_mask = ATA_UDMA6,
538 .port_ops = &ahci_ops,
539 },
Shaohua Li1b677af2009-11-16 09:56:05 +0800540 [board_ahci_nosntf] =
541 {
542 AHCI_HFLAGS (AHCI_HFLAG_NO_SNTF),
543 .flags = AHCI_FLAG_COMMON,
544 .pio_mask = ATA_PIO4,
545 .udma_mask = ATA_UDMA6,
546 .port_ops = &ahci_ops,
547 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548};
549
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500550static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400551 /* Intel */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400552 { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
553 { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
554 { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
555 { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
556 { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
Tejun Heo82490c02007-01-23 15:13:39 +0900557 { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400558 { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
559 { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
560 { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
561 { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
Tejun Heo7a234af2007-09-03 12:44:57 +0900562 { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */
Shaohua Li1b677af2009-11-16 09:56:05 +0800563 { PCI_VDEVICE(INTEL, 0x2822), board_ahci_nosntf }, /* ICH8 */
Tejun Heo7a234af2007-09-03 12:44:57 +0900564 { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */
565 { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */
566 { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */
567 { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */
568 { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */
569 { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */
570 { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */
571 { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */
572 { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */
573 { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */
574 { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */
575 { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */
576 { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */
577 { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */
578 { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */
Jason Gastond4155e62007-09-20 17:35:00 -0400579 { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */
580 { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800581 { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */
Mark Goodwinb2dde6a2009-06-26 10:44:11 -0500582 { PCI_VDEVICE(INTEL, 0x3a22), board_ahci }, /* ICH10 */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800583 { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */
David Milburnc1f57d92009-07-22 15:15:56 -0500584 { PCI_VDEVICE(INTEL, 0x3b22), board_ahci }, /* PCH AHCI */
585 { PCI_VDEVICE(INTEL, 0x3b23), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700586 { PCI_VDEVICE(INTEL, 0x3b24), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700587 { PCI_VDEVICE(INTEL, 0x3b25), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500588 { PCI_VDEVICE(INTEL, 0x3b29), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700589 { PCI_VDEVICE(INTEL, 0x3b2b), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700590 { PCI_VDEVICE(INTEL, 0x3b2c), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500591 { PCI_VDEVICE(INTEL, 0x3b2f), board_ahci }, /* PCH AHCI */
Seth Heasley5623cab2010-01-12 17:00:18 -0800592 { PCI_VDEVICE(INTEL, 0x1c02), board_ahci }, /* CPT AHCI */
593 { PCI_VDEVICE(INTEL, 0x1c03), board_ahci }, /* CPT AHCI */
594 { PCI_VDEVICE(INTEL, 0x1c04), board_ahci }, /* CPT RAID */
595 { PCI_VDEVICE(INTEL, 0x1c05), board_ahci }, /* CPT RAID */
596 { PCI_VDEVICE(INTEL, 0x1c06), board_ahci }, /* CPT RAID */
597 { PCI_VDEVICE(INTEL, 0x1c07), board_ahci }, /* CPT RAID */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400598
Tejun Heoe34bb372007-02-26 20:24:03 +0900599 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
600 { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
601 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400602
603 /* ATI */
Conke Huc65ec1c2007-04-11 18:23:14 +0800604 { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800605 { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb700 }, /* ATI SB700/800 */
606 { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb700 }, /* ATI SB700/800 */
607 { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb700 }, /* ATI SB700/800 */
608 { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb700 }, /* ATI SB700/800 */
609 { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb700 }, /* ATI SB700/800 */
610 { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb700 }, /* ATI SB700/800 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400611
Shane Huange2dd90b2009-07-29 11:34:49 +0800612 /* AMD */
Shane Huang5deab532009-10-13 11:14:00 +0800613 { PCI_VDEVICE(AMD, 0x7800), board_ahci }, /* AMD Hudson-2 */
Shane Huange2dd90b2009-07-29 11:34:49 +0800614 /* AMD is using RAID class only for ahci controllers */
615 { PCI_VENDOR_ID_AMD, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
616 PCI_CLASS_STORAGE_RAID << 8, 0xffffff, board_ahci },
617
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400618 /* VIA */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400619 { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
Tejun Heobf335542007-04-11 17:27:14 +0900620 { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400621
622 /* NVIDIA */
Tejun Heoe297d992008-06-10 00:13:04 +0900623 { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci_mcp65 }, /* MCP65 */
624 { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci_mcp65 }, /* MCP65 */
625 { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci_mcp65 }, /* MCP65 */
626 { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci_mcp65 }, /* MCP65 */
627 { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci_mcp65 }, /* MCP65 */
628 { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci_mcp65 }, /* MCP65 */
629 { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci_mcp65 }, /* MCP65 */
630 { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci_mcp65 }, /* MCP65 */
Tejun Heoaa431dd2009-04-08 14:25:31 -0700631 { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci_yesncq }, /* MCP67 */
632 { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci_yesncq }, /* MCP67 */
633 { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci_yesncq }, /* MCP67 */
634 { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci_yesncq }, /* MCP67 */
635 { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci_yesncq }, /* MCP67 */
636 { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci_yesncq }, /* MCP67 */
637 { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci_yesncq }, /* MCP67 */
638 { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci_yesncq }, /* MCP67 */
639 { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci_yesncq }, /* MCP67 */
640 { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci_yesncq }, /* MCP67 */
641 { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci_yesncq }, /* MCP67 */
642 { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci_yesncq }, /* MCP67 */
peer chen726206f2009-10-15 16:34:56 +0800643 { PCI_VDEVICE(NVIDIA, 0x0580), board_ahci_yesncq }, /* Linux ID */
Tejun Heo603037c2010-03-11 11:37:16 +0900644 { PCI_VDEVICE(NVIDIA, 0x0581), board_ahci_yesncq }, /* Linux ID */
645 { PCI_VDEVICE(NVIDIA, 0x0582), board_ahci_yesncq }, /* Linux ID */
646 { PCI_VDEVICE(NVIDIA, 0x0583), board_ahci_yesncq }, /* Linux ID */
647 { PCI_VDEVICE(NVIDIA, 0x0584), board_ahci_yesncq }, /* Linux ID */
648 { PCI_VDEVICE(NVIDIA, 0x0585), board_ahci_yesncq }, /* Linux ID */
649 { PCI_VDEVICE(NVIDIA, 0x0586), board_ahci_yesncq }, /* Linux ID */
650 { PCI_VDEVICE(NVIDIA, 0x0587), board_ahci_yesncq }, /* Linux ID */
651 { PCI_VDEVICE(NVIDIA, 0x0588), board_ahci_yesncq }, /* Linux ID */
652 { PCI_VDEVICE(NVIDIA, 0x0589), board_ahci_yesncq }, /* Linux ID */
653 { PCI_VDEVICE(NVIDIA, 0x058a), board_ahci_yesncq }, /* Linux ID */
654 { PCI_VDEVICE(NVIDIA, 0x058b), board_ahci_yesncq }, /* Linux ID */
655 { PCI_VDEVICE(NVIDIA, 0x058c), board_ahci_yesncq }, /* Linux ID */
656 { PCI_VDEVICE(NVIDIA, 0x058d), board_ahci_yesncq }, /* Linux ID */
657 { PCI_VDEVICE(NVIDIA, 0x058e), board_ahci_yesncq }, /* Linux ID */
658 { PCI_VDEVICE(NVIDIA, 0x058f), board_ahci_yesncq }, /* Linux ID */
Tejun Heoaa431dd2009-04-08 14:25:31 -0700659 { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci_yesncq }, /* MCP73 */
660 { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci_yesncq }, /* MCP73 */
661 { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci_yesncq }, /* MCP73 */
662 { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci_yesncq }, /* MCP73 */
663 { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci_yesncq }, /* MCP73 */
664 { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci_yesncq }, /* MCP73 */
665 { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci_yesncq }, /* MCP73 */
666 { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci_yesncq }, /* MCP73 */
667 { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci_yesncq }, /* MCP73 */
668 { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci_yesncq }, /* MCP73 */
669 { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci_yesncq }, /* MCP73 */
670 { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci_yesncq }, /* MCP73 */
Peer Chen0522b282007-06-07 18:05:12 +0800671 { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */
672 { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */
673 { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */
674 { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */
675 { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */
676 { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */
677 { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */
678 { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */
679 { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */
680 { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
681 { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
682 { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
peerchen6ba86952007-12-03 22:20:37 +0800683 { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */
684 { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */
685 { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */
686 { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */
Peer Chen71008192007-09-24 10:16:25 +0800687 { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */
688 { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */
689 { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */
690 { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */
691 { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */
692 { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */
693 { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */
694 { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */
peerchen7adbe462009-02-27 16:58:41 +0800695 { PCI_VDEVICE(NVIDIA, 0x0d84), board_ahci }, /* MCP89 */
696 { PCI_VDEVICE(NVIDIA, 0x0d85), board_ahci }, /* MCP89 */
697 { PCI_VDEVICE(NVIDIA, 0x0d86), board_ahci }, /* MCP89 */
698 { PCI_VDEVICE(NVIDIA, 0x0d87), board_ahci }, /* MCP89 */
699 { PCI_VDEVICE(NVIDIA, 0x0d88), board_ahci }, /* MCP89 */
700 { PCI_VDEVICE(NVIDIA, 0x0d89), board_ahci }, /* MCP89 */
701 { PCI_VDEVICE(NVIDIA, 0x0d8a), board_ahci }, /* MCP89 */
702 { PCI_VDEVICE(NVIDIA, 0x0d8b), board_ahci }, /* MCP89 */
703 { PCI_VDEVICE(NVIDIA, 0x0d8c), board_ahci }, /* MCP89 */
704 { PCI_VDEVICE(NVIDIA, 0x0d8d), board_ahci }, /* MCP89 */
705 { PCI_VDEVICE(NVIDIA, 0x0d8e), board_ahci }, /* MCP89 */
706 { PCI_VDEVICE(NVIDIA, 0x0d8f), board_ahci }, /* MCP89 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400707
Jeff Garzik95916ed2006-07-29 04:10:14 -0400708 /* SiS */
Tejun Heo20e2de42008-08-01 12:51:43 +0900709 { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */
710 { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 968 */
711 { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */
Jeff Garzik95916ed2006-07-29 04:10:14 -0400712
Jeff Garzikcd70c262007-07-08 02:29:42 -0400713 /* Marvell */
714 { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100715 { PCI_VDEVICE(MARVELL, 0x6121), board_ahci_mv }, /* 6121 */
Jeff Garzikcd70c262007-07-08 02:29:42 -0400716
Mark Nelsonc77a0362008-10-23 14:08:16 +1100717 /* Promise */
718 { PCI_VDEVICE(PROMISE, 0x3f20), board_ahci }, /* PDC42819 */
719
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500720 /* Generic, PCI class code for AHCI */
721 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Conke Huc9f89472007-01-09 05:32:51 -0500722 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 { } /* terminate list */
725};
726
727
728static struct pci_driver ahci_pci_driver = {
729 .name = DRV_NAME,
730 .id_table = ahci_pci_tbl,
731 .probe = ahci_init_one,
Tejun Heo24dc5f32007-01-20 16:00:28 +0900732 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900733#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900734 .suspend = ahci_pci_device_suspend,
735 .resume = ahci_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900736#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737};
738
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700739static int ahci_em_messages = 1;
740module_param(ahci_em_messages, int, 0444);
741/* add other LED protocol types when they become supported */
742MODULE_PARM_DESC(ahci_em_messages,
743 "Set AHCI Enclosure Management Message type (0 = disabled, 1 = LED");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Alan Cox5b66c822008-09-03 14:48:34 +0100745#if defined(CONFIG_PATA_MARVELL) || defined(CONFIG_PATA_MARVELL_MODULE)
746static int marvell_enable;
747#else
748static int marvell_enable = 1;
749#endif
750module_param(marvell_enable, int, 0644);
751MODULE_PARM_DESC(marvell_enable, "Marvell SATA via AHCI (1 = enabled)");
752
753
Tejun Heo98fa4b62006-11-02 12:17:23 +0900754static inline int ahci_nr_ports(u32 cap)
755{
756 return (cap & 0x1f) + 1;
757}
758
Jeff Garzikdab632e2007-05-28 08:33:01 -0400759static inline void __iomem *__ahci_port_base(struct ata_host *host,
760 unsigned int port_no)
761{
762 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
763
764 return mmio + 0x100 + (port_no * 0x80);
765}
766
Tejun Heo4447d352007-04-17 23:44:08 +0900767static inline void __iomem *ahci_port_base(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Jeff Garzikdab632e2007-05-28 08:33:01 -0400769 return __ahci_port_base(ap->host, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Tejun Heob710a1f2008-01-05 23:11:57 +0900772static void ahci_enable_ahci(void __iomem *mmio)
773{
Tejun Heo15fe9822008-04-23 20:52:58 +0900774 int i;
Tejun Heob710a1f2008-01-05 23:11:57 +0900775 u32 tmp;
776
777 /* turn on AHCI_EN */
778 tmp = readl(mmio + HOST_CTL);
Tejun Heo15fe9822008-04-23 20:52:58 +0900779 if (tmp & HOST_AHCI_EN)
780 return;
781
782 /* Some controllers need AHCI_EN to be written multiple times.
783 * Try a few times before giving up.
784 */
785 for (i = 0; i < 5; i++) {
Tejun Heob710a1f2008-01-05 23:11:57 +0900786 tmp |= HOST_AHCI_EN;
787 writel(tmp, mmio + HOST_CTL);
788 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
Tejun Heo15fe9822008-04-23 20:52:58 +0900789 if (tmp & HOST_AHCI_EN)
790 return;
791 msleep(10);
Tejun Heob710a1f2008-01-05 23:11:57 +0900792 }
Tejun Heo15fe9822008-04-23 20:52:58 +0900793
794 WARN_ON(1);
Tejun Heob710a1f2008-01-05 23:11:57 +0900795}
796
Matthew Garrett77cdec12009-07-17 19:13:47 +0100797static ssize_t ahci_show_host_caps(struct device *dev,
798 struct device_attribute *attr, char *buf)
799{
800 struct Scsi_Host *shost = class_to_shost(dev);
801 struct ata_port *ap = ata_shost_to_port(shost);
802 struct ahci_host_priv *hpriv = ap->host->private_data;
803
804 return sprintf(buf, "%x\n", hpriv->cap);
805}
806
Robert Hancock4c521c82009-09-20 17:02:31 -0600807static ssize_t ahci_show_host_cap2(struct device *dev,
808 struct device_attribute *attr, char *buf)
809{
810 struct Scsi_Host *shost = class_to_shost(dev);
811 struct ata_port *ap = ata_shost_to_port(shost);
812 struct ahci_host_priv *hpriv = ap->host->private_data;
813
814 return sprintf(buf, "%x\n", hpriv->cap2);
815}
816
Matthew Garrett77cdec12009-07-17 19:13:47 +0100817static ssize_t ahci_show_host_version(struct device *dev,
818 struct device_attribute *attr, char *buf)
819{
820 struct Scsi_Host *shost = class_to_shost(dev);
821 struct ata_port *ap = ata_shost_to_port(shost);
822 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
823
824 return sprintf(buf, "%x\n", readl(mmio + HOST_VERSION));
825}
826
827static ssize_t ahci_show_port_cmd(struct device *dev,
828 struct device_attribute *attr, char *buf)
829{
830 struct Scsi_Host *shost = class_to_shost(dev);
831 struct ata_port *ap = ata_shost_to_port(shost);
832 void __iomem *port_mmio = ahci_port_base(ap);
833
834 return sprintf(buf, "%x\n", readl(port_mmio + PORT_CMD));
835}
836
Tejun Heod447df12007-03-18 22:15:33 +0900837/**
838 * ahci_save_initial_config - Save and fixup initial config values
Tejun Heo4447d352007-04-17 23:44:08 +0900839 * @pdev: target PCI device
Tejun Heo4447d352007-04-17 23:44:08 +0900840 * @hpriv: host private area to store config values
Tejun Heod447df12007-03-18 22:15:33 +0900841 *
842 * Some registers containing configuration info might be setup by
843 * BIOS and might be cleared on reset. This function saves the
844 * initial values of those registers into @hpriv such that they
845 * can be restored after controller reset.
846 *
847 * If inconsistent, config values are fixed up by this function.
848 *
849 * LOCKING:
850 * None.
851 */
Tejun Heo4447d352007-04-17 23:44:08 +0900852static void ahci_save_initial_config(struct pci_dev *pdev,
Tejun Heo4447d352007-04-17 23:44:08 +0900853 struct ahci_host_priv *hpriv)
Tejun Heod447df12007-03-18 22:15:33 +0900854{
Tejun Heo4447d352007-04-17 23:44:08 +0900855 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
Robert Hancock4c521c82009-09-20 17:02:31 -0600856 u32 cap, cap2, vers, port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900857 int i;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100858 int mv;
Tejun Heod447df12007-03-18 22:15:33 +0900859
Tejun Heob710a1f2008-01-05 23:11:57 +0900860 /* make sure AHCI mode is enabled before accessing CAP */
861 ahci_enable_ahci(mmio);
862
Tejun Heod447df12007-03-18 22:15:33 +0900863 /* Values prefixed with saved_ are written back to host after
864 * reset. Values without are used for driver operation.
865 */
866 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
867 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
868
Robert Hancock4c521c82009-09-20 17:02:31 -0600869 /* CAP2 register is only defined for AHCI 1.2 and later */
870 vers = readl(mmio + HOST_VERSION);
871 if ((vers >> 16) > 1 ||
872 ((vers >> 16) == 1 && (vers & 0xFFFF) >= 0x200))
873 hpriv->saved_cap2 = cap2 = readl(mmio + HOST_CAP2);
874 else
875 hpriv->saved_cap2 = cap2 = 0;
876
Tejun Heo274c1fd2007-07-16 14:29:40 +0900877 /* some chips have errata preventing 64bit use */
Tejun Heo417a1a62007-09-23 13:19:55 +0900878 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Tejun Heoc7a42152007-05-18 16:23:19 +0200879 dev_printk(KERN_INFO, &pdev->dev,
880 "controller can't do 64bit DMA, forcing 32bit\n");
881 cap &= ~HOST_CAP_64;
882 }
883
Tejun Heo417a1a62007-09-23 13:19:55 +0900884 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Tejun Heo274c1fd2007-07-16 14:29:40 +0900885 dev_printk(KERN_INFO, &pdev->dev,
886 "controller can't do NCQ, turning off CAP_NCQ\n");
887 cap &= ~HOST_CAP_NCQ;
888 }
889
Tejun Heoe297d992008-06-10 00:13:04 +0900890 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
891 dev_printk(KERN_INFO, &pdev->dev,
892 "controller can do NCQ, turning on CAP_NCQ\n");
893 cap |= HOST_CAP_NCQ;
894 }
895
Roel Kluin258cd842008-03-09 21:42:40 +0100896 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Tejun Heo6949b912007-09-23 13:19:55 +0900897 dev_printk(KERN_INFO, &pdev->dev,
898 "controller can't do PMP, turning off CAP_PMP\n");
899 cap &= ~HOST_CAP_PMP;
900 }
901
Shaohua Li1b677af2009-11-16 09:56:05 +0800902 if ((cap & HOST_CAP_SNTF) && (hpriv->flags & AHCI_HFLAG_NO_SNTF)) {
903 dev_printk(KERN_INFO, &pdev->dev,
904 "controller can't do SNTF, turning off CAP_SNTF\n");
905 cap &= ~HOST_CAP_SNTF;
906 }
907
Tejun Heod799e082008-06-17 12:46:30 +0900908 if (pdev->vendor == PCI_VENDOR_ID_JMICRON && pdev->device == 0x2361 &&
909 port_map != 1) {
910 dev_printk(KERN_INFO, &pdev->dev,
911 "JMB361 has only one port, port_map 0x%x -> 0x%x\n",
912 port_map, 1);
913 port_map = 1;
914 }
915
Jeff Garzikcd70c262007-07-08 02:29:42 -0400916 /*
917 * Temporary Marvell 6145 hack: PATA port presence
918 * is asserted through the standard AHCI port
919 * presence register, as bit 4 (counting from 0)
920 */
Tejun Heo417a1a62007-09-23 13:19:55 +0900921 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100922 if (pdev->device == 0x6121)
923 mv = 0x3;
924 else
925 mv = 0xf;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400926 dev_printk(KERN_ERR, &pdev->dev,
927 "MV_AHCI HACK: port_map %x -> %x\n",
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100928 port_map,
929 port_map & mv);
Alan Cox5b66c822008-09-03 14:48:34 +0100930 dev_printk(KERN_ERR, &pdev->dev,
931 "Disabling your PATA port. Use the boot option 'ahci.marvell_enable=0' to avoid this.\n");
Jeff Garzikcd70c262007-07-08 02:29:42 -0400932
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100933 port_map &= mv;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400934 }
935
Tejun Heo17199b12007-03-18 22:26:53 +0900936 /* cross check port_map and cap.n_ports */
Tejun Heo7a234af2007-09-03 12:44:57 +0900937 if (port_map) {
Tejun Heo837f5f82008-02-06 15:13:51 +0900938 int map_ports = 0;
Tejun Heo17199b12007-03-18 22:26:53 +0900939
Tejun Heo837f5f82008-02-06 15:13:51 +0900940 for (i = 0; i < AHCI_MAX_PORTS; i++)
941 if (port_map & (1 << i))
942 map_ports++;
Tejun Heo17199b12007-03-18 22:26:53 +0900943
Tejun Heo837f5f82008-02-06 15:13:51 +0900944 /* If PI has more ports than n_ports, whine, clear
945 * port_map and let it be generated from n_ports.
Tejun Heo17199b12007-03-18 22:26:53 +0900946 */
Tejun Heo837f5f82008-02-06 15:13:51 +0900947 if (map_ports > ahci_nr_ports(cap)) {
Tejun Heo4447d352007-04-17 23:44:08 +0900948 dev_printk(KERN_WARNING, &pdev->dev,
Tejun Heo837f5f82008-02-06 15:13:51 +0900949 "implemented port map (0x%x) contains more "
950 "ports than nr_ports (%u), using nr_ports\n",
951 port_map, ahci_nr_ports(cap));
Tejun Heo7a234af2007-09-03 12:44:57 +0900952 port_map = 0;
953 }
954 }
955
956 /* fabricate port_map from cap.nr_ports */
957 if (!port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900958 port_map = (1 << ahci_nr_ports(cap)) - 1;
Tejun Heo7a234af2007-09-03 12:44:57 +0900959 dev_printk(KERN_WARNING, &pdev->dev,
960 "forcing PORTS_IMPL to 0x%x\n", port_map);
961
962 /* write the fixed up value to the PI register */
963 hpriv->saved_port_map = port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900964 }
965
Tejun Heod447df12007-03-18 22:15:33 +0900966 /* record values to use during operation */
967 hpriv->cap = cap;
Robert Hancock4c521c82009-09-20 17:02:31 -0600968 hpriv->cap2 = cap2;
Tejun Heod447df12007-03-18 22:15:33 +0900969 hpriv->port_map = port_map;
970}
971
972/**
973 * ahci_restore_initial_config - Restore initial config
Tejun Heo4447d352007-04-17 23:44:08 +0900974 * @host: target ATA host
Tejun Heod447df12007-03-18 22:15:33 +0900975 *
976 * Restore initial config stored by ahci_save_initial_config().
977 *
978 * LOCKING:
979 * None.
980 */
Tejun Heo4447d352007-04-17 23:44:08 +0900981static void ahci_restore_initial_config(struct ata_host *host)
Tejun Heod447df12007-03-18 22:15:33 +0900982{
Tejun Heo4447d352007-04-17 23:44:08 +0900983 struct ahci_host_priv *hpriv = host->private_data;
984 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
985
Tejun Heod447df12007-03-18 22:15:33 +0900986 writel(hpriv->saved_cap, mmio + HOST_CAP);
Robert Hancock4c521c82009-09-20 17:02:31 -0600987 if (hpriv->saved_cap2)
988 writel(hpriv->saved_cap2, mmio + HOST_CAP2);
Tejun Heod447df12007-03-18 22:15:33 +0900989 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
990 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
991}
992
Tejun Heo203ef6c2007-07-16 14:29:40 +0900993static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900995 static const int offset[] = {
996 [SCR_STATUS] = PORT_SCR_STAT,
997 [SCR_CONTROL] = PORT_SCR_CTL,
998 [SCR_ERROR] = PORT_SCR_ERR,
999 [SCR_ACTIVE] = PORT_SCR_ACT,
1000 [SCR_NOTIFICATION] = PORT_SCR_NTF,
1001 };
1002 struct ahci_host_priv *hpriv = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Tejun Heo203ef6c2007-07-16 14:29:40 +09001004 if (sc_reg < ARRAY_SIZE(offset) &&
1005 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
1006 return offset[sc_reg];
Tejun Heoda3dbb12007-07-16 14:29:40 +09001007 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Tejun Heo82ef04f2008-07-31 17:02:40 +09001010static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Tejun Heo82ef04f2008-07-31 17:02:40 +09001012 void __iomem *port_mmio = ahci_port_base(link->ap);
1013 int offset = ahci_scr_offset(link->ap, sc_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Tejun Heo203ef6c2007-07-16 14:29:40 +09001015 if (offset) {
1016 *val = readl(port_mmio + offset);
1017 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
Tejun Heo203ef6c2007-07-16 14:29:40 +09001019 return -EINVAL;
1020}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Tejun Heo82ef04f2008-07-31 17:02:40 +09001022static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
Tejun Heo203ef6c2007-07-16 14:29:40 +09001023{
Tejun Heo82ef04f2008-07-31 17:02:40 +09001024 void __iomem *port_mmio = ahci_port_base(link->ap);
1025 int offset = ahci_scr_offset(link->ap, sc_reg);
Tejun Heo203ef6c2007-07-16 14:29:40 +09001026
1027 if (offset) {
1028 writel(val, port_mmio + offset);
1029 return 0;
1030 }
1031 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
1033
Tejun Heo4447d352007-04-17 23:44:08 +09001034static void ahci_start_engine(struct ata_port *ap)
Tejun Heo7c76d1e2005-12-19 22:36:34 +09001035{
Tejun Heo4447d352007-04-17 23:44:08 +09001036 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7c76d1e2005-12-19 22:36:34 +09001037 u32 tmp;
1038
Tejun Heod8fcd112006-07-26 15:59:25 +09001039 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +09001040 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +09001041 tmp |= PORT_CMD_START;
1042 writel(tmp, port_mmio + PORT_CMD);
1043 readl(port_mmio + PORT_CMD); /* flush */
1044}
1045
Tejun Heo4447d352007-04-17 23:44:08 +09001046static int ahci_stop_engine(struct ata_port *ap)
Tejun Heo254950c2006-07-26 15:59:25 +09001047{
Tejun Heo4447d352007-04-17 23:44:08 +09001048 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09001049 u32 tmp;
1050
1051 tmp = readl(port_mmio + PORT_CMD);
1052
Tejun Heod8fcd112006-07-26 15:59:25 +09001053 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +09001054 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
1055 return 0;
1056
Tejun Heod8fcd112006-07-26 15:59:25 +09001057 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +09001058 tmp &= ~PORT_CMD_START;
1059 writel(tmp, port_mmio + PORT_CMD);
1060
Tejun Heod8fcd112006-07-26 15:59:25 +09001061 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +09001062 tmp = ata_wait_register(port_mmio + PORT_CMD,
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001063 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +09001064 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +09001065 return -EIO;
1066
1067 return 0;
1068}
1069
Tejun Heo4447d352007-04-17 23:44:08 +09001070static void ahci_start_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001071{
Tejun Heo4447d352007-04-17 23:44:08 +09001072 void __iomem *port_mmio = ahci_port_base(ap);
1073 struct ahci_host_priv *hpriv = ap->host->private_data;
1074 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo0be0aa92006-07-26 15:59:26 +09001075 u32 tmp;
1076
1077 /* set FIS registers */
Tejun Heo4447d352007-04-17 23:44:08 +09001078 if (hpriv->cap & HOST_CAP_64)
1079 writel((pp->cmd_slot_dma >> 16) >> 16,
1080 port_mmio + PORT_LST_ADDR_HI);
1081 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001082
Tejun Heo4447d352007-04-17 23:44:08 +09001083 if (hpriv->cap & HOST_CAP_64)
1084 writel((pp->rx_fis_dma >> 16) >> 16,
1085 port_mmio + PORT_FIS_ADDR_HI);
1086 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001087
1088 /* enable FIS reception */
1089 tmp = readl(port_mmio + PORT_CMD);
1090 tmp |= PORT_CMD_FIS_RX;
1091 writel(tmp, port_mmio + PORT_CMD);
1092
1093 /* flush */
1094 readl(port_mmio + PORT_CMD);
1095}
1096
Tejun Heo4447d352007-04-17 23:44:08 +09001097static int ahci_stop_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001098{
Tejun Heo4447d352007-04-17 23:44:08 +09001099 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001100 u32 tmp;
1101
1102 /* disable FIS reception */
1103 tmp = readl(port_mmio + PORT_CMD);
1104 tmp &= ~PORT_CMD_FIS_RX;
1105 writel(tmp, port_mmio + PORT_CMD);
1106
1107 /* wait for completion, spec says 500ms, give it 1000 */
1108 tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
1109 PORT_CMD_FIS_ON, 10, 1000);
1110 if (tmp & PORT_CMD_FIS_ON)
1111 return -EBUSY;
1112
1113 return 0;
1114}
1115
Tejun Heo4447d352007-04-17 23:44:08 +09001116static void ahci_power_up(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001117{
Tejun Heo4447d352007-04-17 23:44:08 +09001118 struct ahci_host_priv *hpriv = ap->host->private_data;
1119 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001120 u32 cmd;
1121
1122 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
1123
1124 /* spin up device */
Tejun Heo4447d352007-04-17 23:44:08 +09001125 if (hpriv->cap & HOST_CAP_SSS) {
Tejun Heo0be0aa92006-07-26 15:59:26 +09001126 cmd |= PORT_CMD_SPIN_UP;
1127 writel(cmd, port_mmio + PORT_CMD);
1128 }
1129
1130 /* wake up link */
1131 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
1132}
1133
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001134static void ahci_disable_alpm(struct ata_port *ap)
1135{
1136 struct ahci_host_priv *hpriv = ap->host->private_data;
1137 void __iomem *port_mmio = ahci_port_base(ap);
1138 u32 cmd;
1139 struct ahci_port_priv *pp = ap->private_data;
1140
1141 /* IPM bits should be disabled by libata-core */
1142 /* get the existing command bits */
1143 cmd = readl(port_mmio + PORT_CMD);
1144
1145 /* disable ALPM and ASP */
1146 cmd &= ~PORT_CMD_ASP;
1147 cmd &= ~PORT_CMD_ALPE;
1148
1149 /* force the interface back to active */
1150 cmd |= PORT_CMD_ICC_ACTIVE;
1151
1152 /* write out new cmd value */
1153 writel(cmd, port_mmio + PORT_CMD);
1154 cmd = readl(port_mmio + PORT_CMD);
1155
1156 /* wait 10ms to be sure we've come out of any low power state */
1157 msleep(10);
1158
1159 /* clear out any PhyRdy stuff from interrupt status */
1160 writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT);
1161
1162 /* go ahead and clean out PhyRdy Change from Serror too */
Tejun Heo82ef04f2008-07-31 17:02:40 +09001163 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001164
1165 /*
1166 * Clear flag to indicate that we should ignore all PhyRdy
1167 * state changes
1168 */
1169 hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG;
1170
1171 /*
1172 * Enable interrupts on Phy Ready.
1173 */
1174 pp->intr_mask |= PORT_IRQ_PHYRDY;
1175 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1176
1177 /*
1178 * don't change the link pm policy - we can be called
1179 * just to turn of link pm temporarily
1180 */
1181}
1182
1183static int ahci_enable_alpm(struct ata_port *ap,
1184 enum link_pm policy)
1185{
1186 struct ahci_host_priv *hpriv = ap->host->private_data;
1187 void __iomem *port_mmio = ahci_port_base(ap);
1188 u32 cmd;
1189 struct ahci_port_priv *pp = ap->private_data;
1190 u32 asp;
1191
1192 /* Make sure the host is capable of link power management */
1193 if (!(hpriv->cap & HOST_CAP_ALPM))
1194 return -EINVAL;
1195
1196 switch (policy) {
1197 case MAX_PERFORMANCE:
1198 case NOT_AVAILABLE:
1199 /*
1200 * if we came here with NOT_AVAILABLE,
1201 * it just means this is the first time we
1202 * have tried to enable - default to max performance,
1203 * and let the user go to lower power modes on request.
1204 */
1205 ahci_disable_alpm(ap);
1206 return 0;
1207 case MIN_POWER:
1208 /* configure HBA to enter SLUMBER */
1209 asp = PORT_CMD_ASP;
1210 break;
1211 case MEDIUM_POWER:
1212 /* configure HBA to enter PARTIAL */
1213 asp = 0;
1214 break;
1215 default:
1216 return -EINVAL;
1217 }
1218
1219 /*
1220 * Disable interrupts on Phy Ready. This keeps us from
1221 * getting woken up due to spurious phy ready interrupts
1222 * TBD - Hot plug should be done via polling now, is
1223 * that even supported?
1224 */
1225 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
1226 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1227
1228 /*
1229 * Set a flag to indicate that we should ignore all PhyRdy
1230 * state changes since these can happen now whenever we
1231 * change link state
1232 */
1233 hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG;
1234
1235 /* get the existing command bits */
1236 cmd = readl(port_mmio + PORT_CMD);
1237
1238 /*
1239 * Set ASP based on Policy
1240 */
1241 cmd |= asp;
1242
1243 /*
1244 * Setting this bit will instruct the HBA to aggressively
1245 * enter a lower power link state when it's appropriate and
1246 * based on the value set above for ASP
1247 */
1248 cmd |= PORT_CMD_ALPE;
1249
1250 /* write out new cmd value */
1251 writel(cmd, port_mmio + PORT_CMD);
1252 cmd = readl(port_mmio + PORT_CMD);
1253
1254 /* IPM bits should be set by libata-core */
1255 return 0;
1256}
1257
Tejun Heo438ac6d2007-03-02 17:31:26 +09001258#ifdef CONFIG_PM
Tejun Heo4447d352007-04-17 23:44:08 +09001259static void ahci_power_down(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001260{
Tejun Heo4447d352007-04-17 23:44:08 +09001261 struct ahci_host_priv *hpriv = ap->host->private_data;
1262 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001263 u32 cmd, scontrol;
1264
Tejun Heo4447d352007-04-17 23:44:08 +09001265 if (!(hpriv->cap & HOST_CAP_SSS))
Tejun Heo07c53da2007-01-21 02:10:11 +09001266 return;
1267
1268 /* put device into listen mode, first set PxSCTL.DET to 0 */
1269 scontrol = readl(port_mmio + PORT_SCR_CTL);
1270 scontrol &= ~0xf;
1271 writel(scontrol, port_mmio + PORT_SCR_CTL);
1272
1273 /* then set PxCMD.SUD to 0 */
Tejun Heo0be0aa92006-07-26 15:59:26 +09001274 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
Tejun Heo07c53da2007-01-21 02:10:11 +09001275 cmd &= ~PORT_CMD_SPIN_UP;
1276 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001277}
Tejun Heo438ac6d2007-03-02 17:31:26 +09001278#endif
Tejun Heo0be0aa92006-07-26 15:59:26 +09001279
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001280static void ahci_start_port(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001281{
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001282 struct ahci_port_priv *pp = ap->private_data;
1283 struct ata_link *link;
1284 struct ahci_em_priv *emp;
David Milburn4c1e9aa2009-04-03 15:36:41 -05001285 ssize_t rc;
1286 int i;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001287
Tejun Heo0be0aa92006-07-26 15:59:26 +09001288 /* enable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001289 ahci_start_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001290
1291 /* enable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001292 ahci_start_engine(ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001293
1294 /* turn on LEDs */
1295 if (ap->flags & ATA_FLAG_EM) {
Tejun Heo1eca4362008-11-03 20:03:17 +09001296 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001297 emp = &pp->em_priv[link->pmp];
David Milburn4c1e9aa2009-04-03 15:36:41 -05001298
1299 /* EM Transmit bit maybe busy during init */
Tejun Heod50ce072009-05-12 10:57:41 +09001300 for (i = 0; i < EM_MAX_RETRY; i++) {
David Milburn4c1e9aa2009-04-03 15:36:41 -05001301 rc = ahci_transmit_led_message(ap,
1302 emp->led_state,
1303 4);
1304 if (rc == -EBUSY)
Tejun Heod50ce072009-05-12 10:57:41 +09001305 msleep(1);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001306 else
1307 break;
1308 }
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001309 }
1310 }
1311
1312 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
Tejun Heo1eca4362008-11-03 20:03:17 +09001313 ata_for_each_link(link, ap, EDGE)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001314 ahci_init_sw_activity(link);
1315
Tejun Heo0be0aa92006-07-26 15:59:26 +09001316}
1317
Tejun Heo4447d352007-04-17 23:44:08 +09001318static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001319{
1320 int rc;
1321
1322 /* disable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001323 rc = ahci_stop_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001324 if (rc) {
1325 *emsg = "failed to stop engine";
1326 return rc;
1327 }
1328
1329 /* disable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001330 rc = ahci_stop_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001331 if (rc) {
1332 *emsg = "failed stop FIS RX";
1333 return rc;
1334 }
1335
Tejun Heo0be0aa92006-07-26 15:59:26 +09001336 return 0;
1337}
1338
Tejun Heo4447d352007-04-17 23:44:08 +09001339static int ahci_reset_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001340{
Tejun Heo4447d352007-04-17 23:44:08 +09001341 struct pci_dev *pdev = to_pci_dev(host->dev);
Tejun Heo49f29092007-11-19 16:03:44 +09001342 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001343 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +09001344 u32 tmp;
Tejun Heod91542c2006-07-26 15:59:26 +09001345
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001346 /* we must be in AHCI mode, before using anything
1347 * AHCI-specific, such as HOST_RESET.
1348 */
Tejun Heob710a1f2008-01-05 23:11:57 +09001349 ahci_enable_ahci(mmio);
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001350
1351 /* global controller reset */
Tejun Heoa22e6442008-03-10 10:25:25 +09001352 if (!ahci_skip_host_reset) {
1353 tmp = readl(mmio + HOST_CTL);
1354 if ((tmp & HOST_RESET) == 0) {
1355 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1356 readl(mmio + HOST_CTL); /* flush */
1357 }
Tejun Heod91542c2006-07-26 15:59:26 +09001358
Zhang Rui24920c82008-07-04 13:32:17 +08001359 /*
1360 * to perform host reset, OS should set HOST_RESET
1361 * and poll until this bit is read to be "0".
1362 * reset must complete within 1 second, or
Tejun Heoa22e6442008-03-10 10:25:25 +09001363 * the hardware should be considered fried.
1364 */
Zhang Rui24920c82008-07-04 13:32:17 +08001365 tmp = ata_wait_register(mmio + HOST_CTL, HOST_RESET,
1366 HOST_RESET, 10, 1000);
Tejun Heod91542c2006-07-26 15:59:26 +09001367
Tejun Heoa22e6442008-03-10 10:25:25 +09001368 if (tmp & HOST_RESET) {
1369 dev_printk(KERN_ERR, host->dev,
1370 "controller reset failed (0x%x)\n", tmp);
1371 return -EIO;
1372 }
Tejun Heod91542c2006-07-26 15:59:26 +09001373
Tejun Heoa22e6442008-03-10 10:25:25 +09001374 /* turn on AHCI mode */
1375 ahci_enable_ahci(mmio);
Tejun Heo98fa4b62006-11-02 12:17:23 +09001376
Tejun Heoa22e6442008-03-10 10:25:25 +09001377 /* Some registers might be cleared on reset. Restore
1378 * initial values.
1379 */
1380 ahci_restore_initial_config(host);
1381 } else
1382 dev_printk(KERN_INFO, host->dev,
1383 "skipping global host reset\n");
Tejun Heod91542c2006-07-26 15:59:26 +09001384
1385 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1386 u16 tmp16;
1387
1388 /* configure PCS */
1389 pci_read_config_word(pdev, 0x92, &tmp16);
Tejun Heo49f29092007-11-19 16:03:44 +09001390 if ((tmp16 & hpriv->port_map) != hpriv->port_map) {
1391 tmp16 |= hpriv->port_map;
1392 pci_write_config_word(pdev, 0x92, tmp16);
1393 }
Tejun Heod91542c2006-07-26 15:59:26 +09001394 }
1395
1396 return 0;
1397}
1398
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001399static void ahci_sw_activity(struct ata_link *link)
1400{
1401 struct ata_port *ap = link->ap;
1402 struct ahci_port_priv *pp = ap->private_data;
1403 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1404
1405 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
1406 return;
1407
1408 emp->activity++;
1409 if (!timer_pending(&emp->timer))
1410 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
1411}
1412
1413static void ahci_sw_activity_blink(unsigned long arg)
1414{
1415 struct ata_link *link = (struct ata_link *)arg;
1416 struct ata_port *ap = link->ap;
1417 struct ahci_port_priv *pp = ap->private_data;
1418 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1419 unsigned long led_message = emp->led_state;
1420 u32 activity_led_state;
David Milburneb409632008-10-16 09:26:19 -05001421 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001422
David Milburn87943ac2008-10-13 14:38:36 -05001423 led_message &= EM_MSG_LED_VALUE;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001424 led_message |= ap->port_no | (link->pmp << 8);
1425
1426 /* check to see if we've had activity. If so,
1427 * toggle state of LED and reset timer. If not,
1428 * turn LED to desired idle state.
1429 */
David Milburneb409632008-10-16 09:26:19 -05001430 spin_lock_irqsave(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001431 if (emp->saved_activity != emp->activity) {
1432 emp->saved_activity = emp->activity;
1433 /* get the current LED state */
David Milburn87943ac2008-10-13 14:38:36 -05001434 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001435
1436 if (activity_led_state)
1437 activity_led_state = 0;
1438 else
1439 activity_led_state = 1;
1440
1441 /* clear old state */
David Milburn87943ac2008-10-13 14:38:36 -05001442 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001443
1444 /* toggle state */
1445 led_message |= (activity_led_state << 16);
1446 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
1447 } else {
1448 /* switch to idle */
David Milburn87943ac2008-10-13 14:38:36 -05001449 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001450 if (emp->blink_policy == BLINK_OFF)
1451 led_message |= (1 << 16);
1452 }
David Milburneb409632008-10-16 09:26:19 -05001453 spin_unlock_irqrestore(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001454 ahci_transmit_led_message(ap, led_message, 4);
1455}
1456
1457static void ahci_init_sw_activity(struct ata_link *link)
1458{
1459 struct ata_port *ap = link->ap;
1460 struct ahci_port_priv *pp = ap->private_data;
1461 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1462
1463 /* init activity stats, setup timer */
1464 emp->saved_activity = emp->activity = 0;
1465 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
1466
1467 /* check our blink policy and set flag for link if it's enabled */
1468 if (emp->blink_policy)
1469 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1470}
1471
1472static int ahci_reset_em(struct ata_host *host)
1473{
1474 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
1475 u32 em_ctl;
1476
1477 em_ctl = readl(mmio + HOST_EM_CTL);
1478 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1479 return -EINVAL;
1480
1481 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1482 return 0;
1483}
1484
1485static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1486 ssize_t size)
1487{
1488 struct ahci_host_priv *hpriv = ap->host->private_data;
1489 struct ahci_port_priv *pp = ap->private_data;
1490 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
1491 u32 em_ctl;
1492 u32 message[] = {0, 0};
Linus Torvalds93082f02008-07-25 10:56:36 -07001493 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001494 int pmp;
1495 struct ahci_em_priv *emp;
1496
1497 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001498 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001499 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001500 emp = &pp->em_priv[pmp];
1501 else
1502 return -EINVAL;
1503
1504 spin_lock_irqsave(ap->lock, flags);
1505
1506 /*
1507 * if we are still busy transmitting a previous message,
1508 * do not allow
1509 */
1510 em_ctl = readl(mmio + HOST_EM_CTL);
1511 if (em_ctl & EM_CTL_TM) {
1512 spin_unlock_irqrestore(ap->lock, flags);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001513 return -EBUSY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001514 }
1515
1516 /*
1517 * create message header - this is all zero except for
1518 * the message size, which is 4 bytes.
1519 */
1520 message[0] |= (4 << 8);
1521
1522 /* ignore 0:4 of byte zero, fill in port info yourself */
David Milburn87943ac2008-10-13 14:38:36 -05001523 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001524
1525 /* write message to EM_LOC */
1526 writel(message[0], mmio + hpriv->em_loc);
1527 writel(message[1], mmio + hpriv->em_loc+4);
1528
1529 /* save off new led state for port/slot */
David Milburn208f2a82009-03-20 14:14:23 -05001530 emp->led_state = state;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001531
1532 /*
1533 * tell hardware to transmit the message
1534 */
1535 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1536
1537 spin_unlock_irqrestore(ap->lock, flags);
1538 return size;
1539}
1540
1541static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1542{
1543 struct ahci_port_priv *pp = ap->private_data;
1544 struct ata_link *link;
1545 struct ahci_em_priv *emp;
1546 int rc = 0;
1547
Tejun Heo1eca4362008-11-03 20:03:17 +09001548 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001549 emp = &pp->em_priv[link->pmp];
1550 rc += sprintf(buf, "%lx\n", emp->led_state);
1551 }
1552 return rc;
1553}
1554
1555static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1556 size_t size)
1557{
1558 int state;
1559 int pmp;
1560 struct ahci_port_priv *pp = ap->private_data;
1561 struct ahci_em_priv *emp;
1562
1563 state = simple_strtoul(buf, NULL, 0);
1564
1565 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001566 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001567 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001568 emp = &pp->em_priv[pmp];
1569 else
1570 return -EINVAL;
1571
1572 /* mask off the activity bits if we are in sw_activity
1573 * mode, user should turn off sw_activity before setting
1574 * activity led through em_message
1575 */
1576 if (emp->blink_policy)
David Milburn87943ac2008-10-13 14:38:36 -05001577 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001578
1579 return ahci_transmit_led_message(ap, state, size);
1580}
1581
1582static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1583{
1584 struct ata_link *link = dev->link;
1585 struct ata_port *ap = link->ap;
1586 struct ahci_port_priv *pp = ap->private_data;
1587 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1588 u32 port_led_state = emp->led_state;
1589
1590 /* save the desired Activity LED behavior */
1591 if (val == OFF) {
1592 /* clear LFLAG */
1593 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1594
1595 /* set the LED to OFF */
David Milburn87943ac2008-10-13 14:38:36 -05001596 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001597 port_led_state |= (ap->port_no | (link->pmp << 8));
1598 ahci_transmit_led_message(ap, port_led_state, 4);
1599 } else {
1600 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1601 if (val == BLINK_OFF) {
1602 /* set LED to ON for idle */
David Milburn87943ac2008-10-13 14:38:36 -05001603 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001604 port_led_state |= (ap->port_no | (link->pmp << 8));
David Milburn87943ac2008-10-13 14:38:36 -05001605 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001606 ahci_transmit_led_message(ap, port_led_state, 4);
1607 }
1608 }
1609 emp->blink_policy = val;
1610 return 0;
1611}
1612
1613static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1614{
1615 struct ata_link *link = dev->link;
1616 struct ata_port *ap = link->ap;
1617 struct ahci_port_priv *pp = ap->private_data;
1618 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1619
1620 /* display the saved value of activity behavior for this
1621 * disk.
1622 */
1623 return sprintf(buf, "%d\n", emp->blink_policy);
1624}
1625
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001626static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap,
1627 int port_no, void __iomem *mmio,
1628 void __iomem *port_mmio)
1629{
1630 const char *emsg = NULL;
1631 int rc;
1632 u32 tmp;
1633
1634 /* make sure port is not active */
1635 rc = ahci_deinit_port(ap, &emsg);
1636 if (rc)
1637 dev_printk(KERN_WARNING, &pdev->dev,
1638 "%s (%d)\n", emsg, rc);
1639
1640 /* clear SError */
1641 tmp = readl(port_mmio + PORT_SCR_ERR);
1642 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1643 writel(tmp, port_mmio + PORT_SCR_ERR);
1644
1645 /* clear port IRQ */
1646 tmp = readl(port_mmio + PORT_IRQ_STAT);
1647 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1648 if (tmp)
1649 writel(tmp, port_mmio + PORT_IRQ_STAT);
1650
1651 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1652}
1653
Tejun Heo4447d352007-04-17 23:44:08 +09001654static void ahci_init_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001655{
Tejun Heo417a1a62007-09-23 13:19:55 +09001656 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001657 struct pci_dev *pdev = to_pci_dev(host->dev);
1658 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001659 int i;
Jeff Garzikcd70c262007-07-08 02:29:42 -04001660 void __iomem *port_mmio;
Tejun Heod91542c2006-07-26 15:59:26 +09001661 u32 tmp;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001662 int mv;
Tejun Heod91542c2006-07-26 15:59:26 +09001663
Tejun Heo417a1a62007-09-23 13:19:55 +09001664 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001665 if (pdev->device == 0x6121)
1666 mv = 2;
1667 else
1668 mv = 4;
1669 port_mmio = __ahci_port_base(host, mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -04001670
1671 writel(0, port_mmio + PORT_IRQ_MASK);
1672
1673 /* clear port IRQ */
1674 tmp = readl(port_mmio + PORT_IRQ_STAT);
1675 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1676 if (tmp)
1677 writel(tmp, port_mmio + PORT_IRQ_STAT);
1678 }
1679
Tejun Heo4447d352007-04-17 23:44:08 +09001680 for (i = 0; i < host->n_ports; i++) {
1681 struct ata_port *ap = host->ports[i];
Tejun Heod91542c2006-07-26 15:59:26 +09001682
Jeff Garzikcd70c262007-07-08 02:29:42 -04001683 port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09001684 if (ata_port_is_dummy(ap))
Tejun Heod91542c2006-07-26 15:59:26 +09001685 continue;
Tejun Heod91542c2006-07-26 15:59:26 +09001686
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001687 ahci_port_init(pdev, ap, i, mmio, port_mmio);
Tejun Heod91542c2006-07-26 15:59:26 +09001688 }
1689
1690 tmp = readl(mmio + HOST_CTL);
1691 VPRINTK("HOST_CTL 0x%x\n", tmp);
1692 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1693 tmp = readl(mmio + HOST_CTL);
1694 VPRINTK("HOST_CTL 0x%x\n", tmp);
1695}
1696
Jeff Garzika8785392008-02-28 15:43:48 -05001697static void ahci_dev_config(struct ata_device *dev)
1698{
1699 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1700
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001701 if (hpriv->flags & AHCI_HFLAG_SECT255) {
Jeff Garzika8785392008-02-28 15:43:48 -05001702 dev->max_sectors = 255;
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001703 ata_dev_printk(dev, KERN_INFO,
1704 "SB600 AHCI: limiting to 255 sectors per cmd\n");
1705 }
Jeff Garzika8785392008-02-28 15:43:48 -05001706}
1707
Tejun Heo422b7592005-12-19 22:37:17 +09001708static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Tejun Heo4447d352007-04-17 23:44:08 +09001710 void __iomem *port_mmio = ahci_port_base(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +09001712 u32 tmp;
1713
1714 tmp = readl(port_mmio + PORT_SIG);
1715 tf.lbah = (tmp >> 24) & 0xff;
1716 tf.lbam = (tmp >> 16) & 0xff;
1717 tf.lbal = (tmp >> 8) & 0xff;
1718 tf.nsect = (tmp) & 0xff;
1719
1720 return ata_dev_classify(&tf);
1721}
1722
Tejun Heo12fad3f2006-05-15 21:03:55 +09001723static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1724 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +09001725{
Tejun Heo12fad3f2006-05-15 21:03:55 +09001726 dma_addr_t cmd_tbl_dma;
1727
1728 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1729
1730 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1731 pp->cmd_slot[tag].status = 0;
1732 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1733 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +09001734}
1735
Shane Huang78d5ae32009-08-07 15:05:52 +08001736static int ahci_kick_engine(struct ata_port *ap)
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001737{
Tejun Heo350756f2008-04-07 22:47:21 +09001738 void __iomem *port_mmio = ahci_port_base(ap);
Jeff Garzikcca39742006-08-24 03:19:22 -04001739 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo520d06f2008-04-07 22:47:21 +09001740 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001741 u32 tmp;
Tejun Heod2e75df2007-07-16 14:29:39 +09001742 int busy, rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001743
Tejun Heod2e75df2007-07-16 14:29:39 +09001744 /* stop engine */
1745 rc = ahci_stop_engine(ap);
1746 if (rc)
1747 goto out_restart;
1748
Shane Huang78d5ae32009-08-07 15:05:52 +08001749 /* need to do CLO?
1750 * always do CLO if PMP is attached (AHCI-1.3 9.2)
1751 */
1752 busy = status & (ATA_BUSY | ATA_DRQ);
1753 if (!busy && !sata_pmp_attached(ap)) {
Tejun Heod2e75df2007-07-16 14:29:39 +09001754 rc = 0;
1755 goto out_restart;
1756 }
1757
1758 if (!(hpriv->cap & HOST_CAP_CLO)) {
1759 rc = -EOPNOTSUPP;
1760 goto out_restart;
1761 }
1762
1763 /* perform CLO */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001764 tmp = readl(port_mmio + PORT_CMD);
1765 tmp |= PORT_CMD_CLO;
1766 writel(tmp, port_mmio + PORT_CMD);
1767
Tejun Heod2e75df2007-07-16 14:29:39 +09001768 rc = 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001769 tmp = ata_wait_register(port_mmio + PORT_CMD,
1770 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1771 if (tmp & PORT_CMD_CLO)
Tejun Heod2e75df2007-07-16 14:29:39 +09001772 rc = -EIO;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001773
Tejun Heod2e75df2007-07-16 14:29:39 +09001774 /* restart engine */
1775 out_restart:
1776 ahci_start_engine(ap);
1777 return rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001778}
1779
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001780static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1781 struct ata_taskfile *tf, int is_cmd, u16 flags,
1782 unsigned long timeout_msec)
1783{
1784 const u32 cmd_fis_len = 5; /* five dwords */
1785 struct ahci_port_priv *pp = ap->private_data;
1786 void __iomem *port_mmio = ahci_port_base(ap);
1787 u8 *fis = pp->cmd_tbl;
1788 u32 tmp;
1789
1790 /* prep the command */
1791 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1792 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1793
1794 /* issue & wait */
1795 writel(1, port_mmio + PORT_CMD_ISSUE);
1796
1797 if (timeout_msec) {
1798 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1,
1799 1, timeout_msec);
1800 if (tmp & 0x1) {
Shane Huang78d5ae32009-08-07 15:05:52 +08001801 ahci_kick_engine(ap);
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001802 return -EBUSY;
1803 }
1804 } else
1805 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1806
1807 return 0;
1808}
1809
Shane Huangbd172432008-06-10 15:52:04 +08001810static int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1811 int pmp, unsigned long deadline,
1812 int (*check_ready)(struct ata_link *link))
Tejun Heo4658f792006-03-22 21:07:03 +09001813{
Tejun Heocc0680a2007-08-06 18:36:23 +09001814 struct ata_port *ap = link->ap;
Tejun Heo55946392009-08-04 14:30:08 +09001815 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo4658f792006-03-22 21:07:03 +09001816 const char *reason = NULL;
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001817 unsigned long now, msecs;
Tejun Heo4658f792006-03-22 21:07:03 +09001818 struct ata_taskfile tf;
Tejun Heo4658f792006-03-22 21:07:03 +09001819 int rc;
1820
1821 DPRINTK("ENTER\n");
1822
1823 /* prepare for SRST (AHCI-1.1 10.4.1) */
Shane Huang78d5ae32009-08-07 15:05:52 +08001824 rc = ahci_kick_engine(ap);
Tejun Heo994056d2007-12-06 15:02:48 +09001825 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09001826 ata_link_printk(link, KERN_WARNING,
Tejun Heo994056d2007-12-06 15:02:48 +09001827 "failed to reset engine (errno=%d)\n", rc);
Tejun Heo4658f792006-03-22 21:07:03 +09001828
Tejun Heocc0680a2007-08-06 18:36:23 +09001829 ata_tf_init(link->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +09001830
1831 /* issue the first D2H Register FIS */
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001832 msecs = 0;
1833 now = jiffies;
1834 if (time_after(now, deadline))
1835 msecs = jiffies_to_msecs(deadline - now);
1836
Tejun Heo4658f792006-03-22 21:07:03 +09001837 tf.ctl |= ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001838 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001839 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
Tejun Heo4658f792006-03-22 21:07:03 +09001840 rc = -EIO;
1841 reason = "1st FIS failed";
1842 goto fail;
1843 }
1844
1845 /* spec says at least 5us, but be generous and sleep for 1ms */
1846 msleep(1);
1847
1848 /* issue the second D2H Register FIS */
Tejun Heo4658f792006-03-22 21:07:03 +09001849 tf.ctl &= ~ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001850 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
Tejun Heo4658f792006-03-22 21:07:03 +09001851
Tejun Heo705e76b2008-04-07 22:47:19 +09001852 /* wait for link to become ready */
Shane Huangbd172432008-06-10 15:52:04 +08001853 rc = ata_wait_after_reset(link, deadline, check_ready);
Tejun Heo55946392009-08-04 14:30:08 +09001854 if (rc == -EBUSY && hpriv->flags & AHCI_HFLAG_SRST_TOUT_IS_OFFLINE) {
1855 /*
1856 * Workaround for cases where link online status can't
1857 * be trusted. Treat device readiness timeout as link
1858 * offline.
1859 */
1860 ata_link_printk(link, KERN_INFO,
1861 "device not ready, treating as offline\n");
1862 *class = ATA_DEV_NONE;
1863 } else if (rc) {
1864 /* link occupied, -ENODEV too is an error */
Tejun Heo9b893912007-02-02 16:50:52 +09001865 reason = "device not ready";
1866 goto fail;
Tejun Heo55946392009-08-04 14:30:08 +09001867 } else
1868 *class = ahci_dev_classify(ap);
Tejun Heo4658f792006-03-22 21:07:03 +09001869
1870 DPRINTK("EXIT, class=%u\n", *class);
1871 return 0;
1872
Tejun Heo4658f792006-03-22 21:07:03 +09001873 fail:
Tejun Heocc0680a2007-08-06 18:36:23 +09001874 ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +09001875 return rc;
1876}
1877
Shane Huangbd172432008-06-10 15:52:04 +08001878static int ahci_check_ready(struct ata_link *link)
1879{
1880 void __iomem *port_mmio = ahci_port_base(link->ap);
1881 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1882
1883 return ata_check_ready(status);
1884}
1885
1886static int ahci_softreset(struct ata_link *link, unsigned int *class,
1887 unsigned long deadline)
1888{
1889 int pmp = sata_srst_pmp(link);
1890
1891 DPRINTK("ENTER\n");
1892
1893 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1894}
1895
1896static int ahci_sb600_check_ready(struct ata_link *link)
1897{
1898 void __iomem *port_mmio = ahci_port_base(link->ap);
1899 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1900 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1901
1902 /*
1903 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1904 * which can save timeout delay.
1905 */
1906 if (irq_status & PORT_IRQ_BAD_PMP)
1907 return -EIO;
1908
1909 return ata_check_ready(status);
1910}
1911
1912static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
1913 unsigned long deadline)
1914{
1915 struct ata_port *ap = link->ap;
1916 void __iomem *port_mmio = ahci_port_base(ap);
1917 int pmp = sata_srst_pmp(link);
1918 int rc;
1919 u32 irq_sts;
1920
1921 DPRINTK("ENTER\n");
1922
1923 rc = ahci_do_softreset(link, class, pmp, deadline,
1924 ahci_sb600_check_ready);
1925
1926 /*
1927 * Soft reset fails on some ATI chips with IPMS set when PMP
1928 * is enabled but SATA HDD/ODD is connected to SATA port,
1929 * do soft reset again to port 0.
1930 */
1931 if (rc == -EIO) {
1932 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1933 if (irq_sts & PORT_IRQ_BAD_PMP) {
1934 ata_link_printk(link, KERN_WARNING,
Shane Huangb6931c12009-08-05 10:10:41 +08001935 "applying SB600 PMP SRST workaround "
1936 "and retrying\n");
Shane Huangbd172432008-06-10 15:52:04 +08001937 rc = ahci_do_softreset(link, class, 0, deadline,
1938 ahci_check_ready);
1939 }
1940 }
1941
1942 return rc;
1943}
1944
Tejun Heocc0680a2007-08-06 18:36:23 +09001945static int ahci_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001946 unsigned long deadline)
Tejun Heo422b7592005-12-19 22:37:17 +09001947{
Tejun Heo9dadd452008-04-07 22:47:19 +09001948 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heocc0680a2007-08-06 18:36:23 +09001949 struct ata_port *ap = link->ap;
Tejun Heo42969712006-05-31 18:28:18 +09001950 struct ahci_port_priv *pp = ap->private_data;
1951 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1952 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001953 bool online;
Tejun Heo4bd00f62006-02-11 16:26:02 +09001954 int rc;
1955
1956 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Tejun Heo4447d352007-04-17 23:44:08 +09001958 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +09001959
1960 /* clear D2H reception area to properly wait for D2H FIS */
Tejun Heocc0680a2007-08-06 18:36:23 +09001961 ata_tf_init(link->device, &tf);
Tejun Heodfd7a3d2007-01-26 15:37:20 +09001962 tf.command = 0x80;
Tejun Heo99771262007-07-16 14:29:38 +09001963 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
Tejun Heo42969712006-05-31 18:28:18 +09001964
Tejun Heo9dadd452008-04-07 22:47:19 +09001965 rc = sata_link_hardreset(link, timing, deadline, &online,
1966 ahci_check_ready);
Tejun Heo42969712006-05-31 18:28:18 +09001967
Tejun Heo4447d352007-04-17 23:44:08 +09001968 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Tejun Heo9dadd452008-04-07 22:47:19 +09001970 if (online)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001971 *class = ahci_dev_classify(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Tejun Heo4bd00f62006-02-11 16:26:02 +09001973 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1974 return rc;
1975}
1976
Tejun Heocc0680a2007-08-06 18:36:23 +09001977static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001978 unsigned long deadline)
Tejun Heoad616ff2006-11-01 18:00:24 +09001979{
Tejun Heocc0680a2007-08-06 18:36:23 +09001980 struct ata_port *ap = link->ap;
Tejun Heo9dadd452008-04-07 22:47:19 +09001981 bool online;
Tejun Heoad616ff2006-11-01 18:00:24 +09001982 int rc;
1983
1984 DPRINTK("ENTER\n");
1985
Tejun Heo4447d352007-04-17 23:44:08 +09001986 ahci_stop_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001987
Tejun Heocc0680a2007-08-06 18:36:23 +09001988 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001989 deadline, &online, NULL);
Tejun Heoad616ff2006-11-01 18:00:24 +09001990
Tejun Heo4447d352007-04-17 23:44:08 +09001991 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001992
1993 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1994
1995 /* vt8251 doesn't clear BSY on signature FIS reception,
1996 * request follow-up softreset.
1997 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001998 return online ? -EAGAIN : rc;
Tejun Heoad616ff2006-11-01 18:00:24 +09001999}
2000
Tejun Heoedc93052007-10-25 14:59:16 +09002001static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
2002 unsigned long deadline)
2003{
2004 struct ata_port *ap = link->ap;
2005 struct ahci_port_priv *pp = ap->private_data;
2006 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2007 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09002008 bool online;
Tejun Heoedc93052007-10-25 14:59:16 +09002009 int rc;
2010
2011 ahci_stop_engine(ap);
2012
2013 /* clear D2H reception area to properly wait for D2H FIS */
2014 ata_tf_init(link->device, &tf);
2015 tf.command = 0x80;
2016 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
2017
2018 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09002019 deadline, &online, NULL);
Tejun Heoedc93052007-10-25 14:59:16 +09002020
2021 ahci_start_engine(ap);
2022
Tejun Heoedc93052007-10-25 14:59:16 +09002023 /* The pseudo configuration device on SIMG4726 attached to
2024 * ASUS P5W-DH Deluxe doesn't send signature FIS after
2025 * hardreset if no device is attached to the first downstream
2026 * port && the pseudo device locks up on SRST w/ PMP==0. To
2027 * work around this, wait for !BSY only briefly. If BSY isn't
2028 * cleared, perform CLO and proceed to IDENTIFY (achieved by
2029 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
2030 *
2031 * Wait for two seconds. Devices attached to downstream port
2032 * which can't process the following IDENTIFY after this will
2033 * have to be reset again. For most cases, this should
2034 * suffice while making probing snappish enough.
2035 */
Tejun Heo9dadd452008-04-07 22:47:19 +09002036 if (online) {
2037 rc = ata_wait_after_reset(link, jiffies + 2 * HZ,
2038 ahci_check_ready);
2039 if (rc)
Shane Huang78d5ae32009-08-07 15:05:52 +08002040 ahci_kick_engine(ap);
Tejun Heo9dadd452008-04-07 22:47:19 +09002041 }
Tejun Heo9dadd452008-04-07 22:47:19 +09002042 return rc;
Tejun Heoedc93052007-10-25 14:59:16 +09002043}
2044
Tejun Heocc0680a2007-08-06 18:36:23 +09002045static void ahci_postreset(struct ata_link *link, unsigned int *class)
Tejun Heo4bd00f62006-02-11 16:26:02 +09002046{
Tejun Heocc0680a2007-08-06 18:36:23 +09002047 struct ata_port *ap = link->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002048 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4bd00f62006-02-11 16:26:02 +09002049 u32 new_tmp, tmp;
2050
Tejun Heo203c75b2008-04-07 22:47:18 +09002051 ata_std_postreset(link, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -05002052
2053 /* Make sure port's ATAPI bit is set appropriately */
2054 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +09002055 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -05002056 new_tmp |= PORT_CMD_ATAPI;
2057 else
2058 new_tmp &= ~PORT_CMD_ATAPI;
2059 if (new_tmp != tmp) {
2060 writel(new_tmp, port_mmio + PORT_CMD);
2061 readl(port_mmio + PORT_CMD); /* flush */
2062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
Tejun Heo12fad3f2006-05-15 21:03:55 +09002065static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002067 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09002068 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
2069 unsigned int si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 VPRINTK("ENTER\n");
2072
2073 /*
2074 * Next, the S/G list.
2075 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09002076 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002077 dma_addr_t addr = sg_dma_address(sg);
2078 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Tejun Heoff2aeb12007-12-05 16:43:11 +09002080 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
2081 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
2082 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
Jeff Garzik828d09d2005-11-12 01:27:07 -05002084
Tejun Heoff2aeb12007-12-05 16:43:11 +09002085 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Shane Huangd6ef3152009-12-09 17:23:04 +08002088static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc)
2089{
2090 struct ata_port *ap = qc->ap;
2091 struct ahci_port_priv *pp = ap->private_data;
2092
2093 if (!sata_pmp_attached(ap) || pp->fbs_enabled)
2094 return ata_std_qc_defer(qc);
2095 else
2096 return sata_pmp_qc_defer_cmd_switch(qc);
2097}
2098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099static void ahci_qc_prep(struct ata_queued_cmd *qc)
2100{
Jeff Garzika0ea7322005-06-04 01:13:15 -04002101 struct ata_port *ap = qc->ap;
2102 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo405e66b2007-11-27 19:28:53 +09002103 int is_atapi = ata_is_atapi(qc->tf.protocol);
Tejun Heo12fad3f2006-05-15 21:03:55 +09002104 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 u32 opts;
2106 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -05002107 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 * Fill in command table information. First, the header,
2111 * a SATA Register - Host to Device command FIS.
2112 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09002113 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
2114
Tejun Heo7d50b602007-09-23 13:19:54 +09002115 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
Tejun Heocc9278e2006-02-10 17:25:47 +09002116 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002117 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
2118 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -04002119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Tejun Heocc9278e2006-02-10 17:25:47 +09002121 n_elem = 0;
2122 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +09002123 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Tejun Heocc9278e2006-02-10 17:25:47 +09002125 /*
2126 * Fill in command slot information.
2127 */
Tejun Heo7d50b602007-09-23 13:19:54 +09002128 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
Tejun Heocc9278e2006-02-10 17:25:47 +09002129 if (qc->tf.flags & ATA_TFLAG_WRITE)
2130 opts |= AHCI_CMD_WRITE;
2131 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +09002132 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -05002133
Tejun Heo12fad3f2006-05-15 21:03:55 +09002134 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
2136
Shane Huangd6ef3152009-12-09 17:23:04 +08002137static void ahci_fbs_dec_intr(struct ata_port *ap)
2138{
2139 struct ahci_port_priv *pp = ap->private_data;
2140 void __iomem *port_mmio = ahci_port_base(ap);
2141 u32 fbs = readl(port_mmio + PORT_FBS);
2142 int retries = 3;
2143
2144 DPRINTK("ENTER\n");
2145 BUG_ON(!pp->fbs_enabled);
2146
2147 /* time to wait for DEC is not specified by AHCI spec,
2148 * add a retry loop for safety.
2149 */
2150 writel(fbs | PORT_FBS_DEC, port_mmio + PORT_FBS);
2151 fbs = readl(port_mmio + PORT_FBS);
2152 while ((fbs & PORT_FBS_DEC) && retries--) {
2153 udelay(1);
2154 fbs = readl(port_mmio + PORT_FBS);
2155 }
2156
2157 if (fbs & PORT_FBS_DEC)
2158 dev_printk(KERN_ERR, ap->host->dev,
2159 "failed to clear device error\n");
2160}
2161
Tejun Heo78cd52d2006-05-15 20:58:29 +09002162static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163{
Tejun Heo417a1a62007-09-23 13:19:55 +09002164 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002165 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002166 struct ata_eh_info *host_ehi = &ap->link.eh_info;
2167 struct ata_link *link = NULL;
2168 struct ata_queued_cmd *active_qc;
2169 struct ata_eh_info *active_ehi;
Shane Huangd6ef3152009-12-09 17:23:04 +08002170 bool fbs_need_dec = false;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002171 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Shane Huangd6ef3152009-12-09 17:23:04 +08002173 /* determine active link with error */
2174 if (pp->fbs_enabled) {
2175 void __iomem *port_mmio = ahci_port_base(ap);
2176 u32 fbs = readl(port_mmio + PORT_FBS);
2177 int pmp = fbs >> PORT_FBS_DWE_OFFSET;
2178
2179 if ((fbs & PORT_FBS_SDE) && (pmp < ap->nr_pmp_links) &&
2180 ata_link_online(&ap->pmp_link[pmp])) {
2181 link = &ap->pmp_link[pmp];
2182 fbs_need_dec = true;
2183 }
2184
2185 } else
2186 ata_for_each_link(link, ap, EDGE)
2187 if (ata_link_active(link))
2188 break;
2189
Tejun Heo7d50b602007-09-23 13:19:54 +09002190 if (!link)
2191 link = &ap->link;
2192
2193 active_qc = ata_qc_from_tag(ap, link->active_tag);
2194 active_ehi = &link->eh_info;
2195
2196 /* record irq stat */
2197 ata_ehi_clear_desc(host_ehi);
2198 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
Jeff Garzik9f68a242005-11-15 14:03:47 -05002199
Tejun Heo78cd52d2006-05-15 20:58:29 +09002200 /* AHCI needs SError cleared; otherwise, it might lock up */
Tejun Heo82ef04f2008-07-31 17:02:40 +09002201 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
2202 ahci_scr_write(&ap->link, SCR_ERROR, serror);
Tejun Heo7d50b602007-09-23 13:19:54 +09002203 host_ehi->serror |= serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Tejun Heo41669552006-11-29 11:33:14 +09002205 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
Tejun Heo417a1a62007-09-23 13:19:55 +09002206 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
Tejun Heo41669552006-11-29 11:33:14 +09002207 irq_stat &= ~PORT_IRQ_IF_ERR;
2208
Conke Hu55a61602007-03-27 18:33:05 +08002209 if (irq_stat & PORT_IRQ_TF_ERR) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002210 /* If qc is active, charge it; otherwise, the active
2211 * link. There's no active qc on NCQ errors. It will
2212 * be determined by EH by reading log page 10h.
2213 */
2214 if (active_qc)
2215 active_qc->err_mask |= AC_ERR_DEV;
2216 else
2217 active_ehi->err_mask |= AC_ERR_DEV;
2218
Tejun Heo417a1a62007-09-23 13:19:55 +09002219 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
Tejun Heo7d50b602007-09-23 13:19:54 +09002220 host_ehi->serror &= ~SERR_INTERNAL;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Tejun Heo78cd52d2006-05-15 20:58:29 +09002223 if (irq_stat & PORT_IRQ_UNK_FIS) {
2224 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Tejun Heo7d50b602007-09-23 13:19:54 +09002226 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002227 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002228 ata_ehi_push_desc(active_ehi,
2229 "unknown FIS %08x %08x %08x %08x" ,
Tejun Heo78cd52d2006-05-15 20:58:29 +09002230 unk[0], unk[1], unk[2], unk[3]);
2231 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04002232
Tejun Heo071f44b2008-04-07 22:47:22 +09002233 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002234 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002235 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002236 ata_ehi_push_desc(active_ehi, "incorrect PMP");
2237 }
Tejun Heo78cd52d2006-05-15 20:58:29 +09002238
Tejun Heo7d50b602007-09-23 13:19:54 +09002239 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
2240 host_ehi->err_mask |= AC_ERR_HOST_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002241 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002242 ata_ehi_push_desc(host_ehi, "host bus error");
2243 }
2244
2245 if (irq_stat & PORT_IRQ_IF_ERR) {
Shane Huangd6ef3152009-12-09 17:23:04 +08002246 if (fbs_need_dec)
2247 active_ehi->err_mask |= AC_ERR_DEV;
2248 else {
2249 host_ehi->err_mask |= AC_ERR_ATA_BUS;
2250 host_ehi->action |= ATA_EH_RESET;
2251 }
2252
Tejun Heo7d50b602007-09-23 13:19:54 +09002253 ata_ehi_push_desc(host_ehi, "interface fatal error");
2254 }
2255
2256 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
2257 ata_ehi_hotplugged(host_ehi);
2258 ata_ehi_push_desc(host_ehi, "%s",
2259 irq_stat & PORT_IRQ_CONNECT ?
2260 "connection status changed" : "PHY RDY changed");
2261 }
2262
2263 /* okay, let's hand over to EH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Tejun Heo78cd52d2006-05-15 20:58:29 +09002265 if (irq_stat & PORT_IRQ_FREEZE)
2266 ata_port_freeze(ap);
Shane Huangd6ef3152009-12-09 17:23:04 +08002267 else if (fbs_need_dec) {
2268 ata_link_abort(link);
2269 ahci_fbs_dec_intr(ap);
2270 } else
Tejun Heo78cd52d2006-05-15 20:58:29 +09002271 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272}
2273
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002274static void ahci_port_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
Tejun Heo350756f2008-04-07 22:47:21 +09002276 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002277 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo0291f952007-01-25 19:16:28 +09002278 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo5f226c62007-10-09 15:02:23 +09002279 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heob06ce3e2007-10-09 15:06:48 +09002280 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Tejun Heo12fad3f2006-05-15 21:03:55 +09002281 u32 status, qc_active;
Tejun Heo459ad682007-12-07 12:46:23 +09002282 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
2284 status = readl(port_mmio + PORT_IRQ_STAT);
2285 writel(status, port_mmio + PORT_IRQ_STAT);
2286
Tejun Heob06ce3e2007-10-09 15:06:48 +09002287 /* ignore BAD_PMP while resetting */
2288 if (unlikely(resetting))
2289 status &= ~PORT_IRQ_BAD_PMP;
2290
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002291 /* If we are getting PhyRdy, this is
2292 * just a power state change, we should
2293 * clear out this, plus the PhyRdy/Comm
2294 * Wake bits from Serror
2295 */
2296 if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) &&
2297 (status & PORT_IRQ_PHYRDY)) {
2298 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo82ef04f2008-07-31 17:02:40 +09002299 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002300 }
2301
Tejun Heo78cd52d2006-05-15 20:58:29 +09002302 if (unlikely(status & PORT_IRQ_ERROR)) {
2303 ahci_error_intr(ap, status);
2304 return;
2305 }
2306
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002307 if (status & PORT_IRQ_SDB_FIS) {
Tejun Heo5f226c62007-10-09 15:02:23 +09002308 /* If SNotification is available, leave notification
2309 * handling to sata_async_notification(). If not,
2310 * emulate it by snooping SDB FIS RX area.
2311 *
2312 * Snooping FIS RX area is probably cheaper than
2313 * poking SNotification but some constrollers which
2314 * implement SNotification, ICH9 for example, don't
2315 * store AN SDB FIS into receive area.
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002316 */
Tejun Heo5f226c62007-10-09 15:02:23 +09002317 if (hpriv->cap & HOST_CAP_SNTF)
Tejun Heo7d77b242007-09-23 13:14:13 +09002318 sata_async_notification(ap);
Tejun Heo5f226c62007-10-09 15:02:23 +09002319 else {
2320 /* If the 'N' bit in word 0 of the FIS is set,
2321 * we just received asynchronous notification.
2322 * Tell libata about it.
Shane Huangd6ef3152009-12-09 17:23:04 +08002323 *
2324 * Lack of SNotification should not appear in
2325 * ahci 1.2, so the workaround is unnecessary
2326 * when FBS is enabled.
Tejun Heo5f226c62007-10-09 15:02:23 +09002327 */
Shane Huangd6ef3152009-12-09 17:23:04 +08002328 if (pp->fbs_enabled)
2329 WARN_ON_ONCE(1);
2330 else {
2331 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
2332 u32 f0 = le32_to_cpu(f[0]);
2333 if (f0 & (1 << 15))
2334 sata_async_notification(ap);
2335 }
Tejun Heo5f226c62007-10-09 15:02:23 +09002336 }
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002337 }
2338
Tejun Heo7d50b602007-09-23 13:19:54 +09002339 /* pp->active_link is valid iff any command is in flight */
2340 if (ap->qc_active && pp->active_link->sactive)
Tejun Heo12fad3f2006-05-15 21:03:55 +09002341 qc_active = readl(port_mmio + PORT_SCR_ACT);
2342 else
2343 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
2344
Tejun Heo79f97da2008-04-07 22:47:20 +09002345 rc = ata_qc_complete_multiple(ap, qc_active);
Tejun Heob06ce3e2007-10-09 15:06:48 +09002346
Tejun Heo459ad682007-12-07 12:46:23 +09002347 /* while resetting, invalid completions are expected */
2348 if (unlikely(rc < 0 && !resetting)) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002349 ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002350 ehi->action |= ATA_EH_RESET;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002351 ata_port_freeze(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353}
2354
David Howells7d12e782006-10-05 14:55:46 +01002355static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
Jeff Garzikcca39742006-08-24 03:19:22 -04002357 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 struct ahci_host_priv *hpriv;
2359 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -04002360 void __iomem *mmio;
Tejun Heod28f87a2008-07-05 13:10:50 +09002361 u32 irq_stat, irq_masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 VPRINTK("ENTER\n");
2364
Jeff Garzikcca39742006-08-24 03:19:22 -04002365 hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002366 mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368 /* sigh. 0xffffffff is a valid return from h/w */
2369 irq_stat = readl(mmio + HOST_IRQ_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 if (!irq_stat)
2371 return IRQ_NONE;
2372
Tejun Heod28f87a2008-07-05 13:10:50 +09002373 irq_masked = irq_stat & hpriv->port_map;
2374
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002375 spin_lock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002377 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Tejun Heod28f87a2008-07-05 13:10:50 +09002380 if (!(irq_masked & (1 << i)))
Jeff Garzik67846b32005-10-05 02:58:32 -04002381 continue;
2382
Jeff Garzikcca39742006-08-24 03:19:22 -04002383 ap = host->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -04002384 if (ap) {
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002385 ahci_port_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -04002386 VPRINTK("port %u\n", i);
2387 } else {
2388 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +09002389 if (ata_ratelimit())
Jeff Garzikcca39742006-08-24 03:19:22 -04002390 dev_printk(KERN_WARNING, host->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -05002391 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 }
Jeff Garzik67846b32005-10-05 02:58:32 -04002393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 handled = 1;
2395 }
2396
Tejun Heod28f87a2008-07-05 13:10:50 +09002397 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
2398 * it should be cleared after all the port events are cleared;
2399 * otherwise, it will raise a spurious interrupt after each
2400 * valid one. Please read section 10.6.2 of ahci 1.1 for more
2401 * information.
2402 *
2403 * Also, use the unmasked value to clear interrupt as spurious
2404 * pending event on a dummy port might cause screaming IRQ.
2405 */
Tejun Heoea0c62f2008-06-28 01:49:02 +09002406 writel(irq_stat, mmio + HOST_IRQ_STAT);
2407
Jeff Garzikcca39742006-08-24 03:19:22 -04002408 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410 VPRINTK("EXIT\n");
2411
2412 return IRQ_RETVAL(handled);
2413}
2414
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09002415static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416{
2417 struct ata_port *ap = qc->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002418 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09002419 struct ahci_port_priv *pp = ap->private_data;
2420
2421 /* Keep track of the currently active link. It will be used
2422 * in completion path to determine whether NCQ phase is in
2423 * progress.
2424 */
2425 pp->active_link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Tejun Heo12fad3f2006-05-15 21:03:55 +09002427 if (qc->tf.protocol == ATA_PROT_NCQ)
2428 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
Shane Huangd6ef3152009-12-09 17:23:04 +08002429
2430 if (pp->fbs_enabled && pp->fbs_last_dev != qc->dev->link->pmp) {
2431 u32 fbs = readl(port_mmio + PORT_FBS);
2432 fbs &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
2433 fbs |= qc->dev->link->pmp << PORT_FBS_DEV_OFFSET;
2434 writel(fbs, port_mmio + PORT_FBS);
2435 pp->fbs_last_dev = qc->dev->link->pmp;
2436 }
2437
Tejun Heo12fad3f2006-05-15 21:03:55 +09002438 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002440 ahci_sw_activity(qc->dev->link);
2441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 return 0;
2443}
2444
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002445static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2446{
2447 struct ahci_port_priv *pp = qc->ap->private_data;
2448 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2449
Shane Huangd6ef3152009-12-09 17:23:04 +08002450 if (pp->fbs_enabled)
2451 d2h_fis += qc->dev->link->pmp * AHCI_RX_FIS_SZ;
2452
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002453 ata_tf_from_fis(d2h_fis, &qc->result_tf);
2454 return true;
2455}
2456
Tejun Heo78cd52d2006-05-15 20:58:29 +09002457static void ahci_freeze(struct ata_port *ap)
2458{
Tejun Heo4447d352007-04-17 23:44:08 +09002459 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002460
2461 /* turn IRQ off */
2462 writel(0, port_mmio + PORT_IRQ_MASK);
2463}
2464
2465static void ahci_thaw(struct ata_port *ap)
2466{
Tejun Heo0d5ff562007-02-01 15:06:36 +09002467 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
Tejun Heo4447d352007-04-17 23:44:08 +09002468 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002469 u32 tmp;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002470 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002471
2472 /* clear IRQ */
2473 tmp = readl(port_mmio + PORT_IRQ_STAT);
2474 writel(tmp, port_mmio + PORT_IRQ_STAT);
Tejun Heoa7187282007-01-27 11:04:26 +09002475 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002476
Tejun Heo1c954a42007-10-09 15:01:37 +09002477 /* turn IRQ back on */
2478 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002479}
2480
2481static void ahci_error_handler(struct ata_port *ap)
2482{
Tejun Heob51e9e52006-06-29 01:29:30 +09002483 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +09002484 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09002485 ahci_stop_engine(ap);
2486 ahci_start_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002487 }
2488
Tejun Heoa1efdab2008-03-25 12:22:50 +09002489 sata_pmp_error_handler(ap);
Tejun Heoedc93052007-10-25 14:59:16 +09002490}
2491
Tejun Heo78cd52d2006-05-15 20:58:29 +09002492static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2493{
2494 struct ata_port *ap = qc->ap;
2495
Tejun Heod2e75df2007-07-16 14:29:39 +09002496 /* make DMA engine forget about the failed command */
2497 if (qc->flags & ATA_QCFLAG_FAILED)
Shane Huang78d5ae32009-08-07 15:05:52 +08002498 ahci_kick_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002499}
2500
Shane Huangd6ef3152009-12-09 17:23:04 +08002501static void ahci_enable_fbs(struct ata_port *ap)
2502{
2503 struct ahci_port_priv *pp = ap->private_data;
2504 void __iomem *port_mmio = ahci_port_base(ap);
2505 u32 fbs;
2506 int rc;
2507
2508 if (!pp->fbs_supported)
2509 return;
2510
2511 fbs = readl(port_mmio + PORT_FBS);
2512 if (fbs & PORT_FBS_EN) {
2513 pp->fbs_enabled = true;
2514 pp->fbs_last_dev = -1; /* initialization */
2515 return;
2516 }
2517
2518 rc = ahci_stop_engine(ap);
2519 if (rc)
2520 return;
2521
2522 writel(fbs | PORT_FBS_EN, port_mmio + PORT_FBS);
2523 fbs = readl(port_mmio + PORT_FBS);
2524 if (fbs & PORT_FBS_EN) {
2525 dev_printk(KERN_INFO, ap->host->dev, "FBS is enabled.\n");
2526 pp->fbs_enabled = true;
2527 pp->fbs_last_dev = -1; /* initialization */
2528 } else
2529 dev_printk(KERN_ERR, ap->host->dev, "Failed to enable FBS\n");
2530
2531 ahci_start_engine(ap);
2532}
2533
2534static void ahci_disable_fbs(struct ata_port *ap)
2535{
2536 struct ahci_port_priv *pp = ap->private_data;
2537 void __iomem *port_mmio = ahci_port_base(ap);
2538 u32 fbs;
2539 int rc;
2540
2541 if (!pp->fbs_supported)
2542 return;
2543
2544 fbs = readl(port_mmio + PORT_FBS);
2545 if ((fbs & PORT_FBS_EN) == 0) {
2546 pp->fbs_enabled = false;
2547 return;
2548 }
2549
2550 rc = ahci_stop_engine(ap);
2551 if (rc)
2552 return;
2553
2554 writel(fbs & ~PORT_FBS_EN, port_mmio + PORT_FBS);
2555 fbs = readl(port_mmio + PORT_FBS);
2556 if (fbs & PORT_FBS_EN)
2557 dev_printk(KERN_ERR, ap->host->dev, "Failed to disable FBS\n");
2558 else {
2559 dev_printk(KERN_INFO, ap->host->dev, "FBS is disabled.\n");
2560 pp->fbs_enabled = false;
2561 }
2562
2563 ahci_start_engine(ap);
2564}
2565
Tejun Heo7d50b602007-09-23 13:19:54 +09002566static void ahci_pmp_attach(struct ata_port *ap)
2567{
2568 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002569 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002570 u32 cmd;
2571
2572 cmd = readl(port_mmio + PORT_CMD);
2573 cmd |= PORT_CMD_PMP;
2574 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002575
Shane Huangd6ef3152009-12-09 17:23:04 +08002576 ahci_enable_fbs(ap);
2577
Tejun Heo1c954a42007-10-09 15:01:37 +09002578 pp->intr_mask |= PORT_IRQ_BAD_PMP;
2579 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002580}
2581
2582static void ahci_pmp_detach(struct ata_port *ap)
2583{
2584 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002585 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002586 u32 cmd;
2587
Shane Huangd6ef3152009-12-09 17:23:04 +08002588 ahci_disable_fbs(ap);
2589
Tejun Heo7d50b602007-09-23 13:19:54 +09002590 cmd = readl(port_mmio + PORT_CMD);
2591 cmd &= ~PORT_CMD_PMP;
2592 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002593
2594 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
2595 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002596}
2597
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002598static int ahci_port_resume(struct ata_port *ap)
2599{
2600 ahci_power_up(ap);
2601 ahci_start_port(ap);
2602
Tejun Heo071f44b2008-04-07 22:47:22 +09002603 if (sata_pmp_attached(ap))
Tejun Heo7d50b602007-09-23 13:19:54 +09002604 ahci_pmp_attach(ap);
2605 else
2606 ahci_pmp_detach(ap);
2607
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002608 return 0;
2609}
2610
Tejun Heo438ac6d2007-03-02 17:31:26 +09002611#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +09002612static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2613{
Tejun Heoc1332872006-07-26 15:59:26 +09002614 const char *emsg = NULL;
2615 int rc;
2616
Tejun Heo4447d352007-04-17 23:44:08 +09002617 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo8e16f942006-11-20 15:42:36 +09002618 if (rc == 0)
Tejun Heo4447d352007-04-17 23:44:08 +09002619 ahci_power_down(ap);
Tejun Heo8e16f942006-11-20 15:42:36 +09002620 else {
Tejun Heoc1332872006-07-26 15:59:26 +09002621 ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002622 ahci_start_port(ap);
Tejun Heoc1332872006-07-26 15:59:26 +09002623 }
2624
2625 return rc;
2626}
2627
Tejun Heoc1332872006-07-26 15:59:26 +09002628static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
2629{
Jeff Garzikcca39742006-08-24 03:19:22 -04002630 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo9b10ae82009-05-30 20:50:12 +09002631 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002632 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heoc1332872006-07-26 15:59:26 +09002633 u32 ctl;
2634
Tejun Heo9b10ae82009-05-30 20:50:12 +09002635 if (mesg.event & PM_EVENT_SUSPEND &&
2636 hpriv->flags & AHCI_HFLAG_NO_SUSPEND) {
2637 dev_printk(KERN_ERR, &pdev->dev,
2638 "BIOS update required for suspend/resume\n");
2639 return -EIO;
2640 }
2641
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002642 if (mesg.event & PM_EVENT_SLEEP) {
Tejun Heoc1332872006-07-26 15:59:26 +09002643 /* AHCI spec rev1.1 section 8.3.3:
2644 * Software must disable interrupts prior to requesting a
2645 * transition of the HBA to D3 state.
2646 */
2647 ctl = readl(mmio + HOST_CTL);
2648 ctl &= ~HOST_IRQ_EN;
2649 writel(ctl, mmio + HOST_CTL);
2650 readl(mmio + HOST_CTL); /* flush */
2651 }
2652
2653 return ata_pci_device_suspend(pdev, mesg);
2654}
2655
2656static int ahci_pci_device_resume(struct pci_dev *pdev)
2657{
Jeff Garzikcca39742006-08-24 03:19:22 -04002658 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heoc1332872006-07-26 15:59:26 +09002659 int rc;
2660
Tejun Heo553c4aa2006-12-26 19:39:50 +09002661 rc = ata_pci_device_do_resume(pdev);
2662 if (rc)
2663 return rc;
Tejun Heoc1332872006-07-26 15:59:26 +09002664
2665 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
Tejun Heo4447d352007-04-17 23:44:08 +09002666 rc = ahci_reset_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002667 if (rc)
2668 return rc;
2669
Tejun Heo4447d352007-04-17 23:44:08 +09002670 ahci_init_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002671 }
2672
Jeff Garzikcca39742006-08-24 03:19:22 -04002673 ata_host_resume(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002674
2675 return 0;
2676}
Tejun Heo438ac6d2007-03-02 17:31:26 +09002677#endif
Tejun Heoc1332872006-07-26 15:59:26 +09002678
Tejun Heo254950c2006-07-26 15:59:25 +09002679static int ahci_port_start(struct ata_port *ap)
2680{
Shane Huangd6ef3152009-12-09 17:23:04 +08002681 struct ahci_host_priv *hpriv = ap->host->private_data;
Jeff Garzikcca39742006-08-24 03:19:22 -04002682 struct device *dev = ap->host->dev;
Tejun Heo254950c2006-07-26 15:59:25 +09002683 struct ahci_port_priv *pp;
Tejun Heo254950c2006-07-26 15:59:25 +09002684 void *mem;
2685 dma_addr_t mem_dma;
Shane Huangd6ef3152009-12-09 17:23:04 +08002686 size_t dma_sz, rx_fis_sz;
Tejun Heo254950c2006-07-26 15:59:25 +09002687
Tejun Heo24dc5f32007-01-20 16:00:28 +09002688 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Tejun Heo254950c2006-07-26 15:59:25 +09002689 if (!pp)
2690 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002691
Shane Huangd6ef3152009-12-09 17:23:04 +08002692 /* check FBS capability */
2693 if ((hpriv->cap & HOST_CAP_FBS) && sata_pmp_supported(ap)) {
2694 void __iomem *port_mmio = ahci_port_base(ap);
2695 u32 cmd = readl(port_mmio + PORT_CMD);
2696 if (cmd & PORT_CMD_FBSCP)
2697 pp->fbs_supported = true;
2698 else
2699 dev_printk(KERN_WARNING, dev,
2700 "The port is not capable of FBS\n");
2701 }
2702
2703 if (pp->fbs_supported) {
2704 dma_sz = AHCI_PORT_PRIV_FBS_DMA_SZ;
2705 rx_fis_sz = AHCI_RX_FIS_SZ * 16;
2706 } else {
2707 dma_sz = AHCI_PORT_PRIV_DMA_SZ;
2708 rx_fis_sz = AHCI_RX_FIS_SZ;
2709 }
2710
2711 mem = dmam_alloc_coherent(dev, dma_sz, &mem_dma, GFP_KERNEL);
Tejun Heo24dc5f32007-01-20 16:00:28 +09002712 if (!mem)
Tejun Heo254950c2006-07-26 15:59:25 +09002713 return -ENOMEM;
Shane Huangd6ef3152009-12-09 17:23:04 +08002714 memset(mem, 0, dma_sz);
Tejun Heo254950c2006-07-26 15:59:25 +09002715
2716 /*
2717 * First item in chunk of DMA memory: 32-slot command table,
2718 * 32 bytes each in size
2719 */
2720 pp->cmd_slot = mem;
2721 pp->cmd_slot_dma = mem_dma;
2722
2723 mem += AHCI_CMD_SLOT_SZ;
2724 mem_dma += AHCI_CMD_SLOT_SZ;
2725
2726 /*
2727 * Second item: Received-FIS area
2728 */
2729 pp->rx_fis = mem;
2730 pp->rx_fis_dma = mem_dma;
2731
Shane Huangd6ef3152009-12-09 17:23:04 +08002732 mem += rx_fis_sz;
2733 mem_dma += rx_fis_sz;
Tejun Heo254950c2006-07-26 15:59:25 +09002734
2735 /*
2736 * Third item: data area for storing a single command
2737 * and its scatter-gather table
2738 */
2739 pp->cmd_tbl = mem;
2740 pp->cmd_tbl_dma = mem_dma;
2741
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002742 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002743 * Save off initial list of interrupts to be enabled.
2744 * This could be changed later
2745 */
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002746 pp->intr_mask = DEF_PORT_IRQ;
2747
Tejun Heo254950c2006-07-26 15:59:25 +09002748 ap->private_data = pp;
2749
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002750 /* engage engines, captain */
2751 return ahci_port_resume(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09002752}
2753
2754static void ahci_port_stop(struct ata_port *ap)
2755{
Tejun Heo0be0aa92006-07-26 15:59:26 +09002756 const char *emsg = NULL;
2757 int rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002758
Tejun Heo0be0aa92006-07-26 15:59:26 +09002759 /* de-initialize port */
Tejun Heo4447d352007-04-17 23:44:08 +09002760 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo0be0aa92006-07-26 15:59:26 +09002761 if (rc)
2762 ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
Tejun Heo254950c2006-07-26 15:59:25 +09002763}
2764
Tejun Heo4447d352007-04-17 23:44:08 +09002765static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 if (using_dac &&
Yang Hongyang6a355282009-04-06 19:01:13 -07002770 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
2771 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 if (rc) {
Yang Hongyang284901a2009-04-06 19:01:15 -07002773 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002775 dev_printk(KERN_ERR, &pdev->dev,
2776 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 return rc;
2778 }
2779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07002781 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002783 dev_printk(KERN_ERR, &pdev->dev,
2784 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 return rc;
2786 }
Yang Hongyang284901a2009-04-06 19:01:15 -07002787 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002789 dev_printk(KERN_ERR, &pdev->dev,
2790 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 return rc;
2792 }
2793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 return 0;
2795}
2796
Tejun Heo4447d352007-04-17 23:44:08 +09002797static void ahci_print_info(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798{
Tejun Heo4447d352007-04-17 23:44:08 +09002799 struct ahci_host_priv *hpriv = host->private_data;
2800 struct pci_dev *pdev = to_pci_dev(host->dev);
2801 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Robert Hancock4c521c82009-09-20 17:02:31 -06002802 u32 vers, cap, cap2, impl, speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 const char *speed_s;
2804 u16 cc;
2805 const char *scc_s;
2806
2807 vers = readl(mmio + HOST_VERSION);
2808 cap = hpriv->cap;
Robert Hancock4c521c82009-09-20 17:02:31 -06002809 cap2 = hpriv->cap2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 impl = hpriv->port_map;
2811
2812 speed = (cap >> 20) & 0xf;
2813 if (speed == 1)
2814 speed_s = "1.5";
2815 else if (speed == 2)
2816 speed_s = "3";
Shane Huang8522ee22008-12-30 11:00:37 +08002817 else if (speed == 3)
2818 speed_s = "6";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 else
2820 speed_s = "?";
2821
2822 pci_read_config_word(pdev, 0x0a, &cc);
Conke Huc9f89472007-01-09 05:32:51 -05002823 if (cc == PCI_CLASS_STORAGE_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 scc_s = "IDE";
Conke Huc9f89472007-01-09 05:32:51 -05002825 else if (cc == PCI_CLASS_STORAGE_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 scc_s = "SATA";
Conke Huc9f89472007-01-09 05:32:51 -05002827 else if (cc == PCI_CLASS_STORAGE_RAID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 scc_s = "RAID";
2829 else
2830 scc_s = "unknown";
2831
Jeff Garzika9524a72005-10-30 14:39:11 -05002832 dev_printk(KERN_INFO, &pdev->dev,
2833 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002835 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002837 (vers >> 24) & 0xff,
2838 (vers >> 16) & 0xff,
2839 (vers >> 8) & 0xff,
2840 vers & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
2842 ((cap >> 8) & 0x1f) + 1,
2843 (cap & 0x1f) + 1,
2844 speed_s,
2845 impl,
2846 scc_s);
2847
Jeff Garzika9524a72005-10-30 14:39:11 -05002848 dev_printk(KERN_INFO, &pdev->dev,
2849 "flags: "
Tejun Heo203ef6c2007-07-16 14:29:40 +09002850 "%s%s%s%s%s%s%s"
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002851 "%s%s%s%s%s%s%s"
Robert Hancock4c521c82009-09-20 17:02:31 -06002852 "%s%s%s%s%s%s\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002853 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Robert Hancock4c521c82009-09-20 17:02:31 -06002855 cap & HOST_CAP_64 ? "64bit " : "",
2856 cap & HOST_CAP_NCQ ? "ncq " : "",
2857 cap & HOST_CAP_SNTF ? "sntf " : "",
2858 cap & HOST_CAP_MPS ? "ilck " : "",
2859 cap & HOST_CAP_SSS ? "stag " : "",
2860 cap & HOST_CAP_ALPM ? "pm " : "",
2861 cap & HOST_CAP_LED ? "led " : "",
2862 cap & HOST_CAP_CLO ? "clo " : "",
2863 cap & HOST_CAP_ONLY ? "only " : "",
2864 cap & HOST_CAP_PMP ? "pmp " : "",
2865 cap & HOST_CAP_FBS ? "fbs " : "",
2866 cap & HOST_CAP_PIO_MULTI ? "pio " : "",
2867 cap & HOST_CAP_SSC ? "slum " : "",
2868 cap & HOST_CAP_PART ? "part " : "",
2869 cap & HOST_CAP_CCC ? "ccc " : "",
2870 cap & HOST_CAP_EMS ? "ems " : "",
2871 cap & HOST_CAP_SXS ? "sxs " : "",
2872 cap2 & HOST_CAP2_APST ? "apst " : "",
2873 cap2 & HOST_CAP2_NVMHCI ? "nvmp " : "",
2874 cap2 & HOST_CAP2_BOH ? "boh " : ""
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 );
2876}
2877
Tejun Heoedc93052007-10-25 14:59:16 +09002878/* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2879 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2880 * support PMP and the 4726 either directly exports the device
2881 * attached to the first downstream port or acts as a hardware storage
2882 * controller and emulate a single ATA device (can be RAID 0/1 or some
2883 * other configuration).
2884 *
2885 * When there's no device attached to the first downstream port of the
2886 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2887 * configure the 4726. However, ATA emulation of the device is very
2888 * lame. It doesn't send signature D2H Reg FIS after the initial
2889 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2890 *
2891 * The following function works around the problem by always using
2892 * hardreset on the port and not depending on receiving signature FIS
2893 * afterward. If signature FIS isn't received soon, ATA class is
2894 * assumed without follow-up softreset.
2895 */
2896static void ahci_p5wdh_workaround(struct ata_host *host)
2897{
2898 static struct dmi_system_id sysids[] = {
2899 {
2900 .ident = "P5W DH Deluxe",
2901 .matches = {
2902 DMI_MATCH(DMI_SYS_VENDOR,
2903 "ASUSTEK COMPUTER INC"),
2904 DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
2905 },
2906 },
2907 { }
2908 };
2909 struct pci_dev *pdev = to_pci_dev(host->dev);
2910
2911 if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) &&
2912 dmi_check_system(sysids)) {
2913 struct ata_port *ap = host->ports[1];
2914
2915 dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH "
2916 "Deluxe on-board SIMG4726 workaround\n");
2917
2918 ap->ops = &ahci_p5wdh_ops;
2919 ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA;
2920 }
2921}
2922
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002923/* only some SB600 ahci controllers can do 64bit DMA */
2924static bool ahci_sb600_enable_64bit(struct pci_dev *pdev)
Shane Huang58a09b32009-05-27 15:04:43 +08002925{
2926 static const struct dmi_system_id sysids[] = {
Tejun Heo03d783b2009-08-16 21:04:02 +09002927 /*
2928 * The oldest version known to be broken is 0901 and
2929 * working is 1501 which was released on 2007-10-26.
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002930 * Enable 64bit DMA on 1501 and anything newer.
2931 *
Tejun Heo03d783b2009-08-16 21:04:02 +09002932 * Please read bko#9412 for more info.
2933 */
Shane Huang58a09b32009-05-27 15:04:43 +08002934 {
2935 .ident = "ASUS M2A-VM",
2936 .matches = {
2937 DMI_MATCH(DMI_BOARD_VENDOR,
2938 "ASUSTeK Computer INC."),
2939 DMI_MATCH(DMI_BOARD_NAME, "M2A-VM"),
2940 },
Tejun Heo03d783b2009-08-16 21:04:02 +09002941 .driver_data = "20071026", /* yyyymmdd */
Shane Huang58a09b32009-05-27 15:04:43 +08002942 },
Mark Nelsone65cc192009-11-03 20:06:48 +11002943 /*
2944 * All BIOS versions for the MSI K9A2 Platinum (MS-7376)
2945 * support 64bit DMA.
2946 *
2947 * BIOS versions earlier than 1.5 had the Manufacturer DMI
2948 * fields as "MICRO-STAR INTERANTIONAL CO.,LTD".
2949 * This spelling mistake was fixed in BIOS version 1.5, so
2950 * 1.5 and later have the Manufacturer as
2951 * "MICRO-STAR INTERNATIONAL CO.,LTD".
2952 * So try to match on DMI_BOARD_VENDOR of "MICRO-STAR INTER".
2953 *
2954 * BIOS versions earlier than 1.9 had a Board Product Name
2955 * DMI field of "MS-7376". This was changed to be
2956 * "K9A2 Platinum (MS-7376)" in version 1.9, but we can still
2957 * match on DMI_BOARD_NAME of "MS-7376".
2958 */
2959 {
2960 .ident = "MSI K9A2 Platinum",
2961 .matches = {
2962 DMI_MATCH(DMI_BOARD_VENDOR,
2963 "MICRO-STAR INTER"),
2964 DMI_MATCH(DMI_BOARD_NAME, "MS-7376"),
2965 },
2966 },
Shane Huang58a09b32009-05-27 15:04:43 +08002967 { }
2968 };
Tejun Heo03d783b2009-08-16 21:04:02 +09002969 const struct dmi_system_id *match;
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002970 int year, month, date;
2971 char buf[9];
Shane Huang58a09b32009-05-27 15:04:43 +08002972
Tejun Heo03d783b2009-08-16 21:04:02 +09002973 match = dmi_first_match(sysids);
Shane Huang58a09b32009-05-27 15:04:43 +08002974 if (pdev->bus->number != 0 || pdev->devfn != PCI_DEVFN(0x12, 0) ||
Tejun Heo03d783b2009-08-16 21:04:02 +09002975 !match)
Shane Huang58a09b32009-05-27 15:04:43 +08002976 return false;
2977
Mark Nelsone65cc192009-11-03 20:06:48 +11002978 if (!match->driver_data)
2979 goto enable_64bit;
2980
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002981 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date);
2982 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date);
Shane Huang58a09b32009-05-27 15:04:43 +08002983
Mark Nelsone65cc192009-11-03 20:06:48 +11002984 if (strcmp(buf, match->driver_data) >= 0)
2985 goto enable_64bit;
2986 else {
Tejun Heo03d783b2009-08-16 21:04:02 +09002987 dev_printk(KERN_WARNING, &pdev->dev, "%s: BIOS too old, "
2988 "forcing 32bit DMA, update BIOS\n", match->ident);
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002989 return false;
2990 }
Mark Nelsone65cc192009-11-03 20:06:48 +11002991
2992enable_64bit:
2993 dev_printk(KERN_WARNING, &pdev->dev, "%s: enabling 64bit DMA\n",
2994 match->ident);
2995 return true;
Shane Huang58a09b32009-05-27 15:04:43 +08002996}
2997
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002998static bool ahci_broken_system_poweroff(struct pci_dev *pdev)
2999{
3000 static const struct dmi_system_id broken_systems[] = {
3001 {
3002 .ident = "HP Compaq nx6310",
3003 .matches = {
3004 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3005 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6310"),
3006 },
3007 /* PCI slot number of the controller */
3008 .driver_data = (void *)0x1FUL,
3009 },
Maciej Ruteckid2f9c062009-03-20 00:06:46 +01003010 {
3011 .ident = "HP Compaq 6720s",
3012 .matches = {
3013 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3014 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6720s"),
3015 },
3016 /* PCI slot number of the controller */
3017 .driver_data = (void *)0x1FUL,
3018 },
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01003019
3020 { } /* terminate list */
3021 };
3022 const struct dmi_system_id *dmi = dmi_first_match(broken_systems);
3023
3024 if (dmi) {
3025 unsigned long slot = (unsigned long)dmi->driver_data;
3026 /* apply the quirk only to on-board controllers */
3027 return slot == PCI_SLOT(pdev->devfn);
3028 }
3029
3030 return false;
3031}
3032
Tejun Heo9b10ae82009-05-30 20:50:12 +09003033static bool ahci_broken_suspend(struct pci_dev *pdev)
3034{
3035 static const struct dmi_system_id sysids[] = {
3036 /*
3037 * On HP dv[4-6] and HDX18 with earlier BIOSen, link
3038 * to the harddisk doesn't become online after
3039 * resuming from STR. Warn and fail suspend.
Tejun Heo9deb3432010-03-16 09:50:26 +09003040 *
3041 * http://bugzilla.kernel.org/show_bug.cgi?id=12276
3042 *
3043 * Use dates instead of versions to match as HP is
3044 * apparently recycling both product and version
3045 * strings.
3046 *
3047 * http://bugzilla.kernel.org/show_bug.cgi?id=15462
Tejun Heo9b10ae82009-05-30 20:50:12 +09003048 */
3049 {
3050 .ident = "dv4",
3051 .matches = {
3052 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3053 DMI_MATCH(DMI_PRODUCT_NAME,
3054 "HP Pavilion dv4 Notebook PC"),
3055 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003056 .driver_data = "20090105", /* F.30 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003057 },
3058 {
3059 .ident = "dv5",
3060 .matches = {
3061 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3062 DMI_MATCH(DMI_PRODUCT_NAME,
3063 "HP Pavilion dv5 Notebook PC"),
3064 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003065 .driver_data = "20090506", /* F.16 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003066 },
3067 {
3068 .ident = "dv6",
3069 .matches = {
3070 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3071 DMI_MATCH(DMI_PRODUCT_NAME,
3072 "HP Pavilion dv6 Notebook PC"),
3073 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003074 .driver_data = "20090423", /* F.21 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003075 },
3076 {
3077 .ident = "HDX18",
3078 .matches = {
3079 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3080 DMI_MATCH(DMI_PRODUCT_NAME,
3081 "HP HDX18 Notebook PC"),
3082 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003083 .driver_data = "20090430", /* F.23 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003084 },
Tejun Heocedc9bf2010-01-28 16:04:15 +09003085 /*
3086 * Acer eMachines G725 has the same problem. BIOS
3087 * V1.03 is known to be broken. V3.04 is known to
3088 * work. Inbetween, there are V1.06, V2.06 and V3.03
3089 * that we don't have much idea about. For now,
3090 * blacklist anything older than V3.04.
Tejun Heo9deb3432010-03-16 09:50:26 +09003091 *
3092 * http://bugzilla.kernel.org/show_bug.cgi?id=15104
Tejun Heocedc9bf2010-01-28 16:04:15 +09003093 */
3094 {
3095 .ident = "G725",
3096 .matches = {
3097 DMI_MATCH(DMI_SYS_VENDOR, "eMachines"),
3098 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines G725"),
3099 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003100 .driver_data = "20091216", /* V3.04 */
Tejun Heocedc9bf2010-01-28 16:04:15 +09003101 },
Tejun Heo9b10ae82009-05-30 20:50:12 +09003102 { } /* terminate list */
3103 };
3104 const struct dmi_system_id *dmi = dmi_first_match(sysids);
Tejun Heo9deb3432010-03-16 09:50:26 +09003105 int year, month, date;
3106 char buf[9];
Tejun Heo9b10ae82009-05-30 20:50:12 +09003107
3108 if (!dmi || pdev->bus->number || pdev->devfn != PCI_DEVFN(0x1f, 2))
3109 return false;
3110
Tejun Heo9deb3432010-03-16 09:50:26 +09003111 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date);
3112 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date);
Tejun Heo9b10ae82009-05-30 20:50:12 +09003113
Tejun Heo9deb3432010-03-16 09:50:26 +09003114 return strcmp(buf, dmi->driver_data) < 0;
Tejun Heo9b10ae82009-05-30 20:50:12 +09003115}
3116
Tejun Heo55946392009-08-04 14:30:08 +09003117static bool ahci_broken_online(struct pci_dev *pdev)
3118{
3119#define ENCODE_BUSDEVFN(bus, slot, func) \
3120 (void *)(unsigned long)(((bus) << 8) | PCI_DEVFN((slot), (func)))
3121 static const struct dmi_system_id sysids[] = {
3122 /*
3123 * There are several gigabyte boards which use
3124 * SIMG5723s configured as hardware RAID. Certain
3125 * 5723 firmware revisions shipped there keep the link
3126 * online but fail to answer properly to SRST or
3127 * IDENTIFY when no device is attached downstream
3128 * causing libata to retry quite a few times leading
3129 * to excessive detection delay.
3130 *
3131 * As these firmwares respond to the second reset try
3132 * with invalid device signature, considering unknown
3133 * sig as offline works around the problem acceptably.
3134 */
3135 {
3136 .ident = "EP45-DQ6",
3137 .matches = {
3138 DMI_MATCH(DMI_BOARD_VENDOR,
3139 "Gigabyte Technology Co., Ltd."),
3140 DMI_MATCH(DMI_BOARD_NAME, "EP45-DQ6"),
3141 },
3142 .driver_data = ENCODE_BUSDEVFN(0x0a, 0x00, 0),
3143 },
3144 {
3145 .ident = "EP45-DS5",
3146 .matches = {
3147 DMI_MATCH(DMI_BOARD_VENDOR,
3148 "Gigabyte Technology Co., Ltd."),
3149 DMI_MATCH(DMI_BOARD_NAME, "EP45-DS5"),
3150 },
3151 .driver_data = ENCODE_BUSDEVFN(0x03, 0x00, 0),
3152 },
3153 { } /* terminate list */
3154 };
3155#undef ENCODE_BUSDEVFN
3156 const struct dmi_system_id *dmi = dmi_first_match(sysids);
3157 unsigned int val;
3158
3159 if (!dmi)
3160 return false;
3161
3162 val = (unsigned long)dmi->driver_data;
3163
3164 return pdev->bus->number == (val >> 8) && pdev->devfn == (val & 0xff);
3165}
3166
Markus Trippelsdorf8e513212009-10-09 05:41:47 +02003167#ifdef CONFIG_ATA_ACPI
Tejun Heof80ae7e2009-09-16 04:18:03 +09003168static void ahci_gtf_filter_workaround(struct ata_host *host)
3169{
3170 static const struct dmi_system_id sysids[] = {
3171 /*
3172 * Aspire 3810T issues a bunch of SATA enable commands
3173 * via _GTF including an invalid one and one which is
3174 * rejected by the device. Among the successful ones
3175 * is FPDMA non-zero offset enable which when enabled
3176 * only on the drive side leads to NCQ command
3177 * failures. Filter it out.
3178 */
3179 {
3180 .ident = "Aspire 3810T",
3181 .matches = {
3182 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
3183 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3810T"),
3184 },
3185 .driver_data = (void *)ATA_ACPI_FILTER_FPDMA_OFFSET,
3186 },
3187 { }
3188 };
3189 const struct dmi_system_id *dmi = dmi_first_match(sysids);
3190 unsigned int filter;
3191 int i;
3192
3193 if (!dmi)
3194 return;
3195
3196 filter = (unsigned long)dmi->driver_data;
3197 dev_printk(KERN_INFO, host->dev,
3198 "applying extra ACPI _GTF filter 0x%x for %s\n",
3199 filter, dmi->ident);
3200
3201 for (i = 0; i < host->n_ports; i++) {
3202 struct ata_port *ap = host->ports[i];
3203 struct ata_link *link;
3204 struct ata_device *dev;
3205
3206 ata_for_each_link(link, ap, EDGE)
3207 ata_for_each_dev(dev, link, ALL)
3208 dev->gtf_filter |= filter;
3209 }
3210}
Markus Trippelsdorf8e513212009-10-09 05:41:47 +02003211#else
3212static inline void ahci_gtf_filter_workaround(struct ata_host *host)
3213{}
3214#endif
Tejun Heof80ae7e2009-09-16 04:18:03 +09003215
Tejun Heo24dc5f32007-01-20 16:00:28 +09003216static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217{
3218 static int printed_version;
Tejun Heoe297d992008-06-10 00:13:04 +09003219 unsigned int board_id = ent->driver_data;
3220 struct ata_port_info pi = ahci_port_info[board_id];
Tejun Heo4447d352007-04-17 23:44:08 +09003221 const struct ata_port_info *ppi[] = { &pi, NULL };
Tejun Heo24dc5f32007-01-20 16:00:28 +09003222 struct device *dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 struct ahci_host_priv *hpriv;
Tejun Heo4447d352007-04-17 23:44:08 +09003224 struct ata_host *host;
Tejun Heo837f5f82008-02-06 15:13:51 +09003225 int n_ports, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
3227 VPRINTK("ENTER\n");
3228
Tejun Heo12fad3f2006-05-15 21:03:55 +09003229 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
3230
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05003232 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Alan Cox5b66c822008-09-03 14:48:34 +01003234 /* The AHCI driver can only drive the SATA ports, the PATA driver
3235 can drive them all so if both drivers are selected make sure
3236 AHCI stays out of the way */
3237 if (pdev->vendor == PCI_VENDOR_ID_MARVELL && !marvell_enable)
3238 return -ENODEV;
3239
Mark Nelson7a022672009-11-22 12:07:41 +11003240 /* Promise's PDC42819 is a SAS/SATA controller that has an AHCI mode.
3241 * At the moment, we can only use the AHCI mode. Let the users know
3242 * that for SAS drives they're out of luck.
3243 */
3244 if (pdev->vendor == PCI_VENDOR_ID_PROMISE)
3245 dev_printk(KERN_INFO, &pdev->dev, "PDC42819 "
3246 "can only drive SATA devices with this driver\n");
3247
Tejun Heo4447d352007-04-17 23:44:08 +09003248 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09003249 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 if (rc)
3251 return rc;
3252
Tejun Heodea55132008-03-11 19:52:31 +09003253 /* AHCI controllers often implement SFF compatible interface.
3254 * Grab all PCI BARs just in case.
3255 */
3256 rc = pcim_iomap_regions_request_all(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003257 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003258 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003259 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003260 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Tejun Heoc4f77922007-12-06 15:09:43 +09003262 if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
3263 (pdev->device == 0x2652 || pdev->device == 0x2653)) {
3264 u8 map;
3265
3266 /* ICH6s share the same PCI ID for both piix and ahci
3267 * modes. Enabling ahci mode while MAP indicates
3268 * combined mode is a bad idea. Yield to ata_piix.
3269 */
3270 pci_read_config_byte(pdev, ICH_MAP, &map);
3271 if (map & 0x3) {
3272 dev_printk(KERN_INFO, &pdev->dev, "controller is in "
3273 "combined mode, can't enable AHCI mode\n");
3274 return -ENODEV;
3275 }
3276 }
3277
Tejun Heo24dc5f32007-01-20 16:00:28 +09003278 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
3279 if (!hpriv)
3280 return -ENOMEM;
Tejun Heo417a1a62007-09-23 13:19:55 +09003281 hpriv->flags |= (unsigned long)pi.private_data;
3282
Tejun Heoe297d992008-06-10 00:13:04 +09003283 /* MCP65 revision A1 and A2 can't do MSI */
3284 if (board_id == board_ahci_mcp65 &&
3285 (pdev->revision == 0xa1 || pdev->revision == 0xa2))
3286 hpriv->flags |= AHCI_HFLAG_NO_MSI;
3287
Shane Huange427fe02008-12-30 10:53:41 +08003288 /* SB800 does NOT need the workaround to ignore SERR_INTERNAL */
3289 if (board_id == board_ahci_sb700 && pdev->revision >= 0x40)
3290 hpriv->flags &= ~AHCI_HFLAG_IGN_SERR_INTERNAL;
3291
Tejun Heo2fcad9d2009-10-03 18:27:29 +09003292 /* only some SB600s can do 64bit DMA */
3293 if (ahci_sb600_enable_64bit(pdev))
3294 hpriv->flags &= ~AHCI_HFLAG_32BIT_ONLY;
Shane Huang58a09b32009-05-27 15:04:43 +08003295
Tejun Heo31b239a2009-09-17 00:34:39 +09003296 if ((hpriv->flags & AHCI_HFLAG_NO_MSI) || pci_enable_msi(pdev))
3297 pci_intx(pdev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
Tejun Heo4447d352007-04-17 23:44:08 +09003299 /* save initial config */
Tejun Heo417a1a62007-09-23 13:19:55 +09003300 ahci_save_initial_config(pdev, hpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Tejun Heo4447d352007-04-17 23:44:08 +09003302 /* prepare host */
Robert Hancock453d3132010-01-26 22:33:23 -06003303 if (hpriv->cap & HOST_CAP_NCQ) {
3304 pi.flags |= ATA_FLAG_NCQ;
3305 /* Auto-activate optimization is supposed to be supported on
3306 all AHCI controllers indicating NCQ support, but it seems
3307 to be broken at least on some NVIDIA MCP79 chipsets.
3308 Until we get info on which NVIDIA chipsets don't have this
3309 issue, if any, disable AA on all NVIDIA AHCIs. */
3310 if (pdev->vendor != PCI_VENDOR_ID_NVIDIA)
3311 pi.flags |= ATA_FLAG_FPDMA_AA;
3312 }
Tejun Heo4447d352007-04-17 23:44:08 +09003313
Tejun Heo7d50b602007-09-23 13:19:54 +09003314 if (hpriv->cap & HOST_CAP_PMP)
3315 pi.flags |= ATA_FLAG_PMP;
3316
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003317 if (ahci_em_messages && (hpriv->cap & HOST_CAP_EMS)) {
3318 u8 messages;
3319 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
3320 u32 em_loc = readl(mmio + HOST_EM_LOC);
3321 u32 em_ctl = readl(mmio + HOST_EM_CTL);
3322
David Milburn87943ac2008-10-13 14:38:36 -05003323 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003324
3325 /* we only support LED message type right now */
3326 if ((messages & 0x01) && (ahci_em_messages == 1)) {
3327 /* store em_loc */
3328 hpriv->em_loc = ((em_loc >> 16) * 4);
3329 pi.flags |= ATA_FLAG_EM;
3330 if (!(em_ctl & EM_CTL_ALHD))
3331 pi.flags |= ATA_FLAG_SW_ACTIVITY;
3332 }
3333 }
3334
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01003335 if (ahci_broken_system_poweroff(pdev)) {
3336 pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN;
3337 dev_info(&pdev->dev,
3338 "quirky BIOS, skipping spindown on poweroff\n");
3339 }
3340
Tejun Heo9b10ae82009-05-30 20:50:12 +09003341 if (ahci_broken_suspend(pdev)) {
3342 hpriv->flags |= AHCI_HFLAG_NO_SUSPEND;
3343 dev_printk(KERN_WARNING, &pdev->dev,
3344 "BIOS update required for suspend/resume\n");
3345 }
3346
Tejun Heo55946392009-08-04 14:30:08 +09003347 if (ahci_broken_online(pdev)) {
3348 hpriv->flags |= AHCI_HFLAG_SRST_TOUT_IS_OFFLINE;
3349 dev_info(&pdev->dev,
3350 "online status unreliable, applying workaround\n");
3351 }
3352
Tejun Heo837f5f82008-02-06 15:13:51 +09003353 /* CAP.NP sometimes indicate the index of the last enabled
3354 * port, at other times, that of the last possible port, so
3355 * determining the maximum port number requires looking at
3356 * both CAP.NP and port_map.
3357 */
3358 n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));
3359
3360 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
Tejun Heo4447d352007-04-17 23:44:08 +09003361 if (!host)
3362 return -ENOMEM;
3363 host->iomap = pcim_iomap_table(pdev);
3364 host->private_data = hpriv;
3365
Arjan van de Venf3d7f232009-01-26 02:05:44 -08003366 if (!(hpriv->cap & HOST_CAP_SSS) || ahci_ignore_sss)
Arjan van de Ven886ad092009-01-09 15:54:07 -08003367 host->flags |= ATA_HOST_PARALLEL_SCAN;
Arjan van de Venf3d7f232009-01-26 02:05:44 -08003368 else
3369 printk(KERN_INFO "ahci: SSS flag set, parallel bus scan disabled\n");
Arjan van de Ven886ad092009-01-09 15:54:07 -08003370
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003371 if (pi.flags & ATA_FLAG_EM)
3372 ahci_reset_em(host);
3373
Tejun Heo4447d352007-04-17 23:44:08 +09003374 for (i = 0; i < host->n_ports; i++) {
Jeff Garzikdab632e2007-05-28 08:33:01 -04003375 struct ata_port *ap = host->ports[i];
Tejun Heo4447d352007-04-17 23:44:08 +09003376
Tejun Heocbcdd872007-08-18 13:14:55 +09003377 ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar");
3378 ata_port_pbar_desc(ap, AHCI_PCI_BAR,
3379 0x100 + ap->port_no * 0x80, "port");
3380
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04003381 /* set initial link pm policy */
3382 ap->pm_policy = NOT_AVAILABLE;
3383
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003384 /* set enclosure management message type */
3385 if (ap->flags & ATA_FLAG_EM)
3386 ap->em_message_type = ahci_em_messages;
3387
3388
Jeff Garzikdab632e2007-05-28 08:33:01 -04003389 /* disabled/not-implemented port */
Tejun Heo350756f2008-04-07 22:47:21 +09003390 if (!(hpriv->port_map & (1 << i)))
Jeff Garzikdab632e2007-05-28 08:33:01 -04003391 ap->ops = &ata_dummy_port_ops;
Tejun Heo4447d352007-04-17 23:44:08 +09003392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
Tejun Heoedc93052007-10-25 14:59:16 +09003394 /* apply workaround for ASUS P5W DH Deluxe mainboard */
3395 ahci_p5wdh_workaround(host);
3396
Tejun Heof80ae7e2009-09-16 04:18:03 +09003397 /* apply gtf filter quirk */
3398 ahci_gtf_filter_workaround(host);
3399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09003401 rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003403 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
Tejun Heo4447d352007-04-17 23:44:08 +09003405 rc = ahci_reset_controller(host);
3406 if (rc)
3407 return rc;
Tejun Heo12fad3f2006-05-15 21:03:55 +09003408
Tejun Heo4447d352007-04-17 23:44:08 +09003409 ahci_init_controller(host);
3410 ahci_print_info(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Tejun Heo4447d352007-04-17 23:44:08 +09003412 pci_set_master(pdev);
3413 return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
3414 &ahci_sht);
Jeff Garzik907f4672005-05-12 15:03:42 -04003415}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
3417static int __init ahci_init(void)
3418{
Pavel Roskinb7887192006-08-10 18:13:18 +09003419 return pci_register_driver(&ahci_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420}
3421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422static void __exit ahci_exit(void)
3423{
3424 pci_unregister_driver(&ahci_pci_driver);
3425}
3426
3427
3428MODULE_AUTHOR("Jeff Garzik");
3429MODULE_DESCRIPTION("AHCI SATA low-level driver");
3430MODULE_LICENSE("GPL");
3431MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04003432MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
3434module_init(ahci_init);
3435module_exit(ahci_exit);