blob: aa03b49a9af29c06fc6067ad038926524c40d18b [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 Heo55946392009-08-04 14:30:08 +0900222 AHCI_HFLAG_SRST_TOUT_IS_OFFLINE = (1 << 11), /* treat SRST timeout as
223 link offline */
Tejun Heo417a1a62007-09-23 13:19:55 +0900224
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200225 /* ap->flags bits */
Tejun Heo1188c0d2007-04-23 02:41:05 +0900226
227 AHCI_FLAG_COMMON = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
228 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400229 ATA_FLAG_ACPI_SATA | ATA_FLAG_AN |
230 ATA_FLAG_IPM,
Tejun Heoc4f77922007-12-06 15:09:43 +0900231
232 ICH_MAP = 0x90, /* ICH MAP register */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700233
Tejun Heod50ce072009-05-12 10:57:41 +0900234 /* em constants */
235 EM_MAX_SLOTS = 8,
236 EM_MAX_RETRY = 5,
237
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700238 /* em_ctl bits */
239 EM_CTL_RST = (1 << 9), /* Reset */
240 EM_CTL_TM = (1 << 8), /* Transmit Message */
241 EM_CTL_ALHD = (1 << 26), /* Activity LED */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242};
243
244struct ahci_cmd_hdr {
Al Viro4ca4e432007-12-30 09:32:22 +0000245 __le32 opts;
246 __le32 status;
247 __le32 tbl_addr;
248 __le32 tbl_addr_hi;
249 __le32 reserved[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250};
251
252struct ahci_sg {
Al Viro4ca4e432007-12-30 09:32:22 +0000253 __le32 addr;
254 __le32 addr_hi;
255 __le32 reserved;
256 __le32 flags_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257};
258
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700259struct ahci_em_priv {
260 enum sw_activity blink_policy;
261 struct timer_list timer;
262 unsigned long saved_activity;
263 unsigned long activity;
264 unsigned long led_state;
265};
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267struct ahci_host_priv {
Tejun Heo417a1a62007-09-23 13:19:55 +0900268 unsigned int flags; /* AHCI_HFLAG_* */
Tejun Heod447df12007-03-18 22:15:33 +0900269 u32 cap; /* cap to use */
270 u32 port_map; /* port map to use */
271 u32 saved_cap; /* saved initial cap */
272 u32 saved_port_map; /* saved initial port_map */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700273 u32 em_loc; /* enclosure management location */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275
276struct ahci_port_priv {
Tejun Heo7d50b602007-09-23 13:19:54 +0900277 struct ata_link *active_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct ahci_cmd_hdr *cmd_slot;
279 dma_addr_t cmd_slot_dma;
280 void *cmd_tbl;
281 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 void *rx_fis;
283 dma_addr_t rx_fis_dma;
Tejun Heo0291f952007-01-25 19:16:28 +0900284 /* for NCQ spurious interrupt analysis */
Tejun Heo0291f952007-01-25 19:16:28 +0900285 unsigned int ncq_saw_d2h:1;
286 unsigned int ncq_saw_dmas:1;
Tejun Heoafb2d552007-02-27 13:24:19 +0900287 unsigned int ncq_saw_sdb:1;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -0700288 u32 intr_mask; /* interrupts to enable */
Tejun Heod50ce072009-05-12 10:57:41 +0900289 /* enclosure management info per PM slot */
290 struct ahci_em_priv em_priv[EM_MAX_SLOTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291};
292
Tejun Heo82ef04f2008-07-31 17:02:40 +0900293static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
294static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400295static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900296static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900297static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298static int ahci_port_start(struct ata_port *ap);
299static void ahci_port_stop(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300static void ahci_qc_prep(struct ata_queued_cmd *qc);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900301static void ahci_freeze(struct ata_port *ap);
302static void ahci_thaw(struct ata_port *ap);
Tejun Heo7d50b602007-09-23 13:19:54 +0900303static void ahci_pmp_attach(struct ata_port *ap);
304static void ahci_pmp_detach(struct ata_port *ap);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900305static int ahci_softreset(struct ata_link *link, unsigned int *class,
306 unsigned long deadline);
Shane Huangbd172432008-06-10 15:52:04 +0800307static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
308 unsigned long deadline);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900309static int ahci_hardreset(struct ata_link *link, unsigned int *class,
310 unsigned long deadline);
311static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
312 unsigned long deadline);
313static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
314 unsigned long deadline);
315static void ahci_postreset(struct ata_link *link, unsigned int *class);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900316static void ahci_error_handler(struct ata_port *ap);
317static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -0400318static int ahci_port_resume(struct ata_port *ap);
Jeff Garzika8785392008-02-28 15:43:48 -0500319static void ahci_dev_config(struct ata_device *dev);
Jeff Garzikdab632e2007-05-28 08:33:01 -0400320static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
321 u32 opts);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900322#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900323static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
Tejun Heoc1332872006-07-26 15:59:26 +0900324static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
325static int ahci_pci_device_resume(struct pci_dev *pdev);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900326#endif
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700327static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
328static ssize_t ahci_activity_store(struct ata_device *dev,
329 enum sw_activity val);
330static void ahci_init_sw_activity(struct ata_link *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Matthew Garrett77cdec12009-07-17 19:13:47 +0100332static ssize_t ahci_show_host_caps(struct device *dev,
333 struct device_attribute *attr, char *buf);
334static ssize_t ahci_show_host_version(struct device *dev,
335 struct device_attribute *attr, char *buf);
336static ssize_t ahci_show_port_cmd(struct device *dev,
337 struct device_attribute *attr, char *buf);
338
339DEVICE_ATTR(ahci_host_caps, S_IRUGO, ahci_show_host_caps, NULL);
340DEVICE_ATTR(ahci_host_version, S_IRUGO, ahci_show_host_version, NULL);
341DEVICE_ATTR(ahci_port_cmd, S_IRUGO, ahci_show_port_cmd, NULL);
342
Tony Jonesee959b02008-02-22 00:13:36 +0100343static struct device_attribute *ahci_shost_attrs[] = {
344 &dev_attr_link_power_management_policy,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700345 &dev_attr_em_message_type,
346 &dev_attr_em_message,
Matthew Garrett77cdec12009-07-17 19:13:47 +0100347 &dev_attr_ahci_host_caps,
348 &dev_attr_ahci_host_version,
349 &dev_attr_ahci_port_cmd,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700350 NULL
351};
352
353static struct device_attribute *ahci_sdev_attrs[] = {
354 &dev_attr_sw_activity,
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200355 &dev_attr_unload_heads,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400356 NULL
357};
358
Jeff Garzik193515d2005-11-07 00:59:37 -0500359static struct scsi_host_template ahci_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900360 ATA_NCQ_SHT(DRV_NAME),
Tejun Heo12fad3f2006-05-15 21:03:55 +0900361 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 .dma_boundary = AHCI_DMA_BOUNDARY,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400364 .shost_attrs = ahci_shost_attrs,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700365 .sdev_attrs = ahci_sdev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366};
367
Tejun Heo029cfd62008-03-25 12:22:49 +0900368static struct ata_port_operations ahci_ops = {
369 .inherits = &sata_pmp_port_ops,
370
Tejun Heo7d50b602007-09-23 13:19:54 +0900371 .qc_defer = sata_pmp_qc_defer_cmd_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 .qc_prep = ahci_qc_prep,
373 .qc_issue = ahci_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900374 .qc_fill_rtf = ahci_qc_fill_rtf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Tejun Heo78cd52d2006-05-15 20:58:29 +0900376 .freeze = ahci_freeze,
377 .thaw = ahci_thaw,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900378 .softreset = ahci_softreset,
379 .hardreset = ahci_hardreset,
380 .postreset = ahci_postreset,
Tejun Heo071f44b2008-04-07 22:47:22 +0900381 .pmp_softreset = ahci_softreset,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900382 .error_handler = ahci_error_handler,
383 .post_internal_cmd = ahci_post_internal_cmd,
Tejun Heo029cfd62008-03-25 12:22:49 +0900384 .dev_config = ahci_dev_config,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900385
Tejun Heo029cfd62008-03-25 12:22:49 +0900386 .scr_read = ahci_scr_read,
387 .scr_write = ahci_scr_write,
Tejun Heo7d50b602007-09-23 13:19:54 +0900388 .pmp_attach = ahci_pmp_attach,
389 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900390
Tejun Heo029cfd62008-03-25 12:22:49 +0900391 .enable_pm = ahci_enable_alpm,
392 .disable_pm = ahci_disable_alpm,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700393 .em_show = ahci_led_show,
394 .em_store = ahci_led_store,
395 .sw_activity_show = ahci_activity_show,
396 .sw_activity_store = ahci_activity_store,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900397#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900398 .port_suspend = ahci_port_suspend,
399 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 .port_start = ahci_port_start,
402 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403};
404
Tejun Heo029cfd62008-03-25 12:22:49 +0900405static struct ata_port_operations ahci_vt8251_ops = {
406 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900407 .hardreset = ahci_vt8251_hardreset,
Tejun Heoad616ff2006-11-01 18:00:24 +0900408};
409
Tejun Heo029cfd62008-03-25 12:22:49 +0900410static struct ata_port_operations ahci_p5wdh_ops = {
411 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900412 .hardreset = ahci_p5wdh_hardreset,
Tejun Heoedc93052007-10-25 14:59:16 +0900413};
414
Shane Huangbd172432008-06-10 15:52:04 +0800415static struct ata_port_operations ahci_sb600_ops = {
416 .inherits = &ahci_ops,
417 .softreset = ahci_sb600_softreset,
418 .pmp_softreset = ahci_sb600_softreset,
419};
420
Tejun Heo417a1a62007-09-23 13:19:55 +0900421#define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
422
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100423static const struct ata_port_info ahci_port_info[] = {
Jeff Garzik4da646b2009-04-08 02:00:13 -0400424 [board_ahci] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 {
Tejun Heo1188c0d2007-04-23 02:41:05 +0900426 .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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 .port_ops = &ahci_ops,
430 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400431 [board_ahci_vt8251] =
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200432 {
Tejun Heo6949b912007-09-23 13:19:55 +0900433 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900434 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100435 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400436 .udma_mask = ATA_UDMA6,
Tejun Heoad616ff2006-11-01 18:00:24 +0900437 .port_ops = &ahci_vt8251_ops,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200438 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400439 [board_ahci_ign_iferr] =
Tejun Heo41669552006-11-29 11:33:14 +0900440 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900441 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR),
442 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100443 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400444 .udma_mask = ATA_UDMA6,
Tejun Heo41669552006-11-29 11:33:14 +0900445 .port_ops = &ahci_ops,
446 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400447 [board_ahci_sb600] =
Conke Hu55a61602007-03-27 18:33:05 +0800448 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900449 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
Shane Huang58a09b32009-05-27 15:04:43 +0800450 AHCI_HFLAG_NO_MSI | AHCI_HFLAG_SECT255),
Tejun Heo417a1a62007-09-23 13:19:55 +0900451 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100452 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400453 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800454 .port_ops = &ahci_sb600_ops,
Conke Hu55a61602007-03-27 18:33:05 +0800455 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400456 [board_ahci_mv] =
Jeff Garzikcd70c262007-07-08 02:29:42 -0400457 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900458 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI |
Tejun Heo17248462008-08-29 16:03:59 +0200459 AHCI_HFLAG_MV_PATA | AHCI_HFLAG_NO_PMP),
Jeff Garzikcd70c262007-07-08 02:29:42 -0400460 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo417a1a62007-09-23 13:19:55 +0900461 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100462 .pio_mask = ATA_PIO4,
Jeff Garzikcd70c262007-07-08 02:29:42 -0400463 .udma_mask = ATA_UDMA6,
464 .port_ops = &ahci_ops,
465 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400466 [board_ahci_sb700] = /* for SB700 and SB800 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800467 {
Shane Huangbd172432008-06-10 15:52:04 +0800468 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL),
Shane Huange39fc8c2008-02-22 05:00:31 -0800469 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100470 .pio_mask = ATA_PIO4,
Shane Huange39fc8c2008-02-22 05:00:31 -0800471 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800472 .port_ops = &ahci_sb600_ops,
Shane Huange39fc8c2008-02-22 05:00:31 -0800473 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400474 [board_ahci_mcp65] =
Tejun Heoe297d992008-06-10 00:13:04 +0900475 {
476 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
477 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100478 .pio_mask = ATA_PIO4,
Tejun Heoe297d992008-06-10 00:13:04 +0900479 .udma_mask = ATA_UDMA6,
480 .port_ops = &ahci_ops,
481 },
Jeff Garzik4da646b2009-04-08 02:00:13 -0400482 [board_ahci_nopmp] =
Tejun Heo9a3b1032008-06-18 20:56:58 -0400483 {
484 AHCI_HFLAGS (AHCI_HFLAG_NO_PMP),
485 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100486 .pio_mask = ATA_PIO4,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400487 .udma_mask = ATA_UDMA6,
488 .port_ops = &ahci_ops,
489 },
Tejun Heoaa431dd2009-04-08 14:25:31 -0700490 /* board_ahci_yesncq */
491 {
492 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
493 .flags = AHCI_FLAG_COMMON,
494 .pio_mask = ATA_PIO4,
495 .udma_mask = ATA_UDMA6,
496 .port_ops = &ahci_ops,
497 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498};
499
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500500static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400501 /* Intel */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400502 { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
503 { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
504 { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
505 { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
506 { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
Tejun Heo82490c02007-01-23 15:13:39 +0900507 { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400508 { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
509 { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
510 { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
511 { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
Tejun Heo7a234af2007-09-03 12:44:57 +0900512 { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */
513 { PCI_VDEVICE(INTEL, 0x2822), board_ahci }, /* ICH8 */
514 { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */
515 { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */
516 { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */
517 { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */
518 { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */
519 { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */
520 { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */
521 { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */
522 { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */
523 { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */
524 { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */
525 { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */
526 { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */
527 { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */
528 { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */
Jason Gastond4155e62007-09-20 17:35:00 -0400529 { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */
530 { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800531 { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */
Mark Goodwinb2dde6a2009-06-26 10:44:11 -0500532 { PCI_VDEVICE(INTEL, 0x3a22), board_ahci }, /* ICH10 */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800533 { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */
David Milburnc1f57d92009-07-22 15:15:56 -0500534 { PCI_VDEVICE(INTEL, 0x3b22), board_ahci }, /* PCH AHCI */
535 { PCI_VDEVICE(INTEL, 0x3b23), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700536 { PCI_VDEVICE(INTEL, 0x3b24), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700537 { PCI_VDEVICE(INTEL, 0x3b25), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500538 { PCI_VDEVICE(INTEL, 0x3b29), board_ahci }, /* PCH AHCI */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700539 { PCI_VDEVICE(INTEL, 0x3b2b), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700540 { PCI_VDEVICE(INTEL, 0x3b2c), board_ahci }, /* PCH RAID */
David Milburnc1f57d92009-07-22 15:15:56 -0500541 { PCI_VDEVICE(INTEL, 0x3b2f), board_ahci }, /* PCH AHCI */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400542
Tejun Heoe34bb372007-02-26 20:24:03 +0900543 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
544 { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
545 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400546
547 /* ATI */
Conke Huc65ec1c2007-04-11 18:23:14 +0800548 { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800549 { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb700 }, /* ATI SB700/800 */
550 { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb700 }, /* ATI SB700/800 */
551 { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb700 }, /* ATI SB700/800 */
552 { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb700 }, /* ATI SB700/800 */
553 { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb700 }, /* ATI SB700/800 */
554 { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb700 }, /* ATI SB700/800 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400555
556 /* VIA */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400557 { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
Tejun Heobf335542007-04-11 17:27:14 +0900558 { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400559
560 /* NVIDIA */
Tejun Heoe297d992008-06-10 00:13:04 +0900561 { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci_mcp65 }, /* MCP65 */
562 { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci_mcp65 }, /* MCP65 */
563 { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci_mcp65 }, /* MCP65 */
564 { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci_mcp65 }, /* MCP65 */
565 { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci_mcp65 }, /* MCP65 */
566 { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci_mcp65 }, /* MCP65 */
567 { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci_mcp65 }, /* MCP65 */
568 { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci_mcp65 }, /* MCP65 */
Tejun Heoaa431dd2009-04-08 14:25:31 -0700569 { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci_yesncq }, /* MCP67 */
570 { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci_yesncq }, /* MCP67 */
571 { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci_yesncq }, /* MCP67 */
572 { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci_yesncq }, /* MCP67 */
573 { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci_yesncq }, /* MCP67 */
574 { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci_yesncq }, /* MCP67 */
575 { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci_yesncq }, /* MCP67 */
576 { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci_yesncq }, /* MCP67 */
577 { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci_yesncq }, /* MCP67 */
578 { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci_yesncq }, /* MCP67 */
579 { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci_yesncq }, /* MCP67 */
580 { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci_yesncq }, /* MCP67 */
581 { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci_yesncq }, /* MCP73 */
582 { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci_yesncq }, /* MCP73 */
583 { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci_yesncq }, /* MCP73 */
584 { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci_yesncq }, /* MCP73 */
585 { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci_yesncq }, /* MCP73 */
586 { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci_yesncq }, /* MCP73 */
587 { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci_yesncq }, /* MCP73 */
588 { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci_yesncq }, /* MCP73 */
589 { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci_yesncq }, /* MCP73 */
590 { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci_yesncq }, /* MCP73 */
591 { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci_yesncq }, /* MCP73 */
592 { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci_yesncq }, /* MCP73 */
Peer Chen0522b282007-06-07 18:05:12 +0800593 { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */
594 { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */
595 { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */
596 { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */
597 { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */
598 { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */
599 { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */
600 { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */
601 { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */
602 { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
603 { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
604 { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
peerchen6ba86952007-12-03 22:20:37 +0800605 { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */
606 { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */
607 { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */
608 { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */
Peer Chen71008192007-09-24 10:16:25 +0800609 { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */
610 { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */
611 { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */
612 { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */
613 { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */
614 { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */
615 { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */
616 { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */
peerchen7adbe462009-02-27 16:58:41 +0800617 { PCI_VDEVICE(NVIDIA, 0x0d84), board_ahci }, /* MCP89 */
618 { PCI_VDEVICE(NVIDIA, 0x0d85), board_ahci }, /* MCP89 */
619 { PCI_VDEVICE(NVIDIA, 0x0d86), board_ahci }, /* MCP89 */
620 { PCI_VDEVICE(NVIDIA, 0x0d87), board_ahci }, /* MCP89 */
621 { PCI_VDEVICE(NVIDIA, 0x0d88), board_ahci }, /* MCP89 */
622 { PCI_VDEVICE(NVIDIA, 0x0d89), board_ahci }, /* MCP89 */
623 { PCI_VDEVICE(NVIDIA, 0x0d8a), board_ahci }, /* MCP89 */
624 { PCI_VDEVICE(NVIDIA, 0x0d8b), board_ahci }, /* MCP89 */
625 { PCI_VDEVICE(NVIDIA, 0x0d8c), board_ahci }, /* MCP89 */
626 { PCI_VDEVICE(NVIDIA, 0x0d8d), board_ahci }, /* MCP89 */
627 { PCI_VDEVICE(NVIDIA, 0x0d8e), board_ahci }, /* MCP89 */
628 { PCI_VDEVICE(NVIDIA, 0x0d8f), board_ahci }, /* MCP89 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400629
Jeff Garzik95916ed2006-07-29 04:10:14 -0400630 /* SiS */
Tejun Heo20e2de42008-08-01 12:51:43 +0900631 { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */
632 { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 968 */
633 { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */
Jeff Garzik95916ed2006-07-29 04:10:14 -0400634
Jeff Garzikcd70c262007-07-08 02:29:42 -0400635 /* Marvell */
636 { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100637 { PCI_VDEVICE(MARVELL, 0x6121), board_ahci_mv }, /* 6121 */
Jeff Garzikcd70c262007-07-08 02:29:42 -0400638
Mark Nelsonc77a0362008-10-23 14:08:16 +1100639 /* Promise */
640 { PCI_VDEVICE(PROMISE, 0x3f20), board_ahci }, /* PDC42819 */
641
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500642 /* Generic, PCI class code for AHCI */
643 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Conke Huc9f89472007-01-09 05:32:51 -0500644 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 { } /* terminate list */
647};
648
649
650static struct pci_driver ahci_pci_driver = {
651 .name = DRV_NAME,
652 .id_table = ahci_pci_tbl,
653 .probe = ahci_init_one,
Tejun Heo24dc5f32007-01-20 16:00:28 +0900654 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900655#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900656 .suspend = ahci_pci_device_suspend,
657 .resume = ahci_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900658#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659};
660
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700661static int ahci_em_messages = 1;
662module_param(ahci_em_messages, int, 0444);
663/* add other LED protocol types when they become supported */
664MODULE_PARM_DESC(ahci_em_messages,
665 "Set AHCI Enclosure Management Message type (0 = disabled, 1 = LED");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Alan Cox5b66c822008-09-03 14:48:34 +0100667#if defined(CONFIG_PATA_MARVELL) || defined(CONFIG_PATA_MARVELL_MODULE)
668static int marvell_enable;
669#else
670static int marvell_enable = 1;
671#endif
672module_param(marvell_enable, int, 0644);
673MODULE_PARM_DESC(marvell_enable, "Marvell SATA via AHCI (1 = enabled)");
674
675
Tejun Heo98fa4b62006-11-02 12:17:23 +0900676static inline int ahci_nr_ports(u32 cap)
677{
678 return (cap & 0x1f) + 1;
679}
680
Jeff Garzikdab632e2007-05-28 08:33:01 -0400681static inline void __iomem *__ahci_port_base(struct ata_host *host,
682 unsigned int port_no)
683{
684 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
685
686 return mmio + 0x100 + (port_no * 0x80);
687}
688
Tejun Heo4447d352007-04-17 23:44:08 +0900689static inline void __iomem *ahci_port_base(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Jeff Garzikdab632e2007-05-28 08:33:01 -0400691 return __ahci_port_base(ap->host, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Tejun Heob710a1f2008-01-05 23:11:57 +0900694static void ahci_enable_ahci(void __iomem *mmio)
695{
Tejun Heo15fe9822008-04-23 20:52:58 +0900696 int i;
Tejun Heob710a1f2008-01-05 23:11:57 +0900697 u32 tmp;
698
699 /* turn on AHCI_EN */
700 tmp = readl(mmio + HOST_CTL);
Tejun Heo15fe9822008-04-23 20:52:58 +0900701 if (tmp & HOST_AHCI_EN)
702 return;
703
704 /* Some controllers need AHCI_EN to be written multiple times.
705 * Try a few times before giving up.
706 */
707 for (i = 0; i < 5; i++) {
Tejun Heob710a1f2008-01-05 23:11:57 +0900708 tmp |= HOST_AHCI_EN;
709 writel(tmp, mmio + HOST_CTL);
710 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
Tejun Heo15fe9822008-04-23 20:52:58 +0900711 if (tmp & HOST_AHCI_EN)
712 return;
713 msleep(10);
Tejun Heob710a1f2008-01-05 23:11:57 +0900714 }
Tejun Heo15fe9822008-04-23 20:52:58 +0900715
716 WARN_ON(1);
Tejun Heob710a1f2008-01-05 23:11:57 +0900717}
718
Matthew Garrett77cdec12009-07-17 19:13:47 +0100719static ssize_t ahci_show_host_caps(struct device *dev,
720 struct device_attribute *attr, char *buf)
721{
722 struct Scsi_Host *shost = class_to_shost(dev);
723 struct ata_port *ap = ata_shost_to_port(shost);
724 struct ahci_host_priv *hpriv = ap->host->private_data;
725
726 return sprintf(buf, "%x\n", hpriv->cap);
727}
728
729static ssize_t ahci_show_host_version(struct device *dev,
730 struct device_attribute *attr, char *buf)
731{
732 struct Scsi_Host *shost = class_to_shost(dev);
733 struct ata_port *ap = ata_shost_to_port(shost);
734 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
735
736 return sprintf(buf, "%x\n", readl(mmio + HOST_VERSION));
737}
738
739static ssize_t ahci_show_port_cmd(struct device *dev,
740 struct device_attribute *attr, char *buf)
741{
742 struct Scsi_Host *shost = class_to_shost(dev);
743 struct ata_port *ap = ata_shost_to_port(shost);
744 void __iomem *port_mmio = ahci_port_base(ap);
745
746 return sprintf(buf, "%x\n", readl(port_mmio + PORT_CMD));
747}
748
Tejun Heod447df12007-03-18 22:15:33 +0900749/**
750 * ahci_save_initial_config - Save and fixup initial config values
Tejun Heo4447d352007-04-17 23:44:08 +0900751 * @pdev: target PCI device
Tejun Heo4447d352007-04-17 23:44:08 +0900752 * @hpriv: host private area to store config values
Tejun Heod447df12007-03-18 22:15:33 +0900753 *
754 * Some registers containing configuration info might be setup by
755 * BIOS and might be cleared on reset. This function saves the
756 * initial values of those registers into @hpriv such that they
757 * can be restored after controller reset.
758 *
759 * If inconsistent, config values are fixed up by this function.
760 *
761 * LOCKING:
762 * None.
763 */
Tejun Heo4447d352007-04-17 23:44:08 +0900764static void ahci_save_initial_config(struct pci_dev *pdev,
Tejun Heo4447d352007-04-17 23:44:08 +0900765 struct ahci_host_priv *hpriv)
Tejun Heod447df12007-03-18 22:15:33 +0900766{
Tejun Heo4447d352007-04-17 23:44:08 +0900767 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +0900768 u32 cap, port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900769 int i;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100770 int mv;
Tejun Heod447df12007-03-18 22:15:33 +0900771
Tejun Heob710a1f2008-01-05 23:11:57 +0900772 /* make sure AHCI mode is enabled before accessing CAP */
773 ahci_enable_ahci(mmio);
774
Tejun Heod447df12007-03-18 22:15:33 +0900775 /* Values prefixed with saved_ are written back to host after
776 * reset. Values without are used for driver operation.
777 */
778 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
779 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
780
Tejun Heo274c1fd2007-07-16 14:29:40 +0900781 /* some chips have errata preventing 64bit use */
Tejun Heo417a1a62007-09-23 13:19:55 +0900782 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Tejun Heoc7a42152007-05-18 16:23:19 +0200783 dev_printk(KERN_INFO, &pdev->dev,
784 "controller can't do 64bit DMA, forcing 32bit\n");
785 cap &= ~HOST_CAP_64;
786 }
787
Tejun Heo417a1a62007-09-23 13:19:55 +0900788 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Tejun Heo274c1fd2007-07-16 14:29:40 +0900789 dev_printk(KERN_INFO, &pdev->dev,
790 "controller can't do NCQ, turning off CAP_NCQ\n");
791 cap &= ~HOST_CAP_NCQ;
792 }
793
Tejun Heoe297d992008-06-10 00:13:04 +0900794 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
795 dev_printk(KERN_INFO, &pdev->dev,
796 "controller can do NCQ, turning on CAP_NCQ\n");
797 cap |= HOST_CAP_NCQ;
798 }
799
Roel Kluin258cd842008-03-09 21:42:40 +0100800 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Tejun Heo6949b912007-09-23 13:19:55 +0900801 dev_printk(KERN_INFO, &pdev->dev,
802 "controller can't do PMP, turning off CAP_PMP\n");
803 cap &= ~HOST_CAP_PMP;
804 }
805
Tejun Heod799e082008-06-17 12:46:30 +0900806 if (pdev->vendor == PCI_VENDOR_ID_JMICRON && pdev->device == 0x2361 &&
807 port_map != 1) {
808 dev_printk(KERN_INFO, &pdev->dev,
809 "JMB361 has only one port, port_map 0x%x -> 0x%x\n",
810 port_map, 1);
811 port_map = 1;
812 }
813
Jeff Garzikcd70c262007-07-08 02:29:42 -0400814 /*
815 * Temporary Marvell 6145 hack: PATA port presence
816 * is asserted through the standard AHCI port
817 * presence register, as bit 4 (counting from 0)
818 */
Tejun Heo417a1a62007-09-23 13:19:55 +0900819 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100820 if (pdev->device == 0x6121)
821 mv = 0x3;
822 else
823 mv = 0xf;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400824 dev_printk(KERN_ERR, &pdev->dev,
825 "MV_AHCI HACK: port_map %x -> %x\n",
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100826 port_map,
827 port_map & mv);
Alan Cox5b66c822008-09-03 14:48:34 +0100828 dev_printk(KERN_ERR, &pdev->dev,
829 "Disabling your PATA port. Use the boot option 'ahci.marvell_enable=0' to avoid this.\n");
Jeff Garzikcd70c262007-07-08 02:29:42 -0400830
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100831 port_map &= mv;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400832 }
833
Tejun Heo17199b12007-03-18 22:26:53 +0900834 /* cross check port_map and cap.n_ports */
Tejun Heo7a234af2007-09-03 12:44:57 +0900835 if (port_map) {
Tejun Heo837f5f82008-02-06 15:13:51 +0900836 int map_ports = 0;
Tejun Heo17199b12007-03-18 22:26:53 +0900837
Tejun Heo837f5f82008-02-06 15:13:51 +0900838 for (i = 0; i < AHCI_MAX_PORTS; i++)
839 if (port_map & (1 << i))
840 map_ports++;
Tejun Heo17199b12007-03-18 22:26:53 +0900841
Tejun Heo837f5f82008-02-06 15:13:51 +0900842 /* If PI has more ports than n_ports, whine, clear
843 * port_map and let it be generated from n_ports.
Tejun Heo17199b12007-03-18 22:26:53 +0900844 */
Tejun Heo837f5f82008-02-06 15:13:51 +0900845 if (map_ports > ahci_nr_ports(cap)) {
Tejun Heo4447d352007-04-17 23:44:08 +0900846 dev_printk(KERN_WARNING, &pdev->dev,
Tejun Heo837f5f82008-02-06 15:13:51 +0900847 "implemented port map (0x%x) contains more "
848 "ports than nr_ports (%u), using nr_ports\n",
849 port_map, ahci_nr_ports(cap));
Tejun Heo7a234af2007-09-03 12:44:57 +0900850 port_map = 0;
851 }
852 }
853
854 /* fabricate port_map from cap.nr_ports */
855 if (!port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900856 port_map = (1 << ahci_nr_ports(cap)) - 1;
Tejun Heo7a234af2007-09-03 12:44:57 +0900857 dev_printk(KERN_WARNING, &pdev->dev,
858 "forcing PORTS_IMPL to 0x%x\n", port_map);
859
860 /* write the fixed up value to the PI register */
861 hpriv->saved_port_map = port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900862 }
863
Tejun Heod447df12007-03-18 22:15:33 +0900864 /* record values to use during operation */
865 hpriv->cap = cap;
866 hpriv->port_map = port_map;
867}
868
869/**
870 * ahci_restore_initial_config - Restore initial config
Tejun Heo4447d352007-04-17 23:44:08 +0900871 * @host: target ATA host
Tejun Heod447df12007-03-18 22:15:33 +0900872 *
873 * Restore initial config stored by ahci_save_initial_config().
874 *
875 * LOCKING:
876 * None.
877 */
Tejun Heo4447d352007-04-17 23:44:08 +0900878static void ahci_restore_initial_config(struct ata_host *host)
Tejun Heod447df12007-03-18 22:15:33 +0900879{
Tejun Heo4447d352007-04-17 23:44:08 +0900880 struct ahci_host_priv *hpriv = host->private_data;
881 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
882
Tejun Heod447df12007-03-18 22:15:33 +0900883 writel(hpriv->saved_cap, mmio + HOST_CAP);
884 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
885 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
886}
887
Tejun Heo203ef6c2007-07-16 14:29:40 +0900888static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900890 static const int offset[] = {
891 [SCR_STATUS] = PORT_SCR_STAT,
892 [SCR_CONTROL] = PORT_SCR_CTL,
893 [SCR_ERROR] = PORT_SCR_ERR,
894 [SCR_ACTIVE] = PORT_SCR_ACT,
895 [SCR_NOTIFICATION] = PORT_SCR_NTF,
896 };
897 struct ahci_host_priv *hpriv = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Tejun Heo203ef6c2007-07-16 14:29:40 +0900899 if (sc_reg < ARRAY_SIZE(offset) &&
900 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
901 return offset[sc_reg];
Tejun Heoda3dbb12007-07-16 14:29:40 +0900902 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Tejun Heo82ef04f2008-07-31 17:02:40 +0900905static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Tejun Heo82ef04f2008-07-31 17:02:40 +0900907 void __iomem *port_mmio = ahci_port_base(link->ap);
908 int offset = ahci_scr_offset(link->ap, sc_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Tejun Heo203ef6c2007-07-16 14:29:40 +0900910 if (offset) {
911 *val = readl(port_mmio + offset);
912 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
Tejun Heo203ef6c2007-07-16 14:29:40 +0900914 return -EINVAL;
915}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Tejun Heo82ef04f2008-07-31 17:02:40 +0900917static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
Tejun Heo203ef6c2007-07-16 14:29:40 +0900918{
Tejun Heo82ef04f2008-07-31 17:02:40 +0900919 void __iomem *port_mmio = ahci_port_base(link->ap);
920 int offset = ahci_scr_offset(link->ap, sc_reg);
Tejun Heo203ef6c2007-07-16 14:29:40 +0900921
922 if (offset) {
923 writel(val, port_mmio + offset);
924 return 0;
925 }
926 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Tejun Heo4447d352007-04-17 23:44:08 +0900929static void ahci_start_engine(struct ata_port *ap)
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900930{
Tejun Heo4447d352007-04-17 23:44:08 +0900931 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900932 u32 tmp;
933
Tejun Heod8fcd112006-07-26 15:59:25 +0900934 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +0900935 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900936 tmp |= PORT_CMD_START;
937 writel(tmp, port_mmio + PORT_CMD);
938 readl(port_mmio + PORT_CMD); /* flush */
939}
940
Tejun Heo4447d352007-04-17 23:44:08 +0900941static int ahci_stop_engine(struct ata_port *ap)
Tejun Heo254950c2006-07-26 15:59:25 +0900942{
Tejun Heo4447d352007-04-17 23:44:08 +0900943 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo254950c2006-07-26 15:59:25 +0900944 u32 tmp;
945
946 tmp = readl(port_mmio + PORT_CMD);
947
Tejun Heod8fcd112006-07-26 15:59:25 +0900948 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900949 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
950 return 0;
951
Tejun Heod8fcd112006-07-26 15:59:25 +0900952 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900953 tmp &= ~PORT_CMD_START;
954 writel(tmp, port_mmio + PORT_CMD);
955
Tejun Heod8fcd112006-07-26 15:59:25 +0900956 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +0900957 tmp = ata_wait_register(port_mmio + PORT_CMD,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400958 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +0900959 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +0900960 return -EIO;
961
962 return 0;
963}
964
Tejun Heo4447d352007-04-17 23:44:08 +0900965static void ahci_start_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900966{
Tejun Heo4447d352007-04-17 23:44:08 +0900967 void __iomem *port_mmio = ahci_port_base(ap);
968 struct ahci_host_priv *hpriv = ap->host->private_data;
969 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo0be0aa92006-07-26 15:59:26 +0900970 u32 tmp;
971
972 /* set FIS registers */
Tejun Heo4447d352007-04-17 23:44:08 +0900973 if (hpriv->cap & HOST_CAP_64)
974 writel((pp->cmd_slot_dma >> 16) >> 16,
975 port_mmio + PORT_LST_ADDR_HI);
976 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900977
Tejun Heo4447d352007-04-17 23:44:08 +0900978 if (hpriv->cap & HOST_CAP_64)
979 writel((pp->rx_fis_dma >> 16) >> 16,
980 port_mmio + PORT_FIS_ADDR_HI);
981 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900982
983 /* enable FIS reception */
984 tmp = readl(port_mmio + PORT_CMD);
985 tmp |= PORT_CMD_FIS_RX;
986 writel(tmp, port_mmio + PORT_CMD);
987
988 /* flush */
989 readl(port_mmio + PORT_CMD);
990}
991
Tejun Heo4447d352007-04-17 23:44:08 +0900992static int ahci_stop_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900993{
Tejun Heo4447d352007-04-17 23:44:08 +0900994 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900995 u32 tmp;
996
997 /* disable FIS reception */
998 tmp = readl(port_mmio + PORT_CMD);
999 tmp &= ~PORT_CMD_FIS_RX;
1000 writel(tmp, port_mmio + PORT_CMD);
1001
1002 /* wait for completion, spec says 500ms, give it 1000 */
1003 tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
1004 PORT_CMD_FIS_ON, 10, 1000);
1005 if (tmp & PORT_CMD_FIS_ON)
1006 return -EBUSY;
1007
1008 return 0;
1009}
1010
Tejun Heo4447d352007-04-17 23:44:08 +09001011static void ahci_power_up(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001012{
Tejun Heo4447d352007-04-17 23:44:08 +09001013 struct ahci_host_priv *hpriv = ap->host->private_data;
1014 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001015 u32 cmd;
1016
1017 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
1018
1019 /* spin up device */
Tejun Heo4447d352007-04-17 23:44:08 +09001020 if (hpriv->cap & HOST_CAP_SSS) {
Tejun Heo0be0aa92006-07-26 15:59:26 +09001021 cmd |= PORT_CMD_SPIN_UP;
1022 writel(cmd, port_mmio + PORT_CMD);
1023 }
1024
1025 /* wake up link */
1026 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
1027}
1028
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001029static void ahci_disable_alpm(struct ata_port *ap)
1030{
1031 struct ahci_host_priv *hpriv = ap->host->private_data;
1032 void __iomem *port_mmio = ahci_port_base(ap);
1033 u32 cmd;
1034 struct ahci_port_priv *pp = ap->private_data;
1035
1036 /* IPM bits should be disabled by libata-core */
1037 /* get the existing command bits */
1038 cmd = readl(port_mmio + PORT_CMD);
1039
1040 /* disable ALPM and ASP */
1041 cmd &= ~PORT_CMD_ASP;
1042 cmd &= ~PORT_CMD_ALPE;
1043
1044 /* force the interface back to active */
1045 cmd |= PORT_CMD_ICC_ACTIVE;
1046
1047 /* write out new cmd value */
1048 writel(cmd, port_mmio + PORT_CMD);
1049 cmd = readl(port_mmio + PORT_CMD);
1050
1051 /* wait 10ms to be sure we've come out of any low power state */
1052 msleep(10);
1053
1054 /* clear out any PhyRdy stuff from interrupt status */
1055 writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT);
1056
1057 /* go ahead and clean out PhyRdy Change from Serror too */
Tejun Heo82ef04f2008-07-31 17:02:40 +09001058 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001059
1060 /*
1061 * Clear flag to indicate that we should ignore all PhyRdy
1062 * state changes
1063 */
1064 hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG;
1065
1066 /*
1067 * Enable interrupts on Phy Ready.
1068 */
1069 pp->intr_mask |= PORT_IRQ_PHYRDY;
1070 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1071
1072 /*
1073 * don't change the link pm policy - we can be called
1074 * just to turn of link pm temporarily
1075 */
1076}
1077
1078static int ahci_enable_alpm(struct ata_port *ap,
1079 enum link_pm policy)
1080{
1081 struct ahci_host_priv *hpriv = ap->host->private_data;
1082 void __iomem *port_mmio = ahci_port_base(ap);
1083 u32 cmd;
1084 struct ahci_port_priv *pp = ap->private_data;
1085 u32 asp;
1086
1087 /* Make sure the host is capable of link power management */
1088 if (!(hpriv->cap & HOST_CAP_ALPM))
1089 return -EINVAL;
1090
1091 switch (policy) {
1092 case MAX_PERFORMANCE:
1093 case NOT_AVAILABLE:
1094 /*
1095 * if we came here with NOT_AVAILABLE,
1096 * it just means this is the first time we
1097 * have tried to enable - default to max performance,
1098 * and let the user go to lower power modes on request.
1099 */
1100 ahci_disable_alpm(ap);
1101 return 0;
1102 case MIN_POWER:
1103 /* configure HBA to enter SLUMBER */
1104 asp = PORT_CMD_ASP;
1105 break;
1106 case MEDIUM_POWER:
1107 /* configure HBA to enter PARTIAL */
1108 asp = 0;
1109 break;
1110 default:
1111 return -EINVAL;
1112 }
1113
1114 /*
1115 * Disable interrupts on Phy Ready. This keeps us from
1116 * getting woken up due to spurious phy ready interrupts
1117 * TBD - Hot plug should be done via polling now, is
1118 * that even supported?
1119 */
1120 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
1121 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1122
1123 /*
1124 * Set a flag to indicate that we should ignore all PhyRdy
1125 * state changes since these can happen now whenever we
1126 * change link state
1127 */
1128 hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG;
1129
1130 /* get the existing command bits */
1131 cmd = readl(port_mmio + PORT_CMD);
1132
1133 /*
1134 * Set ASP based on Policy
1135 */
1136 cmd |= asp;
1137
1138 /*
1139 * Setting this bit will instruct the HBA to aggressively
1140 * enter a lower power link state when it's appropriate and
1141 * based on the value set above for ASP
1142 */
1143 cmd |= PORT_CMD_ALPE;
1144
1145 /* write out new cmd value */
1146 writel(cmd, port_mmio + PORT_CMD);
1147 cmd = readl(port_mmio + PORT_CMD);
1148
1149 /* IPM bits should be set by libata-core */
1150 return 0;
1151}
1152
Tejun Heo438ac6d2007-03-02 17:31:26 +09001153#ifdef CONFIG_PM
Tejun Heo4447d352007-04-17 23:44:08 +09001154static void ahci_power_down(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001155{
Tejun Heo4447d352007-04-17 23:44:08 +09001156 struct ahci_host_priv *hpriv = ap->host->private_data;
1157 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001158 u32 cmd, scontrol;
1159
Tejun Heo4447d352007-04-17 23:44:08 +09001160 if (!(hpriv->cap & HOST_CAP_SSS))
Tejun Heo07c53da2007-01-21 02:10:11 +09001161 return;
1162
1163 /* put device into listen mode, first set PxSCTL.DET to 0 */
1164 scontrol = readl(port_mmio + PORT_SCR_CTL);
1165 scontrol &= ~0xf;
1166 writel(scontrol, port_mmio + PORT_SCR_CTL);
1167
1168 /* then set PxCMD.SUD to 0 */
Tejun Heo0be0aa92006-07-26 15:59:26 +09001169 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
Tejun Heo07c53da2007-01-21 02:10:11 +09001170 cmd &= ~PORT_CMD_SPIN_UP;
1171 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001172}
Tejun Heo438ac6d2007-03-02 17:31:26 +09001173#endif
Tejun Heo0be0aa92006-07-26 15:59:26 +09001174
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001175static void ahci_start_port(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001176{
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001177 struct ahci_port_priv *pp = ap->private_data;
1178 struct ata_link *link;
1179 struct ahci_em_priv *emp;
David Milburn4c1e9aa2009-04-03 15:36:41 -05001180 ssize_t rc;
1181 int i;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001182
Tejun Heo0be0aa92006-07-26 15:59:26 +09001183 /* enable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001184 ahci_start_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001185
1186 /* enable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001187 ahci_start_engine(ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001188
1189 /* turn on LEDs */
1190 if (ap->flags & ATA_FLAG_EM) {
Tejun Heo1eca4362008-11-03 20:03:17 +09001191 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001192 emp = &pp->em_priv[link->pmp];
David Milburn4c1e9aa2009-04-03 15:36:41 -05001193
1194 /* EM Transmit bit maybe busy during init */
Tejun Heod50ce072009-05-12 10:57:41 +09001195 for (i = 0; i < EM_MAX_RETRY; i++) {
David Milburn4c1e9aa2009-04-03 15:36:41 -05001196 rc = ahci_transmit_led_message(ap,
1197 emp->led_state,
1198 4);
1199 if (rc == -EBUSY)
Tejun Heod50ce072009-05-12 10:57:41 +09001200 msleep(1);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001201 else
1202 break;
1203 }
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001204 }
1205 }
1206
1207 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
Tejun Heo1eca4362008-11-03 20:03:17 +09001208 ata_for_each_link(link, ap, EDGE)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001209 ahci_init_sw_activity(link);
1210
Tejun Heo0be0aa92006-07-26 15:59:26 +09001211}
1212
Tejun Heo4447d352007-04-17 23:44:08 +09001213static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001214{
1215 int rc;
1216
1217 /* disable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001218 rc = ahci_stop_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001219 if (rc) {
1220 *emsg = "failed to stop engine";
1221 return rc;
1222 }
1223
1224 /* disable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001225 rc = ahci_stop_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001226 if (rc) {
1227 *emsg = "failed stop FIS RX";
1228 return rc;
1229 }
1230
Tejun Heo0be0aa92006-07-26 15:59:26 +09001231 return 0;
1232}
1233
Tejun Heo4447d352007-04-17 23:44:08 +09001234static int ahci_reset_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001235{
Tejun Heo4447d352007-04-17 23:44:08 +09001236 struct pci_dev *pdev = to_pci_dev(host->dev);
Tejun Heo49f29092007-11-19 16:03:44 +09001237 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001238 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +09001239 u32 tmp;
Tejun Heod91542c2006-07-26 15:59:26 +09001240
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001241 /* we must be in AHCI mode, before using anything
1242 * AHCI-specific, such as HOST_RESET.
1243 */
Tejun Heob710a1f2008-01-05 23:11:57 +09001244 ahci_enable_ahci(mmio);
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001245
1246 /* global controller reset */
Tejun Heoa22e6442008-03-10 10:25:25 +09001247 if (!ahci_skip_host_reset) {
1248 tmp = readl(mmio + HOST_CTL);
1249 if ((tmp & HOST_RESET) == 0) {
1250 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1251 readl(mmio + HOST_CTL); /* flush */
1252 }
Tejun Heod91542c2006-07-26 15:59:26 +09001253
Zhang Rui24920c82008-07-04 13:32:17 +08001254 /*
1255 * to perform host reset, OS should set HOST_RESET
1256 * and poll until this bit is read to be "0".
1257 * reset must complete within 1 second, or
Tejun Heoa22e6442008-03-10 10:25:25 +09001258 * the hardware should be considered fried.
1259 */
Zhang Rui24920c82008-07-04 13:32:17 +08001260 tmp = ata_wait_register(mmio + HOST_CTL, HOST_RESET,
1261 HOST_RESET, 10, 1000);
Tejun Heod91542c2006-07-26 15:59:26 +09001262
Tejun Heoa22e6442008-03-10 10:25:25 +09001263 if (tmp & HOST_RESET) {
1264 dev_printk(KERN_ERR, host->dev,
1265 "controller reset failed (0x%x)\n", tmp);
1266 return -EIO;
1267 }
Tejun Heod91542c2006-07-26 15:59:26 +09001268
Tejun Heoa22e6442008-03-10 10:25:25 +09001269 /* turn on AHCI mode */
1270 ahci_enable_ahci(mmio);
Tejun Heo98fa4b62006-11-02 12:17:23 +09001271
Tejun Heoa22e6442008-03-10 10:25:25 +09001272 /* Some registers might be cleared on reset. Restore
1273 * initial values.
1274 */
1275 ahci_restore_initial_config(host);
1276 } else
1277 dev_printk(KERN_INFO, host->dev,
1278 "skipping global host reset\n");
Tejun Heod91542c2006-07-26 15:59:26 +09001279
1280 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1281 u16 tmp16;
1282
1283 /* configure PCS */
1284 pci_read_config_word(pdev, 0x92, &tmp16);
Tejun Heo49f29092007-11-19 16:03:44 +09001285 if ((tmp16 & hpriv->port_map) != hpriv->port_map) {
1286 tmp16 |= hpriv->port_map;
1287 pci_write_config_word(pdev, 0x92, tmp16);
1288 }
Tejun Heod91542c2006-07-26 15:59:26 +09001289 }
1290
1291 return 0;
1292}
1293
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001294static void ahci_sw_activity(struct ata_link *link)
1295{
1296 struct ata_port *ap = link->ap;
1297 struct ahci_port_priv *pp = ap->private_data;
1298 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1299
1300 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
1301 return;
1302
1303 emp->activity++;
1304 if (!timer_pending(&emp->timer))
1305 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
1306}
1307
1308static void ahci_sw_activity_blink(unsigned long arg)
1309{
1310 struct ata_link *link = (struct ata_link *)arg;
1311 struct ata_port *ap = link->ap;
1312 struct ahci_port_priv *pp = ap->private_data;
1313 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1314 unsigned long led_message = emp->led_state;
1315 u32 activity_led_state;
David Milburneb409632008-10-16 09:26:19 -05001316 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001317
David Milburn87943ac2008-10-13 14:38:36 -05001318 led_message &= EM_MSG_LED_VALUE;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001319 led_message |= ap->port_no | (link->pmp << 8);
1320
1321 /* check to see if we've had activity. If so,
1322 * toggle state of LED and reset timer. If not,
1323 * turn LED to desired idle state.
1324 */
David Milburneb409632008-10-16 09:26:19 -05001325 spin_lock_irqsave(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001326 if (emp->saved_activity != emp->activity) {
1327 emp->saved_activity = emp->activity;
1328 /* get the current LED state */
David Milburn87943ac2008-10-13 14:38:36 -05001329 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001330
1331 if (activity_led_state)
1332 activity_led_state = 0;
1333 else
1334 activity_led_state = 1;
1335
1336 /* clear old state */
David Milburn87943ac2008-10-13 14:38:36 -05001337 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001338
1339 /* toggle state */
1340 led_message |= (activity_led_state << 16);
1341 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
1342 } else {
1343 /* switch to idle */
David Milburn87943ac2008-10-13 14:38:36 -05001344 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001345 if (emp->blink_policy == BLINK_OFF)
1346 led_message |= (1 << 16);
1347 }
David Milburneb409632008-10-16 09:26:19 -05001348 spin_unlock_irqrestore(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001349 ahci_transmit_led_message(ap, led_message, 4);
1350}
1351
1352static void ahci_init_sw_activity(struct ata_link *link)
1353{
1354 struct ata_port *ap = link->ap;
1355 struct ahci_port_priv *pp = ap->private_data;
1356 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1357
1358 /* init activity stats, setup timer */
1359 emp->saved_activity = emp->activity = 0;
1360 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
1361
1362 /* check our blink policy and set flag for link if it's enabled */
1363 if (emp->blink_policy)
1364 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1365}
1366
1367static int ahci_reset_em(struct ata_host *host)
1368{
1369 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
1370 u32 em_ctl;
1371
1372 em_ctl = readl(mmio + HOST_EM_CTL);
1373 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1374 return -EINVAL;
1375
1376 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1377 return 0;
1378}
1379
1380static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1381 ssize_t size)
1382{
1383 struct ahci_host_priv *hpriv = ap->host->private_data;
1384 struct ahci_port_priv *pp = ap->private_data;
1385 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
1386 u32 em_ctl;
1387 u32 message[] = {0, 0};
Linus Torvalds93082f02008-07-25 10:56:36 -07001388 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001389 int pmp;
1390 struct ahci_em_priv *emp;
1391
1392 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001393 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001394 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001395 emp = &pp->em_priv[pmp];
1396 else
1397 return -EINVAL;
1398
1399 spin_lock_irqsave(ap->lock, flags);
1400
1401 /*
1402 * if we are still busy transmitting a previous message,
1403 * do not allow
1404 */
1405 em_ctl = readl(mmio + HOST_EM_CTL);
1406 if (em_ctl & EM_CTL_TM) {
1407 spin_unlock_irqrestore(ap->lock, flags);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001408 return -EBUSY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001409 }
1410
1411 /*
1412 * create message header - this is all zero except for
1413 * the message size, which is 4 bytes.
1414 */
1415 message[0] |= (4 << 8);
1416
1417 /* ignore 0:4 of byte zero, fill in port info yourself */
David Milburn87943ac2008-10-13 14:38:36 -05001418 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001419
1420 /* write message to EM_LOC */
1421 writel(message[0], mmio + hpriv->em_loc);
1422 writel(message[1], mmio + hpriv->em_loc+4);
1423
1424 /* save off new led state for port/slot */
David Milburn208f2a82009-03-20 14:14:23 -05001425 emp->led_state = state;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001426
1427 /*
1428 * tell hardware to transmit the message
1429 */
1430 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1431
1432 spin_unlock_irqrestore(ap->lock, flags);
1433 return size;
1434}
1435
1436static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1437{
1438 struct ahci_port_priv *pp = ap->private_data;
1439 struct ata_link *link;
1440 struct ahci_em_priv *emp;
1441 int rc = 0;
1442
Tejun Heo1eca4362008-11-03 20:03:17 +09001443 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001444 emp = &pp->em_priv[link->pmp];
1445 rc += sprintf(buf, "%lx\n", emp->led_state);
1446 }
1447 return rc;
1448}
1449
1450static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1451 size_t size)
1452{
1453 int state;
1454 int pmp;
1455 struct ahci_port_priv *pp = ap->private_data;
1456 struct ahci_em_priv *emp;
1457
1458 state = simple_strtoul(buf, NULL, 0);
1459
1460 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001461 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Tejun Heod50ce072009-05-12 10:57:41 +09001462 if (pmp < EM_MAX_SLOTS)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001463 emp = &pp->em_priv[pmp];
1464 else
1465 return -EINVAL;
1466
1467 /* mask off the activity bits if we are in sw_activity
1468 * mode, user should turn off sw_activity before setting
1469 * activity led through em_message
1470 */
1471 if (emp->blink_policy)
David Milburn87943ac2008-10-13 14:38:36 -05001472 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001473
1474 return ahci_transmit_led_message(ap, state, size);
1475}
1476
1477static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1478{
1479 struct ata_link *link = dev->link;
1480 struct ata_port *ap = link->ap;
1481 struct ahci_port_priv *pp = ap->private_data;
1482 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1483 u32 port_led_state = emp->led_state;
1484
1485 /* save the desired Activity LED behavior */
1486 if (val == OFF) {
1487 /* clear LFLAG */
1488 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1489
1490 /* set the LED to OFF */
David Milburn87943ac2008-10-13 14:38:36 -05001491 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001492 port_led_state |= (ap->port_no | (link->pmp << 8));
1493 ahci_transmit_led_message(ap, port_led_state, 4);
1494 } else {
1495 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1496 if (val == BLINK_OFF) {
1497 /* set LED to ON for idle */
David Milburn87943ac2008-10-13 14:38:36 -05001498 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001499 port_led_state |= (ap->port_no | (link->pmp << 8));
David Milburn87943ac2008-10-13 14:38:36 -05001500 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001501 ahci_transmit_led_message(ap, port_led_state, 4);
1502 }
1503 }
1504 emp->blink_policy = val;
1505 return 0;
1506}
1507
1508static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1509{
1510 struct ata_link *link = dev->link;
1511 struct ata_port *ap = link->ap;
1512 struct ahci_port_priv *pp = ap->private_data;
1513 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1514
1515 /* display the saved value of activity behavior for this
1516 * disk.
1517 */
1518 return sprintf(buf, "%d\n", emp->blink_policy);
1519}
1520
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001521static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap,
1522 int port_no, void __iomem *mmio,
1523 void __iomem *port_mmio)
1524{
1525 const char *emsg = NULL;
1526 int rc;
1527 u32 tmp;
1528
1529 /* make sure port is not active */
1530 rc = ahci_deinit_port(ap, &emsg);
1531 if (rc)
1532 dev_printk(KERN_WARNING, &pdev->dev,
1533 "%s (%d)\n", emsg, rc);
1534
1535 /* clear SError */
1536 tmp = readl(port_mmio + PORT_SCR_ERR);
1537 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1538 writel(tmp, port_mmio + PORT_SCR_ERR);
1539
1540 /* clear port IRQ */
1541 tmp = readl(port_mmio + PORT_IRQ_STAT);
1542 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1543 if (tmp)
1544 writel(tmp, port_mmio + PORT_IRQ_STAT);
1545
1546 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1547}
1548
Tejun Heo4447d352007-04-17 23:44:08 +09001549static void ahci_init_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001550{
Tejun Heo417a1a62007-09-23 13:19:55 +09001551 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001552 struct pci_dev *pdev = to_pci_dev(host->dev);
1553 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001554 int i;
Jeff Garzikcd70c262007-07-08 02:29:42 -04001555 void __iomem *port_mmio;
Tejun Heod91542c2006-07-26 15:59:26 +09001556 u32 tmp;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001557 int mv;
Tejun Heod91542c2006-07-26 15:59:26 +09001558
Tejun Heo417a1a62007-09-23 13:19:55 +09001559 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001560 if (pdev->device == 0x6121)
1561 mv = 2;
1562 else
1563 mv = 4;
1564 port_mmio = __ahci_port_base(host, mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -04001565
1566 writel(0, port_mmio + PORT_IRQ_MASK);
1567
1568 /* clear port IRQ */
1569 tmp = readl(port_mmio + PORT_IRQ_STAT);
1570 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1571 if (tmp)
1572 writel(tmp, port_mmio + PORT_IRQ_STAT);
1573 }
1574
Tejun Heo4447d352007-04-17 23:44:08 +09001575 for (i = 0; i < host->n_ports; i++) {
1576 struct ata_port *ap = host->ports[i];
Tejun Heod91542c2006-07-26 15:59:26 +09001577
Jeff Garzikcd70c262007-07-08 02:29:42 -04001578 port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09001579 if (ata_port_is_dummy(ap))
Tejun Heod91542c2006-07-26 15:59:26 +09001580 continue;
Tejun Heod91542c2006-07-26 15:59:26 +09001581
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001582 ahci_port_init(pdev, ap, i, mmio, port_mmio);
Tejun Heod91542c2006-07-26 15:59:26 +09001583 }
1584
1585 tmp = readl(mmio + HOST_CTL);
1586 VPRINTK("HOST_CTL 0x%x\n", tmp);
1587 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1588 tmp = readl(mmio + HOST_CTL);
1589 VPRINTK("HOST_CTL 0x%x\n", tmp);
1590}
1591
Jeff Garzika8785392008-02-28 15:43:48 -05001592static void ahci_dev_config(struct ata_device *dev)
1593{
1594 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1595
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001596 if (hpriv->flags & AHCI_HFLAG_SECT255) {
Jeff Garzika8785392008-02-28 15:43:48 -05001597 dev->max_sectors = 255;
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001598 ata_dev_printk(dev, KERN_INFO,
1599 "SB600 AHCI: limiting to 255 sectors per cmd\n");
1600 }
Jeff Garzika8785392008-02-28 15:43:48 -05001601}
1602
Tejun Heo422b7592005-12-19 22:37:17 +09001603static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Tejun Heo4447d352007-04-17 23:44:08 +09001605 void __iomem *port_mmio = ahci_port_base(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +09001607 u32 tmp;
1608
1609 tmp = readl(port_mmio + PORT_SIG);
1610 tf.lbah = (tmp >> 24) & 0xff;
1611 tf.lbam = (tmp >> 16) & 0xff;
1612 tf.lbal = (tmp >> 8) & 0xff;
1613 tf.nsect = (tmp) & 0xff;
1614
1615 return ata_dev_classify(&tf);
1616}
1617
Tejun Heo12fad3f2006-05-15 21:03:55 +09001618static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1619 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +09001620{
Tejun Heo12fad3f2006-05-15 21:03:55 +09001621 dma_addr_t cmd_tbl_dma;
1622
1623 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1624
1625 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1626 pp->cmd_slot[tag].status = 0;
1627 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1628 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +09001629}
1630
Tejun Heod2e75df2007-07-16 14:29:39 +09001631static int ahci_kick_engine(struct ata_port *ap, int force_restart)
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001632{
Tejun Heo350756f2008-04-07 22:47:21 +09001633 void __iomem *port_mmio = ahci_port_base(ap);
Jeff Garzikcca39742006-08-24 03:19:22 -04001634 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo520d06f2008-04-07 22:47:21 +09001635 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001636 u32 tmp;
Tejun Heod2e75df2007-07-16 14:29:39 +09001637 int busy, rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001638
Tejun Heod2e75df2007-07-16 14:29:39 +09001639 /* do we need to kick the port? */
Tejun Heo520d06f2008-04-07 22:47:21 +09001640 busy = status & (ATA_BUSY | ATA_DRQ);
Tejun Heod2e75df2007-07-16 14:29:39 +09001641 if (!busy && !force_restart)
1642 return 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001643
Tejun Heod2e75df2007-07-16 14:29:39 +09001644 /* stop engine */
1645 rc = ahci_stop_engine(ap);
1646 if (rc)
1647 goto out_restart;
1648
1649 /* need to do CLO? */
1650 if (!busy) {
1651 rc = 0;
1652 goto out_restart;
1653 }
1654
1655 if (!(hpriv->cap & HOST_CAP_CLO)) {
1656 rc = -EOPNOTSUPP;
1657 goto out_restart;
1658 }
1659
1660 /* perform CLO */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001661 tmp = readl(port_mmio + PORT_CMD);
1662 tmp |= PORT_CMD_CLO;
1663 writel(tmp, port_mmio + PORT_CMD);
1664
Tejun Heod2e75df2007-07-16 14:29:39 +09001665 rc = 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001666 tmp = ata_wait_register(port_mmio + PORT_CMD,
1667 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1668 if (tmp & PORT_CMD_CLO)
Tejun Heod2e75df2007-07-16 14:29:39 +09001669 rc = -EIO;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001670
Tejun Heod2e75df2007-07-16 14:29:39 +09001671 /* restart engine */
1672 out_restart:
1673 ahci_start_engine(ap);
1674 return rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001675}
1676
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001677static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1678 struct ata_taskfile *tf, int is_cmd, u16 flags,
1679 unsigned long timeout_msec)
1680{
1681 const u32 cmd_fis_len = 5; /* five dwords */
1682 struct ahci_port_priv *pp = ap->private_data;
1683 void __iomem *port_mmio = ahci_port_base(ap);
1684 u8 *fis = pp->cmd_tbl;
1685 u32 tmp;
1686
1687 /* prep the command */
1688 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1689 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1690
1691 /* issue & wait */
1692 writel(1, port_mmio + PORT_CMD_ISSUE);
1693
1694 if (timeout_msec) {
1695 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1,
1696 1, timeout_msec);
1697 if (tmp & 0x1) {
1698 ahci_kick_engine(ap, 1);
1699 return -EBUSY;
1700 }
1701 } else
1702 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1703
1704 return 0;
1705}
1706
Shane Huangbd172432008-06-10 15:52:04 +08001707static int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1708 int pmp, unsigned long deadline,
1709 int (*check_ready)(struct ata_link *link))
Tejun Heo4658f792006-03-22 21:07:03 +09001710{
Tejun Heocc0680a2007-08-06 18:36:23 +09001711 struct ata_port *ap = link->ap;
Tejun Heo55946392009-08-04 14:30:08 +09001712 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo4658f792006-03-22 21:07:03 +09001713 const char *reason = NULL;
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001714 unsigned long now, msecs;
Tejun Heo4658f792006-03-22 21:07:03 +09001715 struct ata_taskfile tf;
Tejun Heo4658f792006-03-22 21:07:03 +09001716 int rc;
1717
1718 DPRINTK("ENTER\n");
1719
1720 /* prepare for SRST (AHCI-1.1 10.4.1) */
Tejun Heod2e75df2007-07-16 14:29:39 +09001721 rc = ahci_kick_engine(ap, 1);
Tejun Heo994056d2007-12-06 15:02:48 +09001722 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09001723 ata_link_printk(link, KERN_WARNING,
Tejun Heo994056d2007-12-06 15:02:48 +09001724 "failed to reset engine (errno=%d)\n", rc);
Tejun Heo4658f792006-03-22 21:07:03 +09001725
Tejun Heocc0680a2007-08-06 18:36:23 +09001726 ata_tf_init(link->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +09001727
1728 /* issue the first D2H Register FIS */
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001729 msecs = 0;
1730 now = jiffies;
1731 if (time_after(now, deadline))
1732 msecs = jiffies_to_msecs(deadline - now);
1733
Tejun Heo4658f792006-03-22 21:07:03 +09001734 tf.ctl |= ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001735 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001736 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
Tejun Heo4658f792006-03-22 21:07:03 +09001737 rc = -EIO;
1738 reason = "1st FIS failed";
1739 goto fail;
1740 }
1741
1742 /* spec says at least 5us, but be generous and sleep for 1ms */
1743 msleep(1);
1744
1745 /* issue the second D2H Register FIS */
Tejun Heo4658f792006-03-22 21:07:03 +09001746 tf.ctl &= ~ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001747 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
Tejun Heo4658f792006-03-22 21:07:03 +09001748
Tejun Heo705e76b2008-04-07 22:47:19 +09001749 /* wait for link to become ready */
Shane Huangbd172432008-06-10 15:52:04 +08001750 rc = ata_wait_after_reset(link, deadline, check_ready);
Tejun Heo55946392009-08-04 14:30:08 +09001751 if (rc == -EBUSY && hpriv->flags & AHCI_HFLAG_SRST_TOUT_IS_OFFLINE) {
1752 /*
1753 * Workaround for cases where link online status can't
1754 * be trusted. Treat device readiness timeout as link
1755 * offline.
1756 */
1757 ata_link_printk(link, KERN_INFO,
1758 "device not ready, treating as offline\n");
1759 *class = ATA_DEV_NONE;
1760 } else if (rc) {
1761 /* link occupied, -ENODEV too is an error */
Tejun Heo9b893912007-02-02 16:50:52 +09001762 reason = "device not ready";
1763 goto fail;
Tejun Heo55946392009-08-04 14:30:08 +09001764 } else
1765 *class = ahci_dev_classify(ap);
Tejun Heo4658f792006-03-22 21:07:03 +09001766
1767 DPRINTK("EXIT, class=%u\n", *class);
1768 return 0;
1769
Tejun Heo4658f792006-03-22 21:07:03 +09001770 fail:
Tejun Heocc0680a2007-08-06 18:36:23 +09001771 ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +09001772 return rc;
1773}
1774
Shane Huangbd172432008-06-10 15:52:04 +08001775static int ahci_check_ready(struct ata_link *link)
1776{
1777 void __iomem *port_mmio = ahci_port_base(link->ap);
1778 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1779
1780 return ata_check_ready(status);
1781}
1782
1783static int ahci_softreset(struct ata_link *link, unsigned int *class,
1784 unsigned long deadline)
1785{
1786 int pmp = sata_srst_pmp(link);
1787
1788 DPRINTK("ENTER\n");
1789
1790 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1791}
1792
1793static int ahci_sb600_check_ready(struct ata_link *link)
1794{
1795 void __iomem *port_mmio = ahci_port_base(link->ap);
1796 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1797 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1798
1799 /*
1800 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1801 * which can save timeout delay.
1802 */
1803 if (irq_status & PORT_IRQ_BAD_PMP)
1804 return -EIO;
1805
1806 return ata_check_ready(status);
1807}
1808
1809static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
1810 unsigned long deadline)
1811{
1812 struct ata_port *ap = link->ap;
1813 void __iomem *port_mmio = ahci_port_base(ap);
1814 int pmp = sata_srst_pmp(link);
1815 int rc;
1816 u32 irq_sts;
1817
1818 DPRINTK("ENTER\n");
1819
1820 rc = ahci_do_softreset(link, class, pmp, deadline,
1821 ahci_sb600_check_ready);
1822
1823 /*
1824 * Soft reset fails on some ATI chips with IPMS set when PMP
1825 * is enabled but SATA HDD/ODD is connected to SATA port,
1826 * do soft reset again to port 0.
1827 */
1828 if (rc == -EIO) {
1829 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1830 if (irq_sts & PORT_IRQ_BAD_PMP) {
1831 ata_link_printk(link, KERN_WARNING,
Shane Huangb6931c12009-08-05 10:10:41 +08001832 "applying SB600 PMP SRST workaround "
1833 "and retrying\n");
Shane Huangbd172432008-06-10 15:52:04 +08001834 rc = ahci_do_softreset(link, class, 0, deadline,
1835 ahci_check_ready);
1836 }
1837 }
1838
1839 return rc;
1840}
1841
Tejun Heocc0680a2007-08-06 18:36:23 +09001842static int ahci_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001843 unsigned long deadline)
Tejun Heo422b7592005-12-19 22:37:17 +09001844{
Tejun Heo9dadd452008-04-07 22:47:19 +09001845 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heocc0680a2007-08-06 18:36:23 +09001846 struct ata_port *ap = link->ap;
Tejun Heo42969712006-05-31 18:28:18 +09001847 struct ahci_port_priv *pp = ap->private_data;
1848 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1849 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001850 bool online;
Tejun Heo4bd00f62006-02-11 16:26:02 +09001851 int rc;
1852
1853 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Tejun Heo4447d352007-04-17 23:44:08 +09001855 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +09001856
1857 /* clear D2H reception area to properly wait for D2H FIS */
Tejun Heocc0680a2007-08-06 18:36:23 +09001858 ata_tf_init(link->device, &tf);
Tejun Heodfd7a3d2007-01-26 15:37:20 +09001859 tf.command = 0x80;
Tejun Heo99771262007-07-16 14:29:38 +09001860 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
Tejun Heo42969712006-05-31 18:28:18 +09001861
Tejun Heo9dadd452008-04-07 22:47:19 +09001862 rc = sata_link_hardreset(link, timing, deadline, &online,
1863 ahci_check_ready);
Tejun Heo42969712006-05-31 18:28:18 +09001864
Tejun Heo4447d352007-04-17 23:44:08 +09001865 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Tejun Heo9dadd452008-04-07 22:47:19 +09001867 if (online)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001868 *class = ahci_dev_classify(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Tejun Heo4bd00f62006-02-11 16:26:02 +09001870 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1871 return rc;
1872}
1873
Tejun Heocc0680a2007-08-06 18:36:23 +09001874static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001875 unsigned long deadline)
Tejun Heoad616ff2006-11-01 18:00:24 +09001876{
Tejun Heocc0680a2007-08-06 18:36:23 +09001877 struct ata_port *ap = link->ap;
Tejun Heo9dadd452008-04-07 22:47:19 +09001878 bool online;
Tejun Heoad616ff2006-11-01 18:00:24 +09001879 int rc;
1880
1881 DPRINTK("ENTER\n");
1882
Tejun Heo4447d352007-04-17 23:44:08 +09001883 ahci_stop_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001884
Tejun Heocc0680a2007-08-06 18:36:23 +09001885 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001886 deadline, &online, NULL);
Tejun Heoad616ff2006-11-01 18:00:24 +09001887
Tejun Heo4447d352007-04-17 23:44:08 +09001888 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001889
1890 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1891
1892 /* vt8251 doesn't clear BSY on signature FIS reception,
1893 * request follow-up softreset.
1894 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001895 return online ? -EAGAIN : rc;
Tejun Heoad616ff2006-11-01 18:00:24 +09001896}
1897
Tejun Heoedc93052007-10-25 14:59:16 +09001898static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
1899 unsigned long deadline)
1900{
1901 struct ata_port *ap = link->ap;
1902 struct ahci_port_priv *pp = ap->private_data;
1903 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1904 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001905 bool online;
Tejun Heoedc93052007-10-25 14:59:16 +09001906 int rc;
1907
1908 ahci_stop_engine(ap);
1909
1910 /* clear D2H reception area to properly wait for D2H FIS */
1911 ata_tf_init(link->device, &tf);
1912 tf.command = 0x80;
1913 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1914
1915 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001916 deadline, &online, NULL);
Tejun Heoedc93052007-10-25 14:59:16 +09001917
1918 ahci_start_engine(ap);
1919
Tejun Heoedc93052007-10-25 14:59:16 +09001920 /* The pseudo configuration device on SIMG4726 attached to
1921 * ASUS P5W-DH Deluxe doesn't send signature FIS after
1922 * hardreset if no device is attached to the first downstream
1923 * port && the pseudo device locks up on SRST w/ PMP==0. To
1924 * work around this, wait for !BSY only briefly. If BSY isn't
1925 * cleared, perform CLO and proceed to IDENTIFY (achieved by
1926 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
1927 *
1928 * Wait for two seconds. Devices attached to downstream port
1929 * which can't process the following IDENTIFY after this will
1930 * have to be reset again. For most cases, this should
1931 * suffice while making probing snappish enough.
1932 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001933 if (online) {
1934 rc = ata_wait_after_reset(link, jiffies + 2 * HZ,
1935 ahci_check_ready);
1936 if (rc)
1937 ahci_kick_engine(ap, 0);
1938 }
Tejun Heo9dadd452008-04-07 22:47:19 +09001939 return rc;
Tejun Heoedc93052007-10-25 14:59:16 +09001940}
1941
Tejun Heocc0680a2007-08-06 18:36:23 +09001942static void ahci_postreset(struct ata_link *link, unsigned int *class)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001943{
Tejun Heocc0680a2007-08-06 18:36:23 +09001944 struct ata_port *ap = link->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09001945 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001946 u32 new_tmp, tmp;
1947
Tejun Heo203c75b2008-04-07 22:47:18 +09001948 ata_std_postreset(link, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -05001949
1950 /* Make sure port's ATAPI bit is set appropriately */
1951 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001952 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -05001953 new_tmp |= PORT_CMD_ATAPI;
1954 else
1955 new_tmp &= ~PORT_CMD_ATAPI;
1956 if (new_tmp != tmp) {
1957 writel(new_tmp, port_mmio + PORT_CMD);
1958 readl(port_mmio + PORT_CMD); /* flush */
1959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961
Tejun Heo12fad3f2006-05-15 21:03:55 +09001962static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001964 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09001965 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1966 unsigned int si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 VPRINTK("ENTER\n");
1969
1970 /*
1971 * Next, the S/G list.
1972 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09001973 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001974 dma_addr_t addr = sg_dma_address(sg);
1975 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Tejun Heoff2aeb12007-12-05 16:43:11 +09001977 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1978 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1979 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
Jeff Garzik828d09d2005-11-12 01:27:07 -05001981
Tejun Heoff2aeb12007-12-05 16:43:11 +09001982 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983}
1984
1985static void ahci_qc_prep(struct ata_queued_cmd *qc)
1986{
Jeff Garzika0ea7322005-06-04 01:13:15 -04001987 struct ata_port *ap = qc->ap;
1988 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo405e66b2007-11-27 19:28:53 +09001989 int is_atapi = ata_is_atapi(qc->tf.protocol);
Tejun Heo12fad3f2006-05-15 21:03:55 +09001990 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 u32 opts;
1992 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -05001993 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 * Fill in command table information. First, the header,
1997 * a SATA Register - Host to Device command FIS.
1998 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09001999 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
2000
Tejun Heo7d50b602007-09-23 13:19:54 +09002001 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
Tejun Heocc9278e2006-02-10 17:25:47 +09002002 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002003 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
2004 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -04002005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Tejun Heocc9278e2006-02-10 17:25:47 +09002007 n_elem = 0;
2008 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +09002009 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Tejun Heocc9278e2006-02-10 17:25:47 +09002011 /*
2012 * Fill in command slot information.
2013 */
Tejun Heo7d50b602007-09-23 13:19:54 +09002014 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
Tejun Heocc9278e2006-02-10 17:25:47 +09002015 if (qc->tf.flags & ATA_TFLAG_WRITE)
2016 opts |= AHCI_CMD_WRITE;
2017 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +09002018 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -05002019
Tejun Heo12fad3f2006-05-15 21:03:55 +09002020 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021}
2022
Tejun Heo78cd52d2006-05-15 20:58:29 +09002023static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
Tejun Heo417a1a62007-09-23 13:19:55 +09002025 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002026 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002027 struct ata_eh_info *host_ehi = &ap->link.eh_info;
2028 struct ata_link *link = NULL;
2029 struct ata_queued_cmd *active_qc;
2030 struct ata_eh_info *active_ehi;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002031 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Tejun Heo7d50b602007-09-23 13:19:54 +09002033 /* determine active link */
Tejun Heo1eca4362008-11-03 20:03:17 +09002034 ata_for_each_link(link, ap, EDGE)
Tejun Heo7d50b602007-09-23 13:19:54 +09002035 if (ata_link_active(link))
2036 break;
2037 if (!link)
2038 link = &ap->link;
2039
2040 active_qc = ata_qc_from_tag(ap, link->active_tag);
2041 active_ehi = &link->eh_info;
2042
2043 /* record irq stat */
2044 ata_ehi_clear_desc(host_ehi);
2045 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
Jeff Garzik9f68a242005-11-15 14:03:47 -05002046
Tejun Heo78cd52d2006-05-15 20:58:29 +09002047 /* AHCI needs SError cleared; otherwise, it might lock up */
Tejun Heo82ef04f2008-07-31 17:02:40 +09002048 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
2049 ahci_scr_write(&ap->link, SCR_ERROR, serror);
Tejun Heo7d50b602007-09-23 13:19:54 +09002050 host_ehi->serror |= serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Tejun Heo41669552006-11-29 11:33:14 +09002052 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
Tejun Heo417a1a62007-09-23 13:19:55 +09002053 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
Tejun Heo41669552006-11-29 11:33:14 +09002054 irq_stat &= ~PORT_IRQ_IF_ERR;
2055
Conke Hu55a61602007-03-27 18:33:05 +08002056 if (irq_stat & PORT_IRQ_TF_ERR) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002057 /* If qc is active, charge it; otherwise, the active
2058 * link. There's no active qc on NCQ errors. It will
2059 * be determined by EH by reading log page 10h.
2060 */
2061 if (active_qc)
2062 active_qc->err_mask |= AC_ERR_DEV;
2063 else
2064 active_ehi->err_mask |= AC_ERR_DEV;
2065
Tejun Heo417a1a62007-09-23 13:19:55 +09002066 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
Tejun Heo7d50b602007-09-23 13:19:54 +09002067 host_ehi->serror &= ~SERR_INTERNAL;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Tejun Heo78cd52d2006-05-15 20:58:29 +09002070 if (irq_stat & PORT_IRQ_UNK_FIS) {
2071 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Tejun Heo7d50b602007-09-23 13:19:54 +09002073 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002074 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002075 ata_ehi_push_desc(active_ehi,
2076 "unknown FIS %08x %08x %08x %08x" ,
Tejun Heo78cd52d2006-05-15 20:58:29 +09002077 unk[0], unk[1], unk[2], unk[3]);
2078 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04002079
Tejun Heo071f44b2008-04-07 22:47:22 +09002080 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002081 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002082 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002083 ata_ehi_push_desc(active_ehi, "incorrect PMP");
2084 }
Tejun Heo78cd52d2006-05-15 20:58:29 +09002085
Tejun Heo7d50b602007-09-23 13:19:54 +09002086 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
2087 host_ehi->err_mask |= AC_ERR_HOST_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002088 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002089 ata_ehi_push_desc(host_ehi, "host bus error");
2090 }
2091
2092 if (irq_stat & PORT_IRQ_IF_ERR) {
2093 host_ehi->err_mask |= AC_ERR_ATA_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002094 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002095 ata_ehi_push_desc(host_ehi, "interface fatal error");
2096 }
2097
2098 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
2099 ata_ehi_hotplugged(host_ehi);
2100 ata_ehi_push_desc(host_ehi, "%s",
2101 irq_stat & PORT_IRQ_CONNECT ?
2102 "connection status changed" : "PHY RDY changed");
2103 }
2104
2105 /* okay, let's hand over to EH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Tejun Heo78cd52d2006-05-15 20:58:29 +09002107 if (irq_stat & PORT_IRQ_FREEZE)
2108 ata_port_freeze(ap);
2109 else
2110 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111}
2112
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002113static void ahci_port_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
Tejun Heo350756f2008-04-07 22:47:21 +09002115 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002116 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo0291f952007-01-25 19:16:28 +09002117 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo5f226c62007-10-09 15:02:23 +09002118 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heob06ce3e2007-10-09 15:06:48 +09002119 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Tejun Heo12fad3f2006-05-15 21:03:55 +09002120 u32 status, qc_active;
Tejun Heo459ad682007-12-07 12:46:23 +09002121 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 status = readl(port_mmio + PORT_IRQ_STAT);
2124 writel(status, port_mmio + PORT_IRQ_STAT);
2125
Tejun Heob06ce3e2007-10-09 15:06:48 +09002126 /* ignore BAD_PMP while resetting */
2127 if (unlikely(resetting))
2128 status &= ~PORT_IRQ_BAD_PMP;
2129
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002130 /* If we are getting PhyRdy, this is
2131 * just a power state change, we should
2132 * clear out this, plus the PhyRdy/Comm
2133 * Wake bits from Serror
2134 */
2135 if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) &&
2136 (status & PORT_IRQ_PHYRDY)) {
2137 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo82ef04f2008-07-31 17:02:40 +09002138 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002139 }
2140
Tejun Heo78cd52d2006-05-15 20:58:29 +09002141 if (unlikely(status & PORT_IRQ_ERROR)) {
2142 ahci_error_intr(ap, status);
2143 return;
2144 }
2145
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002146 if (status & PORT_IRQ_SDB_FIS) {
Tejun Heo5f226c62007-10-09 15:02:23 +09002147 /* If SNotification is available, leave notification
2148 * handling to sata_async_notification(). If not,
2149 * emulate it by snooping SDB FIS RX area.
2150 *
2151 * Snooping FIS RX area is probably cheaper than
2152 * poking SNotification but some constrollers which
2153 * implement SNotification, ICH9 for example, don't
2154 * store AN SDB FIS into receive area.
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002155 */
Tejun Heo5f226c62007-10-09 15:02:23 +09002156 if (hpriv->cap & HOST_CAP_SNTF)
Tejun Heo7d77b242007-09-23 13:14:13 +09002157 sata_async_notification(ap);
Tejun Heo5f226c62007-10-09 15:02:23 +09002158 else {
2159 /* If the 'N' bit in word 0 of the FIS is set,
2160 * we just received asynchronous notification.
2161 * Tell libata about it.
2162 */
2163 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
2164 u32 f0 = le32_to_cpu(f[0]);
2165
2166 if (f0 & (1 << 15))
2167 sata_async_notification(ap);
2168 }
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002169 }
2170
Tejun Heo7d50b602007-09-23 13:19:54 +09002171 /* pp->active_link is valid iff any command is in flight */
2172 if (ap->qc_active && pp->active_link->sactive)
Tejun Heo12fad3f2006-05-15 21:03:55 +09002173 qc_active = readl(port_mmio + PORT_SCR_ACT);
2174 else
2175 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
2176
Tejun Heo79f97da2008-04-07 22:47:20 +09002177 rc = ata_qc_complete_multiple(ap, qc_active);
Tejun Heob06ce3e2007-10-09 15:06:48 +09002178
Tejun Heo459ad682007-12-07 12:46:23 +09002179 /* while resetting, invalid completions are expected */
2180 if (unlikely(rc < 0 && !resetting)) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002181 ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002182 ehi->action |= ATA_EH_RESET;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002183 ata_port_freeze(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185}
2186
David Howells7d12e782006-10-05 14:55:46 +01002187static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
Jeff Garzikcca39742006-08-24 03:19:22 -04002189 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 struct ahci_host_priv *hpriv;
2191 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -04002192 void __iomem *mmio;
Tejun Heod28f87a2008-07-05 13:10:50 +09002193 u32 irq_stat, irq_masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 VPRINTK("ENTER\n");
2196
Jeff Garzikcca39742006-08-24 03:19:22 -04002197 hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002198 mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200 /* sigh. 0xffffffff is a valid return from h/w */
2201 irq_stat = readl(mmio + HOST_IRQ_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (!irq_stat)
2203 return IRQ_NONE;
2204
Tejun Heod28f87a2008-07-05 13:10:50 +09002205 irq_masked = irq_stat & hpriv->port_map;
2206
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002207 spin_lock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002209 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Tejun Heod28f87a2008-07-05 13:10:50 +09002212 if (!(irq_masked & (1 << i)))
Jeff Garzik67846b32005-10-05 02:58:32 -04002213 continue;
2214
Jeff Garzikcca39742006-08-24 03:19:22 -04002215 ap = host->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -04002216 if (ap) {
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002217 ahci_port_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -04002218 VPRINTK("port %u\n", i);
2219 } else {
2220 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +09002221 if (ata_ratelimit())
Jeff Garzikcca39742006-08-24 03:19:22 -04002222 dev_printk(KERN_WARNING, host->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -05002223 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
Jeff Garzik67846b32005-10-05 02:58:32 -04002225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 handled = 1;
2227 }
2228
Tejun Heod28f87a2008-07-05 13:10:50 +09002229 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
2230 * it should be cleared after all the port events are cleared;
2231 * otherwise, it will raise a spurious interrupt after each
2232 * valid one. Please read section 10.6.2 of ahci 1.1 for more
2233 * information.
2234 *
2235 * Also, use the unmasked value to clear interrupt as spurious
2236 * pending event on a dummy port might cause screaming IRQ.
2237 */
Tejun Heoea0c62f2008-06-28 01:49:02 +09002238 writel(irq_stat, mmio + HOST_IRQ_STAT);
2239
Jeff Garzikcca39742006-08-24 03:19:22 -04002240 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 VPRINTK("EXIT\n");
2243
2244 return IRQ_RETVAL(handled);
2245}
2246
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09002247static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
2249 struct ata_port *ap = qc->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002250 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09002251 struct ahci_port_priv *pp = ap->private_data;
2252
2253 /* Keep track of the currently active link. It will be used
2254 * in completion path to determine whether NCQ phase is in
2255 * progress.
2256 */
2257 pp->active_link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Tejun Heo12fad3f2006-05-15 21:03:55 +09002259 if (qc->tf.protocol == ATA_PROT_NCQ)
2260 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
2261 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002263 ahci_sw_activity(qc->dev->link);
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return 0;
2266}
2267
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002268static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2269{
2270 struct ahci_port_priv *pp = qc->ap->private_data;
2271 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2272
2273 ata_tf_from_fis(d2h_fis, &qc->result_tf);
2274 return true;
2275}
2276
Tejun Heo78cd52d2006-05-15 20:58:29 +09002277static void ahci_freeze(struct ata_port *ap)
2278{
Tejun Heo4447d352007-04-17 23:44:08 +09002279 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002280
2281 /* turn IRQ off */
2282 writel(0, port_mmio + PORT_IRQ_MASK);
2283}
2284
2285static void ahci_thaw(struct ata_port *ap)
2286{
Tejun Heo0d5ff562007-02-01 15:06:36 +09002287 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
Tejun Heo4447d352007-04-17 23:44:08 +09002288 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002289 u32 tmp;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002290 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002291
2292 /* clear IRQ */
2293 tmp = readl(port_mmio + PORT_IRQ_STAT);
2294 writel(tmp, port_mmio + PORT_IRQ_STAT);
Tejun Heoa7187282007-01-27 11:04:26 +09002295 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002296
Tejun Heo1c954a42007-10-09 15:01:37 +09002297 /* turn IRQ back on */
2298 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002299}
2300
2301static void ahci_error_handler(struct ata_port *ap)
2302{
Tejun Heob51e9e52006-06-29 01:29:30 +09002303 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +09002304 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09002305 ahci_stop_engine(ap);
2306 ahci_start_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002307 }
2308
Tejun Heoa1efdab2008-03-25 12:22:50 +09002309 sata_pmp_error_handler(ap);
Tejun Heoedc93052007-10-25 14:59:16 +09002310}
2311
Tejun Heo78cd52d2006-05-15 20:58:29 +09002312static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2313{
2314 struct ata_port *ap = qc->ap;
2315
Tejun Heod2e75df2007-07-16 14:29:39 +09002316 /* make DMA engine forget about the failed command */
2317 if (qc->flags & ATA_QCFLAG_FAILED)
2318 ahci_kick_engine(ap, 1);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002319}
2320
Tejun Heo7d50b602007-09-23 13:19:54 +09002321static void ahci_pmp_attach(struct ata_port *ap)
2322{
2323 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002324 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002325 u32 cmd;
2326
2327 cmd = readl(port_mmio + PORT_CMD);
2328 cmd |= PORT_CMD_PMP;
2329 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002330
2331 pp->intr_mask |= PORT_IRQ_BAD_PMP;
2332 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002333}
2334
2335static void ahci_pmp_detach(struct ata_port *ap)
2336{
2337 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002338 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002339 u32 cmd;
2340
2341 cmd = readl(port_mmio + PORT_CMD);
2342 cmd &= ~PORT_CMD_PMP;
2343 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002344
2345 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
2346 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002347}
2348
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002349static int ahci_port_resume(struct ata_port *ap)
2350{
2351 ahci_power_up(ap);
2352 ahci_start_port(ap);
2353
Tejun Heo071f44b2008-04-07 22:47:22 +09002354 if (sata_pmp_attached(ap))
Tejun Heo7d50b602007-09-23 13:19:54 +09002355 ahci_pmp_attach(ap);
2356 else
2357 ahci_pmp_detach(ap);
2358
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002359 return 0;
2360}
2361
Tejun Heo438ac6d2007-03-02 17:31:26 +09002362#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +09002363static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2364{
Tejun Heoc1332872006-07-26 15:59:26 +09002365 const char *emsg = NULL;
2366 int rc;
2367
Tejun Heo4447d352007-04-17 23:44:08 +09002368 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo8e16f942006-11-20 15:42:36 +09002369 if (rc == 0)
Tejun Heo4447d352007-04-17 23:44:08 +09002370 ahci_power_down(ap);
Tejun Heo8e16f942006-11-20 15:42:36 +09002371 else {
Tejun Heoc1332872006-07-26 15:59:26 +09002372 ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002373 ahci_start_port(ap);
Tejun Heoc1332872006-07-26 15:59:26 +09002374 }
2375
2376 return rc;
2377}
2378
Tejun Heoc1332872006-07-26 15:59:26 +09002379static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
2380{
Jeff Garzikcca39742006-08-24 03:19:22 -04002381 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo9b10ae82009-05-30 20:50:12 +09002382 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002383 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heoc1332872006-07-26 15:59:26 +09002384 u32 ctl;
2385
Tejun Heo9b10ae82009-05-30 20:50:12 +09002386 if (mesg.event & PM_EVENT_SUSPEND &&
2387 hpriv->flags & AHCI_HFLAG_NO_SUSPEND) {
2388 dev_printk(KERN_ERR, &pdev->dev,
2389 "BIOS update required for suspend/resume\n");
2390 return -EIO;
2391 }
2392
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002393 if (mesg.event & PM_EVENT_SLEEP) {
Tejun Heoc1332872006-07-26 15:59:26 +09002394 /* AHCI spec rev1.1 section 8.3.3:
2395 * Software must disable interrupts prior to requesting a
2396 * transition of the HBA to D3 state.
2397 */
2398 ctl = readl(mmio + HOST_CTL);
2399 ctl &= ~HOST_IRQ_EN;
2400 writel(ctl, mmio + HOST_CTL);
2401 readl(mmio + HOST_CTL); /* flush */
2402 }
2403
2404 return ata_pci_device_suspend(pdev, mesg);
2405}
2406
2407static int ahci_pci_device_resume(struct pci_dev *pdev)
2408{
Jeff Garzikcca39742006-08-24 03:19:22 -04002409 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heoc1332872006-07-26 15:59:26 +09002410 int rc;
2411
Tejun Heo553c4aa2006-12-26 19:39:50 +09002412 rc = ata_pci_device_do_resume(pdev);
2413 if (rc)
2414 return rc;
Tejun Heoc1332872006-07-26 15:59:26 +09002415
2416 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
Tejun Heo4447d352007-04-17 23:44:08 +09002417 rc = ahci_reset_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002418 if (rc)
2419 return rc;
2420
Tejun Heo4447d352007-04-17 23:44:08 +09002421 ahci_init_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002422 }
2423
Jeff Garzikcca39742006-08-24 03:19:22 -04002424 ata_host_resume(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002425
2426 return 0;
2427}
Tejun Heo438ac6d2007-03-02 17:31:26 +09002428#endif
Tejun Heoc1332872006-07-26 15:59:26 +09002429
Tejun Heo254950c2006-07-26 15:59:25 +09002430static int ahci_port_start(struct ata_port *ap)
2431{
Jeff Garzikcca39742006-08-24 03:19:22 -04002432 struct device *dev = ap->host->dev;
Tejun Heo254950c2006-07-26 15:59:25 +09002433 struct ahci_port_priv *pp;
Tejun Heo254950c2006-07-26 15:59:25 +09002434 void *mem;
2435 dma_addr_t mem_dma;
Tejun Heo254950c2006-07-26 15:59:25 +09002436
Tejun Heo24dc5f32007-01-20 16:00:28 +09002437 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Tejun Heo254950c2006-07-26 15:59:25 +09002438 if (!pp)
2439 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002440
Tejun Heo24dc5f32007-01-20 16:00:28 +09002441 mem = dmam_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma,
2442 GFP_KERNEL);
2443 if (!mem)
Tejun Heo254950c2006-07-26 15:59:25 +09002444 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002445 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
2446
2447 /*
2448 * First item in chunk of DMA memory: 32-slot command table,
2449 * 32 bytes each in size
2450 */
2451 pp->cmd_slot = mem;
2452 pp->cmd_slot_dma = mem_dma;
2453
2454 mem += AHCI_CMD_SLOT_SZ;
2455 mem_dma += AHCI_CMD_SLOT_SZ;
2456
2457 /*
2458 * Second item: Received-FIS area
2459 */
2460 pp->rx_fis = mem;
2461 pp->rx_fis_dma = mem_dma;
2462
2463 mem += AHCI_RX_FIS_SZ;
2464 mem_dma += AHCI_RX_FIS_SZ;
2465
2466 /*
2467 * Third item: data area for storing a single command
2468 * and its scatter-gather table
2469 */
2470 pp->cmd_tbl = mem;
2471 pp->cmd_tbl_dma = mem_dma;
2472
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002473 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002474 * Save off initial list of interrupts to be enabled.
2475 * This could be changed later
2476 */
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002477 pp->intr_mask = DEF_PORT_IRQ;
2478
Tejun Heo254950c2006-07-26 15:59:25 +09002479 ap->private_data = pp;
2480
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002481 /* engage engines, captain */
2482 return ahci_port_resume(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09002483}
2484
2485static void ahci_port_stop(struct ata_port *ap)
2486{
Tejun Heo0be0aa92006-07-26 15:59:26 +09002487 const char *emsg = NULL;
2488 int rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002489
Tejun Heo0be0aa92006-07-26 15:59:26 +09002490 /* de-initialize port */
Tejun Heo4447d352007-04-17 23:44:08 +09002491 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo0be0aa92006-07-26 15:59:26 +09002492 if (rc)
2493 ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
Tejun Heo254950c2006-07-26 15:59:25 +09002494}
2495
Tejun Heo4447d352007-04-17 23:44:08 +09002496static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 if (using_dac &&
Yang Hongyang6a355282009-04-06 19:01:13 -07002501 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
2502 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 if (rc) {
Yang Hongyang284901a2009-04-06 19:01:15 -07002504 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002506 dev_printk(KERN_ERR, &pdev->dev,
2507 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 return rc;
2509 }
2510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07002512 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002514 dev_printk(KERN_ERR, &pdev->dev,
2515 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 return rc;
2517 }
Yang Hongyang284901a2009-04-06 19:01:15 -07002518 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002520 dev_printk(KERN_ERR, &pdev->dev,
2521 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 return rc;
2523 }
2524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 return 0;
2526}
2527
Tejun Heo4447d352007-04-17 23:44:08 +09002528static void ahci_print_info(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529{
Tejun Heo4447d352007-04-17 23:44:08 +09002530 struct ahci_host_priv *hpriv = host->private_data;
2531 struct pci_dev *pdev = to_pci_dev(host->dev);
2532 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 u32 vers, cap, impl, speed;
2534 const char *speed_s;
2535 u16 cc;
2536 const char *scc_s;
2537
2538 vers = readl(mmio + HOST_VERSION);
2539 cap = hpriv->cap;
2540 impl = hpriv->port_map;
2541
2542 speed = (cap >> 20) & 0xf;
2543 if (speed == 1)
2544 speed_s = "1.5";
2545 else if (speed == 2)
2546 speed_s = "3";
Shane Huang8522ee22008-12-30 11:00:37 +08002547 else if (speed == 3)
2548 speed_s = "6";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 else
2550 speed_s = "?";
2551
2552 pci_read_config_word(pdev, 0x0a, &cc);
Conke Huc9f89472007-01-09 05:32:51 -05002553 if (cc == PCI_CLASS_STORAGE_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 scc_s = "IDE";
Conke Huc9f89472007-01-09 05:32:51 -05002555 else if (cc == PCI_CLASS_STORAGE_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 scc_s = "SATA";
Conke Huc9f89472007-01-09 05:32:51 -05002557 else if (cc == PCI_CLASS_STORAGE_RAID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 scc_s = "RAID";
2559 else
2560 scc_s = "unknown";
2561
Jeff Garzika9524a72005-10-30 14:39:11 -05002562 dev_printk(KERN_INFO, &pdev->dev,
2563 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002565 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002567 (vers >> 24) & 0xff,
2568 (vers >> 16) & 0xff,
2569 (vers >> 8) & 0xff,
2570 vers & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
2572 ((cap >> 8) & 0x1f) + 1,
2573 (cap & 0x1f) + 1,
2574 speed_s,
2575 impl,
2576 scc_s);
2577
Jeff Garzika9524a72005-10-30 14:39:11 -05002578 dev_printk(KERN_INFO, &pdev->dev,
2579 "flags: "
Tejun Heo203ef6c2007-07-16 14:29:40 +09002580 "%s%s%s%s%s%s%s"
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002581 "%s%s%s%s%s%s%s"
2582 "%s\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002583 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585 cap & (1 << 31) ? "64bit " : "",
2586 cap & (1 << 30) ? "ncq " : "",
Tejun Heo203ef6c2007-07-16 14:29:40 +09002587 cap & (1 << 29) ? "sntf " : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 cap & (1 << 28) ? "ilck " : "",
2589 cap & (1 << 27) ? "stag " : "",
2590 cap & (1 << 26) ? "pm " : "",
2591 cap & (1 << 25) ? "led " : "",
2592
2593 cap & (1 << 24) ? "clo " : "",
2594 cap & (1 << 19) ? "nz " : "",
2595 cap & (1 << 18) ? "only " : "",
2596 cap & (1 << 17) ? "pmp " : "",
2597 cap & (1 << 15) ? "pio " : "",
2598 cap & (1 << 14) ? "slum " : "",
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002599 cap & (1 << 13) ? "part " : "",
2600 cap & (1 << 6) ? "ems ": ""
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 );
2602}
2603
Tejun Heoedc93052007-10-25 14:59:16 +09002604/* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2605 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2606 * support PMP and the 4726 either directly exports the device
2607 * attached to the first downstream port or acts as a hardware storage
2608 * controller and emulate a single ATA device (can be RAID 0/1 or some
2609 * other configuration).
2610 *
2611 * When there's no device attached to the first downstream port of the
2612 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2613 * configure the 4726. However, ATA emulation of the device is very
2614 * lame. It doesn't send signature D2H Reg FIS after the initial
2615 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2616 *
2617 * The following function works around the problem by always using
2618 * hardreset on the port and not depending on receiving signature FIS
2619 * afterward. If signature FIS isn't received soon, ATA class is
2620 * assumed without follow-up softreset.
2621 */
2622static void ahci_p5wdh_workaround(struct ata_host *host)
2623{
2624 static struct dmi_system_id sysids[] = {
2625 {
2626 .ident = "P5W DH Deluxe",
2627 .matches = {
2628 DMI_MATCH(DMI_SYS_VENDOR,
2629 "ASUSTEK COMPUTER INC"),
2630 DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
2631 },
2632 },
2633 { }
2634 };
2635 struct pci_dev *pdev = to_pci_dev(host->dev);
2636
2637 if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) &&
2638 dmi_check_system(sysids)) {
2639 struct ata_port *ap = host->ports[1];
2640
2641 dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH "
2642 "Deluxe on-board SIMG4726 workaround\n");
2643
2644 ap->ops = &ahci_p5wdh_ops;
2645 ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA;
2646 }
2647}
2648
Shane Huang58a09b32009-05-27 15:04:43 +08002649/*
Tejun Heo03d783b2009-08-16 21:04:02 +09002650 * SB600 ahci controller on certain boards can't do 64bit DMA with
2651 * older BIOS.
Shane Huang58a09b32009-05-27 15:04:43 +08002652 */
Tejun Heo03d783b2009-08-16 21:04:02 +09002653static bool ahci_sb600_32bit_only(struct pci_dev *pdev)
Shane Huang58a09b32009-05-27 15:04:43 +08002654{
2655 static const struct dmi_system_id sysids[] = {
Tejun Heo03d783b2009-08-16 21:04:02 +09002656 /*
2657 * The oldest version known to be broken is 0901 and
2658 * working is 1501 which was released on 2007-10-26.
2659 * Force 32bit DMA on anything older than 1501.
2660 * Please read bko#9412 for more info.
2661 */
Shane Huang58a09b32009-05-27 15:04:43 +08002662 {
2663 .ident = "ASUS M2A-VM",
2664 .matches = {
2665 DMI_MATCH(DMI_BOARD_VENDOR,
2666 "ASUSTeK Computer INC."),
2667 DMI_MATCH(DMI_BOARD_NAME, "M2A-VM"),
2668 },
Tejun Heo03d783b2009-08-16 21:04:02 +09002669 .driver_data = "20071026", /* yyyymmdd */
Shane Huang58a09b32009-05-27 15:04:43 +08002670 },
2671 { }
2672 };
Tejun Heo03d783b2009-08-16 21:04:02 +09002673 const struct dmi_system_id *match;
Shane Huang58a09b32009-05-27 15:04:43 +08002674
Tejun Heo03d783b2009-08-16 21:04:02 +09002675 match = dmi_first_match(sysids);
Shane Huang58a09b32009-05-27 15:04:43 +08002676 if (pdev->bus->number != 0 || pdev->devfn != PCI_DEVFN(0x12, 0) ||
Tejun Heo03d783b2009-08-16 21:04:02 +09002677 !match)
Shane Huang58a09b32009-05-27 15:04:43 +08002678 return false;
2679
Tejun Heo03d783b2009-08-16 21:04:02 +09002680 if (match->driver_data) {
2681 int year, month, date;
2682 char buf[9];
Shane Huang58a09b32009-05-27 15:04:43 +08002683
Tejun Heo03d783b2009-08-16 21:04:02 +09002684 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date);
2685 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date);
2686
2687 if (strcmp(buf, match->driver_data) >= 0)
2688 return false;
2689
2690 dev_printk(KERN_WARNING, &pdev->dev, "%s: BIOS too old, "
2691 "forcing 32bit DMA, update BIOS\n", match->ident);
2692 } else
2693 dev_printk(KERN_WARNING, &pdev->dev, "%s: this board can't "
2694 "do 64bit DMA, forcing 32bit\n", match->ident);
Shane Huang58a09b32009-05-27 15:04:43 +08002695
2696 return true;
2697}
2698
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002699static bool ahci_broken_system_poweroff(struct pci_dev *pdev)
2700{
2701 static const struct dmi_system_id broken_systems[] = {
2702 {
2703 .ident = "HP Compaq nx6310",
2704 .matches = {
2705 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2706 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6310"),
2707 },
2708 /* PCI slot number of the controller */
2709 .driver_data = (void *)0x1FUL,
2710 },
Maciej Ruteckid2f9c062009-03-20 00:06:46 +01002711 {
2712 .ident = "HP Compaq 6720s",
2713 .matches = {
2714 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2715 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6720s"),
2716 },
2717 /* PCI slot number of the controller */
2718 .driver_data = (void *)0x1FUL,
2719 },
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002720
2721 { } /* terminate list */
2722 };
2723 const struct dmi_system_id *dmi = dmi_first_match(broken_systems);
2724
2725 if (dmi) {
2726 unsigned long slot = (unsigned long)dmi->driver_data;
2727 /* apply the quirk only to on-board controllers */
2728 return slot == PCI_SLOT(pdev->devfn);
2729 }
2730
2731 return false;
2732}
2733
Tejun Heo9b10ae82009-05-30 20:50:12 +09002734static bool ahci_broken_suspend(struct pci_dev *pdev)
2735{
2736 static const struct dmi_system_id sysids[] = {
2737 /*
2738 * On HP dv[4-6] and HDX18 with earlier BIOSen, link
2739 * to the harddisk doesn't become online after
2740 * resuming from STR. Warn and fail suspend.
2741 */
2742 {
2743 .ident = "dv4",
2744 .matches = {
2745 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2746 DMI_MATCH(DMI_PRODUCT_NAME,
2747 "HP Pavilion dv4 Notebook PC"),
2748 },
2749 .driver_data = "F.30", /* cutoff BIOS version */
2750 },
2751 {
2752 .ident = "dv5",
2753 .matches = {
2754 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2755 DMI_MATCH(DMI_PRODUCT_NAME,
2756 "HP Pavilion dv5 Notebook PC"),
2757 },
2758 .driver_data = "F.16", /* cutoff BIOS version */
2759 },
2760 {
2761 .ident = "dv6",
2762 .matches = {
2763 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2764 DMI_MATCH(DMI_PRODUCT_NAME,
2765 "HP Pavilion dv6 Notebook PC"),
2766 },
2767 .driver_data = "F.21", /* cutoff BIOS version */
2768 },
2769 {
2770 .ident = "HDX18",
2771 .matches = {
2772 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2773 DMI_MATCH(DMI_PRODUCT_NAME,
2774 "HP HDX18 Notebook PC"),
2775 },
2776 .driver_data = "F.23", /* cutoff BIOS version */
2777 },
2778 { } /* terminate list */
2779 };
2780 const struct dmi_system_id *dmi = dmi_first_match(sysids);
2781 const char *ver;
2782
2783 if (!dmi || pdev->bus->number || pdev->devfn != PCI_DEVFN(0x1f, 2))
2784 return false;
2785
2786 ver = dmi_get_system_info(DMI_BIOS_VERSION);
2787
2788 return !ver || strcmp(ver, dmi->driver_data) < 0;
2789}
2790
Tejun Heo55946392009-08-04 14:30:08 +09002791static bool ahci_broken_online(struct pci_dev *pdev)
2792{
2793#define ENCODE_BUSDEVFN(bus, slot, func) \
2794 (void *)(unsigned long)(((bus) << 8) | PCI_DEVFN((slot), (func)))
2795 static const struct dmi_system_id sysids[] = {
2796 /*
2797 * There are several gigabyte boards which use
2798 * SIMG5723s configured as hardware RAID. Certain
2799 * 5723 firmware revisions shipped there keep the link
2800 * online but fail to answer properly to SRST or
2801 * IDENTIFY when no device is attached downstream
2802 * causing libata to retry quite a few times leading
2803 * to excessive detection delay.
2804 *
2805 * As these firmwares respond to the second reset try
2806 * with invalid device signature, considering unknown
2807 * sig as offline works around the problem acceptably.
2808 */
2809 {
2810 .ident = "EP45-DQ6",
2811 .matches = {
2812 DMI_MATCH(DMI_BOARD_VENDOR,
2813 "Gigabyte Technology Co., Ltd."),
2814 DMI_MATCH(DMI_BOARD_NAME, "EP45-DQ6"),
2815 },
2816 .driver_data = ENCODE_BUSDEVFN(0x0a, 0x00, 0),
2817 },
2818 {
2819 .ident = "EP45-DS5",
2820 .matches = {
2821 DMI_MATCH(DMI_BOARD_VENDOR,
2822 "Gigabyte Technology Co., Ltd."),
2823 DMI_MATCH(DMI_BOARD_NAME, "EP45-DS5"),
2824 },
2825 .driver_data = ENCODE_BUSDEVFN(0x03, 0x00, 0),
2826 },
2827 { } /* terminate list */
2828 };
2829#undef ENCODE_BUSDEVFN
2830 const struct dmi_system_id *dmi = dmi_first_match(sysids);
2831 unsigned int val;
2832
2833 if (!dmi)
2834 return false;
2835
2836 val = (unsigned long)dmi->driver_data;
2837
2838 return pdev->bus->number == (val >> 8) && pdev->devfn == (val & 0xff);
2839}
2840
Tejun Heo24dc5f32007-01-20 16:00:28 +09002841static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
2843 static int printed_version;
Tejun Heoe297d992008-06-10 00:13:04 +09002844 unsigned int board_id = ent->driver_data;
2845 struct ata_port_info pi = ahci_port_info[board_id];
Tejun Heo4447d352007-04-17 23:44:08 +09002846 const struct ata_port_info *ppi[] = { &pi, NULL };
Tejun Heo24dc5f32007-01-20 16:00:28 +09002847 struct device *dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 struct ahci_host_priv *hpriv;
Tejun Heo4447d352007-04-17 23:44:08 +09002849 struct ata_host *host;
Tejun Heo837f5f82008-02-06 15:13:51 +09002850 int n_ports, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852 VPRINTK("ENTER\n");
2853
Tejun Heo12fad3f2006-05-15 21:03:55 +09002854 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
2855
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05002857 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Alan Cox5b66c822008-09-03 14:48:34 +01002859 /* The AHCI driver can only drive the SATA ports, the PATA driver
2860 can drive them all so if both drivers are selected make sure
2861 AHCI stays out of the way */
2862 if (pdev->vendor == PCI_VENDOR_ID_MARVELL && !marvell_enable)
2863 return -ENODEV;
2864
Tejun Heo4447d352007-04-17 23:44:08 +09002865 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09002866 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 if (rc)
2868 return rc;
2869
Tejun Heodea55132008-03-11 19:52:31 +09002870 /* AHCI controllers often implement SFF compatible interface.
2871 * Grab all PCI BARs just in case.
2872 */
2873 rc = pcim_iomap_regions_request_all(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002874 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002875 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002876 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002877 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Tejun Heoc4f77922007-12-06 15:09:43 +09002879 if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
2880 (pdev->device == 0x2652 || pdev->device == 0x2653)) {
2881 u8 map;
2882
2883 /* ICH6s share the same PCI ID for both piix and ahci
2884 * modes. Enabling ahci mode while MAP indicates
2885 * combined mode is a bad idea. Yield to ata_piix.
2886 */
2887 pci_read_config_byte(pdev, ICH_MAP, &map);
2888 if (map & 0x3) {
2889 dev_printk(KERN_INFO, &pdev->dev, "controller is in "
2890 "combined mode, can't enable AHCI mode\n");
2891 return -ENODEV;
2892 }
2893 }
2894
Tejun Heo24dc5f32007-01-20 16:00:28 +09002895 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
2896 if (!hpriv)
2897 return -ENOMEM;
Tejun Heo417a1a62007-09-23 13:19:55 +09002898 hpriv->flags |= (unsigned long)pi.private_data;
2899
Tejun Heoe297d992008-06-10 00:13:04 +09002900 /* MCP65 revision A1 and A2 can't do MSI */
2901 if (board_id == board_ahci_mcp65 &&
2902 (pdev->revision == 0xa1 || pdev->revision == 0xa2))
2903 hpriv->flags |= AHCI_HFLAG_NO_MSI;
2904
Shane Huange427fe02008-12-30 10:53:41 +08002905 /* SB800 does NOT need the workaround to ignore SERR_INTERNAL */
2906 if (board_id == board_ahci_sb700 && pdev->revision >= 0x40)
2907 hpriv->flags &= ~AHCI_HFLAG_IGN_SERR_INTERNAL;
2908
Tejun Heo03d783b2009-08-16 21:04:02 +09002909 /* apply sb600 32bit only quirk */
2910 if (ahci_sb600_32bit_only(pdev))
Shane Huang58a09b32009-05-27 15:04:43 +08002911 hpriv->flags |= AHCI_HFLAG_32BIT_ONLY;
2912
Tejun Heoa5bfc472009-01-23 11:31:39 +09002913 if (!(hpriv->flags & AHCI_HFLAG_NO_MSI))
2914 pci_enable_msi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Tejun Heo4447d352007-04-17 23:44:08 +09002916 /* save initial config */
Tejun Heo417a1a62007-09-23 13:19:55 +09002917 ahci_save_initial_config(pdev, hpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Tejun Heo4447d352007-04-17 23:44:08 +09002919 /* prepare host */
Tejun Heo274c1fd2007-07-16 14:29:40 +09002920 if (hpriv->cap & HOST_CAP_NCQ)
Shaohua Li388539f2009-07-27 09:24:35 +08002921 pi.flags |= ATA_FLAG_NCQ | ATA_FLAG_FPDMA_AA;
Tejun Heo4447d352007-04-17 23:44:08 +09002922
Tejun Heo7d50b602007-09-23 13:19:54 +09002923 if (hpriv->cap & HOST_CAP_PMP)
2924 pi.flags |= ATA_FLAG_PMP;
2925
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002926 if (ahci_em_messages && (hpriv->cap & HOST_CAP_EMS)) {
2927 u8 messages;
2928 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
2929 u32 em_loc = readl(mmio + HOST_EM_LOC);
2930 u32 em_ctl = readl(mmio + HOST_EM_CTL);
2931
David Milburn87943ac2008-10-13 14:38:36 -05002932 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002933
2934 /* we only support LED message type right now */
2935 if ((messages & 0x01) && (ahci_em_messages == 1)) {
2936 /* store em_loc */
2937 hpriv->em_loc = ((em_loc >> 16) * 4);
2938 pi.flags |= ATA_FLAG_EM;
2939 if (!(em_ctl & EM_CTL_ALHD))
2940 pi.flags |= ATA_FLAG_SW_ACTIVITY;
2941 }
2942 }
2943
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002944 if (ahci_broken_system_poweroff(pdev)) {
2945 pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN;
2946 dev_info(&pdev->dev,
2947 "quirky BIOS, skipping spindown on poweroff\n");
2948 }
2949
Tejun Heo9b10ae82009-05-30 20:50:12 +09002950 if (ahci_broken_suspend(pdev)) {
2951 hpriv->flags |= AHCI_HFLAG_NO_SUSPEND;
2952 dev_printk(KERN_WARNING, &pdev->dev,
2953 "BIOS update required for suspend/resume\n");
2954 }
2955
Tejun Heo55946392009-08-04 14:30:08 +09002956 if (ahci_broken_online(pdev)) {
2957 hpriv->flags |= AHCI_HFLAG_SRST_TOUT_IS_OFFLINE;
2958 dev_info(&pdev->dev,
2959 "online status unreliable, applying workaround\n");
2960 }
2961
Tejun Heo837f5f82008-02-06 15:13:51 +09002962 /* CAP.NP sometimes indicate the index of the last enabled
2963 * port, at other times, that of the last possible port, so
2964 * determining the maximum port number requires looking at
2965 * both CAP.NP and port_map.
2966 */
2967 n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));
2968
2969 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
Tejun Heo4447d352007-04-17 23:44:08 +09002970 if (!host)
2971 return -ENOMEM;
2972 host->iomap = pcim_iomap_table(pdev);
2973 host->private_data = hpriv;
2974
Arjan van de Venf3d7f232009-01-26 02:05:44 -08002975 if (!(hpriv->cap & HOST_CAP_SSS) || ahci_ignore_sss)
Arjan van de Ven886ad092009-01-09 15:54:07 -08002976 host->flags |= ATA_HOST_PARALLEL_SCAN;
Arjan van de Venf3d7f232009-01-26 02:05:44 -08002977 else
2978 printk(KERN_INFO "ahci: SSS flag set, parallel bus scan disabled\n");
Arjan van de Ven886ad092009-01-09 15:54:07 -08002979
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002980 if (pi.flags & ATA_FLAG_EM)
2981 ahci_reset_em(host);
2982
Tejun Heo4447d352007-04-17 23:44:08 +09002983 for (i = 0; i < host->n_ports; i++) {
Jeff Garzikdab632e2007-05-28 08:33:01 -04002984 struct ata_port *ap = host->ports[i];
Tejun Heo4447d352007-04-17 23:44:08 +09002985
Tejun Heocbcdd872007-08-18 13:14:55 +09002986 ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar");
2987 ata_port_pbar_desc(ap, AHCI_PCI_BAR,
2988 0x100 + ap->port_no * 0x80, "port");
2989
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002990 /* set initial link pm policy */
2991 ap->pm_policy = NOT_AVAILABLE;
2992
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002993 /* set enclosure management message type */
2994 if (ap->flags & ATA_FLAG_EM)
2995 ap->em_message_type = ahci_em_messages;
2996
2997
Jeff Garzikdab632e2007-05-28 08:33:01 -04002998 /* disabled/not-implemented port */
Tejun Heo350756f2008-04-07 22:47:21 +09002999 if (!(hpriv->port_map & (1 << i)))
Jeff Garzikdab632e2007-05-28 08:33:01 -04003000 ap->ops = &ata_dummy_port_ops;
Tejun Heo4447d352007-04-17 23:44:08 +09003001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Tejun Heoedc93052007-10-25 14:59:16 +09003003 /* apply workaround for ASUS P5W DH Deluxe mainboard */
3004 ahci_p5wdh_workaround(host);
3005
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09003007 rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003009 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
Tejun Heo4447d352007-04-17 23:44:08 +09003011 rc = ahci_reset_controller(host);
3012 if (rc)
3013 return rc;
Tejun Heo12fad3f2006-05-15 21:03:55 +09003014
Tejun Heo4447d352007-04-17 23:44:08 +09003015 ahci_init_controller(host);
3016 ahci_print_info(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Tejun Heo4447d352007-04-17 23:44:08 +09003018 pci_set_master(pdev);
3019 return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
3020 &ahci_sht);
Jeff Garzik907f4672005-05-12 15:03:42 -04003021}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
3023static int __init ahci_init(void)
3024{
Pavel Roskinb7887192006-08-10 18:13:18 +09003025 return pci_register_driver(&ahci_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026}
3027
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028static void __exit ahci_exit(void)
3029{
3030 pci_unregister_driver(&ahci_pci_driver);
3031}
3032
3033
3034MODULE_AUTHOR("Jeff Garzik");
3035MODULE_DESCRIPTION("AHCI SATA low-level driver");
3036MODULE_LICENSE("GPL");
3037MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04003038MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040module_init(ahci_init);
3041module_exit(ahci_exit);