blob: 5326af28a4100fbb4c611c8aa76bcb490938bb97 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050047#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define DRV_NAME "ahci"
Tejun Heo7d50b602007-09-23 13:19:54 +090051#define DRV_VERSION "3.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David Milburn87943ac2008-10-13 14:38:36 -050053/* Enclosure Management Control */
54#define EM_CTRL_MSG_TYPE 0x000f0000
55
56/* Enclosure Management LED Message Type */
57#define EM_MSG_LED_HBA_PORT 0x0000000f
58#define EM_MSG_LED_PMP_SLOT 0x0000ff00
59#define EM_MSG_LED_VALUE 0xffff0000
60#define EM_MSG_LED_VALUE_ACTIVITY 0x00070000
61#define EM_MSG_LED_VALUE_OFF 0xfff80000
62#define EM_MSG_LED_VALUE_ON 0x00010000
63
Tejun Heoa22e6442008-03-10 10:25:25 +090064static int ahci_skip_host_reset;
Arjan van de Venf3d7f232009-01-26 02:05:44 -080065static int ahci_ignore_sss;
66
Tejun Heoa22e6442008-03-10 10:25:25 +090067module_param_named(skip_host_reset, ahci_skip_host_reset, int, 0444);
68MODULE_PARM_DESC(skip_host_reset, "skip global host reset (0=don't skip, 1=skip)");
69
Arjan van de Venf3d7f232009-01-26 02:05:44 -080070module_param_named(ignore_sss, ahci_ignore_sss, int, 0444);
71MODULE_PARM_DESC(ignore_sss, "Ignore staggered spinup flag (0=don't ignore, 1=ignore)");
72
Kristen Carlson Accardi31556592007-10-25 01:33:26 -040073static int ahci_enable_alpm(struct ata_port *ap,
74 enum link_pm policy);
75static void ahci_disable_alpm(struct ata_port *ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -070076static ssize_t ahci_led_show(struct ata_port *ap, char *buf);
77static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
78 size_t size);
79static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
80 ssize_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82enum {
83 AHCI_PCI_BAR = 5,
Tejun Heo648a88b2006-11-09 15:08:40 +090084 AHCI_MAX_PORTS = 32,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 AHCI_MAX_SG = 168, /* hardware max is 64K */
86 AHCI_DMA_BOUNDARY = 0xffffffff,
Tejun Heo12fad3f2006-05-15 21:03:55 +090087 AHCI_MAX_CMDS = 32,
Tejun Heodd410ff2006-05-15 21:03:50 +090088 AHCI_CMD_SZ = 32,
Tejun Heo12fad3f2006-05-15 21:03:55 +090089 AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 AHCI_RX_FIS_SZ = 256,
Jeff Garzika0ea7322005-06-04 01:13:15 -040091 AHCI_CMD_TBL_CDB = 0x40,
Tejun Heodd410ff2006-05-15 21:03:50 +090092 AHCI_CMD_TBL_HDR_SZ = 0x80,
93 AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16),
94 AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS,
95 AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ +
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 AHCI_RX_FIS_SZ,
Shane Huangd6ef3152009-12-09 17:23:04 +080097 AHCI_PORT_PRIV_FBS_DMA_SZ = AHCI_CMD_SLOT_SZ +
98 AHCI_CMD_TBL_AR_SZ +
99 (AHCI_RX_FIS_SZ * 16),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 AHCI_IRQ_ON_SG = (1 << 31),
101 AHCI_CMD_ATAPI = (1 << 5),
102 AHCI_CMD_WRITE = (1 << 6),
Tejun Heo4b10e552006-03-12 11:25:27 +0900103 AHCI_CMD_PREFETCH = (1 << 7),
Tejun Heo22b49982006-01-23 21:38:44 +0900104 AHCI_CMD_RESET = (1 << 8),
105 AHCI_CMD_CLR_BUSY = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
Tejun Heo0291f952007-01-25 19:16:28 +0900108 RX_FIS_SDB = 0x58, /* offset of SDB FIS data */
Tejun Heo78cd52d2006-05-15 20:58:29 +0900109 RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 board_ahci = 0,
Tejun Heo7a234af2007-09-03 12:44:57 +0900112 board_ahci_vt8251 = 1,
113 board_ahci_ign_iferr = 2,
114 board_ahci_sb600 = 3,
115 board_ahci_mv = 4,
Shane Huange427fe02008-12-30 10:53:41 +0800116 board_ahci_sb700 = 5, /* for SB700 and SB800 */
Tejun Heoe297d992008-06-10 00:13:04 +0900117 board_ahci_mcp65 = 6,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400118 board_ahci_nopmp = 7,
Tejun Heoaa431dd2009-04-08 14:25:31 -0700119 board_ahci_yesncq = 8,
Shaohua Li1b677af2009-11-16 09:56:05 +0800120 board_ahci_nosntf = 9,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /* global controller registers */
123 HOST_CAP = 0x00, /* host capabilities */
124 HOST_CTL = 0x04, /* global host control */
125 HOST_IRQ_STAT = 0x08, /* interrupt status */
126 HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
127 HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700128 HOST_EM_LOC = 0x1c, /* Enclosure Management location */
129 HOST_EM_CTL = 0x20, /* Enclosure Management Control */
Robert Hancock4c521c82009-09-20 17:02:31 -0600130 HOST_CAP2 = 0x24, /* host capabilities, extended */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /* HOST_CTL bits */
133 HOST_RESET = (1 << 0), /* reset controller; self-clear */
134 HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
135 HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
136
137 /* HOST_CAP bits */
Robert Hancock4c521c82009-09-20 17:02:31 -0600138 HOST_CAP_SXS = (1 << 5), /* Supports External SATA */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700139 HOST_CAP_EMS = (1 << 6), /* Enclosure Management support */
Robert Hancock4c521c82009-09-20 17:02:31 -0600140 HOST_CAP_CCC = (1 << 7), /* Command Completion Coalescing */
141 HOST_CAP_PART = (1 << 13), /* Partial state capable */
142 HOST_CAP_SSC = (1 << 14), /* Slumber state capable */
143 HOST_CAP_PIO_MULTI = (1 << 15), /* PIO multiple DRQ support */
144 HOST_CAP_FBS = (1 << 16), /* FIS-based switching support */
Tejun Heo7d50b602007-09-23 13:19:54 +0900145 HOST_CAP_PMP = (1 << 17), /* Port Multiplier support */
Robert Hancock4c521c82009-09-20 17:02:31 -0600146 HOST_CAP_ONLY = (1 << 18), /* Supports AHCI mode only */
Tejun Heo22b49982006-01-23 21:38:44 +0900147 HOST_CAP_CLO = (1 << 24), /* Command List Override support */
Robert Hancock4c521c82009-09-20 17:02:31 -0600148 HOST_CAP_LED = (1 << 25), /* Supports activity LED */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400149 HOST_CAP_ALPM = (1 << 26), /* Aggressive Link PM support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900150 HOST_CAP_SSS = (1 << 27), /* Staggered Spin-up */
Robert Hancock4c521c82009-09-20 17:02:31 -0600151 HOST_CAP_MPS = (1 << 28), /* Mechanical presence switch */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900152 HOST_CAP_SNTF = (1 << 29), /* SNotification register */
Tejun Heo979db802006-05-15 21:03:52 +0900153 HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */
Tejun Heodd410ff2006-05-15 21:03:50 +0900154 HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Robert Hancock4c521c82009-09-20 17:02:31 -0600156 /* HOST_CAP2 bits */
157 HOST_CAP2_BOH = (1 << 0), /* BIOS/OS handoff supported */
158 HOST_CAP2_NVMHCI = (1 << 1), /* NVMHCI supported */
159 HOST_CAP2_APST = (1 << 2), /* Automatic partial to slumber */
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 /* registers for each SATA port */
162 PORT_LST_ADDR = 0x00, /* command list DMA addr */
163 PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
164 PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
165 PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
166 PORT_IRQ_STAT = 0x10, /* interrupt status */
167 PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
168 PORT_CMD = 0x18, /* port command */
169 PORT_TFDATA = 0x20, /* taskfile data */
170 PORT_SIG = 0x24, /* device TF signature */
171 PORT_CMD_ISSUE = 0x38, /* command issue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
173 PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
174 PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
175 PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900176 PORT_SCR_NTF = 0x3c, /* SATA phy register: SNotification */
Shane Huangd6ef3152009-12-09 17:23:04 +0800177 PORT_FBS = 0x40, /* FIS-based Switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /* PORT_IRQ_{STAT,MASK} bits */
180 PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
181 PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
182 PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
183 PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
184 PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
185 PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
186 PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
187 PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
188
189 PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
190 PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
191 PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
192 PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
193 PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
194 PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
195 PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
196 PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
197 PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
198
Tejun Heo78cd52d2006-05-15 20:58:29 +0900199 PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR |
200 PORT_IRQ_IF_ERR |
201 PORT_IRQ_CONNECT |
Tejun Heo42969712006-05-31 18:28:18 +0900202 PORT_IRQ_PHYRDY |
Tejun Heo7d50b602007-09-23 13:19:54 +0900203 PORT_IRQ_UNK_FIS |
204 PORT_IRQ_BAD_PMP,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900205 PORT_IRQ_ERROR = PORT_IRQ_FREEZE |
206 PORT_IRQ_TF_ERR |
207 PORT_IRQ_HBUS_DATA_ERR,
208 DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
209 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS |
210 PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /* PORT_CMD bits */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400213 PORT_CMD_ASP = (1 << 27), /* Aggressive Slumber/Partial */
214 PORT_CMD_ALPE = (1 << 26), /* Aggressive Link PM enable */
Jeff Garzik02eaa662005-11-12 01:32:19 -0500215 PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
Shane Huangd6ef3152009-12-09 17:23:04 +0800216 PORT_CMD_FBSCP = (1 << 22), /* FBS Capable Port */
Tejun Heo7d50b602007-09-23 13:19:54 +0900217 PORT_CMD_PMP = (1 << 17), /* PMP attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
219 PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
220 PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
Tejun Heo22b49982006-01-23 21:38:44 +0900221 PORT_CMD_CLO = (1 << 3), /* Command list override */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
223 PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
224 PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
225
Tejun Heo0be0aa92006-07-26 15:59:26 +0900226 PORT_CMD_ICC_MASK = (0xf << 28), /* i/f ICC state mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
228 PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
229 PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
Jeff Garzik4b0060f2005-06-04 00:50:22 -0400230
Shane Huangd6ef3152009-12-09 17:23:04 +0800231 PORT_FBS_DWE_OFFSET = 16, /* FBS device with error offset */
232 PORT_FBS_ADO_OFFSET = 12, /* FBS active dev optimization offset */
233 PORT_FBS_DEV_OFFSET = 8, /* FBS device to issue offset */
234 PORT_FBS_DEV_MASK = (0xf << PORT_FBS_DEV_OFFSET), /* FBS.DEV */
235 PORT_FBS_SDE = (1 << 2), /* FBS single device error */
236 PORT_FBS_DEC = (1 << 1), /* FBS device error clear */
237 PORT_FBS_EN = (1 << 0), /* Enable FBS */
238
Tejun Heo417a1a62007-09-23 13:19:55 +0900239 /* hpriv->flags bits */
240 AHCI_HFLAG_NO_NCQ = (1 << 0),
241 AHCI_HFLAG_IGN_IRQ_IF_ERR = (1 << 1), /* ignore IRQ_IF_ERR */
242 AHCI_HFLAG_IGN_SERR_INTERNAL = (1 << 2), /* ignore SERR_INTERNAL */
243 AHCI_HFLAG_32BIT_ONLY = (1 << 3), /* force 32bit */
244 AHCI_HFLAG_MV_PATA = (1 << 4), /* PATA port */
245 AHCI_HFLAG_NO_MSI = (1 << 5), /* no PCI MSI */
Tejun Heo6949b912007-09-23 13:19:55 +0900246 AHCI_HFLAG_NO_PMP = (1 << 6), /* no PMP */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400247 AHCI_HFLAG_NO_HOTPLUG = (1 << 7), /* ignore PxSERR.DIAG.N */
Jeff Garzika8785392008-02-28 15:43:48 -0500248 AHCI_HFLAG_SECT255 = (1 << 8), /* max 255 sectors */
Tejun Heoe297d992008-06-10 00:13:04 +0900249 AHCI_HFLAG_YES_NCQ = (1 << 9), /* force NCQ cap on */
Tejun Heo9b10ae82009-05-30 20:50:12 +0900250 AHCI_HFLAG_NO_SUSPEND = (1 << 10), /* don't suspend */
Tejun Heo55946392009-08-04 14:30:08 +0900251 AHCI_HFLAG_SRST_TOUT_IS_OFFLINE = (1 << 11), /* treat SRST timeout as
252 link offline */
Shaohua Li1b677af2009-11-16 09:56:05 +0800253 AHCI_HFLAG_NO_SNTF = (1 << 12), /* no sntf */
Tejun Heo417a1a62007-09-23 13:19:55 +0900254
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200255 /* ap->flags bits */
Tejun Heo1188c0d2007-04-23 02:41:05 +0900256
257 AHCI_FLAG_COMMON = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
258 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400259 ATA_FLAG_ACPI_SATA | ATA_FLAG_AN |
260 ATA_FLAG_IPM,
Tejun Heoc4f77922007-12-06 15:09:43 +0900261
262 ICH_MAP = 0x90, /* ICH MAP register */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700263
Tejun Heod50ce072009-05-12 10:57:41 +0900264 /* em constants */
265 EM_MAX_SLOTS = 8,
266 EM_MAX_RETRY = 5,
267
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700268 /* em_ctl bits */
269 EM_CTL_RST = (1 << 9), /* Reset */
270 EM_CTL_TM = (1 << 8), /* Transmit Message */
271 EM_CTL_ALHD = (1 << 26), /* Activity LED */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272};
273
274struct ahci_cmd_hdr {
Al Viro4ca4e432007-12-30 09:32:22 +0000275 __le32 opts;
276 __le32 status;
277 __le32 tbl_addr;
278 __le32 tbl_addr_hi;
279 __le32 reserved[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280};
281
282struct ahci_sg {
Al Viro4ca4e432007-12-30 09:32:22 +0000283 __le32 addr;
284 __le32 addr_hi;
285 __le32 reserved;
286 __le32 flags_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700289struct ahci_em_priv {
290 enum sw_activity blink_policy;
291 struct timer_list timer;
292 unsigned long saved_activity;
293 unsigned long activity;
294 unsigned long led_state;
295};
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297struct ahci_host_priv {
Tejun Heo417a1a62007-09-23 13:19:55 +0900298 unsigned int flags; /* AHCI_HFLAG_* */
Tejun Heod447df12007-03-18 22:15:33 +0900299 u32 cap; /* cap to use */
Robert Hancock4c521c82009-09-20 17:02:31 -0600300 u32 cap2; /* cap2 to use */
Tejun Heod447df12007-03-18 22:15:33 +0900301 u32 port_map; /* port map to use */
302 u32 saved_cap; /* saved initial cap */
Robert Hancock4c521c82009-09-20 17:02:31 -0600303 u32 saved_cap2; /* saved initial cap2 */
Tejun Heod447df12007-03-18 22:15:33 +0900304 u32 saved_port_map; /* saved initial port_map */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700305 u32 em_loc; /* enclosure management location */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306};
307
308struct ahci_port_priv {
Tejun Heo7d50b602007-09-23 13:19:54 +0900309 struct ata_link *active_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct ahci_cmd_hdr *cmd_slot;
311 dma_addr_t cmd_slot_dma;
312 void *cmd_tbl;
313 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 void *rx_fis;
315 dma_addr_t rx_fis_dma;
Tejun Heo0291f952007-01-25 19:16:28 +0900316 /* for NCQ spurious interrupt analysis */
Tejun Heo0291f952007-01-25 19:16:28 +0900317 unsigned int ncq_saw_d2h:1;
318 unsigned int ncq_saw_dmas:1;
Tejun Heoafb2d552007-02-27 13:24:19 +0900319 unsigned int ncq_saw_sdb:1;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -0700320 u32 intr_mask; /* interrupts to enable */
Shane Huangd6ef3152009-12-09 17:23:04 +0800321 bool fbs_supported; /* set iff FBS is supported */
322 bool fbs_enabled; /* set iff FBS is enabled */
323 int fbs_last_dev; /* save FBS.DEV of last FIS */
Tejun Heod50ce072009-05-12 10:57:41 +0900324 /* enclosure management info per PM slot */
325 struct ahci_em_priv em_priv[EM_MAX_SLOTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326};
327
Tejun Heo82ef04f2008-07-31 17:02:40 +0900328static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
329static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400330static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900331static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900332static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333static int ahci_port_start(struct ata_port *ap);
334static void ahci_port_stop(struct ata_port *ap);
Shane Huangd6ef3152009-12-09 17:23:04 +0800335static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336static void ahci_qc_prep(struct ata_queued_cmd *qc);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900337static void ahci_freeze(struct ata_port *ap);
338static void ahci_thaw(struct ata_port *ap);
Shane Huangd6ef3152009-12-09 17:23:04 +0800339static void ahci_enable_fbs(struct ata_port *ap);
340static void ahci_disable_fbs(struct ata_port *ap);
Tejun Heo7d50b602007-09-23 13:19:54 +0900341static void ahci_pmp_attach(struct ata_port *ap);
342static void ahci_pmp_detach(struct ata_port *ap);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900343static int ahci_softreset(struct ata_link *link, unsigned int *class,
344 unsigned long deadline);
Shane Huangbd172432008-06-10 15:52:04 +0800345static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
346 unsigned long deadline);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900347static int ahci_hardreset(struct ata_link *link, unsigned int *class,
348 unsigned long deadline);
349static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
350 unsigned long deadline);
351static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
352 unsigned long deadline);
353static void ahci_postreset(struct ata_link *link, unsigned int *class);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900354static void ahci_error_handler(struct ata_port *ap);
355static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -0400356static int ahci_port_resume(struct ata_port *ap);
Jeff Garzika8785392008-02-28 15:43:48 -0500357static void ahci_dev_config(struct ata_device *dev);
Jeff Garzikdab632e2007-05-28 08:33:01 -0400358static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
359 u32 opts);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900360#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900361static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
Tejun Heoc1332872006-07-26 15:59:26 +0900362static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
363static int ahci_pci_device_resume(struct pci_dev *pdev);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900364#endif
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700365static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
366static ssize_t ahci_activity_store(struct ata_device *dev,
367 enum sw_activity val);
368static void ahci_init_sw_activity(struct ata_link *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Matthew Garrett77cdec12009-07-17 19:13:47 +0100370static ssize_t ahci_show_host_caps(struct device *dev,
371 struct device_attribute *attr, char *buf);
Robert Hancock4c521c82009-09-20 17:02:31 -0600372static ssize_t ahci_show_host_cap2(struct device *dev,
373 struct device_attribute *attr, char *buf);
Matthew Garrett77cdec12009-07-17 19:13:47 +0100374static ssize_t ahci_show_host_version(struct device *dev,
375 struct device_attribute *attr, char *buf);
376static ssize_t ahci_show_port_cmd(struct device *dev,
377 struct device_attribute *attr, char *buf);
378
Robert Hancock9ffc5da2010-01-19 23:03:39 -0600379static DEVICE_ATTR(ahci_host_caps, S_IRUGO, ahci_show_host_caps, NULL);
380static DEVICE_ATTR(ahci_host_cap2, S_IRUGO, ahci_show_host_cap2, NULL);
381static DEVICE_ATTR(ahci_host_version, S_IRUGO, ahci_show_host_version, NULL);
382static DEVICE_ATTR(ahci_port_cmd, S_IRUGO, ahci_show_port_cmd, NULL);
Matthew Garrett77cdec12009-07-17 19:13:47 +0100383
Tony Jonesee959b02008-02-22 00:13:36 +0100384static struct device_attribute *ahci_shost_attrs[] = {
385 &dev_attr_link_power_management_policy,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700386 &dev_attr_em_message_type,
387 &dev_attr_em_message,
Matthew Garrett77cdec12009-07-17 19:13:47 +0100388 &dev_attr_ahci_host_caps,
Robert Hancock4c521c82009-09-20 17:02:31 -0600389 &dev_attr_ahci_host_cap2,
Matthew Garrett77cdec12009-07-17 19:13:47 +0100390 &dev_attr_ahci_host_version,
391 &dev_attr_ahci_port_cmd,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700392 NULL
393};
394
395static struct device_attribute *ahci_sdev_attrs[] = {
396 &dev_attr_sw_activity,
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200397 &dev_attr_unload_heads,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400398 NULL
399};
400
Jeff Garzik193515d2005-11-07 00:59:37 -0500401static struct scsi_host_template ahci_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900402 ATA_NCQ_SHT(DRV_NAME),
Tejun Heo12fad3f2006-05-15 21:03:55 +0900403 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 .dma_boundary = AHCI_DMA_BOUNDARY,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400406 .shost_attrs = ahci_shost_attrs,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700407 .sdev_attrs = ahci_sdev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408};
409
Tejun Heo029cfd62008-03-25 12:22:49 +0900410static struct ata_port_operations ahci_ops = {
411 .inherits = &sata_pmp_port_ops,
412
Shane Huangd6ef3152009-12-09 17:23:04 +0800413 .qc_defer = ahci_pmp_qc_defer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 .qc_prep = ahci_qc_prep,
415 .qc_issue = ahci_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900416 .qc_fill_rtf = ahci_qc_fill_rtf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Tejun Heo78cd52d2006-05-15 20:58:29 +0900418 .freeze = ahci_freeze,
419 .thaw = ahci_thaw,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900420 .softreset = ahci_softreset,
421 .hardreset = ahci_hardreset,
422 .postreset = ahci_postreset,
Tejun Heo071f44b2008-04-07 22:47:22 +0900423 .pmp_softreset = ahci_softreset,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900424 .error_handler = ahci_error_handler,
425 .post_internal_cmd = ahci_post_internal_cmd,
Tejun Heo029cfd62008-03-25 12:22:49 +0900426 .dev_config = ahci_dev_config,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900427
Tejun Heo029cfd62008-03-25 12:22:49 +0900428 .scr_read = ahci_scr_read,
429 .scr_write = ahci_scr_write,
Tejun Heo7d50b602007-09-23 13:19:54 +0900430 .pmp_attach = ahci_pmp_attach,
431 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900432
Tejun Heo029cfd62008-03-25 12:22:49 +0900433 .enable_pm = ahci_enable_alpm,
434 .disable_pm = ahci_disable_alpm,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700435 .em_show = ahci_led_show,
436 .em_store = ahci_led_store,
437 .sw_activity_show = ahci_activity_show,
438 .sw_activity_store = ahci_activity_store,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900439#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900440 .port_suspend = ahci_port_suspend,
441 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900442#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 .port_start = ahci_port_start,
444 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445};
446
Tejun Heo029cfd62008-03-25 12:22:49 +0900447static struct ata_port_operations ahci_vt8251_ops = {
448 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900449 .hardreset = ahci_vt8251_hardreset,
Tejun Heoad616ff2006-11-01 18:00:24 +0900450};
451
Tejun Heo029cfd62008-03-25 12:22:49 +0900452static struct ata_port_operations ahci_p5wdh_ops = {
453 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900454 .hardreset = ahci_p5wdh_hardreset,
Tejun Heoedc93052007-10-25 14:59:16 +0900455};
456
Shane Huangbd172432008-06-10 15:52:04 +0800457static struct ata_port_operations ahci_sb600_ops = {
458 .inherits = &ahci_ops,
459 .softreset = ahci_sb600_softreset,
460 .pmp_softreset = ahci_sb600_softreset,
461};
462
Tejun Heo417a1a62007-09-23 13:19:55 +0900463#define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
464
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100465static const struct ata_port_info ahci_port_info[] = {
Jeff Garzik4da646b2009-04-08 02:00:13 -0400466 [board_ahci] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 {
Tejun Heo1188c0d2007-04-23 02:41:05 +0900468 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100469 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400470 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 .port_ops = &ahci_ops,
472 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400473 [board_ahci_vt8251] =
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200474 {
Tejun Heo6949b912007-09-23 13:19:55 +0900475 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900476 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100477 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400478 .udma_mask = ATA_UDMA6,
Tejun Heoad616ff2006-11-01 18:00:24 +0900479 .port_ops = &ahci_vt8251_ops,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200480 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400481 [board_ahci_ign_iferr] =
Tejun Heo41669552006-11-29 11:33:14 +0900482 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900483 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR),
484 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100485 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400486 .udma_mask = ATA_UDMA6,
Tejun Heo41669552006-11-29 11:33:14 +0900487 .port_ops = &ahci_ops,
488 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400489 [board_ahci_sb600] =
Conke Hu55a61602007-03-27 18:33:05 +0800490 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900491 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
Tejun Heo2fcad9d2009-10-03 18:27:29 +0900492 AHCI_HFLAG_NO_MSI | AHCI_HFLAG_SECT255 |
493 AHCI_HFLAG_32BIT_ONLY),
Tejun Heo417a1a62007-09-23 13:19:55 +0900494 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100495 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400496 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800497 .port_ops = &ahci_sb600_ops,
Conke Hu55a61602007-03-27 18:33:05 +0800498 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400499 [board_ahci_mv] =
Jeff Garzikcd70c262007-07-08 02:29:42 -0400500 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900501 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI |
Tejun Heo17248462008-08-29 16:03:59 +0200502 AHCI_HFLAG_MV_PATA | AHCI_HFLAG_NO_PMP),
Jeff Garzikcd70c262007-07-08 02:29:42 -0400503 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo417a1a62007-09-23 13:19:55 +0900504 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100505 .pio_mask = ATA_PIO4,
Jeff Garzikcd70c262007-07-08 02:29:42 -0400506 .udma_mask = ATA_UDMA6,
507 .port_ops = &ahci_ops,
508 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400509 [board_ahci_sb700] = /* for SB700 and SB800 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800510 {
Shane Huangbd172432008-06-10 15:52:04 +0800511 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL),
Shane Huange39fc8c2008-02-22 05:00:31 -0800512 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100513 .pio_mask = ATA_PIO4,
Shane Huange39fc8c2008-02-22 05:00:31 -0800514 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800515 .port_ops = &ahci_sb600_ops,
Shane Huange39fc8c2008-02-22 05:00:31 -0800516 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400517 [board_ahci_mcp65] =
Tejun Heoe297d992008-06-10 00:13:04 +0900518 {
519 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
520 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100521 .pio_mask = ATA_PIO4,
Tejun Heoe297d992008-06-10 00:13:04 +0900522 .udma_mask = ATA_UDMA6,
523 .port_ops = &ahci_ops,
524 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400525 [board_ahci_nopmp] =
Tejun Heo9a3b1032008-06-18 20:56:58 -0400526 {
527 AHCI_HFLAGS (AHCI_HFLAG_NO_PMP),
528 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100529 .pio_mask = ATA_PIO4,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400530 .udma_mask = ATA_UDMA6,
531 .port_ops = &ahci_ops,
532 },
Shaohua Li1b677af2009-11-16 09:56:05 +0800533 [board_ahci_yesncq] =
Tejun Heoaa431dd2009-04-08 14:25:31 -0700534 {
535 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
536 .flags = AHCI_FLAG_COMMON,
537 .pio_mask = ATA_PIO4,
538 .udma_mask = ATA_UDMA6,
539 .port_ops = &ahci_ops,
540 },
Shaohua Li1b677af2009-11-16 09:56:05 +0800541 [board_ahci_nosntf] =
542 {
543 AHCI_HFLAGS (AHCI_HFLAG_NO_SNTF),
544 .flags = AHCI_FLAG_COMMON,
545 .pio_mask = ATA_PIO4,
546 .udma_mask = ATA_UDMA6,
547 .port_ops = &ahci_ops,
548 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549};
550
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500551static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400552 /* Intel */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400553 { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
554 { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
555 { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
556 { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
557 { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
Tejun Heo82490c02007-01-23 15:13:39 +0900558 { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400559 { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
560 { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
561 { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
562 { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
Tejun Heo7a234af2007-09-03 12:44:57 +0900563 { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */
Shaohua Li1b677af2009-11-16 09:56:05 +0800564 { PCI_VDEVICE(INTEL, 0x2822), board_ahci_nosntf }, /* ICH8 */
Tejun Heo7a234af2007-09-03 12:44:57 +0900565 { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */
566 { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */
567 { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */
568 { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */
569 { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */
570 { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */
571 { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */
572 { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */
573 { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */
574 { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */
575 { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */
576 { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */
577 { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */
578 { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */
579 { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */
Jason Gastond4155e62007-09-20 17:35:00 -0400580 { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */
581 { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800582 { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */
Mark Goodwinb2dde6a2009-06-26 10:44:11 -0500583 { PCI_VDEVICE(INTEL, 0x3a22), board_ahci }, /* ICH10 */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800584 { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */
David Milburnc1f57d92009-07-22 15:15:56 -0500585 { PCI_VDEVICE(INTEL, 0x3b22), board_ahci }, /* PCH AHCI */
586 { PCI_VDEVICE(INTEL, 0x3b23), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700587 { PCI_VDEVICE(INTEL, 0x3b24), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700588 { PCI_VDEVICE(INTEL, 0x3b25), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500589 { PCI_VDEVICE(INTEL, 0x3b29), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700590 { PCI_VDEVICE(INTEL, 0x3b2b), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700591 { PCI_VDEVICE(INTEL, 0x3b2c), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500592 { PCI_VDEVICE(INTEL, 0x3b2f), board_ahci }, /* PCH AHCI */
Seth Heasley5623cab2010-01-12 17:00:18 -0800593 { PCI_VDEVICE(INTEL, 0x1c02), board_ahci }, /* CPT AHCI */
594 { PCI_VDEVICE(INTEL, 0x1c03), board_ahci }, /* CPT AHCI */
595 { PCI_VDEVICE(INTEL, 0x1c04), board_ahci }, /* CPT RAID */
596 { PCI_VDEVICE(INTEL, 0x1c05), board_ahci }, /* CPT RAID */
597 { PCI_VDEVICE(INTEL, 0x1c06), board_ahci }, /* CPT RAID */
598 { PCI_VDEVICE(INTEL, 0x1c07), board_ahci }, /* CPT RAID */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400599
Tejun Heoe34bb372007-02-26 20:24:03 +0900600 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
601 { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
602 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400603
604 /* ATI */
Conke Huc65ec1c2007-04-11 18:23:14 +0800605 { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800606 { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb700 }, /* ATI SB700/800 */
607 { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb700 }, /* ATI SB700/800 */
608 { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb700 }, /* ATI SB700/800 */
609 { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb700 }, /* ATI SB700/800 */
610 { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb700 }, /* ATI SB700/800 */
611 { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb700 }, /* ATI SB700/800 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400612
Shane Huange2dd90b2009-07-29 11:34:49 +0800613 /* AMD */
Shane Huang5deab532009-10-13 11:14:00 +0800614 { PCI_VDEVICE(AMD, 0x7800), board_ahci }, /* AMD Hudson-2 */
Shane Huange2dd90b2009-07-29 11:34:49 +0800615 /* AMD is using RAID class only for ahci controllers */
616 { PCI_VENDOR_ID_AMD, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
617 PCI_CLASS_STORAGE_RAID << 8, 0xffffff, board_ahci },
618
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400619 /* VIA */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400620 { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
Tejun Heobf335542007-04-11 17:27:14 +0900621 { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400622
623 /* NVIDIA */
Tejun Heoe297d992008-06-10 00:13:04 +0900624 { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci_mcp65 }, /* MCP65 */
625 { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci_mcp65 }, /* MCP65 */
626 { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci_mcp65 }, /* MCP65 */
627 { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci_mcp65 }, /* MCP65 */
628 { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci_mcp65 }, /* MCP65 */
629 { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci_mcp65 }, /* MCP65 */
630 { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci_mcp65 }, /* MCP65 */
631 { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci_mcp65 }, /* MCP65 */
Tejun Heoaa431dd2009-04-08 14:25:31 -0700632 { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci_yesncq }, /* MCP67 */
633 { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci_yesncq }, /* MCP67 */
634 { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci_yesncq }, /* MCP67 */
635 { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci_yesncq }, /* MCP67 */
636 { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci_yesncq }, /* MCP67 */
637 { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci_yesncq }, /* MCP67 */
638 { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci_yesncq }, /* MCP67 */
639 { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci_yesncq }, /* MCP67 */
640 { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci_yesncq }, /* MCP67 */
641 { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci_yesncq }, /* MCP67 */
642 { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci_yesncq }, /* MCP67 */
643 { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci_yesncq }, /* MCP67 */
peer chen726206f2009-10-15 16:34:56 +0800644 { PCI_VDEVICE(NVIDIA, 0x0580), board_ahci_yesncq }, /* Linux ID */
Tejun Heo603037c2010-03-11 11:37:16 +0900645 { PCI_VDEVICE(NVIDIA, 0x0581), board_ahci_yesncq }, /* Linux ID */
646 { PCI_VDEVICE(NVIDIA, 0x0582), board_ahci_yesncq }, /* Linux ID */
647 { PCI_VDEVICE(NVIDIA, 0x0583), board_ahci_yesncq }, /* Linux ID */
648 { PCI_VDEVICE(NVIDIA, 0x0584), board_ahci_yesncq }, /* Linux ID */
649 { PCI_VDEVICE(NVIDIA, 0x0585), board_ahci_yesncq }, /* Linux ID */
650 { PCI_VDEVICE(NVIDIA, 0x0586), board_ahci_yesncq }, /* Linux ID */
651 { PCI_VDEVICE(NVIDIA, 0x0587), board_ahci_yesncq }, /* Linux ID */
652 { PCI_VDEVICE(NVIDIA, 0x0588), board_ahci_yesncq }, /* Linux ID */
653 { PCI_VDEVICE(NVIDIA, 0x0589), board_ahci_yesncq }, /* Linux ID */
654 { PCI_VDEVICE(NVIDIA, 0x058a), board_ahci_yesncq }, /* Linux ID */
655 { PCI_VDEVICE(NVIDIA, 0x058b), board_ahci_yesncq }, /* Linux ID */
656 { PCI_VDEVICE(NVIDIA, 0x058c), board_ahci_yesncq }, /* Linux ID */
657 { PCI_VDEVICE(NVIDIA, 0x058d), board_ahci_yesncq }, /* Linux ID */
658 { PCI_VDEVICE(NVIDIA, 0x058e), board_ahci_yesncq }, /* Linux ID */
659 { PCI_VDEVICE(NVIDIA, 0x058f), board_ahci_yesncq }, /* Linux ID */
Tejun Heoaa431dd2009-04-08 14:25:31 -0700660 { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci_yesncq }, /* MCP73 */
661 { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci_yesncq }, /* MCP73 */
662 { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci_yesncq }, /* MCP73 */
663 { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci_yesncq }, /* MCP73 */
664 { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci_yesncq }, /* MCP73 */
665 { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci_yesncq }, /* MCP73 */
666 { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci_yesncq }, /* MCP73 */
667 { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci_yesncq }, /* MCP73 */
668 { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci_yesncq }, /* MCP73 */
669 { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci_yesncq }, /* MCP73 */
670 { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci_yesncq }, /* MCP73 */
671 { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci_yesncq }, /* MCP73 */
Peer Chen0522b282007-06-07 18:05:12 +0800672 { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */
673 { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */
674 { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */
675 { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */
676 { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */
677 { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */
678 { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */
679 { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */
680 { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */
681 { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
682 { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
683 { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
peerchen6ba86952007-12-03 22:20:37 +0800684 { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */
685 { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */
686 { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */
687 { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */
Peer Chen71008192007-09-24 10:16:25 +0800688 { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */
689 { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */
690 { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */
691 { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */
692 { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */
693 { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */
694 { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */
695 { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */
peerchen7adbe462009-02-27 16:58:41 +0800696 { PCI_VDEVICE(NVIDIA, 0x0d84), board_ahci }, /* MCP89 */
697 { PCI_VDEVICE(NVIDIA, 0x0d85), board_ahci }, /* MCP89 */
698 { PCI_VDEVICE(NVIDIA, 0x0d86), board_ahci }, /* MCP89 */
699 { PCI_VDEVICE(NVIDIA, 0x0d87), board_ahci }, /* MCP89 */
700 { PCI_VDEVICE(NVIDIA, 0x0d88), board_ahci }, /* MCP89 */
701 { PCI_VDEVICE(NVIDIA, 0x0d89), board_ahci }, /* MCP89 */
702 { PCI_VDEVICE(NVIDIA, 0x0d8a), board_ahci }, /* MCP89 */
703 { PCI_VDEVICE(NVIDIA, 0x0d8b), board_ahci }, /* MCP89 */
704 { PCI_VDEVICE(NVIDIA, 0x0d8c), board_ahci }, /* MCP89 */
705 { PCI_VDEVICE(NVIDIA, 0x0d8d), board_ahci }, /* MCP89 */
706 { PCI_VDEVICE(NVIDIA, 0x0d8e), board_ahci }, /* MCP89 */
707 { PCI_VDEVICE(NVIDIA, 0x0d8f), board_ahci }, /* MCP89 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400708
Jeff Garzik95916ed2006-07-29 04:10:14 -0400709 /* SiS */
Tejun Heo20e2de42008-08-01 12:51:43 +0900710 { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */
711 { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 968 */
712 { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */
Jeff Garzik95916ed2006-07-29 04:10:14 -0400713
Jeff Garzikcd70c262007-07-08 02:29:42 -0400714 /* Marvell */
715 { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100716 { PCI_VDEVICE(MARVELL, 0x6121), board_ahci_mv }, /* 6121 */
Jeff Garzikcd70c262007-07-08 02:29:42 -0400717
Mark Nelsonc77a0362008-10-23 14:08:16 +1100718 /* Promise */
719 { PCI_VDEVICE(PROMISE, 0x3f20), board_ahci }, /* PDC42819 */
720
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500721 /* Generic, PCI class code for AHCI */
722 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Conke Huc9f89472007-01-09 05:32:51 -0500723 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 { } /* terminate list */
726};
727
728
729static struct pci_driver ahci_pci_driver = {
730 .name = DRV_NAME,
731 .id_table = ahci_pci_tbl,
732 .probe = ahci_init_one,
Tejun Heo24dc5f32007-01-20 16:00:28 +0900733 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900734#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900735 .suspend = ahci_pci_device_suspend,
736 .resume = ahci_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900737#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738};
739
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700740static int ahci_em_messages = 1;
741module_param(ahci_em_messages, int, 0444);
742/* add other LED protocol types when they become supported */
743MODULE_PARM_DESC(ahci_em_messages,
744 "Set AHCI Enclosure Management Message type (0 = disabled, 1 = LED");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Alan Cox5b66c822008-09-03 14:48:34 +0100746#if defined(CONFIG_PATA_MARVELL) || defined(CONFIG_PATA_MARVELL_MODULE)
747static int marvell_enable;
748#else
749static int marvell_enable = 1;
750#endif
751module_param(marvell_enable, int, 0644);
752MODULE_PARM_DESC(marvell_enable, "Marvell SATA via AHCI (1 = enabled)");
753
754
Tejun Heo98fa4b62006-11-02 12:17:23 +0900755static inline int ahci_nr_ports(u32 cap)
756{
757 return (cap & 0x1f) + 1;
758}
759
Jeff Garzikdab632e2007-05-28 08:33:01 -0400760static inline void __iomem *__ahci_port_base(struct ata_host *host,
761 unsigned int port_no)
762{
763 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
764
765 return mmio + 0x100 + (port_no * 0x80);
766}
767
Tejun Heo4447d352007-04-17 23:44:08 +0900768static inline void __iomem *ahci_port_base(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Jeff Garzikdab632e2007-05-28 08:33:01 -0400770 return __ahci_port_base(ap->host, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Tejun Heob710a1f2008-01-05 23:11:57 +0900773static void ahci_enable_ahci(void __iomem *mmio)
774{
Tejun Heo15fe9822008-04-23 20:52:58 +0900775 int i;
Tejun Heob710a1f2008-01-05 23:11:57 +0900776 u32 tmp;
777
778 /* turn on AHCI_EN */
779 tmp = readl(mmio + HOST_CTL);
Tejun Heo15fe9822008-04-23 20:52:58 +0900780 if (tmp & HOST_AHCI_EN)
781 return;
782
783 /* Some controllers need AHCI_EN to be written multiple times.
784 * Try a few times before giving up.
785 */
786 for (i = 0; i < 5; i++) {
Tejun Heob710a1f2008-01-05 23:11:57 +0900787 tmp |= HOST_AHCI_EN;
788 writel(tmp, mmio + HOST_CTL);
789 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
Tejun Heo15fe9822008-04-23 20:52:58 +0900790 if (tmp & HOST_AHCI_EN)
791 return;
792 msleep(10);
Tejun Heob710a1f2008-01-05 23:11:57 +0900793 }
Tejun Heo15fe9822008-04-23 20:52:58 +0900794
795 WARN_ON(1);
Tejun Heob710a1f2008-01-05 23:11:57 +0900796}
797
Matthew Garrett77cdec12009-07-17 19:13:47 +0100798static ssize_t ahci_show_host_caps(struct device *dev,
799 struct device_attribute *attr, char *buf)
800{
801 struct Scsi_Host *shost = class_to_shost(dev);
802 struct ata_port *ap = ata_shost_to_port(shost);
803 struct ahci_host_priv *hpriv = ap->host->private_data;
804
805 return sprintf(buf, "%x\n", hpriv->cap);
806}
807
Robert Hancock4c521c82009-09-20 17:02:31 -0600808static ssize_t ahci_show_host_cap2(struct device *dev,
809 struct device_attribute *attr, char *buf)
810{
811 struct Scsi_Host *shost = class_to_shost(dev);
812 struct ata_port *ap = ata_shost_to_port(shost);
813 struct ahci_host_priv *hpriv = ap->host->private_data;
814
815 return sprintf(buf, "%x\n", hpriv->cap2);
816}
817
Matthew Garrett77cdec12009-07-17 19:13:47 +0100818static ssize_t ahci_show_host_version(struct device *dev,
819 struct device_attribute *attr, char *buf)
820{
821 struct Scsi_Host *shost = class_to_shost(dev);
822 struct ata_port *ap = ata_shost_to_port(shost);
823 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
824
825 return sprintf(buf, "%x\n", readl(mmio + HOST_VERSION));
826}
827
828static ssize_t ahci_show_port_cmd(struct device *dev,
829 struct device_attribute *attr, char *buf)
830{
831 struct Scsi_Host *shost = class_to_shost(dev);
832 struct ata_port *ap = ata_shost_to_port(shost);
833 void __iomem *port_mmio = ahci_port_base(ap);
834
835 return sprintf(buf, "%x\n", readl(port_mmio + PORT_CMD));
836}
837
Tejun Heod447df12007-03-18 22:15:33 +0900838/**
839 * ahci_save_initial_config - Save and fixup initial config values
Tejun Heo4447d352007-04-17 23:44:08 +0900840 * @pdev: target PCI device
Tejun Heo4447d352007-04-17 23:44:08 +0900841 * @hpriv: host private area to store config values
Tejun Heod447df12007-03-18 22:15:33 +0900842 *
843 * Some registers containing configuration info might be setup by
844 * BIOS and might be cleared on reset. This function saves the
845 * initial values of those registers into @hpriv such that they
846 * can be restored after controller reset.
847 *
848 * If inconsistent, config values are fixed up by this function.
849 *
850 * LOCKING:
851 * None.
852 */
Tejun Heo4447d352007-04-17 23:44:08 +0900853static void ahci_save_initial_config(struct pci_dev *pdev,
Tejun Heo4447d352007-04-17 23:44:08 +0900854 struct ahci_host_priv *hpriv)
Tejun Heod447df12007-03-18 22:15:33 +0900855{
Tejun Heo4447d352007-04-17 23:44:08 +0900856 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
Robert Hancock4c521c82009-09-20 17:02:31 -0600857 u32 cap, cap2, vers, port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900858 int i;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100859 int mv;
Tejun Heod447df12007-03-18 22:15:33 +0900860
Tejun Heob710a1f2008-01-05 23:11:57 +0900861 /* make sure AHCI mode is enabled before accessing CAP */
862 ahci_enable_ahci(mmio);
863
Tejun Heod447df12007-03-18 22:15:33 +0900864 /* Values prefixed with saved_ are written back to host after
865 * reset. Values without are used for driver operation.
866 */
867 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
868 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
869
Robert Hancock4c521c82009-09-20 17:02:31 -0600870 /* CAP2 register is only defined for AHCI 1.2 and later */
871 vers = readl(mmio + HOST_VERSION);
872 if ((vers >> 16) > 1 ||
873 ((vers >> 16) == 1 && (vers & 0xFFFF) >= 0x200))
874 hpriv->saved_cap2 = cap2 = readl(mmio + HOST_CAP2);
875 else
876 hpriv->saved_cap2 = cap2 = 0;
877
Tejun Heo274c1fd2007-07-16 14:29:40 +0900878 /* some chips have errata preventing 64bit use */
Tejun Heo417a1a62007-09-23 13:19:55 +0900879 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Tejun Heoc7a42152007-05-18 16:23:19 +0200880 dev_printk(KERN_INFO, &pdev->dev,
881 "controller can't do 64bit DMA, forcing 32bit\n");
882 cap &= ~HOST_CAP_64;
883 }
884
Tejun Heo417a1a62007-09-23 13:19:55 +0900885 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Tejun Heo274c1fd2007-07-16 14:29:40 +0900886 dev_printk(KERN_INFO, &pdev->dev,
887 "controller can't do NCQ, turning off CAP_NCQ\n");
888 cap &= ~HOST_CAP_NCQ;
889 }
890
Tejun Heoe297d992008-06-10 00:13:04 +0900891 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
892 dev_printk(KERN_INFO, &pdev->dev,
893 "controller can do NCQ, turning on CAP_NCQ\n");
894 cap |= HOST_CAP_NCQ;
895 }
896
Roel Kluin258cd842008-03-09 21:42:40 +0100897 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Tejun Heo6949b912007-09-23 13:19:55 +0900898 dev_printk(KERN_INFO, &pdev->dev,
899 "controller can't do PMP, turning off CAP_PMP\n");
900 cap &= ~HOST_CAP_PMP;
901 }
902
Shaohua Li1b677af2009-11-16 09:56:05 +0800903 if ((cap & HOST_CAP_SNTF) && (hpriv->flags & AHCI_HFLAG_NO_SNTF)) {
904 dev_printk(KERN_INFO, &pdev->dev,
905 "controller can't do SNTF, turning off CAP_SNTF\n");
906 cap &= ~HOST_CAP_SNTF;
907 }
908
Tejun Heod799e082008-06-17 12:46:30 +0900909 if (pdev->vendor == PCI_VENDOR_ID_JMICRON && pdev->device == 0x2361 &&
910 port_map != 1) {
911 dev_printk(KERN_INFO, &pdev->dev,
912 "JMB361 has only one port, port_map 0x%x -> 0x%x\n",
913 port_map, 1);
914 port_map = 1;
915 }
916
Jeff Garzikcd70c262007-07-08 02:29:42 -0400917 /*
918 * Temporary Marvell 6145 hack: PATA port presence
919 * is asserted through the standard AHCI port
920 * presence register, as bit 4 (counting from 0)
921 */
Tejun Heo417a1a62007-09-23 13:19:55 +0900922 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100923 if (pdev->device == 0x6121)
924 mv = 0x3;
925 else
926 mv = 0xf;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400927 dev_printk(KERN_ERR, &pdev->dev,
928 "MV_AHCI HACK: port_map %x -> %x\n",
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100929 port_map,
930 port_map & mv);
Alan Cox5b66c822008-09-03 14:48:34 +0100931 dev_printk(KERN_ERR, &pdev->dev,
932 "Disabling your PATA port. Use the boot option 'ahci.marvell_enable=0' to avoid this.\n");
Jeff Garzikcd70c262007-07-08 02:29:42 -0400933
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100934 port_map &= mv;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400935 }
936
Tejun Heo17199b12007-03-18 22:26:53 +0900937 /* cross check port_map and cap.n_ports */
Tejun Heo7a234af2007-09-03 12:44:57 +0900938 if (port_map) {
Tejun Heo837f5f82008-02-06 15:13:51 +0900939 int map_ports = 0;
Tejun Heo17199b12007-03-18 22:26:53 +0900940
Tejun Heo837f5f82008-02-06 15:13:51 +0900941 for (i = 0; i < AHCI_MAX_PORTS; i++)
942 if (port_map & (1 << i))
943 map_ports++;
Tejun Heo17199b12007-03-18 22:26:53 +0900944
Tejun Heo837f5f82008-02-06 15:13:51 +0900945 /* If PI has more ports than n_ports, whine, clear
946 * port_map and let it be generated from n_ports.
Tejun Heo17199b12007-03-18 22:26:53 +0900947 */
Tejun Heo837f5f82008-02-06 15:13:51 +0900948 if (map_ports > ahci_nr_ports(cap)) {
Tejun Heo4447d352007-04-17 23:44:08 +0900949 dev_printk(KERN_WARNING, &pdev->dev,
Tejun Heo837f5f82008-02-06 15:13:51 +0900950 "implemented port map (0x%x) contains more "
951 "ports than nr_ports (%u), using nr_ports\n",
952 port_map, ahci_nr_ports(cap));
Tejun Heo7a234af2007-09-03 12:44:57 +0900953 port_map = 0;
954 }
955 }
956
957 /* fabricate port_map from cap.nr_ports */
958 if (!port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900959 port_map = (1 << ahci_nr_ports(cap)) - 1;
Tejun Heo7a234af2007-09-03 12:44:57 +0900960 dev_printk(KERN_WARNING, &pdev->dev,
961 "forcing PORTS_IMPL to 0x%x\n", port_map);
962
963 /* write the fixed up value to the PI register */
964 hpriv->saved_port_map = port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900965 }
966
Tejun Heod447df12007-03-18 22:15:33 +0900967 /* record values to use during operation */
968 hpriv->cap = cap;
Robert Hancock4c521c82009-09-20 17:02:31 -0600969 hpriv->cap2 = cap2;
Tejun Heod447df12007-03-18 22:15:33 +0900970 hpriv->port_map = port_map;
971}
972
973/**
974 * ahci_restore_initial_config - Restore initial config
Tejun Heo4447d352007-04-17 23:44:08 +0900975 * @host: target ATA host
Tejun Heod447df12007-03-18 22:15:33 +0900976 *
977 * Restore initial config stored by ahci_save_initial_config().
978 *
979 * LOCKING:
980 * None.
981 */
Tejun Heo4447d352007-04-17 23:44:08 +0900982static void ahci_restore_initial_config(struct ata_host *host)
Tejun Heod447df12007-03-18 22:15:33 +0900983{
Tejun Heo4447d352007-04-17 23:44:08 +0900984 struct ahci_host_priv *hpriv = host->private_data;
985 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
986
Tejun Heod447df12007-03-18 22:15:33 +0900987 writel(hpriv->saved_cap, mmio + HOST_CAP);
Robert Hancock4c521c82009-09-20 17:02:31 -0600988 if (hpriv->saved_cap2)
989 writel(hpriv->saved_cap2, mmio + HOST_CAP2);
Tejun Heod447df12007-03-18 22:15:33 +0900990 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
991 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
992}
993
Tejun Heo203ef6c2007-07-16 14:29:40 +0900994static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900996 static const int offset[] = {
997 [SCR_STATUS] = PORT_SCR_STAT,
998 [SCR_CONTROL] = PORT_SCR_CTL,
999 [SCR_ERROR] = PORT_SCR_ERR,
1000 [SCR_ACTIVE] = PORT_SCR_ACT,
1001 [SCR_NOTIFICATION] = PORT_SCR_NTF,
1002 };
1003 struct ahci_host_priv *hpriv = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Tejun Heo203ef6c2007-07-16 14:29:40 +09001005 if (sc_reg < ARRAY_SIZE(offset) &&
1006 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
1007 return offset[sc_reg];
Tejun Heoda3dbb12007-07-16 14:29:40 +09001008 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Tejun Heo82ef04f2008-07-31 17:02:40 +09001011static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Tejun Heo82ef04f2008-07-31 17:02:40 +09001013 void __iomem *port_mmio = ahci_port_base(link->ap);
1014 int offset = ahci_scr_offset(link->ap, sc_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Tejun Heo203ef6c2007-07-16 14:29:40 +09001016 if (offset) {
1017 *val = readl(port_mmio + offset);
1018 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
Tejun Heo203ef6c2007-07-16 14:29:40 +09001020 return -EINVAL;
1021}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Tejun Heo82ef04f2008-07-31 17:02:40 +09001023static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
Tejun Heo203ef6c2007-07-16 14:29:40 +09001024{
Tejun Heo82ef04f2008-07-31 17:02:40 +09001025 void __iomem *port_mmio = ahci_port_base(link->ap);
1026 int offset = ahci_scr_offset(link->ap, sc_reg);
Tejun Heo203ef6c2007-07-16 14:29:40 +09001027
1028 if (offset) {
1029 writel(val, port_mmio + offset);
1030 return 0;
1031 }
1032 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
Tejun Heo4447d352007-04-17 23:44:08 +09001035static void ahci_start_engine(struct ata_port *ap)
Tejun Heo7c76d1e2005-12-19 22:36:34 +09001036{
Tejun Heo4447d352007-04-17 23:44:08 +09001037 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7c76d1e2005-12-19 22:36:34 +09001038 u32 tmp;
1039
Tejun Heod8fcd112006-07-26 15:59:25 +09001040 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +09001041 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +09001042 tmp |= PORT_CMD_START;
1043 writel(tmp, port_mmio + PORT_CMD);
1044 readl(port_mmio + PORT_CMD); /* flush */
1045}
1046
Tejun Heo4447d352007-04-17 23:44:08 +09001047static int ahci_stop_engine(struct ata_port *ap)
Tejun Heo254950c2006-07-26 15:59:25 +09001048{
Tejun Heo4447d352007-04-17 23:44:08 +09001049 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09001050 u32 tmp;
1051
1052 tmp = readl(port_mmio + PORT_CMD);
1053
Tejun Heod8fcd112006-07-26 15:59:25 +09001054 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +09001055 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
1056 return 0;
1057
Tejun Heod8fcd112006-07-26 15:59:25 +09001058 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +09001059 tmp &= ~PORT_CMD_START;
1060 writel(tmp, port_mmio + PORT_CMD);
1061
Tejun Heod8fcd112006-07-26 15:59:25 +09001062 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +09001063 tmp = ata_wait_register(port_mmio + PORT_CMD,
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001064 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +09001065 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +09001066 return -EIO;
1067
1068 return 0;
1069}
1070
Tejun Heo4447d352007-04-17 23:44:08 +09001071static void ahci_start_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001072{
Tejun Heo4447d352007-04-17 23:44:08 +09001073 void __iomem *port_mmio = ahci_port_base(ap);
1074 struct ahci_host_priv *hpriv = ap->host->private_data;
1075 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo0be0aa92006-07-26 15:59:26 +09001076 u32 tmp;
1077
1078 /* set FIS registers */
Tejun Heo4447d352007-04-17 23:44:08 +09001079 if (hpriv->cap & HOST_CAP_64)
1080 writel((pp->cmd_slot_dma >> 16) >> 16,
1081 port_mmio + PORT_LST_ADDR_HI);
1082 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001083
Tejun Heo4447d352007-04-17 23:44:08 +09001084 if (hpriv->cap & HOST_CAP_64)
1085 writel((pp->rx_fis_dma >> 16) >> 16,
1086 port_mmio + PORT_FIS_ADDR_HI);
1087 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001088
1089 /* enable FIS reception */
1090 tmp = readl(port_mmio + PORT_CMD);
1091 tmp |= PORT_CMD_FIS_RX;
1092 writel(tmp, port_mmio + PORT_CMD);
1093
1094 /* flush */
1095 readl(port_mmio + PORT_CMD);
1096}
1097
Tejun Heo4447d352007-04-17 23:44:08 +09001098static int ahci_stop_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001099{
Tejun Heo4447d352007-04-17 23:44:08 +09001100 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001101 u32 tmp;
1102
1103 /* disable FIS reception */
1104 tmp = readl(port_mmio + PORT_CMD);
1105 tmp &= ~PORT_CMD_FIS_RX;
1106 writel(tmp, port_mmio + PORT_CMD);
1107
1108 /* wait for completion, spec says 500ms, give it 1000 */
1109 tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
1110 PORT_CMD_FIS_ON, 10, 1000);
1111 if (tmp & PORT_CMD_FIS_ON)
1112 return -EBUSY;
1113
1114 return 0;
1115}
1116
Tejun Heo4447d352007-04-17 23:44:08 +09001117static void ahci_power_up(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001118{
Tejun Heo4447d352007-04-17 23:44:08 +09001119 struct ahci_host_priv *hpriv = ap->host->private_data;
1120 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001121 u32 cmd;
1122
1123 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
1124
1125 /* spin up device */
Tejun Heo4447d352007-04-17 23:44:08 +09001126 if (hpriv->cap & HOST_CAP_SSS) {
Tejun Heo0be0aa92006-07-26 15:59:26 +09001127 cmd |= PORT_CMD_SPIN_UP;
1128 writel(cmd, port_mmio + PORT_CMD);
1129 }
1130
1131 /* wake up link */
1132 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
1133}
1134
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001135static void ahci_disable_alpm(struct ata_port *ap)
1136{
1137 struct ahci_host_priv *hpriv = ap->host->private_data;
1138 void __iomem *port_mmio = ahci_port_base(ap);
1139 u32 cmd;
1140 struct ahci_port_priv *pp = ap->private_data;
1141
1142 /* IPM bits should be disabled by libata-core */
1143 /* get the existing command bits */
1144 cmd = readl(port_mmio + PORT_CMD);
1145
1146 /* disable ALPM and ASP */
1147 cmd &= ~PORT_CMD_ASP;
1148 cmd &= ~PORT_CMD_ALPE;
1149
1150 /* force the interface back to active */
1151 cmd |= PORT_CMD_ICC_ACTIVE;
1152
1153 /* write out new cmd value */
1154 writel(cmd, port_mmio + PORT_CMD);
1155 cmd = readl(port_mmio + PORT_CMD);
1156
1157 /* wait 10ms to be sure we've come out of any low power state */
1158 msleep(10);
1159
1160 /* clear out any PhyRdy stuff from interrupt status */
1161 writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT);
1162
1163 /* go ahead and clean out PhyRdy Change from Serror too */
Tejun Heo82ef04f2008-07-31 17:02:40 +09001164 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001165
1166 /*
1167 * Clear flag to indicate that we should ignore all PhyRdy
1168 * state changes
1169 */
1170 hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG;
1171
1172 /*
1173 * Enable interrupts on Phy Ready.
1174 */
1175 pp->intr_mask |= PORT_IRQ_PHYRDY;
1176 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1177
1178 /*
1179 * don't change the link pm policy - we can be called
1180 * just to turn of link pm temporarily
1181 */
1182}
1183
1184static int ahci_enable_alpm(struct ata_port *ap,
1185 enum link_pm policy)
1186{
1187 struct ahci_host_priv *hpriv = ap->host->private_data;
1188 void __iomem *port_mmio = ahci_port_base(ap);
1189 u32 cmd;
1190 struct ahci_port_priv *pp = ap->private_data;
1191 u32 asp;
1192
1193 /* Make sure the host is capable of link power management */
1194 if (!(hpriv->cap & HOST_CAP_ALPM))
1195 return -EINVAL;
1196
1197 switch (policy) {
1198 case MAX_PERFORMANCE:
1199 case NOT_AVAILABLE:
1200 /*
1201 * if we came here with NOT_AVAILABLE,
1202 * it just means this is the first time we
1203 * have tried to enable - default to max performance,
1204 * and let the user go to lower power modes on request.
1205 */
1206 ahci_disable_alpm(ap);
1207 return 0;
1208 case MIN_POWER:
1209 /* configure HBA to enter SLUMBER */
1210 asp = PORT_CMD_ASP;
1211 break;
1212 case MEDIUM_POWER:
1213 /* configure HBA to enter PARTIAL */
1214 asp = 0;
1215 break;
1216 default:
1217 return -EINVAL;
1218 }
1219
1220 /*
1221 * Disable interrupts on Phy Ready. This keeps us from
1222 * getting woken up due to spurious phy ready interrupts
1223 * TBD - Hot plug should be done via polling now, is
1224 * that even supported?
1225 */
1226 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
1227 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1228
1229 /*
1230 * Set a flag to indicate that we should ignore all PhyRdy
1231 * state changes since these can happen now whenever we
1232 * change link state
1233 */
1234 hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG;
1235
1236 /* get the existing command bits */
1237 cmd = readl(port_mmio + PORT_CMD);
1238
1239 /*
1240 * Set ASP based on Policy
1241 */
1242 cmd |= asp;
1243
1244 /*
1245 * Setting this bit will instruct the HBA to aggressively
1246 * enter a lower power link state when it's appropriate and
1247 * based on the value set above for ASP
1248 */
1249 cmd |= PORT_CMD_ALPE;
1250
1251 /* write out new cmd value */
1252 writel(cmd, port_mmio + PORT_CMD);
1253 cmd = readl(port_mmio + PORT_CMD);
1254
1255 /* IPM bits should be set by libata-core */
1256 return 0;
1257}
1258
Tejun Heo438ac6d2007-03-02 17:31:26 +09001259#ifdef CONFIG_PM
Tejun Heo4447d352007-04-17 23:44:08 +09001260static void ahci_power_down(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001261{
Tejun Heo4447d352007-04-17 23:44:08 +09001262 struct ahci_host_priv *hpriv = ap->host->private_data;
1263 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001264 u32 cmd, scontrol;
1265
Tejun Heo4447d352007-04-17 23:44:08 +09001266 if (!(hpriv->cap & HOST_CAP_SSS))
Tejun Heo07c53da2007-01-21 02:10:11 +09001267 return;
1268
1269 /* put device into listen mode, first set PxSCTL.DET to 0 */
1270 scontrol = readl(port_mmio + PORT_SCR_CTL);
1271 scontrol &= ~0xf;
1272 writel(scontrol, port_mmio + PORT_SCR_CTL);
1273
1274 /* then set PxCMD.SUD to 0 */
Tejun Heo0be0aa92006-07-26 15:59:26 +09001275 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
Tejun Heo07c53da2007-01-21 02:10:11 +09001276 cmd &= ~PORT_CMD_SPIN_UP;
1277 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001278}
Tejun Heo438ac6d2007-03-02 17:31:26 +09001279#endif
Tejun Heo0be0aa92006-07-26 15:59:26 +09001280
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001281static void ahci_start_port(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001282{
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001283 struct ahci_port_priv *pp = ap->private_data;
1284 struct ata_link *link;
1285 struct ahci_em_priv *emp;
David Milburn4c1e9aa2009-04-03 15:36:41 -05001286 ssize_t rc;
1287 int i;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001288
Tejun Heo0be0aa92006-07-26 15:59:26 +09001289 /* enable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001290 ahci_start_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001291
1292 /* enable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001293 ahci_start_engine(ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001294
1295 /* turn on LEDs */
1296 if (ap->flags & ATA_FLAG_EM) {
Tejun Heo1eca4362008-11-03 20:03:17 +09001297 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001298 emp = &pp->em_priv[link->pmp];
David Milburn4c1e9aa2009-04-03 15:36:41 -05001299
1300 /* EM Transmit bit maybe busy during init */
Tejun Heod50ce072009-05-12 10:57:41 +09001301 for (i = 0; i < EM_MAX_RETRY; i++) {
David Milburn4c1e9aa2009-04-03 15:36:41 -05001302 rc = ahci_transmit_led_message(ap,
1303 emp->led_state,
1304 4);
1305 if (rc == -EBUSY)
Tejun Heod50ce072009-05-12 10:57:41 +09001306 msleep(1);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001307 else
1308 break;
1309 }
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001310 }
1311 }
1312
1313 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
Tejun Heo1eca4362008-11-03 20:03:17 +09001314 ata_for_each_link(link, ap, EDGE)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001315 ahci_init_sw_activity(link);
1316
Tejun Heo0be0aa92006-07-26 15:59:26 +09001317}
1318
Tejun Heo4447d352007-04-17 23:44:08 +09001319static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001320{
1321 int rc;
1322
1323 /* disable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001324 rc = ahci_stop_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001325 if (rc) {
1326 *emsg = "failed to stop engine";
1327 return rc;
1328 }
1329
1330 /* disable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001331 rc = ahci_stop_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001332 if (rc) {
1333 *emsg = "failed stop FIS RX";
1334 return rc;
1335 }
1336
Tejun Heo0be0aa92006-07-26 15:59:26 +09001337 return 0;
1338}
1339
Tejun Heo4447d352007-04-17 23:44:08 +09001340static int ahci_reset_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001341{
Tejun Heo4447d352007-04-17 23:44:08 +09001342 struct pci_dev *pdev = to_pci_dev(host->dev);
Tejun Heo49f29092007-11-19 16:03:44 +09001343 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001344 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +09001345 u32 tmp;
Tejun Heod91542c2006-07-26 15:59:26 +09001346
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001347 /* we must be in AHCI mode, before using anything
1348 * AHCI-specific, such as HOST_RESET.
1349 */
Tejun Heob710a1f2008-01-05 23:11:57 +09001350 ahci_enable_ahci(mmio);
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001351
1352 /* global controller reset */
Tejun Heoa22e6442008-03-10 10:25:25 +09001353 if (!ahci_skip_host_reset) {
1354 tmp = readl(mmio + HOST_CTL);
1355 if ((tmp & HOST_RESET) == 0) {
1356 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1357 readl(mmio + HOST_CTL); /* flush */
1358 }
Tejun Heod91542c2006-07-26 15:59:26 +09001359
Zhang Rui24920c82008-07-04 13:32:17 +08001360 /*
1361 * to perform host reset, OS should set HOST_RESET
1362 * and poll until this bit is read to be "0".
1363 * reset must complete within 1 second, or
Tejun Heoa22e6442008-03-10 10:25:25 +09001364 * the hardware should be considered fried.
1365 */
Zhang Rui24920c82008-07-04 13:32:17 +08001366 tmp = ata_wait_register(mmio + HOST_CTL, HOST_RESET,
1367 HOST_RESET, 10, 1000);
Tejun Heod91542c2006-07-26 15:59:26 +09001368
Tejun Heoa22e6442008-03-10 10:25:25 +09001369 if (tmp & HOST_RESET) {
1370 dev_printk(KERN_ERR, host->dev,
1371 "controller reset failed (0x%x)\n", tmp);
1372 return -EIO;
1373 }
Tejun Heod91542c2006-07-26 15:59:26 +09001374
Tejun Heoa22e6442008-03-10 10:25:25 +09001375 /* turn on AHCI mode */
1376 ahci_enable_ahci(mmio);
Tejun Heo98fa4b62006-11-02 12:17:23 +09001377
Tejun Heoa22e6442008-03-10 10:25:25 +09001378 /* Some registers might be cleared on reset. Restore
1379 * initial values.
1380 */
1381 ahci_restore_initial_config(host);
1382 } else
1383 dev_printk(KERN_INFO, host->dev,
1384 "skipping global host reset\n");
Tejun Heod91542c2006-07-26 15:59:26 +09001385
1386 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1387 u16 tmp16;
1388
1389 /* configure PCS */
1390 pci_read_config_word(pdev, 0x92, &tmp16);
Tejun Heo49f29092007-11-19 16:03:44 +09001391 if ((tmp16 & hpriv->port_map) != hpriv->port_map) {
1392 tmp16 |= hpriv->port_map;
1393 pci_write_config_word(pdev, 0x92, tmp16);
1394 }
Tejun Heod91542c2006-07-26 15:59:26 +09001395 }
1396
1397 return 0;
1398}
1399
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001400static void ahci_sw_activity(struct ata_link *link)
1401{
1402 struct ata_port *ap = link->ap;
1403 struct ahci_port_priv *pp = ap->private_data;
1404 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1405
1406 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
1407 return;
1408
1409 emp->activity++;
1410 if (!timer_pending(&emp->timer))
1411 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
1412}
1413
1414static void ahci_sw_activity_blink(unsigned long arg)
1415{
1416 struct ata_link *link = (struct ata_link *)arg;
1417 struct ata_port *ap = link->ap;
1418 struct ahci_port_priv *pp = ap->private_data;
1419 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1420 unsigned long led_message = emp->led_state;
1421 u32 activity_led_state;
David Milburneb409632008-10-16 09:26:19 -05001422 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001423
David Milburn87943ac2008-10-13 14:38:36 -05001424 led_message &= EM_MSG_LED_VALUE;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001425 led_message |= ap->port_no | (link->pmp << 8);
1426
1427 /* check to see if we've had activity. If so,
1428 * toggle state of LED and reset timer. If not,
1429 * turn LED to desired idle state.
1430 */
David Milburneb409632008-10-16 09:26:19 -05001431 spin_lock_irqsave(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001432 if (emp->saved_activity != emp->activity) {
1433 emp->saved_activity = emp->activity;
1434 /* get the current LED state */
David Milburn87943ac2008-10-13 14:38:36 -05001435 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001436
1437 if (activity_led_state)
1438 activity_led_state = 0;
1439 else
1440 activity_led_state = 1;
1441
1442 /* clear old state */
David Milburn87943ac2008-10-13 14:38:36 -05001443 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001444
1445 /* toggle state */
1446 led_message |= (activity_led_state << 16);
1447 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
1448 } else {
1449 /* switch to idle */
David Milburn87943ac2008-10-13 14:38:36 -05001450 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001451 if (emp->blink_policy == BLINK_OFF)
1452 led_message |= (1 << 16);
1453 }
David Milburneb409632008-10-16 09:26:19 -05001454 spin_unlock_irqrestore(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001455 ahci_transmit_led_message(ap, led_message, 4);
1456}
1457
1458static void ahci_init_sw_activity(struct ata_link *link)
1459{
1460 struct ata_port *ap = link->ap;
1461 struct ahci_port_priv *pp = ap->private_data;
1462 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1463
1464 /* init activity stats, setup timer */
1465 emp->saved_activity = emp->activity = 0;
1466 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
1467
1468 /* check our blink policy and set flag for link if it's enabled */
1469 if (emp->blink_policy)
1470 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1471}
1472
1473static int ahci_reset_em(struct ata_host *host)
1474{
1475 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
1476 u32 em_ctl;
1477
1478 em_ctl = readl(mmio + HOST_EM_CTL);
1479 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1480 return -EINVAL;
1481
1482 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1483 return 0;
1484}
1485
1486static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1487 ssize_t size)
1488{
1489 struct ahci_host_priv *hpriv = ap->host->private_data;
1490 struct ahci_port_priv *pp = ap->private_data;
1491 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
1492 u32 em_ctl;
1493 u32 message[] = {0, 0};
Linus Torvalds93082f02008-07-25 10:56:36 -07001494 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001495 int pmp;
1496 struct ahci_em_priv *emp;
1497
1498 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001499 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001500 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001501 emp = &pp->em_priv[pmp];
1502 else
1503 return -EINVAL;
1504
1505 spin_lock_irqsave(ap->lock, flags);
1506
1507 /*
1508 * if we are still busy transmitting a previous message,
1509 * do not allow
1510 */
1511 em_ctl = readl(mmio + HOST_EM_CTL);
1512 if (em_ctl & EM_CTL_TM) {
1513 spin_unlock_irqrestore(ap->lock, flags);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001514 return -EBUSY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001515 }
1516
1517 /*
1518 * create message header - this is all zero except for
1519 * the message size, which is 4 bytes.
1520 */
1521 message[0] |= (4 << 8);
1522
1523 /* ignore 0:4 of byte zero, fill in port info yourself */
David Milburn87943ac2008-10-13 14:38:36 -05001524 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001525
1526 /* write message to EM_LOC */
1527 writel(message[0], mmio + hpriv->em_loc);
1528 writel(message[1], mmio + hpriv->em_loc+4);
1529
1530 /* save off new led state for port/slot */
David Milburn208f2a82009-03-20 14:14:23 -05001531 emp->led_state = state;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001532
1533 /*
1534 * tell hardware to transmit the message
1535 */
1536 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1537
1538 spin_unlock_irqrestore(ap->lock, flags);
1539 return size;
1540}
1541
1542static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1543{
1544 struct ahci_port_priv *pp = ap->private_data;
1545 struct ata_link *link;
1546 struct ahci_em_priv *emp;
1547 int rc = 0;
1548
Tejun Heo1eca4362008-11-03 20:03:17 +09001549 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001550 emp = &pp->em_priv[link->pmp];
1551 rc += sprintf(buf, "%lx\n", emp->led_state);
1552 }
1553 return rc;
1554}
1555
1556static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1557 size_t size)
1558{
1559 int state;
1560 int pmp;
1561 struct ahci_port_priv *pp = ap->private_data;
1562 struct ahci_em_priv *emp;
1563
1564 state = simple_strtoul(buf, NULL, 0);
1565
1566 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001567 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001568 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001569 emp = &pp->em_priv[pmp];
1570 else
1571 return -EINVAL;
1572
1573 /* mask off the activity bits if we are in sw_activity
1574 * mode, user should turn off sw_activity before setting
1575 * activity led through em_message
1576 */
1577 if (emp->blink_policy)
David Milburn87943ac2008-10-13 14:38:36 -05001578 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001579
1580 return ahci_transmit_led_message(ap, state, size);
1581}
1582
1583static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1584{
1585 struct ata_link *link = dev->link;
1586 struct ata_port *ap = link->ap;
1587 struct ahci_port_priv *pp = ap->private_data;
1588 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1589 u32 port_led_state = emp->led_state;
1590
1591 /* save the desired Activity LED behavior */
1592 if (val == OFF) {
1593 /* clear LFLAG */
1594 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1595
1596 /* set the LED to OFF */
David Milburn87943ac2008-10-13 14:38:36 -05001597 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001598 port_led_state |= (ap->port_no | (link->pmp << 8));
1599 ahci_transmit_led_message(ap, port_led_state, 4);
1600 } else {
1601 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1602 if (val == BLINK_OFF) {
1603 /* set LED to ON for idle */
David Milburn87943ac2008-10-13 14:38:36 -05001604 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001605 port_led_state |= (ap->port_no | (link->pmp << 8));
David Milburn87943ac2008-10-13 14:38:36 -05001606 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001607 ahci_transmit_led_message(ap, port_led_state, 4);
1608 }
1609 }
1610 emp->blink_policy = val;
1611 return 0;
1612}
1613
1614static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1615{
1616 struct ata_link *link = dev->link;
1617 struct ata_port *ap = link->ap;
1618 struct ahci_port_priv *pp = ap->private_data;
1619 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1620
1621 /* display the saved value of activity behavior for this
1622 * disk.
1623 */
1624 return sprintf(buf, "%d\n", emp->blink_policy);
1625}
1626
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001627static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap,
1628 int port_no, void __iomem *mmio,
1629 void __iomem *port_mmio)
1630{
1631 const char *emsg = NULL;
1632 int rc;
1633 u32 tmp;
1634
1635 /* make sure port is not active */
1636 rc = ahci_deinit_port(ap, &emsg);
1637 if (rc)
1638 dev_printk(KERN_WARNING, &pdev->dev,
1639 "%s (%d)\n", emsg, rc);
1640
1641 /* clear SError */
1642 tmp = readl(port_mmio + PORT_SCR_ERR);
1643 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1644 writel(tmp, port_mmio + PORT_SCR_ERR);
1645
1646 /* clear port IRQ */
1647 tmp = readl(port_mmio + PORT_IRQ_STAT);
1648 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1649 if (tmp)
1650 writel(tmp, port_mmio + PORT_IRQ_STAT);
1651
1652 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1653}
1654
Tejun Heo4447d352007-04-17 23:44:08 +09001655static void ahci_init_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001656{
Tejun Heo417a1a62007-09-23 13:19:55 +09001657 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001658 struct pci_dev *pdev = to_pci_dev(host->dev);
1659 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001660 int i;
Jeff Garzikcd70c262007-07-08 02:29:42 -04001661 void __iomem *port_mmio;
Tejun Heod91542c2006-07-26 15:59:26 +09001662 u32 tmp;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001663 int mv;
Tejun Heod91542c2006-07-26 15:59:26 +09001664
Tejun Heo417a1a62007-09-23 13:19:55 +09001665 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001666 if (pdev->device == 0x6121)
1667 mv = 2;
1668 else
1669 mv = 4;
1670 port_mmio = __ahci_port_base(host, mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -04001671
1672 writel(0, port_mmio + PORT_IRQ_MASK);
1673
1674 /* clear port IRQ */
1675 tmp = readl(port_mmio + PORT_IRQ_STAT);
1676 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1677 if (tmp)
1678 writel(tmp, port_mmio + PORT_IRQ_STAT);
1679 }
1680
Tejun Heo4447d352007-04-17 23:44:08 +09001681 for (i = 0; i < host->n_ports; i++) {
1682 struct ata_port *ap = host->ports[i];
Tejun Heod91542c2006-07-26 15:59:26 +09001683
Jeff Garzikcd70c262007-07-08 02:29:42 -04001684 port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09001685 if (ata_port_is_dummy(ap))
Tejun Heod91542c2006-07-26 15:59:26 +09001686 continue;
Tejun Heod91542c2006-07-26 15:59:26 +09001687
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001688 ahci_port_init(pdev, ap, i, mmio, port_mmio);
Tejun Heod91542c2006-07-26 15:59:26 +09001689 }
1690
1691 tmp = readl(mmio + HOST_CTL);
1692 VPRINTK("HOST_CTL 0x%x\n", tmp);
1693 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1694 tmp = readl(mmio + HOST_CTL);
1695 VPRINTK("HOST_CTL 0x%x\n", tmp);
1696}
1697
Jeff Garzika8785392008-02-28 15:43:48 -05001698static void ahci_dev_config(struct ata_device *dev)
1699{
1700 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1701
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001702 if (hpriv->flags & AHCI_HFLAG_SECT255) {
Jeff Garzika8785392008-02-28 15:43:48 -05001703 dev->max_sectors = 255;
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001704 ata_dev_printk(dev, KERN_INFO,
1705 "SB600 AHCI: limiting to 255 sectors per cmd\n");
1706 }
Jeff Garzika8785392008-02-28 15:43:48 -05001707}
1708
Tejun Heo422b7592005-12-19 22:37:17 +09001709static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
Tejun Heo4447d352007-04-17 23:44:08 +09001711 void __iomem *port_mmio = ahci_port_base(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +09001713 u32 tmp;
1714
1715 tmp = readl(port_mmio + PORT_SIG);
1716 tf.lbah = (tmp >> 24) & 0xff;
1717 tf.lbam = (tmp >> 16) & 0xff;
1718 tf.lbal = (tmp >> 8) & 0xff;
1719 tf.nsect = (tmp) & 0xff;
1720
1721 return ata_dev_classify(&tf);
1722}
1723
Tejun Heo12fad3f2006-05-15 21:03:55 +09001724static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1725 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +09001726{
Tejun Heo12fad3f2006-05-15 21:03:55 +09001727 dma_addr_t cmd_tbl_dma;
1728
1729 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1730
1731 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1732 pp->cmd_slot[tag].status = 0;
1733 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1734 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +09001735}
1736
Shane Huang78d5ae32009-08-07 15:05:52 +08001737static int ahci_kick_engine(struct ata_port *ap)
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001738{
Tejun Heo350756f2008-04-07 22:47:21 +09001739 void __iomem *port_mmio = ahci_port_base(ap);
Jeff Garzikcca39742006-08-24 03:19:22 -04001740 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo520d06f2008-04-07 22:47:21 +09001741 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001742 u32 tmp;
Tejun Heod2e75df2007-07-16 14:29:39 +09001743 int busy, rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001744
Tejun Heod2e75df2007-07-16 14:29:39 +09001745 /* stop engine */
1746 rc = ahci_stop_engine(ap);
1747 if (rc)
1748 goto out_restart;
1749
Shane Huang78d5ae32009-08-07 15:05:52 +08001750 /* need to do CLO?
1751 * always do CLO if PMP is attached (AHCI-1.3 9.2)
1752 */
1753 busy = status & (ATA_BUSY | ATA_DRQ);
1754 if (!busy && !sata_pmp_attached(ap)) {
Tejun Heod2e75df2007-07-16 14:29:39 +09001755 rc = 0;
1756 goto out_restart;
1757 }
1758
1759 if (!(hpriv->cap & HOST_CAP_CLO)) {
1760 rc = -EOPNOTSUPP;
1761 goto out_restart;
1762 }
1763
1764 /* perform CLO */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001765 tmp = readl(port_mmio + PORT_CMD);
1766 tmp |= PORT_CMD_CLO;
1767 writel(tmp, port_mmio + PORT_CMD);
1768
Tejun Heod2e75df2007-07-16 14:29:39 +09001769 rc = 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001770 tmp = ata_wait_register(port_mmio + PORT_CMD,
1771 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1772 if (tmp & PORT_CMD_CLO)
Tejun Heod2e75df2007-07-16 14:29:39 +09001773 rc = -EIO;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001774
Tejun Heod2e75df2007-07-16 14:29:39 +09001775 /* restart engine */
1776 out_restart:
1777 ahci_start_engine(ap);
1778 return rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001779}
1780
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001781static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1782 struct ata_taskfile *tf, int is_cmd, u16 flags,
1783 unsigned long timeout_msec)
1784{
1785 const u32 cmd_fis_len = 5; /* five dwords */
1786 struct ahci_port_priv *pp = ap->private_data;
1787 void __iomem *port_mmio = ahci_port_base(ap);
1788 u8 *fis = pp->cmd_tbl;
1789 u32 tmp;
1790
1791 /* prep the command */
1792 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1793 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1794
1795 /* issue & wait */
1796 writel(1, port_mmio + PORT_CMD_ISSUE);
1797
1798 if (timeout_msec) {
1799 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1,
1800 1, timeout_msec);
1801 if (tmp & 0x1) {
Shane Huang78d5ae32009-08-07 15:05:52 +08001802 ahci_kick_engine(ap);
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001803 return -EBUSY;
1804 }
1805 } else
1806 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1807
1808 return 0;
1809}
1810
Shane Huangbd172432008-06-10 15:52:04 +08001811static int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1812 int pmp, unsigned long deadline,
1813 int (*check_ready)(struct ata_link *link))
Tejun Heo4658f792006-03-22 21:07:03 +09001814{
Tejun Heocc0680a2007-08-06 18:36:23 +09001815 struct ata_port *ap = link->ap;
Tejun Heo55946392009-08-04 14:30:08 +09001816 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo4658f792006-03-22 21:07:03 +09001817 const char *reason = NULL;
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001818 unsigned long now, msecs;
Tejun Heo4658f792006-03-22 21:07:03 +09001819 struct ata_taskfile tf;
Tejun Heo4658f792006-03-22 21:07:03 +09001820 int rc;
1821
1822 DPRINTK("ENTER\n");
1823
1824 /* prepare for SRST (AHCI-1.1 10.4.1) */
Shane Huang78d5ae32009-08-07 15:05:52 +08001825 rc = ahci_kick_engine(ap);
Tejun Heo994056d2007-12-06 15:02:48 +09001826 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09001827 ata_link_printk(link, KERN_WARNING,
Tejun Heo994056d2007-12-06 15:02:48 +09001828 "failed to reset engine (errno=%d)\n", rc);
Tejun Heo4658f792006-03-22 21:07:03 +09001829
Tejun Heocc0680a2007-08-06 18:36:23 +09001830 ata_tf_init(link->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +09001831
1832 /* issue the first D2H Register FIS */
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001833 msecs = 0;
1834 now = jiffies;
1835 if (time_after(now, deadline))
1836 msecs = jiffies_to_msecs(deadline - now);
1837
Tejun Heo4658f792006-03-22 21:07:03 +09001838 tf.ctl |= ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001839 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001840 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
Tejun Heo4658f792006-03-22 21:07:03 +09001841 rc = -EIO;
1842 reason = "1st FIS failed";
1843 goto fail;
1844 }
1845
1846 /* spec says at least 5us, but be generous and sleep for 1ms */
1847 msleep(1);
1848
1849 /* issue the second D2H Register FIS */
Tejun Heo4658f792006-03-22 21:07:03 +09001850 tf.ctl &= ~ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001851 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
Tejun Heo4658f792006-03-22 21:07:03 +09001852
Tejun Heo705e76b2008-04-07 22:47:19 +09001853 /* wait for link to become ready */
Shane Huangbd172432008-06-10 15:52:04 +08001854 rc = ata_wait_after_reset(link, deadline, check_ready);
Tejun Heo55946392009-08-04 14:30:08 +09001855 if (rc == -EBUSY && hpriv->flags & AHCI_HFLAG_SRST_TOUT_IS_OFFLINE) {
1856 /*
1857 * Workaround for cases where link online status can't
1858 * be trusted. Treat device readiness timeout as link
1859 * offline.
1860 */
1861 ata_link_printk(link, KERN_INFO,
1862 "device not ready, treating as offline\n");
1863 *class = ATA_DEV_NONE;
1864 } else if (rc) {
1865 /* link occupied, -ENODEV too is an error */
Tejun Heo9b893912007-02-02 16:50:52 +09001866 reason = "device not ready";
1867 goto fail;
Tejun Heo55946392009-08-04 14:30:08 +09001868 } else
1869 *class = ahci_dev_classify(ap);
Tejun Heo4658f792006-03-22 21:07:03 +09001870
1871 DPRINTK("EXIT, class=%u\n", *class);
1872 return 0;
1873
Tejun Heo4658f792006-03-22 21:07:03 +09001874 fail:
Tejun Heocc0680a2007-08-06 18:36:23 +09001875 ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +09001876 return rc;
1877}
1878
Shane Huangbd172432008-06-10 15:52:04 +08001879static int ahci_check_ready(struct ata_link *link)
1880{
1881 void __iomem *port_mmio = ahci_port_base(link->ap);
1882 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1883
1884 return ata_check_ready(status);
1885}
1886
1887static int ahci_softreset(struct ata_link *link, unsigned int *class,
1888 unsigned long deadline)
1889{
1890 int pmp = sata_srst_pmp(link);
1891
1892 DPRINTK("ENTER\n");
1893
1894 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1895}
1896
1897static int ahci_sb600_check_ready(struct ata_link *link)
1898{
1899 void __iomem *port_mmio = ahci_port_base(link->ap);
1900 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1901 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1902
1903 /*
1904 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1905 * which can save timeout delay.
1906 */
1907 if (irq_status & PORT_IRQ_BAD_PMP)
1908 return -EIO;
1909
1910 return ata_check_ready(status);
1911}
1912
1913static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
1914 unsigned long deadline)
1915{
1916 struct ata_port *ap = link->ap;
1917 void __iomem *port_mmio = ahci_port_base(ap);
1918 int pmp = sata_srst_pmp(link);
1919 int rc;
1920 u32 irq_sts;
1921
1922 DPRINTK("ENTER\n");
1923
1924 rc = ahci_do_softreset(link, class, pmp, deadline,
1925 ahci_sb600_check_ready);
1926
1927 /*
1928 * Soft reset fails on some ATI chips with IPMS set when PMP
1929 * is enabled but SATA HDD/ODD is connected to SATA port,
1930 * do soft reset again to port 0.
1931 */
1932 if (rc == -EIO) {
1933 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1934 if (irq_sts & PORT_IRQ_BAD_PMP) {
1935 ata_link_printk(link, KERN_WARNING,
Shane Huangb6931c12009-08-05 10:10:41 +08001936 "applying SB600 PMP SRST workaround "
1937 "and retrying\n");
Shane Huangbd172432008-06-10 15:52:04 +08001938 rc = ahci_do_softreset(link, class, 0, deadline,
1939 ahci_check_ready);
1940 }
1941 }
1942
1943 return rc;
1944}
1945
Tejun Heocc0680a2007-08-06 18:36:23 +09001946static int ahci_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001947 unsigned long deadline)
Tejun Heo422b7592005-12-19 22:37:17 +09001948{
Tejun Heo9dadd452008-04-07 22:47:19 +09001949 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heocc0680a2007-08-06 18:36:23 +09001950 struct ata_port *ap = link->ap;
Tejun Heo42969712006-05-31 18:28:18 +09001951 struct ahci_port_priv *pp = ap->private_data;
1952 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1953 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001954 bool online;
Tejun Heo4bd00f62006-02-11 16:26:02 +09001955 int rc;
1956
1957 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Tejun Heo4447d352007-04-17 23:44:08 +09001959 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +09001960
1961 /* clear D2H reception area to properly wait for D2H FIS */
Tejun Heocc0680a2007-08-06 18:36:23 +09001962 ata_tf_init(link->device, &tf);
Tejun Heodfd7a3d2007-01-26 15:37:20 +09001963 tf.command = 0x80;
Tejun Heo99771262007-07-16 14:29:38 +09001964 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
Tejun Heo42969712006-05-31 18:28:18 +09001965
Tejun Heo9dadd452008-04-07 22:47:19 +09001966 rc = sata_link_hardreset(link, timing, deadline, &online,
1967 ahci_check_ready);
Tejun Heo42969712006-05-31 18:28:18 +09001968
Tejun Heo4447d352007-04-17 23:44:08 +09001969 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Tejun Heo9dadd452008-04-07 22:47:19 +09001971 if (online)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001972 *class = ahci_dev_classify(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Tejun Heo4bd00f62006-02-11 16:26:02 +09001974 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1975 return rc;
1976}
1977
Tejun Heocc0680a2007-08-06 18:36:23 +09001978static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001979 unsigned long deadline)
Tejun Heoad616ff2006-11-01 18:00:24 +09001980{
Tejun Heocc0680a2007-08-06 18:36:23 +09001981 struct ata_port *ap = link->ap;
Tejun Heo9dadd452008-04-07 22:47:19 +09001982 bool online;
Tejun Heoad616ff2006-11-01 18:00:24 +09001983 int rc;
1984
1985 DPRINTK("ENTER\n");
1986
Tejun Heo4447d352007-04-17 23:44:08 +09001987 ahci_stop_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001988
Tejun Heocc0680a2007-08-06 18:36:23 +09001989 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001990 deadline, &online, NULL);
Tejun Heoad616ff2006-11-01 18:00:24 +09001991
Tejun Heo4447d352007-04-17 23:44:08 +09001992 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001993
1994 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1995
1996 /* vt8251 doesn't clear BSY on signature FIS reception,
1997 * request follow-up softreset.
1998 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001999 return online ? -EAGAIN : rc;
Tejun Heoad616ff2006-11-01 18:00:24 +09002000}
2001
Tejun Heoedc93052007-10-25 14:59:16 +09002002static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
2003 unsigned long deadline)
2004{
2005 struct ata_port *ap = link->ap;
2006 struct ahci_port_priv *pp = ap->private_data;
2007 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2008 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09002009 bool online;
Tejun Heoedc93052007-10-25 14:59:16 +09002010 int rc;
2011
2012 ahci_stop_engine(ap);
2013
2014 /* clear D2H reception area to properly wait for D2H FIS */
2015 ata_tf_init(link->device, &tf);
2016 tf.command = 0x80;
2017 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
2018
2019 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09002020 deadline, &online, NULL);
Tejun Heoedc93052007-10-25 14:59:16 +09002021
2022 ahci_start_engine(ap);
2023
Tejun Heoedc93052007-10-25 14:59:16 +09002024 /* The pseudo configuration device on SIMG4726 attached to
2025 * ASUS P5W-DH Deluxe doesn't send signature FIS after
2026 * hardreset if no device is attached to the first downstream
2027 * port && the pseudo device locks up on SRST w/ PMP==0. To
2028 * work around this, wait for !BSY only briefly. If BSY isn't
2029 * cleared, perform CLO and proceed to IDENTIFY (achieved by
2030 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
2031 *
2032 * Wait for two seconds. Devices attached to downstream port
2033 * which can't process the following IDENTIFY after this will
2034 * have to be reset again. For most cases, this should
2035 * suffice while making probing snappish enough.
2036 */
Tejun Heo9dadd452008-04-07 22:47:19 +09002037 if (online) {
2038 rc = ata_wait_after_reset(link, jiffies + 2 * HZ,
2039 ahci_check_ready);
2040 if (rc)
Shane Huang78d5ae32009-08-07 15:05:52 +08002041 ahci_kick_engine(ap);
Tejun Heo9dadd452008-04-07 22:47:19 +09002042 }
Tejun Heo9dadd452008-04-07 22:47:19 +09002043 return rc;
Tejun Heoedc93052007-10-25 14:59:16 +09002044}
2045
Tejun Heocc0680a2007-08-06 18:36:23 +09002046static void ahci_postreset(struct ata_link *link, unsigned int *class)
Tejun Heo4bd00f62006-02-11 16:26:02 +09002047{
Tejun Heocc0680a2007-08-06 18:36:23 +09002048 struct ata_port *ap = link->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002049 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4bd00f62006-02-11 16:26:02 +09002050 u32 new_tmp, tmp;
2051
Tejun Heo203c75b2008-04-07 22:47:18 +09002052 ata_std_postreset(link, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -05002053
2054 /* Make sure port's ATAPI bit is set appropriately */
2055 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +09002056 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -05002057 new_tmp |= PORT_CMD_ATAPI;
2058 else
2059 new_tmp &= ~PORT_CMD_ATAPI;
2060 if (new_tmp != tmp) {
2061 writel(new_tmp, port_mmio + PORT_CMD);
2062 readl(port_mmio + PORT_CMD); /* flush */
2063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
Tejun Heo12fad3f2006-05-15 21:03:55 +09002066static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002068 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09002069 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
2070 unsigned int si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 VPRINTK("ENTER\n");
2073
2074 /*
2075 * Next, the S/G list.
2076 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09002077 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002078 dma_addr_t addr = sg_dma_address(sg);
2079 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Tejun Heoff2aeb12007-12-05 16:43:11 +09002081 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
2082 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
2083 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
Jeff Garzik828d09d2005-11-12 01:27:07 -05002085
Tejun Heoff2aeb12007-12-05 16:43:11 +09002086 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
2088
Shane Huangd6ef3152009-12-09 17:23:04 +08002089static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc)
2090{
2091 struct ata_port *ap = qc->ap;
2092 struct ahci_port_priv *pp = ap->private_data;
2093
2094 if (!sata_pmp_attached(ap) || pp->fbs_enabled)
2095 return ata_std_qc_defer(qc);
2096 else
2097 return sata_pmp_qc_defer_cmd_switch(qc);
2098}
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100static void ahci_qc_prep(struct ata_queued_cmd *qc)
2101{
Jeff Garzika0ea7322005-06-04 01:13:15 -04002102 struct ata_port *ap = qc->ap;
2103 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo405e66b2007-11-27 19:28:53 +09002104 int is_atapi = ata_is_atapi(qc->tf.protocol);
Tejun Heo12fad3f2006-05-15 21:03:55 +09002105 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 u32 opts;
2107 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -05002108 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 * Fill in command table information. First, the header,
2112 * a SATA Register - Host to Device command FIS.
2113 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09002114 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
2115
Tejun Heo7d50b602007-09-23 13:19:54 +09002116 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
Tejun Heocc9278e2006-02-10 17:25:47 +09002117 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002118 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
2119 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -04002120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Tejun Heocc9278e2006-02-10 17:25:47 +09002122 n_elem = 0;
2123 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +09002124 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Tejun Heocc9278e2006-02-10 17:25:47 +09002126 /*
2127 * Fill in command slot information.
2128 */
Tejun Heo7d50b602007-09-23 13:19:54 +09002129 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
Tejun Heocc9278e2006-02-10 17:25:47 +09002130 if (qc->tf.flags & ATA_TFLAG_WRITE)
2131 opts |= AHCI_CMD_WRITE;
2132 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +09002133 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -05002134
Tejun Heo12fad3f2006-05-15 21:03:55 +09002135 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136}
2137
Shane Huangd6ef3152009-12-09 17:23:04 +08002138static void ahci_fbs_dec_intr(struct ata_port *ap)
2139{
2140 struct ahci_port_priv *pp = ap->private_data;
2141 void __iomem *port_mmio = ahci_port_base(ap);
2142 u32 fbs = readl(port_mmio + PORT_FBS);
2143 int retries = 3;
2144
2145 DPRINTK("ENTER\n");
2146 BUG_ON(!pp->fbs_enabled);
2147
2148 /* time to wait for DEC is not specified by AHCI spec,
2149 * add a retry loop for safety.
2150 */
2151 writel(fbs | PORT_FBS_DEC, port_mmio + PORT_FBS);
2152 fbs = readl(port_mmio + PORT_FBS);
2153 while ((fbs & PORT_FBS_DEC) && retries--) {
2154 udelay(1);
2155 fbs = readl(port_mmio + PORT_FBS);
2156 }
2157
2158 if (fbs & PORT_FBS_DEC)
2159 dev_printk(KERN_ERR, ap->host->dev,
2160 "failed to clear device error\n");
2161}
2162
Tejun Heo78cd52d2006-05-15 20:58:29 +09002163static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
Tejun Heo417a1a62007-09-23 13:19:55 +09002165 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002166 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002167 struct ata_eh_info *host_ehi = &ap->link.eh_info;
2168 struct ata_link *link = NULL;
2169 struct ata_queued_cmd *active_qc;
2170 struct ata_eh_info *active_ehi;
Shane Huangd6ef3152009-12-09 17:23:04 +08002171 bool fbs_need_dec = false;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002172 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Shane Huangd6ef3152009-12-09 17:23:04 +08002174 /* determine active link with error */
2175 if (pp->fbs_enabled) {
2176 void __iomem *port_mmio = ahci_port_base(ap);
2177 u32 fbs = readl(port_mmio + PORT_FBS);
2178 int pmp = fbs >> PORT_FBS_DWE_OFFSET;
2179
2180 if ((fbs & PORT_FBS_SDE) && (pmp < ap->nr_pmp_links) &&
2181 ata_link_online(&ap->pmp_link[pmp])) {
2182 link = &ap->pmp_link[pmp];
2183 fbs_need_dec = true;
2184 }
2185
2186 } else
2187 ata_for_each_link(link, ap, EDGE)
2188 if (ata_link_active(link))
2189 break;
2190
Tejun Heo7d50b602007-09-23 13:19:54 +09002191 if (!link)
2192 link = &ap->link;
2193
2194 active_qc = ata_qc_from_tag(ap, link->active_tag);
2195 active_ehi = &link->eh_info;
2196
2197 /* record irq stat */
2198 ata_ehi_clear_desc(host_ehi);
2199 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
Jeff Garzik9f68a242005-11-15 14:03:47 -05002200
Tejun Heo78cd52d2006-05-15 20:58:29 +09002201 /* AHCI needs SError cleared; otherwise, it might lock up */
Tejun Heo82ef04f2008-07-31 17:02:40 +09002202 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
2203 ahci_scr_write(&ap->link, SCR_ERROR, serror);
Tejun Heo7d50b602007-09-23 13:19:54 +09002204 host_ehi->serror |= serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Tejun Heo41669552006-11-29 11:33:14 +09002206 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
Tejun Heo417a1a62007-09-23 13:19:55 +09002207 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
Tejun Heo41669552006-11-29 11:33:14 +09002208 irq_stat &= ~PORT_IRQ_IF_ERR;
2209
Conke Hu55a61602007-03-27 18:33:05 +08002210 if (irq_stat & PORT_IRQ_TF_ERR) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002211 /* If qc is active, charge it; otherwise, the active
2212 * link. There's no active qc on NCQ errors. It will
2213 * be determined by EH by reading log page 10h.
2214 */
2215 if (active_qc)
2216 active_qc->err_mask |= AC_ERR_DEV;
2217 else
2218 active_ehi->err_mask |= AC_ERR_DEV;
2219
Tejun Heo417a1a62007-09-23 13:19:55 +09002220 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
Tejun Heo7d50b602007-09-23 13:19:54 +09002221 host_ehi->serror &= ~SERR_INTERNAL;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Tejun Heo78cd52d2006-05-15 20:58:29 +09002224 if (irq_stat & PORT_IRQ_UNK_FIS) {
2225 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Tejun Heo7d50b602007-09-23 13:19:54 +09002227 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002228 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002229 ata_ehi_push_desc(active_ehi,
2230 "unknown FIS %08x %08x %08x %08x" ,
Tejun Heo78cd52d2006-05-15 20:58:29 +09002231 unk[0], unk[1], unk[2], unk[3]);
2232 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04002233
Tejun Heo071f44b2008-04-07 22:47:22 +09002234 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002235 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002236 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002237 ata_ehi_push_desc(active_ehi, "incorrect PMP");
2238 }
Tejun Heo78cd52d2006-05-15 20:58:29 +09002239
Tejun Heo7d50b602007-09-23 13:19:54 +09002240 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
2241 host_ehi->err_mask |= AC_ERR_HOST_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002242 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002243 ata_ehi_push_desc(host_ehi, "host bus error");
2244 }
2245
2246 if (irq_stat & PORT_IRQ_IF_ERR) {
Shane Huangd6ef3152009-12-09 17:23:04 +08002247 if (fbs_need_dec)
2248 active_ehi->err_mask |= AC_ERR_DEV;
2249 else {
2250 host_ehi->err_mask |= AC_ERR_ATA_BUS;
2251 host_ehi->action |= ATA_EH_RESET;
2252 }
2253
Tejun Heo7d50b602007-09-23 13:19:54 +09002254 ata_ehi_push_desc(host_ehi, "interface fatal error");
2255 }
2256
2257 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
2258 ata_ehi_hotplugged(host_ehi);
2259 ata_ehi_push_desc(host_ehi, "%s",
2260 irq_stat & PORT_IRQ_CONNECT ?
2261 "connection status changed" : "PHY RDY changed");
2262 }
2263
2264 /* okay, let's hand over to EH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Tejun Heo78cd52d2006-05-15 20:58:29 +09002266 if (irq_stat & PORT_IRQ_FREEZE)
2267 ata_port_freeze(ap);
Shane Huangd6ef3152009-12-09 17:23:04 +08002268 else if (fbs_need_dec) {
2269 ata_link_abort(link);
2270 ahci_fbs_dec_intr(ap);
2271 } else
Tejun Heo78cd52d2006-05-15 20:58:29 +09002272 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002275static void ahci_port_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
Tejun Heo350756f2008-04-07 22:47:21 +09002277 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002278 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo0291f952007-01-25 19:16:28 +09002279 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo5f226c62007-10-09 15:02:23 +09002280 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heob06ce3e2007-10-09 15:06:48 +09002281 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Shane Huang5db5b022010-03-16 18:08:55 +08002282 u32 status, qc_active = 0;
Tejun Heo459ad682007-12-07 12:46:23 +09002283 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
2285 status = readl(port_mmio + PORT_IRQ_STAT);
2286 writel(status, port_mmio + PORT_IRQ_STAT);
2287
Tejun Heob06ce3e2007-10-09 15:06:48 +09002288 /* ignore BAD_PMP while resetting */
2289 if (unlikely(resetting))
2290 status &= ~PORT_IRQ_BAD_PMP;
2291
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002292 /* If we are getting PhyRdy, this is
2293 * just a power state change, we should
2294 * clear out this, plus the PhyRdy/Comm
2295 * Wake bits from Serror
2296 */
2297 if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) &&
2298 (status & PORT_IRQ_PHYRDY)) {
2299 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo82ef04f2008-07-31 17:02:40 +09002300 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002301 }
2302
Tejun Heo78cd52d2006-05-15 20:58:29 +09002303 if (unlikely(status & PORT_IRQ_ERROR)) {
2304 ahci_error_intr(ap, status);
2305 return;
2306 }
2307
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002308 if (status & PORT_IRQ_SDB_FIS) {
Tejun Heo5f226c62007-10-09 15:02:23 +09002309 /* If SNotification is available, leave notification
2310 * handling to sata_async_notification(). If not,
2311 * emulate it by snooping SDB FIS RX area.
2312 *
2313 * Snooping FIS RX area is probably cheaper than
2314 * poking SNotification but some constrollers which
2315 * implement SNotification, ICH9 for example, don't
2316 * store AN SDB FIS into receive area.
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002317 */
Tejun Heo5f226c62007-10-09 15:02:23 +09002318 if (hpriv->cap & HOST_CAP_SNTF)
Tejun Heo7d77b242007-09-23 13:14:13 +09002319 sata_async_notification(ap);
Tejun Heo5f226c62007-10-09 15:02:23 +09002320 else {
2321 /* If the 'N' bit in word 0 of the FIS is set,
2322 * we just received asynchronous notification.
2323 * Tell libata about it.
Shane Huangd6ef3152009-12-09 17:23:04 +08002324 *
2325 * Lack of SNotification should not appear in
2326 * ahci 1.2, so the workaround is unnecessary
2327 * when FBS is enabled.
Tejun Heo5f226c62007-10-09 15:02:23 +09002328 */
Shane Huangd6ef3152009-12-09 17:23:04 +08002329 if (pp->fbs_enabled)
2330 WARN_ON_ONCE(1);
2331 else {
2332 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
2333 u32 f0 = le32_to_cpu(f[0]);
2334 if (f0 & (1 << 15))
2335 sata_async_notification(ap);
2336 }
Tejun Heo5f226c62007-10-09 15:02:23 +09002337 }
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002338 }
2339
Shane Huang5db5b022010-03-16 18:08:55 +08002340 /* pp->active_link is not reliable once FBS is enabled, both
2341 * PORT_SCR_ACT and PORT_CMD_ISSUE should be checked because
2342 * NCQ and non-NCQ commands may be in flight at the same time.
2343 */
2344 if (pp->fbs_enabled) {
2345 if (ap->qc_active) {
2346 qc_active = readl(port_mmio + PORT_SCR_ACT);
2347 qc_active |= readl(port_mmio + PORT_CMD_ISSUE);
2348 }
2349 } else {
2350 /* pp->active_link is valid iff any command is in flight */
2351 if (ap->qc_active && pp->active_link->sactive)
2352 qc_active = readl(port_mmio + PORT_SCR_ACT);
2353 else
2354 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
2355 }
Tejun Heo12fad3f2006-05-15 21:03:55 +09002356
Tejun Heo79f97da2008-04-07 22:47:20 +09002357 rc = ata_qc_complete_multiple(ap, qc_active);
Tejun Heob06ce3e2007-10-09 15:06:48 +09002358
Tejun Heo459ad682007-12-07 12:46:23 +09002359 /* while resetting, invalid completions are expected */
2360 if (unlikely(rc < 0 && !resetting)) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002361 ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002362 ehi->action |= ATA_EH_RESET;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002363 ata_port_freeze(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365}
2366
David Howells7d12e782006-10-05 14:55:46 +01002367static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368{
Jeff Garzikcca39742006-08-24 03:19:22 -04002369 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 struct ahci_host_priv *hpriv;
2371 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -04002372 void __iomem *mmio;
Tejun Heod28f87a2008-07-05 13:10:50 +09002373 u32 irq_stat, irq_masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375 VPRINTK("ENTER\n");
2376
Jeff Garzikcca39742006-08-24 03:19:22 -04002377 hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002378 mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380 /* sigh. 0xffffffff is a valid return from h/w */
2381 irq_stat = readl(mmio + HOST_IRQ_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 if (!irq_stat)
2383 return IRQ_NONE;
2384
Tejun Heod28f87a2008-07-05 13:10:50 +09002385 irq_masked = irq_stat & hpriv->port_map;
2386
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002387 spin_lock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002389 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Tejun Heod28f87a2008-07-05 13:10:50 +09002392 if (!(irq_masked & (1 << i)))
Jeff Garzik67846b32005-10-05 02:58:32 -04002393 continue;
2394
Jeff Garzikcca39742006-08-24 03:19:22 -04002395 ap = host->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -04002396 if (ap) {
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002397 ahci_port_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -04002398 VPRINTK("port %u\n", i);
2399 } else {
2400 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +09002401 if (ata_ratelimit())
Jeff Garzikcca39742006-08-24 03:19:22 -04002402 dev_printk(KERN_WARNING, host->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -05002403 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 }
Jeff Garzik67846b32005-10-05 02:58:32 -04002405
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 handled = 1;
2407 }
2408
Tejun Heod28f87a2008-07-05 13:10:50 +09002409 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
2410 * it should be cleared after all the port events are cleared;
2411 * otherwise, it will raise a spurious interrupt after each
2412 * valid one. Please read section 10.6.2 of ahci 1.1 for more
2413 * information.
2414 *
2415 * Also, use the unmasked value to clear interrupt as spurious
2416 * pending event on a dummy port might cause screaming IRQ.
2417 */
Tejun Heoea0c62f2008-06-28 01:49:02 +09002418 writel(irq_stat, mmio + HOST_IRQ_STAT);
2419
Jeff Garzikcca39742006-08-24 03:19:22 -04002420 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422 VPRINTK("EXIT\n");
2423
2424 return IRQ_RETVAL(handled);
2425}
2426
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09002427static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428{
2429 struct ata_port *ap = qc->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002430 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09002431 struct ahci_port_priv *pp = ap->private_data;
2432
2433 /* Keep track of the currently active link. It will be used
2434 * in completion path to determine whether NCQ phase is in
2435 * progress.
2436 */
2437 pp->active_link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Tejun Heo12fad3f2006-05-15 21:03:55 +09002439 if (qc->tf.protocol == ATA_PROT_NCQ)
2440 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
Shane Huangd6ef3152009-12-09 17:23:04 +08002441
2442 if (pp->fbs_enabled && pp->fbs_last_dev != qc->dev->link->pmp) {
2443 u32 fbs = readl(port_mmio + PORT_FBS);
2444 fbs &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
2445 fbs |= qc->dev->link->pmp << PORT_FBS_DEV_OFFSET;
2446 writel(fbs, port_mmio + PORT_FBS);
2447 pp->fbs_last_dev = qc->dev->link->pmp;
2448 }
2449
Tejun Heo12fad3f2006-05-15 21:03:55 +09002450 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002452 ahci_sw_activity(qc->dev->link);
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 return 0;
2455}
2456
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002457static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2458{
2459 struct ahci_port_priv *pp = qc->ap->private_data;
2460 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2461
Shane Huangd6ef3152009-12-09 17:23:04 +08002462 if (pp->fbs_enabled)
2463 d2h_fis += qc->dev->link->pmp * AHCI_RX_FIS_SZ;
2464
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002465 ata_tf_from_fis(d2h_fis, &qc->result_tf);
2466 return true;
2467}
2468
Tejun Heo78cd52d2006-05-15 20:58:29 +09002469static void ahci_freeze(struct ata_port *ap)
2470{
Tejun Heo4447d352007-04-17 23:44:08 +09002471 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002472
2473 /* turn IRQ off */
2474 writel(0, port_mmio + PORT_IRQ_MASK);
2475}
2476
2477static void ahci_thaw(struct ata_port *ap)
2478{
Tejun Heo0d5ff562007-02-01 15:06:36 +09002479 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
Tejun Heo4447d352007-04-17 23:44:08 +09002480 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002481 u32 tmp;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002482 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002483
2484 /* clear IRQ */
2485 tmp = readl(port_mmio + PORT_IRQ_STAT);
2486 writel(tmp, port_mmio + PORT_IRQ_STAT);
Tejun Heoa7187282007-01-27 11:04:26 +09002487 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002488
Tejun Heo1c954a42007-10-09 15:01:37 +09002489 /* turn IRQ back on */
2490 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002491}
2492
2493static void ahci_error_handler(struct ata_port *ap)
2494{
Tejun Heob51e9e52006-06-29 01:29:30 +09002495 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +09002496 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09002497 ahci_stop_engine(ap);
2498 ahci_start_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002499 }
2500
Tejun Heoa1efdab2008-03-25 12:22:50 +09002501 sata_pmp_error_handler(ap);
Tejun Heoedc93052007-10-25 14:59:16 +09002502}
2503
Tejun Heo78cd52d2006-05-15 20:58:29 +09002504static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2505{
2506 struct ata_port *ap = qc->ap;
2507
Tejun Heod2e75df2007-07-16 14:29:39 +09002508 /* make DMA engine forget about the failed command */
2509 if (qc->flags & ATA_QCFLAG_FAILED)
Shane Huang78d5ae32009-08-07 15:05:52 +08002510 ahci_kick_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002511}
2512
Shane Huangd6ef3152009-12-09 17:23:04 +08002513static void ahci_enable_fbs(struct ata_port *ap)
2514{
2515 struct ahci_port_priv *pp = ap->private_data;
2516 void __iomem *port_mmio = ahci_port_base(ap);
2517 u32 fbs;
2518 int rc;
2519
2520 if (!pp->fbs_supported)
2521 return;
2522
2523 fbs = readl(port_mmio + PORT_FBS);
2524 if (fbs & PORT_FBS_EN) {
2525 pp->fbs_enabled = true;
2526 pp->fbs_last_dev = -1; /* initialization */
2527 return;
2528 }
2529
2530 rc = ahci_stop_engine(ap);
2531 if (rc)
2532 return;
2533
2534 writel(fbs | PORT_FBS_EN, port_mmio + PORT_FBS);
2535 fbs = readl(port_mmio + PORT_FBS);
2536 if (fbs & PORT_FBS_EN) {
2537 dev_printk(KERN_INFO, ap->host->dev, "FBS is enabled.\n");
2538 pp->fbs_enabled = true;
2539 pp->fbs_last_dev = -1; /* initialization */
2540 } else
2541 dev_printk(KERN_ERR, ap->host->dev, "Failed to enable FBS\n");
2542
2543 ahci_start_engine(ap);
2544}
2545
2546static void ahci_disable_fbs(struct ata_port *ap)
2547{
2548 struct ahci_port_priv *pp = ap->private_data;
2549 void __iomem *port_mmio = ahci_port_base(ap);
2550 u32 fbs;
2551 int rc;
2552
2553 if (!pp->fbs_supported)
2554 return;
2555
2556 fbs = readl(port_mmio + PORT_FBS);
2557 if ((fbs & PORT_FBS_EN) == 0) {
2558 pp->fbs_enabled = false;
2559 return;
2560 }
2561
2562 rc = ahci_stop_engine(ap);
2563 if (rc)
2564 return;
2565
2566 writel(fbs & ~PORT_FBS_EN, port_mmio + PORT_FBS);
2567 fbs = readl(port_mmio + PORT_FBS);
2568 if (fbs & PORT_FBS_EN)
2569 dev_printk(KERN_ERR, ap->host->dev, "Failed to disable FBS\n");
2570 else {
2571 dev_printk(KERN_INFO, ap->host->dev, "FBS is disabled.\n");
2572 pp->fbs_enabled = false;
2573 }
2574
2575 ahci_start_engine(ap);
2576}
2577
Tejun Heo7d50b602007-09-23 13:19:54 +09002578static void ahci_pmp_attach(struct ata_port *ap)
2579{
2580 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002581 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002582 u32 cmd;
2583
2584 cmd = readl(port_mmio + PORT_CMD);
2585 cmd |= PORT_CMD_PMP;
2586 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002587
Shane Huangd6ef3152009-12-09 17:23:04 +08002588 ahci_enable_fbs(ap);
2589
Tejun Heo1c954a42007-10-09 15:01:37 +09002590 pp->intr_mask |= PORT_IRQ_BAD_PMP;
2591 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002592}
2593
2594static void ahci_pmp_detach(struct ata_port *ap)
2595{
2596 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002597 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002598 u32 cmd;
2599
Shane Huangd6ef3152009-12-09 17:23:04 +08002600 ahci_disable_fbs(ap);
2601
Tejun Heo7d50b602007-09-23 13:19:54 +09002602 cmd = readl(port_mmio + PORT_CMD);
2603 cmd &= ~PORT_CMD_PMP;
2604 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002605
2606 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
2607 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002608}
2609
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002610static int ahci_port_resume(struct ata_port *ap)
2611{
2612 ahci_power_up(ap);
2613 ahci_start_port(ap);
2614
Tejun Heo071f44b2008-04-07 22:47:22 +09002615 if (sata_pmp_attached(ap))
Tejun Heo7d50b602007-09-23 13:19:54 +09002616 ahci_pmp_attach(ap);
2617 else
2618 ahci_pmp_detach(ap);
2619
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002620 return 0;
2621}
2622
Tejun Heo438ac6d2007-03-02 17:31:26 +09002623#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +09002624static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2625{
Tejun Heoc1332872006-07-26 15:59:26 +09002626 const char *emsg = NULL;
2627 int rc;
2628
Tejun Heo4447d352007-04-17 23:44:08 +09002629 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo8e16f942006-11-20 15:42:36 +09002630 if (rc == 0)
Tejun Heo4447d352007-04-17 23:44:08 +09002631 ahci_power_down(ap);
Tejun Heo8e16f942006-11-20 15:42:36 +09002632 else {
Tejun Heoc1332872006-07-26 15:59:26 +09002633 ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002634 ahci_start_port(ap);
Tejun Heoc1332872006-07-26 15:59:26 +09002635 }
2636
2637 return rc;
2638}
2639
Tejun Heoc1332872006-07-26 15:59:26 +09002640static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
2641{
Jeff Garzikcca39742006-08-24 03:19:22 -04002642 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo9b10ae82009-05-30 20:50:12 +09002643 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002644 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heoc1332872006-07-26 15:59:26 +09002645 u32 ctl;
2646
Tejun Heo9b10ae82009-05-30 20:50:12 +09002647 if (mesg.event & PM_EVENT_SUSPEND &&
2648 hpriv->flags & AHCI_HFLAG_NO_SUSPEND) {
2649 dev_printk(KERN_ERR, &pdev->dev,
2650 "BIOS update required for suspend/resume\n");
2651 return -EIO;
2652 }
2653
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002654 if (mesg.event & PM_EVENT_SLEEP) {
Tejun Heoc1332872006-07-26 15:59:26 +09002655 /* AHCI spec rev1.1 section 8.3.3:
2656 * Software must disable interrupts prior to requesting a
2657 * transition of the HBA to D3 state.
2658 */
2659 ctl = readl(mmio + HOST_CTL);
2660 ctl &= ~HOST_IRQ_EN;
2661 writel(ctl, mmio + HOST_CTL);
2662 readl(mmio + HOST_CTL); /* flush */
2663 }
2664
2665 return ata_pci_device_suspend(pdev, mesg);
2666}
2667
2668static int ahci_pci_device_resume(struct pci_dev *pdev)
2669{
Jeff Garzikcca39742006-08-24 03:19:22 -04002670 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heoc1332872006-07-26 15:59:26 +09002671 int rc;
2672
Tejun Heo553c4aa2006-12-26 19:39:50 +09002673 rc = ata_pci_device_do_resume(pdev);
2674 if (rc)
2675 return rc;
Tejun Heoc1332872006-07-26 15:59:26 +09002676
2677 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
Tejun Heo4447d352007-04-17 23:44:08 +09002678 rc = ahci_reset_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002679 if (rc)
2680 return rc;
2681
Tejun Heo4447d352007-04-17 23:44:08 +09002682 ahci_init_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002683 }
2684
Jeff Garzikcca39742006-08-24 03:19:22 -04002685 ata_host_resume(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002686
2687 return 0;
2688}
Tejun Heo438ac6d2007-03-02 17:31:26 +09002689#endif
Tejun Heoc1332872006-07-26 15:59:26 +09002690
Tejun Heo254950c2006-07-26 15:59:25 +09002691static int ahci_port_start(struct ata_port *ap)
2692{
Shane Huangd6ef3152009-12-09 17:23:04 +08002693 struct ahci_host_priv *hpriv = ap->host->private_data;
Jeff Garzikcca39742006-08-24 03:19:22 -04002694 struct device *dev = ap->host->dev;
Tejun Heo254950c2006-07-26 15:59:25 +09002695 struct ahci_port_priv *pp;
Tejun Heo254950c2006-07-26 15:59:25 +09002696 void *mem;
2697 dma_addr_t mem_dma;
Shane Huangd6ef3152009-12-09 17:23:04 +08002698 size_t dma_sz, rx_fis_sz;
Tejun Heo254950c2006-07-26 15:59:25 +09002699
Tejun Heo24dc5f32007-01-20 16:00:28 +09002700 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Tejun Heo254950c2006-07-26 15:59:25 +09002701 if (!pp)
2702 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002703
Shane Huangd6ef3152009-12-09 17:23:04 +08002704 /* check FBS capability */
2705 if ((hpriv->cap & HOST_CAP_FBS) && sata_pmp_supported(ap)) {
2706 void __iomem *port_mmio = ahci_port_base(ap);
2707 u32 cmd = readl(port_mmio + PORT_CMD);
2708 if (cmd & PORT_CMD_FBSCP)
2709 pp->fbs_supported = true;
2710 else
2711 dev_printk(KERN_WARNING, dev,
2712 "The port is not capable of FBS\n");
2713 }
2714
2715 if (pp->fbs_supported) {
2716 dma_sz = AHCI_PORT_PRIV_FBS_DMA_SZ;
2717 rx_fis_sz = AHCI_RX_FIS_SZ * 16;
2718 } else {
2719 dma_sz = AHCI_PORT_PRIV_DMA_SZ;
2720 rx_fis_sz = AHCI_RX_FIS_SZ;
2721 }
2722
2723 mem = dmam_alloc_coherent(dev, dma_sz, &mem_dma, GFP_KERNEL);
Tejun Heo24dc5f32007-01-20 16:00:28 +09002724 if (!mem)
Tejun Heo254950c2006-07-26 15:59:25 +09002725 return -ENOMEM;
Shane Huangd6ef3152009-12-09 17:23:04 +08002726 memset(mem, 0, dma_sz);
Tejun Heo254950c2006-07-26 15:59:25 +09002727
2728 /*
2729 * First item in chunk of DMA memory: 32-slot command table,
2730 * 32 bytes each in size
2731 */
2732 pp->cmd_slot = mem;
2733 pp->cmd_slot_dma = mem_dma;
2734
2735 mem += AHCI_CMD_SLOT_SZ;
2736 mem_dma += AHCI_CMD_SLOT_SZ;
2737
2738 /*
2739 * Second item: Received-FIS area
2740 */
2741 pp->rx_fis = mem;
2742 pp->rx_fis_dma = mem_dma;
2743
Shane Huangd6ef3152009-12-09 17:23:04 +08002744 mem += rx_fis_sz;
2745 mem_dma += rx_fis_sz;
Tejun Heo254950c2006-07-26 15:59:25 +09002746
2747 /*
2748 * Third item: data area for storing a single command
2749 * and its scatter-gather table
2750 */
2751 pp->cmd_tbl = mem;
2752 pp->cmd_tbl_dma = mem_dma;
2753
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002754 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002755 * Save off initial list of interrupts to be enabled.
2756 * This could be changed later
2757 */
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002758 pp->intr_mask = DEF_PORT_IRQ;
2759
Tejun Heo254950c2006-07-26 15:59:25 +09002760 ap->private_data = pp;
2761
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002762 /* engage engines, captain */
2763 return ahci_port_resume(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09002764}
2765
2766static void ahci_port_stop(struct ata_port *ap)
2767{
Tejun Heo0be0aa92006-07-26 15:59:26 +09002768 const char *emsg = NULL;
2769 int rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002770
Tejun Heo0be0aa92006-07-26 15:59:26 +09002771 /* de-initialize port */
Tejun Heo4447d352007-04-17 23:44:08 +09002772 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo0be0aa92006-07-26 15:59:26 +09002773 if (rc)
2774 ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
Tejun Heo254950c2006-07-26 15:59:25 +09002775}
2776
Tejun Heo4447d352007-04-17 23:44:08 +09002777static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 if (using_dac &&
Yang Hongyang6a355282009-04-06 19:01:13 -07002782 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
2783 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 if (rc) {
Yang Hongyang284901a2009-04-06 19:01:15 -07002785 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002787 dev_printk(KERN_ERR, &pdev->dev,
2788 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 return rc;
2790 }
2791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07002793 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002795 dev_printk(KERN_ERR, &pdev->dev,
2796 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 return rc;
2798 }
Yang Hongyang284901a2009-04-06 19:01:15 -07002799 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002801 dev_printk(KERN_ERR, &pdev->dev,
2802 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 return rc;
2804 }
2805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 return 0;
2807}
2808
Tejun Heo4447d352007-04-17 23:44:08 +09002809static void ahci_print_info(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810{
Tejun Heo4447d352007-04-17 23:44:08 +09002811 struct ahci_host_priv *hpriv = host->private_data;
2812 struct pci_dev *pdev = to_pci_dev(host->dev);
2813 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Robert Hancock4c521c82009-09-20 17:02:31 -06002814 u32 vers, cap, cap2, impl, speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 const char *speed_s;
2816 u16 cc;
2817 const char *scc_s;
2818
2819 vers = readl(mmio + HOST_VERSION);
2820 cap = hpriv->cap;
Robert Hancock4c521c82009-09-20 17:02:31 -06002821 cap2 = hpriv->cap2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 impl = hpriv->port_map;
2823
2824 speed = (cap >> 20) & 0xf;
2825 if (speed == 1)
2826 speed_s = "1.5";
2827 else if (speed == 2)
2828 speed_s = "3";
Shane Huang8522ee22008-12-30 11:00:37 +08002829 else if (speed == 3)
2830 speed_s = "6";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 else
2832 speed_s = "?";
2833
2834 pci_read_config_word(pdev, 0x0a, &cc);
Conke Huc9f89472007-01-09 05:32:51 -05002835 if (cc == PCI_CLASS_STORAGE_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 scc_s = "IDE";
Conke Huc9f89472007-01-09 05:32:51 -05002837 else if (cc == PCI_CLASS_STORAGE_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 scc_s = "SATA";
Conke Huc9f89472007-01-09 05:32:51 -05002839 else if (cc == PCI_CLASS_STORAGE_RAID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 scc_s = "RAID";
2841 else
2842 scc_s = "unknown";
2843
Jeff Garzika9524a72005-10-30 14:39:11 -05002844 dev_printk(KERN_INFO, &pdev->dev,
2845 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002847 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002849 (vers >> 24) & 0xff,
2850 (vers >> 16) & 0xff,
2851 (vers >> 8) & 0xff,
2852 vers & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853
2854 ((cap >> 8) & 0x1f) + 1,
2855 (cap & 0x1f) + 1,
2856 speed_s,
2857 impl,
2858 scc_s);
2859
Jeff Garzika9524a72005-10-30 14:39:11 -05002860 dev_printk(KERN_INFO, &pdev->dev,
2861 "flags: "
Tejun Heo203ef6c2007-07-16 14:29:40 +09002862 "%s%s%s%s%s%s%s"
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002863 "%s%s%s%s%s%s%s"
Robert Hancock4c521c82009-09-20 17:02:31 -06002864 "%s%s%s%s%s%s\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002865 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Robert Hancock4c521c82009-09-20 17:02:31 -06002867 cap & HOST_CAP_64 ? "64bit " : "",
2868 cap & HOST_CAP_NCQ ? "ncq " : "",
2869 cap & HOST_CAP_SNTF ? "sntf " : "",
2870 cap & HOST_CAP_MPS ? "ilck " : "",
2871 cap & HOST_CAP_SSS ? "stag " : "",
2872 cap & HOST_CAP_ALPM ? "pm " : "",
2873 cap & HOST_CAP_LED ? "led " : "",
2874 cap & HOST_CAP_CLO ? "clo " : "",
2875 cap & HOST_CAP_ONLY ? "only " : "",
2876 cap & HOST_CAP_PMP ? "pmp " : "",
2877 cap & HOST_CAP_FBS ? "fbs " : "",
2878 cap & HOST_CAP_PIO_MULTI ? "pio " : "",
2879 cap & HOST_CAP_SSC ? "slum " : "",
2880 cap & HOST_CAP_PART ? "part " : "",
2881 cap & HOST_CAP_CCC ? "ccc " : "",
2882 cap & HOST_CAP_EMS ? "ems " : "",
2883 cap & HOST_CAP_SXS ? "sxs " : "",
2884 cap2 & HOST_CAP2_APST ? "apst " : "",
2885 cap2 & HOST_CAP2_NVMHCI ? "nvmp " : "",
2886 cap2 & HOST_CAP2_BOH ? "boh " : ""
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 );
2888}
2889
Tejun Heoedc93052007-10-25 14:59:16 +09002890/* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2891 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2892 * support PMP and the 4726 either directly exports the device
2893 * attached to the first downstream port or acts as a hardware storage
2894 * controller and emulate a single ATA device (can be RAID 0/1 or some
2895 * other configuration).
2896 *
2897 * When there's no device attached to the first downstream port of the
2898 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2899 * configure the 4726. However, ATA emulation of the device is very
2900 * lame. It doesn't send signature D2H Reg FIS after the initial
2901 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2902 *
2903 * The following function works around the problem by always using
2904 * hardreset on the port and not depending on receiving signature FIS
2905 * afterward. If signature FIS isn't received soon, ATA class is
2906 * assumed without follow-up softreset.
2907 */
2908static void ahci_p5wdh_workaround(struct ata_host *host)
2909{
2910 static struct dmi_system_id sysids[] = {
2911 {
2912 .ident = "P5W DH Deluxe",
2913 .matches = {
2914 DMI_MATCH(DMI_SYS_VENDOR,
2915 "ASUSTEK COMPUTER INC"),
2916 DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
2917 },
2918 },
2919 { }
2920 };
2921 struct pci_dev *pdev = to_pci_dev(host->dev);
2922
2923 if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) &&
2924 dmi_check_system(sysids)) {
2925 struct ata_port *ap = host->ports[1];
2926
2927 dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH "
2928 "Deluxe on-board SIMG4726 workaround\n");
2929
2930 ap->ops = &ahci_p5wdh_ops;
2931 ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA;
2932 }
2933}
2934
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002935/* only some SB600 ahci controllers can do 64bit DMA */
2936static bool ahci_sb600_enable_64bit(struct pci_dev *pdev)
Shane Huang58a09b32009-05-27 15:04:43 +08002937{
2938 static const struct dmi_system_id sysids[] = {
Tejun Heo03d783b2009-08-16 21:04:02 +09002939 /*
2940 * The oldest version known to be broken is 0901 and
2941 * working is 1501 which was released on 2007-10-26.
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002942 * Enable 64bit DMA on 1501 and anything newer.
2943 *
Tejun Heo03d783b2009-08-16 21:04:02 +09002944 * Please read bko#9412 for more info.
2945 */
Shane Huang58a09b32009-05-27 15:04:43 +08002946 {
2947 .ident = "ASUS M2A-VM",
2948 .matches = {
2949 DMI_MATCH(DMI_BOARD_VENDOR,
2950 "ASUSTeK Computer INC."),
2951 DMI_MATCH(DMI_BOARD_NAME, "M2A-VM"),
2952 },
Tejun Heo03d783b2009-08-16 21:04:02 +09002953 .driver_data = "20071026", /* yyyymmdd */
Shane Huang58a09b32009-05-27 15:04:43 +08002954 },
Mark Nelsone65cc192009-11-03 20:06:48 +11002955 /*
2956 * All BIOS versions for the MSI K9A2 Platinum (MS-7376)
2957 * support 64bit DMA.
2958 *
2959 * BIOS versions earlier than 1.5 had the Manufacturer DMI
2960 * fields as "MICRO-STAR INTERANTIONAL CO.,LTD".
2961 * This spelling mistake was fixed in BIOS version 1.5, so
2962 * 1.5 and later have the Manufacturer as
2963 * "MICRO-STAR INTERNATIONAL CO.,LTD".
2964 * So try to match on DMI_BOARD_VENDOR of "MICRO-STAR INTER".
2965 *
2966 * BIOS versions earlier than 1.9 had a Board Product Name
2967 * DMI field of "MS-7376". This was changed to be
2968 * "K9A2 Platinum (MS-7376)" in version 1.9, but we can still
2969 * match on DMI_BOARD_NAME of "MS-7376".
2970 */
2971 {
2972 .ident = "MSI K9A2 Platinum",
2973 .matches = {
2974 DMI_MATCH(DMI_BOARD_VENDOR,
2975 "MICRO-STAR INTER"),
2976 DMI_MATCH(DMI_BOARD_NAME, "MS-7376"),
2977 },
2978 },
Shane Huang58a09b32009-05-27 15:04:43 +08002979 { }
2980 };
Tejun Heo03d783b2009-08-16 21:04:02 +09002981 const struct dmi_system_id *match;
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002982 int year, month, date;
2983 char buf[9];
Shane Huang58a09b32009-05-27 15:04:43 +08002984
Tejun Heo03d783b2009-08-16 21:04:02 +09002985 match = dmi_first_match(sysids);
Shane Huang58a09b32009-05-27 15:04:43 +08002986 if (pdev->bus->number != 0 || pdev->devfn != PCI_DEVFN(0x12, 0) ||
Tejun Heo03d783b2009-08-16 21:04:02 +09002987 !match)
Shane Huang58a09b32009-05-27 15:04:43 +08002988 return false;
2989
Mark Nelsone65cc192009-11-03 20:06:48 +11002990 if (!match->driver_data)
2991 goto enable_64bit;
2992
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002993 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date);
2994 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date);
Shane Huang58a09b32009-05-27 15:04:43 +08002995
Mark Nelsone65cc192009-11-03 20:06:48 +11002996 if (strcmp(buf, match->driver_data) >= 0)
2997 goto enable_64bit;
2998 else {
Tejun Heo03d783b2009-08-16 21:04:02 +09002999 dev_printk(KERN_WARNING, &pdev->dev, "%s: BIOS too old, "
3000 "forcing 32bit DMA, update BIOS\n", match->ident);
Tejun Heo2fcad9d2009-10-03 18:27:29 +09003001 return false;
3002 }
Mark Nelsone65cc192009-11-03 20:06:48 +11003003
3004enable_64bit:
3005 dev_printk(KERN_WARNING, &pdev->dev, "%s: enabling 64bit DMA\n",
3006 match->ident);
3007 return true;
Shane Huang58a09b32009-05-27 15:04:43 +08003008}
3009
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01003010static bool ahci_broken_system_poweroff(struct pci_dev *pdev)
3011{
3012 static const struct dmi_system_id broken_systems[] = {
3013 {
3014 .ident = "HP Compaq nx6310",
3015 .matches = {
3016 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3017 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6310"),
3018 },
3019 /* PCI slot number of the controller */
3020 .driver_data = (void *)0x1FUL,
3021 },
Maciej Ruteckid2f9c062009-03-20 00:06:46 +01003022 {
3023 .ident = "HP Compaq 6720s",
3024 .matches = {
3025 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3026 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6720s"),
3027 },
3028 /* PCI slot number of the controller */
3029 .driver_data = (void *)0x1FUL,
3030 },
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01003031
3032 { } /* terminate list */
3033 };
3034 const struct dmi_system_id *dmi = dmi_first_match(broken_systems);
3035
3036 if (dmi) {
3037 unsigned long slot = (unsigned long)dmi->driver_data;
3038 /* apply the quirk only to on-board controllers */
3039 return slot == PCI_SLOT(pdev->devfn);
3040 }
3041
3042 return false;
3043}
3044
Tejun Heo9b10ae82009-05-30 20:50:12 +09003045static bool ahci_broken_suspend(struct pci_dev *pdev)
3046{
3047 static const struct dmi_system_id sysids[] = {
3048 /*
3049 * On HP dv[4-6] and HDX18 with earlier BIOSen, link
3050 * to the harddisk doesn't become online after
3051 * resuming from STR. Warn and fail suspend.
Tejun Heo9deb3432010-03-16 09:50:26 +09003052 *
3053 * http://bugzilla.kernel.org/show_bug.cgi?id=12276
3054 *
3055 * Use dates instead of versions to match as HP is
3056 * apparently recycling both product and version
3057 * strings.
3058 *
3059 * http://bugzilla.kernel.org/show_bug.cgi?id=15462
Tejun Heo9b10ae82009-05-30 20:50:12 +09003060 */
3061 {
3062 .ident = "dv4",
3063 .matches = {
3064 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3065 DMI_MATCH(DMI_PRODUCT_NAME,
3066 "HP Pavilion dv4 Notebook PC"),
3067 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003068 .driver_data = "20090105", /* F.30 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003069 },
3070 {
3071 .ident = "dv5",
3072 .matches = {
3073 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3074 DMI_MATCH(DMI_PRODUCT_NAME,
3075 "HP Pavilion dv5 Notebook PC"),
3076 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003077 .driver_data = "20090506", /* F.16 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003078 },
3079 {
3080 .ident = "dv6",
3081 .matches = {
3082 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3083 DMI_MATCH(DMI_PRODUCT_NAME,
3084 "HP Pavilion dv6 Notebook PC"),
3085 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003086 .driver_data = "20090423", /* F.21 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003087 },
3088 {
3089 .ident = "HDX18",
3090 .matches = {
3091 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3092 DMI_MATCH(DMI_PRODUCT_NAME,
3093 "HP HDX18 Notebook PC"),
3094 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003095 .driver_data = "20090430", /* F.23 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003096 },
Tejun Heocedc9bf2010-01-28 16:04:15 +09003097 /*
3098 * Acer eMachines G725 has the same problem. BIOS
3099 * V1.03 is known to be broken. V3.04 is known to
3100 * work. Inbetween, there are V1.06, V2.06 and V3.03
3101 * that we don't have much idea about. For now,
3102 * blacklist anything older than V3.04.
Tejun Heo9deb3432010-03-16 09:50:26 +09003103 *
3104 * http://bugzilla.kernel.org/show_bug.cgi?id=15104
Tejun Heocedc9bf2010-01-28 16:04:15 +09003105 */
3106 {
3107 .ident = "G725",
3108 .matches = {
3109 DMI_MATCH(DMI_SYS_VENDOR, "eMachines"),
3110 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines G725"),
3111 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003112 .driver_data = "20091216", /* V3.04 */
Tejun Heocedc9bf2010-01-28 16:04:15 +09003113 },
Tejun Heo9b10ae82009-05-30 20:50:12 +09003114 { } /* terminate list */
3115 };
3116 const struct dmi_system_id *dmi = dmi_first_match(sysids);
Tejun Heo9deb3432010-03-16 09:50:26 +09003117 int year, month, date;
3118 char buf[9];
Tejun Heo9b10ae82009-05-30 20:50:12 +09003119
3120 if (!dmi || pdev->bus->number || pdev->devfn != PCI_DEVFN(0x1f, 2))
3121 return false;
3122
Tejun Heo9deb3432010-03-16 09:50:26 +09003123 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date);
3124 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date);
Tejun Heo9b10ae82009-05-30 20:50:12 +09003125
Tejun Heo9deb3432010-03-16 09:50:26 +09003126 return strcmp(buf, dmi->driver_data) < 0;
Tejun Heo9b10ae82009-05-30 20:50:12 +09003127}
3128
Tejun Heo55946392009-08-04 14:30:08 +09003129static bool ahci_broken_online(struct pci_dev *pdev)
3130{
3131#define ENCODE_BUSDEVFN(bus, slot, func) \
3132 (void *)(unsigned long)(((bus) << 8) | PCI_DEVFN((slot), (func)))
3133 static const struct dmi_system_id sysids[] = {
3134 /*
3135 * There are several gigabyte boards which use
3136 * SIMG5723s configured as hardware RAID. Certain
3137 * 5723 firmware revisions shipped there keep the link
3138 * online but fail to answer properly to SRST or
3139 * IDENTIFY when no device is attached downstream
3140 * causing libata to retry quite a few times leading
3141 * to excessive detection delay.
3142 *
3143 * As these firmwares respond to the second reset try
3144 * with invalid device signature, considering unknown
3145 * sig as offline works around the problem acceptably.
3146 */
3147 {
3148 .ident = "EP45-DQ6",
3149 .matches = {
3150 DMI_MATCH(DMI_BOARD_VENDOR,
3151 "Gigabyte Technology Co., Ltd."),
3152 DMI_MATCH(DMI_BOARD_NAME, "EP45-DQ6"),
3153 },
3154 .driver_data = ENCODE_BUSDEVFN(0x0a, 0x00, 0),
3155 },
3156 {
3157 .ident = "EP45-DS5",
3158 .matches = {
3159 DMI_MATCH(DMI_BOARD_VENDOR,
3160 "Gigabyte Technology Co., Ltd."),
3161 DMI_MATCH(DMI_BOARD_NAME, "EP45-DS5"),
3162 },
3163 .driver_data = ENCODE_BUSDEVFN(0x03, 0x00, 0),
3164 },
3165 { } /* terminate list */
3166 };
3167#undef ENCODE_BUSDEVFN
3168 const struct dmi_system_id *dmi = dmi_first_match(sysids);
3169 unsigned int val;
3170
3171 if (!dmi)
3172 return false;
3173
3174 val = (unsigned long)dmi->driver_data;
3175
3176 return pdev->bus->number == (val >> 8) && pdev->devfn == (val & 0xff);
3177}
3178
Markus Trippelsdorf8e513212009-10-09 05:41:47 +02003179#ifdef CONFIG_ATA_ACPI
Tejun Heof80ae7e2009-09-16 04:18:03 +09003180static void ahci_gtf_filter_workaround(struct ata_host *host)
3181{
3182 static const struct dmi_system_id sysids[] = {
3183 /*
3184 * Aspire 3810T issues a bunch of SATA enable commands
3185 * via _GTF including an invalid one and one which is
3186 * rejected by the device. Among the successful ones
3187 * is FPDMA non-zero offset enable which when enabled
3188 * only on the drive side leads to NCQ command
3189 * failures. Filter it out.
3190 */
3191 {
3192 .ident = "Aspire 3810T",
3193 .matches = {
3194 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
3195 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3810T"),
3196 },
3197 .driver_data = (void *)ATA_ACPI_FILTER_FPDMA_OFFSET,
3198 },
3199 { }
3200 };
3201 const struct dmi_system_id *dmi = dmi_first_match(sysids);
3202 unsigned int filter;
3203 int i;
3204
3205 if (!dmi)
3206 return;
3207
3208 filter = (unsigned long)dmi->driver_data;
3209 dev_printk(KERN_INFO, host->dev,
3210 "applying extra ACPI _GTF filter 0x%x for %s\n",
3211 filter, dmi->ident);
3212
3213 for (i = 0; i < host->n_ports; i++) {
3214 struct ata_port *ap = host->ports[i];
3215 struct ata_link *link;
3216 struct ata_device *dev;
3217
3218 ata_for_each_link(link, ap, EDGE)
3219 ata_for_each_dev(dev, link, ALL)
3220 dev->gtf_filter |= filter;
3221 }
3222}
Markus Trippelsdorf8e513212009-10-09 05:41:47 +02003223#else
3224static inline void ahci_gtf_filter_workaround(struct ata_host *host)
3225{}
3226#endif
Tejun Heof80ae7e2009-09-16 04:18:03 +09003227
Tejun Heo24dc5f32007-01-20 16:00:28 +09003228static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229{
3230 static int printed_version;
Tejun Heoe297d992008-06-10 00:13:04 +09003231 unsigned int board_id = ent->driver_data;
3232 struct ata_port_info pi = ahci_port_info[board_id];
Tejun Heo4447d352007-04-17 23:44:08 +09003233 const struct ata_port_info *ppi[] = { &pi, NULL };
Tejun Heo24dc5f32007-01-20 16:00:28 +09003234 struct device *dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 struct ahci_host_priv *hpriv;
Tejun Heo4447d352007-04-17 23:44:08 +09003236 struct ata_host *host;
Tejun Heo837f5f82008-02-06 15:13:51 +09003237 int n_ports, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239 VPRINTK("ENTER\n");
3240
Tejun Heo12fad3f2006-05-15 21:03:55 +09003241 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
3242
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05003244 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
Alan Cox5b66c822008-09-03 14:48:34 +01003246 /* The AHCI driver can only drive the SATA ports, the PATA driver
3247 can drive them all so if both drivers are selected make sure
3248 AHCI stays out of the way */
3249 if (pdev->vendor == PCI_VENDOR_ID_MARVELL && !marvell_enable)
3250 return -ENODEV;
3251
Mark Nelson7a022672009-11-22 12:07:41 +11003252 /* Promise's PDC42819 is a SAS/SATA controller that has an AHCI mode.
3253 * At the moment, we can only use the AHCI mode. Let the users know
3254 * that for SAS drives they're out of luck.
3255 */
3256 if (pdev->vendor == PCI_VENDOR_ID_PROMISE)
3257 dev_printk(KERN_INFO, &pdev->dev, "PDC42819 "
3258 "can only drive SATA devices with this driver\n");
3259
Tejun Heo4447d352007-04-17 23:44:08 +09003260 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09003261 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 if (rc)
3263 return rc;
3264
Tejun Heodea55132008-03-11 19:52:31 +09003265 /* AHCI controllers often implement SFF compatible interface.
3266 * Grab all PCI BARs just in case.
3267 */
3268 rc = pcim_iomap_regions_request_all(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003269 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003270 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003271 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003272 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Tejun Heoc4f77922007-12-06 15:09:43 +09003274 if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
3275 (pdev->device == 0x2652 || pdev->device == 0x2653)) {
3276 u8 map;
3277
3278 /* ICH6s share the same PCI ID for both piix and ahci
3279 * modes. Enabling ahci mode while MAP indicates
3280 * combined mode is a bad idea. Yield to ata_piix.
3281 */
3282 pci_read_config_byte(pdev, ICH_MAP, &map);
3283 if (map & 0x3) {
3284 dev_printk(KERN_INFO, &pdev->dev, "controller is in "
3285 "combined mode, can't enable AHCI mode\n");
3286 return -ENODEV;
3287 }
3288 }
3289
Tejun Heo24dc5f32007-01-20 16:00:28 +09003290 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
3291 if (!hpriv)
3292 return -ENOMEM;
Tejun Heo417a1a62007-09-23 13:19:55 +09003293 hpriv->flags |= (unsigned long)pi.private_data;
3294
Tejun Heoe297d992008-06-10 00:13:04 +09003295 /* MCP65 revision A1 and A2 can't do MSI */
3296 if (board_id == board_ahci_mcp65 &&
3297 (pdev->revision == 0xa1 || pdev->revision == 0xa2))
3298 hpriv->flags |= AHCI_HFLAG_NO_MSI;
3299
Shane Huange427fe02008-12-30 10:53:41 +08003300 /* SB800 does NOT need the workaround to ignore SERR_INTERNAL */
3301 if (board_id == board_ahci_sb700 && pdev->revision >= 0x40)
3302 hpriv->flags &= ~AHCI_HFLAG_IGN_SERR_INTERNAL;
3303
Tejun Heo2fcad9d2009-10-03 18:27:29 +09003304 /* only some SB600s can do 64bit DMA */
3305 if (ahci_sb600_enable_64bit(pdev))
3306 hpriv->flags &= ~AHCI_HFLAG_32BIT_ONLY;
Shane Huang58a09b32009-05-27 15:04:43 +08003307
Tejun Heo31b239a2009-09-17 00:34:39 +09003308 if ((hpriv->flags & AHCI_HFLAG_NO_MSI) || pci_enable_msi(pdev))
3309 pci_intx(pdev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310
Tejun Heo4447d352007-04-17 23:44:08 +09003311 /* save initial config */
Tejun Heo417a1a62007-09-23 13:19:55 +09003312 ahci_save_initial_config(pdev, hpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
Tejun Heo4447d352007-04-17 23:44:08 +09003314 /* prepare host */
Robert Hancock453d3132010-01-26 22:33:23 -06003315 if (hpriv->cap & HOST_CAP_NCQ) {
3316 pi.flags |= ATA_FLAG_NCQ;
3317 /* Auto-activate optimization is supposed to be supported on
3318 all AHCI controllers indicating NCQ support, but it seems
3319 to be broken at least on some NVIDIA MCP79 chipsets.
3320 Until we get info on which NVIDIA chipsets don't have this
3321 issue, if any, disable AA on all NVIDIA AHCIs. */
3322 if (pdev->vendor != PCI_VENDOR_ID_NVIDIA)
3323 pi.flags |= ATA_FLAG_FPDMA_AA;
3324 }
Tejun Heo4447d352007-04-17 23:44:08 +09003325
Tejun Heo7d50b602007-09-23 13:19:54 +09003326 if (hpriv->cap & HOST_CAP_PMP)
3327 pi.flags |= ATA_FLAG_PMP;
3328
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003329 if (ahci_em_messages && (hpriv->cap & HOST_CAP_EMS)) {
3330 u8 messages;
3331 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
3332 u32 em_loc = readl(mmio + HOST_EM_LOC);
3333 u32 em_ctl = readl(mmio + HOST_EM_CTL);
3334
David Milburn87943ac2008-10-13 14:38:36 -05003335 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003336
3337 /* we only support LED message type right now */
3338 if ((messages & 0x01) && (ahci_em_messages == 1)) {
3339 /* store em_loc */
3340 hpriv->em_loc = ((em_loc >> 16) * 4);
3341 pi.flags |= ATA_FLAG_EM;
3342 if (!(em_ctl & EM_CTL_ALHD))
3343 pi.flags |= ATA_FLAG_SW_ACTIVITY;
3344 }
3345 }
3346
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01003347 if (ahci_broken_system_poweroff(pdev)) {
3348 pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN;
3349 dev_info(&pdev->dev,
3350 "quirky BIOS, skipping spindown on poweroff\n");
3351 }
3352
Tejun Heo9b10ae82009-05-30 20:50:12 +09003353 if (ahci_broken_suspend(pdev)) {
3354 hpriv->flags |= AHCI_HFLAG_NO_SUSPEND;
3355 dev_printk(KERN_WARNING, &pdev->dev,
3356 "BIOS update required for suspend/resume\n");
3357 }
3358
Tejun Heo55946392009-08-04 14:30:08 +09003359 if (ahci_broken_online(pdev)) {
3360 hpriv->flags |= AHCI_HFLAG_SRST_TOUT_IS_OFFLINE;
3361 dev_info(&pdev->dev,
3362 "online status unreliable, applying workaround\n");
3363 }
3364
Tejun Heo837f5f82008-02-06 15:13:51 +09003365 /* CAP.NP sometimes indicate the index of the last enabled
3366 * port, at other times, that of the last possible port, so
3367 * determining the maximum port number requires looking at
3368 * both CAP.NP and port_map.
3369 */
3370 n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));
3371
3372 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
Tejun Heo4447d352007-04-17 23:44:08 +09003373 if (!host)
3374 return -ENOMEM;
3375 host->iomap = pcim_iomap_table(pdev);
3376 host->private_data = hpriv;
3377
Arjan van de Venf3d7f232009-01-26 02:05:44 -08003378 if (!(hpriv->cap & HOST_CAP_SSS) || ahci_ignore_sss)
Arjan van de Ven886ad092009-01-09 15:54:07 -08003379 host->flags |= ATA_HOST_PARALLEL_SCAN;
Arjan van de Venf3d7f232009-01-26 02:05:44 -08003380 else
3381 printk(KERN_INFO "ahci: SSS flag set, parallel bus scan disabled\n");
Arjan van de Ven886ad092009-01-09 15:54:07 -08003382
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003383 if (pi.flags & ATA_FLAG_EM)
3384 ahci_reset_em(host);
3385
Tejun Heo4447d352007-04-17 23:44:08 +09003386 for (i = 0; i < host->n_ports; i++) {
Jeff Garzikdab632e2007-05-28 08:33:01 -04003387 struct ata_port *ap = host->ports[i];
Tejun Heo4447d352007-04-17 23:44:08 +09003388
Tejun Heocbcdd872007-08-18 13:14:55 +09003389 ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar");
3390 ata_port_pbar_desc(ap, AHCI_PCI_BAR,
3391 0x100 + ap->port_no * 0x80, "port");
3392
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04003393 /* set initial link pm policy */
3394 ap->pm_policy = NOT_AVAILABLE;
3395
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003396 /* set enclosure management message type */
3397 if (ap->flags & ATA_FLAG_EM)
3398 ap->em_message_type = ahci_em_messages;
3399
3400
Jeff Garzikdab632e2007-05-28 08:33:01 -04003401 /* disabled/not-implemented port */
Tejun Heo350756f2008-04-07 22:47:21 +09003402 if (!(hpriv->port_map & (1 << i)))
Jeff Garzikdab632e2007-05-28 08:33:01 -04003403 ap->ops = &ata_dummy_port_ops;
Tejun Heo4447d352007-04-17 23:44:08 +09003404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Tejun Heoedc93052007-10-25 14:59:16 +09003406 /* apply workaround for ASUS P5W DH Deluxe mainboard */
3407 ahci_p5wdh_workaround(host);
3408
Tejun Heof80ae7e2009-09-16 04:18:03 +09003409 /* apply gtf filter quirk */
3410 ahci_gtf_filter_workaround(host);
3411
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09003413 rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003415 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
Tejun Heo4447d352007-04-17 23:44:08 +09003417 rc = ahci_reset_controller(host);
3418 if (rc)
3419 return rc;
Tejun Heo12fad3f2006-05-15 21:03:55 +09003420
Tejun Heo4447d352007-04-17 23:44:08 +09003421 ahci_init_controller(host);
3422 ahci_print_info(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
Tejun Heo4447d352007-04-17 23:44:08 +09003424 pci_set_master(pdev);
3425 return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
3426 &ahci_sht);
Jeff Garzik907f4672005-05-12 15:03:42 -04003427}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
3429static int __init ahci_init(void)
3430{
Pavel Roskinb7887192006-08-10 18:13:18 +09003431 return pci_register_driver(&ahci_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432}
3433
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434static void __exit ahci_exit(void)
3435{
3436 pci_unregister_driver(&ahci_pci_driver);
3437}
3438
3439
3440MODULE_AUTHOR("Jeff Garzik");
3441MODULE_DESCRIPTION("AHCI SATA low-level driver");
3442MODULE_LICENSE("GPL");
3443MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04003444MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445
3446module_init(ahci_init);
3447module_exit(ahci_exit);