blob: 6b91c26a4635647ca1a29a175f0bd7a1b6e44245 [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);
80#define MAX_SLOTS 8
David Milburn4c1e9aa2009-04-03 15:36:41 -050081#define MAX_RETRY 15
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83enum {
84 AHCI_PCI_BAR = 5,
Tejun Heo648a88b2006-11-09 15:08:40 +090085 AHCI_MAX_PORTS = 32,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 AHCI_MAX_SG = 168, /* hardware max is 64K */
87 AHCI_DMA_BOUNDARY = 0xffffffff,
Tejun Heo12fad3f2006-05-15 21:03:55 +090088 AHCI_MAX_CMDS = 32,
Tejun Heodd410ff2006-05-15 21:03:50 +090089 AHCI_CMD_SZ = 32,
Tejun Heo12fad3f2006-05-15 21:03:55 +090090 AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 AHCI_RX_FIS_SZ = 256,
Jeff Garzika0ea7322005-06-04 01:13:15 -040092 AHCI_CMD_TBL_CDB = 0x40,
Tejun Heodd410ff2006-05-15 21:03:50 +090093 AHCI_CMD_TBL_HDR_SZ = 0x80,
94 AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16),
95 AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS,
96 AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ +
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 AHCI_RX_FIS_SZ,
98 AHCI_IRQ_ON_SG = (1 << 31),
99 AHCI_CMD_ATAPI = (1 << 5),
100 AHCI_CMD_WRITE = (1 << 6),
Tejun Heo4b10e552006-03-12 11:25:27 +0900101 AHCI_CMD_PREFETCH = (1 << 7),
Tejun Heo22b49982006-01-23 21:38:44 +0900102 AHCI_CMD_RESET = (1 << 8),
103 AHCI_CMD_CLR_BUSY = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
Tejun Heo0291f952007-01-25 19:16:28 +0900106 RX_FIS_SDB = 0x58, /* offset of SDB FIS data */
Tejun Heo78cd52d2006-05-15 20:58:29 +0900107 RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 board_ahci = 0,
Tejun Heo7a234af2007-09-03 12:44:57 +0900110 board_ahci_vt8251 = 1,
111 board_ahci_ign_iferr = 2,
112 board_ahci_sb600 = 3,
113 board_ahci_mv = 4,
Shane Huange427fe02008-12-30 10:53:41 +0800114 board_ahci_sb700 = 5, /* for SB700 and SB800 */
Tejun Heoe297d992008-06-10 00:13:04 +0900115 board_ahci_mcp65 = 6,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400116 board_ahci_nopmp = 7,
Tejun Heoaa431dd2009-04-08 14:25:31 -0700117 board_ahci_yesncq = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 /* global controller registers */
120 HOST_CAP = 0x00, /* host capabilities */
121 HOST_CTL = 0x04, /* global host control */
122 HOST_IRQ_STAT = 0x08, /* interrupt status */
123 HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
124 HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700125 HOST_EM_LOC = 0x1c, /* Enclosure Management location */
126 HOST_EM_CTL = 0x20, /* Enclosure Management Control */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 /* HOST_CTL bits */
129 HOST_RESET = (1 << 0), /* reset controller; self-clear */
130 HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
131 HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
132
133 /* HOST_CAP bits */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700134 HOST_CAP_EMS = (1 << 6), /* Enclosure Management support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900135 HOST_CAP_SSC = (1 << 14), /* Slumber capable */
Tejun Heo7d50b602007-09-23 13:19:54 +0900136 HOST_CAP_PMP = (1 << 17), /* Port Multiplier support */
Tejun Heo22b49982006-01-23 21:38:44 +0900137 HOST_CAP_CLO = (1 << 24), /* Command List Override support */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400138 HOST_CAP_ALPM = (1 << 26), /* Aggressive Link PM support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900139 HOST_CAP_SSS = (1 << 27), /* Staggered Spin-up */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900140 HOST_CAP_SNTF = (1 << 29), /* SNotification register */
Tejun Heo979db802006-05-15 21:03:52 +0900141 HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */
Tejun Heodd410ff2006-05-15 21:03:50 +0900142 HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /* registers for each SATA port */
145 PORT_LST_ADDR = 0x00, /* command list DMA addr */
146 PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
147 PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
148 PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
149 PORT_IRQ_STAT = 0x10, /* interrupt status */
150 PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
151 PORT_CMD = 0x18, /* port command */
152 PORT_TFDATA = 0x20, /* taskfile data */
153 PORT_SIG = 0x24, /* device TF signature */
154 PORT_CMD_ISSUE = 0x38, /* command issue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
156 PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
157 PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
158 PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900159 PORT_SCR_NTF = 0x3c, /* SATA phy register: SNotification */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /* PORT_IRQ_{STAT,MASK} bits */
162 PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
163 PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
164 PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
165 PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
166 PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
167 PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
168 PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
169 PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
170
171 PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
172 PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
173 PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
174 PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
175 PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
176 PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
177 PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
178 PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
179 PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
180
Tejun Heo78cd52d2006-05-15 20:58:29 +0900181 PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR |
182 PORT_IRQ_IF_ERR |
183 PORT_IRQ_CONNECT |
Tejun Heo42969712006-05-31 18:28:18 +0900184 PORT_IRQ_PHYRDY |
Tejun Heo7d50b602007-09-23 13:19:54 +0900185 PORT_IRQ_UNK_FIS |
186 PORT_IRQ_BAD_PMP,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900187 PORT_IRQ_ERROR = PORT_IRQ_FREEZE |
188 PORT_IRQ_TF_ERR |
189 PORT_IRQ_HBUS_DATA_ERR,
190 DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
191 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS |
192 PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /* PORT_CMD bits */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400195 PORT_CMD_ASP = (1 << 27), /* Aggressive Slumber/Partial */
196 PORT_CMD_ALPE = (1 << 26), /* Aggressive Link PM enable */
Jeff Garzik02eaa662005-11-12 01:32:19 -0500197 PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
Tejun Heo7d50b602007-09-23 13:19:54 +0900198 PORT_CMD_PMP = (1 << 17), /* PMP attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
200 PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
201 PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
Tejun Heo22b49982006-01-23 21:38:44 +0900202 PORT_CMD_CLO = (1 << 3), /* Command list override */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
204 PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
205 PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
206
Tejun Heo0be0aa92006-07-26 15:59:26 +0900207 PORT_CMD_ICC_MASK = (0xf << 28), /* i/f ICC state mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
209 PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
210 PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
Jeff Garzik4b0060f2005-06-04 00:50:22 -0400211
Tejun Heo417a1a62007-09-23 13:19:55 +0900212 /* hpriv->flags bits */
213 AHCI_HFLAG_NO_NCQ = (1 << 0),
214 AHCI_HFLAG_IGN_IRQ_IF_ERR = (1 << 1), /* ignore IRQ_IF_ERR */
215 AHCI_HFLAG_IGN_SERR_INTERNAL = (1 << 2), /* ignore SERR_INTERNAL */
216 AHCI_HFLAG_32BIT_ONLY = (1 << 3), /* force 32bit */
217 AHCI_HFLAG_MV_PATA = (1 << 4), /* PATA port */
218 AHCI_HFLAG_NO_MSI = (1 << 5), /* no PCI MSI */
Tejun Heo6949b912007-09-23 13:19:55 +0900219 AHCI_HFLAG_NO_PMP = (1 << 6), /* no PMP */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400220 AHCI_HFLAG_NO_HOTPLUG = (1 << 7), /* ignore PxSERR.DIAG.N */
Jeff Garzika8785392008-02-28 15:43:48 -0500221 AHCI_HFLAG_SECT255 = (1 << 8), /* max 255 sectors */
Tejun Heoe297d992008-06-10 00:13:04 +0900222 AHCI_HFLAG_YES_NCQ = (1 << 9), /* force NCQ cap on */
Tejun Heo9b10ae82009-05-30 20:50:12 +0900223 AHCI_HFLAG_NO_SUSPEND = (1 << 10), /* don't suspend */
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
234 /* em_ctl bits */
235 EM_CTL_RST = (1 << 9), /* Reset */
236 EM_CTL_TM = (1 << 8), /* Transmit Message */
237 EM_CTL_ALHD = (1 << 26), /* Activity LED */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238};
239
240struct ahci_cmd_hdr {
Al Viro4ca4e432007-12-30 09:32:22 +0000241 __le32 opts;
242 __le32 status;
243 __le32 tbl_addr;
244 __le32 tbl_addr_hi;
245 __le32 reserved[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246};
247
248struct ahci_sg {
Al Viro4ca4e432007-12-30 09:32:22 +0000249 __le32 addr;
250 __le32 addr_hi;
251 __le32 reserved;
252 __le32 flags_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253};
254
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700255struct ahci_em_priv {
256 enum sw_activity blink_policy;
257 struct timer_list timer;
258 unsigned long saved_activity;
259 unsigned long activity;
260 unsigned long led_state;
261};
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263struct ahci_host_priv {
Tejun Heo417a1a62007-09-23 13:19:55 +0900264 unsigned int flags; /* AHCI_HFLAG_* */
Tejun Heod447df12007-03-18 22:15:33 +0900265 u32 cap; /* cap to use */
266 u32 port_map; /* port map to use */
267 u32 saved_cap; /* saved initial cap */
268 u32 saved_port_map; /* saved initial port_map */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700269 u32 em_loc; /* enclosure management location */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270};
271
272struct ahci_port_priv {
Tejun Heo7d50b602007-09-23 13:19:54 +0900273 struct ata_link *active_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct ahci_cmd_hdr *cmd_slot;
275 dma_addr_t cmd_slot_dma;
276 void *cmd_tbl;
277 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 void *rx_fis;
279 dma_addr_t rx_fis_dma;
Tejun Heo0291f952007-01-25 19:16:28 +0900280 /* for NCQ spurious interrupt analysis */
Tejun Heo0291f952007-01-25 19:16:28 +0900281 unsigned int ncq_saw_d2h:1;
282 unsigned int ncq_saw_dmas:1;
Tejun Heoafb2d552007-02-27 13:24:19 +0900283 unsigned int ncq_saw_sdb:1;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -0700284 u32 intr_mask; /* interrupts to enable */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700285 struct ahci_em_priv em_priv[MAX_SLOTS];/* enclosure management info
286 * per PM slot */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
Tejun Heo82ef04f2008-07-31 17:02:40 +0900289static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
290static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400291static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900292static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900293static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294static int ahci_port_start(struct ata_port *ap);
295static void ahci_port_stop(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296static void ahci_qc_prep(struct ata_queued_cmd *qc);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900297static void ahci_freeze(struct ata_port *ap);
298static void ahci_thaw(struct ata_port *ap);
Tejun Heo7d50b602007-09-23 13:19:54 +0900299static void ahci_pmp_attach(struct ata_port *ap);
300static void ahci_pmp_detach(struct ata_port *ap);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900301static int ahci_softreset(struct ata_link *link, unsigned int *class,
302 unsigned long deadline);
Shane Huangbd172432008-06-10 15:52:04 +0800303static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
304 unsigned long deadline);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900305static int ahci_hardreset(struct ata_link *link, unsigned int *class,
306 unsigned long deadline);
307static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
308 unsigned long deadline);
309static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
310 unsigned long deadline);
311static void ahci_postreset(struct ata_link *link, unsigned int *class);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900312static void ahci_error_handler(struct ata_port *ap);
313static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -0400314static int ahci_port_resume(struct ata_port *ap);
Jeff Garzika8785392008-02-28 15:43:48 -0500315static void ahci_dev_config(struct ata_device *dev);
Jeff Garzikdab632e2007-05-28 08:33:01 -0400316static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl);
317static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
318 u32 opts);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900319#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900320static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
Tejun Heoc1332872006-07-26 15:59:26 +0900321static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
322static int ahci_pci_device_resume(struct pci_dev *pdev);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900323#endif
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700324static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
325static ssize_t ahci_activity_store(struct ata_device *dev,
326 enum sw_activity val);
327static void ahci_init_sw_activity(struct ata_link *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Tony Jonesee959b02008-02-22 00:13:36 +0100329static struct device_attribute *ahci_shost_attrs[] = {
330 &dev_attr_link_power_management_policy,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700331 &dev_attr_em_message_type,
332 &dev_attr_em_message,
333 NULL
334};
335
336static struct device_attribute *ahci_sdev_attrs[] = {
337 &dev_attr_sw_activity,
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200338 &dev_attr_unload_heads,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400339 NULL
340};
341
Jeff Garzik193515d2005-11-07 00:59:37 -0500342static struct scsi_host_template ahci_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900343 ATA_NCQ_SHT(DRV_NAME),
Tejun Heo12fad3f2006-05-15 21:03:55 +0900344 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 .dma_boundary = AHCI_DMA_BOUNDARY,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400347 .shost_attrs = ahci_shost_attrs,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700348 .sdev_attrs = ahci_sdev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349};
350
Tejun Heo029cfd62008-03-25 12:22:49 +0900351static struct ata_port_operations ahci_ops = {
352 .inherits = &sata_pmp_port_ops,
353
Tejun Heo7d50b602007-09-23 13:19:54 +0900354 .qc_defer = sata_pmp_qc_defer_cmd_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 .qc_prep = ahci_qc_prep,
356 .qc_issue = ahci_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900357 .qc_fill_rtf = ahci_qc_fill_rtf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Tejun Heo78cd52d2006-05-15 20:58:29 +0900359 .freeze = ahci_freeze,
360 .thaw = ahci_thaw,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900361 .softreset = ahci_softreset,
362 .hardreset = ahci_hardreset,
363 .postreset = ahci_postreset,
Tejun Heo071f44b2008-04-07 22:47:22 +0900364 .pmp_softreset = ahci_softreset,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900365 .error_handler = ahci_error_handler,
366 .post_internal_cmd = ahci_post_internal_cmd,
Tejun Heo029cfd62008-03-25 12:22:49 +0900367 .dev_config = ahci_dev_config,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900368
Tejun Heo029cfd62008-03-25 12:22:49 +0900369 .scr_read = ahci_scr_read,
370 .scr_write = ahci_scr_write,
Tejun Heo7d50b602007-09-23 13:19:54 +0900371 .pmp_attach = ahci_pmp_attach,
372 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900373
Tejun Heo029cfd62008-03-25 12:22:49 +0900374 .enable_pm = ahci_enable_alpm,
375 .disable_pm = ahci_disable_alpm,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700376 .em_show = ahci_led_show,
377 .em_store = ahci_led_store,
378 .sw_activity_show = ahci_activity_show,
379 .sw_activity_store = ahci_activity_store,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900380#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900381 .port_suspend = ahci_port_suspend,
382 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900383#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 .port_start = ahci_port_start,
385 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386};
387
Tejun Heo029cfd62008-03-25 12:22:49 +0900388static struct ata_port_operations ahci_vt8251_ops = {
389 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900390 .hardreset = ahci_vt8251_hardreset,
Tejun Heoad616ff2006-11-01 18:00:24 +0900391};
392
Tejun Heo029cfd62008-03-25 12:22:49 +0900393static struct ata_port_operations ahci_p5wdh_ops = {
394 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900395 .hardreset = ahci_p5wdh_hardreset,
Tejun Heoedc93052007-10-25 14:59:16 +0900396};
397
Shane Huangbd172432008-06-10 15:52:04 +0800398static struct ata_port_operations ahci_sb600_ops = {
399 .inherits = &ahci_ops,
400 .softreset = ahci_sb600_softreset,
401 .pmp_softreset = ahci_sb600_softreset,
402};
403
Tejun Heo417a1a62007-09-23 13:19:55 +0900404#define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
405
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100406static const struct ata_port_info ahci_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* board_ahci */
408 {
Tejun Heo1188c0d2007-04-23 02:41:05 +0900409 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100410 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400411 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 .port_ops = &ahci_ops,
413 },
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200414 /* board_ahci_vt8251 */
415 {
Tejun Heo6949b912007-09-23 13:19:55 +0900416 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900417 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100418 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400419 .udma_mask = ATA_UDMA6,
Tejun Heoad616ff2006-11-01 18:00:24 +0900420 .port_ops = &ahci_vt8251_ops,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200421 },
Tejun Heo41669552006-11-29 11:33:14 +0900422 /* board_ahci_ign_iferr */
423 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900424 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR),
425 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100426 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400427 .udma_mask = ATA_UDMA6,
Tejun Heo41669552006-11-29 11:33:14 +0900428 .port_ops = &ahci_ops,
429 },
Conke Hu55a61602007-03-27 18:33:05 +0800430 /* board_ahci_sb600 */
431 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900432 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
Tejun Heo22b5e7a2008-04-29 16:09:22 +0900433 AHCI_HFLAG_32BIT_ONLY | AHCI_HFLAG_NO_MSI |
Shane Huangbd172432008-06-10 15:52:04 +0800434 AHCI_HFLAG_SECT255),
Tejun Heo417a1a62007-09-23 13:19:55 +0900435 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100436 .pio_mask = ATA_PIO4,
Jeff Garzik469248a2007-07-08 01:13:16 -0400437 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800438 .port_ops = &ahci_sb600_ops,
Conke Hu55a61602007-03-27 18:33:05 +0800439 },
Jeff Garzikcd70c262007-07-08 02:29:42 -0400440 /* board_ahci_mv */
441 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900442 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI |
Tejun Heo17248462008-08-29 16:03:59 +0200443 AHCI_HFLAG_MV_PATA | AHCI_HFLAG_NO_PMP),
Jeff Garzikcd70c262007-07-08 02:29:42 -0400444 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo417a1a62007-09-23 13:19:55 +0900445 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100446 .pio_mask = ATA_PIO4,
Jeff Garzikcd70c262007-07-08 02:29:42 -0400447 .udma_mask = ATA_UDMA6,
448 .port_ops = &ahci_ops,
449 },
Shane Huange427fe02008-12-30 10:53:41 +0800450 /* board_ahci_sb700, for SB700 and SB800 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800451 {
Shane Huangbd172432008-06-10 15:52:04 +0800452 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL),
Shane Huange39fc8c2008-02-22 05:00:31 -0800453 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100454 .pio_mask = ATA_PIO4,
Shane Huange39fc8c2008-02-22 05:00:31 -0800455 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800456 .port_ops = &ahci_sb600_ops,
Shane Huange39fc8c2008-02-22 05:00:31 -0800457 },
Tejun Heoe297d992008-06-10 00:13:04 +0900458 /* board_ahci_mcp65 */
459 {
460 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
461 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100462 .pio_mask = ATA_PIO4,
Tejun Heoe297d992008-06-10 00:13:04 +0900463 .udma_mask = ATA_UDMA6,
464 .port_ops = &ahci_ops,
465 },
Tejun Heo9a3b1032008-06-18 20:56:58 -0400466 /* board_ahci_nopmp */
467 {
468 AHCI_HFLAGS (AHCI_HFLAG_NO_PMP),
469 .flags = AHCI_FLAG_COMMON,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100470 .pio_mask = ATA_PIO4,
Tejun Heo9a3b1032008-06-18 20:56:58 -0400471 .udma_mask = ATA_UDMA6,
472 .port_ops = &ahci_ops,
473 },
Tejun Heoaa431dd2009-04-08 14:25:31 -0700474 /* board_ahci_yesncq */
475 {
476 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
477 .flags = AHCI_FLAG_COMMON,
478 .pio_mask = ATA_PIO4,
479 .udma_mask = ATA_UDMA6,
480 .port_ops = &ahci_ops,
481 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482};
483
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500484static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400485 /* Intel */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400486 { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
487 { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
488 { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
489 { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
490 { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
Tejun Heo82490c02007-01-23 15:13:39 +0900491 { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400492 { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
493 { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
494 { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
495 { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
Tejun Heo7a234af2007-09-03 12:44:57 +0900496 { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */
497 { PCI_VDEVICE(INTEL, 0x2822), board_ahci }, /* ICH8 */
498 { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */
499 { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */
500 { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */
501 { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */
502 { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */
503 { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */
504 { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */
505 { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */
506 { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */
507 { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */
508 { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */
509 { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */
510 { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */
511 { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */
512 { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */
Jason Gastond4155e62007-09-20 17:35:00 -0400513 { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */
514 { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800515 { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */
516 { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700517 { PCI_VDEVICE(INTEL, 0x3b24), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700518 { PCI_VDEVICE(INTEL, 0x3b25), board_ahci }, /* PCH RAID */
Seth Heasleyadcb5302008-08-11 17:03:09 -0700519 { PCI_VDEVICE(INTEL, 0x3b2b), board_ahci }, /* PCH RAID */
Seth Heasley8e48b6b2008-08-27 16:47:22 -0700520 { PCI_VDEVICE(INTEL, 0x3b2c), board_ahci }, /* PCH RAID */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400521
Tejun Heoe34bb372007-02-26 20:24:03 +0900522 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
523 { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
524 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400525
526 /* ATI */
Conke Huc65ec1c2007-04-11 18:23:14 +0800527 { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800528 { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb700 }, /* ATI SB700/800 */
529 { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb700 }, /* ATI SB700/800 */
530 { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb700 }, /* ATI SB700/800 */
531 { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb700 }, /* ATI SB700/800 */
532 { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb700 }, /* ATI SB700/800 */
533 { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb700 }, /* ATI SB700/800 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400534
535 /* VIA */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400536 { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
Tejun Heobf335542007-04-11 17:27:14 +0900537 { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400538
539 /* NVIDIA */
Tejun Heoe297d992008-06-10 00:13:04 +0900540 { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci_mcp65 }, /* MCP65 */
541 { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci_mcp65 }, /* MCP65 */
542 { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci_mcp65 }, /* MCP65 */
543 { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci_mcp65 }, /* MCP65 */
544 { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci_mcp65 }, /* MCP65 */
545 { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci_mcp65 }, /* MCP65 */
546 { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci_mcp65 }, /* MCP65 */
547 { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci_mcp65 }, /* MCP65 */
Tejun Heoaa431dd2009-04-08 14:25:31 -0700548 { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci_yesncq }, /* MCP67 */
549 { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci_yesncq }, /* MCP67 */
550 { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci_yesncq }, /* MCP67 */
551 { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci_yesncq }, /* MCP67 */
552 { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci_yesncq }, /* MCP67 */
553 { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci_yesncq }, /* MCP67 */
554 { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci_yesncq }, /* MCP67 */
555 { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci_yesncq }, /* MCP67 */
556 { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci_yesncq }, /* MCP67 */
557 { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci_yesncq }, /* MCP67 */
558 { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci_yesncq }, /* MCP67 */
559 { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci_yesncq }, /* MCP67 */
560 { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci_yesncq }, /* MCP73 */
561 { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci_yesncq }, /* MCP73 */
562 { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci_yesncq }, /* MCP73 */
563 { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci_yesncq }, /* MCP73 */
564 { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci_yesncq }, /* MCP73 */
565 { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci_yesncq }, /* MCP73 */
566 { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci_yesncq }, /* MCP73 */
567 { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci_yesncq }, /* MCP73 */
568 { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci_yesncq }, /* MCP73 */
569 { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci_yesncq }, /* MCP73 */
570 { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci_yesncq }, /* MCP73 */
571 { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci_yesncq }, /* MCP73 */
Peer Chen0522b282007-06-07 18:05:12 +0800572 { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */
573 { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */
574 { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */
575 { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */
576 { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */
577 { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */
578 { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */
579 { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */
580 { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */
581 { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
582 { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
583 { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
peerchen6ba86952007-12-03 22:20:37 +0800584 { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */
585 { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */
586 { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */
587 { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */
Peer Chen71008192007-09-24 10:16:25 +0800588 { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */
589 { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */
590 { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */
591 { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */
592 { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */
593 { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */
594 { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */
595 { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */
peerchen7adbe462009-02-27 16:58:41 +0800596 { PCI_VDEVICE(NVIDIA, 0x0d84), board_ahci }, /* MCP89 */
597 { PCI_VDEVICE(NVIDIA, 0x0d85), board_ahci }, /* MCP89 */
598 { PCI_VDEVICE(NVIDIA, 0x0d86), board_ahci }, /* MCP89 */
599 { PCI_VDEVICE(NVIDIA, 0x0d87), board_ahci }, /* MCP89 */
600 { PCI_VDEVICE(NVIDIA, 0x0d88), board_ahci }, /* MCP89 */
601 { PCI_VDEVICE(NVIDIA, 0x0d89), board_ahci }, /* MCP89 */
602 { PCI_VDEVICE(NVIDIA, 0x0d8a), board_ahci }, /* MCP89 */
603 { PCI_VDEVICE(NVIDIA, 0x0d8b), board_ahci }, /* MCP89 */
604 { PCI_VDEVICE(NVIDIA, 0x0d8c), board_ahci }, /* MCP89 */
605 { PCI_VDEVICE(NVIDIA, 0x0d8d), board_ahci }, /* MCP89 */
606 { PCI_VDEVICE(NVIDIA, 0x0d8e), board_ahci }, /* MCP89 */
607 { PCI_VDEVICE(NVIDIA, 0x0d8f), board_ahci }, /* MCP89 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400608
Jeff Garzik95916ed2006-07-29 04:10:14 -0400609 /* SiS */
Tejun Heo20e2de42008-08-01 12:51:43 +0900610 { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */
611 { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 968 */
612 { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */
Jeff Garzik95916ed2006-07-29 04:10:14 -0400613
Jeff Garzikcd70c262007-07-08 02:29:42 -0400614 /* Marvell */
615 { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100616 { PCI_VDEVICE(MARVELL, 0x6121), board_ahci_mv }, /* 6121 */
Jeff Garzikcd70c262007-07-08 02:29:42 -0400617
Mark Nelsonc77a0362008-10-23 14:08:16 +1100618 /* Promise */
619 { PCI_VDEVICE(PROMISE, 0x3f20), board_ahci }, /* PDC42819 */
620
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500621 /* Generic, PCI class code for AHCI */
622 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Conke Huc9f89472007-01-09 05:32:51 -0500623 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 { } /* terminate list */
626};
627
628
629static struct pci_driver ahci_pci_driver = {
630 .name = DRV_NAME,
631 .id_table = ahci_pci_tbl,
632 .probe = ahci_init_one,
Tejun Heo24dc5f32007-01-20 16:00:28 +0900633 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900634#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900635 .suspend = ahci_pci_device_suspend,
636 .resume = ahci_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900637#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638};
639
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700640static int ahci_em_messages = 1;
641module_param(ahci_em_messages, int, 0444);
642/* add other LED protocol types when they become supported */
643MODULE_PARM_DESC(ahci_em_messages,
644 "Set AHCI Enclosure Management Message type (0 = disabled, 1 = LED");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Alan Cox5b66c822008-09-03 14:48:34 +0100646#if defined(CONFIG_PATA_MARVELL) || defined(CONFIG_PATA_MARVELL_MODULE)
647static int marvell_enable;
648#else
649static int marvell_enable = 1;
650#endif
651module_param(marvell_enable, int, 0644);
652MODULE_PARM_DESC(marvell_enable, "Marvell SATA via AHCI (1 = enabled)");
653
654
Tejun Heo98fa4b62006-11-02 12:17:23 +0900655static inline int ahci_nr_ports(u32 cap)
656{
657 return (cap & 0x1f) + 1;
658}
659
Jeff Garzikdab632e2007-05-28 08:33:01 -0400660static inline void __iomem *__ahci_port_base(struct ata_host *host,
661 unsigned int port_no)
662{
663 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
664
665 return mmio + 0x100 + (port_no * 0x80);
666}
667
Tejun Heo4447d352007-04-17 23:44:08 +0900668static inline void __iomem *ahci_port_base(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Jeff Garzikdab632e2007-05-28 08:33:01 -0400670 return __ahci_port_base(ap->host, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Tejun Heob710a1f2008-01-05 23:11:57 +0900673static void ahci_enable_ahci(void __iomem *mmio)
674{
Tejun Heo15fe9822008-04-23 20:52:58 +0900675 int i;
Tejun Heob710a1f2008-01-05 23:11:57 +0900676 u32 tmp;
677
678 /* turn on AHCI_EN */
679 tmp = readl(mmio + HOST_CTL);
Tejun Heo15fe9822008-04-23 20:52:58 +0900680 if (tmp & HOST_AHCI_EN)
681 return;
682
683 /* Some controllers need AHCI_EN to be written multiple times.
684 * Try a few times before giving up.
685 */
686 for (i = 0; i < 5; i++) {
Tejun Heob710a1f2008-01-05 23:11:57 +0900687 tmp |= HOST_AHCI_EN;
688 writel(tmp, mmio + HOST_CTL);
689 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
Tejun Heo15fe9822008-04-23 20:52:58 +0900690 if (tmp & HOST_AHCI_EN)
691 return;
692 msleep(10);
Tejun Heob710a1f2008-01-05 23:11:57 +0900693 }
Tejun Heo15fe9822008-04-23 20:52:58 +0900694
695 WARN_ON(1);
Tejun Heob710a1f2008-01-05 23:11:57 +0900696}
697
Tejun Heod447df12007-03-18 22:15:33 +0900698/**
699 * ahci_save_initial_config - Save and fixup initial config values
Tejun Heo4447d352007-04-17 23:44:08 +0900700 * @pdev: target PCI device
Tejun Heo4447d352007-04-17 23:44:08 +0900701 * @hpriv: host private area to store config values
Tejun Heod447df12007-03-18 22:15:33 +0900702 *
703 * Some registers containing configuration info might be setup by
704 * BIOS and might be cleared on reset. This function saves the
705 * initial values of those registers into @hpriv such that they
706 * can be restored after controller reset.
707 *
708 * If inconsistent, config values are fixed up by this function.
709 *
710 * LOCKING:
711 * None.
712 */
Tejun Heo4447d352007-04-17 23:44:08 +0900713static void ahci_save_initial_config(struct pci_dev *pdev,
Tejun Heo4447d352007-04-17 23:44:08 +0900714 struct ahci_host_priv *hpriv)
Tejun Heod447df12007-03-18 22:15:33 +0900715{
Tejun Heo4447d352007-04-17 23:44:08 +0900716 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +0900717 u32 cap, port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900718 int i;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100719 int mv;
Tejun Heod447df12007-03-18 22:15:33 +0900720
Tejun Heob710a1f2008-01-05 23:11:57 +0900721 /* make sure AHCI mode is enabled before accessing CAP */
722 ahci_enable_ahci(mmio);
723
Tejun Heod447df12007-03-18 22:15:33 +0900724 /* Values prefixed with saved_ are written back to host after
725 * reset. Values without are used for driver operation.
726 */
727 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
728 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
729
Tejun Heo274c1fd2007-07-16 14:29:40 +0900730 /* some chips have errata preventing 64bit use */
Tejun Heo417a1a62007-09-23 13:19:55 +0900731 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Tejun Heoc7a42152007-05-18 16:23:19 +0200732 dev_printk(KERN_INFO, &pdev->dev,
733 "controller can't do 64bit DMA, forcing 32bit\n");
734 cap &= ~HOST_CAP_64;
735 }
736
Tejun Heo417a1a62007-09-23 13:19:55 +0900737 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Tejun Heo274c1fd2007-07-16 14:29:40 +0900738 dev_printk(KERN_INFO, &pdev->dev,
739 "controller can't do NCQ, turning off CAP_NCQ\n");
740 cap &= ~HOST_CAP_NCQ;
741 }
742
Tejun Heoe297d992008-06-10 00:13:04 +0900743 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
744 dev_printk(KERN_INFO, &pdev->dev,
745 "controller can do NCQ, turning on CAP_NCQ\n");
746 cap |= HOST_CAP_NCQ;
747 }
748
Roel Kluin258cd842008-03-09 21:42:40 +0100749 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Tejun Heo6949b912007-09-23 13:19:55 +0900750 dev_printk(KERN_INFO, &pdev->dev,
751 "controller can't do PMP, turning off CAP_PMP\n");
752 cap &= ~HOST_CAP_PMP;
753 }
754
Tejun Heod799e082008-06-17 12:46:30 +0900755 if (pdev->vendor == PCI_VENDOR_ID_JMICRON && pdev->device == 0x2361 &&
756 port_map != 1) {
757 dev_printk(KERN_INFO, &pdev->dev,
758 "JMB361 has only one port, port_map 0x%x -> 0x%x\n",
759 port_map, 1);
760 port_map = 1;
761 }
762
Jeff Garzikcd70c262007-07-08 02:29:42 -0400763 /*
764 * Temporary Marvell 6145 hack: PATA port presence
765 * is asserted through the standard AHCI port
766 * presence register, as bit 4 (counting from 0)
767 */
Tejun Heo417a1a62007-09-23 13:19:55 +0900768 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100769 if (pdev->device == 0x6121)
770 mv = 0x3;
771 else
772 mv = 0xf;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400773 dev_printk(KERN_ERR, &pdev->dev,
774 "MV_AHCI HACK: port_map %x -> %x\n",
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100775 port_map,
776 port_map & mv);
Alan Cox5b66c822008-09-03 14:48:34 +0100777 dev_printk(KERN_ERR, &pdev->dev,
778 "Disabling your PATA port. Use the boot option 'ahci.marvell_enable=0' to avoid this.\n");
Jeff Garzikcd70c262007-07-08 02:29:42 -0400779
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100780 port_map &= mv;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400781 }
782
Tejun Heo17199b12007-03-18 22:26:53 +0900783 /* cross check port_map and cap.n_ports */
Tejun Heo7a234af2007-09-03 12:44:57 +0900784 if (port_map) {
Tejun Heo837f5f82008-02-06 15:13:51 +0900785 int map_ports = 0;
Tejun Heo17199b12007-03-18 22:26:53 +0900786
Tejun Heo837f5f82008-02-06 15:13:51 +0900787 for (i = 0; i < AHCI_MAX_PORTS; i++)
788 if (port_map & (1 << i))
789 map_ports++;
Tejun Heo17199b12007-03-18 22:26:53 +0900790
Tejun Heo837f5f82008-02-06 15:13:51 +0900791 /* If PI has more ports than n_ports, whine, clear
792 * port_map and let it be generated from n_ports.
Tejun Heo17199b12007-03-18 22:26:53 +0900793 */
Tejun Heo837f5f82008-02-06 15:13:51 +0900794 if (map_ports > ahci_nr_ports(cap)) {
Tejun Heo4447d352007-04-17 23:44:08 +0900795 dev_printk(KERN_WARNING, &pdev->dev,
Tejun Heo837f5f82008-02-06 15:13:51 +0900796 "implemented port map (0x%x) contains more "
797 "ports than nr_ports (%u), using nr_ports\n",
798 port_map, ahci_nr_ports(cap));
Tejun Heo7a234af2007-09-03 12:44:57 +0900799 port_map = 0;
800 }
801 }
802
803 /* fabricate port_map from cap.nr_ports */
804 if (!port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900805 port_map = (1 << ahci_nr_ports(cap)) - 1;
Tejun Heo7a234af2007-09-03 12:44:57 +0900806 dev_printk(KERN_WARNING, &pdev->dev,
807 "forcing PORTS_IMPL to 0x%x\n", port_map);
808
809 /* write the fixed up value to the PI register */
810 hpriv->saved_port_map = port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900811 }
812
Tejun Heod447df12007-03-18 22:15:33 +0900813 /* record values to use during operation */
814 hpriv->cap = cap;
815 hpriv->port_map = port_map;
816}
817
818/**
819 * ahci_restore_initial_config - Restore initial config
Tejun Heo4447d352007-04-17 23:44:08 +0900820 * @host: target ATA host
Tejun Heod447df12007-03-18 22:15:33 +0900821 *
822 * Restore initial config stored by ahci_save_initial_config().
823 *
824 * LOCKING:
825 * None.
826 */
Tejun Heo4447d352007-04-17 23:44:08 +0900827static void ahci_restore_initial_config(struct ata_host *host)
Tejun Heod447df12007-03-18 22:15:33 +0900828{
Tejun Heo4447d352007-04-17 23:44:08 +0900829 struct ahci_host_priv *hpriv = host->private_data;
830 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
831
Tejun Heod447df12007-03-18 22:15:33 +0900832 writel(hpriv->saved_cap, mmio + HOST_CAP);
833 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
834 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
835}
836
Tejun Heo203ef6c2007-07-16 14:29:40 +0900837static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900839 static const int offset[] = {
840 [SCR_STATUS] = PORT_SCR_STAT,
841 [SCR_CONTROL] = PORT_SCR_CTL,
842 [SCR_ERROR] = PORT_SCR_ERR,
843 [SCR_ACTIVE] = PORT_SCR_ACT,
844 [SCR_NOTIFICATION] = PORT_SCR_NTF,
845 };
846 struct ahci_host_priv *hpriv = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Tejun Heo203ef6c2007-07-16 14:29:40 +0900848 if (sc_reg < ARRAY_SIZE(offset) &&
849 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
850 return offset[sc_reg];
Tejun Heoda3dbb12007-07-16 14:29:40 +0900851 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Tejun Heo82ef04f2008-07-31 17:02:40 +0900854static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Tejun Heo82ef04f2008-07-31 17:02:40 +0900856 void __iomem *port_mmio = ahci_port_base(link->ap);
857 int offset = ahci_scr_offset(link->ap, sc_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Tejun Heo203ef6c2007-07-16 14:29:40 +0900859 if (offset) {
860 *val = readl(port_mmio + offset);
861 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
Tejun Heo203ef6c2007-07-16 14:29:40 +0900863 return -EINVAL;
864}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Tejun Heo82ef04f2008-07-31 17:02:40 +0900866static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
Tejun Heo203ef6c2007-07-16 14:29:40 +0900867{
Tejun Heo82ef04f2008-07-31 17:02:40 +0900868 void __iomem *port_mmio = ahci_port_base(link->ap);
869 int offset = ahci_scr_offset(link->ap, sc_reg);
Tejun Heo203ef6c2007-07-16 14:29:40 +0900870
871 if (offset) {
872 writel(val, port_mmio + offset);
873 return 0;
874 }
875 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
Tejun Heo4447d352007-04-17 23:44:08 +0900878static void ahci_start_engine(struct ata_port *ap)
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900879{
Tejun Heo4447d352007-04-17 23:44:08 +0900880 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900881 u32 tmp;
882
Tejun Heod8fcd112006-07-26 15:59:25 +0900883 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +0900884 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900885 tmp |= PORT_CMD_START;
886 writel(tmp, port_mmio + PORT_CMD);
887 readl(port_mmio + PORT_CMD); /* flush */
888}
889
Tejun Heo4447d352007-04-17 23:44:08 +0900890static int ahci_stop_engine(struct ata_port *ap)
Tejun Heo254950c2006-07-26 15:59:25 +0900891{
Tejun Heo4447d352007-04-17 23:44:08 +0900892 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo254950c2006-07-26 15:59:25 +0900893 u32 tmp;
894
895 tmp = readl(port_mmio + PORT_CMD);
896
Tejun Heod8fcd112006-07-26 15:59:25 +0900897 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900898 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
899 return 0;
900
Tejun Heod8fcd112006-07-26 15:59:25 +0900901 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900902 tmp &= ~PORT_CMD_START;
903 writel(tmp, port_mmio + PORT_CMD);
904
Tejun Heod8fcd112006-07-26 15:59:25 +0900905 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +0900906 tmp = ata_wait_register(port_mmio + PORT_CMD,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400907 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +0900908 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +0900909 return -EIO;
910
911 return 0;
912}
913
Tejun Heo4447d352007-04-17 23:44:08 +0900914static void ahci_start_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900915{
Tejun Heo4447d352007-04-17 23:44:08 +0900916 void __iomem *port_mmio = ahci_port_base(ap);
917 struct ahci_host_priv *hpriv = ap->host->private_data;
918 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo0be0aa92006-07-26 15:59:26 +0900919 u32 tmp;
920
921 /* set FIS registers */
Tejun Heo4447d352007-04-17 23:44:08 +0900922 if (hpriv->cap & HOST_CAP_64)
923 writel((pp->cmd_slot_dma >> 16) >> 16,
924 port_mmio + PORT_LST_ADDR_HI);
925 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900926
Tejun Heo4447d352007-04-17 23:44:08 +0900927 if (hpriv->cap & HOST_CAP_64)
928 writel((pp->rx_fis_dma >> 16) >> 16,
929 port_mmio + PORT_FIS_ADDR_HI);
930 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900931
932 /* enable FIS reception */
933 tmp = readl(port_mmio + PORT_CMD);
934 tmp |= PORT_CMD_FIS_RX;
935 writel(tmp, port_mmio + PORT_CMD);
936
937 /* flush */
938 readl(port_mmio + PORT_CMD);
939}
940
Tejun Heo4447d352007-04-17 23:44:08 +0900941static int ahci_stop_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900942{
Tejun Heo4447d352007-04-17 23:44:08 +0900943 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900944 u32 tmp;
945
946 /* disable FIS reception */
947 tmp = readl(port_mmio + PORT_CMD);
948 tmp &= ~PORT_CMD_FIS_RX;
949 writel(tmp, port_mmio + PORT_CMD);
950
951 /* wait for completion, spec says 500ms, give it 1000 */
952 tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
953 PORT_CMD_FIS_ON, 10, 1000);
954 if (tmp & PORT_CMD_FIS_ON)
955 return -EBUSY;
956
957 return 0;
958}
959
Tejun Heo4447d352007-04-17 23:44:08 +0900960static void ahci_power_up(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900961{
Tejun Heo4447d352007-04-17 23:44:08 +0900962 struct ahci_host_priv *hpriv = ap->host->private_data;
963 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900964 u32 cmd;
965
966 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
967
968 /* spin up device */
Tejun Heo4447d352007-04-17 23:44:08 +0900969 if (hpriv->cap & HOST_CAP_SSS) {
Tejun Heo0be0aa92006-07-26 15:59:26 +0900970 cmd |= PORT_CMD_SPIN_UP;
971 writel(cmd, port_mmio + PORT_CMD);
972 }
973
974 /* wake up link */
975 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
976}
977
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400978static void ahci_disable_alpm(struct ata_port *ap)
979{
980 struct ahci_host_priv *hpriv = ap->host->private_data;
981 void __iomem *port_mmio = ahci_port_base(ap);
982 u32 cmd;
983 struct ahci_port_priv *pp = ap->private_data;
984
985 /* IPM bits should be disabled by libata-core */
986 /* get the existing command bits */
987 cmd = readl(port_mmio + PORT_CMD);
988
989 /* disable ALPM and ASP */
990 cmd &= ~PORT_CMD_ASP;
991 cmd &= ~PORT_CMD_ALPE;
992
993 /* force the interface back to active */
994 cmd |= PORT_CMD_ICC_ACTIVE;
995
996 /* write out new cmd value */
997 writel(cmd, port_mmio + PORT_CMD);
998 cmd = readl(port_mmio + PORT_CMD);
999
1000 /* wait 10ms to be sure we've come out of any low power state */
1001 msleep(10);
1002
1003 /* clear out any PhyRdy stuff from interrupt status */
1004 writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT);
1005
1006 /* go ahead and clean out PhyRdy Change from Serror too */
Tejun Heo82ef04f2008-07-31 17:02:40 +09001007 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001008
1009 /*
1010 * Clear flag to indicate that we should ignore all PhyRdy
1011 * state changes
1012 */
1013 hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG;
1014
1015 /*
1016 * Enable interrupts on Phy Ready.
1017 */
1018 pp->intr_mask |= PORT_IRQ_PHYRDY;
1019 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1020
1021 /*
1022 * don't change the link pm policy - we can be called
1023 * just to turn of link pm temporarily
1024 */
1025}
1026
1027static int ahci_enable_alpm(struct ata_port *ap,
1028 enum link_pm policy)
1029{
1030 struct ahci_host_priv *hpriv = ap->host->private_data;
1031 void __iomem *port_mmio = ahci_port_base(ap);
1032 u32 cmd;
1033 struct ahci_port_priv *pp = ap->private_data;
1034 u32 asp;
1035
1036 /* Make sure the host is capable of link power management */
1037 if (!(hpriv->cap & HOST_CAP_ALPM))
1038 return -EINVAL;
1039
1040 switch (policy) {
1041 case MAX_PERFORMANCE:
1042 case NOT_AVAILABLE:
1043 /*
1044 * if we came here with NOT_AVAILABLE,
1045 * it just means this is the first time we
1046 * have tried to enable - default to max performance,
1047 * and let the user go to lower power modes on request.
1048 */
1049 ahci_disable_alpm(ap);
1050 return 0;
1051 case MIN_POWER:
1052 /* configure HBA to enter SLUMBER */
1053 asp = PORT_CMD_ASP;
1054 break;
1055 case MEDIUM_POWER:
1056 /* configure HBA to enter PARTIAL */
1057 asp = 0;
1058 break;
1059 default:
1060 return -EINVAL;
1061 }
1062
1063 /*
1064 * Disable interrupts on Phy Ready. This keeps us from
1065 * getting woken up due to spurious phy ready interrupts
1066 * TBD - Hot plug should be done via polling now, is
1067 * that even supported?
1068 */
1069 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
1070 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1071
1072 /*
1073 * Set a flag to indicate that we should ignore all PhyRdy
1074 * state changes since these can happen now whenever we
1075 * change link state
1076 */
1077 hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG;
1078
1079 /* get the existing command bits */
1080 cmd = readl(port_mmio + PORT_CMD);
1081
1082 /*
1083 * Set ASP based on Policy
1084 */
1085 cmd |= asp;
1086
1087 /*
1088 * Setting this bit will instruct the HBA to aggressively
1089 * enter a lower power link state when it's appropriate and
1090 * based on the value set above for ASP
1091 */
1092 cmd |= PORT_CMD_ALPE;
1093
1094 /* write out new cmd value */
1095 writel(cmd, port_mmio + PORT_CMD);
1096 cmd = readl(port_mmio + PORT_CMD);
1097
1098 /* IPM bits should be set by libata-core */
1099 return 0;
1100}
1101
Tejun Heo438ac6d2007-03-02 17:31:26 +09001102#ifdef CONFIG_PM
Tejun Heo4447d352007-04-17 23:44:08 +09001103static void ahci_power_down(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001104{
Tejun Heo4447d352007-04-17 23:44:08 +09001105 struct ahci_host_priv *hpriv = ap->host->private_data;
1106 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001107 u32 cmd, scontrol;
1108
Tejun Heo4447d352007-04-17 23:44:08 +09001109 if (!(hpriv->cap & HOST_CAP_SSS))
Tejun Heo07c53da2007-01-21 02:10:11 +09001110 return;
1111
1112 /* put device into listen mode, first set PxSCTL.DET to 0 */
1113 scontrol = readl(port_mmio + PORT_SCR_CTL);
1114 scontrol &= ~0xf;
1115 writel(scontrol, port_mmio + PORT_SCR_CTL);
1116
1117 /* then set PxCMD.SUD to 0 */
Tejun Heo0be0aa92006-07-26 15:59:26 +09001118 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
Tejun Heo07c53da2007-01-21 02:10:11 +09001119 cmd &= ~PORT_CMD_SPIN_UP;
1120 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001121}
Tejun Heo438ac6d2007-03-02 17:31:26 +09001122#endif
Tejun Heo0be0aa92006-07-26 15:59:26 +09001123
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001124static void ahci_start_port(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001125{
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001126 struct ahci_port_priv *pp = ap->private_data;
1127 struct ata_link *link;
1128 struct ahci_em_priv *emp;
David Milburn4c1e9aa2009-04-03 15:36:41 -05001129 ssize_t rc;
1130 int i;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001131
Tejun Heo0be0aa92006-07-26 15:59:26 +09001132 /* enable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001133 ahci_start_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001134
1135 /* enable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001136 ahci_start_engine(ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001137
1138 /* turn on LEDs */
1139 if (ap->flags & ATA_FLAG_EM) {
Tejun Heo1eca4362008-11-03 20:03:17 +09001140 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001141 emp = &pp->em_priv[link->pmp];
David Milburn4c1e9aa2009-04-03 15:36:41 -05001142
1143 /* EM Transmit bit maybe busy during init */
1144 for (i = 0; i < MAX_RETRY; i++) {
1145 rc = ahci_transmit_led_message(ap,
1146 emp->led_state,
1147 4);
1148 if (rc == -EBUSY)
1149 udelay(100);
1150 else
1151 break;
1152 }
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001153 }
1154 }
1155
1156 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
Tejun Heo1eca4362008-11-03 20:03:17 +09001157 ata_for_each_link(link, ap, EDGE)
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001158 ahci_init_sw_activity(link);
1159
Tejun Heo0be0aa92006-07-26 15:59:26 +09001160}
1161
Tejun Heo4447d352007-04-17 23:44:08 +09001162static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001163{
1164 int rc;
1165
1166 /* disable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001167 rc = ahci_stop_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001168 if (rc) {
1169 *emsg = "failed to stop engine";
1170 return rc;
1171 }
1172
1173 /* disable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001174 rc = ahci_stop_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001175 if (rc) {
1176 *emsg = "failed stop FIS RX";
1177 return rc;
1178 }
1179
Tejun Heo0be0aa92006-07-26 15:59:26 +09001180 return 0;
1181}
1182
Tejun Heo4447d352007-04-17 23:44:08 +09001183static int ahci_reset_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001184{
Tejun Heo4447d352007-04-17 23:44:08 +09001185 struct pci_dev *pdev = to_pci_dev(host->dev);
Tejun Heo49f29092007-11-19 16:03:44 +09001186 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001187 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +09001188 u32 tmp;
Tejun Heod91542c2006-07-26 15:59:26 +09001189
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001190 /* we must be in AHCI mode, before using anything
1191 * AHCI-specific, such as HOST_RESET.
1192 */
Tejun Heob710a1f2008-01-05 23:11:57 +09001193 ahci_enable_ahci(mmio);
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001194
1195 /* global controller reset */
Tejun Heoa22e6442008-03-10 10:25:25 +09001196 if (!ahci_skip_host_reset) {
1197 tmp = readl(mmio + HOST_CTL);
1198 if ((tmp & HOST_RESET) == 0) {
1199 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1200 readl(mmio + HOST_CTL); /* flush */
1201 }
Tejun Heod91542c2006-07-26 15:59:26 +09001202
Zhang Rui24920c82008-07-04 13:32:17 +08001203 /*
1204 * to perform host reset, OS should set HOST_RESET
1205 * and poll until this bit is read to be "0".
1206 * reset must complete within 1 second, or
Tejun Heoa22e6442008-03-10 10:25:25 +09001207 * the hardware should be considered fried.
1208 */
Zhang Rui24920c82008-07-04 13:32:17 +08001209 tmp = ata_wait_register(mmio + HOST_CTL, HOST_RESET,
1210 HOST_RESET, 10, 1000);
Tejun Heod91542c2006-07-26 15:59:26 +09001211
Tejun Heoa22e6442008-03-10 10:25:25 +09001212 if (tmp & HOST_RESET) {
1213 dev_printk(KERN_ERR, host->dev,
1214 "controller reset failed (0x%x)\n", tmp);
1215 return -EIO;
1216 }
Tejun Heod91542c2006-07-26 15:59:26 +09001217
Tejun Heoa22e6442008-03-10 10:25:25 +09001218 /* turn on AHCI mode */
1219 ahci_enable_ahci(mmio);
Tejun Heo98fa4b62006-11-02 12:17:23 +09001220
Tejun Heoa22e6442008-03-10 10:25:25 +09001221 /* Some registers might be cleared on reset. Restore
1222 * initial values.
1223 */
1224 ahci_restore_initial_config(host);
1225 } else
1226 dev_printk(KERN_INFO, host->dev,
1227 "skipping global host reset\n");
Tejun Heod91542c2006-07-26 15:59:26 +09001228
1229 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1230 u16 tmp16;
1231
1232 /* configure PCS */
1233 pci_read_config_word(pdev, 0x92, &tmp16);
Tejun Heo49f29092007-11-19 16:03:44 +09001234 if ((tmp16 & hpriv->port_map) != hpriv->port_map) {
1235 tmp16 |= hpriv->port_map;
1236 pci_write_config_word(pdev, 0x92, tmp16);
1237 }
Tejun Heod91542c2006-07-26 15:59:26 +09001238 }
1239
1240 return 0;
1241}
1242
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001243static void ahci_sw_activity(struct ata_link *link)
1244{
1245 struct ata_port *ap = link->ap;
1246 struct ahci_port_priv *pp = ap->private_data;
1247 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1248
1249 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
1250 return;
1251
1252 emp->activity++;
1253 if (!timer_pending(&emp->timer))
1254 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
1255}
1256
1257static void ahci_sw_activity_blink(unsigned long arg)
1258{
1259 struct ata_link *link = (struct ata_link *)arg;
1260 struct ata_port *ap = link->ap;
1261 struct ahci_port_priv *pp = ap->private_data;
1262 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1263 unsigned long led_message = emp->led_state;
1264 u32 activity_led_state;
David Milburneb409632008-10-16 09:26:19 -05001265 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001266
David Milburn87943ac2008-10-13 14:38:36 -05001267 led_message &= EM_MSG_LED_VALUE;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001268 led_message |= ap->port_no | (link->pmp << 8);
1269
1270 /* check to see if we've had activity. If so,
1271 * toggle state of LED and reset timer. If not,
1272 * turn LED to desired idle state.
1273 */
David Milburneb409632008-10-16 09:26:19 -05001274 spin_lock_irqsave(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001275 if (emp->saved_activity != emp->activity) {
1276 emp->saved_activity = emp->activity;
1277 /* get the current LED state */
David Milburn87943ac2008-10-13 14:38:36 -05001278 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001279
1280 if (activity_led_state)
1281 activity_led_state = 0;
1282 else
1283 activity_led_state = 1;
1284
1285 /* clear old state */
David Milburn87943ac2008-10-13 14:38:36 -05001286 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001287
1288 /* toggle state */
1289 led_message |= (activity_led_state << 16);
1290 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
1291 } else {
1292 /* switch to idle */
David Milburn87943ac2008-10-13 14:38:36 -05001293 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001294 if (emp->blink_policy == BLINK_OFF)
1295 led_message |= (1 << 16);
1296 }
David Milburneb409632008-10-16 09:26:19 -05001297 spin_unlock_irqrestore(ap->lock, flags);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001298 ahci_transmit_led_message(ap, led_message, 4);
1299}
1300
1301static void ahci_init_sw_activity(struct ata_link *link)
1302{
1303 struct ata_port *ap = link->ap;
1304 struct ahci_port_priv *pp = ap->private_data;
1305 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1306
1307 /* init activity stats, setup timer */
1308 emp->saved_activity = emp->activity = 0;
1309 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
1310
1311 /* check our blink policy and set flag for link if it's enabled */
1312 if (emp->blink_policy)
1313 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1314}
1315
1316static int ahci_reset_em(struct ata_host *host)
1317{
1318 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
1319 u32 em_ctl;
1320
1321 em_ctl = readl(mmio + HOST_EM_CTL);
1322 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1323 return -EINVAL;
1324
1325 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1326 return 0;
1327}
1328
1329static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1330 ssize_t size)
1331{
1332 struct ahci_host_priv *hpriv = ap->host->private_data;
1333 struct ahci_port_priv *pp = ap->private_data;
1334 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
1335 u32 em_ctl;
1336 u32 message[] = {0, 0};
Linus Torvalds93082f02008-07-25 10:56:36 -07001337 unsigned long flags;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001338 int pmp;
1339 struct ahci_em_priv *emp;
1340
1341 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001342 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001343 if (pmp < MAX_SLOTS)
1344 emp = &pp->em_priv[pmp];
1345 else
1346 return -EINVAL;
1347
1348 spin_lock_irqsave(ap->lock, flags);
1349
1350 /*
1351 * if we are still busy transmitting a previous message,
1352 * do not allow
1353 */
1354 em_ctl = readl(mmio + HOST_EM_CTL);
1355 if (em_ctl & EM_CTL_TM) {
1356 spin_unlock_irqrestore(ap->lock, flags);
David Milburn4c1e9aa2009-04-03 15:36:41 -05001357 return -EBUSY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001358 }
1359
1360 /*
1361 * create message header - this is all zero except for
1362 * the message size, which is 4 bytes.
1363 */
1364 message[0] |= (4 << 8);
1365
1366 /* ignore 0:4 of byte zero, fill in port info yourself */
David Milburn87943ac2008-10-13 14:38:36 -05001367 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001368
1369 /* write message to EM_LOC */
1370 writel(message[0], mmio + hpriv->em_loc);
1371 writel(message[1], mmio + hpriv->em_loc+4);
1372
1373 /* save off new led state for port/slot */
David Milburn208f2a82009-03-20 14:14:23 -05001374 emp->led_state = state;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001375
1376 /*
1377 * tell hardware to transmit the message
1378 */
1379 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1380
1381 spin_unlock_irqrestore(ap->lock, flags);
1382 return size;
1383}
1384
1385static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1386{
1387 struct ahci_port_priv *pp = ap->private_data;
1388 struct ata_link *link;
1389 struct ahci_em_priv *emp;
1390 int rc = 0;
1391
Tejun Heo1eca4362008-11-03 20:03:17 +09001392 ata_for_each_link(link, ap, EDGE) {
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001393 emp = &pp->em_priv[link->pmp];
1394 rc += sprintf(buf, "%lx\n", emp->led_state);
1395 }
1396 return rc;
1397}
1398
1399static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1400 size_t size)
1401{
1402 int state;
1403 int pmp;
1404 struct ahci_port_priv *pp = ap->private_data;
1405 struct ahci_em_priv *emp;
1406
1407 state = simple_strtoul(buf, NULL, 0);
1408
1409 /* get the slot number from the message */
David Milburn87943ac2008-10-13 14:38:36 -05001410 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001411 if (pmp < MAX_SLOTS)
1412 emp = &pp->em_priv[pmp];
1413 else
1414 return -EINVAL;
1415
1416 /* mask off the activity bits if we are in sw_activity
1417 * mode, user should turn off sw_activity before setting
1418 * activity led through em_message
1419 */
1420 if (emp->blink_policy)
David Milburn87943ac2008-10-13 14:38:36 -05001421 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001422
1423 return ahci_transmit_led_message(ap, state, size);
1424}
1425
1426static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1427{
1428 struct ata_link *link = dev->link;
1429 struct ata_port *ap = link->ap;
1430 struct ahci_port_priv *pp = ap->private_data;
1431 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1432 u32 port_led_state = emp->led_state;
1433
1434 /* save the desired Activity LED behavior */
1435 if (val == OFF) {
1436 /* clear LFLAG */
1437 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1438
1439 /* set the LED to OFF */
David Milburn87943ac2008-10-13 14:38:36 -05001440 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001441 port_led_state |= (ap->port_no | (link->pmp << 8));
1442 ahci_transmit_led_message(ap, port_led_state, 4);
1443 } else {
1444 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1445 if (val == BLINK_OFF) {
1446 /* set LED to ON for idle */
David Milburn87943ac2008-10-13 14:38:36 -05001447 port_led_state &= EM_MSG_LED_VALUE_OFF;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001448 port_led_state |= (ap->port_no | (link->pmp << 8));
David Milburn87943ac2008-10-13 14:38:36 -05001449 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001450 ahci_transmit_led_message(ap, port_led_state, 4);
1451 }
1452 }
1453 emp->blink_policy = val;
1454 return 0;
1455}
1456
1457static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1458{
1459 struct ata_link *link = dev->link;
1460 struct ata_port *ap = link->ap;
1461 struct ahci_port_priv *pp = ap->private_data;
1462 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1463
1464 /* display the saved value of activity behavior for this
1465 * disk.
1466 */
1467 return sprintf(buf, "%d\n", emp->blink_policy);
1468}
1469
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001470static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap,
1471 int port_no, void __iomem *mmio,
1472 void __iomem *port_mmio)
1473{
1474 const char *emsg = NULL;
1475 int rc;
1476 u32 tmp;
1477
1478 /* make sure port is not active */
1479 rc = ahci_deinit_port(ap, &emsg);
1480 if (rc)
1481 dev_printk(KERN_WARNING, &pdev->dev,
1482 "%s (%d)\n", emsg, rc);
1483
1484 /* clear SError */
1485 tmp = readl(port_mmio + PORT_SCR_ERR);
1486 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1487 writel(tmp, port_mmio + PORT_SCR_ERR);
1488
1489 /* clear port IRQ */
1490 tmp = readl(port_mmio + PORT_IRQ_STAT);
1491 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1492 if (tmp)
1493 writel(tmp, port_mmio + PORT_IRQ_STAT);
1494
1495 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1496}
1497
Tejun Heo4447d352007-04-17 23:44:08 +09001498static void ahci_init_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001499{
Tejun Heo417a1a62007-09-23 13:19:55 +09001500 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001501 struct pci_dev *pdev = to_pci_dev(host->dev);
1502 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001503 int i;
Jeff Garzikcd70c262007-07-08 02:29:42 -04001504 void __iomem *port_mmio;
Tejun Heod91542c2006-07-26 15:59:26 +09001505 u32 tmp;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001506 int mv;
Tejun Heod91542c2006-07-26 15:59:26 +09001507
Tejun Heo417a1a62007-09-23 13:19:55 +09001508 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001509 if (pdev->device == 0x6121)
1510 mv = 2;
1511 else
1512 mv = 4;
1513 port_mmio = __ahci_port_base(host, mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -04001514
1515 writel(0, port_mmio + PORT_IRQ_MASK);
1516
1517 /* clear port IRQ */
1518 tmp = readl(port_mmio + PORT_IRQ_STAT);
1519 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1520 if (tmp)
1521 writel(tmp, port_mmio + PORT_IRQ_STAT);
1522 }
1523
Tejun Heo4447d352007-04-17 23:44:08 +09001524 for (i = 0; i < host->n_ports; i++) {
1525 struct ata_port *ap = host->ports[i];
Tejun Heod91542c2006-07-26 15:59:26 +09001526
Jeff Garzikcd70c262007-07-08 02:29:42 -04001527 port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09001528 if (ata_port_is_dummy(ap))
Tejun Heod91542c2006-07-26 15:59:26 +09001529 continue;
Tejun Heod91542c2006-07-26 15:59:26 +09001530
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001531 ahci_port_init(pdev, ap, i, mmio, port_mmio);
Tejun Heod91542c2006-07-26 15:59:26 +09001532 }
1533
1534 tmp = readl(mmio + HOST_CTL);
1535 VPRINTK("HOST_CTL 0x%x\n", tmp);
1536 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1537 tmp = readl(mmio + HOST_CTL);
1538 VPRINTK("HOST_CTL 0x%x\n", tmp);
1539}
1540
Jeff Garzika8785392008-02-28 15:43:48 -05001541static void ahci_dev_config(struct ata_device *dev)
1542{
1543 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1544
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001545 if (hpriv->flags & AHCI_HFLAG_SECT255) {
Jeff Garzika8785392008-02-28 15:43:48 -05001546 dev->max_sectors = 255;
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001547 ata_dev_printk(dev, KERN_INFO,
1548 "SB600 AHCI: limiting to 255 sectors per cmd\n");
1549 }
Jeff Garzika8785392008-02-28 15:43:48 -05001550}
1551
Tejun Heo422b7592005-12-19 22:37:17 +09001552static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
Tejun Heo4447d352007-04-17 23:44:08 +09001554 void __iomem *port_mmio = ahci_port_base(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +09001556 u32 tmp;
1557
1558 tmp = readl(port_mmio + PORT_SIG);
1559 tf.lbah = (tmp >> 24) & 0xff;
1560 tf.lbam = (tmp >> 16) & 0xff;
1561 tf.lbal = (tmp >> 8) & 0xff;
1562 tf.nsect = (tmp) & 0xff;
1563
1564 return ata_dev_classify(&tf);
1565}
1566
Tejun Heo12fad3f2006-05-15 21:03:55 +09001567static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1568 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +09001569{
Tejun Heo12fad3f2006-05-15 21:03:55 +09001570 dma_addr_t cmd_tbl_dma;
1571
1572 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1573
1574 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1575 pp->cmd_slot[tag].status = 0;
1576 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1577 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +09001578}
1579
Tejun Heod2e75df2007-07-16 14:29:39 +09001580static int ahci_kick_engine(struct ata_port *ap, int force_restart)
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001581{
Tejun Heo350756f2008-04-07 22:47:21 +09001582 void __iomem *port_mmio = ahci_port_base(ap);
Jeff Garzikcca39742006-08-24 03:19:22 -04001583 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo520d06f2008-04-07 22:47:21 +09001584 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001585 u32 tmp;
Tejun Heod2e75df2007-07-16 14:29:39 +09001586 int busy, rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001587
Tejun Heod2e75df2007-07-16 14:29:39 +09001588 /* do we need to kick the port? */
Tejun Heo520d06f2008-04-07 22:47:21 +09001589 busy = status & (ATA_BUSY | ATA_DRQ);
Tejun Heod2e75df2007-07-16 14:29:39 +09001590 if (!busy && !force_restart)
1591 return 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001592
Tejun Heod2e75df2007-07-16 14:29:39 +09001593 /* stop engine */
1594 rc = ahci_stop_engine(ap);
1595 if (rc)
1596 goto out_restart;
1597
1598 /* need to do CLO? */
1599 if (!busy) {
1600 rc = 0;
1601 goto out_restart;
1602 }
1603
1604 if (!(hpriv->cap & HOST_CAP_CLO)) {
1605 rc = -EOPNOTSUPP;
1606 goto out_restart;
1607 }
1608
1609 /* perform CLO */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001610 tmp = readl(port_mmio + PORT_CMD);
1611 tmp |= PORT_CMD_CLO;
1612 writel(tmp, port_mmio + PORT_CMD);
1613
Tejun Heod2e75df2007-07-16 14:29:39 +09001614 rc = 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001615 tmp = ata_wait_register(port_mmio + PORT_CMD,
1616 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1617 if (tmp & PORT_CMD_CLO)
Tejun Heod2e75df2007-07-16 14:29:39 +09001618 rc = -EIO;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001619
Tejun Heod2e75df2007-07-16 14:29:39 +09001620 /* restart engine */
1621 out_restart:
1622 ahci_start_engine(ap);
1623 return rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001624}
1625
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001626static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1627 struct ata_taskfile *tf, int is_cmd, u16 flags,
1628 unsigned long timeout_msec)
1629{
1630 const u32 cmd_fis_len = 5; /* five dwords */
1631 struct ahci_port_priv *pp = ap->private_data;
1632 void __iomem *port_mmio = ahci_port_base(ap);
1633 u8 *fis = pp->cmd_tbl;
1634 u32 tmp;
1635
1636 /* prep the command */
1637 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1638 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1639
1640 /* issue & wait */
1641 writel(1, port_mmio + PORT_CMD_ISSUE);
1642
1643 if (timeout_msec) {
1644 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1,
1645 1, timeout_msec);
1646 if (tmp & 0x1) {
1647 ahci_kick_engine(ap, 1);
1648 return -EBUSY;
1649 }
1650 } else
1651 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1652
1653 return 0;
1654}
1655
Shane Huangbd172432008-06-10 15:52:04 +08001656static int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1657 int pmp, unsigned long deadline,
1658 int (*check_ready)(struct ata_link *link))
Tejun Heo4658f792006-03-22 21:07:03 +09001659{
Tejun Heocc0680a2007-08-06 18:36:23 +09001660 struct ata_port *ap = link->ap;
Tejun Heo4658f792006-03-22 21:07:03 +09001661 const char *reason = NULL;
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001662 unsigned long now, msecs;
Tejun Heo4658f792006-03-22 21:07:03 +09001663 struct ata_taskfile tf;
Tejun Heo4658f792006-03-22 21:07:03 +09001664 int rc;
1665
1666 DPRINTK("ENTER\n");
1667
1668 /* prepare for SRST (AHCI-1.1 10.4.1) */
Tejun Heod2e75df2007-07-16 14:29:39 +09001669 rc = ahci_kick_engine(ap, 1);
Tejun Heo994056d2007-12-06 15:02:48 +09001670 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09001671 ata_link_printk(link, KERN_WARNING,
Tejun Heo994056d2007-12-06 15:02:48 +09001672 "failed to reset engine (errno=%d)\n", rc);
Tejun Heo4658f792006-03-22 21:07:03 +09001673
Tejun Heocc0680a2007-08-06 18:36:23 +09001674 ata_tf_init(link->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +09001675
1676 /* issue the first D2H Register FIS */
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001677 msecs = 0;
1678 now = jiffies;
1679 if (time_after(now, deadline))
1680 msecs = jiffies_to_msecs(deadline - now);
1681
Tejun Heo4658f792006-03-22 21:07:03 +09001682 tf.ctl |= ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001683 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001684 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
Tejun Heo4658f792006-03-22 21:07:03 +09001685 rc = -EIO;
1686 reason = "1st FIS failed";
1687 goto fail;
1688 }
1689
1690 /* spec says at least 5us, but be generous and sleep for 1ms */
1691 msleep(1);
1692
1693 /* issue the second D2H Register FIS */
Tejun Heo4658f792006-03-22 21:07:03 +09001694 tf.ctl &= ~ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001695 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
Tejun Heo4658f792006-03-22 21:07:03 +09001696
Tejun Heo705e76b2008-04-07 22:47:19 +09001697 /* wait for link to become ready */
Shane Huangbd172432008-06-10 15:52:04 +08001698 rc = ata_wait_after_reset(link, deadline, check_ready);
Tejun Heo9b893912007-02-02 16:50:52 +09001699 /* link occupied, -ENODEV too is an error */
1700 if (rc) {
1701 reason = "device not ready";
1702 goto fail;
Tejun Heo4658f792006-03-22 21:07:03 +09001703 }
Tejun Heo9b893912007-02-02 16:50:52 +09001704 *class = ahci_dev_classify(ap);
Tejun Heo4658f792006-03-22 21:07:03 +09001705
1706 DPRINTK("EXIT, class=%u\n", *class);
1707 return 0;
1708
Tejun Heo4658f792006-03-22 21:07:03 +09001709 fail:
Tejun Heocc0680a2007-08-06 18:36:23 +09001710 ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +09001711 return rc;
1712}
1713
Shane Huangbd172432008-06-10 15:52:04 +08001714static int ahci_check_ready(struct ata_link *link)
1715{
1716 void __iomem *port_mmio = ahci_port_base(link->ap);
1717 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1718
1719 return ata_check_ready(status);
1720}
1721
1722static int ahci_softreset(struct ata_link *link, unsigned int *class,
1723 unsigned long deadline)
1724{
1725 int pmp = sata_srst_pmp(link);
1726
1727 DPRINTK("ENTER\n");
1728
1729 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1730}
1731
1732static int ahci_sb600_check_ready(struct ata_link *link)
1733{
1734 void __iomem *port_mmio = ahci_port_base(link->ap);
1735 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1736 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1737
1738 /*
1739 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1740 * which can save timeout delay.
1741 */
1742 if (irq_status & PORT_IRQ_BAD_PMP)
1743 return -EIO;
1744
1745 return ata_check_ready(status);
1746}
1747
1748static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
1749 unsigned long deadline)
1750{
1751 struct ata_port *ap = link->ap;
1752 void __iomem *port_mmio = ahci_port_base(ap);
1753 int pmp = sata_srst_pmp(link);
1754 int rc;
1755 u32 irq_sts;
1756
1757 DPRINTK("ENTER\n");
1758
1759 rc = ahci_do_softreset(link, class, pmp, deadline,
1760 ahci_sb600_check_ready);
1761
1762 /*
1763 * Soft reset fails on some ATI chips with IPMS set when PMP
1764 * is enabled but SATA HDD/ODD is connected to SATA port,
1765 * do soft reset again to port 0.
1766 */
1767 if (rc == -EIO) {
1768 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1769 if (irq_sts & PORT_IRQ_BAD_PMP) {
1770 ata_link_printk(link, KERN_WARNING,
1771 "failed due to HW bug, retry pmp=0\n");
1772 rc = ahci_do_softreset(link, class, 0, deadline,
1773 ahci_check_ready);
1774 }
1775 }
1776
1777 return rc;
1778}
1779
Tejun Heocc0680a2007-08-06 18:36:23 +09001780static int ahci_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001781 unsigned long deadline)
Tejun Heo422b7592005-12-19 22:37:17 +09001782{
Tejun Heo9dadd452008-04-07 22:47:19 +09001783 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heocc0680a2007-08-06 18:36:23 +09001784 struct ata_port *ap = link->ap;
Tejun Heo42969712006-05-31 18:28:18 +09001785 struct ahci_port_priv *pp = ap->private_data;
1786 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1787 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001788 bool online;
Tejun Heo4bd00f62006-02-11 16:26:02 +09001789 int rc;
1790
1791 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Tejun Heo4447d352007-04-17 23:44:08 +09001793 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +09001794
1795 /* clear D2H reception area to properly wait for D2H FIS */
Tejun Heocc0680a2007-08-06 18:36:23 +09001796 ata_tf_init(link->device, &tf);
Tejun Heodfd7a3d2007-01-26 15:37:20 +09001797 tf.command = 0x80;
Tejun Heo99771262007-07-16 14:29:38 +09001798 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
Tejun Heo42969712006-05-31 18:28:18 +09001799
Tejun Heo9dadd452008-04-07 22:47:19 +09001800 rc = sata_link_hardreset(link, timing, deadline, &online,
1801 ahci_check_ready);
Tejun Heo42969712006-05-31 18:28:18 +09001802
Tejun Heo4447d352007-04-17 23:44:08 +09001803 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Tejun Heo9dadd452008-04-07 22:47:19 +09001805 if (online)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001806 *class = ahci_dev_classify(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Tejun Heo4bd00f62006-02-11 16:26:02 +09001808 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1809 return rc;
1810}
1811
Tejun Heocc0680a2007-08-06 18:36:23 +09001812static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001813 unsigned long deadline)
Tejun Heoad616ff2006-11-01 18:00:24 +09001814{
Tejun Heocc0680a2007-08-06 18:36:23 +09001815 struct ata_port *ap = link->ap;
Tejun Heo9dadd452008-04-07 22:47:19 +09001816 bool online;
Tejun Heoad616ff2006-11-01 18:00:24 +09001817 int rc;
1818
1819 DPRINTK("ENTER\n");
1820
Tejun Heo4447d352007-04-17 23:44:08 +09001821 ahci_stop_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001822
Tejun Heocc0680a2007-08-06 18:36:23 +09001823 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001824 deadline, &online, NULL);
Tejun Heoad616ff2006-11-01 18:00:24 +09001825
Tejun Heo4447d352007-04-17 23:44:08 +09001826 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001827
1828 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1829
1830 /* vt8251 doesn't clear BSY on signature FIS reception,
1831 * request follow-up softreset.
1832 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001833 return online ? -EAGAIN : rc;
Tejun Heoad616ff2006-11-01 18:00:24 +09001834}
1835
Tejun Heoedc93052007-10-25 14:59:16 +09001836static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
1837 unsigned long deadline)
1838{
1839 struct ata_port *ap = link->ap;
1840 struct ahci_port_priv *pp = ap->private_data;
1841 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1842 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001843 bool online;
Tejun Heoedc93052007-10-25 14:59:16 +09001844 int rc;
1845
1846 ahci_stop_engine(ap);
1847
1848 /* clear D2H reception area to properly wait for D2H FIS */
1849 ata_tf_init(link->device, &tf);
1850 tf.command = 0x80;
1851 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1852
1853 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001854 deadline, &online, NULL);
Tejun Heoedc93052007-10-25 14:59:16 +09001855
1856 ahci_start_engine(ap);
1857
Tejun Heoedc93052007-10-25 14:59:16 +09001858 /* The pseudo configuration device on SIMG4726 attached to
1859 * ASUS P5W-DH Deluxe doesn't send signature FIS after
1860 * hardreset if no device is attached to the first downstream
1861 * port && the pseudo device locks up on SRST w/ PMP==0. To
1862 * work around this, wait for !BSY only briefly. If BSY isn't
1863 * cleared, perform CLO and proceed to IDENTIFY (achieved by
1864 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
1865 *
1866 * Wait for two seconds. Devices attached to downstream port
1867 * which can't process the following IDENTIFY after this will
1868 * have to be reset again. For most cases, this should
1869 * suffice while making probing snappish enough.
1870 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001871 if (online) {
1872 rc = ata_wait_after_reset(link, jiffies + 2 * HZ,
1873 ahci_check_ready);
1874 if (rc)
1875 ahci_kick_engine(ap, 0);
1876 }
Tejun Heo9dadd452008-04-07 22:47:19 +09001877 return rc;
Tejun Heoedc93052007-10-25 14:59:16 +09001878}
1879
Tejun Heocc0680a2007-08-06 18:36:23 +09001880static void ahci_postreset(struct ata_link *link, unsigned int *class)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001881{
Tejun Heocc0680a2007-08-06 18:36:23 +09001882 struct ata_port *ap = link->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09001883 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001884 u32 new_tmp, tmp;
1885
Tejun Heo203c75b2008-04-07 22:47:18 +09001886 ata_std_postreset(link, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -05001887
1888 /* Make sure port's ATAPI bit is set appropriately */
1889 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001890 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -05001891 new_tmp |= PORT_CMD_ATAPI;
1892 else
1893 new_tmp &= ~PORT_CMD_ATAPI;
1894 if (new_tmp != tmp) {
1895 writel(new_tmp, port_mmio + PORT_CMD);
1896 readl(port_mmio + PORT_CMD); /* flush */
1897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
Tejun Heo12fad3f2006-05-15 21:03:55 +09001900static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001902 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09001903 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1904 unsigned int si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 VPRINTK("ENTER\n");
1907
1908 /*
1909 * Next, the S/G list.
1910 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09001911 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001912 dma_addr_t addr = sg_dma_address(sg);
1913 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Tejun Heoff2aeb12007-12-05 16:43:11 +09001915 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1916 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1917 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
Jeff Garzik828d09d2005-11-12 01:27:07 -05001919
Tejun Heoff2aeb12007-12-05 16:43:11 +09001920 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922
1923static void ahci_qc_prep(struct ata_queued_cmd *qc)
1924{
Jeff Garzika0ea7322005-06-04 01:13:15 -04001925 struct ata_port *ap = qc->ap;
1926 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo405e66b2007-11-27 19:28:53 +09001927 int is_atapi = ata_is_atapi(qc->tf.protocol);
Tejun Heo12fad3f2006-05-15 21:03:55 +09001928 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 u32 opts;
1930 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -05001931 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 * Fill in command table information. First, the header,
1935 * a SATA Register - Host to Device command FIS.
1936 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09001937 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
1938
Tejun Heo7d50b602007-09-23 13:19:54 +09001939 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
Tejun Heocc9278e2006-02-10 17:25:47 +09001940 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09001941 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1942 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -04001943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Tejun Heocc9278e2006-02-10 17:25:47 +09001945 n_elem = 0;
1946 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +09001947 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Tejun Heocc9278e2006-02-10 17:25:47 +09001949 /*
1950 * Fill in command slot information.
1951 */
Tejun Heo7d50b602007-09-23 13:19:54 +09001952 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
Tejun Heocc9278e2006-02-10 17:25:47 +09001953 if (qc->tf.flags & ATA_TFLAG_WRITE)
1954 opts |= AHCI_CMD_WRITE;
1955 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +09001956 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -05001957
Tejun Heo12fad3f2006-05-15 21:03:55 +09001958 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
Tejun Heo78cd52d2006-05-15 20:58:29 +09001961static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
Tejun Heo417a1a62007-09-23 13:19:55 +09001963 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001964 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09001965 struct ata_eh_info *host_ehi = &ap->link.eh_info;
1966 struct ata_link *link = NULL;
1967 struct ata_queued_cmd *active_qc;
1968 struct ata_eh_info *active_ehi;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001969 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Tejun Heo7d50b602007-09-23 13:19:54 +09001971 /* determine active link */
Tejun Heo1eca4362008-11-03 20:03:17 +09001972 ata_for_each_link(link, ap, EDGE)
Tejun Heo7d50b602007-09-23 13:19:54 +09001973 if (ata_link_active(link))
1974 break;
1975 if (!link)
1976 link = &ap->link;
1977
1978 active_qc = ata_qc_from_tag(ap, link->active_tag);
1979 active_ehi = &link->eh_info;
1980
1981 /* record irq stat */
1982 ata_ehi_clear_desc(host_ehi);
1983 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
Jeff Garzik9f68a242005-11-15 14:03:47 -05001984
Tejun Heo78cd52d2006-05-15 20:58:29 +09001985 /* AHCI needs SError cleared; otherwise, it might lock up */
Tejun Heo82ef04f2008-07-31 17:02:40 +09001986 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
1987 ahci_scr_write(&ap->link, SCR_ERROR, serror);
Tejun Heo7d50b602007-09-23 13:19:54 +09001988 host_ehi->serror |= serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Tejun Heo41669552006-11-29 11:33:14 +09001990 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
Tejun Heo417a1a62007-09-23 13:19:55 +09001991 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
Tejun Heo41669552006-11-29 11:33:14 +09001992 irq_stat &= ~PORT_IRQ_IF_ERR;
1993
Conke Hu55a61602007-03-27 18:33:05 +08001994 if (irq_stat & PORT_IRQ_TF_ERR) {
Tejun Heo7d50b602007-09-23 13:19:54 +09001995 /* If qc is active, charge it; otherwise, the active
1996 * link. There's no active qc on NCQ errors. It will
1997 * be determined by EH by reading log page 10h.
1998 */
1999 if (active_qc)
2000 active_qc->err_mask |= AC_ERR_DEV;
2001 else
2002 active_ehi->err_mask |= AC_ERR_DEV;
2003
Tejun Heo417a1a62007-09-23 13:19:55 +09002004 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
Tejun Heo7d50b602007-09-23 13:19:54 +09002005 host_ehi->serror &= ~SERR_INTERNAL;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Tejun Heo78cd52d2006-05-15 20:58:29 +09002008 if (irq_stat & PORT_IRQ_UNK_FIS) {
2009 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Tejun Heo7d50b602007-09-23 13:19:54 +09002011 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002012 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002013 ata_ehi_push_desc(active_ehi,
2014 "unknown FIS %08x %08x %08x %08x" ,
Tejun Heo78cd52d2006-05-15 20:58:29 +09002015 unk[0], unk[1], unk[2], unk[3]);
2016 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04002017
Tejun Heo071f44b2008-04-07 22:47:22 +09002018 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
Tejun Heo7d50b602007-09-23 13:19:54 +09002019 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002020 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002021 ata_ehi_push_desc(active_ehi, "incorrect PMP");
2022 }
Tejun Heo78cd52d2006-05-15 20:58:29 +09002023
Tejun Heo7d50b602007-09-23 13:19:54 +09002024 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
2025 host_ehi->err_mask |= AC_ERR_HOST_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002026 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002027 ata_ehi_push_desc(host_ehi, "host bus error");
2028 }
2029
2030 if (irq_stat & PORT_IRQ_IF_ERR) {
2031 host_ehi->err_mask |= AC_ERR_ATA_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002032 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09002033 ata_ehi_push_desc(host_ehi, "interface fatal error");
2034 }
2035
2036 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
2037 ata_ehi_hotplugged(host_ehi);
2038 ata_ehi_push_desc(host_ehi, "%s",
2039 irq_stat & PORT_IRQ_CONNECT ?
2040 "connection status changed" : "PHY RDY changed");
2041 }
2042
2043 /* okay, let's hand over to EH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Tejun Heo78cd52d2006-05-15 20:58:29 +09002045 if (irq_stat & PORT_IRQ_FREEZE)
2046 ata_port_freeze(ap);
2047 else
2048 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
2050
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002051static void ahci_port_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
Tejun Heo350756f2008-04-07 22:47:21 +09002053 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002054 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo0291f952007-01-25 19:16:28 +09002055 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo5f226c62007-10-09 15:02:23 +09002056 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heob06ce3e2007-10-09 15:06:48 +09002057 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Tejun Heo12fad3f2006-05-15 21:03:55 +09002058 u32 status, qc_active;
Tejun Heo459ad682007-12-07 12:46:23 +09002059 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 status = readl(port_mmio + PORT_IRQ_STAT);
2062 writel(status, port_mmio + PORT_IRQ_STAT);
2063
Tejun Heob06ce3e2007-10-09 15:06:48 +09002064 /* ignore BAD_PMP while resetting */
2065 if (unlikely(resetting))
2066 status &= ~PORT_IRQ_BAD_PMP;
2067
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002068 /* If we are getting PhyRdy, this is
2069 * just a power state change, we should
2070 * clear out this, plus the PhyRdy/Comm
2071 * Wake bits from Serror
2072 */
2073 if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) &&
2074 (status & PORT_IRQ_PHYRDY)) {
2075 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo82ef04f2008-07-31 17:02:40 +09002076 ahci_scr_write(&ap->link, SCR_ERROR, ((1 << 16) | (1 << 18)));
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002077 }
2078
Tejun Heo78cd52d2006-05-15 20:58:29 +09002079 if (unlikely(status & PORT_IRQ_ERROR)) {
2080 ahci_error_intr(ap, status);
2081 return;
2082 }
2083
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002084 if (status & PORT_IRQ_SDB_FIS) {
Tejun Heo5f226c62007-10-09 15:02:23 +09002085 /* If SNotification is available, leave notification
2086 * handling to sata_async_notification(). If not,
2087 * emulate it by snooping SDB FIS RX area.
2088 *
2089 * Snooping FIS RX area is probably cheaper than
2090 * poking SNotification but some constrollers which
2091 * implement SNotification, ICH9 for example, don't
2092 * store AN SDB FIS into receive area.
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002093 */
Tejun Heo5f226c62007-10-09 15:02:23 +09002094 if (hpriv->cap & HOST_CAP_SNTF)
Tejun Heo7d77b242007-09-23 13:14:13 +09002095 sata_async_notification(ap);
Tejun Heo5f226c62007-10-09 15:02:23 +09002096 else {
2097 /* If the 'N' bit in word 0 of the FIS is set,
2098 * we just received asynchronous notification.
2099 * Tell libata about it.
2100 */
2101 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
2102 u32 f0 = le32_to_cpu(f[0]);
2103
2104 if (f0 & (1 << 15))
2105 sata_async_notification(ap);
2106 }
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002107 }
2108
Tejun Heo7d50b602007-09-23 13:19:54 +09002109 /* pp->active_link is valid iff any command is in flight */
2110 if (ap->qc_active && pp->active_link->sactive)
Tejun Heo12fad3f2006-05-15 21:03:55 +09002111 qc_active = readl(port_mmio + PORT_SCR_ACT);
2112 else
2113 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
2114
Tejun Heo79f97da2008-04-07 22:47:20 +09002115 rc = ata_qc_complete_multiple(ap, qc_active);
Tejun Heob06ce3e2007-10-09 15:06:48 +09002116
Tejun Heo459ad682007-12-07 12:46:23 +09002117 /* while resetting, invalid completions are expected */
2118 if (unlikely(rc < 0 && !resetting)) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002119 ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002120 ehi->action |= ATA_EH_RESET;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002121 ata_port_freeze(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
David Howells7d12e782006-10-05 14:55:46 +01002125static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Jeff Garzikcca39742006-08-24 03:19:22 -04002127 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 struct ahci_host_priv *hpriv;
2129 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -04002130 void __iomem *mmio;
Tejun Heod28f87a2008-07-05 13:10:50 +09002131 u32 irq_stat, irq_masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 VPRINTK("ENTER\n");
2134
Jeff Garzikcca39742006-08-24 03:19:22 -04002135 hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002136 mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138 /* sigh. 0xffffffff is a valid return from h/w */
2139 irq_stat = readl(mmio + HOST_IRQ_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 if (!irq_stat)
2141 return IRQ_NONE;
2142
Tejun Heod28f87a2008-07-05 13:10:50 +09002143 irq_masked = irq_stat & hpriv->port_map;
2144
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002145 spin_lock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002147 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Tejun Heod28f87a2008-07-05 13:10:50 +09002150 if (!(irq_masked & (1 << i)))
Jeff Garzik67846b32005-10-05 02:58:32 -04002151 continue;
2152
Jeff Garzikcca39742006-08-24 03:19:22 -04002153 ap = host->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -04002154 if (ap) {
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002155 ahci_port_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -04002156 VPRINTK("port %u\n", i);
2157 } else {
2158 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +09002159 if (ata_ratelimit())
Jeff Garzikcca39742006-08-24 03:19:22 -04002160 dev_printk(KERN_WARNING, host->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -05002161 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 }
Jeff Garzik67846b32005-10-05 02:58:32 -04002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 handled = 1;
2165 }
2166
Tejun Heod28f87a2008-07-05 13:10:50 +09002167 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
2168 * it should be cleared after all the port events are cleared;
2169 * otherwise, it will raise a spurious interrupt after each
2170 * valid one. Please read section 10.6.2 of ahci 1.1 for more
2171 * information.
2172 *
2173 * Also, use the unmasked value to clear interrupt as spurious
2174 * pending event on a dummy port might cause screaming IRQ.
2175 */
Tejun Heoea0c62f2008-06-28 01:49:02 +09002176 writel(irq_stat, mmio + HOST_IRQ_STAT);
2177
Jeff Garzikcca39742006-08-24 03:19:22 -04002178 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 VPRINTK("EXIT\n");
2181
2182 return IRQ_RETVAL(handled);
2183}
2184
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09002185static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
2187 struct ata_port *ap = qc->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002188 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09002189 struct ahci_port_priv *pp = ap->private_data;
2190
2191 /* Keep track of the currently active link. It will be used
2192 * in completion path to determine whether NCQ phase is in
2193 * progress.
2194 */
2195 pp->active_link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Tejun Heo12fad3f2006-05-15 21:03:55 +09002197 if (qc->tf.protocol == ATA_PROT_NCQ)
2198 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
2199 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002201 ahci_sw_activity(qc->dev->link);
2202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 return 0;
2204}
2205
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002206static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2207{
2208 struct ahci_port_priv *pp = qc->ap->private_data;
2209 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2210
2211 ata_tf_from_fis(d2h_fis, &qc->result_tf);
2212 return true;
2213}
2214
Tejun Heo78cd52d2006-05-15 20:58:29 +09002215static void ahci_freeze(struct ata_port *ap)
2216{
Tejun Heo4447d352007-04-17 23:44:08 +09002217 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002218
2219 /* turn IRQ off */
2220 writel(0, port_mmio + PORT_IRQ_MASK);
2221}
2222
2223static void ahci_thaw(struct ata_port *ap)
2224{
Tejun Heo0d5ff562007-02-01 15:06:36 +09002225 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
Tejun Heo4447d352007-04-17 23:44:08 +09002226 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002227 u32 tmp;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002228 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002229
2230 /* clear IRQ */
2231 tmp = readl(port_mmio + PORT_IRQ_STAT);
2232 writel(tmp, port_mmio + PORT_IRQ_STAT);
Tejun Heoa7187282007-01-27 11:04:26 +09002233 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002234
Tejun Heo1c954a42007-10-09 15:01:37 +09002235 /* turn IRQ back on */
2236 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002237}
2238
2239static void ahci_error_handler(struct ata_port *ap)
2240{
Tejun Heob51e9e52006-06-29 01:29:30 +09002241 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +09002242 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09002243 ahci_stop_engine(ap);
2244 ahci_start_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002245 }
2246
Tejun Heoa1efdab2008-03-25 12:22:50 +09002247 sata_pmp_error_handler(ap);
Tejun Heoedc93052007-10-25 14:59:16 +09002248}
2249
Tejun Heo78cd52d2006-05-15 20:58:29 +09002250static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2251{
2252 struct ata_port *ap = qc->ap;
2253
Tejun Heod2e75df2007-07-16 14:29:39 +09002254 /* make DMA engine forget about the failed command */
2255 if (qc->flags & ATA_QCFLAG_FAILED)
2256 ahci_kick_engine(ap, 1);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002257}
2258
Tejun Heo7d50b602007-09-23 13:19:54 +09002259static void ahci_pmp_attach(struct ata_port *ap)
2260{
2261 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002262 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002263 u32 cmd;
2264
2265 cmd = readl(port_mmio + PORT_CMD);
2266 cmd |= PORT_CMD_PMP;
2267 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002268
2269 pp->intr_mask |= PORT_IRQ_BAD_PMP;
2270 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002271}
2272
2273static void ahci_pmp_detach(struct ata_port *ap)
2274{
2275 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002276 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002277 u32 cmd;
2278
2279 cmd = readl(port_mmio + PORT_CMD);
2280 cmd &= ~PORT_CMD_PMP;
2281 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002282
2283 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
2284 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002285}
2286
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002287static int ahci_port_resume(struct ata_port *ap)
2288{
2289 ahci_power_up(ap);
2290 ahci_start_port(ap);
2291
Tejun Heo071f44b2008-04-07 22:47:22 +09002292 if (sata_pmp_attached(ap))
Tejun Heo7d50b602007-09-23 13:19:54 +09002293 ahci_pmp_attach(ap);
2294 else
2295 ahci_pmp_detach(ap);
2296
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002297 return 0;
2298}
2299
Tejun Heo438ac6d2007-03-02 17:31:26 +09002300#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +09002301static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2302{
Tejun Heoc1332872006-07-26 15:59:26 +09002303 const char *emsg = NULL;
2304 int rc;
2305
Tejun Heo4447d352007-04-17 23:44:08 +09002306 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo8e16f942006-11-20 15:42:36 +09002307 if (rc == 0)
Tejun Heo4447d352007-04-17 23:44:08 +09002308 ahci_power_down(ap);
Tejun Heo8e16f942006-11-20 15:42:36 +09002309 else {
Tejun Heoc1332872006-07-26 15:59:26 +09002310 ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002311 ahci_start_port(ap);
Tejun Heoc1332872006-07-26 15:59:26 +09002312 }
2313
2314 return rc;
2315}
2316
Tejun Heoc1332872006-07-26 15:59:26 +09002317static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
2318{
Jeff Garzikcca39742006-08-24 03:19:22 -04002319 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo9b10ae82009-05-30 20:50:12 +09002320 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002321 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heoc1332872006-07-26 15:59:26 +09002322 u32 ctl;
2323
Tejun Heo9b10ae82009-05-30 20:50:12 +09002324 if (mesg.event & PM_EVENT_SUSPEND &&
2325 hpriv->flags & AHCI_HFLAG_NO_SUSPEND) {
2326 dev_printk(KERN_ERR, &pdev->dev,
2327 "BIOS update required for suspend/resume\n");
2328 return -EIO;
2329 }
2330
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002331 if (mesg.event & PM_EVENT_SLEEP) {
Tejun Heoc1332872006-07-26 15:59:26 +09002332 /* AHCI spec rev1.1 section 8.3.3:
2333 * Software must disable interrupts prior to requesting a
2334 * transition of the HBA to D3 state.
2335 */
2336 ctl = readl(mmio + HOST_CTL);
2337 ctl &= ~HOST_IRQ_EN;
2338 writel(ctl, mmio + HOST_CTL);
2339 readl(mmio + HOST_CTL); /* flush */
2340 }
2341
2342 return ata_pci_device_suspend(pdev, mesg);
2343}
2344
2345static int ahci_pci_device_resume(struct pci_dev *pdev)
2346{
Jeff Garzikcca39742006-08-24 03:19:22 -04002347 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heoc1332872006-07-26 15:59:26 +09002348 int rc;
2349
Tejun Heo553c4aa2006-12-26 19:39:50 +09002350 rc = ata_pci_device_do_resume(pdev);
2351 if (rc)
2352 return rc;
Tejun Heoc1332872006-07-26 15:59:26 +09002353
2354 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
Tejun Heo4447d352007-04-17 23:44:08 +09002355 rc = ahci_reset_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002356 if (rc)
2357 return rc;
2358
Tejun Heo4447d352007-04-17 23:44:08 +09002359 ahci_init_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002360 }
2361
Jeff Garzikcca39742006-08-24 03:19:22 -04002362 ata_host_resume(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002363
2364 return 0;
2365}
Tejun Heo438ac6d2007-03-02 17:31:26 +09002366#endif
Tejun Heoc1332872006-07-26 15:59:26 +09002367
Tejun Heo254950c2006-07-26 15:59:25 +09002368static int ahci_port_start(struct ata_port *ap)
2369{
Jeff Garzikcca39742006-08-24 03:19:22 -04002370 struct device *dev = ap->host->dev;
Tejun Heo254950c2006-07-26 15:59:25 +09002371 struct ahci_port_priv *pp;
Tejun Heo254950c2006-07-26 15:59:25 +09002372 void *mem;
2373 dma_addr_t mem_dma;
Tejun Heo254950c2006-07-26 15:59:25 +09002374
Tejun Heo24dc5f32007-01-20 16:00:28 +09002375 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Tejun Heo254950c2006-07-26 15:59:25 +09002376 if (!pp)
2377 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002378
Tejun Heo24dc5f32007-01-20 16:00:28 +09002379 mem = dmam_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma,
2380 GFP_KERNEL);
2381 if (!mem)
Tejun Heo254950c2006-07-26 15:59:25 +09002382 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002383 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
2384
2385 /*
2386 * First item in chunk of DMA memory: 32-slot command table,
2387 * 32 bytes each in size
2388 */
2389 pp->cmd_slot = mem;
2390 pp->cmd_slot_dma = mem_dma;
2391
2392 mem += AHCI_CMD_SLOT_SZ;
2393 mem_dma += AHCI_CMD_SLOT_SZ;
2394
2395 /*
2396 * Second item: Received-FIS area
2397 */
2398 pp->rx_fis = mem;
2399 pp->rx_fis_dma = mem_dma;
2400
2401 mem += AHCI_RX_FIS_SZ;
2402 mem_dma += AHCI_RX_FIS_SZ;
2403
2404 /*
2405 * Third item: data area for storing a single command
2406 * and its scatter-gather table
2407 */
2408 pp->cmd_tbl = mem;
2409 pp->cmd_tbl_dma = mem_dma;
2410
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002411 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002412 * Save off initial list of interrupts to be enabled.
2413 * This could be changed later
2414 */
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002415 pp->intr_mask = DEF_PORT_IRQ;
2416
Tejun Heo254950c2006-07-26 15:59:25 +09002417 ap->private_data = pp;
2418
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002419 /* engage engines, captain */
2420 return ahci_port_resume(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09002421}
2422
2423static void ahci_port_stop(struct ata_port *ap)
2424{
Tejun Heo0be0aa92006-07-26 15:59:26 +09002425 const char *emsg = NULL;
2426 int rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002427
Tejun Heo0be0aa92006-07-26 15:59:26 +09002428 /* de-initialize port */
Tejun Heo4447d352007-04-17 23:44:08 +09002429 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo0be0aa92006-07-26 15:59:26 +09002430 if (rc)
2431 ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
Tejun Heo254950c2006-07-26 15:59:25 +09002432}
2433
Tejun Heo4447d352007-04-17 23:44:08 +09002434static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 if (using_dac &&
Yang Hongyang6a355282009-04-06 19:01:13 -07002439 !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
2440 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if (rc) {
Yang Hongyang284901a2009-04-06 19:01:15 -07002442 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002444 dev_printk(KERN_ERR, &pdev->dev,
2445 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 return rc;
2447 }
2448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07002450 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002452 dev_printk(KERN_ERR, &pdev->dev,
2453 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 return rc;
2455 }
Yang Hongyang284901a2009-04-06 19:01:15 -07002456 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002458 dev_printk(KERN_ERR, &pdev->dev,
2459 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 return rc;
2461 }
2462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return 0;
2464}
2465
Tejun Heo4447d352007-04-17 23:44:08 +09002466static void ahci_print_info(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467{
Tejun Heo4447d352007-04-17 23:44:08 +09002468 struct ahci_host_priv *hpriv = host->private_data;
2469 struct pci_dev *pdev = to_pci_dev(host->dev);
2470 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 u32 vers, cap, impl, speed;
2472 const char *speed_s;
2473 u16 cc;
2474 const char *scc_s;
2475
2476 vers = readl(mmio + HOST_VERSION);
2477 cap = hpriv->cap;
2478 impl = hpriv->port_map;
2479
2480 speed = (cap >> 20) & 0xf;
2481 if (speed == 1)
2482 speed_s = "1.5";
2483 else if (speed == 2)
2484 speed_s = "3";
Shane Huang8522ee22008-12-30 11:00:37 +08002485 else if (speed == 3)
2486 speed_s = "6";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 else
2488 speed_s = "?";
2489
2490 pci_read_config_word(pdev, 0x0a, &cc);
Conke Huc9f89472007-01-09 05:32:51 -05002491 if (cc == PCI_CLASS_STORAGE_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 scc_s = "IDE";
Conke Huc9f89472007-01-09 05:32:51 -05002493 else if (cc == PCI_CLASS_STORAGE_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 scc_s = "SATA";
Conke Huc9f89472007-01-09 05:32:51 -05002495 else if (cc == PCI_CLASS_STORAGE_RAID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 scc_s = "RAID";
2497 else
2498 scc_s = "unknown";
2499
Jeff Garzika9524a72005-10-30 14:39:11 -05002500 dev_printk(KERN_INFO, &pdev->dev,
2501 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002503 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002505 (vers >> 24) & 0xff,
2506 (vers >> 16) & 0xff,
2507 (vers >> 8) & 0xff,
2508 vers & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 ((cap >> 8) & 0x1f) + 1,
2511 (cap & 0x1f) + 1,
2512 speed_s,
2513 impl,
2514 scc_s);
2515
Jeff Garzika9524a72005-10-30 14:39:11 -05002516 dev_printk(KERN_INFO, &pdev->dev,
2517 "flags: "
Tejun Heo203ef6c2007-07-16 14:29:40 +09002518 "%s%s%s%s%s%s%s"
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002519 "%s%s%s%s%s%s%s"
2520 "%s\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002521 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
2523 cap & (1 << 31) ? "64bit " : "",
2524 cap & (1 << 30) ? "ncq " : "",
Tejun Heo203ef6c2007-07-16 14:29:40 +09002525 cap & (1 << 29) ? "sntf " : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 cap & (1 << 28) ? "ilck " : "",
2527 cap & (1 << 27) ? "stag " : "",
2528 cap & (1 << 26) ? "pm " : "",
2529 cap & (1 << 25) ? "led " : "",
2530
2531 cap & (1 << 24) ? "clo " : "",
2532 cap & (1 << 19) ? "nz " : "",
2533 cap & (1 << 18) ? "only " : "",
2534 cap & (1 << 17) ? "pmp " : "",
2535 cap & (1 << 15) ? "pio " : "",
2536 cap & (1 << 14) ? "slum " : "",
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002537 cap & (1 << 13) ? "part " : "",
2538 cap & (1 << 6) ? "ems ": ""
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 );
2540}
2541
Tejun Heoedc93052007-10-25 14:59:16 +09002542/* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2543 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2544 * support PMP and the 4726 either directly exports the device
2545 * attached to the first downstream port or acts as a hardware storage
2546 * controller and emulate a single ATA device (can be RAID 0/1 or some
2547 * other configuration).
2548 *
2549 * When there's no device attached to the first downstream port of the
2550 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2551 * configure the 4726. However, ATA emulation of the device is very
2552 * lame. It doesn't send signature D2H Reg FIS after the initial
2553 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2554 *
2555 * The following function works around the problem by always using
2556 * hardreset on the port and not depending on receiving signature FIS
2557 * afterward. If signature FIS isn't received soon, ATA class is
2558 * assumed without follow-up softreset.
2559 */
2560static void ahci_p5wdh_workaround(struct ata_host *host)
2561{
2562 static struct dmi_system_id sysids[] = {
2563 {
2564 .ident = "P5W DH Deluxe",
2565 .matches = {
2566 DMI_MATCH(DMI_SYS_VENDOR,
2567 "ASUSTEK COMPUTER INC"),
2568 DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
2569 },
2570 },
2571 { }
2572 };
2573 struct pci_dev *pdev = to_pci_dev(host->dev);
2574
2575 if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) &&
2576 dmi_check_system(sysids)) {
2577 struct ata_port *ap = host->ports[1];
2578
2579 dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH "
2580 "Deluxe on-board SIMG4726 workaround\n");
2581
2582 ap->ops = &ahci_p5wdh_ops;
2583 ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA;
2584 }
2585}
2586
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002587static bool ahci_broken_system_poweroff(struct pci_dev *pdev)
2588{
2589 static const struct dmi_system_id broken_systems[] = {
2590 {
2591 .ident = "HP Compaq nx6310",
2592 .matches = {
2593 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2594 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6310"),
2595 },
2596 /* PCI slot number of the controller */
2597 .driver_data = (void *)0x1FUL,
2598 },
Maciej Ruteckid2f9c062009-03-20 00:06:46 +01002599 {
2600 .ident = "HP Compaq 6720s",
2601 .matches = {
2602 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2603 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6720s"),
2604 },
2605 /* PCI slot number of the controller */
2606 .driver_data = (void *)0x1FUL,
2607 },
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002608
2609 { } /* terminate list */
2610 };
2611 const struct dmi_system_id *dmi = dmi_first_match(broken_systems);
2612
2613 if (dmi) {
2614 unsigned long slot = (unsigned long)dmi->driver_data;
2615 /* apply the quirk only to on-board controllers */
2616 return slot == PCI_SLOT(pdev->devfn);
2617 }
2618
2619 return false;
2620}
2621
Tejun Heo9b10ae82009-05-30 20:50:12 +09002622static bool ahci_broken_suspend(struct pci_dev *pdev)
2623{
2624 static const struct dmi_system_id sysids[] = {
2625 /*
2626 * On HP dv[4-6] and HDX18 with earlier BIOSen, link
2627 * to the harddisk doesn't become online after
2628 * resuming from STR. Warn and fail suspend.
2629 */
2630 {
2631 .ident = "dv4",
2632 .matches = {
2633 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2634 DMI_MATCH(DMI_PRODUCT_NAME,
2635 "HP Pavilion dv4 Notebook PC"),
2636 },
2637 .driver_data = "F.30", /* cutoff BIOS version */
2638 },
2639 {
2640 .ident = "dv5",
2641 .matches = {
2642 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2643 DMI_MATCH(DMI_PRODUCT_NAME,
2644 "HP Pavilion dv5 Notebook PC"),
2645 },
2646 .driver_data = "F.16", /* cutoff BIOS version */
2647 },
2648 {
2649 .ident = "dv6",
2650 .matches = {
2651 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2652 DMI_MATCH(DMI_PRODUCT_NAME,
2653 "HP Pavilion dv6 Notebook PC"),
2654 },
2655 .driver_data = "F.21", /* cutoff BIOS version */
2656 },
2657 {
2658 .ident = "HDX18",
2659 .matches = {
2660 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
2661 DMI_MATCH(DMI_PRODUCT_NAME,
2662 "HP HDX18 Notebook PC"),
2663 },
2664 .driver_data = "F.23", /* cutoff BIOS version */
2665 },
2666 { } /* terminate list */
2667 };
2668 const struct dmi_system_id *dmi = dmi_first_match(sysids);
2669 const char *ver;
2670
2671 if (!dmi || pdev->bus->number || pdev->devfn != PCI_DEVFN(0x1f, 2))
2672 return false;
2673
2674 ver = dmi_get_system_info(DMI_BIOS_VERSION);
2675
2676 return !ver || strcmp(ver, dmi->driver_data) < 0;
2677}
2678
Tejun Heo24dc5f32007-01-20 16:00:28 +09002679static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
2681 static int printed_version;
Tejun Heoe297d992008-06-10 00:13:04 +09002682 unsigned int board_id = ent->driver_data;
2683 struct ata_port_info pi = ahci_port_info[board_id];
Tejun Heo4447d352007-04-17 23:44:08 +09002684 const struct ata_port_info *ppi[] = { &pi, NULL };
Tejun Heo24dc5f32007-01-20 16:00:28 +09002685 struct device *dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 struct ahci_host_priv *hpriv;
Tejun Heo4447d352007-04-17 23:44:08 +09002687 struct ata_host *host;
Tejun Heo837f5f82008-02-06 15:13:51 +09002688 int n_ports, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
2690 VPRINTK("ENTER\n");
2691
Tejun Heo12fad3f2006-05-15 21:03:55 +09002692 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
2693
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05002695 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Alan Cox5b66c822008-09-03 14:48:34 +01002697 /* The AHCI driver can only drive the SATA ports, the PATA driver
2698 can drive them all so if both drivers are selected make sure
2699 AHCI stays out of the way */
2700 if (pdev->vendor == PCI_VENDOR_ID_MARVELL && !marvell_enable)
2701 return -ENODEV;
2702
Tejun Heo4447d352007-04-17 23:44:08 +09002703 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09002704 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 if (rc)
2706 return rc;
2707
Tejun Heodea55132008-03-11 19:52:31 +09002708 /* AHCI controllers often implement SFF compatible interface.
2709 * Grab all PCI BARs just in case.
2710 */
2711 rc = pcim_iomap_regions_request_all(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002712 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002713 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002714 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002715 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Tejun Heoc4f77922007-12-06 15:09:43 +09002717 if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
2718 (pdev->device == 0x2652 || pdev->device == 0x2653)) {
2719 u8 map;
2720
2721 /* ICH6s share the same PCI ID for both piix and ahci
2722 * modes. Enabling ahci mode while MAP indicates
2723 * combined mode is a bad idea. Yield to ata_piix.
2724 */
2725 pci_read_config_byte(pdev, ICH_MAP, &map);
2726 if (map & 0x3) {
2727 dev_printk(KERN_INFO, &pdev->dev, "controller is in "
2728 "combined mode, can't enable AHCI mode\n");
2729 return -ENODEV;
2730 }
2731 }
2732
Tejun Heo24dc5f32007-01-20 16:00:28 +09002733 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
2734 if (!hpriv)
2735 return -ENOMEM;
Tejun Heo417a1a62007-09-23 13:19:55 +09002736 hpriv->flags |= (unsigned long)pi.private_data;
2737
Tejun Heoe297d992008-06-10 00:13:04 +09002738 /* MCP65 revision A1 and A2 can't do MSI */
2739 if (board_id == board_ahci_mcp65 &&
2740 (pdev->revision == 0xa1 || pdev->revision == 0xa2))
2741 hpriv->flags |= AHCI_HFLAG_NO_MSI;
2742
Shane Huange427fe02008-12-30 10:53:41 +08002743 /* SB800 does NOT need the workaround to ignore SERR_INTERNAL */
2744 if (board_id == board_ahci_sb700 && pdev->revision >= 0x40)
2745 hpriv->flags &= ~AHCI_HFLAG_IGN_SERR_INTERNAL;
2746
Tejun Heoa5bfc472009-01-23 11:31:39 +09002747 if (!(hpriv->flags & AHCI_HFLAG_NO_MSI))
2748 pci_enable_msi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
Tejun Heo4447d352007-04-17 23:44:08 +09002750 /* save initial config */
Tejun Heo417a1a62007-09-23 13:19:55 +09002751 ahci_save_initial_config(pdev, hpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
Tejun Heo4447d352007-04-17 23:44:08 +09002753 /* prepare host */
Tejun Heo274c1fd2007-07-16 14:29:40 +09002754 if (hpriv->cap & HOST_CAP_NCQ)
Tejun Heo4447d352007-04-17 23:44:08 +09002755 pi.flags |= ATA_FLAG_NCQ;
2756
Tejun Heo7d50b602007-09-23 13:19:54 +09002757 if (hpriv->cap & HOST_CAP_PMP)
2758 pi.flags |= ATA_FLAG_PMP;
2759
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002760 if (ahci_em_messages && (hpriv->cap & HOST_CAP_EMS)) {
2761 u8 messages;
2762 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
2763 u32 em_loc = readl(mmio + HOST_EM_LOC);
2764 u32 em_ctl = readl(mmio + HOST_EM_CTL);
2765
David Milburn87943ac2008-10-13 14:38:36 -05002766 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002767
2768 /* we only support LED message type right now */
2769 if ((messages & 0x01) && (ahci_em_messages == 1)) {
2770 /* store em_loc */
2771 hpriv->em_loc = ((em_loc >> 16) * 4);
2772 pi.flags |= ATA_FLAG_EM;
2773 if (!(em_ctl & EM_CTL_ALHD))
2774 pi.flags |= ATA_FLAG_SW_ACTIVITY;
2775 }
2776 }
2777
Rafael J. Wysocki1fd68432009-01-19 20:57:36 +01002778 if (ahci_broken_system_poweroff(pdev)) {
2779 pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN;
2780 dev_info(&pdev->dev,
2781 "quirky BIOS, skipping spindown on poweroff\n");
2782 }
2783
Tejun Heo9b10ae82009-05-30 20:50:12 +09002784 if (ahci_broken_suspend(pdev)) {
2785 hpriv->flags |= AHCI_HFLAG_NO_SUSPEND;
2786 dev_printk(KERN_WARNING, &pdev->dev,
2787 "BIOS update required for suspend/resume\n");
2788 }
2789
Tejun Heo837f5f82008-02-06 15:13:51 +09002790 /* CAP.NP sometimes indicate the index of the last enabled
2791 * port, at other times, that of the last possible port, so
2792 * determining the maximum port number requires looking at
2793 * both CAP.NP and port_map.
2794 */
2795 n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));
2796
2797 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
Tejun Heo4447d352007-04-17 23:44:08 +09002798 if (!host)
2799 return -ENOMEM;
2800 host->iomap = pcim_iomap_table(pdev);
2801 host->private_data = hpriv;
2802
Arjan van de Venf3d7f232009-01-26 02:05:44 -08002803 if (!(hpriv->cap & HOST_CAP_SSS) || ahci_ignore_sss)
Arjan van de Ven886ad092009-01-09 15:54:07 -08002804 host->flags |= ATA_HOST_PARALLEL_SCAN;
Arjan van de Venf3d7f232009-01-26 02:05:44 -08002805 else
2806 printk(KERN_INFO "ahci: SSS flag set, parallel bus scan disabled\n");
Arjan van de Ven886ad092009-01-09 15:54:07 -08002807
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002808 if (pi.flags & ATA_FLAG_EM)
2809 ahci_reset_em(host);
2810
Tejun Heo4447d352007-04-17 23:44:08 +09002811 for (i = 0; i < host->n_ports; i++) {
Jeff Garzikdab632e2007-05-28 08:33:01 -04002812 struct ata_port *ap = host->ports[i];
Tejun Heo4447d352007-04-17 23:44:08 +09002813
Tejun Heocbcdd872007-08-18 13:14:55 +09002814 ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar");
2815 ata_port_pbar_desc(ap, AHCI_PCI_BAR,
2816 0x100 + ap->port_no * 0x80, "port");
2817
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002818 /* set initial link pm policy */
2819 ap->pm_policy = NOT_AVAILABLE;
2820
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002821 /* set enclosure management message type */
2822 if (ap->flags & ATA_FLAG_EM)
2823 ap->em_message_type = ahci_em_messages;
2824
2825
Jeff Garzikdab632e2007-05-28 08:33:01 -04002826 /* disabled/not-implemented port */
Tejun Heo350756f2008-04-07 22:47:21 +09002827 if (!(hpriv->port_map & (1 << i)))
Jeff Garzikdab632e2007-05-28 08:33:01 -04002828 ap->ops = &ata_dummy_port_ops;
Tejun Heo4447d352007-04-17 23:44:08 +09002829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
Tejun Heoedc93052007-10-25 14:59:16 +09002831 /* apply workaround for ASUS P5W DH Deluxe mainboard */
2832 ahci_p5wdh_workaround(host);
2833
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09002835 rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002837 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Tejun Heo4447d352007-04-17 23:44:08 +09002839 rc = ahci_reset_controller(host);
2840 if (rc)
2841 return rc;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002842
Tejun Heo4447d352007-04-17 23:44:08 +09002843 ahci_init_controller(host);
2844 ahci_print_info(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Tejun Heo4447d352007-04-17 23:44:08 +09002846 pci_set_master(pdev);
2847 return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
2848 &ahci_sht);
Jeff Garzik907f4672005-05-12 15:03:42 -04002849}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851static int __init ahci_init(void)
2852{
Pavel Roskinb7887192006-08-10 18:13:18 +09002853 return pci_register_driver(&ahci_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854}
2855
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856static void __exit ahci_exit(void)
2857{
2858 pci_unregister_driver(&ahci_pci_driver);
2859}
2860
2861
2862MODULE_AUTHOR("Jeff Garzik");
2863MODULE_DESCRIPTION("AHCI SATA low-level driver");
2864MODULE_LICENSE("GPL");
2865MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04002866MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
2868module_init(ahci_init);
2869module_exit(ahci_exit);