blob: 189b97c9f0ece2ddffc275865b5dff7454b3f3e9 [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 {
Anton Vorontsovd8993342010-03-03 20:17:34 +0300298 void __iomem * mmio; /* bus-independant mem map */
Tejun Heo417a1a62007-09-23 13:19:55 +0900299 unsigned int flags; /* AHCI_HFLAG_* */
Tejun Heod447df12007-03-18 22:15:33 +0900300 u32 cap; /* cap to use */
Robert Hancock4c521c82009-09-20 17:02:31 -0600301 u32 cap2; /* cap2 to use */
Tejun Heod447df12007-03-18 22:15:33 +0900302 u32 port_map; /* port map to use */
303 u32 saved_cap; /* saved initial cap */
Robert Hancock4c521c82009-09-20 17:02:31 -0600304 u32 saved_cap2; /* saved initial cap2 */
Tejun Heod447df12007-03-18 22:15:33 +0900305 u32 saved_port_map; /* saved initial port_map */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700306 u32 em_loc; /* enclosure management location */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307};
308
309struct ahci_port_priv {
Tejun Heo7d50b602007-09-23 13:19:54 +0900310 struct ata_link *active_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 struct ahci_cmd_hdr *cmd_slot;
312 dma_addr_t cmd_slot_dma;
313 void *cmd_tbl;
314 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 void *rx_fis;
316 dma_addr_t rx_fis_dma;
Tejun Heo0291f952007-01-25 19:16:28 +0900317 /* for NCQ spurious interrupt analysis */
Tejun Heo0291f952007-01-25 19:16:28 +0900318 unsigned int ncq_saw_d2h:1;
319 unsigned int ncq_saw_dmas:1;
Tejun Heoafb2d552007-02-27 13:24:19 +0900320 unsigned int ncq_saw_sdb:1;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -0700321 u32 intr_mask; /* interrupts to enable */
Shane Huangd6ef3152009-12-09 17:23:04 +0800322 bool fbs_supported; /* set iff FBS is supported */
323 bool fbs_enabled; /* set iff FBS is enabled */
324 int fbs_last_dev; /* save FBS.DEV of last FIS */
Tejun Heod50ce072009-05-12 10:57:41 +0900325 /* enclosure management info per PM slot */
326 struct ahci_em_priv em_priv[EM_MAX_SLOTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327};
328
Tejun Heo82ef04f2008-07-31 17:02:40 +0900329static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
330static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400331static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900332static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900333static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334static int ahci_port_start(struct ata_port *ap);
335static void ahci_port_stop(struct ata_port *ap);
Shane Huangd6ef3152009-12-09 17:23:04 +0800336static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337static void ahci_qc_prep(struct ata_queued_cmd *qc);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900338static void ahci_freeze(struct ata_port *ap);
339static void ahci_thaw(struct ata_port *ap);
Shane Huangd6ef3152009-12-09 17:23:04 +0800340static void ahci_enable_fbs(struct ata_port *ap);
341static void ahci_disable_fbs(struct ata_port *ap);
Tejun Heo7d50b602007-09-23 13:19:54 +0900342static void ahci_pmp_attach(struct ata_port *ap);
343static void ahci_pmp_detach(struct ata_port *ap);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900344static int ahci_softreset(struct ata_link *link, unsigned int *class,
345 unsigned long deadline);
Shane Huangbd172432008-06-10 15:52:04 +0800346static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
347 unsigned long deadline);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900348static int ahci_hardreset(struct ata_link *link, unsigned int *class,
349 unsigned long deadline);
350static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
351 unsigned long deadline);
352static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
353 unsigned long deadline);
354static void ahci_postreset(struct ata_link *link, unsigned int *class);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900355static void ahci_error_handler(struct ata_port *ap);
356static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -0400357static int ahci_port_resume(struct ata_port *ap);
Jeff Garzika8785392008-02-28 15:43:48 -0500358static void ahci_dev_config(struct ata_device *dev);
Jeff Garzikdab632e2007-05-28 08:33:01 -0400359static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
360 u32 opts);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900361#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900362static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
Tejun Heoc1332872006-07-26 15:59:26 +0900363static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
364static int ahci_pci_device_resume(struct pci_dev *pdev);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900365#endif
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700366static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
367static ssize_t ahci_activity_store(struct ata_device *dev,
368 enum sw_activity val);
369static void ahci_init_sw_activity(struct ata_link *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Matthew Garrett77cdec12009-07-17 19:13:47 +0100371static ssize_t ahci_show_host_caps(struct device *dev,
372 struct device_attribute *attr, char *buf);
Robert Hancock4c521c82009-09-20 17:02:31 -0600373static ssize_t ahci_show_host_cap2(struct device *dev,
374 struct device_attribute *attr, char *buf);
Matthew Garrett77cdec12009-07-17 19:13:47 +0100375static ssize_t ahci_show_host_version(struct device *dev,
376 struct device_attribute *attr, char *buf);
377static ssize_t ahci_show_port_cmd(struct device *dev,
378 struct device_attribute *attr, char *buf);
379
Robert Hancock9ffc5da2010-01-19 23:03:39 -0600380static DEVICE_ATTR(ahci_host_caps, S_IRUGO, ahci_show_host_caps, NULL);
381static DEVICE_ATTR(ahci_host_cap2, S_IRUGO, ahci_show_host_cap2, NULL);
382static DEVICE_ATTR(ahci_host_version, S_IRUGO, ahci_show_host_version, NULL);
383static DEVICE_ATTR(ahci_port_cmd, S_IRUGO, ahci_show_port_cmd, NULL);
Matthew Garrett77cdec12009-07-17 19:13:47 +0100384
Tony Jonesee959b02008-02-22 00:13:36 +0100385static struct device_attribute *ahci_shost_attrs[] = {
386 &dev_attr_link_power_management_policy,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700387 &dev_attr_em_message_type,
388 &dev_attr_em_message,
Matthew Garrett77cdec12009-07-17 19:13:47 +0100389 &dev_attr_ahci_host_caps,
Robert Hancock4c521c82009-09-20 17:02:31 -0600390 &dev_attr_ahci_host_cap2,
Matthew Garrett77cdec12009-07-17 19:13:47 +0100391 &dev_attr_ahci_host_version,
392 &dev_attr_ahci_port_cmd,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700393 NULL
394};
395
396static struct device_attribute *ahci_sdev_attrs[] = {
397 &dev_attr_sw_activity,
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200398 &dev_attr_unload_heads,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400399 NULL
400};
401
Jeff Garzik193515d2005-11-07 00:59:37 -0500402static struct scsi_host_template ahci_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900403 ATA_NCQ_SHT(DRV_NAME),
Tejun Heo12fad3f2006-05-15 21:03:55 +0900404 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 .dma_boundary = AHCI_DMA_BOUNDARY,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400407 .shost_attrs = ahci_shost_attrs,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700408 .sdev_attrs = ahci_sdev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409};
410
Tejun Heo029cfd62008-03-25 12:22:49 +0900411static struct ata_port_operations ahci_ops = {
412 .inherits = &sata_pmp_port_ops,
413
Shane Huangd6ef3152009-12-09 17:23:04 +0800414 .qc_defer = ahci_pmp_qc_defer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 .qc_prep = ahci_qc_prep,
416 .qc_issue = ahci_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900417 .qc_fill_rtf = ahci_qc_fill_rtf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Tejun Heo78cd52d2006-05-15 20:58:29 +0900419 .freeze = ahci_freeze,
420 .thaw = ahci_thaw,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900421 .softreset = ahci_softreset,
422 .hardreset = ahci_hardreset,
423 .postreset = ahci_postreset,
Tejun Heo071f44b2008-04-07 22:47:22 +0900424 .pmp_softreset = ahci_softreset,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900425 .error_handler = ahci_error_handler,
426 .post_internal_cmd = ahci_post_internal_cmd,
Tejun Heo029cfd62008-03-25 12:22:49 +0900427 .dev_config = ahci_dev_config,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900428
Tejun Heo029cfd62008-03-25 12:22:49 +0900429 .scr_read = ahci_scr_read,
430 .scr_write = ahci_scr_write,
Tejun Heo7d50b602007-09-23 13:19:54 +0900431 .pmp_attach = ahci_pmp_attach,
432 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900433
Tejun Heo029cfd62008-03-25 12:22:49 +0900434 .enable_pm = ahci_enable_alpm,
435 .disable_pm = ahci_disable_alpm,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700436 .em_show = ahci_led_show,
437 .em_store = ahci_led_store,
438 .sw_activity_show = ahci_activity_show,
439 .sw_activity_store = ahci_activity_store,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900440#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900441 .port_suspend = ahci_port_suspend,
442 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900443#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 .port_start = ahci_port_start,
445 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446};
447
Tejun Heo029cfd62008-03-25 12:22:49 +0900448static struct ata_port_operations ahci_vt8251_ops = {
449 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900450 .hardreset = ahci_vt8251_hardreset,
Tejun Heoad616ff2006-11-01 18:00:24 +0900451};
452
Tejun Heo029cfd62008-03-25 12:22:49 +0900453static struct ata_port_operations ahci_p5wdh_ops = {
454 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900455 .hardreset = ahci_p5wdh_hardreset,
Tejun Heoedc93052007-10-25 14:59:16 +0900456};
457
Shane Huangbd172432008-06-10 15:52:04 +0800458static struct ata_port_operations ahci_sb600_ops = {
459 .inherits = &ahci_ops,
460 .softreset = ahci_sb600_softreset,
461 .pmp_softreset = ahci_sb600_softreset,
462};
463
Tejun Heo417a1a62007-09-23 13:19:55 +0900464#define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
465
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100466static const struct ata_port_info ahci_port_info[] = {
Jeff Garzik4da646b2009-04-08 02:00:13 -0400467 [board_ahci] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 {
Tejun Heo1188c0d2007-04-23 02:41:05 +0900469 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100470 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400471 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 .port_ops = &ahci_ops,
473 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400474 [board_ahci_vt8251] =
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200475 {
Tejun Heo6949b912007-09-23 13:19:55 +0900476 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900477 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100478 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400479 .udma_mask = ATA_UDMA6,
Tejun Heoad616ff2006-11-01 18:00:24 +0900480 .port_ops = &ahci_vt8251_ops,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200481 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400482 [board_ahci_ign_iferr] =
Tejun Heo41669552006-11-29 11:33:14 +0900483 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900484 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR),
485 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100486 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400487 .udma_mask = ATA_UDMA6,
Tejun Heo41669552006-11-29 11:33:14 +0900488 .port_ops = &ahci_ops,
489 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400490 [board_ahci_sb600] =
Conke Hu55a61602007-03-27 18:33:05 +0800491 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900492 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
Tejun Heo2fcad9d2009-10-03 18:27:29 +0900493 AHCI_HFLAG_NO_MSI | AHCI_HFLAG_SECT255 |
494 AHCI_HFLAG_32BIT_ONLY),
Tejun Heo417a1a62007-09-23 13:19:55 +0900495 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100496 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400497 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800498 .port_ops = &ahci_sb600_ops,
Conke Hu55a61602007-03-27 18:33:05 +0800499 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400500 [board_ahci_mv] =
Jeff Garzikcd70c262007-07-08 02:29:42 -0400501 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900502 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI |
Tejun Heo17248462008-08-29 16:03:59 +0200503 AHCI_HFLAG_MV_PATA | AHCI_HFLAG_NO_PMP),
Jeff Garzikcd70c262007-07-08 02:29:42 -0400504 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo417a1a62007-09-23 13:19:55 +0900505 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100506 .pio_mask = ATA_PIO4,
Jeff Garzikcd70c262007-07-08 02:29:42 -0400507 .udma_mask = ATA_UDMA6,
508 .port_ops = &ahci_ops,
509 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400510 [board_ahci_sb700] = /* for SB700 and SB800 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800511 {
Shane Huangbd172432008-06-10 15:52:04 +0800512 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL),
Shane Huange39fc8c2008-02-22 05:00:31 -0800513 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100514 .pio_mask = ATA_PIO4,
Shane Huange39fc8c2008-02-22 05:00:31 -0800515 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800516 .port_ops = &ahci_sb600_ops,
Shane Huange39fc8c2008-02-22 05:00:31 -0800517 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400518 [board_ahci_mcp65] =
Tejun Heoe297d992008-06-10 00:13:04 +0900519 {
520 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
521 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100522 .pio_mask = ATA_PIO4,
Tejun Heoe297d992008-06-10 00:13:04 +0900523 .udma_mask = ATA_UDMA6,
524 .port_ops = &ahci_ops,
525 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400526 [board_ahci_nopmp] =
Tejun Heo9a3b1032008-06-18 20:56:58 -0400527 {
528 AHCI_HFLAGS (AHCI_HFLAG_NO_PMP),
529 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100530 .pio_mask = ATA_PIO4,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400531 .udma_mask = ATA_UDMA6,
532 .port_ops = &ahci_ops,
533 },
Shaohua Li1b677af2009-11-16 09:56:05 +0800534 [board_ahci_yesncq] =
Tejun Heoaa431dd2009-04-08 14:25:31 -0700535 {
536 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
537 .flags = AHCI_FLAG_COMMON,
538 .pio_mask = ATA_PIO4,
539 .udma_mask = ATA_UDMA6,
540 .port_ops = &ahci_ops,
541 },
Shaohua Li1b677af2009-11-16 09:56:05 +0800542 [board_ahci_nosntf] =
543 {
544 AHCI_HFLAGS (AHCI_HFLAG_NO_SNTF),
545 .flags = AHCI_FLAG_COMMON,
546 .pio_mask = ATA_PIO4,
547 .udma_mask = ATA_UDMA6,
548 .port_ops = &ahci_ops,
549 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550};
551
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500552static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400553 /* Intel */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400554 { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
555 { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
556 { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
557 { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
558 { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
Tejun Heo82490c02007-01-23 15:13:39 +0900559 { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400560 { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
561 { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
562 { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
563 { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
Tejun Heo7a234af2007-09-03 12:44:57 +0900564 { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */
Shaohua Li1b677af2009-11-16 09:56:05 +0800565 { PCI_VDEVICE(INTEL, 0x2822), board_ahci_nosntf }, /* ICH8 */
Tejun Heo7a234af2007-09-03 12:44:57 +0900566 { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */
567 { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */
568 { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */
569 { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */
570 { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */
571 { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */
572 { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */
573 { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */
574 { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */
575 { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */
576 { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */
577 { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */
578 { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */
579 { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */
580 { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */
Jason Gastond4155e62007-09-20 17:35:00 -0400581 { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */
582 { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800583 { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */
Mark Goodwinb2dde6a2009-06-26 10:44:11 -0500584 { PCI_VDEVICE(INTEL, 0x3a22), board_ahci }, /* ICH10 */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800585 { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */
David Milburnc1f57d92009-07-22 15:15:56 -0500586 { PCI_VDEVICE(INTEL, 0x3b22), board_ahci }, /* PCH AHCI */
587 { PCI_VDEVICE(INTEL, 0x3b23), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700588 { PCI_VDEVICE(INTEL, 0x3b24), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700589 { PCI_VDEVICE(INTEL, 0x3b25), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500590 { PCI_VDEVICE(INTEL, 0x3b29), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700591 { PCI_VDEVICE(INTEL, 0x3b2b), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700592 { PCI_VDEVICE(INTEL, 0x3b2c), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500593 { PCI_VDEVICE(INTEL, 0x3b2f), board_ahci }, /* PCH AHCI */
Seth Heasley5623cab2010-01-12 17:00:18 -0800594 { PCI_VDEVICE(INTEL, 0x1c02), board_ahci }, /* CPT AHCI */
595 { PCI_VDEVICE(INTEL, 0x1c03), board_ahci }, /* CPT AHCI */
596 { PCI_VDEVICE(INTEL, 0x1c04), board_ahci }, /* CPT RAID */
597 { PCI_VDEVICE(INTEL, 0x1c05), board_ahci }, /* CPT RAID */
598 { PCI_VDEVICE(INTEL, 0x1c06), board_ahci }, /* CPT RAID */
599 { PCI_VDEVICE(INTEL, 0x1c07), board_ahci }, /* CPT RAID */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400600
Tejun Heoe34bb372007-02-26 20:24:03 +0900601 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
602 { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
603 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400604
605 /* ATI */
Conke Huc65ec1c2007-04-11 18:23:14 +0800606 { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800607 { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb700 }, /* ATI SB700/800 */
608 { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb700 }, /* ATI SB700/800 */
609 { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb700 }, /* ATI SB700/800 */
610 { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb700 }, /* ATI SB700/800 */
611 { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb700 }, /* ATI SB700/800 */
612 { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb700 }, /* ATI SB700/800 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400613
Shane Huange2dd90b2009-07-29 11:34:49 +0800614 /* AMD */
Shane Huang5deab532009-10-13 11:14:00 +0800615 { PCI_VDEVICE(AMD, 0x7800), board_ahci }, /* AMD Hudson-2 */
Shane Huange2dd90b2009-07-29 11:34:49 +0800616 /* AMD is using RAID class only for ahci controllers */
617 { PCI_VENDOR_ID_AMD, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
618 PCI_CLASS_STORAGE_RAID << 8, 0xffffff, board_ahci },
619
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400620 /* VIA */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400621 { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
Tejun Heobf335542007-04-11 17:27:14 +0900622 { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400623
624 /* NVIDIA */
Tejun Heoe297d992008-06-10 00:13:04 +0900625 { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci_mcp65 }, /* MCP65 */
626 { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci_mcp65 }, /* MCP65 */
627 { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci_mcp65 }, /* MCP65 */
628 { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci_mcp65 }, /* MCP65 */
629 { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci_mcp65 }, /* MCP65 */
630 { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci_mcp65 }, /* MCP65 */
631 { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci_mcp65 }, /* MCP65 */
632 { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci_mcp65 }, /* MCP65 */
Tejun Heoaa431dd2009-04-08 14:25:31 -0700633 { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci_yesncq }, /* MCP67 */
634 { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci_yesncq }, /* MCP67 */
635 { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci_yesncq }, /* MCP67 */
636 { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci_yesncq }, /* MCP67 */
637 { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci_yesncq }, /* MCP67 */
638 { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci_yesncq }, /* MCP67 */
639 { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci_yesncq }, /* MCP67 */
640 { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci_yesncq }, /* MCP67 */
641 { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci_yesncq }, /* MCP67 */
642 { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci_yesncq }, /* MCP67 */
643 { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci_yesncq }, /* MCP67 */
644 { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci_yesncq }, /* MCP67 */
peer chen726206f2009-10-15 16:34:56 +0800645 { PCI_VDEVICE(NVIDIA, 0x0580), board_ahci_yesncq }, /* Linux ID */
Tejun Heo603037c2010-03-11 11:37:16 +0900646 { PCI_VDEVICE(NVIDIA, 0x0581), board_ahci_yesncq }, /* Linux ID */
647 { PCI_VDEVICE(NVIDIA, 0x0582), board_ahci_yesncq }, /* Linux ID */
648 { PCI_VDEVICE(NVIDIA, 0x0583), board_ahci_yesncq }, /* Linux ID */
649 { PCI_VDEVICE(NVIDIA, 0x0584), board_ahci_yesncq }, /* Linux ID */
650 { PCI_VDEVICE(NVIDIA, 0x0585), board_ahci_yesncq }, /* Linux ID */
651 { PCI_VDEVICE(NVIDIA, 0x0586), board_ahci_yesncq }, /* Linux ID */
652 { PCI_VDEVICE(NVIDIA, 0x0587), board_ahci_yesncq }, /* Linux ID */
653 { PCI_VDEVICE(NVIDIA, 0x0588), board_ahci_yesncq }, /* Linux ID */
654 { PCI_VDEVICE(NVIDIA, 0x0589), board_ahci_yesncq }, /* Linux ID */
655 { PCI_VDEVICE(NVIDIA, 0x058a), board_ahci_yesncq }, /* Linux ID */
656 { PCI_VDEVICE(NVIDIA, 0x058b), board_ahci_yesncq }, /* Linux ID */
657 { PCI_VDEVICE(NVIDIA, 0x058c), board_ahci_yesncq }, /* Linux ID */
658 { PCI_VDEVICE(NVIDIA, 0x058d), board_ahci_yesncq }, /* Linux ID */
659 { PCI_VDEVICE(NVIDIA, 0x058e), board_ahci_yesncq }, /* Linux ID */
660 { PCI_VDEVICE(NVIDIA, 0x058f), board_ahci_yesncq }, /* Linux ID */
Tejun Heoaa431dd2009-04-08 14:25:31 -0700661 { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci_yesncq }, /* MCP73 */
662 { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci_yesncq }, /* MCP73 */
663 { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci_yesncq }, /* MCP73 */
664 { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci_yesncq }, /* MCP73 */
665 { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci_yesncq }, /* MCP73 */
666 { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci_yesncq }, /* MCP73 */
667 { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci_yesncq }, /* MCP73 */
668 { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci_yesncq }, /* MCP73 */
669 { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci_yesncq }, /* MCP73 */
670 { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci_yesncq }, /* MCP73 */
671 { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci_yesncq }, /* MCP73 */
672 { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci_yesncq }, /* MCP73 */
Peer Chen0522b282007-06-07 18:05:12 +0800673 { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */
674 { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */
675 { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */
676 { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */
677 { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */
678 { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */
679 { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */
680 { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */
681 { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */
682 { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
683 { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
684 { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
peerchen6ba86952007-12-03 22:20:37 +0800685 { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */
686 { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */
687 { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */
688 { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */
Peer Chen71008192007-09-24 10:16:25 +0800689 { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */
690 { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */
691 { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */
692 { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */
693 { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */
694 { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */
695 { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */
696 { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */
peerchen7adbe462009-02-27 16:58:41 +0800697 { PCI_VDEVICE(NVIDIA, 0x0d84), board_ahci }, /* MCP89 */
698 { PCI_VDEVICE(NVIDIA, 0x0d85), board_ahci }, /* MCP89 */
699 { PCI_VDEVICE(NVIDIA, 0x0d86), board_ahci }, /* MCP89 */
700 { PCI_VDEVICE(NVIDIA, 0x0d87), board_ahci }, /* MCP89 */
701 { PCI_VDEVICE(NVIDIA, 0x0d88), board_ahci }, /* MCP89 */
702 { PCI_VDEVICE(NVIDIA, 0x0d89), board_ahci }, /* MCP89 */
703 { PCI_VDEVICE(NVIDIA, 0x0d8a), board_ahci }, /* MCP89 */
704 { PCI_VDEVICE(NVIDIA, 0x0d8b), board_ahci }, /* MCP89 */
705 { PCI_VDEVICE(NVIDIA, 0x0d8c), board_ahci }, /* MCP89 */
706 { PCI_VDEVICE(NVIDIA, 0x0d8d), board_ahci }, /* MCP89 */
707 { PCI_VDEVICE(NVIDIA, 0x0d8e), board_ahci }, /* MCP89 */
708 { PCI_VDEVICE(NVIDIA, 0x0d8f), board_ahci }, /* MCP89 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400709
Jeff Garzik95916ed2006-07-29 04:10:14 -0400710 /* SiS */
Tejun Heo20e2de42008-08-01 12:51:43 +0900711 { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */
712 { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 968 */
713 { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */
Jeff Garzik95916ed2006-07-29 04:10:14 -0400714
Jeff Garzikcd70c262007-07-08 02:29:42 -0400715 /* Marvell */
716 { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100717 { PCI_VDEVICE(MARVELL, 0x6121), board_ahci_mv }, /* 6121 */
Jeff Garzikcd70c262007-07-08 02:29:42 -0400718
Mark Nelsonc77a0362008-10-23 14:08:16 +1100719 /* Promise */
720 { PCI_VDEVICE(PROMISE, 0x3f20), board_ahci }, /* PDC42819 */
721
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500722 /* Generic, PCI class code for AHCI */
723 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Conke Huc9f89472007-01-09 05:32:51 -0500724 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 { } /* terminate list */
727};
728
729
730static struct pci_driver ahci_pci_driver = {
731 .name = DRV_NAME,
732 .id_table = ahci_pci_tbl,
733 .probe = ahci_init_one,
Tejun Heo24dc5f32007-01-20 16:00:28 +0900734 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900735#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900736 .suspend = ahci_pci_device_suspend,
737 .resume = ahci_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900738#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739};
740
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700741static int ahci_em_messages = 1;
742module_param(ahci_em_messages, int, 0444);
743/* add other LED protocol types when they become supported */
744MODULE_PARM_DESC(ahci_em_messages,
745 "Set AHCI Enclosure Management Message type (0 = disabled, 1 = LED");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Alan Cox5b66c822008-09-03 14:48:34 +0100747#if defined(CONFIG_PATA_MARVELL) || defined(CONFIG_PATA_MARVELL_MODULE)
748static int marvell_enable;
749#else
750static int marvell_enable = 1;
751#endif
752module_param(marvell_enable, int, 0644);
753MODULE_PARM_DESC(marvell_enable, "Marvell SATA via AHCI (1 = enabled)");
754
755
Tejun Heo98fa4b62006-11-02 12:17:23 +0900756static inline int ahci_nr_ports(u32 cap)
757{
758 return (cap & 0x1f) + 1;
759}
760
Jeff Garzikdab632e2007-05-28 08:33:01 -0400761static inline void __iomem *__ahci_port_base(struct ata_host *host,
762 unsigned int port_no)
763{
Anton Vorontsovd8993342010-03-03 20:17:34 +0300764 struct ahci_host_priv *hpriv = host->private_data;
765 void __iomem *mmio = hpriv->mmio;
Jeff Garzikdab632e2007-05-28 08:33:01 -0400766
767 return mmio + 0x100 + (port_no * 0x80);
768}
769
Tejun Heo4447d352007-04-17 23:44:08 +0900770static inline void __iomem *ahci_port_base(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Jeff Garzikdab632e2007-05-28 08:33:01 -0400772 return __ahci_port_base(ap->host, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Tejun Heob710a1f2008-01-05 23:11:57 +0900775static void ahci_enable_ahci(void __iomem *mmio)
776{
Tejun Heo15fe9822008-04-23 20:52:58 +0900777 int i;
Tejun Heob710a1f2008-01-05 23:11:57 +0900778 u32 tmp;
779
780 /* turn on AHCI_EN */
781 tmp = readl(mmio + HOST_CTL);
Tejun Heo15fe9822008-04-23 20:52:58 +0900782 if (tmp & HOST_AHCI_EN)
783 return;
784
785 /* Some controllers need AHCI_EN to be written multiple times.
786 * Try a few times before giving up.
787 */
788 for (i = 0; i < 5; i++) {
Tejun Heob710a1f2008-01-05 23:11:57 +0900789 tmp |= HOST_AHCI_EN;
790 writel(tmp, mmio + HOST_CTL);
791 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
Tejun Heo15fe9822008-04-23 20:52:58 +0900792 if (tmp & HOST_AHCI_EN)
793 return;
794 msleep(10);
Tejun Heob710a1f2008-01-05 23:11:57 +0900795 }
Tejun Heo15fe9822008-04-23 20:52:58 +0900796
797 WARN_ON(1);
Tejun Heob710a1f2008-01-05 23:11:57 +0900798}
799
Matthew Garrett77cdec12009-07-17 19:13:47 +0100800static ssize_t ahci_show_host_caps(struct device *dev,
801 struct device_attribute *attr, char *buf)
802{
803 struct Scsi_Host *shost = class_to_shost(dev);
804 struct ata_port *ap = ata_shost_to_port(shost);
805 struct ahci_host_priv *hpriv = ap->host->private_data;
806
807 return sprintf(buf, "%x\n", hpriv->cap);
808}
809
Robert Hancock4c521c82009-09-20 17:02:31 -0600810static ssize_t ahci_show_host_cap2(struct device *dev,
811 struct device_attribute *attr, char *buf)
812{
813 struct Scsi_Host *shost = class_to_shost(dev);
814 struct ata_port *ap = ata_shost_to_port(shost);
815 struct ahci_host_priv *hpriv = ap->host->private_data;
816
817 return sprintf(buf, "%x\n", hpriv->cap2);
818}
819
Matthew Garrett77cdec12009-07-17 19:13:47 +0100820static ssize_t ahci_show_host_version(struct device *dev,
821 struct device_attribute *attr, char *buf)
822{
823 struct Scsi_Host *shost = class_to_shost(dev);
824 struct ata_port *ap = ata_shost_to_port(shost);
Anton Vorontsovd8993342010-03-03 20:17:34 +0300825 struct ahci_host_priv *hpriv = ap->host->private_data;
826 void __iomem *mmio = hpriv->mmio;
Matthew Garrett77cdec12009-07-17 19:13:47 +0100827
828 return sprintf(buf, "%x\n", readl(mmio + HOST_VERSION));
829}
830
831static ssize_t ahci_show_port_cmd(struct device *dev,
832 struct device_attribute *attr, char *buf)
833{
834 struct Scsi_Host *shost = class_to_shost(dev);
835 struct ata_port *ap = ata_shost_to_port(shost);
836 void __iomem *port_mmio = ahci_port_base(ap);
837
838 return sprintf(buf, "%x\n", readl(port_mmio + PORT_CMD));
839}
840
Tejun Heod447df12007-03-18 22:15:33 +0900841/**
842 * ahci_save_initial_config - Save and fixup initial config values
Anton Vorontsov1d513352010-03-03 20:17:37 +0300843 * @dev: target AHCI device
Tejun Heo4447d352007-04-17 23:44:08 +0900844 * @hpriv: host private area to store config values
Anton Vorontsov394d6e52010-03-03 20:17:36 +0300845 * @force_port_map: force port map to a specified value
846 * @mask_port_map: mask out particular bits from port map
Tejun Heod447df12007-03-18 22:15:33 +0900847 *
848 * Some registers containing configuration info might be setup by
849 * BIOS and might be cleared on reset. This function saves the
850 * initial values of those registers into @hpriv such that they
851 * can be restored after controller reset.
852 *
853 * If inconsistent, config values are fixed up by this function.
854 *
855 * LOCKING:
856 * None.
857 */
Anton Vorontsov1d513352010-03-03 20:17:37 +0300858static void ahci_save_initial_config(struct device *dev,
Anton Vorontsov394d6e52010-03-03 20:17:36 +0300859 struct ahci_host_priv *hpriv,
860 unsigned int force_port_map,
861 unsigned int mask_port_map)
Tejun Heod447df12007-03-18 22:15:33 +0900862{
Anton Vorontsovd8993342010-03-03 20:17:34 +0300863 void __iomem *mmio = hpriv->mmio;
Robert Hancock4c521c82009-09-20 17:02:31 -0600864 u32 cap, cap2, vers, port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900865 int i;
Tejun Heod447df12007-03-18 22:15:33 +0900866
Tejun Heob710a1f2008-01-05 23:11:57 +0900867 /* make sure AHCI mode is enabled before accessing CAP */
868 ahci_enable_ahci(mmio);
869
Tejun Heod447df12007-03-18 22:15:33 +0900870 /* Values prefixed with saved_ are written back to host after
871 * reset. Values without are used for driver operation.
872 */
873 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
874 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
875
Robert Hancock4c521c82009-09-20 17:02:31 -0600876 /* CAP2 register is only defined for AHCI 1.2 and later */
877 vers = readl(mmio + HOST_VERSION);
878 if ((vers >> 16) > 1 ||
879 ((vers >> 16) == 1 && (vers & 0xFFFF) >= 0x200))
880 hpriv->saved_cap2 = cap2 = readl(mmio + HOST_CAP2);
881 else
882 hpriv->saved_cap2 = cap2 = 0;
883
Tejun Heo274c1fd2007-07-16 14:29:40 +0900884 /* some chips have errata preventing 64bit use */
Tejun Heo417a1a62007-09-23 13:19:55 +0900885 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Anton Vorontsov1d513352010-03-03 20:17:37 +0300886 dev_printk(KERN_INFO, dev,
Tejun Heoc7a42152007-05-18 16:23:19 +0200887 "controller can't do 64bit DMA, forcing 32bit\n");
888 cap &= ~HOST_CAP_64;
889 }
890
Tejun Heo417a1a62007-09-23 13:19:55 +0900891 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Anton Vorontsov1d513352010-03-03 20:17:37 +0300892 dev_printk(KERN_INFO, dev,
Tejun Heo274c1fd2007-07-16 14:29:40 +0900893 "controller can't do NCQ, turning off CAP_NCQ\n");
894 cap &= ~HOST_CAP_NCQ;
895 }
896
Tejun Heoe297d992008-06-10 00:13:04 +0900897 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
Anton Vorontsov1d513352010-03-03 20:17:37 +0300898 dev_printk(KERN_INFO, dev,
Tejun Heoe297d992008-06-10 00:13:04 +0900899 "controller can do NCQ, turning on CAP_NCQ\n");
900 cap |= HOST_CAP_NCQ;
901 }
902
Roel Kluin258cd842008-03-09 21:42:40 +0100903 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Anton Vorontsov1d513352010-03-03 20:17:37 +0300904 dev_printk(KERN_INFO, dev,
Tejun Heo6949b912007-09-23 13:19:55 +0900905 "controller can't do PMP, turning off CAP_PMP\n");
906 cap &= ~HOST_CAP_PMP;
907 }
908
Shaohua Li1b677af2009-11-16 09:56:05 +0800909 if ((cap & HOST_CAP_SNTF) && (hpriv->flags & AHCI_HFLAG_NO_SNTF)) {
Anton Vorontsov1d513352010-03-03 20:17:37 +0300910 dev_printk(KERN_INFO, dev,
Shaohua Li1b677af2009-11-16 09:56:05 +0800911 "controller can't do SNTF, turning off CAP_SNTF\n");
912 cap &= ~HOST_CAP_SNTF;
913 }
914
Anton Vorontsov394d6e52010-03-03 20:17:36 +0300915 if (force_port_map && port_map != force_port_map) {
Anton Vorontsov1d513352010-03-03 20:17:37 +0300916 dev_printk(KERN_INFO, dev, "forcing port_map 0x%x -> 0x%x\n",
Anton Vorontsov394d6e52010-03-03 20:17:36 +0300917 port_map, force_port_map);
918 port_map = force_port_map;
Tejun Heod799e082008-06-17 12:46:30 +0900919 }
920
Anton Vorontsov394d6e52010-03-03 20:17:36 +0300921 if (mask_port_map) {
Anton Vorontsov1d513352010-03-03 20:17:37 +0300922 dev_printk(KERN_ERR, dev, "masking port_map 0x%x -> 0x%x\n",
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100923 port_map,
Anton Vorontsov394d6e52010-03-03 20:17:36 +0300924 port_map & mask_port_map);
925 port_map &= mask_port_map;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400926 }
927
Tejun Heo17199b12007-03-18 22:26:53 +0900928 /* cross check port_map and cap.n_ports */
Tejun Heo7a234af2007-09-03 12:44:57 +0900929 if (port_map) {
Tejun Heo837f5f82008-02-06 15:13:51 +0900930 int map_ports = 0;
Tejun Heo17199b12007-03-18 22:26:53 +0900931
Tejun Heo837f5f82008-02-06 15:13:51 +0900932 for (i = 0; i < AHCI_MAX_PORTS; i++)
933 if (port_map & (1 << i))
934 map_ports++;
Tejun Heo17199b12007-03-18 22:26:53 +0900935
Tejun Heo837f5f82008-02-06 15:13:51 +0900936 /* If PI has more ports than n_ports, whine, clear
937 * port_map and let it be generated from n_ports.
Tejun Heo17199b12007-03-18 22:26:53 +0900938 */
Tejun Heo837f5f82008-02-06 15:13:51 +0900939 if (map_ports > ahci_nr_ports(cap)) {
Anton Vorontsov1d513352010-03-03 20:17:37 +0300940 dev_printk(KERN_WARNING, dev,
Tejun Heo837f5f82008-02-06 15:13:51 +0900941 "implemented port map (0x%x) contains more "
942 "ports than nr_ports (%u), using nr_ports\n",
943 port_map, ahci_nr_ports(cap));
Tejun Heo7a234af2007-09-03 12:44:57 +0900944 port_map = 0;
945 }
946 }
947
948 /* fabricate port_map from cap.nr_ports */
949 if (!port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900950 port_map = (1 << ahci_nr_ports(cap)) - 1;
Anton Vorontsov1d513352010-03-03 20:17:37 +0300951 dev_printk(KERN_WARNING, dev,
Tejun Heo7a234af2007-09-03 12:44:57 +0900952 "forcing PORTS_IMPL to 0x%x\n", port_map);
953
954 /* write the fixed up value to the PI register */
955 hpriv->saved_port_map = port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900956 }
957
Tejun Heod447df12007-03-18 22:15:33 +0900958 /* record values to use during operation */
959 hpriv->cap = cap;
Robert Hancock4c521c82009-09-20 17:02:31 -0600960 hpriv->cap2 = cap2;
Tejun Heod447df12007-03-18 22:15:33 +0900961 hpriv->port_map = port_map;
962}
963
Anton Vorontsov394d6e52010-03-03 20:17:36 +0300964static void ahci_pci_save_initial_config(struct pci_dev *pdev,
965 struct ahci_host_priv *hpriv)
966{
967 unsigned int force_port_map = 0;
968 unsigned int mask_port_map = 0;
969
970 if (pdev->vendor == PCI_VENDOR_ID_JMICRON && pdev->device == 0x2361) {
971 dev_info(&pdev->dev, "JMB361 has only one port\n");
972 force_port_map = 1;
973 }
974
975 /*
976 * Temporary Marvell 6145 hack: PATA port presence
977 * is asserted through the standard AHCI port
978 * presence register, as bit 4 (counting from 0)
979 */
980 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
981 if (pdev->device == 0x6121)
982 mask_port_map = 0x3;
983 else
984 mask_port_map = 0xf;
985 dev_info(&pdev->dev,
986 "Disabling your PATA port. Use the boot option 'ahci.marvell_enable=0' to avoid this.\n");
987 }
988
Anton Vorontsov1d513352010-03-03 20:17:37 +0300989 ahci_save_initial_config(&pdev->dev, hpriv, force_port_map,
990 mask_port_map);
Anton Vorontsov394d6e52010-03-03 20:17:36 +0300991}
992
Tejun Heod447df12007-03-18 22:15:33 +0900993/**
994 * ahci_restore_initial_config - Restore initial config
Tejun Heo4447d352007-04-17 23:44:08 +0900995 * @host: target ATA host
Tejun Heod447df12007-03-18 22:15:33 +0900996 *
997 * Restore initial config stored by ahci_save_initial_config().
998 *
999 * LOCKING:
1000 * None.
1001 */
Tejun Heo4447d352007-04-17 23:44:08 +09001002static void ahci_restore_initial_config(struct ata_host *host)
Tejun Heod447df12007-03-18 22:15:33 +09001003{
Tejun Heo4447d352007-04-17 23:44:08 +09001004 struct ahci_host_priv *hpriv = host->private_data;
Anton Vorontsovd8993342010-03-03 20:17:34 +03001005 void __iomem *mmio = hpriv->mmio;
Tejun Heo4447d352007-04-17 23:44:08 +09001006
Tejun Heod447df12007-03-18 22:15:33 +09001007 writel(hpriv->saved_cap, mmio + HOST_CAP);
Robert Hancock4c521c82009-09-20 17:02:31 -06001008 if (hpriv->saved_cap2)
1009 writel(hpriv->saved_cap2, mmio + HOST_CAP2);
Tejun Heod447df12007-03-18 22:15:33 +09001010 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
1011 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
1012}
1013
Tejun Heo203ef6c2007-07-16 14:29:40 +09001014static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
Tejun Heo203ef6c2007-07-16 14:29:40 +09001016 static const int offset[] = {
1017 [SCR_STATUS] = PORT_SCR_STAT,
1018 [SCR_CONTROL] = PORT_SCR_CTL,
1019 [SCR_ERROR] = PORT_SCR_ERR,
1020 [SCR_ACTIVE] = PORT_SCR_ACT,
1021 [SCR_NOTIFICATION] = PORT_SCR_NTF,
1022 };
1023 struct ahci_host_priv *hpriv = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Tejun Heo203ef6c2007-07-16 14:29:40 +09001025 if (sc_reg < ARRAY_SIZE(offset) &&
1026 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
1027 return offset[sc_reg];
Tejun Heoda3dbb12007-07-16 14:29:40 +09001028 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Tejun Heo82ef04f2008-07-31 17:02:40 +09001031static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Tejun Heo82ef04f2008-07-31 17:02:40 +09001033 void __iomem *port_mmio = ahci_port_base(link->ap);
1034 int offset = ahci_scr_offset(link->ap, sc_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Tejun Heo203ef6c2007-07-16 14:29:40 +09001036 if (offset) {
1037 *val = readl(port_mmio + offset);
1038 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
Tejun Heo203ef6c2007-07-16 14:29:40 +09001040 return -EINVAL;
1041}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Tejun Heo82ef04f2008-07-31 17:02:40 +09001043static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
Tejun Heo203ef6c2007-07-16 14:29:40 +09001044{
Tejun Heo82ef04f2008-07-31 17:02:40 +09001045 void __iomem *port_mmio = ahci_port_base(link->ap);
1046 int offset = ahci_scr_offset(link->ap, sc_reg);
Tejun Heo203ef6c2007-07-16 14:29:40 +09001047
1048 if (offset) {
1049 writel(val, port_mmio + offset);
1050 return 0;
1051 }
1052 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
Tejun Heo4447d352007-04-17 23:44:08 +09001055static void ahci_start_engine(struct ata_port *ap)
Tejun Heo7c76d1e2005-12-19 22:36:34 +09001056{
Tejun Heo4447d352007-04-17 23:44:08 +09001057 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7c76d1e2005-12-19 22:36:34 +09001058 u32 tmp;
1059
Tejun Heod8fcd112006-07-26 15:59:25 +09001060 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +09001061 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +09001062 tmp |= PORT_CMD_START;
1063 writel(tmp, port_mmio + PORT_CMD);
1064 readl(port_mmio + PORT_CMD); /* flush */
1065}
1066
Tejun Heo4447d352007-04-17 23:44:08 +09001067static int ahci_stop_engine(struct ata_port *ap)
Tejun Heo254950c2006-07-26 15:59:25 +09001068{
Tejun Heo4447d352007-04-17 23:44:08 +09001069 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09001070 u32 tmp;
1071
1072 tmp = readl(port_mmio + PORT_CMD);
1073
Tejun Heod8fcd112006-07-26 15:59:25 +09001074 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +09001075 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
1076 return 0;
1077
Tejun Heod8fcd112006-07-26 15:59:25 +09001078 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +09001079 tmp &= ~PORT_CMD_START;
1080 writel(tmp, port_mmio + PORT_CMD);
1081
Tejun Heod8fcd112006-07-26 15:59:25 +09001082 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +09001083 tmp = ata_wait_register(port_mmio + PORT_CMD,
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001084 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +09001085 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +09001086 return -EIO;
1087
1088 return 0;
1089}
1090
Tejun Heo4447d352007-04-17 23:44:08 +09001091static void ahci_start_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001092{
Tejun Heo4447d352007-04-17 23:44:08 +09001093 void __iomem *port_mmio = ahci_port_base(ap);
1094 struct ahci_host_priv *hpriv = ap->host->private_data;
1095 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo0be0aa92006-07-26 15:59:26 +09001096 u32 tmp;
1097
1098 /* set FIS registers */
Tejun Heo4447d352007-04-17 23:44:08 +09001099 if (hpriv->cap & HOST_CAP_64)
1100 writel((pp->cmd_slot_dma >> 16) >> 16,
1101 port_mmio + PORT_LST_ADDR_HI);
1102 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001103
Tejun Heo4447d352007-04-17 23:44:08 +09001104 if (hpriv->cap & HOST_CAP_64)
1105 writel((pp->rx_fis_dma >> 16) >> 16,
1106 port_mmio + PORT_FIS_ADDR_HI);
1107 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001108
1109 /* enable FIS reception */
1110 tmp = readl(port_mmio + PORT_CMD);
1111 tmp |= PORT_CMD_FIS_RX;
1112 writel(tmp, port_mmio + PORT_CMD);
1113
1114 /* flush */
1115 readl(port_mmio + PORT_CMD);
1116}
1117
Tejun Heo4447d352007-04-17 23:44:08 +09001118static int ahci_stop_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001119{
Tejun Heo4447d352007-04-17 23:44:08 +09001120 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001121 u32 tmp;
1122
1123 /* disable FIS reception */
1124 tmp = readl(port_mmio + PORT_CMD);
1125 tmp &= ~PORT_CMD_FIS_RX;
1126 writel(tmp, port_mmio + PORT_CMD);
1127
1128 /* wait for completion, spec says 500ms, give it 1000 */
1129 tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
1130 PORT_CMD_FIS_ON, 10, 1000);
1131 if (tmp & PORT_CMD_FIS_ON)
1132 return -EBUSY;
1133
1134 return 0;
1135}
1136
Tejun Heo4447d352007-04-17 23:44:08 +09001137static void ahci_power_up(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001138{
Tejun Heo4447d352007-04-17 23:44:08 +09001139 struct ahci_host_priv *hpriv = ap->host->private_data;
1140 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001141 u32 cmd;
1142
1143 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
1144
1145 /* spin up device */
Tejun Heo4447d352007-04-17 23:44:08 +09001146 if (hpriv->cap & HOST_CAP_SSS) {
Tejun Heo0be0aa92006-07-26 15:59:26 +09001147 cmd |= PORT_CMD_SPIN_UP;
1148 writel(cmd, port_mmio + PORT_CMD);
1149 }
1150
1151 /* wake up link */
1152 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
1153}
1154
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001155static void ahci_disable_alpm(struct ata_port *ap)
1156{
1157 struct ahci_host_priv *hpriv = ap->host->private_data;
1158 void __iomem *port_mmio = ahci_port_base(ap);
1159 u32 cmd;
1160 struct ahci_port_priv *pp = ap->private_data;
1161
1162 /* IPM bits should be disabled by libata-core */
1163 /* get the existing command bits */
1164 cmd = readl(port_mmio + PORT_CMD);
1165
1166 /* disable ALPM and ASP */
1167 cmd &= ~PORT_CMD_ASP;
1168 cmd &= ~PORT_CMD_ALPE;
1169
1170 /* force the interface back to active */
1171 cmd |= PORT_CMD_ICC_ACTIVE;
1172
1173 /* write out new cmd value */
1174 writel(cmd, port_mmio + PORT_CMD);
1175 cmd = readl(port_mmio + PORT_CMD);
1176
1177 /* wait 10ms to be sure we've come out of any low power state */
1178 msleep(10);
1179
1180 /* clear out any PhyRdy stuff from interrupt status */
1181 writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT);
1182
1183 /* go ahead and clean out PhyRdy Change from Serror too */
Tejun Heo82ef04f2008-07-31 17:02:40 +09001184 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001185
1186 /*
1187 * Clear flag to indicate that we should ignore all PhyRdy
1188 * state changes
1189 */
1190 hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG;
1191
1192 /*
1193 * Enable interrupts on Phy Ready.
1194 */
1195 pp->intr_mask |= PORT_IRQ_PHYRDY;
1196 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1197
1198 /*
1199 * don't change the link pm policy - we can be called
1200 * just to turn of link pm temporarily
1201 */
1202}
1203
1204static int ahci_enable_alpm(struct ata_port *ap,
1205 enum link_pm policy)
1206{
1207 struct ahci_host_priv *hpriv = ap->host->private_data;
1208 void __iomem *port_mmio = ahci_port_base(ap);
1209 u32 cmd;
1210 struct ahci_port_priv *pp = ap->private_data;
1211 u32 asp;
1212
1213 /* Make sure the host is capable of link power management */
1214 if (!(hpriv->cap & HOST_CAP_ALPM))
1215 return -EINVAL;
1216
1217 switch (policy) {
1218 case MAX_PERFORMANCE:
1219 case NOT_AVAILABLE:
1220 /*
1221 * if we came here with NOT_AVAILABLE,
1222 * it just means this is the first time we
1223 * have tried to enable - default to max performance,
1224 * and let the user go to lower power modes on request.
1225 */
1226 ahci_disable_alpm(ap);
1227 return 0;
1228 case MIN_POWER:
1229 /* configure HBA to enter SLUMBER */
1230 asp = PORT_CMD_ASP;
1231 break;
1232 case MEDIUM_POWER:
1233 /* configure HBA to enter PARTIAL */
1234 asp = 0;
1235 break;
1236 default:
1237 return -EINVAL;
1238 }
1239
1240 /*
1241 * Disable interrupts on Phy Ready. This keeps us from
1242 * getting woken up due to spurious phy ready interrupts
1243 * TBD - Hot plug should be done via polling now, is
1244 * that even supported?
1245 */
1246 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
1247 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1248
1249 /*
1250 * Set a flag to indicate that we should ignore all PhyRdy
1251 * state changes since these can happen now whenever we
1252 * change link state
1253 */
1254 hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG;
1255
1256 /* get the existing command bits */
1257 cmd = readl(port_mmio + PORT_CMD);
1258
1259 /*
1260 * Set ASP based on Policy
1261 */
1262 cmd |= asp;
1263
1264 /*
1265 * Setting this bit will instruct the HBA to aggressively
1266 * enter a lower power link state when it's appropriate and
1267 * based on the value set above for ASP
1268 */
1269 cmd |= PORT_CMD_ALPE;
1270
1271 /* write out new cmd value */
1272 writel(cmd, port_mmio + PORT_CMD);
1273 cmd = readl(port_mmio + PORT_CMD);
1274
1275 /* IPM bits should be set by libata-core */
1276 return 0;
1277}
1278
Tejun Heo438ac6d2007-03-02 17:31:26 +09001279#ifdef CONFIG_PM
Tejun Heo4447d352007-04-17 23:44:08 +09001280static void ahci_power_down(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001281{
Tejun Heo4447d352007-04-17 23:44:08 +09001282 struct ahci_host_priv *hpriv = ap->host->private_data;
1283 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001284 u32 cmd, scontrol;
1285
Tejun Heo4447d352007-04-17 23:44:08 +09001286 if (!(hpriv->cap & HOST_CAP_SSS))
Tejun Heo07c53da2007-01-21 02:10:11 +09001287 return;
1288
1289 /* put device into listen mode, first set PxSCTL.DET to 0 */
1290 scontrol = readl(port_mmio + PORT_SCR_CTL);
1291 scontrol &= ~0xf;
1292 writel(scontrol, port_mmio + PORT_SCR_CTL);
1293
1294 /* then set PxCMD.SUD to 0 */
Tejun Heo0be0aa92006-07-26 15:59:26 +09001295 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
Tejun Heo07c53da2007-01-21 02:10:11 +09001296 cmd &= ~PORT_CMD_SPIN_UP;
1297 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001298}
Tejun Heo438ac6d2007-03-02 17:31:26 +09001299#endif
Tejun Heo0be0aa92006-07-26 15:59:26 +09001300
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001301static void ahci_start_port(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001302{
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001303 struct ahci_port_priv *pp = ap->private_data;
1304 struct ata_link *link;
1305 struct ahci_em_priv *emp;
David Milburn4c1e9aa2009-04-03 15:36:41 -05001306 ssize_t rc;
1307 int i;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001308
Tejun Heo0be0aa92006-07-26 15:59:26 +09001309 /* enable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001310 ahci_start_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001311
1312 /* enable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001313 ahci_start_engine(ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001314
1315 /* turn on LEDs */
1316 if (ap->flags & ATA_FLAG_EM) {
Tejun Heo1eca4362008-11-03 20:03:17 +09001317 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001318 emp = &pp->em_priv[link->pmp];
David Milburn4c1e9aa2009-04-03 15:36:41 -05001319
1320 /* EM Transmit bit maybe busy during init */
Tejun Heod50ce072009-05-12 10:57:41 +09001321 for (i = 0; i < EM_MAX_RETRY; i++) {
David Milburn4c1e9aa2009-04-03 15:36:41 -05001322 rc = ahci_transmit_led_message(ap,
1323 emp->led_state,
1324 4);
1325 if (rc == -EBUSY)
Tejun Heod50ce072009-05-12 10:57:41 +09001326 msleep(1);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001327 else
1328 break;
1329 }
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001330 }
1331 }
1332
1333 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
Tejun Heo1eca4362008-11-03 20:03:17 +09001334 ata_for_each_link(link, ap, EDGE)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001335 ahci_init_sw_activity(link);
1336
Tejun Heo0be0aa92006-07-26 15:59:26 +09001337}
1338
Tejun Heo4447d352007-04-17 23:44:08 +09001339static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001340{
1341 int rc;
1342
1343 /* disable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001344 rc = ahci_stop_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001345 if (rc) {
1346 *emsg = "failed to stop engine";
1347 return rc;
1348 }
1349
1350 /* disable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001351 rc = ahci_stop_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001352 if (rc) {
1353 *emsg = "failed stop FIS RX";
1354 return rc;
1355 }
1356
Tejun Heo0be0aa92006-07-26 15:59:26 +09001357 return 0;
1358}
1359
Tejun Heo4447d352007-04-17 23:44:08 +09001360static int ahci_reset_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001361{
Tejun Heo49f29092007-11-19 16:03:44 +09001362 struct ahci_host_priv *hpriv = host->private_data;
Anton Vorontsovd8993342010-03-03 20:17:34 +03001363 void __iomem *mmio = hpriv->mmio;
Tejun Heod447df12007-03-18 22:15:33 +09001364 u32 tmp;
Tejun Heod91542c2006-07-26 15:59:26 +09001365
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001366 /* we must be in AHCI mode, before using anything
1367 * AHCI-specific, such as HOST_RESET.
1368 */
Tejun Heob710a1f2008-01-05 23:11:57 +09001369 ahci_enable_ahci(mmio);
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001370
1371 /* global controller reset */
Tejun Heoa22e6442008-03-10 10:25:25 +09001372 if (!ahci_skip_host_reset) {
1373 tmp = readl(mmio + HOST_CTL);
1374 if ((tmp & HOST_RESET) == 0) {
1375 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1376 readl(mmio + HOST_CTL); /* flush */
1377 }
Tejun Heod91542c2006-07-26 15:59:26 +09001378
Zhang Rui24920c82008-07-04 13:32:17 +08001379 /*
1380 * to perform host reset, OS should set HOST_RESET
1381 * and poll until this bit is read to be "0".
1382 * reset must complete within 1 second, or
Tejun Heoa22e6442008-03-10 10:25:25 +09001383 * the hardware should be considered fried.
1384 */
Zhang Rui24920c82008-07-04 13:32:17 +08001385 tmp = ata_wait_register(mmio + HOST_CTL, HOST_RESET,
1386 HOST_RESET, 10, 1000);
Tejun Heod91542c2006-07-26 15:59:26 +09001387
Tejun Heoa22e6442008-03-10 10:25:25 +09001388 if (tmp & HOST_RESET) {
1389 dev_printk(KERN_ERR, host->dev,
1390 "controller reset failed (0x%x)\n", tmp);
1391 return -EIO;
1392 }
Tejun Heod91542c2006-07-26 15:59:26 +09001393
Tejun Heoa22e6442008-03-10 10:25:25 +09001394 /* turn on AHCI mode */
1395 ahci_enable_ahci(mmio);
Tejun Heo98fa4b62006-11-02 12:17:23 +09001396
Tejun Heoa22e6442008-03-10 10:25:25 +09001397 /* Some registers might be cleared on reset. Restore
1398 * initial values.
1399 */
1400 ahci_restore_initial_config(host);
1401 } else
1402 dev_printk(KERN_INFO, host->dev,
1403 "skipping global host reset\n");
Tejun Heod91542c2006-07-26 15:59:26 +09001404
Anton Vorontsov33030402010-03-03 20:17:39 +03001405 return 0;
1406}
1407
1408static int ahci_pci_reset_controller(struct ata_host *host)
1409{
1410 struct pci_dev *pdev = to_pci_dev(host->dev);
1411
1412 ahci_reset_controller(host);
1413
Tejun Heod91542c2006-07-26 15:59:26 +09001414 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
Anton Vorontsov33030402010-03-03 20:17:39 +03001415 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heod91542c2006-07-26 15:59:26 +09001416 u16 tmp16;
1417
1418 /* configure PCS */
1419 pci_read_config_word(pdev, 0x92, &tmp16);
Tejun Heo49f29092007-11-19 16:03:44 +09001420 if ((tmp16 & hpriv->port_map) != hpriv->port_map) {
1421 tmp16 |= hpriv->port_map;
1422 pci_write_config_word(pdev, 0x92, tmp16);
1423 }
Tejun Heod91542c2006-07-26 15:59:26 +09001424 }
1425
1426 return 0;
1427}
1428
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001429static void ahci_sw_activity(struct ata_link *link)
1430{
1431 struct ata_port *ap = link->ap;
1432 struct ahci_port_priv *pp = ap->private_data;
1433 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1434
1435 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
1436 return;
1437
1438 emp->activity++;
1439 if (!timer_pending(&emp->timer))
1440 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
1441}
1442
1443static void ahci_sw_activity_blink(unsigned long arg)
1444{
1445 struct ata_link *link = (struct ata_link *)arg;
1446 struct ata_port *ap = link->ap;
1447 struct ahci_port_priv *pp = ap->private_data;
1448 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1449 unsigned long led_message = emp->led_state;
1450 u32 activity_led_state;
David Milburneb409632008-10-16 09:26:19 -05001451 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001452
David Milburn87943ac2008-10-13 14:38:36 -05001453 led_message &= EM_MSG_LED_VALUE;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001454 led_message |= ap->port_no | (link->pmp << 8);
1455
1456 /* check to see if we've had activity. If so,
1457 * toggle state of LED and reset timer. If not,
1458 * turn LED to desired idle state.
1459 */
David Milburneb409632008-10-16 09:26:19 -05001460 spin_lock_irqsave(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001461 if (emp->saved_activity != emp->activity) {
1462 emp->saved_activity = emp->activity;
1463 /* get the current LED state */
David Milburn87943ac2008-10-13 14:38:36 -05001464 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001465
1466 if (activity_led_state)
1467 activity_led_state = 0;
1468 else
1469 activity_led_state = 1;
1470
1471 /* clear old state */
David Milburn87943ac2008-10-13 14:38:36 -05001472 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001473
1474 /* toggle state */
1475 led_message |= (activity_led_state << 16);
1476 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
1477 } else {
1478 /* switch to idle */
David Milburn87943ac2008-10-13 14:38:36 -05001479 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001480 if (emp->blink_policy == BLINK_OFF)
1481 led_message |= (1 << 16);
1482 }
David Milburneb409632008-10-16 09:26:19 -05001483 spin_unlock_irqrestore(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001484 ahci_transmit_led_message(ap, led_message, 4);
1485}
1486
1487static void ahci_init_sw_activity(struct ata_link *link)
1488{
1489 struct ata_port *ap = link->ap;
1490 struct ahci_port_priv *pp = ap->private_data;
1491 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1492
1493 /* init activity stats, setup timer */
1494 emp->saved_activity = emp->activity = 0;
1495 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
1496
1497 /* check our blink policy and set flag for link if it's enabled */
1498 if (emp->blink_policy)
1499 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1500}
1501
1502static int ahci_reset_em(struct ata_host *host)
1503{
Anton Vorontsovd8993342010-03-03 20:17:34 +03001504 struct ahci_host_priv *hpriv = host->private_data;
1505 void __iomem *mmio = hpriv->mmio;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001506 u32 em_ctl;
1507
1508 em_ctl = readl(mmio + HOST_EM_CTL);
1509 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1510 return -EINVAL;
1511
1512 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1513 return 0;
1514}
1515
1516static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1517 ssize_t size)
1518{
1519 struct ahci_host_priv *hpriv = ap->host->private_data;
1520 struct ahci_port_priv *pp = ap->private_data;
Anton Vorontsovd8993342010-03-03 20:17:34 +03001521 void __iomem *mmio = hpriv->mmio;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001522 u32 em_ctl;
1523 u32 message[] = {0, 0};
Linus Torvalds93082f02008-07-25 10:56:36 -07001524 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001525 int pmp;
1526 struct ahci_em_priv *emp;
1527
1528 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001529 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001530 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001531 emp = &pp->em_priv[pmp];
1532 else
1533 return -EINVAL;
1534
1535 spin_lock_irqsave(ap->lock, flags);
1536
1537 /*
1538 * if we are still busy transmitting a previous message,
1539 * do not allow
1540 */
1541 em_ctl = readl(mmio + HOST_EM_CTL);
1542 if (em_ctl & EM_CTL_TM) {
1543 spin_unlock_irqrestore(ap->lock, flags);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001544 return -EBUSY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001545 }
1546
1547 /*
1548 * create message header - this is all zero except for
1549 * the message size, which is 4 bytes.
1550 */
1551 message[0] |= (4 << 8);
1552
1553 /* ignore 0:4 of byte zero, fill in port info yourself */
David Milburn87943ac2008-10-13 14:38:36 -05001554 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001555
1556 /* write message to EM_LOC */
1557 writel(message[0], mmio + hpriv->em_loc);
1558 writel(message[1], mmio + hpriv->em_loc+4);
1559
1560 /* save off new led state for port/slot */
David Milburn208f2a82009-03-20 14:14:23 -05001561 emp->led_state = state;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001562
1563 /*
1564 * tell hardware to transmit the message
1565 */
1566 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1567
1568 spin_unlock_irqrestore(ap->lock, flags);
1569 return size;
1570}
1571
1572static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1573{
1574 struct ahci_port_priv *pp = ap->private_data;
1575 struct ata_link *link;
1576 struct ahci_em_priv *emp;
1577 int rc = 0;
1578
Tejun Heo1eca4362008-11-03 20:03:17 +09001579 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001580 emp = &pp->em_priv[link->pmp];
1581 rc += sprintf(buf, "%lx\n", emp->led_state);
1582 }
1583 return rc;
1584}
1585
1586static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1587 size_t size)
1588{
1589 int state;
1590 int pmp;
1591 struct ahci_port_priv *pp = ap->private_data;
1592 struct ahci_em_priv *emp;
1593
1594 state = simple_strtoul(buf, NULL, 0);
1595
1596 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001597 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001598 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001599 emp = &pp->em_priv[pmp];
1600 else
1601 return -EINVAL;
1602
1603 /* mask off the activity bits if we are in sw_activity
1604 * mode, user should turn off sw_activity before setting
1605 * activity led through em_message
1606 */
1607 if (emp->blink_policy)
David Milburn87943ac2008-10-13 14:38:36 -05001608 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001609
1610 return ahci_transmit_led_message(ap, state, size);
1611}
1612
1613static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1614{
1615 struct ata_link *link = dev->link;
1616 struct ata_port *ap = link->ap;
1617 struct ahci_port_priv *pp = ap->private_data;
1618 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1619 u32 port_led_state = emp->led_state;
1620
1621 /* save the desired Activity LED behavior */
1622 if (val == OFF) {
1623 /* clear LFLAG */
1624 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1625
1626 /* set the LED to OFF */
David Milburn87943ac2008-10-13 14:38:36 -05001627 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001628 port_led_state |= (ap->port_no | (link->pmp << 8));
1629 ahci_transmit_led_message(ap, port_led_state, 4);
1630 } else {
1631 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1632 if (val == BLINK_OFF) {
1633 /* set LED to ON for idle */
David Milburn87943ac2008-10-13 14:38:36 -05001634 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001635 port_led_state |= (ap->port_no | (link->pmp << 8));
David Milburn87943ac2008-10-13 14:38:36 -05001636 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001637 ahci_transmit_led_message(ap, port_led_state, 4);
1638 }
1639 }
1640 emp->blink_policy = val;
1641 return 0;
1642}
1643
1644static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1645{
1646 struct ata_link *link = dev->link;
1647 struct ata_port *ap = link->ap;
1648 struct ahci_port_priv *pp = ap->private_data;
1649 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1650
1651 /* display the saved value of activity behavior for this
1652 * disk.
1653 */
1654 return sprintf(buf, "%d\n", emp->blink_policy);
1655}
1656
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001657static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap,
1658 int port_no, void __iomem *mmio,
1659 void __iomem *port_mmio)
1660{
1661 const char *emsg = NULL;
1662 int rc;
1663 u32 tmp;
1664
1665 /* make sure port is not active */
1666 rc = ahci_deinit_port(ap, &emsg);
1667 if (rc)
1668 dev_printk(KERN_WARNING, &pdev->dev,
1669 "%s (%d)\n", emsg, rc);
1670
1671 /* clear SError */
1672 tmp = readl(port_mmio + PORT_SCR_ERR);
1673 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1674 writel(tmp, port_mmio + PORT_SCR_ERR);
1675
1676 /* clear port IRQ */
1677 tmp = readl(port_mmio + PORT_IRQ_STAT);
1678 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1679 if (tmp)
1680 writel(tmp, port_mmio + PORT_IRQ_STAT);
1681
1682 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1683}
1684
Tejun Heo4447d352007-04-17 23:44:08 +09001685static void ahci_init_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001686{
Tejun Heo417a1a62007-09-23 13:19:55 +09001687 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001688 struct pci_dev *pdev = to_pci_dev(host->dev);
Anton Vorontsovd8993342010-03-03 20:17:34 +03001689 void __iomem *mmio = hpriv->mmio;
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001690 int i;
Jeff Garzikcd70c262007-07-08 02:29:42 -04001691 void __iomem *port_mmio;
Tejun Heod91542c2006-07-26 15:59:26 +09001692 u32 tmp;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001693 int mv;
Tejun Heod91542c2006-07-26 15:59:26 +09001694
Tejun Heo417a1a62007-09-23 13:19:55 +09001695 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001696 if (pdev->device == 0x6121)
1697 mv = 2;
1698 else
1699 mv = 4;
1700 port_mmio = __ahci_port_base(host, mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -04001701
1702 writel(0, port_mmio + PORT_IRQ_MASK);
1703
1704 /* clear port IRQ */
1705 tmp = readl(port_mmio + PORT_IRQ_STAT);
1706 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1707 if (tmp)
1708 writel(tmp, port_mmio + PORT_IRQ_STAT);
1709 }
1710
Tejun Heo4447d352007-04-17 23:44:08 +09001711 for (i = 0; i < host->n_ports; i++) {
1712 struct ata_port *ap = host->ports[i];
Tejun Heod91542c2006-07-26 15:59:26 +09001713
Jeff Garzikcd70c262007-07-08 02:29:42 -04001714 port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09001715 if (ata_port_is_dummy(ap))
Tejun Heod91542c2006-07-26 15:59:26 +09001716 continue;
Tejun Heod91542c2006-07-26 15:59:26 +09001717
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001718 ahci_port_init(pdev, ap, i, mmio, port_mmio);
Tejun Heod91542c2006-07-26 15:59:26 +09001719 }
1720
1721 tmp = readl(mmio + HOST_CTL);
1722 VPRINTK("HOST_CTL 0x%x\n", tmp);
1723 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1724 tmp = readl(mmio + HOST_CTL);
1725 VPRINTK("HOST_CTL 0x%x\n", tmp);
1726}
1727
Jeff Garzika8785392008-02-28 15:43:48 -05001728static void ahci_dev_config(struct ata_device *dev)
1729{
1730 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1731
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001732 if (hpriv->flags & AHCI_HFLAG_SECT255) {
Jeff Garzika8785392008-02-28 15:43:48 -05001733 dev->max_sectors = 255;
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001734 ata_dev_printk(dev, KERN_INFO,
1735 "SB600 AHCI: limiting to 255 sectors per cmd\n");
1736 }
Jeff Garzika8785392008-02-28 15:43:48 -05001737}
1738
Tejun Heo422b7592005-12-19 22:37:17 +09001739static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
Tejun Heo4447d352007-04-17 23:44:08 +09001741 void __iomem *port_mmio = ahci_port_base(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +09001743 u32 tmp;
1744
1745 tmp = readl(port_mmio + PORT_SIG);
1746 tf.lbah = (tmp >> 24) & 0xff;
1747 tf.lbam = (tmp >> 16) & 0xff;
1748 tf.lbal = (tmp >> 8) & 0xff;
1749 tf.nsect = (tmp) & 0xff;
1750
1751 return ata_dev_classify(&tf);
1752}
1753
Tejun Heo12fad3f2006-05-15 21:03:55 +09001754static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1755 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +09001756{
Tejun Heo12fad3f2006-05-15 21:03:55 +09001757 dma_addr_t cmd_tbl_dma;
1758
1759 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1760
1761 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1762 pp->cmd_slot[tag].status = 0;
1763 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1764 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +09001765}
1766
Shane Huang78d5ae32009-08-07 15:05:52 +08001767static int ahci_kick_engine(struct ata_port *ap)
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001768{
Tejun Heo350756f2008-04-07 22:47:21 +09001769 void __iomem *port_mmio = ahci_port_base(ap);
Jeff Garzikcca39742006-08-24 03:19:22 -04001770 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo520d06f2008-04-07 22:47:21 +09001771 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001772 u32 tmp;
Tejun Heod2e75df2007-07-16 14:29:39 +09001773 int busy, rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001774
Tejun Heod2e75df2007-07-16 14:29:39 +09001775 /* stop engine */
1776 rc = ahci_stop_engine(ap);
1777 if (rc)
1778 goto out_restart;
1779
Shane Huang78d5ae32009-08-07 15:05:52 +08001780 /* need to do CLO?
1781 * always do CLO if PMP is attached (AHCI-1.3 9.2)
1782 */
1783 busy = status & (ATA_BUSY | ATA_DRQ);
1784 if (!busy && !sata_pmp_attached(ap)) {
Tejun Heod2e75df2007-07-16 14:29:39 +09001785 rc = 0;
1786 goto out_restart;
1787 }
1788
1789 if (!(hpriv->cap & HOST_CAP_CLO)) {
1790 rc = -EOPNOTSUPP;
1791 goto out_restart;
1792 }
1793
1794 /* perform CLO */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001795 tmp = readl(port_mmio + PORT_CMD);
1796 tmp |= PORT_CMD_CLO;
1797 writel(tmp, port_mmio + PORT_CMD);
1798
Tejun Heod2e75df2007-07-16 14:29:39 +09001799 rc = 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001800 tmp = ata_wait_register(port_mmio + PORT_CMD,
1801 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1802 if (tmp & PORT_CMD_CLO)
Tejun Heod2e75df2007-07-16 14:29:39 +09001803 rc = -EIO;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001804
Tejun Heod2e75df2007-07-16 14:29:39 +09001805 /* restart engine */
1806 out_restart:
1807 ahci_start_engine(ap);
1808 return rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001809}
1810
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001811static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1812 struct ata_taskfile *tf, int is_cmd, u16 flags,
1813 unsigned long timeout_msec)
1814{
1815 const u32 cmd_fis_len = 5; /* five dwords */
1816 struct ahci_port_priv *pp = ap->private_data;
1817 void __iomem *port_mmio = ahci_port_base(ap);
1818 u8 *fis = pp->cmd_tbl;
1819 u32 tmp;
1820
1821 /* prep the command */
1822 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1823 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1824
1825 /* issue & wait */
1826 writel(1, port_mmio + PORT_CMD_ISSUE);
1827
1828 if (timeout_msec) {
1829 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1,
1830 1, timeout_msec);
1831 if (tmp & 0x1) {
Shane Huang78d5ae32009-08-07 15:05:52 +08001832 ahci_kick_engine(ap);
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001833 return -EBUSY;
1834 }
1835 } else
1836 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1837
1838 return 0;
1839}
1840
Shane Huangbd172432008-06-10 15:52:04 +08001841static int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1842 int pmp, unsigned long deadline,
1843 int (*check_ready)(struct ata_link *link))
Tejun Heo4658f792006-03-22 21:07:03 +09001844{
Tejun Heocc0680a2007-08-06 18:36:23 +09001845 struct ata_port *ap = link->ap;
Tejun Heo55946392009-08-04 14:30:08 +09001846 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo4658f792006-03-22 21:07:03 +09001847 const char *reason = NULL;
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001848 unsigned long now, msecs;
Tejun Heo4658f792006-03-22 21:07:03 +09001849 struct ata_taskfile tf;
Tejun Heo4658f792006-03-22 21:07:03 +09001850 int rc;
1851
1852 DPRINTK("ENTER\n");
1853
1854 /* prepare for SRST (AHCI-1.1 10.4.1) */
Shane Huang78d5ae32009-08-07 15:05:52 +08001855 rc = ahci_kick_engine(ap);
Tejun Heo994056d2007-12-06 15:02:48 +09001856 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09001857 ata_link_printk(link, KERN_WARNING,
Tejun Heo994056d2007-12-06 15:02:48 +09001858 "failed to reset engine (errno=%d)\n", rc);
Tejun Heo4658f792006-03-22 21:07:03 +09001859
Tejun Heocc0680a2007-08-06 18:36:23 +09001860 ata_tf_init(link->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +09001861
1862 /* issue the first D2H Register FIS */
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001863 msecs = 0;
1864 now = jiffies;
1865 if (time_after(now, deadline))
1866 msecs = jiffies_to_msecs(deadline - now);
1867
Tejun Heo4658f792006-03-22 21:07:03 +09001868 tf.ctl |= ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001869 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001870 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
Tejun Heo4658f792006-03-22 21:07:03 +09001871 rc = -EIO;
1872 reason = "1st FIS failed";
1873 goto fail;
1874 }
1875
1876 /* spec says at least 5us, but be generous and sleep for 1ms */
1877 msleep(1);
1878
1879 /* issue the second D2H Register FIS */
Tejun Heo4658f792006-03-22 21:07:03 +09001880 tf.ctl &= ~ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001881 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
Tejun Heo4658f792006-03-22 21:07:03 +09001882
Tejun Heo705e76b2008-04-07 22:47:19 +09001883 /* wait for link to become ready */
Shane Huangbd172432008-06-10 15:52:04 +08001884 rc = ata_wait_after_reset(link, deadline, check_ready);
Tejun Heo55946392009-08-04 14:30:08 +09001885 if (rc == -EBUSY && hpriv->flags & AHCI_HFLAG_SRST_TOUT_IS_OFFLINE) {
1886 /*
1887 * Workaround for cases where link online status can't
1888 * be trusted. Treat device readiness timeout as link
1889 * offline.
1890 */
1891 ata_link_printk(link, KERN_INFO,
1892 "device not ready, treating as offline\n");
1893 *class = ATA_DEV_NONE;
1894 } else if (rc) {
1895 /* link occupied, -ENODEV too is an error */
Tejun Heo9b893912007-02-02 16:50:52 +09001896 reason = "device not ready";
1897 goto fail;
Tejun Heo55946392009-08-04 14:30:08 +09001898 } else
1899 *class = ahci_dev_classify(ap);
Tejun Heo4658f792006-03-22 21:07:03 +09001900
1901 DPRINTK("EXIT, class=%u\n", *class);
1902 return 0;
1903
Tejun Heo4658f792006-03-22 21:07:03 +09001904 fail:
Tejun Heocc0680a2007-08-06 18:36:23 +09001905 ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +09001906 return rc;
1907}
1908
Shane Huangbd172432008-06-10 15:52:04 +08001909static int ahci_check_ready(struct ata_link *link)
1910{
1911 void __iomem *port_mmio = ahci_port_base(link->ap);
1912 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1913
1914 return ata_check_ready(status);
1915}
1916
1917static int ahci_softreset(struct ata_link *link, unsigned int *class,
1918 unsigned long deadline)
1919{
1920 int pmp = sata_srst_pmp(link);
1921
1922 DPRINTK("ENTER\n");
1923
1924 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1925}
1926
1927static int ahci_sb600_check_ready(struct ata_link *link)
1928{
1929 void __iomem *port_mmio = ahci_port_base(link->ap);
1930 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1931 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1932
1933 /*
1934 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1935 * which can save timeout delay.
1936 */
1937 if (irq_status & PORT_IRQ_BAD_PMP)
1938 return -EIO;
1939
1940 return ata_check_ready(status);
1941}
1942
1943static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
1944 unsigned long deadline)
1945{
1946 struct ata_port *ap = link->ap;
1947 void __iomem *port_mmio = ahci_port_base(ap);
1948 int pmp = sata_srst_pmp(link);
1949 int rc;
1950 u32 irq_sts;
1951
1952 DPRINTK("ENTER\n");
1953
1954 rc = ahci_do_softreset(link, class, pmp, deadline,
1955 ahci_sb600_check_ready);
1956
1957 /*
1958 * Soft reset fails on some ATI chips with IPMS set when PMP
1959 * is enabled but SATA HDD/ODD is connected to SATA port,
1960 * do soft reset again to port 0.
1961 */
1962 if (rc == -EIO) {
1963 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1964 if (irq_sts & PORT_IRQ_BAD_PMP) {
1965 ata_link_printk(link, KERN_WARNING,
Shane Huangb6931c12009-08-05 10:10:41 +08001966 "applying SB600 PMP SRST workaround "
1967 "and retrying\n");
Shane Huangbd172432008-06-10 15:52:04 +08001968 rc = ahci_do_softreset(link, class, 0, deadline,
1969 ahci_check_ready);
1970 }
1971 }
1972
1973 return rc;
1974}
1975
Tejun Heocc0680a2007-08-06 18:36:23 +09001976static int ahci_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001977 unsigned long deadline)
Tejun Heo422b7592005-12-19 22:37:17 +09001978{
Tejun Heo9dadd452008-04-07 22:47:19 +09001979 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heocc0680a2007-08-06 18:36:23 +09001980 struct ata_port *ap = link->ap;
Tejun Heo42969712006-05-31 18:28:18 +09001981 struct ahci_port_priv *pp = ap->private_data;
1982 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1983 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001984 bool online;
Tejun Heo4bd00f62006-02-11 16:26:02 +09001985 int rc;
1986
1987 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Tejun Heo4447d352007-04-17 23:44:08 +09001989 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +09001990
1991 /* clear D2H reception area to properly wait for D2H FIS */
Tejun Heocc0680a2007-08-06 18:36:23 +09001992 ata_tf_init(link->device, &tf);
Tejun Heodfd7a3d2007-01-26 15:37:20 +09001993 tf.command = 0x80;
Tejun Heo99771262007-07-16 14:29:38 +09001994 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
Tejun Heo42969712006-05-31 18:28:18 +09001995
Tejun Heo9dadd452008-04-07 22:47:19 +09001996 rc = sata_link_hardreset(link, timing, deadline, &online,
1997 ahci_check_ready);
Tejun Heo42969712006-05-31 18:28:18 +09001998
Tejun Heo4447d352007-04-17 23:44:08 +09001999 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Tejun Heo9dadd452008-04-07 22:47:19 +09002001 if (online)
Tejun Heo4bd00f62006-02-11 16:26:02 +09002002 *class = ahci_dev_classify(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Tejun Heo4bd00f62006-02-11 16:26:02 +09002004 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
2005 return rc;
2006}
2007
Tejun Heocc0680a2007-08-06 18:36:23 +09002008static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09002009 unsigned long deadline)
Tejun Heoad616ff2006-11-01 18:00:24 +09002010{
Tejun Heocc0680a2007-08-06 18:36:23 +09002011 struct ata_port *ap = link->ap;
Tejun Heo9dadd452008-04-07 22:47:19 +09002012 bool online;
Tejun Heoad616ff2006-11-01 18:00:24 +09002013 int rc;
2014
2015 DPRINTK("ENTER\n");
2016
Tejun Heo4447d352007-04-17 23:44:08 +09002017 ahci_stop_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09002018
Tejun Heocc0680a2007-08-06 18:36:23 +09002019 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09002020 deadline, &online, NULL);
Tejun Heoad616ff2006-11-01 18:00:24 +09002021
Tejun Heo4447d352007-04-17 23:44:08 +09002022 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09002023
2024 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
2025
2026 /* vt8251 doesn't clear BSY on signature FIS reception,
2027 * request follow-up softreset.
2028 */
Tejun Heo9dadd452008-04-07 22:47:19 +09002029 return online ? -EAGAIN : rc;
Tejun Heoad616ff2006-11-01 18:00:24 +09002030}
2031
Tejun Heoedc93052007-10-25 14:59:16 +09002032static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
2033 unsigned long deadline)
2034{
2035 struct ata_port *ap = link->ap;
2036 struct ahci_port_priv *pp = ap->private_data;
2037 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2038 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09002039 bool online;
Tejun Heoedc93052007-10-25 14:59:16 +09002040 int rc;
2041
2042 ahci_stop_engine(ap);
2043
2044 /* clear D2H reception area to properly wait for D2H FIS */
2045 ata_tf_init(link->device, &tf);
2046 tf.command = 0x80;
2047 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
2048
2049 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09002050 deadline, &online, NULL);
Tejun Heoedc93052007-10-25 14:59:16 +09002051
2052 ahci_start_engine(ap);
2053
Tejun Heoedc93052007-10-25 14:59:16 +09002054 /* The pseudo configuration device on SIMG4726 attached to
2055 * ASUS P5W-DH Deluxe doesn't send signature FIS after
2056 * hardreset if no device is attached to the first downstream
2057 * port && the pseudo device locks up on SRST w/ PMP==0. To
2058 * work around this, wait for !BSY only briefly. If BSY isn't
2059 * cleared, perform CLO and proceed to IDENTIFY (achieved by
2060 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
2061 *
2062 * Wait for two seconds. Devices attached to downstream port
2063 * which can't process the following IDENTIFY after this will
2064 * have to be reset again. For most cases, this should
2065 * suffice while making probing snappish enough.
2066 */
Tejun Heo9dadd452008-04-07 22:47:19 +09002067 if (online) {
2068 rc = ata_wait_after_reset(link, jiffies + 2 * HZ,
2069 ahci_check_ready);
2070 if (rc)
Shane Huang78d5ae32009-08-07 15:05:52 +08002071 ahci_kick_engine(ap);
Tejun Heo9dadd452008-04-07 22:47:19 +09002072 }
Tejun Heo9dadd452008-04-07 22:47:19 +09002073 return rc;
Tejun Heoedc93052007-10-25 14:59:16 +09002074}
2075
Tejun Heocc0680a2007-08-06 18:36:23 +09002076static void ahci_postreset(struct ata_link *link, unsigned int *class)
Tejun Heo4bd00f62006-02-11 16:26:02 +09002077{
Tejun Heocc0680a2007-08-06 18:36:23 +09002078 struct ata_port *ap = link->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002079 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4bd00f62006-02-11 16:26:02 +09002080 u32 new_tmp, tmp;
2081
Tejun Heo203c75b2008-04-07 22:47:18 +09002082 ata_std_postreset(link, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -05002083
2084 /* Make sure port's ATAPI bit is set appropriately */
2085 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +09002086 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -05002087 new_tmp |= PORT_CMD_ATAPI;
2088 else
2089 new_tmp &= ~PORT_CMD_ATAPI;
2090 if (new_tmp != tmp) {
2091 writel(new_tmp, port_mmio + PORT_CMD);
2092 readl(port_mmio + PORT_CMD); /* flush */
2093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
Tejun Heo12fad3f2006-05-15 21:03:55 +09002096static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002098 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09002099 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
2100 unsigned int si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 VPRINTK("ENTER\n");
2103
2104 /*
2105 * Next, the S/G list.
2106 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09002107 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002108 dma_addr_t addr = sg_dma_address(sg);
2109 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Tejun Heoff2aeb12007-12-05 16:43:11 +09002111 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
2112 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
2113 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
Jeff Garzik828d09d2005-11-12 01:27:07 -05002115
Tejun Heoff2aeb12007-12-05 16:43:11 +09002116 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
Shane Huangd6ef3152009-12-09 17:23:04 +08002119static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc)
2120{
2121 struct ata_port *ap = qc->ap;
2122 struct ahci_port_priv *pp = ap->private_data;
2123
2124 if (!sata_pmp_attached(ap) || pp->fbs_enabled)
2125 return ata_std_qc_defer(qc);
2126 else
2127 return sata_pmp_qc_defer_cmd_switch(qc);
2128}
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130static void ahci_qc_prep(struct ata_queued_cmd *qc)
2131{
Jeff Garzika0ea7322005-06-04 01:13:15 -04002132 struct ata_port *ap = qc->ap;
2133 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo405e66b2007-11-27 19:28:53 +09002134 int is_atapi = ata_is_atapi(qc->tf.protocol);
Tejun Heo12fad3f2006-05-15 21:03:55 +09002135 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 u32 opts;
2137 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -05002138 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 * Fill in command table information. First, the header,
2142 * a SATA Register - Host to Device command FIS.
2143 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09002144 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
2145
Tejun Heo7d50b602007-09-23 13:19:54 +09002146 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
Tejun Heocc9278e2006-02-10 17:25:47 +09002147 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002148 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
2149 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -04002150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Tejun Heocc9278e2006-02-10 17:25:47 +09002152 n_elem = 0;
2153 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +09002154 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Tejun Heocc9278e2006-02-10 17:25:47 +09002156 /*
2157 * Fill in command slot information.
2158 */
Tejun Heo7d50b602007-09-23 13:19:54 +09002159 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
Tejun Heocc9278e2006-02-10 17:25:47 +09002160 if (qc->tf.flags & ATA_TFLAG_WRITE)
2161 opts |= AHCI_CMD_WRITE;
2162 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +09002163 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -05002164
Tejun Heo12fad3f2006-05-15 21:03:55 +09002165 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166}
2167
Shane Huangd6ef3152009-12-09 17:23:04 +08002168static void ahci_fbs_dec_intr(struct ata_port *ap)
2169{
2170 struct ahci_port_priv *pp = ap->private_data;
2171 void __iomem *port_mmio = ahci_port_base(ap);
2172 u32 fbs = readl(port_mmio + PORT_FBS);
2173 int retries = 3;
2174
2175 DPRINTK("ENTER\n");
2176 BUG_ON(!pp->fbs_enabled);
2177
2178 /* time to wait for DEC is not specified by AHCI spec,
2179 * add a retry loop for safety.
2180 */
2181 writel(fbs | PORT_FBS_DEC, port_mmio + PORT_FBS);
2182 fbs = readl(port_mmio + PORT_FBS);
2183 while ((fbs & PORT_FBS_DEC) && retries--) {
2184 udelay(1);
2185 fbs = readl(port_mmio + PORT_FBS);
2186 }
2187
2188 if (fbs & PORT_FBS_DEC)
2189 dev_printk(KERN_ERR, ap->host->dev,
2190 "failed to clear device error\n");
2191}
2192
Tejun Heo78cd52d2006-05-15 20:58:29 +09002193static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
Tejun Heo417a1a62007-09-23 13:19:55 +09002195 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002196 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002197 struct ata_eh_info *host_ehi = &ap->link.eh_info;
2198 struct ata_link *link = NULL;
2199 struct ata_queued_cmd *active_qc;
2200 struct ata_eh_info *active_ehi;
Shane Huangd6ef3152009-12-09 17:23:04 +08002201 bool fbs_need_dec = false;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002202 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Shane Huangd6ef3152009-12-09 17:23:04 +08002204 /* determine active link with error */
2205 if (pp->fbs_enabled) {
2206 void __iomem *port_mmio = ahci_port_base(ap);
2207 u32 fbs = readl(port_mmio + PORT_FBS);
2208 int pmp = fbs >> PORT_FBS_DWE_OFFSET;
2209
2210 if ((fbs & PORT_FBS_SDE) && (pmp < ap->nr_pmp_links) &&
2211 ata_link_online(&ap->pmp_link[pmp])) {
2212 link = &ap->pmp_link[pmp];
2213 fbs_need_dec = true;
2214 }
2215
2216 } else
2217 ata_for_each_link(link, ap, EDGE)
2218 if (ata_link_active(link))
2219 break;
2220
Tejun Heo7d50b602007-09-23 13:19:54 +09002221 if (!link)
2222 link = &ap->link;
2223
2224 active_qc = ata_qc_from_tag(ap, link->active_tag);
2225 active_ehi = &link->eh_info;
2226
2227 /* record irq stat */
2228 ata_ehi_clear_desc(host_ehi);
2229 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
Jeff Garzik9f68a242005-11-15 14:03:47 -05002230
Tejun Heo78cd52d2006-05-15 20:58:29 +09002231 /* AHCI needs SError cleared; otherwise, it might lock up */
Tejun Heo82ef04f2008-07-31 17:02:40 +09002232 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
2233 ahci_scr_write(&ap->link, SCR_ERROR, serror);
Tejun Heo7d50b602007-09-23 13:19:54 +09002234 host_ehi->serror |= serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Tejun Heo41669552006-11-29 11:33:14 +09002236 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
Tejun Heo417a1a62007-09-23 13:19:55 +09002237 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
Tejun Heo41669552006-11-29 11:33:14 +09002238 irq_stat &= ~PORT_IRQ_IF_ERR;
2239
Conke Hu55a61602007-03-27 18:33:05 +08002240 if (irq_stat & PORT_IRQ_TF_ERR) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002241 /* If qc is active, charge it; otherwise, the active
2242 * link. There's no active qc on NCQ errors. It will
2243 * be determined by EH by reading log page 10h.
2244 */
2245 if (active_qc)
2246 active_qc->err_mask |= AC_ERR_DEV;
2247 else
2248 active_ehi->err_mask |= AC_ERR_DEV;
2249
Tejun Heo417a1a62007-09-23 13:19:55 +09002250 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
Tejun Heo7d50b602007-09-23 13:19:54 +09002251 host_ehi->serror &= ~SERR_INTERNAL;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Tejun Heo78cd52d2006-05-15 20:58:29 +09002254 if (irq_stat & PORT_IRQ_UNK_FIS) {
2255 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Tejun Heo7d50b602007-09-23 13:19:54 +09002257 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002258 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002259 ata_ehi_push_desc(active_ehi,
2260 "unknown FIS %08x %08x %08x %08x" ,
Tejun Heo78cd52d2006-05-15 20:58:29 +09002261 unk[0], unk[1], unk[2], unk[3]);
2262 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04002263
Tejun Heo071f44b2008-04-07 22:47:22 +09002264 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002265 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002266 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002267 ata_ehi_push_desc(active_ehi, "incorrect PMP");
2268 }
Tejun Heo78cd52d2006-05-15 20:58:29 +09002269
Tejun Heo7d50b602007-09-23 13:19:54 +09002270 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
2271 host_ehi->err_mask |= AC_ERR_HOST_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002272 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002273 ata_ehi_push_desc(host_ehi, "host bus error");
2274 }
2275
2276 if (irq_stat & PORT_IRQ_IF_ERR) {
Shane Huangd6ef3152009-12-09 17:23:04 +08002277 if (fbs_need_dec)
2278 active_ehi->err_mask |= AC_ERR_DEV;
2279 else {
2280 host_ehi->err_mask |= AC_ERR_ATA_BUS;
2281 host_ehi->action |= ATA_EH_RESET;
2282 }
2283
Tejun Heo7d50b602007-09-23 13:19:54 +09002284 ata_ehi_push_desc(host_ehi, "interface fatal error");
2285 }
2286
2287 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
2288 ata_ehi_hotplugged(host_ehi);
2289 ata_ehi_push_desc(host_ehi, "%s",
2290 irq_stat & PORT_IRQ_CONNECT ?
2291 "connection status changed" : "PHY RDY changed");
2292 }
2293
2294 /* okay, let's hand over to EH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Tejun Heo78cd52d2006-05-15 20:58:29 +09002296 if (irq_stat & PORT_IRQ_FREEZE)
2297 ata_port_freeze(ap);
Shane Huangd6ef3152009-12-09 17:23:04 +08002298 else if (fbs_need_dec) {
2299 ata_link_abort(link);
2300 ahci_fbs_dec_intr(ap);
2301 } else
Tejun Heo78cd52d2006-05-15 20:58:29 +09002302 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303}
2304
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002305static void ahci_port_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
Tejun Heo350756f2008-04-07 22:47:21 +09002307 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002308 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo0291f952007-01-25 19:16:28 +09002309 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo5f226c62007-10-09 15:02:23 +09002310 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heob06ce3e2007-10-09 15:06:48 +09002311 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Shane Huang5db5b022010-03-16 18:08:55 +08002312 u32 status, qc_active = 0;
Tejun Heo459ad682007-12-07 12:46:23 +09002313 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315 status = readl(port_mmio + PORT_IRQ_STAT);
2316 writel(status, port_mmio + PORT_IRQ_STAT);
2317
Tejun Heob06ce3e2007-10-09 15:06:48 +09002318 /* ignore BAD_PMP while resetting */
2319 if (unlikely(resetting))
2320 status &= ~PORT_IRQ_BAD_PMP;
2321
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002322 /* If we are getting PhyRdy, this is
2323 * just a power state change, we should
2324 * clear out this, plus the PhyRdy/Comm
2325 * Wake bits from Serror
2326 */
2327 if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) &&
2328 (status & PORT_IRQ_PHYRDY)) {
2329 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo82ef04f2008-07-31 17:02:40 +09002330 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002331 }
2332
Tejun Heo78cd52d2006-05-15 20:58:29 +09002333 if (unlikely(status & PORT_IRQ_ERROR)) {
2334 ahci_error_intr(ap, status);
2335 return;
2336 }
2337
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002338 if (status & PORT_IRQ_SDB_FIS) {
Tejun Heo5f226c62007-10-09 15:02:23 +09002339 /* If SNotification is available, leave notification
2340 * handling to sata_async_notification(). If not,
2341 * emulate it by snooping SDB FIS RX area.
2342 *
2343 * Snooping FIS RX area is probably cheaper than
2344 * poking SNotification but some constrollers which
2345 * implement SNotification, ICH9 for example, don't
2346 * store AN SDB FIS into receive area.
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002347 */
Tejun Heo5f226c62007-10-09 15:02:23 +09002348 if (hpriv->cap & HOST_CAP_SNTF)
Tejun Heo7d77b242007-09-23 13:14:13 +09002349 sata_async_notification(ap);
Tejun Heo5f226c62007-10-09 15:02:23 +09002350 else {
2351 /* If the 'N' bit in word 0 of the FIS is set,
2352 * we just received asynchronous notification.
2353 * Tell libata about it.
Shane Huangd6ef3152009-12-09 17:23:04 +08002354 *
2355 * Lack of SNotification should not appear in
2356 * ahci 1.2, so the workaround is unnecessary
2357 * when FBS is enabled.
Tejun Heo5f226c62007-10-09 15:02:23 +09002358 */
Shane Huangd6ef3152009-12-09 17:23:04 +08002359 if (pp->fbs_enabled)
2360 WARN_ON_ONCE(1);
2361 else {
2362 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
2363 u32 f0 = le32_to_cpu(f[0]);
2364 if (f0 & (1 << 15))
2365 sata_async_notification(ap);
2366 }
Tejun Heo5f226c62007-10-09 15:02:23 +09002367 }
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002368 }
2369
Shane Huang5db5b022010-03-16 18:08:55 +08002370 /* pp->active_link is not reliable once FBS is enabled, both
2371 * PORT_SCR_ACT and PORT_CMD_ISSUE should be checked because
2372 * NCQ and non-NCQ commands may be in flight at the same time.
2373 */
2374 if (pp->fbs_enabled) {
2375 if (ap->qc_active) {
2376 qc_active = readl(port_mmio + PORT_SCR_ACT);
2377 qc_active |= readl(port_mmio + PORT_CMD_ISSUE);
2378 }
2379 } else {
2380 /* pp->active_link is valid iff any command is in flight */
2381 if (ap->qc_active && pp->active_link->sactive)
2382 qc_active = readl(port_mmio + PORT_SCR_ACT);
2383 else
2384 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
2385 }
Tejun Heo12fad3f2006-05-15 21:03:55 +09002386
Tejun Heo79f97da2008-04-07 22:47:20 +09002387 rc = ata_qc_complete_multiple(ap, qc_active);
Tejun Heob06ce3e2007-10-09 15:06:48 +09002388
Tejun Heo459ad682007-12-07 12:46:23 +09002389 /* while resetting, invalid completions are expected */
2390 if (unlikely(rc < 0 && !resetting)) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002391 ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002392 ehi->action |= ATA_EH_RESET;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002393 ata_port_freeze(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395}
2396
David Howells7d12e782006-10-05 14:55:46 +01002397static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
Jeff Garzikcca39742006-08-24 03:19:22 -04002399 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 struct ahci_host_priv *hpriv;
2401 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -04002402 void __iomem *mmio;
Tejun Heod28f87a2008-07-05 13:10:50 +09002403 u32 irq_stat, irq_masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 VPRINTK("ENTER\n");
2406
Jeff Garzikcca39742006-08-24 03:19:22 -04002407 hpriv = host->private_data;
Anton Vorontsovd8993342010-03-03 20:17:34 +03002408 mmio = hpriv->mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410 /* sigh. 0xffffffff is a valid return from h/w */
2411 irq_stat = readl(mmio + HOST_IRQ_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 if (!irq_stat)
2413 return IRQ_NONE;
2414
Tejun Heod28f87a2008-07-05 13:10:50 +09002415 irq_masked = irq_stat & hpriv->port_map;
2416
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002417 spin_lock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002419 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
Tejun Heod28f87a2008-07-05 13:10:50 +09002422 if (!(irq_masked & (1 << i)))
Jeff Garzik67846b32005-10-05 02:58:32 -04002423 continue;
2424
Jeff Garzikcca39742006-08-24 03:19:22 -04002425 ap = host->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -04002426 if (ap) {
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002427 ahci_port_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -04002428 VPRINTK("port %u\n", i);
2429 } else {
2430 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +09002431 if (ata_ratelimit())
Jeff Garzikcca39742006-08-24 03:19:22 -04002432 dev_printk(KERN_WARNING, host->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -05002433 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 }
Jeff Garzik67846b32005-10-05 02:58:32 -04002435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 handled = 1;
2437 }
2438
Tejun Heod28f87a2008-07-05 13:10:50 +09002439 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
2440 * it should be cleared after all the port events are cleared;
2441 * otherwise, it will raise a spurious interrupt after each
2442 * valid one. Please read section 10.6.2 of ahci 1.1 for more
2443 * information.
2444 *
2445 * Also, use the unmasked value to clear interrupt as spurious
2446 * pending event on a dummy port might cause screaming IRQ.
2447 */
Tejun Heoea0c62f2008-06-28 01:49:02 +09002448 writel(irq_stat, mmio + HOST_IRQ_STAT);
2449
Jeff Garzikcca39742006-08-24 03:19:22 -04002450 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
2452 VPRINTK("EXIT\n");
2453
2454 return IRQ_RETVAL(handled);
2455}
2456
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09002457static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
2459 struct ata_port *ap = qc->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002460 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09002461 struct ahci_port_priv *pp = ap->private_data;
2462
2463 /* Keep track of the currently active link. It will be used
2464 * in completion path to determine whether NCQ phase is in
2465 * progress.
2466 */
2467 pp->active_link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Tejun Heo12fad3f2006-05-15 21:03:55 +09002469 if (qc->tf.protocol == ATA_PROT_NCQ)
2470 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
Shane Huangd6ef3152009-12-09 17:23:04 +08002471
2472 if (pp->fbs_enabled && pp->fbs_last_dev != qc->dev->link->pmp) {
2473 u32 fbs = readl(port_mmio + PORT_FBS);
2474 fbs &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
2475 fbs |= qc->dev->link->pmp << PORT_FBS_DEV_OFFSET;
2476 writel(fbs, port_mmio + PORT_FBS);
2477 pp->fbs_last_dev = qc->dev->link->pmp;
2478 }
2479
Tejun Heo12fad3f2006-05-15 21:03:55 +09002480 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002482 ahci_sw_activity(qc->dev->link);
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 return 0;
2485}
2486
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002487static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2488{
2489 struct ahci_port_priv *pp = qc->ap->private_data;
2490 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2491
Shane Huangd6ef3152009-12-09 17:23:04 +08002492 if (pp->fbs_enabled)
2493 d2h_fis += qc->dev->link->pmp * AHCI_RX_FIS_SZ;
2494
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002495 ata_tf_from_fis(d2h_fis, &qc->result_tf);
2496 return true;
2497}
2498
Tejun Heo78cd52d2006-05-15 20:58:29 +09002499static void ahci_freeze(struct ata_port *ap)
2500{
Tejun Heo4447d352007-04-17 23:44:08 +09002501 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002502
2503 /* turn IRQ off */
2504 writel(0, port_mmio + PORT_IRQ_MASK);
2505}
2506
2507static void ahci_thaw(struct ata_port *ap)
2508{
Anton Vorontsovd8993342010-03-03 20:17:34 +03002509 struct ahci_host_priv *hpriv = ap->host->private_data;
2510 void __iomem *mmio = hpriv->mmio;
Tejun Heo4447d352007-04-17 23:44:08 +09002511 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002512 u32 tmp;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002513 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002514
2515 /* clear IRQ */
2516 tmp = readl(port_mmio + PORT_IRQ_STAT);
2517 writel(tmp, port_mmio + PORT_IRQ_STAT);
Tejun Heoa7187282007-01-27 11:04:26 +09002518 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002519
Tejun Heo1c954a42007-10-09 15:01:37 +09002520 /* turn IRQ back on */
2521 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002522}
2523
2524static void ahci_error_handler(struct ata_port *ap)
2525{
Tejun Heob51e9e52006-06-29 01:29:30 +09002526 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +09002527 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09002528 ahci_stop_engine(ap);
2529 ahci_start_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002530 }
2531
Tejun Heoa1efdab2008-03-25 12:22:50 +09002532 sata_pmp_error_handler(ap);
Tejun Heoedc93052007-10-25 14:59:16 +09002533}
2534
Tejun Heo78cd52d2006-05-15 20:58:29 +09002535static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2536{
2537 struct ata_port *ap = qc->ap;
2538
Tejun Heod2e75df2007-07-16 14:29:39 +09002539 /* make DMA engine forget about the failed command */
2540 if (qc->flags & ATA_QCFLAG_FAILED)
Shane Huang78d5ae32009-08-07 15:05:52 +08002541 ahci_kick_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002542}
2543
Shane Huangd6ef3152009-12-09 17:23:04 +08002544static void ahci_enable_fbs(struct ata_port *ap)
2545{
2546 struct ahci_port_priv *pp = ap->private_data;
2547 void __iomem *port_mmio = ahci_port_base(ap);
2548 u32 fbs;
2549 int rc;
2550
2551 if (!pp->fbs_supported)
2552 return;
2553
2554 fbs = readl(port_mmio + PORT_FBS);
2555 if (fbs & PORT_FBS_EN) {
2556 pp->fbs_enabled = true;
2557 pp->fbs_last_dev = -1; /* initialization */
2558 return;
2559 }
2560
2561 rc = ahci_stop_engine(ap);
2562 if (rc)
2563 return;
2564
2565 writel(fbs | PORT_FBS_EN, port_mmio + PORT_FBS);
2566 fbs = readl(port_mmio + PORT_FBS);
2567 if (fbs & PORT_FBS_EN) {
2568 dev_printk(KERN_INFO, ap->host->dev, "FBS is enabled.\n");
2569 pp->fbs_enabled = true;
2570 pp->fbs_last_dev = -1; /* initialization */
2571 } else
2572 dev_printk(KERN_ERR, ap->host->dev, "Failed to enable FBS\n");
2573
2574 ahci_start_engine(ap);
2575}
2576
2577static void ahci_disable_fbs(struct ata_port *ap)
2578{
2579 struct ahci_port_priv *pp = ap->private_data;
2580 void __iomem *port_mmio = ahci_port_base(ap);
2581 u32 fbs;
2582 int rc;
2583
2584 if (!pp->fbs_supported)
2585 return;
2586
2587 fbs = readl(port_mmio + PORT_FBS);
2588 if ((fbs & PORT_FBS_EN) == 0) {
2589 pp->fbs_enabled = false;
2590 return;
2591 }
2592
2593 rc = ahci_stop_engine(ap);
2594 if (rc)
2595 return;
2596
2597 writel(fbs & ~PORT_FBS_EN, port_mmio + PORT_FBS);
2598 fbs = readl(port_mmio + PORT_FBS);
2599 if (fbs & PORT_FBS_EN)
2600 dev_printk(KERN_ERR, ap->host->dev, "Failed to disable FBS\n");
2601 else {
2602 dev_printk(KERN_INFO, ap->host->dev, "FBS is disabled.\n");
2603 pp->fbs_enabled = false;
2604 }
2605
2606 ahci_start_engine(ap);
2607}
2608
Tejun Heo7d50b602007-09-23 13:19:54 +09002609static void ahci_pmp_attach(struct ata_port *ap)
2610{
2611 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002612 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002613 u32 cmd;
2614
2615 cmd = readl(port_mmio + PORT_CMD);
2616 cmd |= PORT_CMD_PMP;
2617 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002618
Shane Huangd6ef3152009-12-09 17:23:04 +08002619 ahci_enable_fbs(ap);
2620
Tejun Heo1c954a42007-10-09 15:01:37 +09002621 pp->intr_mask |= PORT_IRQ_BAD_PMP;
2622 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002623}
2624
2625static void ahci_pmp_detach(struct ata_port *ap)
2626{
2627 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002628 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002629 u32 cmd;
2630
Shane Huangd6ef3152009-12-09 17:23:04 +08002631 ahci_disable_fbs(ap);
2632
Tejun Heo7d50b602007-09-23 13:19:54 +09002633 cmd = readl(port_mmio + PORT_CMD);
2634 cmd &= ~PORT_CMD_PMP;
2635 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002636
2637 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
2638 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002639}
2640
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002641static int ahci_port_resume(struct ata_port *ap)
2642{
2643 ahci_power_up(ap);
2644 ahci_start_port(ap);
2645
Tejun Heo071f44b2008-04-07 22:47:22 +09002646 if (sata_pmp_attached(ap))
Tejun Heo7d50b602007-09-23 13:19:54 +09002647 ahci_pmp_attach(ap);
2648 else
2649 ahci_pmp_detach(ap);
2650
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002651 return 0;
2652}
2653
Tejun Heo438ac6d2007-03-02 17:31:26 +09002654#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +09002655static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2656{
Tejun Heoc1332872006-07-26 15:59:26 +09002657 const char *emsg = NULL;
2658 int rc;
2659
Tejun Heo4447d352007-04-17 23:44:08 +09002660 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo8e16f942006-11-20 15:42:36 +09002661 if (rc == 0)
Tejun Heo4447d352007-04-17 23:44:08 +09002662 ahci_power_down(ap);
Tejun Heo8e16f942006-11-20 15:42:36 +09002663 else {
Tejun Heoc1332872006-07-26 15:59:26 +09002664 ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002665 ahci_start_port(ap);
Tejun Heoc1332872006-07-26 15:59:26 +09002666 }
2667
2668 return rc;
2669}
2670
Tejun Heoc1332872006-07-26 15:59:26 +09002671static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
2672{
Jeff Garzikcca39742006-08-24 03:19:22 -04002673 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo9b10ae82009-05-30 20:50:12 +09002674 struct ahci_host_priv *hpriv = host->private_data;
Anton Vorontsovd8993342010-03-03 20:17:34 +03002675 void __iomem *mmio = hpriv->mmio;
Tejun Heoc1332872006-07-26 15:59:26 +09002676 u32 ctl;
2677
Tejun Heo9b10ae82009-05-30 20:50:12 +09002678 if (mesg.event & PM_EVENT_SUSPEND &&
2679 hpriv->flags & AHCI_HFLAG_NO_SUSPEND) {
2680 dev_printk(KERN_ERR, &pdev->dev,
2681 "BIOS update required for suspend/resume\n");
2682 return -EIO;
2683 }
2684
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002685 if (mesg.event & PM_EVENT_SLEEP) {
Tejun Heoc1332872006-07-26 15:59:26 +09002686 /* AHCI spec rev1.1 section 8.3.3:
2687 * Software must disable interrupts prior to requesting a
2688 * transition of the HBA to D3 state.
2689 */
2690 ctl = readl(mmio + HOST_CTL);
2691 ctl &= ~HOST_IRQ_EN;
2692 writel(ctl, mmio + HOST_CTL);
2693 readl(mmio + HOST_CTL); /* flush */
2694 }
2695
2696 return ata_pci_device_suspend(pdev, mesg);
2697}
2698
2699static int ahci_pci_device_resume(struct pci_dev *pdev)
2700{
Jeff Garzikcca39742006-08-24 03:19:22 -04002701 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heoc1332872006-07-26 15:59:26 +09002702 int rc;
2703
Tejun Heo553c4aa2006-12-26 19:39:50 +09002704 rc = ata_pci_device_do_resume(pdev);
2705 if (rc)
2706 return rc;
Tejun Heoc1332872006-07-26 15:59:26 +09002707
2708 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
Anton Vorontsov33030402010-03-03 20:17:39 +03002709 rc = ahci_pci_reset_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002710 if (rc)
2711 return rc;
2712
Tejun Heo4447d352007-04-17 23:44:08 +09002713 ahci_init_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002714 }
2715
Jeff Garzikcca39742006-08-24 03:19:22 -04002716 ata_host_resume(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002717
2718 return 0;
2719}
Tejun Heo438ac6d2007-03-02 17:31:26 +09002720#endif
Tejun Heoc1332872006-07-26 15:59:26 +09002721
Tejun Heo254950c2006-07-26 15:59:25 +09002722static int ahci_port_start(struct ata_port *ap)
2723{
Shane Huangd6ef3152009-12-09 17:23:04 +08002724 struct ahci_host_priv *hpriv = ap->host->private_data;
Jeff Garzikcca39742006-08-24 03:19:22 -04002725 struct device *dev = ap->host->dev;
Tejun Heo254950c2006-07-26 15:59:25 +09002726 struct ahci_port_priv *pp;
Tejun Heo254950c2006-07-26 15:59:25 +09002727 void *mem;
2728 dma_addr_t mem_dma;
Shane Huangd6ef3152009-12-09 17:23:04 +08002729 size_t dma_sz, rx_fis_sz;
Tejun Heo254950c2006-07-26 15:59:25 +09002730
Tejun Heo24dc5f32007-01-20 16:00:28 +09002731 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Tejun Heo254950c2006-07-26 15:59:25 +09002732 if (!pp)
2733 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002734
Shane Huangd6ef3152009-12-09 17:23:04 +08002735 /* check FBS capability */
2736 if ((hpriv->cap & HOST_CAP_FBS) && sata_pmp_supported(ap)) {
2737 void __iomem *port_mmio = ahci_port_base(ap);
2738 u32 cmd = readl(port_mmio + PORT_CMD);
2739 if (cmd & PORT_CMD_FBSCP)
2740 pp->fbs_supported = true;
2741 else
2742 dev_printk(KERN_WARNING, dev,
2743 "The port is not capable of FBS\n");
2744 }
2745
2746 if (pp->fbs_supported) {
2747 dma_sz = AHCI_PORT_PRIV_FBS_DMA_SZ;
2748 rx_fis_sz = AHCI_RX_FIS_SZ * 16;
2749 } else {
2750 dma_sz = AHCI_PORT_PRIV_DMA_SZ;
2751 rx_fis_sz = AHCI_RX_FIS_SZ;
2752 }
2753
2754 mem = dmam_alloc_coherent(dev, dma_sz, &mem_dma, GFP_KERNEL);
Tejun Heo24dc5f32007-01-20 16:00:28 +09002755 if (!mem)
Tejun Heo254950c2006-07-26 15:59:25 +09002756 return -ENOMEM;
Shane Huangd6ef3152009-12-09 17:23:04 +08002757 memset(mem, 0, dma_sz);
Tejun Heo254950c2006-07-26 15:59:25 +09002758
2759 /*
2760 * First item in chunk of DMA memory: 32-slot command table,
2761 * 32 bytes each in size
2762 */
2763 pp->cmd_slot = mem;
2764 pp->cmd_slot_dma = mem_dma;
2765
2766 mem += AHCI_CMD_SLOT_SZ;
2767 mem_dma += AHCI_CMD_SLOT_SZ;
2768
2769 /*
2770 * Second item: Received-FIS area
2771 */
2772 pp->rx_fis = mem;
2773 pp->rx_fis_dma = mem_dma;
2774
Shane Huangd6ef3152009-12-09 17:23:04 +08002775 mem += rx_fis_sz;
2776 mem_dma += rx_fis_sz;
Tejun Heo254950c2006-07-26 15:59:25 +09002777
2778 /*
2779 * Third item: data area for storing a single command
2780 * and its scatter-gather table
2781 */
2782 pp->cmd_tbl = mem;
2783 pp->cmd_tbl_dma = mem_dma;
2784
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002785 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002786 * Save off initial list of interrupts to be enabled.
2787 * This could be changed later
2788 */
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002789 pp->intr_mask = DEF_PORT_IRQ;
2790
Tejun Heo254950c2006-07-26 15:59:25 +09002791 ap->private_data = pp;
2792
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002793 /* engage engines, captain */
2794 return ahci_port_resume(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09002795}
2796
2797static void ahci_port_stop(struct ata_port *ap)
2798{
Tejun Heo0be0aa92006-07-26 15:59:26 +09002799 const char *emsg = NULL;
2800 int rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002801
Tejun Heo0be0aa92006-07-26 15:59:26 +09002802 /* de-initialize port */
Tejun Heo4447d352007-04-17 23:44:08 +09002803 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo0be0aa92006-07-26 15:59:26 +09002804 if (rc)
2805 ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
Tejun Heo254950c2006-07-26 15:59:25 +09002806}
2807
Tejun Heo4447d352007-04-17 23:44:08 +09002808static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 if (using_dac &&
Yang Hongyang6a355282009-04-06 19:01:13 -07002813 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
2814 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 if (rc) {
Yang Hongyang284901a2009-04-06 19:01:15 -07002816 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002818 dev_printk(KERN_ERR, &pdev->dev,
2819 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 return rc;
2821 }
2822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07002824 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002826 dev_printk(KERN_ERR, &pdev->dev,
2827 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 return rc;
2829 }
Yang Hongyang284901a2009-04-06 19:01:15 -07002830 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002832 dev_printk(KERN_ERR, &pdev->dev,
2833 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 return rc;
2835 }
2836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 return 0;
2838}
2839
Tejun Heo4447d352007-04-17 23:44:08 +09002840static void ahci_print_info(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Tejun Heo4447d352007-04-17 23:44:08 +09002842 struct ahci_host_priv *hpriv = host->private_data;
2843 struct pci_dev *pdev = to_pci_dev(host->dev);
Anton Vorontsovd8993342010-03-03 20:17:34 +03002844 void __iomem *mmio = hpriv->mmio;
Robert Hancock4c521c82009-09-20 17:02:31 -06002845 u32 vers, cap, cap2, impl, speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 const char *speed_s;
2847 u16 cc;
2848 const char *scc_s;
2849
2850 vers = readl(mmio + HOST_VERSION);
2851 cap = hpriv->cap;
Robert Hancock4c521c82009-09-20 17:02:31 -06002852 cap2 = hpriv->cap2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 impl = hpriv->port_map;
2854
2855 speed = (cap >> 20) & 0xf;
2856 if (speed == 1)
2857 speed_s = "1.5";
2858 else if (speed == 2)
2859 speed_s = "3";
Shane Huang8522ee22008-12-30 11:00:37 +08002860 else if (speed == 3)
2861 speed_s = "6";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 else
2863 speed_s = "?";
2864
2865 pci_read_config_word(pdev, 0x0a, &cc);
Conke Huc9f89472007-01-09 05:32:51 -05002866 if (cc == PCI_CLASS_STORAGE_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 scc_s = "IDE";
Conke Huc9f89472007-01-09 05:32:51 -05002868 else if (cc == PCI_CLASS_STORAGE_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 scc_s = "SATA";
Conke Huc9f89472007-01-09 05:32:51 -05002870 else if (cc == PCI_CLASS_STORAGE_RAID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 scc_s = "RAID";
2872 else
2873 scc_s = "unknown";
2874
Jeff Garzika9524a72005-10-30 14:39:11 -05002875 dev_printk(KERN_INFO, &pdev->dev,
2876 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002878 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002880 (vers >> 24) & 0xff,
2881 (vers >> 16) & 0xff,
2882 (vers >> 8) & 0xff,
2883 vers & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
2885 ((cap >> 8) & 0x1f) + 1,
2886 (cap & 0x1f) + 1,
2887 speed_s,
2888 impl,
2889 scc_s);
2890
Jeff Garzika9524a72005-10-30 14:39:11 -05002891 dev_printk(KERN_INFO, &pdev->dev,
2892 "flags: "
Tejun Heo203ef6c2007-07-16 14:29:40 +09002893 "%s%s%s%s%s%s%s"
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002894 "%s%s%s%s%s%s%s"
Robert Hancock4c521c82009-09-20 17:02:31 -06002895 "%s%s%s%s%s%s\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002896 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Robert Hancock4c521c82009-09-20 17:02:31 -06002898 cap & HOST_CAP_64 ? "64bit " : "",
2899 cap & HOST_CAP_NCQ ? "ncq " : "",
2900 cap & HOST_CAP_SNTF ? "sntf " : "",
2901 cap & HOST_CAP_MPS ? "ilck " : "",
2902 cap & HOST_CAP_SSS ? "stag " : "",
2903 cap & HOST_CAP_ALPM ? "pm " : "",
2904 cap & HOST_CAP_LED ? "led " : "",
2905 cap & HOST_CAP_CLO ? "clo " : "",
2906 cap & HOST_CAP_ONLY ? "only " : "",
2907 cap & HOST_CAP_PMP ? "pmp " : "",
2908 cap & HOST_CAP_FBS ? "fbs " : "",
2909 cap & HOST_CAP_PIO_MULTI ? "pio " : "",
2910 cap & HOST_CAP_SSC ? "slum " : "",
2911 cap & HOST_CAP_PART ? "part " : "",
2912 cap & HOST_CAP_CCC ? "ccc " : "",
2913 cap & HOST_CAP_EMS ? "ems " : "",
2914 cap & HOST_CAP_SXS ? "sxs " : "",
2915 cap2 & HOST_CAP2_APST ? "apst " : "",
2916 cap2 & HOST_CAP2_NVMHCI ? "nvmp " : "",
2917 cap2 & HOST_CAP2_BOH ? "boh " : ""
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 );
2919}
2920
Tejun Heoedc93052007-10-25 14:59:16 +09002921/* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2922 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2923 * support PMP and the 4726 either directly exports the device
2924 * attached to the first downstream port or acts as a hardware storage
2925 * controller and emulate a single ATA device (can be RAID 0/1 or some
2926 * other configuration).
2927 *
2928 * When there's no device attached to the first downstream port of the
2929 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2930 * configure the 4726. However, ATA emulation of the device is very
2931 * lame. It doesn't send signature D2H Reg FIS after the initial
2932 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2933 *
2934 * The following function works around the problem by always using
2935 * hardreset on the port and not depending on receiving signature FIS
2936 * afterward. If signature FIS isn't received soon, ATA class is
2937 * assumed without follow-up softreset.
2938 */
2939static void ahci_p5wdh_workaround(struct ata_host *host)
2940{
2941 static struct dmi_system_id sysids[] = {
2942 {
2943 .ident = "P5W DH Deluxe",
2944 .matches = {
2945 DMI_MATCH(DMI_SYS_VENDOR,
2946 "ASUSTEK COMPUTER INC"),
2947 DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
2948 },
2949 },
2950 { }
2951 };
2952 struct pci_dev *pdev = to_pci_dev(host->dev);
2953
2954 if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) &&
2955 dmi_check_system(sysids)) {
2956 struct ata_port *ap = host->ports[1];
2957
2958 dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH "
2959 "Deluxe on-board SIMG4726 workaround\n");
2960
2961 ap->ops = &ahci_p5wdh_ops;
2962 ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA;
2963 }
2964}
2965
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002966/* only some SB600 ahci controllers can do 64bit DMA */
2967static bool ahci_sb600_enable_64bit(struct pci_dev *pdev)
Shane Huang58a09b32009-05-27 15:04:43 +08002968{
2969 static const struct dmi_system_id sysids[] = {
Tejun Heo03d783b2009-08-16 21:04:02 +09002970 /*
2971 * The oldest version known to be broken is 0901 and
2972 * working is 1501 which was released on 2007-10-26.
Tejun Heo2fcad9d2009-10-03 18:27:29 +09002973 * Enable 64bit DMA on 1501 and anything newer.
2974 *
Tejun Heo03d783b2009-08-16 21:04:02 +09002975 * Please read bko#9412 for more info.
2976 */
Shane Huang58a09b32009-05-27 15:04:43 +08002977 {
2978 .ident = "ASUS M2A-VM",
2979 .matches = {
2980 DMI_MATCH(DMI_BOARD_VENDOR,
2981 "ASUSTeK Computer INC."),
2982 DMI_MATCH(DMI_BOARD_NAME, "M2A-VM"),
2983 },
Tejun Heo03d783b2009-08-16 21:04:02 +09002984 .driver_data = "20071026", /* yyyymmdd */
Shane Huang58a09b32009-05-27 15:04:43 +08002985 },
Mark Nelsone65cc192009-11-03 20:06:48 +11002986 /*
2987 * All BIOS versions for the MSI K9A2 Platinum (MS-7376)
2988 * support 64bit DMA.
2989 *
2990 * BIOS versions earlier than 1.5 had the Manufacturer DMI
2991 * fields as "MICRO-STAR INTERANTIONAL CO.,LTD".
2992 * This spelling mistake was fixed in BIOS version 1.5, so
2993 * 1.5 and later have the Manufacturer as
2994 * "MICRO-STAR INTERNATIONAL CO.,LTD".
2995 * So try to match on DMI_BOARD_VENDOR of "MICRO-STAR INTER".
2996 *
2997 * BIOS versions earlier than 1.9 had a Board Product Name
2998 * DMI field of "MS-7376". This was changed to be
2999 * "K9A2 Platinum (MS-7376)" in version 1.9, but we can still
3000 * match on DMI_BOARD_NAME of "MS-7376".
3001 */
3002 {
3003 .ident = "MSI K9A2 Platinum",
3004 .matches = {
3005 DMI_MATCH(DMI_BOARD_VENDOR,
3006 "MICRO-STAR INTER"),
3007 DMI_MATCH(DMI_BOARD_NAME, "MS-7376"),
3008 },
3009 },
Shane Huang58a09b32009-05-27 15:04:43 +08003010 { }
3011 };
Tejun Heo03d783b2009-08-16 21:04:02 +09003012 const struct dmi_system_id *match;
Tejun Heo2fcad9d2009-10-03 18:27:29 +09003013 int year, month, date;
3014 char buf[9];
Shane Huang58a09b32009-05-27 15:04:43 +08003015
Tejun Heo03d783b2009-08-16 21:04:02 +09003016 match = dmi_first_match(sysids);
Shane Huang58a09b32009-05-27 15:04:43 +08003017 if (pdev->bus->number != 0 || pdev->devfn != PCI_DEVFN(0x12, 0) ||
Tejun Heo03d783b2009-08-16 21:04:02 +09003018 !match)
Shane Huang58a09b32009-05-27 15:04:43 +08003019 return false;
3020
Mark Nelsone65cc192009-11-03 20:06:48 +11003021 if (!match->driver_data)
3022 goto enable_64bit;
3023
Tejun Heo2fcad9d2009-10-03 18:27:29 +09003024 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date);
3025 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date);
Shane Huang58a09b32009-05-27 15:04:43 +08003026
Mark Nelsone65cc192009-11-03 20:06:48 +11003027 if (strcmp(buf, match->driver_data) >= 0)
3028 goto enable_64bit;
3029 else {
Tejun Heo03d783b2009-08-16 21:04:02 +09003030 dev_printk(KERN_WARNING, &pdev->dev, "%s: BIOS too old, "
3031 "forcing 32bit DMA, update BIOS\n", match->ident);
Tejun Heo2fcad9d2009-10-03 18:27:29 +09003032 return false;
3033 }
Mark Nelsone65cc192009-11-03 20:06:48 +11003034
3035enable_64bit:
3036 dev_printk(KERN_WARNING, &pdev->dev, "%s: enabling 64bit DMA\n",
3037 match->ident);
3038 return true;
Shane Huang58a09b32009-05-27 15:04:43 +08003039}
3040
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01003041static bool ahci_broken_system_poweroff(struct pci_dev *pdev)
3042{
3043 static const struct dmi_system_id broken_systems[] = {
3044 {
3045 .ident = "HP Compaq nx6310",
3046 .matches = {
3047 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3048 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6310"),
3049 },
3050 /* PCI slot number of the controller */
3051 .driver_data = (void *)0x1FUL,
3052 },
Maciej Ruteckid2f9c062009-03-20 00:06:46 +01003053 {
3054 .ident = "HP Compaq 6720s",
3055 .matches = {
3056 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3057 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6720s"),
3058 },
3059 /* PCI slot number of the controller */
3060 .driver_data = (void *)0x1FUL,
3061 },
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01003062
3063 { } /* terminate list */
3064 };
3065 const struct dmi_system_id *dmi = dmi_first_match(broken_systems);
3066
3067 if (dmi) {
3068 unsigned long slot = (unsigned long)dmi->driver_data;
3069 /* apply the quirk only to on-board controllers */
3070 return slot == PCI_SLOT(pdev->devfn);
3071 }
3072
3073 return false;
3074}
3075
Tejun Heo9b10ae82009-05-30 20:50:12 +09003076static bool ahci_broken_suspend(struct pci_dev *pdev)
3077{
3078 static const struct dmi_system_id sysids[] = {
3079 /*
3080 * On HP dv[4-6] and HDX18 with earlier BIOSen, link
3081 * to the harddisk doesn't become online after
3082 * resuming from STR. Warn and fail suspend.
Tejun Heo9deb3432010-03-16 09:50:26 +09003083 *
3084 * http://bugzilla.kernel.org/show_bug.cgi?id=12276
3085 *
3086 * Use dates instead of versions to match as HP is
3087 * apparently recycling both product and version
3088 * strings.
3089 *
3090 * http://bugzilla.kernel.org/show_bug.cgi?id=15462
Tejun Heo9b10ae82009-05-30 20:50:12 +09003091 */
3092 {
3093 .ident = "dv4",
3094 .matches = {
3095 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3096 DMI_MATCH(DMI_PRODUCT_NAME,
3097 "HP Pavilion dv4 Notebook PC"),
3098 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003099 .driver_data = "20090105", /* F.30 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003100 },
3101 {
3102 .ident = "dv5",
3103 .matches = {
3104 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3105 DMI_MATCH(DMI_PRODUCT_NAME,
3106 "HP Pavilion dv5 Notebook PC"),
3107 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003108 .driver_data = "20090506", /* F.16 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003109 },
3110 {
3111 .ident = "dv6",
3112 .matches = {
3113 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3114 DMI_MATCH(DMI_PRODUCT_NAME,
3115 "HP Pavilion dv6 Notebook PC"),
3116 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003117 .driver_data = "20090423", /* F.21 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003118 },
3119 {
3120 .ident = "HDX18",
3121 .matches = {
3122 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3123 DMI_MATCH(DMI_PRODUCT_NAME,
3124 "HP HDX18 Notebook PC"),
3125 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003126 .driver_data = "20090430", /* F.23 */
Tejun Heo9b10ae82009-05-30 20:50:12 +09003127 },
Tejun Heocedc9bf2010-01-28 16:04:15 +09003128 /*
3129 * Acer eMachines G725 has the same problem. BIOS
3130 * V1.03 is known to be broken. V3.04 is known to
3131 * work. Inbetween, there are V1.06, V2.06 and V3.03
3132 * that we don't have much idea about. For now,
3133 * blacklist anything older than V3.04.
Tejun Heo9deb3432010-03-16 09:50:26 +09003134 *
3135 * http://bugzilla.kernel.org/show_bug.cgi?id=15104
Tejun Heocedc9bf2010-01-28 16:04:15 +09003136 */
3137 {
3138 .ident = "G725",
3139 .matches = {
3140 DMI_MATCH(DMI_SYS_VENDOR, "eMachines"),
3141 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines G725"),
3142 },
Tejun Heo9deb3432010-03-16 09:50:26 +09003143 .driver_data = "20091216", /* V3.04 */
Tejun Heocedc9bf2010-01-28 16:04:15 +09003144 },
Tejun Heo9b10ae82009-05-30 20:50:12 +09003145 { } /* terminate list */
3146 };
3147 const struct dmi_system_id *dmi = dmi_first_match(sysids);
Tejun Heo9deb3432010-03-16 09:50:26 +09003148 int year, month, date;
3149 char buf[9];
Tejun Heo9b10ae82009-05-30 20:50:12 +09003150
3151 if (!dmi || pdev->bus->number || pdev->devfn != PCI_DEVFN(0x1f, 2))
3152 return false;
3153
Tejun Heo9deb3432010-03-16 09:50:26 +09003154 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date);
3155 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date);
Tejun Heo9b10ae82009-05-30 20:50:12 +09003156
Tejun Heo9deb3432010-03-16 09:50:26 +09003157 return strcmp(buf, dmi->driver_data) < 0;
Tejun Heo9b10ae82009-05-30 20:50:12 +09003158}
3159
Tejun Heo55946392009-08-04 14:30:08 +09003160static bool ahci_broken_online(struct pci_dev *pdev)
3161{
3162#define ENCODE_BUSDEVFN(bus, slot, func) \
3163 (void *)(unsigned long)(((bus) << 8) | PCI_DEVFN((slot), (func)))
3164 static const struct dmi_system_id sysids[] = {
3165 /*
3166 * There are several gigabyte boards which use
3167 * SIMG5723s configured as hardware RAID. Certain
3168 * 5723 firmware revisions shipped there keep the link
3169 * online but fail to answer properly to SRST or
3170 * IDENTIFY when no device is attached downstream
3171 * causing libata to retry quite a few times leading
3172 * to excessive detection delay.
3173 *
3174 * As these firmwares respond to the second reset try
3175 * with invalid device signature, considering unknown
3176 * sig as offline works around the problem acceptably.
3177 */
3178 {
3179 .ident = "EP45-DQ6",
3180 .matches = {
3181 DMI_MATCH(DMI_BOARD_VENDOR,
3182 "Gigabyte Technology Co., Ltd."),
3183 DMI_MATCH(DMI_BOARD_NAME, "EP45-DQ6"),
3184 },
3185 .driver_data = ENCODE_BUSDEVFN(0x0a, 0x00, 0),
3186 },
3187 {
3188 .ident = "EP45-DS5",
3189 .matches = {
3190 DMI_MATCH(DMI_BOARD_VENDOR,
3191 "Gigabyte Technology Co., Ltd."),
3192 DMI_MATCH(DMI_BOARD_NAME, "EP45-DS5"),
3193 },
3194 .driver_data = ENCODE_BUSDEVFN(0x03, 0x00, 0),
3195 },
3196 { } /* terminate list */
3197 };
3198#undef ENCODE_BUSDEVFN
3199 const struct dmi_system_id *dmi = dmi_first_match(sysids);
3200 unsigned int val;
3201
3202 if (!dmi)
3203 return false;
3204
3205 val = (unsigned long)dmi->driver_data;
3206
3207 return pdev->bus->number == (val >> 8) && pdev->devfn == (val & 0xff);
3208}
3209
Markus Trippelsdorf8e513212009-10-09 05:41:47 +02003210#ifdef CONFIG_ATA_ACPI
Tejun Heof80ae7e2009-09-16 04:18:03 +09003211static void ahci_gtf_filter_workaround(struct ata_host *host)
3212{
3213 static const struct dmi_system_id sysids[] = {
3214 /*
3215 * Aspire 3810T issues a bunch of SATA enable commands
3216 * via _GTF including an invalid one and one which is
3217 * rejected by the device. Among the successful ones
3218 * is FPDMA non-zero offset enable which when enabled
3219 * only on the drive side leads to NCQ command
3220 * failures. Filter it out.
3221 */
3222 {
3223 .ident = "Aspire 3810T",
3224 .matches = {
3225 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
3226 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3810T"),
3227 },
3228 .driver_data = (void *)ATA_ACPI_FILTER_FPDMA_OFFSET,
3229 },
3230 { }
3231 };
3232 const struct dmi_system_id *dmi = dmi_first_match(sysids);
3233 unsigned int filter;
3234 int i;
3235
3236 if (!dmi)
3237 return;
3238
3239 filter = (unsigned long)dmi->driver_data;
3240 dev_printk(KERN_INFO, host->dev,
3241 "applying extra ACPI _GTF filter 0x%x for %s\n",
3242 filter, dmi->ident);
3243
3244 for (i = 0; i < host->n_ports; i++) {
3245 struct ata_port *ap = host->ports[i];
3246 struct ata_link *link;
3247 struct ata_device *dev;
3248
3249 ata_for_each_link(link, ap, EDGE)
3250 ata_for_each_dev(dev, link, ALL)
3251 dev->gtf_filter |= filter;
3252 }
3253}
Markus Trippelsdorf8e513212009-10-09 05:41:47 +02003254#else
3255static inline void ahci_gtf_filter_workaround(struct ata_host *host)
3256{}
3257#endif
Tejun Heof80ae7e2009-09-16 04:18:03 +09003258
Tejun Heo24dc5f32007-01-20 16:00:28 +09003259static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260{
3261 static int printed_version;
Tejun Heoe297d992008-06-10 00:13:04 +09003262 unsigned int board_id = ent->driver_data;
3263 struct ata_port_info pi = ahci_port_info[board_id];
Tejun Heo4447d352007-04-17 23:44:08 +09003264 const struct ata_port_info *ppi[] = { &pi, NULL };
Tejun Heo24dc5f32007-01-20 16:00:28 +09003265 struct device *dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 struct ahci_host_priv *hpriv;
Tejun Heo4447d352007-04-17 23:44:08 +09003267 struct ata_host *host;
Tejun Heo837f5f82008-02-06 15:13:51 +09003268 int n_ports, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
3270 VPRINTK("ENTER\n");
3271
Tejun Heo12fad3f2006-05-15 21:03:55 +09003272 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
3273
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05003275 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
Alan Cox5b66c822008-09-03 14:48:34 +01003277 /* The AHCI driver can only drive the SATA ports, the PATA driver
3278 can drive them all so if both drivers are selected make sure
3279 AHCI stays out of the way */
3280 if (pdev->vendor == PCI_VENDOR_ID_MARVELL && !marvell_enable)
3281 return -ENODEV;
3282
Mark Nelson7a022672009-11-22 12:07:41 +11003283 /* Promise's PDC42819 is a SAS/SATA controller that has an AHCI mode.
3284 * At the moment, we can only use the AHCI mode. Let the users know
3285 * that for SAS drives they're out of luck.
3286 */
3287 if (pdev->vendor == PCI_VENDOR_ID_PROMISE)
3288 dev_printk(KERN_INFO, &pdev->dev, "PDC42819 "
3289 "can only drive SATA devices with this driver\n");
3290
Tejun Heo4447d352007-04-17 23:44:08 +09003291 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09003292 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 if (rc)
3294 return rc;
3295
Tejun Heodea55132008-03-11 19:52:31 +09003296 /* AHCI controllers often implement SFF compatible interface.
3297 * Grab all PCI BARs just in case.
3298 */
3299 rc = pcim_iomap_regions_request_all(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003300 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003301 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003302 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003303 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Tejun Heoc4f77922007-12-06 15:09:43 +09003305 if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
3306 (pdev->device == 0x2652 || pdev->device == 0x2653)) {
3307 u8 map;
3308
3309 /* ICH6s share the same PCI ID for both piix and ahci
3310 * modes. Enabling ahci mode while MAP indicates
3311 * combined mode is a bad idea. Yield to ata_piix.
3312 */
3313 pci_read_config_byte(pdev, ICH_MAP, &map);
3314 if (map & 0x3) {
3315 dev_printk(KERN_INFO, &pdev->dev, "controller is in "
3316 "combined mode, can't enable AHCI mode\n");
3317 return -ENODEV;
3318 }
3319 }
3320
Tejun Heo24dc5f32007-01-20 16:00:28 +09003321 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
3322 if (!hpriv)
3323 return -ENOMEM;
Tejun Heo417a1a62007-09-23 13:19:55 +09003324 hpriv->flags |= (unsigned long)pi.private_data;
3325
Tejun Heoe297d992008-06-10 00:13:04 +09003326 /* MCP65 revision A1 and A2 can't do MSI */
3327 if (board_id == board_ahci_mcp65 &&
3328 (pdev->revision == 0xa1 || pdev->revision == 0xa2))
3329 hpriv->flags |= AHCI_HFLAG_NO_MSI;
3330
Shane Huange427fe02008-12-30 10:53:41 +08003331 /* SB800 does NOT need the workaround to ignore SERR_INTERNAL */
3332 if (board_id == board_ahci_sb700 && pdev->revision >= 0x40)
3333 hpriv->flags &= ~AHCI_HFLAG_IGN_SERR_INTERNAL;
3334
Tejun Heo2fcad9d2009-10-03 18:27:29 +09003335 /* only some SB600s can do 64bit DMA */
3336 if (ahci_sb600_enable_64bit(pdev))
3337 hpriv->flags &= ~AHCI_HFLAG_32BIT_ONLY;
Shane Huang58a09b32009-05-27 15:04:43 +08003338
Tejun Heo31b239a2009-09-17 00:34:39 +09003339 if ((hpriv->flags & AHCI_HFLAG_NO_MSI) || pci_enable_msi(pdev))
3340 pci_intx(pdev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
Anton Vorontsovd8993342010-03-03 20:17:34 +03003342 hpriv->mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
3343
Tejun Heo4447d352007-04-17 23:44:08 +09003344 /* save initial config */
Anton Vorontsov394d6e52010-03-03 20:17:36 +03003345 ahci_pci_save_initial_config(pdev, hpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Tejun Heo4447d352007-04-17 23:44:08 +09003347 /* prepare host */
Robert Hancock453d3132010-01-26 22:33:23 -06003348 if (hpriv->cap & HOST_CAP_NCQ) {
3349 pi.flags |= ATA_FLAG_NCQ;
3350 /* Auto-activate optimization is supposed to be supported on
3351 all AHCI controllers indicating NCQ support, but it seems
3352 to be broken at least on some NVIDIA MCP79 chipsets.
3353 Until we get info on which NVIDIA chipsets don't have this
3354 issue, if any, disable AA on all NVIDIA AHCIs. */
3355 if (pdev->vendor != PCI_VENDOR_ID_NVIDIA)
3356 pi.flags |= ATA_FLAG_FPDMA_AA;
3357 }
Tejun Heo4447d352007-04-17 23:44:08 +09003358
Tejun Heo7d50b602007-09-23 13:19:54 +09003359 if (hpriv->cap & HOST_CAP_PMP)
3360 pi.flags |= ATA_FLAG_PMP;
3361
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003362 if (ahci_em_messages && (hpriv->cap & HOST_CAP_EMS)) {
3363 u8 messages;
Anton Vorontsovd8993342010-03-03 20:17:34 +03003364 void __iomem *mmio = hpriv->mmio;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003365 u32 em_loc = readl(mmio + HOST_EM_LOC);
3366 u32 em_ctl = readl(mmio + HOST_EM_CTL);
3367
David Milburn87943ac2008-10-13 14:38:36 -05003368 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003369
3370 /* we only support LED message type right now */
3371 if ((messages & 0x01) && (ahci_em_messages == 1)) {
3372 /* store em_loc */
3373 hpriv->em_loc = ((em_loc >> 16) * 4);
3374 pi.flags |= ATA_FLAG_EM;
3375 if (!(em_ctl & EM_CTL_ALHD))
3376 pi.flags |= ATA_FLAG_SW_ACTIVITY;
3377 }
3378 }
3379
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01003380 if (ahci_broken_system_poweroff(pdev)) {
3381 pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN;
3382 dev_info(&pdev->dev,
3383 "quirky BIOS, skipping spindown on poweroff\n");
3384 }
3385
Tejun Heo9b10ae82009-05-30 20:50:12 +09003386 if (ahci_broken_suspend(pdev)) {
3387 hpriv->flags |= AHCI_HFLAG_NO_SUSPEND;
3388 dev_printk(KERN_WARNING, &pdev->dev,
3389 "BIOS update required for suspend/resume\n");
3390 }
3391
Tejun Heo55946392009-08-04 14:30:08 +09003392 if (ahci_broken_online(pdev)) {
3393 hpriv->flags |= AHCI_HFLAG_SRST_TOUT_IS_OFFLINE;
3394 dev_info(&pdev->dev,
3395 "online status unreliable, applying workaround\n");
3396 }
3397
Tejun Heo837f5f82008-02-06 15:13:51 +09003398 /* CAP.NP sometimes indicate the index of the last enabled
3399 * port, at other times, that of the last possible port, so
3400 * determining the maximum port number requires looking at
3401 * both CAP.NP and port_map.
3402 */
3403 n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));
3404
3405 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
Tejun Heo4447d352007-04-17 23:44:08 +09003406 if (!host)
3407 return -ENOMEM;
Tejun Heo4447d352007-04-17 23:44:08 +09003408 host->private_data = hpriv;
3409
Arjan van de Venf3d7f232009-01-26 02:05:44 -08003410 if (!(hpriv->cap & HOST_CAP_SSS) || ahci_ignore_sss)
Arjan van de Ven886ad092009-01-09 15:54:07 -08003411 host->flags |= ATA_HOST_PARALLEL_SCAN;
Arjan van de Venf3d7f232009-01-26 02:05:44 -08003412 else
3413 printk(KERN_INFO "ahci: SSS flag set, parallel bus scan disabled\n");
Arjan van de Ven886ad092009-01-09 15:54:07 -08003414
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003415 if (pi.flags & ATA_FLAG_EM)
3416 ahci_reset_em(host);
3417
Tejun Heo4447d352007-04-17 23:44:08 +09003418 for (i = 0; i < host->n_ports; i++) {
Jeff Garzikdab632e2007-05-28 08:33:01 -04003419 struct ata_port *ap = host->ports[i];
Tejun Heo4447d352007-04-17 23:44:08 +09003420
Tejun Heocbcdd872007-08-18 13:14:55 +09003421 ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar");
3422 ata_port_pbar_desc(ap, AHCI_PCI_BAR,
3423 0x100 + ap->port_no * 0x80, "port");
3424
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04003425 /* set initial link pm policy */
3426 ap->pm_policy = NOT_AVAILABLE;
3427
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07003428 /* set enclosure management message type */
3429 if (ap->flags & ATA_FLAG_EM)
3430 ap->em_message_type = ahci_em_messages;
3431
3432
Jeff Garzikdab632e2007-05-28 08:33:01 -04003433 /* disabled/not-implemented port */
Tejun Heo350756f2008-04-07 22:47:21 +09003434 if (!(hpriv->port_map & (1 << i)))
Jeff Garzikdab632e2007-05-28 08:33:01 -04003435 ap->ops = &ata_dummy_port_ops;
Tejun Heo4447d352007-04-17 23:44:08 +09003436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Tejun Heoedc93052007-10-25 14:59:16 +09003438 /* apply workaround for ASUS P5W DH Deluxe mainboard */
3439 ahci_p5wdh_workaround(host);
3440
Tejun Heof80ae7e2009-09-16 04:18:03 +09003441 /* apply gtf filter quirk */
3442 ahci_gtf_filter_workaround(host);
3443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09003445 rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003447 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448
Anton Vorontsov33030402010-03-03 20:17:39 +03003449 rc = ahci_pci_reset_controller(host);
Tejun Heo4447d352007-04-17 23:44:08 +09003450 if (rc)
3451 return rc;
Tejun Heo12fad3f2006-05-15 21:03:55 +09003452
Tejun Heo4447d352007-04-17 23:44:08 +09003453 ahci_init_controller(host);
3454 ahci_print_info(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Tejun Heo4447d352007-04-17 23:44:08 +09003456 pci_set_master(pdev);
3457 return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
3458 &ahci_sht);
Jeff Garzik907f4672005-05-12 15:03:42 -04003459}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
3461static int __init ahci_init(void)
3462{
Pavel Roskinb7887192006-08-10 18:13:18 +09003463 return pci_register_driver(&ahci_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464}
3465
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466static void __exit ahci_exit(void)
3467{
3468 pci_unregister_driver(&ahci_pci_driver);
3469}
3470
3471
3472MODULE_AUTHOR("Jeff Garzik");
3473MODULE_DESCRIPTION("AHCI SATA low-level driver");
3474MODULE_LICENSE("GPL");
3475MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04003476MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
3478module_init(ahci_init);
3479module_exit(ahci_exit);