blob: 838ff73b08e1d968c95c4a31c1c345a4669723db [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ahci.c - AHCI SATA support
3 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04004 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04008 * Copyright 2004-2005 Red Hat, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * AHCI hardware documentation:
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040031 * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 *
33 */
34
35#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/pci.h>
38#include <linux/init.h>
39#include <linux/blkdev.h>
40#include <linux/delay.h>
41#include <linux/interrupt.h>
domen@coderock.org87507cf2005-04-08 09:53:06 +020042#include <linux/dma-mapping.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050043#include <linux/device.h>
Tejun Heoedc93052007-10-25 14:59:16 +090044#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050046#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define DRV_NAME "ahci"
Tejun Heo7d50b602007-09-23 13:19:54 +090050#define DRV_VERSION "3.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Milburn87943ac2008-10-13 14:38:36 -050052/* Enclosure Management Control */
53#define EM_CTRL_MSG_TYPE 0x000f0000
54
55/* Enclosure Management LED Message Type */
56#define EM_MSG_LED_HBA_PORT 0x0000000f
57#define EM_MSG_LED_PMP_SLOT 0x0000ff00
58#define EM_MSG_LED_VALUE 0xffff0000
59#define EM_MSG_LED_VALUE_ACTIVITY 0x00070000
60#define EM_MSG_LED_VALUE_OFF 0xfff80000
61#define EM_MSG_LED_VALUE_ON 0x00010000
62
Tejun Heoa22e6442008-03-10 10:25:25 +090063static int ahci_skip_host_reset;
Arjan van de Venf3d7f232009-01-26 02:05:44 -080064static int ahci_ignore_sss;
65
Tejun Heoa22e6442008-03-10 10:25:25 +090066module_param_named(skip_host_reset, ahci_skip_host_reset, int, 0444);
67MODULE_PARM_DESC(skip_host_reset, "skip global host reset (0=don't skip, 1=skip)");
68
Arjan van de Venf3d7f232009-01-26 02:05:44 -080069module_param_named(ignore_sss, ahci_ignore_sss, int, 0444);
70MODULE_PARM_DESC(ignore_sss, "Ignore staggered spinup flag (0=don't ignore, 1=ignore)");
71
Kristen Carlson Accardi31556592007-10-25 01:33:26 -040072static int ahci_enable_alpm(struct ata_port *ap,
73 enum link_pm policy);
74static void ahci_disable_alpm(struct ata_port *ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -070075static ssize_t ahci_led_show(struct ata_port *ap, char *buf);
76static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
77 size_t size);
78static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
79 ssize_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81enum {
82 AHCI_PCI_BAR = 5,
Tejun Heo648a88b2006-11-09 15:08:40 +090083 AHCI_MAX_PORTS = 32,
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 AHCI_MAX_SG = 168, /* hardware max is 64K */
85 AHCI_DMA_BOUNDARY = 0xffffffff,
Tejun Heo12fad3f2006-05-15 21:03:55 +090086 AHCI_MAX_CMDS = 32,
Tejun Heodd410ff2006-05-15 21:03:50 +090087 AHCI_CMD_SZ = 32,
Tejun Heo12fad3f2006-05-15 21:03:55 +090088 AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 AHCI_RX_FIS_SZ = 256,
Jeff Garzika0ea7322005-06-04 01:13:15 -040090 AHCI_CMD_TBL_CDB = 0x40,
Tejun Heodd410ff2006-05-15 21:03:50 +090091 AHCI_CMD_TBL_HDR_SZ = 0x80,
92 AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16),
93 AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS,
94 AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ +
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 AHCI_RX_FIS_SZ,
96 AHCI_IRQ_ON_SG = (1 << 31),
97 AHCI_CMD_ATAPI = (1 << 5),
98 AHCI_CMD_WRITE = (1 << 6),
Tejun Heo4b10e552006-03-12 11:25:27 +090099 AHCI_CMD_PREFETCH = (1 << 7),
Tejun Heo22b49982006-01-23 21:38:44 +0900100 AHCI_CMD_RESET = (1 << 8),
101 AHCI_CMD_CLR_BUSY = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
Tejun Heo0291f952007-01-25 19:16:28 +0900104 RX_FIS_SDB = 0x58, /* offset of SDB FIS data */
Tejun Heo78cd52d2006-05-15 20:58:29 +0900105 RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 board_ahci = 0,
Tejun Heo7a234af2007-09-03 12:44:57 +0900108 board_ahci_vt8251 = 1,
109 board_ahci_ign_iferr = 2,
110 board_ahci_sb600 = 3,
111 board_ahci_mv = 4,
Shane Huange427fe02008-12-30 10:53:41 +0800112 board_ahci_sb700 = 5, /* for SB700 and SB800 */
Tejun Heoe297d992008-06-10 00:13:04 +0900113 board_ahci_mcp65 = 6,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400114 board_ahci_nopmp = 7,
Tejun Heoaa431dd2009-04-08 14:25:31 -0700115 board_ahci_yesncq = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 /* global controller registers */
118 HOST_CAP = 0x00, /* host capabilities */
119 HOST_CTL = 0x04, /* global host control */
120 HOST_IRQ_STAT = 0x08, /* interrupt status */
121 HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
122 HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700123 HOST_EM_LOC = 0x1c, /* Enclosure Management location */
124 HOST_EM_CTL = 0x20, /* Enclosure Management Control */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* HOST_CTL bits */
127 HOST_RESET = (1 << 0), /* reset controller; self-clear */
128 HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
129 HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
130
131 /* HOST_CAP bits */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700132 HOST_CAP_EMS = (1 << 6), /* Enclosure Management support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900133 HOST_CAP_SSC = (1 << 14), /* Slumber capable */
Tejun Heo7d50b602007-09-23 13:19:54 +0900134 HOST_CAP_PMP = (1 << 17), /* Port Multiplier support */
Tejun Heo22b49982006-01-23 21:38:44 +0900135 HOST_CAP_CLO = (1 << 24), /* Command List Override support */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400136 HOST_CAP_ALPM = (1 << 26), /* Aggressive Link PM support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900137 HOST_CAP_SSS = (1 << 27), /* Staggered Spin-up */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900138 HOST_CAP_SNTF = (1 << 29), /* SNotification register */
Tejun Heo979db802006-05-15 21:03:52 +0900139 HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */
Tejun Heodd410ff2006-05-15 21:03:50 +0900140 HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 /* registers for each SATA port */
143 PORT_LST_ADDR = 0x00, /* command list DMA addr */
144 PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
145 PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
146 PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
147 PORT_IRQ_STAT = 0x10, /* interrupt status */
148 PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
149 PORT_CMD = 0x18, /* port command */
150 PORT_TFDATA = 0x20, /* taskfile data */
151 PORT_SIG = 0x24, /* device TF signature */
152 PORT_CMD_ISSUE = 0x38, /* command issue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
154 PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
155 PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
156 PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900157 PORT_SCR_NTF = 0x3c, /* SATA phy register: SNotification */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* PORT_IRQ_{STAT,MASK} bits */
160 PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
161 PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
162 PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
163 PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
164 PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
165 PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
166 PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
167 PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
168
169 PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
170 PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
171 PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
172 PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
173 PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
174 PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
175 PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
176 PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
177 PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
178
Tejun Heo78cd52d2006-05-15 20:58:29 +0900179 PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR |
180 PORT_IRQ_IF_ERR |
181 PORT_IRQ_CONNECT |
Tejun Heo42969712006-05-31 18:28:18 +0900182 PORT_IRQ_PHYRDY |
Tejun Heo7d50b602007-09-23 13:19:54 +0900183 PORT_IRQ_UNK_FIS |
184 PORT_IRQ_BAD_PMP,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900185 PORT_IRQ_ERROR = PORT_IRQ_FREEZE |
186 PORT_IRQ_TF_ERR |
187 PORT_IRQ_HBUS_DATA_ERR,
188 DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
189 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS |
190 PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /* PORT_CMD bits */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400193 PORT_CMD_ASP = (1 << 27), /* Aggressive Slumber/Partial */
194 PORT_CMD_ALPE = (1 << 26), /* Aggressive Link PM enable */
Jeff Garzik02eaa662005-11-12 01:32:19 -0500195 PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
Tejun Heo7d50b602007-09-23 13:19:54 +0900196 PORT_CMD_PMP = (1 << 17), /* PMP attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
198 PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
199 PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
Tejun Heo22b49982006-01-23 21:38:44 +0900200 PORT_CMD_CLO = (1 << 3), /* Command list override */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
202 PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
203 PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
204
Tejun Heo0be0aa92006-07-26 15:59:26 +0900205 PORT_CMD_ICC_MASK = (0xf << 28), /* i/f ICC state mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
207 PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
208 PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
Jeff Garzik4b0060f2005-06-04 00:50:22 -0400209
Tejun Heo417a1a62007-09-23 13:19:55 +0900210 /* hpriv->flags bits */
211 AHCI_HFLAG_NO_NCQ = (1 << 0),
212 AHCI_HFLAG_IGN_IRQ_IF_ERR = (1 << 1), /* ignore IRQ_IF_ERR */
213 AHCI_HFLAG_IGN_SERR_INTERNAL = (1 << 2), /* ignore SERR_INTERNAL */
214 AHCI_HFLAG_32BIT_ONLY = (1 << 3), /* force 32bit */
215 AHCI_HFLAG_MV_PATA = (1 << 4), /* PATA port */
216 AHCI_HFLAG_NO_MSI = (1 << 5), /* no PCI MSI */
Tejun Heo6949b912007-09-23 13:19:55 +0900217 AHCI_HFLAG_NO_PMP = (1 << 6), /* no PMP */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400218 AHCI_HFLAG_NO_HOTPLUG = (1 << 7), /* ignore PxSERR.DIAG.N */
Jeff Garzika8785392008-02-28 15:43:48 -0500219 AHCI_HFLAG_SECT255 = (1 << 8), /* max 255 sectors */
Tejun Heoe297d992008-06-10 00:13:04 +0900220 AHCI_HFLAG_YES_NCQ = (1 << 9), /* force NCQ cap on */
Tejun Heo9b10ae82009-05-30 20:50:12 +0900221 AHCI_HFLAG_NO_SUSPEND = (1 << 10), /* don't suspend */
Tejun Heo417a1a62007-09-23 13:19:55 +0900222
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200223 /* ap->flags bits */
Tejun Heo1188c0d2007-04-23 02:41:05 +0900224
225 AHCI_FLAG_COMMON = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
226 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400227 ATA_FLAG_ACPI_SATA | ATA_FLAG_AN |
228 ATA_FLAG_IPM,
Tejun Heoc4f77922007-12-06 15:09:43 +0900229
230 ICH_MAP = 0x90, /* ICH MAP register */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700231
Tejun Heod50ce072009-05-12 10:57:41 +0900232 /* em constants */
233 EM_MAX_SLOTS = 8,
234 EM_MAX_RETRY = 5,
235
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700236 /* em_ctl bits */
237 EM_CTL_RST = (1 << 9), /* Reset */
238 EM_CTL_TM = (1 << 8), /* Transmit Message */
239 EM_CTL_ALHD = (1 << 26), /* Activity LED */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
242struct ahci_cmd_hdr {
Al Viro4ca4e432007-12-30 09:32:22 +0000243 __le32 opts;
244 __le32 status;
245 __le32 tbl_addr;
246 __le32 tbl_addr_hi;
247 __le32 reserved[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248};
249
250struct ahci_sg {
Al Viro4ca4e432007-12-30 09:32:22 +0000251 __le32 addr;
252 __le32 addr_hi;
253 __le32 reserved;
254 __le32 flags_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255};
256
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700257struct ahci_em_priv {
258 enum sw_activity blink_policy;
259 struct timer_list timer;
260 unsigned long saved_activity;
261 unsigned long activity;
262 unsigned long led_state;
263};
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265struct ahci_host_priv {
Tejun Heo417a1a62007-09-23 13:19:55 +0900266 unsigned int flags; /* AHCI_HFLAG_* */
Tejun Heod447df12007-03-18 22:15:33 +0900267 u32 cap; /* cap to use */
268 u32 port_map; /* port map to use */
269 u32 saved_cap; /* saved initial cap */
270 u32 saved_port_map; /* saved initial port_map */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700271 u32 em_loc; /* enclosure management location */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272};
273
274struct ahci_port_priv {
Tejun Heo7d50b602007-09-23 13:19:54 +0900275 struct ata_link *active_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 struct ahci_cmd_hdr *cmd_slot;
277 dma_addr_t cmd_slot_dma;
278 void *cmd_tbl;
279 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 void *rx_fis;
281 dma_addr_t rx_fis_dma;
Tejun Heo0291f952007-01-25 19:16:28 +0900282 /* for NCQ spurious interrupt analysis */
Tejun Heo0291f952007-01-25 19:16:28 +0900283 unsigned int ncq_saw_d2h:1;
284 unsigned int ncq_saw_dmas:1;
Tejun Heoafb2d552007-02-27 13:24:19 +0900285 unsigned int ncq_saw_sdb:1;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -0700286 u32 intr_mask; /* interrupts to enable */
Tejun Heod50ce072009-05-12 10:57:41 +0900287 /* enclosure management info per PM slot */
288 struct ahci_em_priv em_priv[EM_MAX_SLOTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289};
290
Tejun Heo82ef04f2008-07-31 17:02:40 +0900291static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
292static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400293static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900294static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900295static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296static int ahci_port_start(struct ata_port *ap);
297static void ahci_port_stop(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298static void ahci_qc_prep(struct ata_queued_cmd *qc);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900299static void ahci_freeze(struct ata_port *ap);
300static void ahci_thaw(struct ata_port *ap);
Tejun Heo7d50b602007-09-23 13:19:54 +0900301static void ahci_pmp_attach(struct ata_port *ap);
302static void ahci_pmp_detach(struct ata_port *ap);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900303static int ahci_softreset(struct ata_link *link, unsigned int *class,
304 unsigned long deadline);
Shane Huangbd172432008-06-10 15:52:04 +0800305static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
306 unsigned long deadline);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900307static int ahci_hardreset(struct ata_link *link, unsigned int *class,
308 unsigned long deadline);
309static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
310 unsigned long deadline);
311static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
312 unsigned long deadline);
313static void ahci_postreset(struct ata_link *link, unsigned int *class);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900314static void ahci_error_handler(struct ata_port *ap);
315static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -0400316static int ahci_port_resume(struct ata_port *ap);
Jeff Garzika8785392008-02-28 15:43:48 -0500317static void ahci_dev_config(struct ata_device *dev);
Jeff Garzikdab632e2007-05-28 08:33:01 -0400318static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
319 u32 opts);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900320#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900321static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
Tejun Heoc1332872006-07-26 15:59:26 +0900322static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
323static int ahci_pci_device_resume(struct pci_dev *pdev);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900324#endif
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700325static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
326static ssize_t ahci_activity_store(struct ata_device *dev,
327 enum sw_activity val);
328static void ahci_init_sw_activity(struct ata_link *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Tony Jonesee959b02008-02-22 00:13:36 +0100330static struct device_attribute *ahci_shost_attrs[] = {
331 &dev_attr_link_power_management_policy,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700332 &dev_attr_em_message_type,
333 &dev_attr_em_message,
334 NULL
335};
336
337static struct device_attribute *ahci_sdev_attrs[] = {
338 &dev_attr_sw_activity,
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200339 &dev_attr_unload_heads,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400340 NULL
341};
342
Jeff Garzik193515d2005-11-07 00:59:37 -0500343static struct scsi_host_template ahci_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900344 ATA_NCQ_SHT(DRV_NAME),
Tejun Heo12fad3f2006-05-15 21:03:55 +0900345 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 .dma_boundary = AHCI_DMA_BOUNDARY,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400348 .shost_attrs = ahci_shost_attrs,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700349 .sdev_attrs = ahci_sdev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350};
351
Tejun Heo029cfd62008-03-25 12:22:49 +0900352static struct ata_port_operations ahci_ops = {
353 .inherits = &sata_pmp_port_ops,
354
Tejun Heo7d50b602007-09-23 13:19:54 +0900355 .qc_defer = sata_pmp_qc_defer_cmd_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 .qc_prep = ahci_qc_prep,
357 .qc_issue = ahci_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900358 .qc_fill_rtf = ahci_qc_fill_rtf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Tejun Heo78cd52d2006-05-15 20:58:29 +0900360 .freeze = ahci_freeze,
361 .thaw = ahci_thaw,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900362 .softreset = ahci_softreset,
363 .hardreset = ahci_hardreset,
364 .postreset = ahci_postreset,
Tejun Heo071f44b2008-04-07 22:47:22 +0900365 .pmp_softreset = ahci_softreset,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900366 .error_handler = ahci_error_handler,
367 .post_internal_cmd = ahci_post_internal_cmd,
Tejun Heo029cfd62008-03-25 12:22:49 +0900368 .dev_config = ahci_dev_config,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900369
Tejun Heo029cfd62008-03-25 12:22:49 +0900370 .scr_read = ahci_scr_read,
371 .scr_write = ahci_scr_write,
Tejun Heo7d50b602007-09-23 13:19:54 +0900372 .pmp_attach = ahci_pmp_attach,
373 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900374
Tejun Heo029cfd62008-03-25 12:22:49 +0900375 .enable_pm = ahci_enable_alpm,
376 .disable_pm = ahci_disable_alpm,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700377 .em_show = ahci_led_show,
378 .em_store = ahci_led_store,
379 .sw_activity_show = ahci_activity_show,
380 .sw_activity_store = ahci_activity_store,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900381#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900382 .port_suspend = ahci_port_suspend,
383 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900384#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 .port_start = ahci_port_start,
386 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387};
388
Tejun Heo029cfd62008-03-25 12:22:49 +0900389static struct ata_port_operations ahci_vt8251_ops = {
390 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900391 .hardreset = ahci_vt8251_hardreset,
Tejun Heoad616ff2006-11-01 18:00:24 +0900392};
393
Tejun Heo029cfd62008-03-25 12:22:49 +0900394static struct ata_port_operations ahci_p5wdh_ops = {
395 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900396 .hardreset = ahci_p5wdh_hardreset,
Tejun Heoedc93052007-10-25 14:59:16 +0900397};
398
Shane Huangbd172432008-06-10 15:52:04 +0800399static struct ata_port_operations ahci_sb600_ops = {
400 .inherits = &ahci_ops,
401 .softreset = ahci_sb600_softreset,
402 .pmp_softreset = ahci_sb600_softreset,
403};
404
Tejun Heo417a1a62007-09-23 13:19:55 +0900405#define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
406
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100407static const struct ata_port_info ahci_port_info[] = {
Jeff Garzik4da646b2009-04-08 02:00:13 -0400408 [board_ahci] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 {
Tejun Heo1188c0d2007-04-23 02:41:05 +0900410 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100411 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400412 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 .port_ops = &ahci_ops,
414 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400415 [board_ahci_vt8251] =
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200416 {
Tejun Heo6949b912007-09-23 13:19:55 +0900417 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900418 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100419 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400420 .udma_mask = ATA_UDMA6,
Tejun Heoad616ff2006-11-01 18:00:24 +0900421 .port_ops = &ahci_vt8251_ops,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200422 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400423 [board_ahci_ign_iferr] =
Tejun Heo41669552006-11-29 11:33:14 +0900424 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900425 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR),
426 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100427 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400428 .udma_mask = ATA_UDMA6,
Tejun Heo41669552006-11-29 11:33:14 +0900429 .port_ops = &ahci_ops,
430 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400431 [board_ahci_sb600] =
Conke Hu55a61602007-03-27 18:33:05 +0800432 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900433 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
Shane Huang58a09b32009-05-27 15:04:43 +0800434 AHCI_HFLAG_NO_MSI | AHCI_HFLAG_SECT255),
Tejun Heo417a1a62007-09-23 13:19:55 +0900435 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100436 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400437 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800438 .port_ops = &ahci_sb600_ops,
Conke Hu55a61602007-03-27 18:33:05 +0800439 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400440 [board_ahci_mv] =
Jeff Garzikcd70c262007-07-08 02:29:42 -0400441 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900442 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI |
Tejun Heo17248462008-08-29 16:03:59 +0200443 AHCI_HFLAG_MV_PATA | AHCI_HFLAG_NO_PMP),
Jeff Garzikcd70c262007-07-08 02:29:42 -0400444 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo417a1a62007-09-23 13:19:55 +0900445 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100446 .pio_mask = ATA_PIO4,
Jeff Garzikcd70c262007-07-08 02:29:42 -0400447 .udma_mask = ATA_UDMA6,
448 .port_ops = &ahci_ops,
449 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400450 [board_ahci_sb700] = /* for SB700 and SB800 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800451 {
Shane Huangbd172432008-06-10 15:52:04 +0800452 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL),
Shane Huange39fc8c2008-02-22 05:00:31 -0800453 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100454 .pio_mask = ATA_PIO4,
Shane Huange39fc8c2008-02-22 05:00:31 -0800455 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800456 .port_ops = &ahci_sb600_ops,
Shane Huange39fc8c2008-02-22 05:00:31 -0800457 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400458 [board_ahci_mcp65] =
Tejun Heoe297d992008-06-10 00:13:04 +0900459 {
460 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
461 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100462 .pio_mask = ATA_PIO4,
Tejun Heoe297d992008-06-10 00:13:04 +0900463 .udma_mask = ATA_UDMA6,
464 .port_ops = &ahci_ops,
465 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400466 [board_ahci_nopmp] =
Tejun Heo9a3b1032008-06-18 20:56:58 -0400467 {
468 AHCI_HFLAGS (AHCI_HFLAG_NO_PMP),
469 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100470 .pio_mask = ATA_PIO4,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400471 .udma_mask = ATA_UDMA6,
472 .port_ops = &ahci_ops,
473 },
Tejun Heoaa431dd2009-04-08 14:25:31 -0700474 /* board_ahci_yesncq */
475 {
476 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
477 .flags = AHCI_FLAG_COMMON,
478 .pio_mask = ATA_PIO4,
479 .udma_mask = ATA_UDMA6,
480 .port_ops = &ahci_ops,
481 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482};
483
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500484static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400485 /* Intel */
Jeff Garzik54bb3a92006-09-27 22:20:11 -0400486 { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
487 { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
488 { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
489 { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
490 { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
Tejun Heo82490c02007-01-23 15:13:39 +0900491 { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
Jeff Garzik54bb3a92006-09-27 22:20:11 -0400492 { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
493 { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
494 { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
495 { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
Tejun Heo7a234af2007-09-03 12:44:57 +0900496 { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */
497 { PCI_VDEVICE(INTEL, 0x2822), board_ahci }, /* ICH8 */
498 { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */
499 { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */
500 { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */
501 { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */
502 { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */
503 { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */
504 { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */
505 { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */
506 { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */
507 { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */
508 { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */
509 { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */
510 { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */
511 { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */
512 { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */
Jason Gastond4155e62007-09-20 17:35:00 -0400513 { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */
514 { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800515 { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */
Mark Goodwinb2dde6a2009-06-26 10:44:11 -0500516 { PCI_VDEVICE(INTEL, 0x3a22), board_ahci }, /* ICH10 */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800517 { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */
David Milburnc1f57d92009-07-22 15:15:56 -0500518 { PCI_VDEVICE(INTEL, 0x3b22), board_ahci }, /* PCH AHCI */
519 { PCI_VDEVICE(INTEL, 0x3b23), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700520 { PCI_VDEVICE(INTEL, 0x3b24), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700521 { PCI_VDEVICE(INTEL, 0x3b25), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500522 { PCI_VDEVICE(INTEL, 0x3b29), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700523 { PCI_VDEVICE(INTEL, 0x3b2b), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700524 { PCI_VDEVICE(INTEL, 0x3b2c), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500525 { PCI_VDEVICE(INTEL, 0x3b2f), board_ahci }, /* PCH AHCI */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400526
Tejun Heoe34bb372007-02-26 20:24:03 +0900527 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
528 { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
529 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400530
531 /* ATI */
Conke Huc65ec1c2007-04-11 18:23:14 +0800532 { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800533 { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb700 }, /* ATI SB700/800 */
534 { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb700 }, /* ATI SB700/800 */
535 { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb700 }, /* ATI SB700/800 */
536 { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb700 }, /* ATI SB700/800 */
537 { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb700 }, /* ATI SB700/800 */
538 { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb700 }, /* ATI SB700/800 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400539
540 /* VIA */
Jeff Garzik54bb3a92006-09-27 22:20:11 -0400541 { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
Tejun Heobf335542007-04-11 17:27:14 +0900542 { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400543
544 /* NVIDIA */
Tejun Heoe297d992008-06-10 00:13:04 +0900545 { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci_mcp65 }, /* MCP65 */
546 { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci_mcp65 }, /* MCP65 */
547 { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci_mcp65 }, /* MCP65 */
548 { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci_mcp65 }, /* MCP65 */
549 { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci_mcp65 }, /* MCP65 */
550 { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci_mcp65 }, /* MCP65 */
551 { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci_mcp65 }, /* MCP65 */
552 { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci_mcp65 }, /* MCP65 */
Tejun Heoaa431dd2009-04-08 14:25:31 -0700553 { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci_yesncq }, /* MCP67 */
554 { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci_yesncq }, /* MCP67 */
555 { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci_yesncq }, /* MCP67 */
556 { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci_yesncq }, /* MCP67 */
557 { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci_yesncq }, /* MCP67 */
558 { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci_yesncq }, /* MCP67 */
559 { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci_yesncq }, /* MCP67 */
560 { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci_yesncq }, /* MCP67 */
561 { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci_yesncq }, /* MCP67 */
562 { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci_yesncq }, /* MCP67 */
563 { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci_yesncq }, /* MCP67 */
564 { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci_yesncq }, /* MCP67 */
565 { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci_yesncq }, /* MCP73 */
566 { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci_yesncq }, /* MCP73 */
567 { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci_yesncq }, /* MCP73 */
568 { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci_yesncq }, /* MCP73 */
569 { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci_yesncq }, /* MCP73 */
570 { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci_yesncq }, /* MCP73 */
571 { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci_yesncq }, /* MCP73 */
572 { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci_yesncq }, /* MCP73 */
573 { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci_yesncq }, /* MCP73 */
574 { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci_yesncq }, /* MCP73 */
575 { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci_yesncq }, /* MCP73 */
576 { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci_yesncq }, /* MCP73 */
Peer Chen0522b282007-06-07 18:05:12 +0800577 { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */
578 { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */
579 { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */
580 { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */
581 { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */
582 { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */
583 { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */
584 { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */
585 { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */
586 { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
587 { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
588 { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
peerchen6ba86952007-12-03 22:20:37 +0800589 { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */
590 { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */
591 { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */
592 { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */
Peer Chen71008192007-09-24 10:16:25 +0800593 { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */
594 { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */
595 { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */
596 { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */
597 { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */
598 { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */
599 { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */
600 { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */
peerchen7adbe462009-02-27 16:58:41 +0800601 { PCI_VDEVICE(NVIDIA, 0x0d84), board_ahci }, /* MCP89 */
602 { PCI_VDEVICE(NVIDIA, 0x0d85), board_ahci }, /* MCP89 */
603 { PCI_VDEVICE(NVIDIA, 0x0d86), board_ahci }, /* MCP89 */
604 { PCI_VDEVICE(NVIDIA, 0x0d87), board_ahci }, /* MCP89 */
605 { PCI_VDEVICE(NVIDIA, 0x0d88), board_ahci }, /* MCP89 */
606 { PCI_VDEVICE(NVIDIA, 0x0d89), board_ahci }, /* MCP89 */
607 { PCI_VDEVICE(NVIDIA, 0x0d8a), board_ahci }, /* MCP89 */
608 { PCI_VDEVICE(NVIDIA, 0x0d8b), board_ahci }, /* MCP89 */
609 { PCI_VDEVICE(NVIDIA, 0x0d8c), board_ahci }, /* MCP89 */
610 { PCI_VDEVICE(NVIDIA, 0x0d8d), board_ahci }, /* MCP89 */
611 { PCI_VDEVICE(NVIDIA, 0x0d8e), board_ahci }, /* MCP89 */
612 { PCI_VDEVICE(NVIDIA, 0x0d8f), board_ahci }, /* MCP89 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400613
Jeff Garzik95916ed2006-07-29 04:10:14 -0400614 /* SiS */
Tejun Heo20e2de42008-08-01 12:51:43 +0900615 { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */
616 { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 968 */
617 { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */
Jeff Garzik95916ed2006-07-29 04:10:14 -0400618
Jeff Garzikcd70c262007-07-08 02:29:42 -0400619 /* Marvell */
620 { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100621 { PCI_VDEVICE(MARVELL, 0x6121), board_ahci_mv }, /* 6121 */
Jeff Garzikcd70c262007-07-08 02:29:42 -0400622
Mark Nelsonc77a0362008-10-23 14:08:16 +1100623 /* Promise */
624 { PCI_VDEVICE(PROMISE, 0x3f20), board_ahci }, /* PDC42819 */
625
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500626 /* Generic, PCI class code for AHCI */
627 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Conke Huc9f89472007-01-09 05:32:51 -0500628 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 { } /* terminate list */
631};
632
633
634static struct pci_driver ahci_pci_driver = {
635 .name = DRV_NAME,
636 .id_table = ahci_pci_tbl,
637 .probe = ahci_init_one,
Tejun Heo24dc5f32007-01-20 16:00:28 +0900638 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900639#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900640 .suspend = ahci_pci_device_suspend,
641 .resume = ahci_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900642#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643};
644
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700645static int ahci_em_messages = 1;
646module_param(ahci_em_messages, int, 0444);
647/* add other LED protocol types when they become supported */
648MODULE_PARM_DESC(ahci_em_messages,
649 "Set AHCI Enclosure Management Message type (0 = disabled, 1 = LED");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Alan Cox5b66c822008-09-03 14:48:34 +0100651#if defined(CONFIG_PATA_MARVELL) || defined(CONFIG_PATA_MARVELL_MODULE)
652static int marvell_enable;
653#else
654static int marvell_enable = 1;
655#endif
656module_param(marvell_enable, int, 0644);
657MODULE_PARM_DESC(marvell_enable, "Marvell SATA via AHCI (1 = enabled)");
658
659
Tejun Heo98fa4b62006-11-02 12:17:23 +0900660static inline int ahci_nr_ports(u32 cap)
661{
662 return (cap & 0x1f) + 1;
663}
664
Jeff Garzikdab632e2007-05-28 08:33:01 -0400665static inline void __iomem *__ahci_port_base(struct ata_host *host,
666 unsigned int port_no)
667{
668 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
669
670 return mmio + 0x100 + (port_no * 0x80);
671}
672
Tejun Heo4447d352007-04-17 23:44:08 +0900673static inline void __iomem *ahci_port_base(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Jeff Garzikdab632e2007-05-28 08:33:01 -0400675 return __ahci_port_base(ap->host, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Tejun Heob710a1f2008-01-05 23:11:57 +0900678static void ahci_enable_ahci(void __iomem *mmio)
679{
Tejun Heo15fe9822008-04-23 20:52:58 +0900680 int i;
Tejun Heob710a1f2008-01-05 23:11:57 +0900681 u32 tmp;
682
683 /* turn on AHCI_EN */
684 tmp = readl(mmio + HOST_CTL);
Tejun Heo15fe9822008-04-23 20:52:58 +0900685 if (tmp & HOST_AHCI_EN)
686 return;
687
688 /* Some controllers need AHCI_EN to be written multiple times.
689 * Try a few times before giving up.
690 */
691 for (i = 0; i < 5; i++) {
Tejun Heob710a1f2008-01-05 23:11:57 +0900692 tmp |= HOST_AHCI_EN;
693 writel(tmp, mmio + HOST_CTL);
694 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
Tejun Heo15fe9822008-04-23 20:52:58 +0900695 if (tmp & HOST_AHCI_EN)
696 return;
697 msleep(10);
Tejun Heob710a1f2008-01-05 23:11:57 +0900698 }
Tejun Heo15fe9822008-04-23 20:52:58 +0900699
700 WARN_ON(1);
Tejun Heob710a1f2008-01-05 23:11:57 +0900701}
702
Tejun Heod447df12007-03-18 22:15:33 +0900703/**
704 * ahci_save_initial_config - Save and fixup initial config values
Tejun Heo4447d352007-04-17 23:44:08 +0900705 * @pdev: target PCI device
Tejun Heo4447d352007-04-17 23:44:08 +0900706 * @hpriv: host private area to store config values
Tejun Heod447df12007-03-18 22:15:33 +0900707 *
708 * Some registers containing configuration info might be setup by
709 * BIOS and might be cleared on reset. This function saves the
710 * initial values of those registers into @hpriv such that they
711 * can be restored after controller reset.
712 *
713 * If inconsistent, config values are fixed up by this function.
714 *
715 * LOCKING:
716 * None.
717 */
Tejun Heo4447d352007-04-17 23:44:08 +0900718static void ahci_save_initial_config(struct pci_dev *pdev,
Tejun Heo4447d352007-04-17 23:44:08 +0900719 struct ahci_host_priv *hpriv)
Tejun Heod447df12007-03-18 22:15:33 +0900720{
Tejun Heo4447d352007-04-17 23:44:08 +0900721 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +0900722 u32 cap, port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900723 int i;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100724 int mv;
Tejun Heod447df12007-03-18 22:15:33 +0900725
Tejun Heob710a1f2008-01-05 23:11:57 +0900726 /* make sure AHCI mode is enabled before accessing CAP */
727 ahci_enable_ahci(mmio);
728
Tejun Heod447df12007-03-18 22:15:33 +0900729 /* Values prefixed with saved_ are written back to host after
730 * reset. Values without are used for driver operation.
731 */
732 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
733 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
734
Tejun Heo274c1fd2007-07-16 14:29:40 +0900735 /* some chips have errata preventing 64bit use */
Tejun Heo417a1a62007-09-23 13:19:55 +0900736 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Tejun Heoc7a42152007-05-18 16:23:19 +0200737 dev_printk(KERN_INFO, &pdev->dev,
738 "controller can't do 64bit DMA, forcing 32bit\n");
739 cap &= ~HOST_CAP_64;
740 }
741
Tejun Heo417a1a62007-09-23 13:19:55 +0900742 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Tejun Heo274c1fd2007-07-16 14:29:40 +0900743 dev_printk(KERN_INFO, &pdev->dev,
744 "controller can't do NCQ, turning off CAP_NCQ\n");
745 cap &= ~HOST_CAP_NCQ;
746 }
747
Tejun Heoe297d992008-06-10 00:13:04 +0900748 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
749 dev_printk(KERN_INFO, &pdev->dev,
750 "controller can do NCQ, turning on CAP_NCQ\n");
751 cap |= HOST_CAP_NCQ;
752 }
753
Roel Kluin258cd842008-03-09 21:42:40 +0100754 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Tejun Heo6949b912007-09-23 13:19:55 +0900755 dev_printk(KERN_INFO, &pdev->dev,
756 "controller can't do PMP, turning off CAP_PMP\n");
757 cap &= ~HOST_CAP_PMP;
758 }
759
Tejun Heod799e082008-06-17 12:46:30 +0900760 if (pdev->vendor == PCI_VENDOR_ID_JMICRON && pdev->device == 0x2361 &&
761 port_map != 1) {
762 dev_printk(KERN_INFO, &pdev->dev,
763 "JMB361 has only one port, port_map 0x%x -> 0x%x\n",
764 port_map, 1);
765 port_map = 1;
766 }
767
Jeff Garzikcd70c262007-07-08 02:29:42 -0400768 /*
769 * Temporary Marvell 6145 hack: PATA port presence
770 * is asserted through the standard AHCI port
771 * presence register, as bit 4 (counting from 0)
772 */
Tejun Heo417a1a62007-09-23 13:19:55 +0900773 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100774 if (pdev->device == 0x6121)
775 mv = 0x3;
776 else
777 mv = 0xf;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400778 dev_printk(KERN_ERR, &pdev->dev,
779 "MV_AHCI HACK: port_map %x -> %x\n",
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100780 port_map,
781 port_map & mv);
Alan Cox5b66c822008-09-03 14:48:34 +0100782 dev_printk(KERN_ERR, &pdev->dev,
783 "Disabling your PATA port. Use the boot option 'ahci.marvell_enable=0' to avoid this.\n");
Jeff Garzikcd70c262007-07-08 02:29:42 -0400784
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100785 port_map &= mv;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400786 }
787
Tejun Heo17199b12007-03-18 22:26:53 +0900788 /* cross check port_map and cap.n_ports */
Tejun Heo7a234af2007-09-03 12:44:57 +0900789 if (port_map) {
Tejun Heo837f5f82008-02-06 15:13:51 +0900790 int map_ports = 0;
Tejun Heo17199b12007-03-18 22:26:53 +0900791
Tejun Heo837f5f82008-02-06 15:13:51 +0900792 for (i = 0; i < AHCI_MAX_PORTS; i++)
793 if (port_map & (1 << i))
794 map_ports++;
Tejun Heo17199b12007-03-18 22:26:53 +0900795
Tejun Heo837f5f82008-02-06 15:13:51 +0900796 /* If PI has more ports than n_ports, whine, clear
797 * port_map and let it be generated from n_ports.
Tejun Heo17199b12007-03-18 22:26:53 +0900798 */
Tejun Heo837f5f82008-02-06 15:13:51 +0900799 if (map_ports > ahci_nr_ports(cap)) {
Tejun Heo4447d352007-04-17 23:44:08 +0900800 dev_printk(KERN_WARNING, &pdev->dev,
Tejun Heo837f5f82008-02-06 15:13:51 +0900801 "implemented port map (0x%x) contains more "
802 "ports than nr_ports (%u), using nr_ports\n",
803 port_map, ahci_nr_ports(cap));
Tejun Heo7a234af2007-09-03 12:44:57 +0900804 port_map = 0;
805 }
806 }
807
808 /* fabricate port_map from cap.nr_ports */
809 if (!port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900810 port_map = (1 << ahci_nr_ports(cap)) - 1;
Tejun Heo7a234af2007-09-03 12:44:57 +0900811 dev_printk(KERN_WARNING, &pdev->dev,
812 "forcing PORTS_IMPL to 0x%x\n", port_map);
813
814 /* write the fixed up value to the PI register */
815 hpriv->saved_port_map = port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900816 }
817
Tejun Heod447df12007-03-18 22:15:33 +0900818 /* record values to use during operation */
819 hpriv->cap = cap;
820 hpriv->port_map = port_map;
821}
822
823/**
824 * ahci_restore_initial_config - Restore initial config
Tejun Heo4447d352007-04-17 23:44:08 +0900825 * @host: target ATA host
Tejun Heod447df12007-03-18 22:15:33 +0900826 *
827 * Restore initial config stored by ahci_save_initial_config().
828 *
829 * LOCKING:
830 * None.
831 */
Tejun Heo4447d352007-04-17 23:44:08 +0900832static void ahci_restore_initial_config(struct ata_host *host)
Tejun Heod447df12007-03-18 22:15:33 +0900833{
Tejun Heo4447d352007-04-17 23:44:08 +0900834 struct ahci_host_priv *hpriv = host->private_data;
835 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
836
Tejun Heod447df12007-03-18 22:15:33 +0900837 writel(hpriv->saved_cap, mmio + HOST_CAP);
838 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
839 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
840}
841
Tejun Heo203ef6c2007-07-16 14:29:40 +0900842static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900844 static const int offset[] = {
845 [SCR_STATUS] = PORT_SCR_STAT,
846 [SCR_CONTROL] = PORT_SCR_CTL,
847 [SCR_ERROR] = PORT_SCR_ERR,
848 [SCR_ACTIVE] = PORT_SCR_ACT,
849 [SCR_NOTIFICATION] = PORT_SCR_NTF,
850 };
851 struct ahci_host_priv *hpriv = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Tejun Heo203ef6c2007-07-16 14:29:40 +0900853 if (sc_reg < ARRAY_SIZE(offset) &&
854 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
855 return offset[sc_reg];
Tejun Heoda3dbb12007-07-16 14:29:40 +0900856 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
Tejun Heo82ef04f2008-07-31 17:02:40 +0900859static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Tejun Heo82ef04f2008-07-31 17:02:40 +0900861 void __iomem *port_mmio = ahci_port_base(link->ap);
862 int offset = ahci_scr_offset(link->ap, sc_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Tejun Heo203ef6c2007-07-16 14:29:40 +0900864 if (offset) {
865 *val = readl(port_mmio + offset);
866 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
Tejun Heo203ef6c2007-07-16 14:29:40 +0900868 return -EINVAL;
869}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Tejun Heo82ef04f2008-07-31 17:02:40 +0900871static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
Tejun Heo203ef6c2007-07-16 14:29:40 +0900872{
Tejun Heo82ef04f2008-07-31 17:02:40 +0900873 void __iomem *port_mmio = ahci_port_base(link->ap);
874 int offset = ahci_scr_offset(link->ap, sc_reg);
Tejun Heo203ef6c2007-07-16 14:29:40 +0900875
876 if (offset) {
877 writel(val, port_mmio + offset);
878 return 0;
879 }
880 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Tejun Heo4447d352007-04-17 23:44:08 +0900883static void ahci_start_engine(struct ata_port *ap)
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900884{
Tejun Heo4447d352007-04-17 23:44:08 +0900885 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900886 u32 tmp;
887
Tejun Heod8fcd112006-07-26 15:59:25 +0900888 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +0900889 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900890 tmp |= PORT_CMD_START;
891 writel(tmp, port_mmio + PORT_CMD);
892 readl(port_mmio + PORT_CMD); /* flush */
893}
894
Tejun Heo4447d352007-04-17 23:44:08 +0900895static int ahci_stop_engine(struct ata_port *ap)
Tejun Heo254950c2006-07-26 15:59:25 +0900896{
Tejun Heo4447d352007-04-17 23:44:08 +0900897 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo254950c2006-07-26 15:59:25 +0900898 u32 tmp;
899
900 tmp = readl(port_mmio + PORT_CMD);
901
Tejun Heod8fcd112006-07-26 15:59:25 +0900902 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900903 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
904 return 0;
905
Tejun Heod8fcd112006-07-26 15:59:25 +0900906 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900907 tmp &= ~PORT_CMD_START;
908 writel(tmp, port_mmio + PORT_CMD);
909
Tejun Heod8fcd112006-07-26 15:59:25 +0900910 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +0900911 tmp = ata_wait_register(port_mmio + PORT_CMD,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400912 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +0900913 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +0900914 return -EIO;
915
916 return 0;
917}
918
Tejun Heo4447d352007-04-17 23:44:08 +0900919static void ahci_start_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900920{
Tejun Heo4447d352007-04-17 23:44:08 +0900921 void __iomem *port_mmio = ahci_port_base(ap);
922 struct ahci_host_priv *hpriv = ap->host->private_data;
923 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo0be0aa92006-07-26 15:59:26 +0900924 u32 tmp;
925
926 /* set FIS registers */
Tejun Heo4447d352007-04-17 23:44:08 +0900927 if (hpriv->cap & HOST_CAP_64)
928 writel((pp->cmd_slot_dma >> 16) >> 16,
929 port_mmio + PORT_LST_ADDR_HI);
930 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900931
Tejun Heo4447d352007-04-17 23:44:08 +0900932 if (hpriv->cap & HOST_CAP_64)
933 writel((pp->rx_fis_dma >> 16) >> 16,
934 port_mmio + PORT_FIS_ADDR_HI);
935 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900936
937 /* enable FIS reception */
938 tmp = readl(port_mmio + PORT_CMD);
939 tmp |= PORT_CMD_FIS_RX;
940 writel(tmp, port_mmio + PORT_CMD);
941
942 /* flush */
943 readl(port_mmio + PORT_CMD);
944}
945
Tejun Heo4447d352007-04-17 23:44:08 +0900946static int ahci_stop_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900947{
Tejun Heo4447d352007-04-17 23:44:08 +0900948 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900949 u32 tmp;
950
951 /* disable FIS reception */
952 tmp = readl(port_mmio + PORT_CMD);
953 tmp &= ~PORT_CMD_FIS_RX;
954 writel(tmp, port_mmio + PORT_CMD);
955
956 /* wait for completion, spec says 500ms, give it 1000 */
957 tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
958 PORT_CMD_FIS_ON, 10, 1000);
959 if (tmp & PORT_CMD_FIS_ON)
960 return -EBUSY;
961
962 return 0;
963}
964
Tejun Heo4447d352007-04-17 23:44:08 +0900965static void ahci_power_up(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900966{
Tejun Heo4447d352007-04-17 23:44:08 +0900967 struct ahci_host_priv *hpriv = ap->host->private_data;
968 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900969 u32 cmd;
970
971 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
972
973 /* spin up device */
Tejun Heo4447d352007-04-17 23:44:08 +0900974 if (hpriv->cap & HOST_CAP_SSS) {
Tejun Heo0be0aa92006-07-26 15:59:26 +0900975 cmd |= PORT_CMD_SPIN_UP;
976 writel(cmd, port_mmio + PORT_CMD);
977 }
978
979 /* wake up link */
980 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
981}
982
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400983static void ahci_disable_alpm(struct ata_port *ap)
984{
985 struct ahci_host_priv *hpriv = ap->host->private_data;
986 void __iomem *port_mmio = ahci_port_base(ap);
987 u32 cmd;
988 struct ahci_port_priv *pp = ap->private_data;
989
990 /* IPM bits should be disabled by libata-core */
991 /* get the existing command bits */
992 cmd = readl(port_mmio + PORT_CMD);
993
994 /* disable ALPM and ASP */
995 cmd &= ~PORT_CMD_ASP;
996 cmd &= ~PORT_CMD_ALPE;
997
998 /* force the interface back to active */
999 cmd |= PORT_CMD_ICC_ACTIVE;
1000
1001 /* write out new cmd value */
1002 writel(cmd, port_mmio + PORT_CMD);
1003 cmd = readl(port_mmio + PORT_CMD);
1004
1005 /* wait 10ms to be sure we've come out of any low power state */
1006 msleep(10);
1007
1008 /* clear out any PhyRdy stuff from interrupt status */
1009 writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT);
1010
1011 /* go ahead and clean out PhyRdy Change from Serror too */
Tejun Heo82ef04f2008-07-31 17:02:40 +09001012 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001013
1014 /*
1015 * Clear flag to indicate that we should ignore all PhyRdy
1016 * state changes
1017 */
1018 hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG;
1019
1020 /*
1021 * Enable interrupts on Phy Ready.
1022 */
1023 pp->intr_mask |= PORT_IRQ_PHYRDY;
1024 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1025
1026 /*
1027 * don't change the link pm policy - we can be called
1028 * just to turn of link pm temporarily
1029 */
1030}
1031
1032static int ahci_enable_alpm(struct ata_port *ap,
1033 enum link_pm policy)
1034{
1035 struct ahci_host_priv *hpriv = ap->host->private_data;
1036 void __iomem *port_mmio = ahci_port_base(ap);
1037 u32 cmd;
1038 struct ahci_port_priv *pp = ap->private_data;
1039 u32 asp;
1040
1041 /* Make sure the host is capable of link power management */
1042 if (!(hpriv->cap & HOST_CAP_ALPM))
1043 return -EINVAL;
1044
1045 switch (policy) {
1046 case MAX_PERFORMANCE:
1047 case NOT_AVAILABLE:
1048 /*
1049 * if we came here with NOT_AVAILABLE,
1050 * it just means this is the first time we
1051 * have tried to enable - default to max performance,
1052 * and let the user go to lower power modes on request.
1053 */
1054 ahci_disable_alpm(ap);
1055 return 0;
1056 case MIN_POWER:
1057 /* configure HBA to enter SLUMBER */
1058 asp = PORT_CMD_ASP;
1059 break;
1060 case MEDIUM_POWER:
1061 /* configure HBA to enter PARTIAL */
1062 asp = 0;
1063 break;
1064 default:
1065 return -EINVAL;
1066 }
1067
1068 /*
1069 * Disable interrupts on Phy Ready. This keeps us from
1070 * getting woken up due to spurious phy ready interrupts
1071 * TBD - Hot plug should be done via polling now, is
1072 * that even supported?
1073 */
1074 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
1075 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1076
1077 /*
1078 * Set a flag to indicate that we should ignore all PhyRdy
1079 * state changes since these can happen now whenever we
1080 * change link state
1081 */
1082 hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG;
1083
1084 /* get the existing command bits */
1085 cmd = readl(port_mmio + PORT_CMD);
1086
1087 /*
1088 * Set ASP based on Policy
1089 */
1090 cmd |= asp;
1091
1092 /*
1093 * Setting this bit will instruct the HBA to aggressively
1094 * enter a lower power link state when it's appropriate and
1095 * based on the value set above for ASP
1096 */
1097 cmd |= PORT_CMD_ALPE;
1098
1099 /* write out new cmd value */
1100 writel(cmd, port_mmio + PORT_CMD);
1101 cmd = readl(port_mmio + PORT_CMD);
1102
1103 /* IPM bits should be set by libata-core */
1104 return 0;
1105}
1106
Tejun Heo438ac6d2007-03-02 17:31:26 +09001107#ifdef CONFIG_PM
Tejun Heo4447d352007-04-17 23:44:08 +09001108static void ahci_power_down(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001109{
Tejun Heo4447d352007-04-17 23:44:08 +09001110 struct ahci_host_priv *hpriv = ap->host->private_data;
1111 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001112 u32 cmd, scontrol;
1113
Tejun Heo4447d352007-04-17 23:44:08 +09001114 if (!(hpriv->cap & HOST_CAP_SSS))
Tejun Heo07c53da2007-01-21 02:10:11 +09001115 return;
1116
1117 /* put device into listen mode, first set PxSCTL.DET to 0 */
1118 scontrol = readl(port_mmio + PORT_SCR_CTL);
1119 scontrol &= ~0xf;
1120 writel(scontrol, port_mmio + PORT_SCR_CTL);
1121
1122 /* then set PxCMD.SUD to 0 */
Tejun Heo0be0aa92006-07-26 15:59:26 +09001123 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
Tejun Heo07c53da2007-01-21 02:10:11 +09001124 cmd &= ~PORT_CMD_SPIN_UP;
1125 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001126}
Tejun Heo438ac6d2007-03-02 17:31:26 +09001127#endif
Tejun Heo0be0aa92006-07-26 15:59:26 +09001128
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001129static void ahci_start_port(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001130{
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001131 struct ahci_port_priv *pp = ap->private_data;
1132 struct ata_link *link;
1133 struct ahci_em_priv *emp;
David Milburn4c1e9aa2009-04-03 15:36:41 -05001134 ssize_t rc;
1135 int i;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001136
Tejun Heo0be0aa92006-07-26 15:59:26 +09001137 /* enable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001138 ahci_start_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001139
1140 /* enable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001141 ahci_start_engine(ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001142
1143 /* turn on LEDs */
1144 if (ap->flags & ATA_FLAG_EM) {
Tejun Heo1eca4362008-11-03 20:03:17 +09001145 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001146 emp = &pp->em_priv[link->pmp];
David Milburn4c1e9aa2009-04-03 15:36:41 -05001147
1148 /* EM Transmit bit maybe busy during init */
Tejun Heod50ce072009-05-12 10:57:41 +09001149 for (i = 0; i < EM_MAX_RETRY; i++) {
David Milburn4c1e9aa2009-04-03 15:36:41 -05001150 rc = ahci_transmit_led_message(ap,
1151 emp->led_state,
1152 4);
1153 if (rc == -EBUSY)
Tejun Heod50ce072009-05-12 10:57:41 +09001154 msleep(1);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001155 else
1156 break;
1157 }
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001158 }
1159 }
1160
1161 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
Tejun Heo1eca4362008-11-03 20:03:17 +09001162 ata_for_each_link(link, ap, EDGE)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001163 ahci_init_sw_activity(link);
1164
Tejun Heo0be0aa92006-07-26 15:59:26 +09001165}
1166
Tejun Heo4447d352007-04-17 23:44:08 +09001167static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001168{
1169 int rc;
1170
1171 /* disable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001172 rc = ahci_stop_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001173 if (rc) {
1174 *emsg = "failed to stop engine";
1175 return rc;
1176 }
1177
1178 /* disable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001179 rc = ahci_stop_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001180 if (rc) {
1181 *emsg = "failed stop FIS RX";
1182 return rc;
1183 }
1184
Tejun Heo0be0aa92006-07-26 15:59:26 +09001185 return 0;
1186}
1187
Tejun Heo4447d352007-04-17 23:44:08 +09001188static int ahci_reset_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001189{
Tejun Heo4447d352007-04-17 23:44:08 +09001190 struct pci_dev *pdev = to_pci_dev(host->dev);
Tejun Heo49f29092007-11-19 16:03:44 +09001191 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001192 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +09001193 u32 tmp;
Tejun Heod91542c2006-07-26 15:59:26 +09001194
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001195 /* we must be in AHCI mode, before using anything
1196 * AHCI-specific, such as HOST_RESET.
1197 */
Tejun Heob710a1f2008-01-05 23:11:57 +09001198 ahci_enable_ahci(mmio);
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001199
1200 /* global controller reset */
Tejun Heoa22e6442008-03-10 10:25:25 +09001201 if (!ahci_skip_host_reset) {
1202 tmp = readl(mmio + HOST_CTL);
1203 if ((tmp & HOST_RESET) == 0) {
1204 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1205 readl(mmio + HOST_CTL); /* flush */
1206 }
Tejun Heod91542c2006-07-26 15:59:26 +09001207
Zhang Rui24920c82008-07-04 13:32:17 +08001208 /*
1209 * to perform host reset, OS should set HOST_RESET
1210 * and poll until this bit is read to be "0".
1211 * reset must complete within 1 second, or
Tejun Heoa22e6442008-03-10 10:25:25 +09001212 * the hardware should be considered fried.
1213 */
Zhang Rui24920c82008-07-04 13:32:17 +08001214 tmp = ata_wait_register(mmio + HOST_CTL, HOST_RESET,
1215 HOST_RESET, 10, 1000);
Tejun Heod91542c2006-07-26 15:59:26 +09001216
Tejun Heoa22e6442008-03-10 10:25:25 +09001217 if (tmp & HOST_RESET) {
1218 dev_printk(KERN_ERR, host->dev,
1219 "controller reset failed (0x%x)\n", tmp);
1220 return -EIO;
1221 }
Tejun Heod91542c2006-07-26 15:59:26 +09001222
Tejun Heoa22e6442008-03-10 10:25:25 +09001223 /* turn on AHCI mode */
1224 ahci_enable_ahci(mmio);
Tejun Heo98fa4b62006-11-02 12:17:23 +09001225
Tejun Heoa22e6442008-03-10 10:25:25 +09001226 /* Some registers might be cleared on reset. Restore
1227 * initial values.
1228 */
1229 ahci_restore_initial_config(host);
1230 } else
1231 dev_printk(KERN_INFO, host->dev,
1232 "skipping global host reset\n");
Tejun Heod91542c2006-07-26 15:59:26 +09001233
1234 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1235 u16 tmp16;
1236
1237 /* configure PCS */
1238 pci_read_config_word(pdev, 0x92, &tmp16);
Tejun Heo49f29092007-11-19 16:03:44 +09001239 if ((tmp16 & hpriv->port_map) != hpriv->port_map) {
1240 tmp16 |= hpriv->port_map;
1241 pci_write_config_word(pdev, 0x92, tmp16);
1242 }
Tejun Heod91542c2006-07-26 15:59:26 +09001243 }
1244
1245 return 0;
1246}
1247
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001248static void ahci_sw_activity(struct ata_link *link)
1249{
1250 struct ata_port *ap = link->ap;
1251 struct ahci_port_priv *pp = ap->private_data;
1252 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1253
1254 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
1255 return;
1256
1257 emp->activity++;
1258 if (!timer_pending(&emp->timer))
1259 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
1260}
1261
1262static void ahci_sw_activity_blink(unsigned long arg)
1263{
1264 struct ata_link *link = (struct ata_link *)arg;
1265 struct ata_port *ap = link->ap;
1266 struct ahci_port_priv *pp = ap->private_data;
1267 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1268 unsigned long led_message = emp->led_state;
1269 u32 activity_led_state;
David Milburneb409632008-10-16 09:26:19 -05001270 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001271
David Milburn87943ac2008-10-13 14:38:36 -05001272 led_message &= EM_MSG_LED_VALUE;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001273 led_message |= ap->port_no | (link->pmp << 8);
1274
1275 /* check to see if we've had activity. If so,
1276 * toggle state of LED and reset timer. If not,
1277 * turn LED to desired idle state.
1278 */
David Milburneb409632008-10-16 09:26:19 -05001279 spin_lock_irqsave(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001280 if (emp->saved_activity != emp->activity) {
1281 emp->saved_activity = emp->activity;
1282 /* get the current LED state */
David Milburn87943ac2008-10-13 14:38:36 -05001283 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001284
1285 if (activity_led_state)
1286 activity_led_state = 0;
1287 else
1288 activity_led_state = 1;
1289
1290 /* clear old state */
David Milburn87943ac2008-10-13 14:38:36 -05001291 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001292
1293 /* toggle state */
1294 led_message |= (activity_led_state << 16);
1295 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
1296 } else {
1297 /* switch to idle */
David Milburn87943ac2008-10-13 14:38:36 -05001298 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001299 if (emp->blink_policy == BLINK_OFF)
1300 led_message |= (1 << 16);
1301 }
David Milburneb409632008-10-16 09:26:19 -05001302 spin_unlock_irqrestore(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001303 ahci_transmit_led_message(ap, led_message, 4);
1304}
1305
1306static void ahci_init_sw_activity(struct ata_link *link)
1307{
1308 struct ata_port *ap = link->ap;
1309 struct ahci_port_priv *pp = ap->private_data;
1310 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1311
1312 /* init activity stats, setup timer */
1313 emp->saved_activity = emp->activity = 0;
1314 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
1315
1316 /* check our blink policy and set flag for link if it's enabled */
1317 if (emp->blink_policy)
1318 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1319}
1320
1321static int ahci_reset_em(struct ata_host *host)
1322{
1323 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
1324 u32 em_ctl;
1325
1326 em_ctl = readl(mmio + HOST_EM_CTL);
1327 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1328 return -EINVAL;
1329
1330 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1331 return 0;
1332}
1333
1334static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1335 ssize_t size)
1336{
1337 struct ahci_host_priv *hpriv = ap->host->private_data;
1338 struct ahci_port_priv *pp = ap->private_data;
1339 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
1340 u32 em_ctl;
1341 u32 message[] = {0, 0};
Linus Torvalds93082f02008-07-25 10:56:36 -07001342 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001343 int pmp;
1344 struct ahci_em_priv *emp;
1345
1346 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001347 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001348 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001349 emp = &pp->em_priv[pmp];
1350 else
1351 return -EINVAL;
1352
1353 spin_lock_irqsave(ap->lock, flags);
1354
1355 /*
1356 * if we are still busy transmitting a previous message,
1357 * do not allow
1358 */
1359 em_ctl = readl(mmio + HOST_EM_CTL);
1360 if (em_ctl & EM_CTL_TM) {
1361 spin_unlock_irqrestore(ap->lock, flags);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001362 return -EBUSY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001363 }
1364
1365 /*
1366 * create message header - this is all zero except for
1367 * the message size, which is 4 bytes.
1368 */
1369 message[0] |= (4 << 8);
1370
1371 /* ignore 0:4 of byte zero, fill in port info yourself */
David Milburn87943ac2008-10-13 14:38:36 -05001372 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001373
1374 /* write message to EM_LOC */
1375 writel(message[0], mmio + hpriv->em_loc);
1376 writel(message[1], mmio + hpriv->em_loc+4);
1377
1378 /* save off new led state for port/slot */
David Milburn208f2a82009-03-20 14:14:23 -05001379 emp->led_state = state;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001380
1381 /*
1382 * tell hardware to transmit the message
1383 */
1384 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1385
1386 spin_unlock_irqrestore(ap->lock, flags);
1387 return size;
1388}
1389
1390static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1391{
1392 struct ahci_port_priv *pp = ap->private_data;
1393 struct ata_link *link;
1394 struct ahci_em_priv *emp;
1395 int rc = 0;
1396
Tejun Heo1eca4362008-11-03 20:03:17 +09001397 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001398 emp = &pp->em_priv[link->pmp];
1399 rc += sprintf(buf, "%lx\n", emp->led_state);
1400 }
1401 return rc;
1402}
1403
1404static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1405 size_t size)
1406{
1407 int state;
1408 int pmp;
1409 struct ahci_port_priv *pp = ap->private_data;
1410 struct ahci_em_priv *emp;
1411
1412 state = simple_strtoul(buf, NULL, 0);
1413
1414 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001415 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001416 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001417 emp = &pp->em_priv[pmp];
1418 else
1419 return -EINVAL;
1420
1421 /* mask off the activity bits if we are in sw_activity
1422 * mode, user should turn off sw_activity before setting
1423 * activity led through em_message
1424 */
1425 if (emp->blink_policy)
David Milburn87943ac2008-10-13 14:38:36 -05001426 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001427
1428 return ahci_transmit_led_message(ap, state, size);
1429}
1430
1431static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1432{
1433 struct ata_link *link = dev->link;
1434 struct ata_port *ap = link->ap;
1435 struct ahci_port_priv *pp = ap->private_data;
1436 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1437 u32 port_led_state = emp->led_state;
1438
1439 /* save the desired Activity LED behavior */
1440 if (val == OFF) {
1441 /* clear LFLAG */
1442 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1443
1444 /* set the LED to OFF */
David Milburn87943ac2008-10-13 14:38:36 -05001445 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001446 port_led_state |= (ap->port_no | (link->pmp << 8));
1447 ahci_transmit_led_message(ap, port_led_state, 4);
1448 } else {
1449 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1450 if (val == BLINK_OFF) {
1451 /* set LED to ON for idle */
David Milburn87943ac2008-10-13 14:38:36 -05001452 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001453 port_led_state |= (ap->port_no | (link->pmp << 8));
David Milburn87943ac2008-10-13 14:38:36 -05001454 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001455 ahci_transmit_led_message(ap, port_led_state, 4);
1456 }
1457 }
1458 emp->blink_policy = val;
1459 return 0;
1460}
1461
1462static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1463{
1464 struct ata_link *link = dev->link;
1465 struct ata_port *ap = link->ap;
1466 struct ahci_port_priv *pp = ap->private_data;
1467 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1468
1469 /* display the saved value of activity behavior for this
1470 * disk.
1471 */
1472 return sprintf(buf, "%d\n", emp->blink_policy);
1473}
1474
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001475static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap,
1476 int port_no, void __iomem *mmio,
1477 void __iomem *port_mmio)
1478{
1479 const char *emsg = NULL;
1480 int rc;
1481 u32 tmp;
1482
1483 /* make sure port is not active */
1484 rc = ahci_deinit_port(ap, &emsg);
1485 if (rc)
1486 dev_printk(KERN_WARNING, &pdev->dev,
1487 "%s (%d)\n", emsg, rc);
1488
1489 /* clear SError */
1490 tmp = readl(port_mmio + PORT_SCR_ERR);
1491 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1492 writel(tmp, port_mmio + PORT_SCR_ERR);
1493
1494 /* clear port IRQ */
1495 tmp = readl(port_mmio + PORT_IRQ_STAT);
1496 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1497 if (tmp)
1498 writel(tmp, port_mmio + PORT_IRQ_STAT);
1499
1500 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1501}
1502
Tejun Heo4447d352007-04-17 23:44:08 +09001503static void ahci_init_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001504{
Tejun Heo417a1a62007-09-23 13:19:55 +09001505 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001506 struct pci_dev *pdev = to_pci_dev(host->dev);
1507 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001508 int i;
Jeff Garzikcd70c262007-07-08 02:29:42 -04001509 void __iomem *port_mmio;
Tejun Heod91542c2006-07-26 15:59:26 +09001510 u32 tmp;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001511 int mv;
Tejun Heod91542c2006-07-26 15:59:26 +09001512
Tejun Heo417a1a62007-09-23 13:19:55 +09001513 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001514 if (pdev->device == 0x6121)
1515 mv = 2;
1516 else
1517 mv = 4;
1518 port_mmio = __ahci_port_base(host, mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -04001519
1520 writel(0, port_mmio + PORT_IRQ_MASK);
1521
1522 /* clear port IRQ */
1523 tmp = readl(port_mmio + PORT_IRQ_STAT);
1524 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1525 if (tmp)
1526 writel(tmp, port_mmio + PORT_IRQ_STAT);
1527 }
1528
Tejun Heo4447d352007-04-17 23:44:08 +09001529 for (i = 0; i < host->n_ports; i++) {
1530 struct ata_port *ap = host->ports[i];
Tejun Heod91542c2006-07-26 15:59:26 +09001531
Jeff Garzikcd70c262007-07-08 02:29:42 -04001532 port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09001533 if (ata_port_is_dummy(ap))
Tejun Heod91542c2006-07-26 15:59:26 +09001534 continue;
Tejun Heod91542c2006-07-26 15:59:26 +09001535
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001536 ahci_port_init(pdev, ap, i, mmio, port_mmio);
Tejun Heod91542c2006-07-26 15:59:26 +09001537 }
1538
1539 tmp = readl(mmio + HOST_CTL);
1540 VPRINTK("HOST_CTL 0x%x\n", tmp);
1541 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1542 tmp = readl(mmio + HOST_CTL);
1543 VPRINTK("HOST_CTL 0x%x\n", tmp);
1544}
1545
Jeff Garzika8785392008-02-28 15:43:48 -05001546static void ahci_dev_config(struct ata_device *dev)
1547{
1548 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1549
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001550 if (hpriv->flags & AHCI_HFLAG_SECT255) {
Jeff Garzika8785392008-02-28 15:43:48 -05001551 dev->max_sectors = 255;
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001552 ata_dev_printk(dev, KERN_INFO,
1553 "SB600 AHCI: limiting to 255 sectors per cmd\n");
1554 }
Jeff Garzika8785392008-02-28 15:43:48 -05001555}
1556
Tejun Heo422b7592005-12-19 22:37:17 +09001557static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Tejun Heo4447d352007-04-17 23:44:08 +09001559 void __iomem *port_mmio = ahci_port_base(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +09001561 u32 tmp;
1562
1563 tmp = readl(port_mmio + PORT_SIG);
1564 tf.lbah = (tmp >> 24) & 0xff;
1565 tf.lbam = (tmp >> 16) & 0xff;
1566 tf.lbal = (tmp >> 8) & 0xff;
1567 tf.nsect = (tmp) & 0xff;
1568
1569 return ata_dev_classify(&tf);
1570}
1571
Tejun Heo12fad3f2006-05-15 21:03:55 +09001572static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1573 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +09001574{
Tejun Heo12fad3f2006-05-15 21:03:55 +09001575 dma_addr_t cmd_tbl_dma;
1576
1577 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1578
1579 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1580 pp->cmd_slot[tag].status = 0;
1581 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1582 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +09001583}
1584
Tejun Heod2e75df2007-07-16 14:29:39 +09001585static int ahci_kick_engine(struct ata_port *ap, int force_restart)
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001586{
Tejun Heo350756f2008-04-07 22:47:21 +09001587 void __iomem *port_mmio = ahci_port_base(ap);
Jeff Garzikcca39742006-08-24 03:19:22 -04001588 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo520d06f2008-04-07 22:47:21 +09001589 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001590 u32 tmp;
Tejun Heod2e75df2007-07-16 14:29:39 +09001591 int busy, rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001592
Tejun Heod2e75df2007-07-16 14:29:39 +09001593 /* do we need to kick the port? */
Tejun Heo520d06f2008-04-07 22:47:21 +09001594 busy = status & (ATA_BUSY | ATA_DRQ);
Tejun Heod2e75df2007-07-16 14:29:39 +09001595 if (!busy && !force_restart)
1596 return 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001597
Tejun Heod2e75df2007-07-16 14:29:39 +09001598 /* stop engine */
1599 rc = ahci_stop_engine(ap);
1600 if (rc)
1601 goto out_restart;
1602
1603 /* need to do CLO? */
1604 if (!busy) {
1605 rc = 0;
1606 goto out_restart;
1607 }
1608
1609 if (!(hpriv->cap & HOST_CAP_CLO)) {
1610 rc = -EOPNOTSUPP;
1611 goto out_restart;
1612 }
1613
1614 /* perform CLO */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001615 tmp = readl(port_mmio + PORT_CMD);
1616 tmp |= PORT_CMD_CLO;
1617 writel(tmp, port_mmio + PORT_CMD);
1618
Tejun Heod2e75df2007-07-16 14:29:39 +09001619 rc = 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001620 tmp = ata_wait_register(port_mmio + PORT_CMD,
1621 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1622 if (tmp & PORT_CMD_CLO)
Tejun Heod2e75df2007-07-16 14:29:39 +09001623 rc = -EIO;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001624
Tejun Heod2e75df2007-07-16 14:29:39 +09001625 /* restart engine */
1626 out_restart:
1627 ahci_start_engine(ap);
1628 return rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001629}
1630
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001631static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1632 struct ata_taskfile *tf, int is_cmd, u16 flags,
1633 unsigned long timeout_msec)
1634{
1635 const u32 cmd_fis_len = 5; /* five dwords */
1636 struct ahci_port_priv *pp = ap->private_data;
1637 void __iomem *port_mmio = ahci_port_base(ap);
1638 u8 *fis = pp->cmd_tbl;
1639 u32 tmp;
1640
1641 /* prep the command */
1642 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1643 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1644
1645 /* issue & wait */
1646 writel(1, port_mmio + PORT_CMD_ISSUE);
1647
1648 if (timeout_msec) {
1649 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1,
1650 1, timeout_msec);
1651 if (tmp & 0x1) {
1652 ahci_kick_engine(ap, 1);
1653 return -EBUSY;
1654 }
1655 } else
1656 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1657
1658 return 0;
1659}
1660
Shane Huangbd172432008-06-10 15:52:04 +08001661static int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1662 int pmp, unsigned long deadline,
1663 int (*check_ready)(struct ata_link *link))
Tejun Heo4658f792006-03-22 21:07:03 +09001664{
Tejun Heocc0680a2007-08-06 18:36:23 +09001665 struct ata_port *ap = link->ap;
Tejun Heo4658f792006-03-22 21:07:03 +09001666 const char *reason = NULL;
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001667 unsigned long now, msecs;
Tejun Heo4658f792006-03-22 21:07:03 +09001668 struct ata_taskfile tf;
Tejun Heo4658f792006-03-22 21:07:03 +09001669 int rc;
1670
1671 DPRINTK("ENTER\n");
1672
1673 /* prepare for SRST (AHCI-1.1 10.4.1) */
Tejun Heod2e75df2007-07-16 14:29:39 +09001674 rc = ahci_kick_engine(ap, 1);
Tejun Heo994056d2007-12-06 15:02:48 +09001675 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09001676 ata_link_printk(link, KERN_WARNING,
Tejun Heo994056d2007-12-06 15:02:48 +09001677 "failed to reset engine (errno=%d)\n", rc);
Tejun Heo4658f792006-03-22 21:07:03 +09001678
Tejun Heocc0680a2007-08-06 18:36:23 +09001679 ata_tf_init(link->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +09001680
1681 /* issue the first D2H Register FIS */
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001682 msecs = 0;
1683 now = jiffies;
1684 if (time_after(now, deadline))
1685 msecs = jiffies_to_msecs(deadline - now);
1686
Tejun Heo4658f792006-03-22 21:07:03 +09001687 tf.ctl |= ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001688 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001689 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
Tejun Heo4658f792006-03-22 21:07:03 +09001690 rc = -EIO;
1691 reason = "1st FIS failed";
1692 goto fail;
1693 }
1694
1695 /* spec says at least 5us, but be generous and sleep for 1ms */
1696 msleep(1);
1697
1698 /* issue the second D2H Register FIS */
Tejun Heo4658f792006-03-22 21:07:03 +09001699 tf.ctl &= ~ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001700 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
Tejun Heo4658f792006-03-22 21:07:03 +09001701
Tejun Heo705e76b2008-04-07 22:47:19 +09001702 /* wait for link to become ready */
Shane Huangbd172432008-06-10 15:52:04 +08001703 rc = ata_wait_after_reset(link, deadline, check_ready);
Tejun Heo9b893912007-02-02 16:50:52 +09001704 /* link occupied, -ENODEV too is an error */
1705 if (rc) {
1706 reason = "device not ready";
1707 goto fail;
Tejun Heo4658f792006-03-22 21:07:03 +09001708 }
Tejun Heo9b893912007-02-02 16:50:52 +09001709 *class = ahci_dev_classify(ap);
Tejun Heo4658f792006-03-22 21:07:03 +09001710
1711 DPRINTK("EXIT, class=%u\n", *class);
1712 return 0;
1713
Tejun Heo4658f792006-03-22 21:07:03 +09001714 fail:
Tejun Heocc0680a2007-08-06 18:36:23 +09001715 ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +09001716 return rc;
1717}
1718
Shane Huangbd172432008-06-10 15:52:04 +08001719static int ahci_check_ready(struct ata_link *link)
1720{
1721 void __iomem *port_mmio = ahci_port_base(link->ap);
1722 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1723
1724 return ata_check_ready(status);
1725}
1726
1727static int ahci_softreset(struct ata_link *link, unsigned int *class,
1728 unsigned long deadline)
1729{
1730 int pmp = sata_srst_pmp(link);
1731
1732 DPRINTK("ENTER\n");
1733
1734 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1735}
1736
1737static int ahci_sb600_check_ready(struct ata_link *link)
1738{
1739 void __iomem *port_mmio = ahci_port_base(link->ap);
1740 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1741 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1742
1743 /*
1744 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1745 * which can save timeout delay.
1746 */
1747 if (irq_status & PORT_IRQ_BAD_PMP)
1748 return -EIO;
1749
1750 return ata_check_ready(status);
1751}
1752
1753static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
1754 unsigned long deadline)
1755{
1756 struct ata_port *ap = link->ap;
1757 void __iomem *port_mmio = ahci_port_base(ap);
1758 int pmp = sata_srst_pmp(link);
1759 int rc;
1760 u32 irq_sts;
1761
1762 DPRINTK("ENTER\n");
1763
1764 rc = ahci_do_softreset(link, class, pmp, deadline,
1765 ahci_sb600_check_ready);
1766
1767 /*
1768 * Soft reset fails on some ATI chips with IPMS set when PMP
1769 * is enabled but SATA HDD/ODD is connected to SATA port,
1770 * do soft reset again to port 0.
1771 */
1772 if (rc == -EIO) {
1773 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1774 if (irq_sts & PORT_IRQ_BAD_PMP) {
1775 ata_link_printk(link, KERN_WARNING,
Shane Huangb6931c12009-08-05 10:10:41 +08001776 "applying SB600 PMP SRST workaround "
1777 "and retrying\n");
Shane Huangbd172432008-06-10 15:52:04 +08001778 rc = ahci_do_softreset(link, class, 0, deadline,
1779 ahci_check_ready);
1780 }
1781 }
1782
1783 return rc;
1784}
1785
Tejun Heocc0680a2007-08-06 18:36:23 +09001786static int ahci_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001787 unsigned long deadline)
Tejun Heo422b7592005-12-19 22:37:17 +09001788{
Tejun Heo9dadd452008-04-07 22:47:19 +09001789 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heocc0680a2007-08-06 18:36:23 +09001790 struct ata_port *ap = link->ap;
Tejun Heo42969712006-05-31 18:28:18 +09001791 struct ahci_port_priv *pp = ap->private_data;
1792 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1793 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001794 bool online;
Tejun Heo4bd00f62006-02-11 16:26:02 +09001795 int rc;
1796
1797 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Tejun Heo4447d352007-04-17 23:44:08 +09001799 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +09001800
1801 /* clear D2H reception area to properly wait for D2H FIS */
Tejun Heocc0680a2007-08-06 18:36:23 +09001802 ata_tf_init(link->device, &tf);
Tejun Heodfd7a3d2007-01-26 15:37:20 +09001803 tf.command = 0x80;
Tejun Heo99771262007-07-16 14:29:38 +09001804 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
Tejun Heo42969712006-05-31 18:28:18 +09001805
Tejun Heo9dadd452008-04-07 22:47:19 +09001806 rc = sata_link_hardreset(link, timing, deadline, &online,
1807 ahci_check_ready);
Tejun Heo42969712006-05-31 18:28:18 +09001808
Tejun Heo4447d352007-04-17 23:44:08 +09001809 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Tejun Heo9dadd452008-04-07 22:47:19 +09001811 if (online)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001812 *class = ahci_dev_classify(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Tejun Heo4bd00f62006-02-11 16:26:02 +09001814 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1815 return rc;
1816}
1817
Tejun Heocc0680a2007-08-06 18:36:23 +09001818static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001819 unsigned long deadline)
Tejun Heoad616ff2006-11-01 18:00:24 +09001820{
Tejun Heocc0680a2007-08-06 18:36:23 +09001821 struct ata_port *ap = link->ap;
Tejun Heo9dadd452008-04-07 22:47:19 +09001822 bool online;
Tejun Heoad616ff2006-11-01 18:00:24 +09001823 int rc;
1824
1825 DPRINTK("ENTER\n");
1826
Tejun Heo4447d352007-04-17 23:44:08 +09001827 ahci_stop_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001828
Tejun Heocc0680a2007-08-06 18:36:23 +09001829 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001830 deadline, &online, NULL);
Tejun Heoad616ff2006-11-01 18:00:24 +09001831
Tejun Heo4447d352007-04-17 23:44:08 +09001832 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001833
1834 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1835
1836 /* vt8251 doesn't clear BSY on signature FIS reception,
1837 * request follow-up softreset.
1838 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001839 return online ? -EAGAIN : rc;
Tejun Heoad616ff2006-11-01 18:00:24 +09001840}
1841
Tejun Heoedc93052007-10-25 14:59:16 +09001842static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
1843 unsigned long deadline)
1844{
1845 struct ata_port *ap = link->ap;
1846 struct ahci_port_priv *pp = ap->private_data;
1847 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1848 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001849 bool online;
Tejun Heoedc93052007-10-25 14:59:16 +09001850 int rc;
1851
1852 ahci_stop_engine(ap);
1853
1854 /* clear D2H reception area to properly wait for D2H FIS */
1855 ata_tf_init(link->device, &tf);
1856 tf.command = 0x80;
1857 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1858
1859 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001860 deadline, &online, NULL);
Tejun Heoedc93052007-10-25 14:59:16 +09001861
1862 ahci_start_engine(ap);
1863
Tejun Heoedc93052007-10-25 14:59:16 +09001864 /* The pseudo configuration device on SIMG4726 attached to
1865 * ASUS P5W-DH Deluxe doesn't send signature FIS after
1866 * hardreset if no device is attached to the first downstream
1867 * port && the pseudo device locks up on SRST w/ PMP==0. To
1868 * work around this, wait for !BSY only briefly. If BSY isn't
1869 * cleared, perform CLO and proceed to IDENTIFY (achieved by
1870 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
1871 *
1872 * Wait for two seconds. Devices attached to downstream port
1873 * which can't process the following IDENTIFY after this will
1874 * have to be reset again. For most cases, this should
1875 * suffice while making probing snappish enough.
1876 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001877 if (online) {
1878 rc = ata_wait_after_reset(link, jiffies + 2 * HZ,
1879 ahci_check_ready);
1880 if (rc)
1881 ahci_kick_engine(ap, 0);
1882 }
Tejun Heo9dadd452008-04-07 22:47:19 +09001883 return rc;
Tejun Heoedc93052007-10-25 14:59:16 +09001884}
1885
Tejun Heocc0680a2007-08-06 18:36:23 +09001886static void ahci_postreset(struct ata_link *link, unsigned int *class)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001887{
Tejun Heocc0680a2007-08-06 18:36:23 +09001888 struct ata_port *ap = link->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09001889 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001890 u32 new_tmp, tmp;
1891
Tejun Heo203c75b2008-04-07 22:47:18 +09001892 ata_std_postreset(link, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -05001893
1894 /* Make sure port's ATAPI bit is set appropriately */
1895 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001896 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -05001897 new_tmp |= PORT_CMD_ATAPI;
1898 else
1899 new_tmp &= ~PORT_CMD_ATAPI;
1900 if (new_tmp != tmp) {
1901 writel(new_tmp, port_mmio + PORT_CMD);
1902 readl(port_mmio + PORT_CMD); /* flush */
1903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
Tejun Heo12fad3f2006-05-15 21:03:55 +09001906static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001908 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09001909 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1910 unsigned int si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 VPRINTK("ENTER\n");
1913
1914 /*
1915 * Next, the S/G list.
1916 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09001917 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001918 dma_addr_t addr = sg_dma_address(sg);
1919 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Tejun Heoff2aeb12007-12-05 16:43:11 +09001921 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1922 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1923 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
Jeff Garzik828d09d2005-11-12 01:27:07 -05001925
Tejun Heoff2aeb12007-12-05 16:43:11 +09001926 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
1929static void ahci_qc_prep(struct ata_queued_cmd *qc)
1930{
Jeff Garzika0ea7322005-06-04 01:13:15 -04001931 struct ata_port *ap = qc->ap;
1932 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo405e66b2007-11-27 19:28:53 +09001933 int is_atapi = ata_is_atapi(qc->tf.protocol);
Tejun Heo12fad3f2006-05-15 21:03:55 +09001934 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 u32 opts;
1936 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -05001937 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 * Fill in command table information. First, the header,
1941 * a SATA Register - Host to Device command FIS.
1942 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09001943 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
1944
Tejun Heo7d50b602007-09-23 13:19:54 +09001945 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
Tejun Heocc9278e2006-02-10 17:25:47 +09001946 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09001947 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1948 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -04001949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Tejun Heocc9278e2006-02-10 17:25:47 +09001951 n_elem = 0;
1952 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +09001953 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Tejun Heocc9278e2006-02-10 17:25:47 +09001955 /*
1956 * Fill in command slot information.
1957 */
Tejun Heo7d50b602007-09-23 13:19:54 +09001958 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
Tejun Heocc9278e2006-02-10 17:25:47 +09001959 if (qc->tf.flags & ATA_TFLAG_WRITE)
1960 opts |= AHCI_CMD_WRITE;
1961 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +09001962 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -05001963
Tejun Heo12fad3f2006-05-15 21:03:55 +09001964 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
Tejun Heo78cd52d2006-05-15 20:58:29 +09001967static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
Tejun Heo417a1a62007-09-23 13:19:55 +09001969 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001970 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09001971 struct ata_eh_info *host_ehi = &ap->link.eh_info;
1972 struct ata_link *link = NULL;
1973 struct ata_queued_cmd *active_qc;
1974 struct ata_eh_info *active_ehi;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001975 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Tejun Heo7d50b602007-09-23 13:19:54 +09001977 /* determine active link */
Tejun Heo1eca4362008-11-03 20:03:17 +09001978 ata_for_each_link(link, ap, EDGE)
Tejun Heo7d50b602007-09-23 13:19:54 +09001979 if (ata_link_active(link))
1980 break;
1981 if (!link)
1982 link = &ap->link;
1983
1984 active_qc = ata_qc_from_tag(ap, link->active_tag);
1985 active_ehi = &link->eh_info;
1986
1987 /* record irq stat */
1988 ata_ehi_clear_desc(host_ehi);
1989 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
Jeff Garzik9f68a242005-11-15 14:03:47 -05001990
Tejun Heo78cd52d2006-05-15 20:58:29 +09001991 /* AHCI needs SError cleared; otherwise, it might lock up */
Tejun Heo82ef04f2008-07-31 17:02:40 +09001992 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
1993 ahci_scr_write(&ap->link, SCR_ERROR, serror);
Tejun Heo7d50b602007-09-23 13:19:54 +09001994 host_ehi->serror |= serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Tejun Heo41669552006-11-29 11:33:14 +09001996 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
Tejun Heo417a1a62007-09-23 13:19:55 +09001997 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
Tejun Heo41669552006-11-29 11:33:14 +09001998 irq_stat &= ~PORT_IRQ_IF_ERR;
1999
Conke Hu55a61602007-03-27 18:33:05 +08002000 if (irq_stat & PORT_IRQ_TF_ERR) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002001 /* If qc is active, charge it; otherwise, the active
2002 * link. There's no active qc on NCQ errors. It will
2003 * be determined by EH by reading log page 10h.
2004 */
2005 if (active_qc)
2006 active_qc->err_mask |= AC_ERR_DEV;
2007 else
2008 active_ehi->err_mask |= AC_ERR_DEV;
2009
Tejun Heo417a1a62007-09-23 13:19:55 +09002010 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
Tejun Heo7d50b602007-09-23 13:19:54 +09002011 host_ehi->serror &= ~SERR_INTERNAL;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Tejun Heo78cd52d2006-05-15 20:58:29 +09002014 if (irq_stat & PORT_IRQ_UNK_FIS) {
2015 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Tejun Heo7d50b602007-09-23 13:19:54 +09002017 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002018 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002019 ata_ehi_push_desc(active_ehi,
2020 "unknown FIS %08x %08x %08x %08x" ,
Tejun Heo78cd52d2006-05-15 20:58:29 +09002021 unk[0], unk[1], unk[2], unk[3]);
2022 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04002023
Tejun Heo071f44b2008-04-07 22:47:22 +09002024 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002025 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002026 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002027 ata_ehi_push_desc(active_ehi, "incorrect PMP");
2028 }
Tejun Heo78cd52d2006-05-15 20:58:29 +09002029
Tejun Heo7d50b602007-09-23 13:19:54 +09002030 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
2031 host_ehi->err_mask |= AC_ERR_HOST_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002032 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002033 ata_ehi_push_desc(host_ehi, "host bus error");
2034 }
2035
2036 if (irq_stat & PORT_IRQ_IF_ERR) {
2037 host_ehi->err_mask |= AC_ERR_ATA_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002038 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002039 ata_ehi_push_desc(host_ehi, "interface fatal error");
2040 }
2041
2042 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
2043 ata_ehi_hotplugged(host_ehi);
2044 ata_ehi_push_desc(host_ehi, "%s",
2045 irq_stat & PORT_IRQ_CONNECT ?
2046 "connection status changed" : "PHY RDY changed");
2047 }
2048
2049 /* okay, let's hand over to EH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Tejun Heo78cd52d2006-05-15 20:58:29 +09002051 if (irq_stat & PORT_IRQ_FREEZE)
2052 ata_port_freeze(ap);
2053 else
2054 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002057static void ahci_port_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
Tejun Heo350756f2008-04-07 22:47:21 +09002059 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002060 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo0291f952007-01-25 19:16:28 +09002061 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo5f226c62007-10-09 15:02:23 +09002062 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heob06ce3e2007-10-09 15:06:48 +09002063 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Tejun Heo12fad3f2006-05-15 21:03:55 +09002064 u32 status, qc_active;
Tejun Heo459ad682007-12-07 12:46:23 +09002065 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 status = readl(port_mmio + PORT_IRQ_STAT);
2068 writel(status, port_mmio + PORT_IRQ_STAT);
2069
Tejun Heob06ce3e2007-10-09 15:06:48 +09002070 /* ignore BAD_PMP while resetting */
2071 if (unlikely(resetting))
2072 status &= ~PORT_IRQ_BAD_PMP;
2073
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002074 /* If we are getting PhyRdy, this is
2075 * just a power state change, we should
2076 * clear out this, plus the PhyRdy/Comm
2077 * Wake bits from Serror
2078 */
2079 if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) &&
2080 (status & PORT_IRQ_PHYRDY)) {
2081 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo82ef04f2008-07-31 17:02:40 +09002082 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002083 }
2084
Tejun Heo78cd52d2006-05-15 20:58:29 +09002085 if (unlikely(status & PORT_IRQ_ERROR)) {
2086 ahci_error_intr(ap, status);
2087 return;
2088 }
2089
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002090 if (status & PORT_IRQ_SDB_FIS) {
Tejun Heo5f226c62007-10-09 15:02:23 +09002091 /* If SNotification is available, leave notification
2092 * handling to sata_async_notification(). If not,
2093 * emulate it by snooping SDB FIS RX area.
2094 *
2095 * Snooping FIS RX area is probably cheaper than
2096 * poking SNotification but some constrollers which
2097 * implement SNotification, ICH9 for example, don't
2098 * store AN SDB FIS into receive area.
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002099 */
Tejun Heo5f226c62007-10-09 15:02:23 +09002100 if (hpriv->cap & HOST_CAP_SNTF)
Tejun Heo7d77b242007-09-23 13:14:13 +09002101 sata_async_notification(ap);
Tejun Heo5f226c62007-10-09 15:02:23 +09002102 else {
2103 /* If the 'N' bit in word 0 of the FIS is set,
2104 * we just received asynchronous notification.
2105 * Tell libata about it.
2106 */
2107 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
2108 u32 f0 = le32_to_cpu(f[0]);
2109
2110 if (f0 & (1 << 15))
2111 sata_async_notification(ap);
2112 }
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002113 }
2114
Tejun Heo7d50b602007-09-23 13:19:54 +09002115 /* pp->active_link is valid iff any command is in flight */
2116 if (ap->qc_active && pp->active_link->sactive)
Tejun Heo12fad3f2006-05-15 21:03:55 +09002117 qc_active = readl(port_mmio + PORT_SCR_ACT);
2118 else
2119 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
2120
Tejun Heo79f97da2008-04-07 22:47:20 +09002121 rc = ata_qc_complete_multiple(ap, qc_active);
Tejun Heob06ce3e2007-10-09 15:06:48 +09002122
Tejun Heo459ad682007-12-07 12:46:23 +09002123 /* while resetting, invalid completions are expected */
2124 if (unlikely(rc < 0 && !resetting)) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002125 ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002126 ehi->action |= ATA_EH_RESET;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002127 ata_port_freeze(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129}
2130
David Howells7d12e782006-10-05 14:55:46 +01002131static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
Jeff Garzikcca39742006-08-24 03:19:22 -04002133 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 struct ahci_host_priv *hpriv;
2135 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -04002136 void __iomem *mmio;
Tejun Heod28f87a2008-07-05 13:10:50 +09002137 u32 irq_stat, irq_masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139 VPRINTK("ENTER\n");
2140
Jeff Garzikcca39742006-08-24 03:19:22 -04002141 hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002142 mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144 /* sigh. 0xffffffff is a valid return from h/w */
2145 irq_stat = readl(mmio + HOST_IRQ_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 if (!irq_stat)
2147 return IRQ_NONE;
2148
Tejun Heod28f87a2008-07-05 13:10:50 +09002149 irq_masked = irq_stat & hpriv->port_map;
2150
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002151 spin_lock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002153 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Tejun Heod28f87a2008-07-05 13:10:50 +09002156 if (!(irq_masked & (1 << i)))
Jeff Garzik67846b32005-10-05 02:58:32 -04002157 continue;
2158
Jeff Garzikcca39742006-08-24 03:19:22 -04002159 ap = host->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -04002160 if (ap) {
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002161 ahci_port_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -04002162 VPRINTK("port %u\n", i);
2163 } else {
2164 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +09002165 if (ata_ratelimit())
Jeff Garzikcca39742006-08-24 03:19:22 -04002166 dev_printk(KERN_WARNING, host->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -05002167 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 }
Jeff Garzik67846b32005-10-05 02:58:32 -04002169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 handled = 1;
2171 }
2172
Tejun Heod28f87a2008-07-05 13:10:50 +09002173 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
2174 * it should be cleared after all the port events are cleared;
2175 * otherwise, it will raise a spurious interrupt after each
2176 * valid one. Please read section 10.6.2 of ahci 1.1 for more
2177 * information.
2178 *
2179 * Also, use the unmasked value to clear interrupt as spurious
2180 * pending event on a dummy port might cause screaming IRQ.
2181 */
Tejun Heoea0c62f2008-06-28 01:49:02 +09002182 writel(irq_stat, mmio + HOST_IRQ_STAT);
2183
Jeff Garzikcca39742006-08-24 03:19:22 -04002184 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186 VPRINTK("EXIT\n");
2187
2188 return IRQ_RETVAL(handled);
2189}
2190
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09002191static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
2193 struct ata_port *ap = qc->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002194 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09002195 struct ahci_port_priv *pp = ap->private_data;
2196
2197 /* Keep track of the currently active link. It will be used
2198 * in completion path to determine whether NCQ phase is in
2199 * progress.
2200 */
2201 pp->active_link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Tejun Heo12fad3f2006-05-15 21:03:55 +09002203 if (qc->tf.protocol == ATA_PROT_NCQ)
2204 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
2205 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002207 ahci_sw_activity(qc->dev->link);
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 return 0;
2210}
2211
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002212static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2213{
2214 struct ahci_port_priv *pp = qc->ap->private_data;
2215 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2216
2217 ata_tf_from_fis(d2h_fis, &qc->result_tf);
2218 return true;
2219}
2220
Tejun Heo78cd52d2006-05-15 20:58:29 +09002221static void ahci_freeze(struct ata_port *ap)
2222{
Tejun Heo4447d352007-04-17 23:44:08 +09002223 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002224
2225 /* turn IRQ off */
2226 writel(0, port_mmio + PORT_IRQ_MASK);
2227}
2228
2229static void ahci_thaw(struct ata_port *ap)
2230{
Tejun Heo0d5ff562007-02-01 15:06:36 +09002231 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
Tejun Heo4447d352007-04-17 23:44:08 +09002232 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002233 u32 tmp;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002234 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002235
2236 /* clear IRQ */
2237 tmp = readl(port_mmio + PORT_IRQ_STAT);
2238 writel(tmp, port_mmio + PORT_IRQ_STAT);
Tejun Heoa7187282007-01-27 11:04:26 +09002239 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002240
Tejun Heo1c954a42007-10-09 15:01:37 +09002241 /* turn IRQ back on */
2242 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002243}
2244
2245static void ahci_error_handler(struct ata_port *ap)
2246{
Tejun Heob51e9e52006-06-29 01:29:30 +09002247 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +09002248 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09002249 ahci_stop_engine(ap);
2250 ahci_start_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002251 }
2252
Tejun Heoa1efdab2008-03-25 12:22:50 +09002253 sata_pmp_error_handler(ap);
Tejun Heoedc93052007-10-25 14:59:16 +09002254}
2255
Tejun Heo78cd52d2006-05-15 20:58:29 +09002256static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2257{
2258 struct ata_port *ap = qc->ap;
2259
Tejun Heod2e75df2007-07-16 14:29:39 +09002260 /* make DMA engine forget about the failed command */
2261 if (qc->flags & ATA_QCFLAG_FAILED)
2262 ahci_kick_engine(ap, 1);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002263}
2264
Tejun Heo7d50b602007-09-23 13:19:54 +09002265static void ahci_pmp_attach(struct ata_port *ap)
2266{
2267 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002268 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002269 u32 cmd;
2270
2271 cmd = readl(port_mmio + PORT_CMD);
2272 cmd |= PORT_CMD_PMP;
2273 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002274
2275 pp->intr_mask |= PORT_IRQ_BAD_PMP;
2276 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002277}
2278
2279static void ahci_pmp_detach(struct ata_port *ap)
2280{
2281 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002282 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002283 u32 cmd;
2284
2285 cmd = readl(port_mmio + PORT_CMD);
2286 cmd &= ~PORT_CMD_PMP;
2287 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002288
2289 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
2290 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002291}
2292
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002293static int ahci_port_resume(struct ata_port *ap)
2294{
2295 ahci_power_up(ap);
2296 ahci_start_port(ap);
2297
Tejun Heo071f44b2008-04-07 22:47:22 +09002298 if (sata_pmp_attached(ap))
Tejun Heo7d50b602007-09-23 13:19:54 +09002299 ahci_pmp_attach(ap);
2300 else
2301 ahci_pmp_detach(ap);
2302
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002303 return 0;
2304}
2305
Tejun Heo438ac6d2007-03-02 17:31:26 +09002306#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +09002307static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2308{
Tejun Heoc1332872006-07-26 15:59:26 +09002309 const char *emsg = NULL;
2310 int rc;
2311
Tejun Heo4447d352007-04-17 23:44:08 +09002312 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo8e16f942006-11-20 15:42:36 +09002313 if (rc == 0)
Tejun Heo4447d352007-04-17 23:44:08 +09002314 ahci_power_down(ap);
Tejun Heo8e16f942006-11-20 15:42:36 +09002315 else {
Tejun Heoc1332872006-07-26 15:59:26 +09002316 ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002317 ahci_start_port(ap);
Tejun Heoc1332872006-07-26 15:59:26 +09002318 }
2319
2320 return rc;
2321}
2322
Tejun Heoc1332872006-07-26 15:59:26 +09002323static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
2324{
Jeff Garzikcca39742006-08-24 03:19:22 -04002325 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo9b10ae82009-05-30 20:50:12 +09002326 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002327 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heoc1332872006-07-26 15:59:26 +09002328 u32 ctl;
2329
Tejun Heo9b10ae82009-05-30 20:50:12 +09002330 if (mesg.event & PM_EVENT_SUSPEND &&
2331 hpriv->flags & AHCI_HFLAG_NO_SUSPEND) {
2332 dev_printk(KERN_ERR, &pdev->dev,
2333 "BIOS update required for suspend/resume\n");
2334 return -EIO;
2335 }
2336
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002337 if (mesg.event & PM_EVENT_SLEEP) {
Tejun Heoc1332872006-07-26 15:59:26 +09002338 /* AHCI spec rev1.1 section 8.3.3:
2339 * Software must disable interrupts prior to requesting a
2340 * transition of the HBA to D3 state.
2341 */
2342 ctl = readl(mmio + HOST_CTL);
2343 ctl &= ~HOST_IRQ_EN;
2344 writel(ctl, mmio + HOST_CTL);
2345 readl(mmio + HOST_CTL); /* flush */
2346 }
2347
2348 return ata_pci_device_suspend(pdev, mesg);
2349}
2350
2351static int ahci_pci_device_resume(struct pci_dev *pdev)
2352{
Jeff Garzikcca39742006-08-24 03:19:22 -04002353 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heoc1332872006-07-26 15:59:26 +09002354 int rc;
2355
Tejun Heo553c4aa2006-12-26 19:39:50 +09002356 rc = ata_pci_device_do_resume(pdev);
2357 if (rc)
2358 return rc;
Tejun Heoc1332872006-07-26 15:59:26 +09002359
2360 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
Tejun Heo4447d352007-04-17 23:44:08 +09002361 rc = ahci_reset_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002362 if (rc)
2363 return rc;
2364
Tejun Heo4447d352007-04-17 23:44:08 +09002365 ahci_init_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002366 }
2367
Jeff Garzikcca39742006-08-24 03:19:22 -04002368 ata_host_resume(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002369
2370 return 0;
2371}
Tejun Heo438ac6d2007-03-02 17:31:26 +09002372#endif
Tejun Heoc1332872006-07-26 15:59:26 +09002373
Tejun Heo254950c2006-07-26 15:59:25 +09002374static int ahci_port_start(struct ata_port *ap)
2375{
Jeff Garzikcca39742006-08-24 03:19:22 -04002376 struct device *dev = ap->host->dev;
Tejun Heo254950c2006-07-26 15:59:25 +09002377 struct ahci_port_priv *pp;
Tejun Heo254950c2006-07-26 15:59:25 +09002378 void *mem;
2379 dma_addr_t mem_dma;
Tejun Heo254950c2006-07-26 15:59:25 +09002380
Tejun Heo24dc5f32007-01-20 16:00:28 +09002381 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Tejun Heo254950c2006-07-26 15:59:25 +09002382 if (!pp)
2383 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002384
Tejun Heo24dc5f32007-01-20 16:00:28 +09002385 mem = dmam_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma,
2386 GFP_KERNEL);
2387 if (!mem)
Tejun Heo254950c2006-07-26 15:59:25 +09002388 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002389 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
2390
2391 /*
2392 * First item in chunk of DMA memory: 32-slot command table,
2393 * 32 bytes each in size
2394 */
2395 pp->cmd_slot = mem;
2396 pp->cmd_slot_dma = mem_dma;
2397
2398 mem += AHCI_CMD_SLOT_SZ;
2399 mem_dma += AHCI_CMD_SLOT_SZ;
2400
2401 /*
2402 * Second item: Received-FIS area
2403 */
2404 pp->rx_fis = mem;
2405 pp->rx_fis_dma = mem_dma;
2406
2407 mem += AHCI_RX_FIS_SZ;
2408 mem_dma += AHCI_RX_FIS_SZ;
2409
2410 /*
2411 * Third item: data area for storing a single command
2412 * and its scatter-gather table
2413 */
2414 pp->cmd_tbl = mem;
2415 pp->cmd_tbl_dma = mem_dma;
2416
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002417 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002418 * Save off initial list of interrupts to be enabled.
2419 * This could be changed later
2420 */
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002421 pp->intr_mask = DEF_PORT_IRQ;
2422
Tejun Heo254950c2006-07-26 15:59:25 +09002423 ap->private_data = pp;
2424
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002425 /* engage engines, captain */
2426 return ahci_port_resume(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09002427}
2428
2429static void ahci_port_stop(struct ata_port *ap)
2430{
Tejun Heo0be0aa92006-07-26 15:59:26 +09002431 const char *emsg = NULL;
2432 int rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002433
Tejun Heo0be0aa92006-07-26 15:59:26 +09002434 /* de-initialize port */
Tejun Heo4447d352007-04-17 23:44:08 +09002435 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo0be0aa92006-07-26 15:59:26 +09002436 if (rc)
2437 ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
Tejun Heo254950c2006-07-26 15:59:25 +09002438}
2439
Tejun Heo4447d352007-04-17 23:44:08 +09002440static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 if (using_dac &&
Yang Hongyang6a355282009-04-06 19:01:13 -07002445 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
2446 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 if (rc) {
Yang Hongyang284901a2009-04-06 19:01:15 -07002448 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002450 dev_printk(KERN_ERR, &pdev->dev,
2451 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 return rc;
2453 }
2454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07002456 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002458 dev_printk(KERN_ERR, &pdev->dev,
2459 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 return rc;
2461 }
Yang Hongyang284901a2009-04-06 19:01:15 -07002462 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002464 dev_printk(KERN_ERR, &pdev->dev,
2465 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 return rc;
2467 }
2468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 return 0;
2470}
2471
Tejun Heo4447d352007-04-17 23:44:08 +09002472static void ahci_print_info(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
Tejun Heo4447d352007-04-17 23:44:08 +09002474 struct ahci_host_priv *hpriv = host->private_data;
2475 struct pci_dev *pdev = to_pci_dev(host->dev);
2476 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 u32 vers, cap, impl, speed;
2478 const char *speed_s;
2479 u16 cc;
2480 const char *scc_s;
2481
2482 vers = readl(mmio + HOST_VERSION);
2483 cap = hpriv->cap;
2484 impl = hpriv->port_map;
2485
2486 speed = (cap >> 20) & 0xf;
2487 if (speed == 1)
2488 speed_s = "1.5";
2489 else if (speed == 2)
2490 speed_s = "3";
Shane Huang8522ee22008-12-30 11:00:37 +08002491 else if (speed == 3)
2492 speed_s = "6";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 else
2494 speed_s = "?";
2495
2496 pci_read_config_word(pdev, 0x0a, &cc);
Conke Huc9f89472007-01-09 05:32:51 -05002497 if (cc == PCI_CLASS_STORAGE_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 scc_s = "IDE";
Conke Huc9f89472007-01-09 05:32:51 -05002499 else if (cc == PCI_CLASS_STORAGE_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 scc_s = "SATA";
Conke Huc9f89472007-01-09 05:32:51 -05002501 else if (cc == PCI_CLASS_STORAGE_RAID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 scc_s = "RAID";
2503 else
2504 scc_s = "unknown";
2505
Jeff Garzika9524a72005-10-30 14:39:11 -05002506 dev_printk(KERN_INFO, &pdev->dev,
2507 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002509 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002511 (vers >> 24) & 0xff,
2512 (vers >> 16) & 0xff,
2513 (vers >> 8) & 0xff,
2514 vers & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 ((cap >> 8) & 0x1f) + 1,
2517 (cap & 0x1f) + 1,
2518 speed_s,
2519 impl,
2520 scc_s);
2521
Jeff Garzika9524a72005-10-30 14:39:11 -05002522 dev_printk(KERN_INFO, &pdev->dev,
2523 "flags: "
Tejun Heo203ef6c2007-07-16 14:29:40 +09002524 "%s%s%s%s%s%s%s"
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002525 "%s%s%s%s%s%s%s"
2526 "%s\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002527 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 cap & (1 << 31) ? "64bit " : "",
2530 cap & (1 << 30) ? "ncq " : "",
Tejun Heo203ef6c2007-07-16 14:29:40 +09002531 cap & (1 << 29) ? "sntf " : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 cap & (1 << 28) ? "ilck " : "",
2533 cap & (1 << 27) ? "stag " : "",
2534 cap & (1 << 26) ? "pm " : "",
2535 cap & (1 << 25) ? "led " : "",
2536
2537 cap & (1 << 24) ? "clo " : "",
2538 cap & (1 << 19) ? "nz " : "",
2539 cap & (1 << 18) ? "only " : "",
2540 cap & (1 << 17) ? "pmp " : "",
2541 cap & (1 << 15) ? "pio " : "",
2542 cap & (1 << 14) ? "slum " : "",
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002543 cap & (1 << 13) ? "part " : "",
2544 cap & (1 << 6) ? "ems ": ""
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 );
2546}
2547
Tejun Heoedc93052007-10-25 14:59:16 +09002548/* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2549 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2550 * support PMP and the 4726 either directly exports the device
2551 * attached to the first downstream port or acts as a hardware storage
2552 * controller and emulate a single ATA device (can be RAID 0/1 or some
2553 * other configuration).
2554 *
2555 * When there's no device attached to the first downstream port of the
2556 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2557 * configure the 4726. However, ATA emulation of the device is very
2558 * lame. It doesn't send signature D2H Reg FIS after the initial
2559 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2560 *
2561 * The following function works around the problem by always using
2562 * hardreset on the port and not depending on receiving signature FIS
2563 * afterward. If signature FIS isn't received soon, ATA class is
2564 * assumed without follow-up softreset.
2565 */
2566static void ahci_p5wdh_workaround(struct ata_host *host)
2567{
2568 static struct dmi_system_id sysids[] = {
2569 {
2570 .ident = "P5W DH Deluxe",
2571 .matches = {
2572 DMI_MATCH(DMI_SYS_VENDOR,
2573 "ASUSTEK COMPUTER INC"),
2574 DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
2575 },
2576 },
2577 { }
2578 };
2579 struct pci_dev *pdev = to_pci_dev(host->dev);
2580
2581 if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) &&
2582 dmi_check_system(sysids)) {
2583 struct ata_port *ap = host->ports[1];
2584
2585 dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH "
2586 "Deluxe on-board SIMG4726 workaround\n");
2587
2588 ap->ops = &ahci_p5wdh_ops;
2589 ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA;
2590 }
2591}
2592
Shane Huang58a09b32009-05-27 15:04:43 +08002593/*
2594 * SB600 ahci controller on ASUS M2A-VM can't do 64bit DMA with older
2595 * BIOS. The oldest version known to be broken is 0901 and working is
2596 * 1501 which was released on 2007-10-26. Force 32bit DMA on anything
2597 * older than 1501. Please read bko#9412 for more info.
2598 */
2599static bool ahci_asus_m2a_vm_32bit_only(struct pci_dev *pdev)
2600{
2601 static const struct dmi_system_id sysids[] = {
2602 {
2603 .ident = "ASUS M2A-VM",
2604 .matches = {
2605 DMI_MATCH(DMI_BOARD_VENDOR,
2606 "ASUSTeK Computer INC."),
2607 DMI_MATCH(DMI_BOARD_NAME, "M2A-VM"),
2608 },
2609 },
2610 { }
2611 };
2612 const char *cutoff_mmdd = "10/26";
2613 const char *date;
2614 int year;
2615
2616 if (pdev->bus->number != 0 || pdev->devfn != PCI_DEVFN(0x12, 0) ||
2617 !dmi_check_system(sysids))
2618 return false;
2619
2620 /*
2621 * Argh.... both version and date are free form strings.
2622 * Let's hope they're using the same date format across
2623 * different versions.
2624 */
2625 date = dmi_get_system_info(DMI_BIOS_DATE);
2626 year = dmi_get_year(DMI_BIOS_DATE);
2627 if (date && strlen(date) >= 10 && date[2] == '/' && date[5] == '/' &&
2628 (year > 2007 ||
2629 (year == 2007 && strncmp(date, cutoff_mmdd, 5) >= 0)))
2630 return false;
2631
2632 dev_printk(KERN_WARNING, &pdev->dev, "ASUS M2A-VM: BIOS too old, "
2633 "forcing 32bit DMA, update BIOS\n");
2634
2635 return true;
2636}
2637
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002638static bool ahci_broken_system_poweroff(struct pci_dev *pdev)
2639{
2640 static const struct dmi_system_id broken_systems[] = {
2641 {
2642 .ident = "HP Compaq nx6310",
2643 .matches = {
2644 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2645 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6310"),
2646 },
2647 /* PCI slot number of the controller */
2648 .driver_data = (void *)0x1FUL,
2649 },
Maciej Ruteckid2f9c062009-03-20 00:06:46 +01002650 {
2651 .ident = "HP Compaq 6720s",
2652 .matches = {
2653 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2654 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6720s"),
2655 },
2656 /* PCI slot number of the controller */
2657 .driver_data = (void *)0x1FUL,
2658 },
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002659
2660 { } /* terminate list */
2661 };
2662 const struct dmi_system_id *dmi = dmi_first_match(broken_systems);
2663
2664 if (dmi) {
2665 unsigned long slot = (unsigned long)dmi->driver_data;
2666 /* apply the quirk only to on-board controllers */
2667 return slot == PCI_SLOT(pdev->devfn);
2668 }
2669
2670 return false;
2671}
2672
Tejun Heo9b10ae82009-05-30 20:50:12 +09002673static bool ahci_broken_suspend(struct pci_dev *pdev)
2674{
2675 static const struct dmi_system_id sysids[] = {
2676 /*
2677 * On HP dv[4-6] and HDX18 with earlier BIOSen, link
2678 * to the harddisk doesn't become online after
2679 * resuming from STR. Warn and fail suspend.
2680 */
2681 {
2682 .ident = "dv4",
2683 .matches = {
2684 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2685 DMI_MATCH(DMI_PRODUCT_NAME,
2686 "HP Pavilion dv4 Notebook PC"),
2687 },
2688 .driver_data = "F.30", /* cutoff BIOS version */
2689 },
2690 {
2691 .ident = "dv5",
2692 .matches = {
2693 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2694 DMI_MATCH(DMI_PRODUCT_NAME,
2695 "HP Pavilion dv5 Notebook PC"),
2696 },
2697 .driver_data = "F.16", /* cutoff BIOS version */
2698 },
2699 {
2700 .ident = "dv6",
2701 .matches = {
2702 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2703 DMI_MATCH(DMI_PRODUCT_NAME,
2704 "HP Pavilion dv6 Notebook PC"),
2705 },
2706 .driver_data = "F.21", /* cutoff BIOS version */
2707 },
2708 {
2709 .ident = "HDX18",
2710 .matches = {
2711 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2712 DMI_MATCH(DMI_PRODUCT_NAME,
2713 "HP HDX18 Notebook PC"),
2714 },
2715 .driver_data = "F.23", /* cutoff BIOS version */
2716 },
2717 { } /* terminate list */
2718 };
2719 const struct dmi_system_id *dmi = dmi_first_match(sysids);
2720 const char *ver;
2721
2722 if (!dmi || pdev->bus->number || pdev->devfn != PCI_DEVFN(0x1f, 2))
2723 return false;
2724
2725 ver = dmi_get_system_info(DMI_BIOS_VERSION);
2726
2727 return !ver || strcmp(ver, dmi->driver_data) < 0;
2728}
2729
Tejun Heo24dc5f32007-01-20 16:00:28 +09002730static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731{
2732 static int printed_version;
Tejun Heoe297d992008-06-10 00:13:04 +09002733 unsigned int board_id = ent->driver_data;
2734 struct ata_port_info pi = ahci_port_info[board_id];
Tejun Heo4447d352007-04-17 23:44:08 +09002735 const struct ata_port_info *ppi[] = { &pi, NULL };
Tejun Heo24dc5f32007-01-20 16:00:28 +09002736 struct device *dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 struct ahci_host_priv *hpriv;
Tejun Heo4447d352007-04-17 23:44:08 +09002738 struct ata_host *host;
Tejun Heo837f5f82008-02-06 15:13:51 +09002739 int n_ports, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740
2741 VPRINTK("ENTER\n");
2742
Tejun Heo12fad3f2006-05-15 21:03:55 +09002743 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
2744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05002746 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Alan Cox5b66c822008-09-03 14:48:34 +01002748 /* The AHCI driver can only drive the SATA ports, the PATA driver
2749 can drive them all so if both drivers are selected make sure
2750 AHCI stays out of the way */
2751 if (pdev->vendor == PCI_VENDOR_ID_MARVELL && !marvell_enable)
2752 return -ENODEV;
2753
Tejun Heo4447d352007-04-17 23:44:08 +09002754 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09002755 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (rc)
2757 return rc;
2758
Tejun Heodea55132008-03-11 19:52:31 +09002759 /* AHCI controllers often implement SFF compatible interface.
2760 * Grab all PCI BARs just in case.
2761 */
2762 rc = pcim_iomap_regions_request_all(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002763 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002764 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002765 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002766 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
Tejun Heoc4f77922007-12-06 15:09:43 +09002768 if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
2769 (pdev->device == 0x2652 || pdev->device == 0x2653)) {
2770 u8 map;
2771
2772 /* ICH6s share the same PCI ID for both piix and ahci
2773 * modes. Enabling ahci mode while MAP indicates
2774 * combined mode is a bad idea. Yield to ata_piix.
2775 */
2776 pci_read_config_byte(pdev, ICH_MAP, &map);
2777 if (map & 0x3) {
2778 dev_printk(KERN_INFO, &pdev->dev, "controller is in "
2779 "combined mode, can't enable AHCI mode\n");
2780 return -ENODEV;
2781 }
2782 }
2783
Tejun Heo24dc5f32007-01-20 16:00:28 +09002784 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
2785 if (!hpriv)
2786 return -ENOMEM;
Tejun Heo417a1a62007-09-23 13:19:55 +09002787 hpriv->flags |= (unsigned long)pi.private_data;
2788
Tejun Heoe297d992008-06-10 00:13:04 +09002789 /* MCP65 revision A1 and A2 can't do MSI */
2790 if (board_id == board_ahci_mcp65 &&
2791 (pdev->revision == 0xa1 || pdev->revision == 0xa2))
2792 hpriv->flags |= AHCI_HFLAG_NO_MSI;
2793
Shane Huange427fe02008-12-30 10:53:41 +08002794 /* SB800 does NOT need the workaround to ignore SERR_INTERNAL */
2795 if (board_id == board_ahci_sb700 && pdev->revision >= 0x40)
2796 hpriv->flags &= ~AHCI_HFLAG_IGN_SERR_INTERNAL;
2797
Shane Huang58a09b32009-05-27 15:04:43 +08002798 /* apply ASUS M2A_VM quirk */
2799 if (ahci_asus_m2a_vm_32bit_only(pdev))
2800 hpriv->flags |= AHCI_HFLAG_32BIT_ONLY;
2801
Tejun Heoa5bfc472009-01-23 11:31:39 +09002802 if (!(hpriv->flags & AHCI_HFLAG_NO_MSI))
2803 pci_enable_msi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Tejun Heo4447d352007-04-17 23:44:08 +09002805 /* save initial config */
Tejun Heo417a1a62007-09-23 13:19:55 +09002806 ahci_save_initial_config(pdev, hpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Tejun Heo4447d352007-04-17 23:44:08 +09002808 /* prepare host */
Tejun Heo274c1fd2007-07-16 14:29:40 +09002809 if (hpriv->cap & HOST_CAP_NCQ)
Tejun Heo4447d352007-04-17 23:44:08 +09002810 pi.flags |= ATA_FLAG_NCQ;
2811
Tejun Heo7d50b602007-09-23 13:19:54 +09002812 if (hpriv->cap & HOST_CAP_PMP)
2813 pi.flags |= ATA_FLAG_PMP;
2814
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002815 if (ahci_em_messages && (hpriv->cap & HOST_CAP_EMS)) {
2816 u8 messages;
2817 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
2818 u32 em_loc = readl(mmio + HOST_EM_LOC);
2819 u32 em_ctl = readl(mmio + HOST_EM_CTL);
2820
David Milburn87943ac2008-10-13 14:38:36 -05002821 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002822
2823 /* we only support LED message type right now */
2824 if ((messages & 0x01) && (ahci_em_messages == 1)) {
2825 /* store em_loc */
2826 hpriv->em_loc = ((em_loc >> 16) * 4);
2827 pi.flags |= ATA_FLAG_EM;
2828 if (!(em_ctl & EM_CTL_ALHD))
2829 pi.flags |= ATA_FLAG_SW_ACTIVITY;
2830 }
2831 }
2832
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002833 if (ahci_broken_system_poweroff(pdev)) {
2834 pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN;
2835 dev_info(&pdev->dev,
2836 "quirky BIOS, skipping spindown on poweroff\n");
2837 }
2838
Tejun Heo9b10ae82009-05-30 20:50:12 +09002839 if (ahci_broken_suspend(pdev)) {
2840 hpriv->flags |= AHCI_HFLAG_NO_SUSPEND;
2841 dev_printk(KERN_WARNING, &pdev->dev,
2842 "BIOS update required for suspend/resume\n");
2843 }
2844
Tejun Heo837f5f82008-02-06 15:13:51 +09002845 /* CAP.NP sometimes indicate the index of the last enabled
2846 * port, at other times, that of the last possible port, so
2847 * determining the maximum port number requires looking at
2848 * both CAP.NP and port_map.
2849 */
2850 n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));
2851
2852 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
Tejun Heo4447d352007-04-17 23:44:08 +09002853 if (!host)
2854 return -ENOMEM;
2855 host->iomap = pcim_iomap_table(pdev);
2856 host->private_data = hpriv;
2857
Arjan van de Venf3d7f232009-01-26 02:05:44 -08002858 if (!(hpriv->cap & HOST_CAP_SSS) || ahci_ignore_sss)
Arjan van de Ven886ad092009-01-09 15:54:07 -08002859 host->flags |= ATA_HOST_PARALLEL_SCAN;
Arjan van de Venf3d7f232009-01-26 02:05:44 -08002860 else
2861 printk(KERN_INFO "ahci: SSS flag set, parallel bus scan disabled\n");
Arjan van de Ven886ad092009-01-09 15:54:07 -08002862
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002863 if (pi.flags & ATA_FLAG_EM)
2864 ahci_reset_em(host);
2865
Tejun Heo4447d352007-04-17 23:44:08 +09002866 for (i = 0; i < host->n_ports; i++) {
Jeff Garzikdab632e2007-05-28 08:33:01 -04002867 struct ata_port *ap = host->ports[i];
Tejun Heo4447d352007-04-17 23:44:08 +09002868
Tejun Heocbcdd872007-08-18 13:14:55 +09002869 ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar");
2870 ata_port_pbar_desc(ap, AHCI_PCI_BAR,
2871 0x100 + ap->port_no * 0x80, "port");
2872
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002873 /* set initial link pm policy */
2874 ap->pm_policy = NOT_AVAILABLE;
2875
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002876 /* set enclosure management message type */
2877 if (ap->flags & ATA_FLAG_EM)
2878 ap->em_message_type = ahci_em_messages;
2879
2880
Jeff Garzikdab632e2007-05-28 08:33:01 -04002881 /* disabled/not-implemented port */
Tejun Heo350756f2008-04-07 22:47:21 +09002882 if (!(hpriv->port_map & (1 << i)))
Jeff Garzikdab632e2007-05-28 08:33:01 -04002883 ap->ops = &ata_dummy_port_ops;
Tejun Heo4447d352007-04-17 23:44:08 +09002884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Tejun Heoedc93052007-10-25 14:59:16 +09002886 /* apply workaround for ASUS P5W DH Deluxe mainboard */
2887 ahci_p5wdh_workaround(host);
2888
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09002890 rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002892 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Tejun Heo4447d352007-04-17 23:44:08 +09002894 rc = ahci_reset_controller(host);
2895 if (rc)
2896 return rc;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002897
Tejun Heo4447d352007-04-17 23:44:08 +09002898 ahci_init_controller(host);
2899 ahci_print_info(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Tejun Heo4447d352007-04-17 23:44:08 +09002901 pci_set_master(pdev);
2902 return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
2903 &ahci_sht);
Jeff Garzik907f4672005-05-12 15:03:42 -04002904}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906static int __init ahci_init(void)
2907{
Pavel Roskinb7887192006-08-10 18:13:18 +09002908 return pci_register_driver(&ahci_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909}
2910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911static void __exit ahci_exit(void)
2912{
2913 pci_unregister_driver(&ahci_pci_driver);
2914}
2915
2916
2917MODULE_AUTHOR("Jeff Garzik");
2918MODULE_DESCRIPTION("AHCI SATA low-level driver");
2919MODULE_LICENSE("GPL");
2920MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04002921MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923module_init(ahci_init);
2924module_exit(ahci_exit);