blob: 4ff3f03cf97bfc1d0b8878743deb22b42a708c11 [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
Tejun Heoa22e6442008-03-10 10:25:25 +090052static int ahci_skip_host_reset;
53module_param_named(skip_host_reset, ahci_skip_host_reset, int, 0444);
54MODULE_PARM_DESC(skip_host_reset, "skip global host reset (0=don't skip, 1=skip)");
55
Kristen Carlson Accardi31556592007-10-25 01:33:26 -040056static int ahci_enable_alpm(struct ata_port *ap,
57 enum link_pm policy);
58static void ahci_disable_alpm(struct ata_port *ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -070059static ssize_t ahci_led_show(struct ata_port *ap, char *buf);
60static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
61 size_t size);
62static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
63 ssize_t size);
64#define MAX_SLOTS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66enum {
67 AHCI_PCI_BAR = 5,
Tejun Heo648a88b2006-11-09 15:08:40 +090068 AHCI_MAX_PORTS = 32,
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 AHCI_MAX_SG = 168, /* hardware max is 64K */
70 AHCI_DMA_BOUNDARY = 0xffffffff,
Tejun Heo12fad3f2006-05-15 21:03:55 +090071 AHCI_MAX_CMDS = 32,
Tejun Heodd410ff2006-05-15 21:03:50 +090072 AHCI_CMD_SZ = 32,
Tejun Heo12fad3f2006-05-15 21:03:55 +090073 AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 AHCI_RX_FIS_SZ = 256,
Jeff Garzika0ea7322005-06-04 01:13:15 -040075 AHCI_CMD_TBL_CDB = 0x40,
Tejun Heodd410ff2006-05-15 21:03:50 +090076 AHCI_CMD_TBL_HDR_SZ = 0x80,
77 AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16),
78 AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS,
79 AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ +
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 AHCI_RX_FIS_SZ,
81 AHCI_IRQ_ON_SG = (1 << 31),
82 AHCI_CMD_ATAPI = (1 << 5),
83 AHCI_CMD_WRITE = (1 << 6),
Tejun Heo4b10e552006-03-12 11:25:27 +090084 AHCI_CMD_PREFETCH = (1 << 7),
Tejun Heo22b49982006-01-23 21:38:44 +090085 AHCI_CMD_RESET = (1 << 8),
86 AHCI_CMD_CLR_BUSY = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
Tejun Heo0291f952007-01-25 19:16:28 +090089 RX_FIS_SDB = 0x58, /* offset of SDB FIS data */
Tejun Heo78cd52d2006-05-15 20:58:29 +090090 RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 board_ahci = 0,
Tejun Heo7a234af2007-09-03 12:44:57 +090093 board_ahci_vt8251 = 1,
94 board_ahci_ign_iferr = 2,
95 board_ahci_sb600 = 3,
96 board_ahci_mv = 4,
Shane Huange39fc8c2008-02-22 05:00:31 -080097 board_ahci_sb700 = 5,
Tejun Heoe297d992008-06-10 00:13:04 +090098 board_ahci_mcp65 = 6,
Tejun Heo9a3b1032008-06-18 20:56:58 -040099 board_ahci_nopmp = 7,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 /* global controller registers */
102 HOST_CAP = 0x00, /* host capabilities */
103 HOST_CTL = 0x04, /* global host control */
104 HOST_IRQ_STAT = 0x08, /* interrupt status */
105 HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
106 HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700107 HOST_EM_LOC = 0x1c, /* Enclosure Management location */
108 HOST_EM_CTL = 0x20, /* Enclosure Management Control */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 /* HOST_CTL bits */
111 HOST_RESET = (1 << 0), /* reset controller; self-clear */
112 HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
113 HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
114
115 /* HOST_CAP bits */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700116 HOST_CAP_EMS = (1 << 6), /* Enclosure Management support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900117 HOST_CAP_SSC = (1 << 14), /* Slumber capable */
Tejun Heo7d50b602007-09-23 13:19:54 +0900118 HOST_CAP_PMP = (1 << 17), /* Port Multiplier support */
Tejun Heo22b49982006-01-23 21:38:44 +0900119 HOST_CAP_CLO = (1 << 24), /* Command List Override support */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400120 HOST_CAP_ALPM = (1 << 26), /* Aggressive Link PM support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900121 HOST_CAP_SSS = (1 << 27), /* Staggered Spin-up */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900122 HOST_CAP_SNTF = (1 << 29), /* SNotification register */
Tejun Heo979db802006-05-15 21:03:52 +0900123 HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */
Tejun Heodd410ff2006-05-15 21:03:50 +0900124 HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* registers for each SATA port */
127 PORT_LST_ADDR = 0x00, /* command list DMA addr */
128 PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
129 PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
130 PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
131 PORT_IRQ_STAT = 0x10, /* interrupt status */
132 PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
133 PORT_CMD = 0x18, /* port command */
134 PORT_TFDATA = 0x20, /* taskfile data */
135 PORT_SIG = 0x24, /* device TF signature */
136 PORT_CMD_ISSUE = 0x38, /* command issue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
138 PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
139 PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
140 PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900141 PORT_SCR_NTF = 0x3c, /* SATA phy register: SNotification */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 /* PORT_IRQ_{STAT,MASK} bits */
144 PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
145 PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
146 PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
147 PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
148 PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
149 PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
150 PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
151 PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
152
153 PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
154 PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
155 PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
156 PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
157 PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
158 PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
159 PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
160 PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
161 PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
162
Tejun Heo78cd52d2006-05-15 20:58:29 +0900163 PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR |
164 PORT_IRQ_IF_ERR |
165 PORT_IRQ_CONNECT |
Tejun Heo42969712006-05-31 18:28:18 +0900166 PORT_IRQ_PHYRDY |
Tejun Heo7d50b602007-09-23 13:19:54 +0900167 PORT_IRQ_UNK_FIS |
168 PORT_IRQ_BAD_PMP,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900169 PORT_IRQ_ERROR = PORT_IRQ_FREEZE |
170 PORT_IRQ_TF_ERR |
171 PORT_IRQ_HBUS_DATA_ERR,
172 DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
173 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS |
174 PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 /* PORT_CMD bits */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400177 PORT_CMD_ASP = (1 << 27), /* Aggressive Slumber/Partial */
178 PORT_CMD_ALPE = (1 << 26), /* Aggressive Link PM enable */
Jeff Garzik02eaa662005-11-12 01:32:19 -0500179 PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
Tejun Heo7d50b602007-09-23 13:19:54 +0900180 PORT_CMD_PMP = (1 << 17), /* PMP attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
182 PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
183 PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
Tejun Heo22b49982006-01-23 21:38:44 +0900184 PORT_CMD_CLO = (1 << 3), /* Command list override */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
186 PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
187 PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
188
Tejun Heo0be0aa92006-07-26 15:59:26 +0900189 PORT_CMD_ICC_MASK = (0xf << 28), /* i/f ICC state mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
191 PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
192 PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
Jeff Garzik4b0060f2005-06-04 00:50:22 -0400193
Tejun Heo417a1a62007-09-23 13:19:55 +0900194 /* hpriv->flags bits */
195 AHCI_HFLAG_NO_NCQ = (1 << 0),
196 AHCI_HFLAG_IGN_IRQ_IF_ERR = (1 << 1), /* ignore IRQ_IF_ERR */
197 AHCI_HFLAG_IGN_SERR_INTERNAL = (1 << 2), /* ignore SERR_INTERNAL */
198 AHCI_HFLAG_32BIT_ONLY = (1 << 3), /* force 32bit */
199 AHCI_HFLAG_MV_PATA = (1 << 4), /* PATA port */
200 AHCI_HFLAG_NO_MSI = (1 << 5), /* no PCI MSI */
Tejun Heo6949b912007-09-23 13:19:55 +0900201 AHCI_HFLAG_NO_PMP = (1 << 6), /* no PMP */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400202 AHCI_HFLAG_NO_HOTPLUG = (1 << 7), /* ignore PxSERR.DIAG.N */
Jeff Garzika8785392008-02-28 15:43:48 -0500203 AHCI_HFLAG_SECT255 = (1 << 8), /* max 255 sectors */
Tejun Heoe297d992008-06-10 00:13:04 +0900204 AHCI_HFLAG_YES_NCQ = (1 << 9), /* force NCQ cap on */
Tejun Heo417a1a62007-09-23 13:19:55 +0900205
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200206 /* ap->flags bits */
Tejun Heo1188c0d2007-04-23 02:41:05 +0900207
208 AHCI_FLAG_COMMON = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
209 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400210 ATA_FLAG_ACPI_SATA | ATA_FLAG_AN |
211 ATA_FLAG_IPM,
Tejun Heoc4f77922007-12-06 15:09:43 +0900212
213 ICH_MAP = 0x90, /* ICH MAP register */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700214
215 /* em_ctl bits */
216 EM_CTL_RST = (1 << 9), /* Reset */
217 EM_CTL_TM = (1 << 8), /* Transmit Message */
218 EM_CTL_ALHD = (1 << 26), /* Activity LED */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
221struct ahci_cmd_hdr {
Al Viro4ca4e432007-12-30 09:32:22 +0000222 __le32 opts;
223 __le32 status;
224 __le32 tbl_addr;
225 __le32 tbl_addr_hi;
226 __le32 reserved[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227};
228
229struct ahci_sg {
Al Viro4ca4e432007-12-30 09:32:22 +0000230 __le32 addr;
231 __le32 addr_hi;
232 __le32 reserved;
233 __le32 flags_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700236struct ahci_em_priv {
237 enum sw_activity blink_policy;
238 struct timer_list timer;
239 unsigned long saved_activity;
240 unsigned long activity;
241 unsigned long led_state;
242};
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244struct ahci_host_priv {
Tejun Heo417a1a62007-09-23 13:19:55 +0900245 unsigned int flags; /* AHCI_HFLAG_* */
Tejun Heod447df12007-03-18 22:15:33 +0900246 u32 cap; /* cap to use */
247 u32 port_map; /* port map to use */
248 u32 saved_cap; /* saved initial cap */
249 u32 saved_port_map; /* saved initial port_map */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700250 u32 em_loc; /* enclosure management location */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251};
252
253struct ahci_port_priv {
Tejun Heo7d50b602007-09-23 13:19:54 +0900254 struct ata_link *active_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 struct ahci_cmd_hdr *cmd_slot;
256 dma_addr_t cmd_slot_dma;
257 void *cmd_tbl;
258 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 void *rx_fis;
260 dma_addr_t rx_fis_dma;
Tejun Heo0291f952007-01-25 19:16:28 +0900261 /* for NCQ spurious interrupt analysis */
Tejun Heo0291f952007-01-25 19:16:28 +0900262 unsigned int ncq_saw_d2h:1;
263 unsigned int ncq_saw_dmas:1;
Tejun Heoafb2d552007-02-27 13:24:19 +0900264 unsigned int ncq_saw_sdb:1;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -0700265 u32 intr_mask; /* interrupts to enable */
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700266 struct ahci_em_priv em_priv[MAX_SLOTS];/* enclosure management info
267 * per PM slot */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268};
269
Tejun Heoda3dbb12007-07-16 14:29:40 +0900270static int ahci_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val);
271static int ahci_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400272static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900273static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900274static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static int ahci_port_start(struct ata_port *ap);
276static void ahci_port_stop(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277static void ahci_qc_prep(struct ata_queued_cmd *qc);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900278static void ahci_freeze(struct ata_port *ap);
279static void ahci_thaw(struct ata_port *ap);
Tejun Heo7d50b602007-09-23 13:19:54 +0900280static void ahci_pmp_attach(struct ata_port *ap);
281static void ahci_pmp_detach(struct ata_port *ap);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900282static int ahci_softreset(struct ata_link *link, unsigned int *class,
283 unsigned long deadline);
Shane Huangbd172432008-06-10 15:52:04 +0800284static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
285 unsigned long deadline);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900286static int ahci_hardreset(struct ata_link *link, unsigned int *class,
287 unsigned long deadline);
288static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
289 unsigned long deadline);
290static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
291 unsigned long deadline);
292static void ahci_postreset(struct ata_link *link, unsigned int *class);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900293static void ahci_error_handler(struct ata_port *ap);
294static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -0400295static int ahci_port_resume(struct ata_port *ap);
Jeff Garzika8785392008-02-28 15:43:48 -0500296static void ahci_dev_config(struct ata_device *dev);
Jeff Garzikdab632e2007-05-28 08:33:01 -0400297static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl);
298static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
299 u32 opts);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900300#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900301static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
Tejun Heoc1332872006-07-26 15:59:26 +0900302static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
303static int ahci_pci_device_resume(struct pci_dev *pdev);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900304#endif
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700305static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
306static ssize_t ahci_activity_store(struct ata_device *dev,
307 enum sw_activity val);
308static void ahci_init_sw_activity(struct ata_link *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Tony Jonesee959b02008-02-22 00:13:36 +0100310static struct device_attribute *ahci_shost_attrs[] = {
311 &dev_attr_link_power_management_policy,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700312 &dev_attr_em_message_type,
313 &dev_attr_em_message,
314 NULL
315};
316
317static struct device_attribute *ahci_sdev_attrs[] = {
318 &dev_attr_sw_activity,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400319 NULL
320};
321
Jeff Garzik193515d2005-11-07 00:59:37 -0500322static struct scsi_host_template ahci_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900323 ATA_NCQ_SHT(DRV_NAME),
Tejun Heo12fad3f2006-05-15 21:03:55 +0900324 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 .dma_boundary = AHCI_DMA_BOUNDARY,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400327 .shost_attrs = ahci_shost_attrs,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700328 .sdev_attrs = ahci_sdev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329};
330
Tejun Heo029cfd62008-03-25 12:22:49 +0900331static struct ata_port_operations ahci_ops = {
332 .inherits = &sata_pmp_port_ops,
333
Tejun Heo7d50b602007-09-23 13:19:54 +0900334 .qc_defer = sata_pmp_qc_defer_cmd_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 .qc_prep = ahci_qc_prep,
336 .qc_issue = ahci_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900337 .qc_fill_rtf = ahci_qc_fill_rtf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Tejun Heo78cd52d2006-05-15 20:58:29 +0900339 .freeze = ahci_freeze,
340 .thaw = ahci_thaw,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900341 .softreset = ahci_softreset,
342 .hardreset = ahci_hardreset,
343 .postreset = ahci_postreset,
Tejun Heo071f44b2008-04-07 22:47:22 +0900344 .pmp_softreset = ahci_softreset,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900345 .error_handler = ahci_error_handler,
346 .post_internal_cmd = ahci_post_internal_cmd,
Tejun Heo029cfd62008-03-25 12:22:49 +0900347 .dev_config = ahci_dev_config,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900348
Tejun Heo029cfd62008-03-25 12:22:49 +0900349 .scr_read = ahci_scr_read,
350 .scr_write = ahci_scr_write,
Tejun Heo7d50b602007-09-23 13:19:54 +0900351 .pmp_attach = ahci_pmp_attach,
352 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900353
Tejun Heo029cfd62008-03-25 12:22:49 +0900354 .enable_pm = ahci_enable_alpm,
355 .disable_pm = ahci_disable_alpm,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700356 .em_show = ahci_led_show,
357 .em_store = ahci_led_store,
358 .sw_activity_show = ahci_activity_show,
359 .sw_activity_store = ahci_activity_store,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900360#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900361 .port_suspend = ahci_port_suspend,
362 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900363#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 .port_start = ahci_port_start,
365 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366};
367
Tejun Heo029cfd62008-03-25 12:22:49 +0900368static struct ata_port_operations ahci_vt8251_ops = {
369 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900370 .hardreset = ahci_vt8251_hardreset,
Tejun Heoad616ff2006-11-01 18:00:24 +0900371};
372
Tejun Heo029cfd62008-03-25 12:22:49 +0900373static struct ata_port_operations ahci_p5wdh_ops = {
374 .inherits = &ahci_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900375 .hardreset = ahci_p5wdh_hardreset,
Tejun Heoedc93052007-10-25 14:59:16 +0900376};
377
Shane Huangbd172432008-06-10 15:52:04 +0800378static struct ata_port_operations ahci_sb600_ops = {
379 .inherits = &ahci_ops,
380 .softreset = ahci_sb600_softreset,
381 .pmp_softreset = ahci_sb600_softreset,
382};
383
Tejun Heo417a1a62007-09-23 13:19:55 +0900384#define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
385
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100386static const struct ata_port_info ahci_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* board_ahci */
388 {
Tejun Heo1188c0d2007-04-23 02:41:05 +0900389 .flags = AHCI_FLAG_COMMON,
Brett Russ7da79312005-09-01 21:53:34 -0400390 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400391 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 .port_ops = &ahci_ops,
393 },
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200394 /* board_ahci_vt8251 */
395 {
Tejun Heo6949b912007-09-23 13:19:55 +0900396 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900397 .flags = AHCI_FLAG_COMMON,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200398 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400399 .udma_mask = ATA_UDMA6,
Tejun Heoad616ff2006-11-01 18:00:24 +0900400 .port_ops = &ahci_vt8251_ops,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200401 },
Tejun Heo41669552006-11-29 11:33:14 +0900402 /* board_ahci_ign_iferr */
403 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900404 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR),
405 .flags = AHCI_FLAG_COMMON,
Tejun Heo41669552006-11-29 11:33:14 +0900406 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400407 .udma_mask = ATA_UDMA6,
Tejun Heo41669552006-11-29 11:33:14 +0900408 .port_ops = &ahci_ops,
409 },
Conke Hu55a61602007-03-27 18:33:05 +0800410 /* board_ahci_sb600 */
411 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900412 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
Tejun Heo22b5e7a2008-04-29 16:09:22 +0900413 AHCI_HFLAG_32BIT_ONLY | AHCI_HFLAG_NO_MSI |
Shane Huangbd172432008-06-10 15:52:04 +0800414 AHCI_HFLAG_SECT255),
Tejun Heo417a1a62007-09-23 13:19:55 +0900415 .flags = AHCI_FLAG_COMMON,
Conke Hu55a61602007-03-27 18:33:05 +0800416 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400417 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800418 .port_ops = &ahci_sb600_ops,
Conke Hu55a61602007-03-27 18:33:05 +0800419 },
Jeff Garzikcd70c262007-07-08 02:29:42 -0400420 /* board_ahci_mv */
421 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900422 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI |
423 AHCI_HFLAG_MV_PATA),
Jeff Garzikcd70c262007-07-08 02:29:42 -0400424 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo417a1a62007-09-23 13:19:55 +0900425 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
Jeff Garzikcd70c262007-07-08 02:29:42 -0400426 .pio_mask = 0x1f, /* pio0-4 */
427 .udma_mask = ATA_UDMA6,
428 .port_ops = &ahci_ops,
429 },
Shane Huange39fc8c2008-02-22 05:00:31 -0800430 /* board_ahci_sb700 */
431 {
Shane Huangbd172432008-06-10 15:52:04 +0800432 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL),
Shane Huange39fc8c2008-02-22 05:00:31 -0800433 .flags = AHCI_FLAG_COMMON,
Shane Huange39fc8c2008-02-22 05:00:31 -0800434 .pio_mask = 0x1f, /* pio0-4 */
435 .udma_mask = ATA_UDMA6,
Shane Huangbd172432008-06-10 15:52:04 +0800436 .port_ops = &ahci_sb600_ops,
Shane Huange39fc8c2008-02-22 05:00:31 -0800437 },
Tejun Heoe297d992008-06-10 00:13:04 +0900438 /* board_ahci_mcp65 */
439 {
440 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ),
441 .flags = AHCI_FLAG_COMMON,
442 .pio_mask = 0x1f, /* pio0-4 */
443 .udma_mask = ATA_UDMA6,
444 .port_ops = &ahci_ops,
445 },
Tejun Heo9a3b1032008-06-18 20:56:58 -0400446 /* board_ahci_nopmp */
447 {
448 AHCI_HFLAGS (AHCI_HFLAG_NO_PMP),
449 .flags = AHCI_FLAG_COMMON,
450 .pio_mask = 0x1f, /* pio0-4 */
451 .udma_mask = ATA_UDMA6,
452 .port_ops = &ahci_ops,
453 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454};
455
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500456static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400457 /* Intel */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400458 { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
459 { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
460 { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
461 { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
462 { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
Tejun Heo82490c02007-01-23 15:13:39 +0900463 { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400464 { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
465 { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
466 { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
467 { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
Tejun Heo7a234af2007-09-03 12:44:57 +0900468 { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */
469 { PCI_VDEVICE(INTEL, 0x2822), board_ahci }, /* ICH8 */
470 { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */
471 { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */
472 { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */
473 { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */
474 { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */
475 { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */
476 { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */
477 { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */
478 { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */
479 { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */
480 { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */
481 { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */
482 { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */
483 { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */
484 { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */
Jason Gastond4155e62007-09-20 17:35:00 -0400485 { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */
486 { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800487 { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */
488 { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400489
Tejun Heoe34bb372007-02-26 20:24:03 +0900490 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
491 { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
492 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400493
494 /* ATI */
Conke Huc65ec1c2007-04-11 18:23:14 +0800495 { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800496 { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb700 }, /* ATI SB700/800 */
497 { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb700 }, /* ATI SB700/800 */
498 { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb700 }, /* ATI SB700/800 */
499 { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb700 }, /* ATI SB700/800 */
500 { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb700 }, /* ATI SB700/800 */
501 { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb700 }, /* ATI SB700/800 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400502
503 /* VIA */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400504 { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
Tejun Heobf335542007-04-11 17:27:14 +0900505 { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400506
507 /* NVIDIA */
Tejun Heoe297d992008-06-10 00:13:04 +0900508 { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci_mcp65 }, /* MCP65 */
509 { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci_mcp65 }, /* MCP65 */
510 { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci_mcp65 }, /* MCP65 */
511 { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci_mcp65 }, /* MCP65 */
512 { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci_mcp65 }, /* MCP65 */
513 { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci_mcp65 }, /* MCP65 */
514 { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci_mcp65 }, /* MCP65 */
515 { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci_mcp65 }, /* MCP65 */
Peer Chen6fbf5ba2006-12-20 14:18:00 -0500516 { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci }, /* MCP67 */
517 { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci }, /* MCP67 */
518 { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci }, /* MCP67 */
519 { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci }, /* MCP67 */
Peer Chen895663c2006-11-02 17:59:46 -0500520 { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci }, /* MCP67 */
521 { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci }, /* MCP67 */
522 { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci }, /* MCP67 */
523 { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci }, /* MCP67 */
524 { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci }, /* MCP67 */
525 { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci }, /* MCP67 */
526 { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci }, /* MCP67 */
527 { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci }, /* MCP67 */
Peer Chen0522b282007-06-07 18:05:12 +0800528 { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci }, /* MCP73 */
529 { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci }, /* MCP73 */
530 { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci }, /* MCP73 */
531 { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci }, /* MCP73 */
532 { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci }, /* MCP73 */
533 { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci }, /* MCP73 */
534 { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci }, /* MCP73 */
535 { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci }, /* MCP73 */
536 { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci }, /* MCP73 */
537 { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci }, /* MCP73 */
538 { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci }, /* MCP73 */
539 { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci }, /* MCP73 */
540 { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */
541 { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */
542 { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */
543 { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */
544 { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */
545 { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */
546 { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */
547 { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */
548 { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */
549 { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
550 { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
551 { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
peerchen6ba86952007-12-03 22:20:37 +0800552 { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */
553 { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */
554 { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */
555 { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */
Peer Chen71008192007-09-24 10:16:25 +0800556 { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */
557 { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */
558 { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */
559 { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */
560 { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */
561 { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */
562 { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */
563 { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */
peerchen70d562c2008-03-06 21:22:41 +0800564 { PCI_VDEVICE(NVIDIA, 0x0bc8), board_ahci }, /* MCP7B */
565 { PCI_VDEVICE(NVIDIA, 0x0bc9), board_ahci }, /* MCP7B */
566 { PCI_VDEVICE(NVIDIA, 0x0bca), board_ahci }, /* MCP7B */
567 { PCI_VDEVICE(NVIDIA, 0x0bcb), board_ahci }, /* MCP7B */
568 { PCI_VDEVICE(NVIDIA, 0x0bcc), board_ahci }, /* MCP7B */
569 { PCI_VDEVICE(NVIDIA, 0x0bcd), board_ahci }, /* MCP7B */
570 { PCI_VDEVICE(NVIDIA, 0x0bce), board_ahci }, /* MCP7B */
571 { PCI_VDEVICE(NVIDIA, 0x0bcf), board_ahci }, /* MCP7B */
peerchen3072c372008-05-19 14:44:57 +0800572 { PCI_VDEVICE(NVIDIA, 0x0bc4), board_ahci }, /* MCP7B */
573 { PCI_VDEVICE(NVIDIA, 0x0bc5), board_ahci }, /* MCP7B */
574 { PCI_VDEVICE(NVIDIA, 0x0bc6), board_ahci }, /* MCP7B */
575 { PCI_VDEVICE(NVIDIA, 0x0bc7), board_ahci }, /* MCP7B */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400576
Jeff Garzik95916ed2006-07-29 04:10:14 -0400577 /* SiS */
Tejun Heo9a3b1032008-06-18 20:56:58 -0400578 { PCI_VDEVICE(SI, 0x1184), board_ahci_nopmp }, /* SiS 966 */
579 { PCI_VDEVICE(SI, 0x1185), board_ahci_nopmp }, /* SiS 968 */
580 { PCI_VDEVICE(SI, 0x0186), board_ahci_nopmp }, /* SiS 968 */
Jeff Garzik95916ed2006-07-29 04:10:14 -0400581
Jeff Garzikcd70c262007-07-08 02:29:42 -0400582 /* Marvell */
583 { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100584 { PCI_VDEVICE(MARVELL, 0x6121), board_ahci_mv }, /* 6121 */
Jeff Garzikcd70c262007-07-08 02:29:42 -0400585
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500586 /* Generic, PCI class code for AHCI */
587 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Conke Huc9f89472007-01-09 05:32:51 -0500588 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 { } /* terminate list */
591};
592
593
594static struct pci_driver ahci_pci_driver = {
595 .name = DRV_NAME,
596 .id_table = ahci_pci_tbl,
597 .probe = ahci_init_one,
Tejun Heo24dc5f32007-01-20 16:00:28 +0900598 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900599#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900600 .suspend = ahci_pci_device_suspend,
601 .resume = ahci_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900602#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603};
604
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700605static int ahci_em_messages = 1;
606module_param(ahci_em_messages, int, 0444);
607/* add other LED protocol types when they become supported */
608MODULE_PARM_DESC(ahci_em_messages,
609 "Set AHCI Enclosure Management Message type (0 = disabled, 1 = LED");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Tejun Heo98fa4b62006-11-02 12:17:23 +0900611static inline int ahci_nr_ports(u32 cap)
612{
613 return (cap & 0x1f) + 1;
614}
615
Jeff Garzikdab632e2007-05-28 08:33:01 -0400616static inline void __iomem *__ahci_port_base(struct ata_host *host,
617 unsigned int port_no)
618{
619 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
620
621 return mmio + 0x100 + (port_no * 0x80);
622}
623
Tejun Heo4447d352007-04-17 23:44:08 +0900624static inline void __iomem *ahci_port_base(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Jeff Garzikdab632e2007-05-28 08:33:01 -0400626 return __ahci_port_base(ap->host, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Tejun Heob710a1f2008-01-05 23:11:57 +0900629static void ahci_enable_ahci(void __iomem *mmio)
630{
Tejun Heo15fe9822008-04-23 20:52:58 +0900631 int i;
Tejun Heob710a1f2008-01-05 23:11:57 +0900632 u32 tmp;
633
634 /* turn on AHCI_EN */
635 tmp = readl(mmio + HOST_CTL);
Tejun Heo15fe9822008-04-23 20:52:58 +0900636 if (tmp & HOST_AHCI_EN)
637 return;
638
639 /* Some controllers need AHCI_EN to be written multiple times.
640 * Try a few times before giving up.
641 */
642 for (i = 0; i < 5; i++) {
Tejun Heob710a1f2008-01-05 23:11:57 +0900643 tmp |= HOST_AHCI_EN;
644 writel(tmp, mmio + HOST_CTL);
645 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
Tejun Heo15fe9822008-04-23 20:52:58 +0900646 if (tmp & HOST_AHCI_EN)
647 return;
648 msleep(10);
Tejun Heob710a1f2008-01-05 23:11:57 +0900649 }
Tejun Heo15fe9822008-04-23 20:52:58 +0900650
651 WARN_ON(1);
Tejun Heob710a1f2008-01-05 23:11:57 +0900652}
653
Tejun Heod447df12007-03-18 22:15:33 +0900654/**
655 * ahci_save_initial_config - Save and fixup initial config values
Tejun Heo4447d352007-04-17 23:44:08 +0900656 * @pdev: target PCI device
Tejun Heo4447d352007-04-17 23:44:08 +0900657 * @hpriv: host private area to store config values
Tejun Heod447df12007-03-18 22:15:33 +0900658 *
659 * Some registers containing configuration info might be setup by
660 * BIOS and might be cleared on reset. This function saves the
661 * initial values of those registers into @hpriv such that they
662 * can be restored after controller reset.
663 *
664 * If inconsistent, config values are fixed up by this function.
665 *
666 * LOCKING:
667 * None.
668 */
Tejun Heo4447d352007-04-17 23:44:08 +0900669static void ahci_save_initial_config(struct pci_dev *pdev,
Tejun Heo4447d352007-04-17 23:44:08 +0900670 struct ahci_host_priv *hpriv)
Tejun Heod447df12007-03-18 22:15:33 +0900671{
Tejun Heo4447d352007-04-17 23:44:08 +0900672 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +0900673 u32 cap, port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900674 int i;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100675 int mv;
Tejun Heod447df12007-03-18 22:15:33 +0900676
Tejun Heob710a1f2008-01-05 23:11:57 +0900677 /* make sure AHCI mode is enabled before accessing CAP */
678 ahci_enable_ahci(mmio);
679
Tejun Heod447df12007-03-18 22:15:33 +0900680 /* Values prefixed with saved_ are written back to host after
681 * reset. Values without are used for driver operation.
682 */
683 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
684 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
685
Tejun Heo274c1fd2007-07-16 14:29:40 +0900686 /* some chips have errata preventing 64bit use */
Tejun Heo417a1a62007-09-23 13:19:55 +0900687 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Tejun Heoc7a42152007-05-18 16:23:19 +0200688 dev_printk(KERN_INFO, &pdev->dev,
689 "controller can't do 64bit DMA, forcing 32bit\n");
690 cap &= ~HOST_CAP_64;
691 }
692
Tejun Heo417a1a62007-09-23 13:19:55 +0900693 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Tejun Heo274c1fd2007-07-16 14:29:40 +0900694 dev_printk(KERN_INFO, &pdev->dev,
695 "controller can't do NCQ, turning off CAP_NCQ\n");
696 cap &= ~HOST_CAP_NCQ;
697 }
698
Tejun Heoe297d992008-06-10 00:13:04 +0900699 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
700 dev_printk(KERN_INFO, &pdev->dev,
701 "controller can do NCQ, turning on CAP_NCQ\n");
702 cap |= HOST_CAP_NCQ;
703 }
704
Roel Kluin258cd842008-03-09 21:42:40 +0100705 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Tejun Heo6949b912007-09-23 13:19:55 +0900706 dev_printk(KERN_INFO, &pdev->dev,
707 "controller can't do PMP, turning off CAP_PMP\n");
708 cap &= ~HOST_CAP_PMP;
709 }
710
Tejun Heod799e082008-06-17 12:46:30 +0900711 if (pdev->vendor == PCI_VENDOR_ID_JMICRON && pdev->device == 0x2361 &&
712 port_map != 1) {
713 dev_printk(KERN_INFO, &pdev->dev,
714 "JMB361 has only one port, port_map 0x%x -> 0x%x\n",
715 port_map, 1);
716 port_map = 1;
717 }
718
Jeff Garzikcd70c262007-07-08 02:29:42 -0400719 /*
720 * Temporary Marvell 6145 hack: PATA port presence
721 * is asserted through the standard AHCI port
722 * presence register, as bit 4 (counting from 0)
723 */
Tejun Heo417a1a62007-09-23 13:19:55 +0900724 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100725 if (pdev->device == 0x6121)
726 mv = 0x3;
727 else
728 mv = 0xf;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400729 dev_printk(KERN_ERR, &pdev->dev,
730 "MV_AHCI HACK: port_map %x -> %x\n",
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100731 port_map,
732 port_map & mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -0400733
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100734 port_map &= mv;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400735 }
736
Tejun Heo17199b12007-03-18 22:26:53 +0900737 /* cross check port_map and cap.n_ports */
Tejun Heo7a234af2007-09-03 12:44:57 +0900738 if (port_map) {
Tejun Heo837f5f82008-02-06 15:13:51 +0900739 int map_ports = 0;
Tejun Heo17199b12007-03-18 22:26:53 +0900740
Tejun Heo837f5f82008-02-06 15:13:51 +0900741 for (i = 0; i < AHCI_MAX_PORTS; i++)
742 if (port_map & (1 << i))
743 map_ports++;
Tejun Heo17199b12007-03-18 22:26:53 +0900744
Tejun Heo837f5f82008-02-06 15:13:51 +0900745 /* If PI has more ports than n_ports, whine, clear
746 * port_map and let it be generated from n_ports.
Tejun Heo17199b12007-03-18 22:26:53 +0900747 */
Tejun Heo837f5f82008-02-06 15:13:51 +0900748 if (map_ports > ahci_nr_ports(cap)) {
Tejun Heo4447d352007-04-17 23:44:08 +0900749 dev_printk(KERN_WARNING, &pdev->dev,
Tejun Heo837f5f82008-02-06 15:13:51 +0900750 "implemented port map (0x%x) contains more "
751 "ports than nr_ports (%u), using nr_ports\n",
752 port_map, ahci_nr_ports(cap));
Tejun Heo7a234af2007-09-03 12:44:57 +0900753 port_map = 0;
754 }
755 }
756
757 /* fabricate port_map from cap.nr_ports */
758 if (!port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900759 port_map = (1 << ahci_nr_ports(cap)) - 1;
Tejun Heo7a234af2007-09-03 12:44:57 +0900760 dev_printk(KERN_WARNING, &pdev->dev,
761 "forcing PORTS_IMPL to 0x%x\n", port_map);
762
763 /* write the fixed up value to the PI register */
764 hpriv->saved_port_map = port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900765 }
766
Tejun Heod447df12007-03-18 22:15:33 +0900767 /* record values to use during operation */
768 hpriv->cap = cap;
769 hpriv->port_map = port_map;
770}
771
772/**
773 * ahci_restore_initial_config - Restore initial config
Tejun Heo4447d352007-04-17 23:44:08 +0900774 * @host: target ATA host
Tejun Heod447df12007-03-18 22:15:33 +0900775 *
776 * Restore initial config stored by ahci_save_initial_config().
777 *
778 * LOCKING:
779 * None.
780 */
Tejun Heo4447d352007-04-17 23:44:08 +0900781static void ahci_restore_initial_config(struct ata_host *host)
Tejun Heod447df12007-03-18 22:15:33 +0900782{
Tejun Heo4447d352007-04-17 23:44:08 +0900783 struct ahci_host_priv *hpriv = host->private_data;
784 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
785
Tejun Heod447df12007-03-18 22:15:33 +0900786 writel(hpriv->saved_cap, mmio + HOST_CAP);
787 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
788 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
789}
790
Tejun Heo203ef6c2007-07-16 14:29:40 +0900791static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900793 static const int offset[] = {
794 [SCR_STATUS] = PORT_SCR_STAT,
795 [SCR_CONTROL] = PORT_SCR_CTL,
796 [SCR_ERROR] = PORT_SCR_ERR,
797 [SCR_ACTIVE] = PORT_SCR_ACT,
798 [SCR_NOTIFICATION] = PORT_SCR_NTF,
799 };
800 struct ahci_host_priv *hpriv = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Tejun Heo203ef6c2007-07-16 14:29:40 +0900802 if (sc_reg < ARRAY_SIZE(offset) &&
803 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
804 return offset[sc_reg];
Tejun Heoda3dbb12007-07-16 14:29:40 +0900805 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Tejun Heo203ef6c2007-07-16 14:29:40 +0900808static int ahci_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900810 void __iomem *port_mmio = ahci_port_base(ap);
811 int offset = ahci_scr_offset(ap, sc_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Tejun Heo203ef6c2007-07-16 14:29:40 +0900813 if (offset) {
814 *val = readl(port_mmio + offset);
815 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
Tejun Heo203ef6c2007-07-16 14:29:40 +0900817 return -EINVAL;
818}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Tejun Heo203ef6c2007-07-16 14:29:40 +0900820static int ahci_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val)
821{
822 void __iomem *port_mmio = ahci_port_base(ap);
823 int offset = ahci_scr_offset(ap, sc_reg);
824
825 if (offset) {
826 writel(val, port_mmio + offset);
827 return 0;
828 }
829 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Tejun Heo4447d352007-04-17 23:44:08 +0900832static void ahci_start_engine(struct ata_port *ap)
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900833{
Tejun Heo4447d352007-04-17 23:44:08 +0900834 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900835 u32 tmp;
836
Tejun Heod8fcd112006-07-26 15:59:25 +0900837 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +0900838 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900839 tmp |= PORT_CMD_START;
840 writel(tmp, port_mmio + PORT_CMD);
841 readl(port_mmio + PORT_CMD); /* flush */
842}
843
Tejun Heo4447d352007-04-17 23:44:08 +0900844static int ahci_stop_engine(struct ata_port *ap)
Tejun Heo254950c2006-07-26 15:59:25 +0900845{
Tejun Heo4447d352007-04-17 23:44:08 +0900846 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo254950c2006-07-26 15:59:25 +0900847 u32 tmp;
848
849 tmp = readl(port_mmio + PORT_CMD);
850
Tejun Heod8fcd112006-07-26 15:59:25 +0900851 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900852 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
853 return 0;
854
Tejun Heod8fcd112006-07-26 15:59:25 +0900855 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900856 tmp &= ~PORT_CMD_START;
857 writel(tmp, port_mmio + PORT_CMD);
858
Tejun Heod8fcd112006-07-26 15:59:25 +0900859 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +0900860 tmp = ata_wait_register(port_mmio + PORT_CMD,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400861 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +0900862 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +0900863 return -EIO;
864
865 return 0;
866}
867
Tejun Heo4447d352007-04-17 23:44:08 +0900868static void ahci_start_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900869{
Tejun Heo4447d352007-04-17 23:44:08 +0900870 void __iomem *port_mmio = ahci_port_base(ap);
871 struct ahci_host_priv *hpriv = ap->host->private_data;
872 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo0be0aa92006-07-26 15:59:26 +0900873 u32 tmp;
874
875 /* set FIS registers */
Tejun Heo4447d352007-04-17 23:44:08 +0900876 if (hpriv->cap & HOST_CAP_64)
877 writel((pp->cmd_slot_dma >> 16) >> 16,
878 port_mmio + PORT_LST_ADDR_HI);
879 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900880
Tejun Heo4447d352007-04-17 23:44:08 +0900881 if (hpriv->cap & HOST_CAP_64)
882 writel((pp->rx_fis_dma >> 16) >> 16,
883 port_mmio + PORT_FIS_ADDR_HI);
884 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900885
886 /* enable FIS reception */
887 tmp = readl(port_mmio + PORT_CMD);
888 tmp |= PORT_CMD_FIS_RX;
889 writel(tmp, port_mmio + PORT_CMD);
890
891 /* flush */
892 readl(port_mmio + PORT_CMD);
893}
894
Tejun Heo4447d352007-04-17 23:44:08 +0900895static int ahci_stop_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900896{
Tejun Heo4447d352007-04-17 23:44:08 +0900897 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900898 u32 tmp;
899
900 /* disable FIS reception */
901 tmp = readl(port_mmio + PORT_CMD);
902 tmp &= ~PORT_CMD_FIS_RX;
903 writel(tmp, port_mmio + PORT_CMD);
904
905 /* wait for completion, spec says 500ms, give it 1000 */
906 tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
907 PORT_CMD_FIS_ON, 10, 1000);
908 if (tmp & PORT_CMD_FIS_ON)
909 return -EBUSY;
910
911 return 0;
912}
913
Tejun Heo4447d352007-04-17 23:44:08 +0900914static void ahci_power_up(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900915{
Tejun Heo4447d352007-04-17 23:44:08 +0900916 struct ahci_host_priv *hpriv = ap->host->private_data;
917 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900918 u32 cmd;
919
920 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
921
922 /* spin up device */
Tejun Heo4447d352007-04-17 23:44:08 +0900923 if (hpriv->cap & HOST_CAP_SSS) {
Tejun Heo0be0aa92006-07-26 15:59:26 +0900924 cmd |= PORT_CMD_SPIN_UP;
925 writel(cmd, port_mmio + PORT_CMD);
926 }
927
928 /* wake up link */
929 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
930}
931
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400932static void ahci_disable_alpm(struct ata_port *ap)
933{
934 struct ahci_host_priv *hpriv = ap->host->private_data;
935 void __iomem *port_mmio = ahci_port_base(ap);
936 u32 cmd;
937 struct ahci_port_priv *pp = ap->private_data;
938
939 /* IPM bits should be disabled by libata-core */
940 /* get the existing command bits */
941 cmd = readl(port_mmio + PORT_CMD);
942
943 /* disable ALPM and ASP */
944 cmd &= ~PORT_CMD_ASP;
945 cmd &= ~PORT_CMD_ALPE;
946
947 /* force the interface back to active */
948 cmd |= PORT_CMD_ICC_ACTIVE;
949
950 /* write out new cmd value */
951 writel(cmd, port_mmio + PORT_CMD);
952 cmd = readl(port_mmio + PORT_CMD);
953
954 /* wait 10ms to be sure we've come out of any low power state */
955 msleep(10);
956
957 /* clear out any PhyRdy stuff from interrupt status */
958 writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT);
959
960 /* go ahead and clean out PhyRdy Change from Serror too */
961 ahci_scr_write(ap, SCR_ERROR, ((1 << 16) | (1 << 18)));
962
963 /*
964 * Clear flag to indicate that we should ignore all PhyRdy
965 * state changes
966 */
967 hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG;
968
969 /*
970 * Enable interrupts on Phy Ready.
971 */
972 pp->intr_mask |= PORT_IRQ_PHYRDY;
973 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
974
975 /*
976 * don't change the link pm policy - we can be called
977 * just to turn of link pm temporarily
978 */
979}
980
981static int ahci_enable_alpm(struct ata_port *ap,
982 enum link_pm policy)
983{
984 struct ahci_host_priv *hpriv = ap->host->private_data;
985 void __iomem *port_mmio = ahci_port_base(ap);
986 u32 cmd;
987 struct ahci_port_priv *pp = ap->private_data;
988 u32 asp;
989
990 /* Make sure the host is capable of link power management */
991 if (!(hpriv->cap & HOST_CAP_ALPM))
992 return -EINVAL;
993
994 switch (policy) {
995 case MAX_PERFORMANCE:
996 case NOT_AVAILABLE:
997 /*
998 * if we came here with NOT_AVAILABLE,
999 * it just means this is the first time we
1000 * have tried to enable - default to max performance,
1001 * and let the user go to lower power modes on request.
1002 */
1003 ahci_disable_alpm(ap);
1004 return 0;
1005 case MIN_POWER:
1006 /* configure HBA to enter SLUMBER */
1007 asp = PORT_CMD_ASP;
1008 break;
1009 case MEDIUM_POWER:
1010 /* configure HBA to enter PARTIAL */
1011 asp = 0;
1012 break;
1013 default:
1014 return -EINVAL;
1015 }
1016
1017 /*
1018 * Disable interrupts on Phy Ready. This keeps us from
1019 * getting woken up due to spurious phy ready interrupts
1020 * TBD - Hot plug should be done via polling now, is
1021 * that even supported?
1022 */
1023 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
1024 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
1025
1026 /*
1027 * Set a flag to indicate that we should ignore all PhyRdy
1028 * state changes since these can happen now whenever we
1029 * change link state
1030 */
1031 hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG;
1032
1033 /* get the existing command bits */
1034 cmd = readl(port_mmio + PORT_CMD);
1035
1036 /*
1037 * Set ASP based on Policy
1038 */
1039 cmd |= asp;
1040
1041 /*
1042 * Setting this bit will instruct the HBA to aggressively
1043 * enter a lower power link state when it's appropriate and
1044 * based on the value set above for ASP
1045 */
1046 cmd |= PORT_CMD_ALPE;
1047
1048 /* write out new cmd value */
1049 writel(cmd, port_mmio + PORT_CMD);
1050 cmd = readl(port_mmio + PORT_CMD);
1051
1052 /* IPM bits should be set by libata-core */
1053 return 0;
1054}
1055
Tejun Heo438ac6d2007-03-02 17:31:26 +09001056#ifdef CONFIG_PM
Tejun Heo4447d352007-04-17 23:44:08 +09001057static void ahci_power_down(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001058{
Tejun Heo4447d352007-04-17 23:44:08 +09001059 struct ahci_host_priv *hpriv = ap->host->private_data;
1060 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001061 u32 cmd, scontrol;
1062
Tejun Heo4447d352007-04-17 23:44:08 +09001063 if (!(hpriv->cap & HOST_CAP_SSS))
Tejun Heo07c53da2007-01-21 02:10:11 +09001064 return;
1065
1066 /* put device into listen mode, first set PxSCTL.DET to 0 */
1067 scontrol = readl(port_mmio + PORT_SCR_CTL);
1068 scontrol &= ~0xf;
1069 writel(scontrol, port_mmio + PORT_SCR_CTL);
1070
1071 /* then set PxCMD.SUD to 0 */
Tejun Heo0be0aa92006-07-26 15:59:26 +09001072 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
Tejun Heo07c53da2007-01-21 02:10:11 +09001073 cmd &= ~PORT_CMD_SPIN_UP;
1074 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001075}
Tejun Heo438ac6d2007-03-02 17:31:26 +09001076#endif
Tejun Heo0be0aa92006-07-26 15:59:26 +09001077
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001078static void ahci_start_port(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001079{
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001080 struct ahci_port_priv *pp = ap->private_data;
1081 struct ata_link *link;
1082 struct ahci_em_priv *emp;
1083
Tejun Heo0be0aa92006-07-26 15:59:26 +09001084 /* enable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001085 ahci_start_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001086
1087 /* enable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001088 ahci_start_engine(ap);
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001089
1090 /* turn on LEDs */
1091 if (ap->flags & ATA_FLAG_EM) {
1092 ata_port_for_each_link(link, ap) {
1093 emp = &pp->em_priv[link->pmp];
1094 ahci_transmit_led_message(ap, emp->led_state, 4);
1095 }
1096 }
1097
1098 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
1099 ata_port_for_each_link(link, ap)
1100 ahci_init_sw_activity(link);
1101
Tejun Heo0be0aa92006-07-26 15:59:26 +09001102}
1103
Tejun Heo4447d352007-04-17 23:44:08 +09001104static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001105{
1106 int rc;
1107
1108 /* disable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001109 rc = ahci_stop_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001110 if (rc) {
1111 *emsg = "failed to stop engine";
1112 return rc;
1113 }
1114
1115 /* disable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001116 rc = ahci_stop_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001117 if (rc) {
1118 *emsg = "failed stop FIS RX";
1119 return rc;
1120 }
1121
Tejun Heo0be0aa92006-07-26 15:59:26 +09001122 return 0;
1123}
1124
Tejun Heo4447d352007-04-17 23:44:08 +09001125static int ahci_reset_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001126{
Tejun Heo4447d352007-04-17 23:44:08 +09001127 struct pci_dev *pdev = to_pci_dev(host->dev);
Tejun Heo49f29092007-11-19 16:03:44 +09001128 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001129 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +09001130 u32 tmp;
Tejun Heod91542c2006-07-26 15:59:26 +09001131
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001132 /* we must be in AHCI mode, before using anything
1133 * AHCI-specific, such as HOST_RESET.
1134 */
Tejun Heob710a1f2008-01-05 23:11:57 +09001135 ahci_enable_ahci(mmio);
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001136
1137 /* global controller reset */
Tejun Heoa22e6442008-03-10 10:25:25 +09001138 if (!ahci_skip_host_reset) {
1139 tmp = readl(mmio + HOST_CTL);
1140 if ((tmp & HOST_RESET) == 0) {
1141 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1142 readl(mmio + HOST_CTL); /* flush */
1143 }
Tejun Heod91542c2006-07-26 15:59:26 +09001144
Zhang Rui24920c82008-07-04 13:32:17 +08001145 /*
1146 * to perform host reset, OS should set HOST_RESET
1147 * and poll until this bit is read to be "0".
1148 * reset must complete within 1 second, or
Tejun Heoa22e6442008-03-10 10:25:25 +09001149 * the hardware should be considered fried.
1150 */
Zhang Rui24920c82008-07-04 13:32:17 +08001151 tmp = ata_wait_register(mmio + HOST_CTL, HOST_RESET,
1152 HOST_RESET, 10, 1000);
Tejun Heod91542c2006-07-26 15:59:26 +09001153
Tejun Heoa22e6442008-03-10 10:25:25 +09001154 if (tmp & HOST_RESET) {
1155 dev_printk(KERN_ERR, host->dev,
1156 "controller reset failed (0x%x)\n", tmp);
1157 return -EIO;
1158 }
Tejun Heod91542c2006-07-26 15:59:26 +09001159
Tejun Heoa22e6442008-03-10 10:25:25 +09001160 /* turn on AHCI mode */
1161 ahci_enable_ahci(mmio);
Tejun Heo98fa4b62006-11-02 12:17:23 +09001162
Tejun Heoa22e6442008-03-10 10:25:25 +09001163 /* Some registers might be cleared on reset. Restore
1164 * initial values.
1165 */
1166 ahci_restore_initial_config(host);
1167 } else
1168 dev_printk(KERN_INFO, host->dev,
1169 "skipping global host reset\n");
Tejun Heod91542c2006-07-26 15:59:26 +09001170
1171 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1172 u16 tmp16;
1173
1174 /* configure PCS */
1175 pci_read_config_word(pdev, 0x92, &tmp16);
Tejun Heo49f29092007-11-19 16:03:44 +09001176 if ((tmp16 & hpriv->port_map) != hpriv->port_map) {
1177 tmp16 |= hpriv->port_map;
1178 pci_write_config_word(pdev, 0x92, tmp16);
1179 }
Tejun Heod91542c2006-07-26 15:59:26 +09001180 }
1181
1182 return 0;
1183}
1184
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07001185static void ahci_sw_activity(struct ata_link *link)
1186{
1187 struct ata_port *ap = link->ap;
1188 struct ahci_port_priv *pp = ap->private_data;
1189 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1190
1191 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
1192 return;
1193
1194 emp->activity++;
1195 if (!timer_pending(&emp->timer))
1196 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
1197}
1198
1199static void ahci_sw_activity_blink(unsigned long arg)
1200{
1201 struct ata_link *link = (struct ata_link *)arg;
1202 struct ata_port *ap = link->ap;
1203 struct ahci_port_priv *pp = ap->private_data;
1204 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1205 unsigned long led_message = emp->led_state;
1206 u32 activity_led_state;
1207
1208 led_message &= 0xffff0000;
1209 led_message |= ap->port_no | (link->pmp << 8);
1210
1211 /* check to see if we've had activity. If so,
1212 * toggle state of LED and reset timer. If not,
1213 * turn LED to desired idle state.
1214 */
1215 if (emp->saved_activity != emp->activity) {
1216 emp->saved_activity = emp->activity;
1217 /* get the current LED state */
1218 activity_led_state = led_message & 0x00010000;
1219
1220 if (activity_led_state)
1221 activity_led_state = 0;
1222 else
1223 activity_led_state = 1;
1224
1225 /* clear old state */
1226 led_message &= 0xfff8ffff;
1227
1228 /* toggle state */
1229 led_message |= (activity_led_state << 16);
1230 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
1231 } else {
1232 /* switch to idle */
1233 led_message &= 0xfff8ffff;
1234 if (emp->blink_policy == BLINK_OFF)
1235 led_message |= (1 << 16);
1236 }
1237 ahci_transmit_led_message(ap, led_message, 4);
1238}
1239
1240static void ahci_init_sw_activity(struct ata_link *link)
1241{
1242 struct ata_port *ap = link->ap;
1243 struct ahci_port_priv *pp = ap->private_data;
1244 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1245
1246 /* init activity stats, setup timer */
1247 emp->saved_activity = emp->activity = 0;
1248 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
1249
1250 /* check our blink policy and set flag for link if it's enabled */
1251 if (emp->blink_policy)
1252 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1253}
1254
1255static int ahci_reset_em(struct ata_host *host)
1256{
1257 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
1258 u32 em_ctl;
1259
1260 em_ctl = readl(mmio + HOST_EM_CTL);
1261 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1262 return -EINVAL;
1263
1264 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1265 return 0;
1266}
1267
1268static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1269 ssize_t size)
1270{
1271 struct ahci_host_priv *hpriv = ap->host->private_data;
1272 struct ahci_port_priv *pp = ap->private_data;
1273 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
1274 u32 em_ctl;
1275 u32 message[] = {0, 0};
1276 unsigned int flags;
1277 int pmp;
1278 struct ahci_em_priv *emp;
1279
1280 /* get the slot number from the message */
1281 pmp = (state & 0x0000ff00) >> 8;
1282 if (pmp < MAX_SLOTS)
1283 emp = &pp->em_priv[pmp];
1284 else
1285 return -EINVAL;
1286
1287 spin_lock_irqsave(ap->lock, flags);
1288
1289 /*
1290 * if we are still busy transmitting a previous message,
1291 * do not allow
1292 */
1293 em_ctl = readl(mmio + HOST_EM_CTL);
1294 if (em_ctl & EM_CTL_TM) {
1295 spin_unlock_irqrestore(ap->lock, flags);
1296 return -EINVAL;
1297 }
1298
1299 /*
1300 * create message header - this is all zero except for
1301 * the message size, which is 4 bytes.
1302 */
1303 message[0] |= (4 << 8);
1304
1305 /* ignore 0:4 of byte zero, fill in port info yourself */
1306 message[1] = ((state & 0xfffffff0) | ap->port_no);
1307
1308 /* write message to EM_LOC */
1309 writel(message[0], mmio + hpriv->em_loc);
1310 writel(message[1], mmio + hpriv->em_loc+4);
1311
1312 /* save off new led state for port/slot */
1313 emp->led_state = message[1];
1314
1315 /*
1316 * tell hardware to transmit the message
1317 */
1318 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1319
1320 spin_unlock_irqrestore(ap->lock, flags);
1321 return size;
1322}
1323
1324static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1325{
1326 struct ahci_port_priv *pp = ap->private_data;
1327 struct ata_link *link;
1328 struct ahci_em_priv *emp;
1329 int rc = 0;
1330
1331 ata_port_for_each_link(link, ap) {
1332 emp = &pp->em_priv[link->pmp];
1333 rc += sprintf(buf, "%lx\n", emp->led_state);
1334 }
1335 return rc;
1336}
1337
1338static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1339 size_t size)
1340{
1341 int state;
1342 int pmp;
1343 struct ahci_port_priv *pp = ap->private_data;
1344 struct ahci_em_priv *emp;
1345
1346 state = simple_strtoul(buf, NULL, 0);
1347
1348 /* get the slot number from the message */
1349 pmp = (state & 0x0000ff00) >> 8;
1350 if (pmp < MAX_SLOTS)
1351 emp = &pp->em_priv[pmp];
1352 else
1353 return -EINVAL;
1354
1355 /* mask off the activity bits if we are in sw_activity
1356 * mode, user should turn off sw_activity before setting
1357 * activity led through em_message
1358 */
1359 if (emp->blink_policy)
1360 state &= 0xfff8ffff;
1361
1362 return ahci_transmit_led_message(ap, state, size);
1363}
1364
1365static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1366{
1367 struct ata_link *link = dev->link;
1368 struct ata_port *ap = link->ap;
1369 struct ahci_port_priv *pp = ap->private_data;
1370 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1371 u32 port_led_state = emp->led_state;
1372
1373 /* save the desired Activity LED behavior */
1374 if (val == OFF) {
1375 /* clear LFLAG */
1376 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1377
1378 /* set the LED to OFF */
1379 port_led_state &= 0xfff80000;
1380 port_led_state |= (ap->port_no | (link->pmp << 8));
1381 ahci_transmit_led_message(ap, port_led_state, 4);
1382 } else {
1383 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1384 if (val == BLINK_OFF) {
1385 /* set LED to ON for idle */
1386 port_led_state &= 0xfff80000;
1387 port_led_state |= (ap->port_no | (link->pmp << 8));
1388 port_led_state |= 0x00010000; /* check this */
1389 ahci_transmit_led_message(ap, port_led_state, 4);
1390 }
1391 }
1392 emp->blink_policy = val;
1393 return 0;
1394}
1395
1396static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1397{
1398 struct ata_link *link = dev->link;
1399 struct ata_port *ap = link->ap;
1400 struct ahci_port_priv *pp = ap->private_data;
1401 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1402
1403 /* display the saved value of activity behavior for this
1404 * disk.
1405 */
1406 return sprintf(buf, "%d\n", emp->blink_policy);
1407}
1408
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001409static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap,
1410 int port_no, void __iomem *mmio,
1411 void __iomem *port_mmio)
1412{
1413 const char *emsg = NULL;
1414 int rc;
1415 u32 tmp;
1416
1417 /* make sure port is not active */
1418 rc = ahci_deinit_port(ap, &emsg);
1419 if (rc)
1420 dev_printk(KERN_WARNING, &pdev->dev,
1421 "%s (%d)\n", emsg, rc);
1422
1423 /* clear SError */
1424 tmp = readl(port_mmio + PORT_SCR_ERR);
1425 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1426 writel(tmp, port_mmio + PORT_SCR_ERR);
1427
1428 /* clear port IRQ */
1429 tmp = readl(port_mmio + PORT_IRQ_STAT);
1430 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1431 if (tmp)
1432 writel(tmp, port_mmio + PORT_IRQ_STAT);
1433
1434 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1435}
1436
Tejun Heo4447d352007-04-17 23:44:08 +09001437static void ahci_init_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001438{
Tejun Heo417a1a62007-09-23 13:19:55 +09001439 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001440 struct pci_dev *pdev = to_pci_dev(host->dev);
1441 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001442 int i;
Jeff Garzikcd70c262007-07-08 02:29:42 -04001443 void __iomem *port_mmio;
Tejun Heod91542c2006-07-26 15:59:26 +09001444 u32 tmp;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001445 int mv;
Tejun Heod91542c2006-07-26 15:59:26 +09001446
Tejun Heo417a1a62007-09-23 13:19:55 +09001447 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001448 if (pdev->device == 0x6121)
1449 mv = 2;
1450 else
1451 mv = 4;
1452 port_mmio = __ahci_port_base(host, mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -04001453
1454 writel(0, port_mmio + PORT_IRQ_MASK);
1455
1456 /* clear port IRQ */
1457 tmp = readl(port_mmio + PORT_IRQ_STAT);
1458 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1459 if (tmp)
1460 writel(tmp, port_mmio + PORT_IRQ_STAT);
1461 }
1462
Tejun Heo4447d352007-04-17 23:44:08 +09001463 for (i = 0; i < host->n_ports; i++) {
1464 struct ata_port *ap = host->ports[i];
Tejun Heod91542c2006-07-26 15:59:26 +09001465
Jeff Garzikcd70c262007-07-08 02:29:42 -04001466 port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09001467 if (ata_port_is_dummy(ap))
Tejun Heod91542c2006-07-26 15:59:26 +09001468 continue;
Tejun Heod91542c2006-07-26 15:59:26 +09001469
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001470 ahci_port_init(pdev, ap, i, mmio, port_mmio);
Tejun Heod91542c2006-07-26 15:59:26 +09001471 }
1472
1473 tmp = readl(mmio + HOST_CTL);
1474 VPRINTK("HOST_CTL 0x%x\n", tmp);
1475 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1476 tmp = readl(mmio + HOST_CTL);
1477 VPRINTK("HOST_CTL 0x%x\n", tmp);
1478}
1479
Jeff Garzika8785392008-02-28 15:43:48 -05001480static void ahci_dev_config(struct ata_device *dev)
1481{
1482 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1483
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001484 if (hpriv->flags & AHCI_HFLAG_SECT255) {
Jeff Garzika8785392008-02-28 15:43:48 -05001485 dev->max_sectors = 255;
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001486 ata_dev_printk(dev, KERN_INFO,
1487 "SB600 AHCI: limiting to 255 sectors per cmd\n");
1488 }
Jeff Garzika8785392008-02-28 15:43:48 -05001489}
1490
Tejun Heo422b7592005-12-19 22:37:17 +09001491static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Tejun Heo4447d352007-04-17 23:44:08 +09001493 void __iomem *port_mmio = ahci_port_base(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +09001495 u32 tmp;
1496
1497 tmp = readl(port_mmio + PORT_SIG);
1498 tf.lbah = (tmp >> 24) & 0xff;
1499 tf.lbam = (tmp >> 16) & 0xff;
1500 tf.lbal = (tmp >> 8) & 0xff;
1501 tf.nsect = (tmp) & 0xff;
1502
1503 return ata_dev_classify(&tf);
1504}
1505
Tejun Heo12fad3f2006-05-15 21:03:55 +09001506static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1507 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +09001508{
Tejun Heo12fad3f2006-05-15 21:03:55 +09001509 dma_addr_t cmd_tbl_dma;
1510
1511 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1512
1513 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1514 pp->cmd_slot[tag].status = 0;
1515 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1516 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +09001517}
1518
Tejun Heod2e75df2007-07-16 14:29:39 +09001519static int ahci_kick_engine(struct ata_port *ap, int force_restart)
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001520{
Tejun Heo350756f2008-04-07 22:47:21 +09001521 void __iomem *port_mmio = ahci_port_base(ap);
Jeff Garzikcca39742006-08-24 03:19:22 -04001522 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo520d06f2008-04-07 22:47:21 +09001523 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001524 u32 tmp;
Tejun Heod2e75df2007-07-16 14:29:39 +09001525 int busy, rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001526
Tejun Heod2e75df2007-07-16 14:29:39 +09001527 /* do we need to kick the port? */
Tejun Heo520d06f2008-04-07 22:47:21 +09001528 busy = status & (ATA_BUSY | ATA_DRQ);
Tejun Heod2e75df2007-07-16 14:29:39 +09001529 if (!busy && !force_restart)
1530 return 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001531
Tejun Heod2e75df2007-07-16 14:29:39 +09001532 /* stop engine */
1533 rc = ahci_stop_engine(ap);
1534 if (rc)
1535 goto out_restart;
1536
1537 /* need to do CLO? */
1538 if (!busy) {
1539 rc = 0;
1540 goto out_restart;
1541 }
1542
1543 if (!(hpriv->cap & HOST_CAP_CLO)) {
1544 rc = -EOPNOTSUPP;
1545 goto out_restart;
1546 }
1547
1548 /* perform CLO */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001549 tmp = readl(port_mmio + PORT_CMD);
1550 tmp |= PORT_CMD_CLO;
1551 writel(tmp, port_mmio + PORT_CMD);
1552
Tejun Heod2e75df2007-07-16 14:29:39 +09001553 rc = 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001554 tmp = ata_wait_register(port_mmio + PORT_CMD,
1555 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1556 if (tmp & PORT_CMD_CLO)
Tejun Heod2e75df2007-07-16 14:29:39 +09001557 rc = -EIO;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001558
Tejun Heod2e75df2007-07-16 14:29:39 +09001559 /* restart engine */
1560 out_restart:
1561 ahci_start_engine(ap);
1562 return rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001563}
1564
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001565static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1566 struct ata_taskfile *tf, int is_cmd, u16 flags,
1567 unsigned long timeout_msec)
1568{
1569 const u32 cmd_fis_len = 5; /* five dwords */
1570 struct ahci_port_priv *pp = ap->private_data;
1571 void __iomem *port_mmio = ahci_port_base(ap);
1572 u8 *fis = pp->cmd_tbl;
1573 u32 tmp;
1574
1575 /* prep the command */
1576 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1577 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1578
1579 /* issue & wait */
1580 writel(1, port_mmio + PORT_CMD_ISSUE);
1581
1582 if (timeout_msec) {
1583 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1,
1584 1, timeout_msec);
1585 if (tmp & 0x1) {
1586 ahci_kick_engine(ap, 1);
1587 return -EBUSY;
1588 }
1589 } else
1590 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1591
1592 return 0;
1593}
1594
Shane Huangbd172432008-06-10 15:52:04 +08001595static int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1596 int pmp, unsigned long deadline,
1597 int (*check_ready)(struct ata_link *link))
Tejun Heo4658f792006-03-22 21:07:03 +09001598{
Tejun Heocc0680a2007-08-06 18:36:23 +09001599 struct ata_port *ap = link->ap;
Tejun Heo4658f792006-03-22 21:07:03 +09001600 const char *reason = NULL;
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001601 unsigned long now, msecs;
Tejun Heo4658f792006-03-22 21:07:03 +09001602 struct ata_taskfile tf;
Tejun Heo4658f792006-03-22 21:07:03 +09001603 int rc;
1604
1605 DPRINTK("ENTER\n");
1606
1607 /* prepare for SRST (AHCI-1.1 10.4.1) */
Tejun Heod2e75df2007-07-16 14:29:39 +09001608 rc = ahci_kick_engine(ap, 1);
Tejun Heo994056d2007-12-06 15:02:48 +09001609 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09001610 ata_link_printk(link, KERN_WARNING,
Tejun Heo994056d2007-12-06 15:02:48 +09001611 "failed to reset engine (errno=%d)\n", rc);
Tejun Heo4658f792006-03-22 21:07:03 +09001612
Tejun Heocc0680a2007-08-06 18:36:23 +09001613 ata_tf_init(link->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +09001614
1615 /* issue the first D2H Register FIS */
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001616 msecs = 0;
1617 now = jiffies;
1618 if (time_after(now, deadline))
1619 msecs = jiffies_to_msecs(deadline - now);
1620
Tejun Heo4658f792006-03-22 21:07:03 +09001621 tf.ctl |= ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001622 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001623 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
Tejun Heo4658f792006-03-22 21:07:03 +09001624 rc = -EIO;
1625 reason = "1st FIS failed";
1626 goto fail;
1627 }
1628
1629 /* spec says at least 5us, but be generous and sleep for 1ms */
1630 msleep(1);
1631
1632 /* issue the second D2H Register FIS */
Tejun Heo4658f792006-03-22 21:07:03 +09001633 tf.ctl &= ~ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001634 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
Tejun Heo4658f792006-03-22 21:07:03 +09001635
Tejun Heo705e76b2008-04-07 22:47:19 +09001636 /* wait for link to become ready */
Shane Huangbd172432008-06-10 15:52:04 +08001637 rc = ata_wait_after_reset(link, deadline, check_ready);
Tejun Heo9b893912007-02-02 16:50:52 +09001638 /* link occupied, -ENODEV too is an error */
1639 if (rc) {
1640 reason = "device not ready";
1641 goto fail;
Tejun Heo4658f792006-03-22 21:07:03 +09001642 }
Tejun Heo9b893912007-02-02 16:50:52 +09001643 *class = ahci_dev_classify(ap);
Tejun Heo4658f792006-03-22 21:07:03 +09001644
1645 DPRINTK("EXIT, class=%u\n", *class);
1646 return 0;
1647
Tejun Heo4658f792006-03-22 21:07:03 +09001648 fail:
Tejun Heocc0680a2007-08-06 18:36:23 +09001649 ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +09001650 return rc;
1651}
1652
Shane Huangbd172432008-06-10 15:52:04 +08001653static int ahci_check_ready(struct ata_link *link)
1654{
1655 void __iomem *port_mmio = ahci_port_base(link->ap);
1656 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1657
1658 return ata_check_ready(status);
1659}
1660
1661static int ahci_softreset(struct ata_link *link, unsigned int *class,
1662 unsigned long deadline)
1663{
1664 int pmp = sata_srst_pmp(link);
1665
1666 DPRINTK("ENTER\n");
1667
1668 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1669}
1670
1671static int ahci_sb600_check_ready(struct ata_link *link)
1672{
1673 void __iomem *port_mmio = ahci_port_base(link->ap);
1674 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1675 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1676
1677 /*
1678 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1679 * which can save timeout delay.
1680 */
1681 if (irq_status & PORT_IRQ_BAD_PMP)
1682 return -EIO;
1683
1684 return ata_check_ready(status);
1685}
1686
1687static int ahci_sb600_softreset(struct ata_link *link, unsigned int *class,
1688 unsigned long deadline)
1689{
1690 struct ata_port *ap = link->ap;
1691 void __iomem *port_mmio = ahci_port_base(ap);
1692 int pmp = sata_srst_pmp(link);
1693 int rc;
1694 u32 irq_sts;
1695
1696 DPRINTK("ENTER\n");
1697
1698 rc = ahci_do_softreset(link, class, pmp, deadline,
1699 ahci_sb600_check_ready);
1700
1701 /*
1702 * Soft reset fails on some ATI chips with IPMS set when PMP
1703 * is enabled but SATA HDD/ODD is connected to SATA port,
1704 * do soft reset again to port 0.
1705 */
1706 if (rc == -EIO) {
1707 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1708 if (irq_sts & PORT_IRQ_BAD_PMP) {
1709 ata_link_printk(link, KERN_WARNING,
1710 "failed due to HW bug, retry pmp=0\n");
1711 rc = ahci_do_softreset(link, class, 0, deadline,
1712 ahci_check_ready);
1713 }
1714 }
1715
1716 return rc;
1717}
1718
Tejun Heocc0680a2007-08-06 18:36:23 +09001719static int ahci_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001720 unsigned long deadline)
Tejun Heo422b7592005-12-19 22:37:17 +09001721{
Tejun Heo9dadd452008-04-07 22:47:19 +09001722 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heocc0680a2007-08-06 18:36:23 +09001723 struct ata_port *ap = link->ap;
Tejun Heo42969712006-05-31 18:28:18 +09001724 struct ahci_port_priv *pp = ap->private_data;
1725 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1726 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001727 bool online;
Tejun Heo4bd00f62006-02-11 16:26:02 +09001728 int rc;
1729
1730 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Tejun Heo4447d352007-04-17 23:44:08 +09001732 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +09001733
1734 /* clear D2H reception area to properly wait for D2H FIS */
Tejun Heocc0680a2007-08-06 18:36:23 +09001735 ata_tf_init(link->device, &tf);
Tejun Heodfd7a3d2007-01-26 15:37:20 +09001736 tf.command = 0x80;
Tejun Heo99771262007-07-16 14:29:38 +09001737 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
Tejun Heo42969712006-05-31 18:28:18 +09001738
Tejun Heo9dadd452008-04-07 22:47:19 +09001739 rc = sata_link_hardreset(link, timing, deadline, &online,
1740 ahci_check_ready);
Tejun Heo42969712006-05-31 18:28:18 +09001741
Tejun Heo4447d352007-04-17 23:44:08 +09001742 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Tejun Heo9dadd452008-04-07 22:47:19 +09001744 if (online)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001745 *class = ahci_dev_classify(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Tejun Heo4bd00f62006-02-11 16:26:02 +09001747 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1748 return rc;
1749}
1750
Tejun Heocc0680a2007-08-06 18:36:23 +09001751static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001752 unsigned long deadline)
Tejun Heoad616ff2006-11-01 18:00:24 +09001753{
Tejun Heocc0680a2007-08-06 18:36:23 +09001754 struct ata_port *ap = link->ap;
Tejun Heo9dadd452008-04-07 22:47:19 +09001755 bool online;
Tejun Heoad616ff2006-11-01 18:00:24 +09001756 int rc;
1757
1758 DPRINTK("ENTER\n");
1759
Tejun Heo4447d352007-04-17 23:44:08 +09001760 ahci_stop_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001761
Tejun Heocc0680a2007-08-06 18:36:23 +09001762 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001763 deadline, &online, NULL);
Tejun Heoad616ff2006-11-01 18:00:24 +09001764
Tejun Heo4447d352007-04-17 23:44:08 +09001765 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001766
1767 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1768
1769 /* vt8251 doesn't clear BSY on signature FIS reception,
1770 * request follow-up softreset.
1771 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001772 return online ? -EAGAIN : rc;
Tejun Heoad616ff2006-11-01 18:00:24 +09001773}
1774
Tejun Heoedc93052007-10-25 14:59:16 +09001775static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
1776 unsigned long deadline)
1777{
1778 struct ata_port *ap = link->ap;
1779 struct ahci_port_priv *pp = ap->private_data;
1780 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1781 struct ata_taskfile tf;
Tejun Heo9dadd452008-04-07 22:47:19 +09001782 bool online;
Tejun Heoedc93052007-10-25 14:59:16 +09001783 int rc;
1784
1785 ahci_stop_engine(ap);
1786
1787 /* clear D2H reception area to properly wait for D2H FIS */
1788 ata_tf_init(link->device, &tf);
1789 tf.command = 0x80;
1790 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1791
1792 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heo9dadd452008-04-07 22:47:19 +09001793 deadline, &online, NULL);
Tejun Heoedc93052007-10-25 14:59:16 +09001794
1795 ahci_start_engine(ap);
1796
Tejun Heoedc93052007-10-25 14:59:16 +09001797 /* The pseudo configuration device on SIMG4726 attached to
1798 * ASUS P5W-DH Deluxe doesn't send signature FIS after
1799 * hardreset if no device is attached to the first downstream
1800 * port && the pseudo device locks up on SRST w/ PMP==0. To
1801 * work around this, wait for !BSY only briefly. If BSY isn't
1802 * cleared, perform CLO and proceed to IDENTIFY (achieved by
1803 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
1804 *
1805 * Wait for two seconds. Devices attached to downstream port
1806 * which can't process the following IDENTIFY after this will
1807 * have to be reset again. For most cases, this should
1808 * suffice while making probing snappish enough.
1809 */
Tejun Heo9dadd452008-04-07 22:47:19 +09001810 if (online) {
1811 rc = ata_wait_after_reset(link, jiffies + 2 * HZ,
1812 ahci_check_ready);
1813 if (rc)
1814 ahci_kick_engine(ap, 0);
1815 }
Tejun Heo9dadd452008-04-07 22:47:19 +09001816 return rc;
Tejun Heoedc93052007-10-25 14:59:16 +09001817}
1818
Tejun Heocc0680a2007-08-06 18:36:23 +09001819static void ahci_postreset(struct ata_link *link, unsigned int *class)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001820{
Tejun Heocc0680a2007-08-06 18:36:23 +09001821 struct ata_port *ap = link->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09001822 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001823 u32 new_tmp, tmp;
1824
Tejun Heo203c75b2008-04-07 22:47:18 +09001825 ata_std_postreset(link, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -05001826
1827 /* Make sure port's ATAPI bit is set appropriately */
1828 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001829 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -05001830 new_tmp |= PORT_CMD_ATAPI;
1831 else
1832 new_tmp &= ~PORT_CMD_ATAPI;
1833 if (new_tmp != tmp) {
1834 writel(new_tmp, port_mmio + PORT_CMD);
1835 readl(port_mmio + PORT_CMD); /* flush */
1836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837}
1838
Tejun Heo12fad3f2006-05-15 21:03:55 +09001839static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001841 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09001842 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1843 unsigned int si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 VPRINTK("ENTER\n");
1846
1847 /*
1848 * Next, the S/G list.
1849 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09001850 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001851 dma_addr_t addr = sg_dma_address(sg);
1852 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Tejun Heoff2aeb12007-12-05 16:43:11 +09001854 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1855 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1856 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
Jeff Garzik828d09d2005-11-12 01:27:07 -05001858
Tejun Heoff2aeb12007-12-05 16:43:11 +09001859 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
1862static void ahci_qc_prep(struct ata_queued_cmd *qc)
1863{
Jeff Garzika0ea7322005-06-04 01:13:15 -04001864 struct ata_port *ap = qc->ap;
1865 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo405e66b2007-11-27 19:28:53 +09001866 int is_atapi = ata_is_atapi(qc->tf.protocol);
Tejun Heo12fad3f2006-05-15 21:03:55 +09001867 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 u32 opts;
1869 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -05001870 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 * Fill in command table information. First, the header,
1874 * a SATA Register - Host to Device command FIS.
1875 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09001876 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
1877
Tejun Heo7d50b602007-09-23 13:19:54 +09001878 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
Tejun Heocc9278e2006-02-10 17:25:47 +09001879 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09001880 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1881 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -04001882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Tejun Heocc9278e2006-02-10 17:25:47 +09001884 n_elem = 0;
1885 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +09001886 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Tejun Heocc9278e2006-02-10 17:25:47 +09001888 /*
1889 * Fill in command slot information.
1890 */
Tejun Heo7d50b602007-09-23 13:19:54 +09001891 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
Tejun Heocc9278e2006-02-10 17:25:47 +09001892 if (qc->tf.flags & ATA_TFLAG_WRITE)
1893 opts |= AHCI_CMD_WRITE;
1894 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +09001895 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -05001896
Tejun Heo12fad3f2006-05-15 21:03:55 +09001897 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
Tejun Heo78cd52d2006-05-15 20:58:29 +09001900static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
Tejun Heo417a1a62007-09-23 13:19:55 +09001902 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001903 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09001904 struct ata_eh_info *host_ehi = &ap->link.eh_info;
1905 struct ata_link *link = NULL;
1906 struct ata_queued_cmd *active_qc;
1907 struct ata_eh_info *active_ehi;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001908 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Tejun Heo7d50b602007-09-23 13:19:54 +09001910 /* determine active link */
1911 ata_port_for_each_link(link, ap)
1912 if (ata_link_active(link))
1913 break;
1914 if (!link)
1915 link = &ap->link;
1916
1917 active_qc = ata_qc_from_tag(ap, link->active_tag);
1918 active_ehi = &link->eh_info;
1919
1920 /* record irq stat */
1921 ata_ehi_clear_desc(host_ehi);
1922 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
Jeff Garzik9f68a242005-11-15 14:03:47 -05001923
Tejun Heo78cd52d2006-05-15 20:58:29 +09001924 /* AHCI needs SError cleared; otherwise, it might lock up */
Tejun Heoda3dbb12007-07-16 14:29:40 +09001925 ahci_scr_read(ap, SCR_ERROR, &serror);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001926 ahci_scr_write(ap, SCR_ERROR, serror);
Tejun Heo7d50b602007-09-23 13:19:54 +09001927 host_ehi->serror |= serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Tejun Heo41669552006-11-29 11:33:14 +09001929 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
Tejun Heo417a1a62007-09-23 13:19:55 +09001930 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
Tejun Heo41669552006-11-29 11:33:14 +09001931 irq_stat &= ~PORT_IRQ_IF_ERR;
1932
Conke Hu55a61602007-03-27 18:33:05 +08001933 if (irq_stat & PORT_IRQ_TF_ERR) {
Tejun Heo7d50b602007-09-23 13:19:54 +09001934 /* If qc is active, charge it; otherwise, the active
1935 * link. There's no active qc on NCQ errors. It will
1936 * be determined by EH by reading log page 10h.
1937 */
1938 if (active_qc)
1939 active_qc->err_mask |= AC_ERR_DEV;
1940 else
1941 active_ehi->err_mask |= AC_ERR_DEV;
1942
Tejun Heo417a1a62007-09-23 13:19:55 +09001943 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
Tejun Heo7d50b602007-09-23 13:19:54 +09001944 host_ehi->serror &= ~SERR_INTERNAL;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Tejun Heo78cd52d2006-05-15 20:58:29 +09001947 if (irq_stat & PORT_IRQ_UNK_FIS) {
1948 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Tejun Heo7d50b602007-09-23 13:19:54 +09001950 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09001951 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09001952 ata_ehi_push_desc(active_ehi,
1953 "unknown FIS %08x %08x %08x %08x" ,
Tejun Heo78cd52d2006-05-15 20:58:29 +09001954 unk[0], unk[1], unk[2], unk[3]);
1955 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04001956
Tejun Heo071f44b2008-04-07 22:47:22 +09001957 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
Tejun Heo7d50b602007-09-23 13:19:54 +09001958 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09001959 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09001960 ata_ehi_push_desc(active_ehi, "incorrect PMP");
1961 }
Tejun Heo78cd52d2006-05-15 20:58:29 +09001962
Tejun Heo7d50b602007-09-23 13:19:54 +09001963 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
1964 host_ehi->err_mask |= AC_ERR_HOST_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09001965 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09001966 ata_ehi_push_desc(host_ehi, "host bus error");
1967 }
1968
1969 if (irq_stat & PORT_IRQ_IF_ERR) {
1970 host_ehi->err_mask |= AC_ERR_ATA_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09001971 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09001972 ata_ehi_push_desc(host_ehi, "interface fatal error");
1973 }
1974
1975 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
1976 ata_ehi_hotplugged(host_ehi);
1977 ata_ehi_push_desc(host_ehi, "%s",
1978 irq_stat & PORT_IRQ_CONNECT ?
1979 "connection status changed" : "PHY RDY changed");
1980 }
1981
1982 /* okay, let's hand over to EH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Tejun Heo78cd52d2006-05-15 20:58:29 +09001984 if (irq_stat & PORT_IRQ_FREEZE)
1985 ata_port_freeze(ap);
1986 else
1987 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988}
1989
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001990static void ahci_port_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
Tejun Heo350756f2008-04-07 22:47:21 +09001992 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001993 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo0291f952007-01-25 19:16:28 +09001994 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo5f226c62007-10-09 15:02:23 +09001995 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heob06ce3e2007-10-09 15:06:48 +09001996 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Tejun Heo12fad3f2006-05-15 21:03:55 +09001997 u32 status, qc_active;
Tejun Heo459ad682007-12-07 12:46:23 +09001998 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 status = readl(port_mmio + PORT_IRQ_STAT);
2001 writel(status, port_mmio + PORT_IRQ_STAT);
2002
Tejun Heob06ce3e2007-10-09 15:06:48 +09002003 /* ignore BAD_PMP while resetting */
2004 if (unlikely(resetting))
2005 status &= ~PORT_IRQ_BAD_PMP;
2006
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002007 /* If we are getting PhyRdy, this is
2008 * just a power state change, we should
2009 * clear out this, plus the PhyRdy/Comm
2010 * Wake bits from Serror
2011 */
2012 if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) &&
2013 (status & PORT_IRQ_PHYRDY)) {
2014 status &= ~PORT_IRQ_PHYRDY;
2015 ahci_scr_write(ap, SCR_ERROR, ((1 << 16) | (1 << 18)));
2016 }
2017
Tejun Heo78cd52d2006-05-15 20:58:29 +09002018 if (unlikely(status & PORT_IRQ_ERROR)) {
2019 ahci_error_intr(ap, status);
2020 return;
2021 }
2022
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002023 if (status & PORT_IRQ_SDB_FIS) {
Tejun Heo5f226c62007-10-09 15:02:23 +09002024 /* If SNotification is available, leave notification
2025 * handling to sata_async_notification(). If not,
2026 * emulate it by snooping SDB FIS RX area.
2027 *
2028 * Snooping FIS RX area is probably cheaper than
2029 * poking SNotification but some constrollers which
2030 * implement SNotification, ICH9 for example, don't
2031 * store AN SDB FIS into receive area.
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002032 */
Tejun Heo5f226c62007-10-09 15:02:23 +09002033 if (hpriv->cap & HOST_CAP_SNTF)
Tejun Heo7d77b242007-09-23 13:14:13 +09002034 sata_async_notification(ap);
Tejun Heo5f226c62007-10-09 15:02:23 +09002035 else {
2036 /* If the 'N' bit in word 0 of the FIS is set,
2037 * we just received asynchronous notification.
2038 * Tell libata about it.
2039 */
2040 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
2041 u32 f0 = le32_to_cpu(f[0]);
2042
2043 if (f0 & (1 << 15))
2044 sata_async_notification(ap);
2045 }
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04002046 }
2047
Tejun Heo7d50b602007-09-23 13:19:54 +09002048 /* pp->active_link is valid iff any command is in flight */
2049 if (ap->qc_active && pp->active_link->sactive)
Tejun Heo12fad3f2006-05-15 21:03:55 +09002050 qc_active = readl(port_mmio + PORT_SCR_ACT);
2051 else
2052 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
2053
Tejun Heo79f97da2008-04-07 22:47:20 +09002054 rc = ata_qc_complete_multiple(ap, qc_active);
Tejun Heob06ce3e2007-10-09 15:06:48 +09002055
Tejun Heo459ad682007-12-07 12:46:23 +09002056 /* while resetting, invalid completions are expected */
2057 if (unlikely(rc < 0 && !resetting)) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09002058 ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09002059 ehi->action |= ATA_EH_RESET;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002060 ata_port_freeze(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
David Howells7d12e782006-10-05 14:55:46 +01002064static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Jeff Garzikcca39742006-08-24 03:19:22 -04002066 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 struct ahci_host_priv *hpriv;
2068 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -04002069 void __iomem *mmio;
Tejun Heod28f87a2008-07-05 13:10:50 +09002070 u32 irq_stat, irq_masked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 VPRINTK("ENTER\n");
2073
Jeff Garzikcca39742006-08-24 03:19:22 -04002074 hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002075 mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 /* sigh. 0xffffffff is a valid return from h/w */
2078 irq_stat = readl(mmio + HOST_IRQ_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (!irq_stat)
2080 return IRQ_NONE;
2081
Tejun Heod28f87a2008-07-05 13:10:50 +09002082 irq_masked = irq_stat & hpriv->port_map;
2083
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002084 spin_lock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002086 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Tejun Heod28f87a2008-07-05 13:10:50 +09002089 if (!(irq_masked & (1 << i)))
Jeff Garzik67846b32005-10-05 02:58:32 -04002090 continue;
2091
Jeff Garzikcca39742006-08-24 03:19:22 -04002092 ap = host->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -04002093 if (ap) {
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002094 ahci_port_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -04002095 VPRINTK("port %u\n", i);
2096 } else {
2097 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +09002098 if (ata_ratelimit())
Jeff Garzikcca39742006-08-24 03:19:22 -04002099 dev_printk(KERN_WARNING, host->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -05002100 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
Jeff Garzik67846b32005-10-05 02:58:32 -04002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 handled = 1;
2104 }
2105
Tejun Heod28f87a2008-07-05 13:10:50 +09002106 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
2107 * it should be cleared after all the port events are cleared;
2108 * otherwise, it will raise a spurious interrupt after each
2109 * valid one. Please read section 10.6.2 of ahci 1.1 for more
2110 * information.
2111 *
2112 * Also, use the unmasked value to clear interrupt as spurious
2113 * pending event on a dummy port might cause screaming IRQ.
2114 */
Tejun Heoea0c62f2008-06-28 01:49:02 +09002115 writel(irq_stat, mmio + HOST_IRQ_STAT);
2116
Jeff Garzikcca39742006-08-24 03:19:22 -04002117 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 VPRINTK("EXIT\n");
2120
2121 return IRQ_RETVAL(handled);
2122}
2123
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09002124static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
2126 struct ata_port *ap = qc->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09002127 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09002128 struct ahci_port_priv *pp = ap->private_data;
2129
2130 /* Keep track of the currently active link. It will be used
2131 * in completion path to determine whether NCQ phase is in
2132 * progress.
2133 */
2134 pp->active_link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Tejun Heo12fad3f2006-05-15 21:03:55 +09002136 if (qc->tf.protocol == ATA_PROT_NCQ)
2137 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
2138 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
2140
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002141 ahci_sw_activity(qc->dev->link);
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 return 0;
2144}
2145
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09002146static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2147{
2148 struct ahci_port_priv *pp = qc->ap->private_data;
2149 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
2150
2151 ata_tf_from_fis(d2h_fis, &qc->result_tf);
2152 return true;
2153}
2154
Tejun Heo78cd52d2006-05-15 20:58:29 +09002155static void ahci_freeze(struct ata_port *ap)
2156{
Tejun Heo4447d352007-04-17 23:44:08 +09002157 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002158
2159 /* turn IRQ off */
2160 writel(0, port_mmio + PORT_IRQ_MASK);
2161}
2162
2163static void ahci_thaw(struct ata_port *ap)
2164{
Tejun Heo0d5ff562007-02-01 15:06:36 +09002165 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
Tejun Heo4447d352007-04-17 23:44:08 +09002166 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002167 u32 tmp;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002168 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09002169
2170 /* clear IRQ */
2171 tmp = readl(port_mmio + PORT_IRQ_STAT);
2172 writel(tmp, port_mmio + PORT_IRQ_STAT);
Tejun Heoa7187282007-01-27 11:04:26 +09002173 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002174
Tejun Heo1c954a42007-10-09 15:01:37 +09002175 /* turn IRQ back on */
2176 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002177}
2178
2179static void ahci_error_handler(struct ata_port *ap)
2180{
Tejun Heob51e9e52006-06-29 01:29:30 +09002181 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +09002182 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09002183 ahci_stop_engine(ap);
2184 ahci_start_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002185 }
2186
Tejun Heoa1efdab2008-03-25 12:22:50 +09002187 sata_pmp_error_handler(ap);
Tejun Heoedc93052007-10-25 14:59:16 +09002188}
2189
Tejun Heo78cd52d2006-05-15 20:58:29 +09002190static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2191{
2192 struct ata_port *ap = qc->ap;
2193
Tejun Heod2e75df2007-07-16 14:29:39 +09002194 /* make DMA engine forget about the failed command */
2195 if (qc->flags & ATA_QCFLAG_FAILED)
2196 ahci_kick_engine(ap, 1);
Tejun Heo78cd52d2006-05-15 20:58:29 +09002197}
2198
Tejun Heo7d50b602007-09-23 13:19:54 +09002199static void ahci_pmp_attach(struct ata_port *ap)
2200{
2201 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002202 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002203 u32 cmd;
2204
2205 cmd = readl(port_mmio + PORT_CMD);
2206 cmd |= PORT_CMD_PMP;
2207 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002208
2209 pp->intr_mask |= PORT_IRQ_BAD_PMP;
2210 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002211}
2212
2213static void ahci_pmp_detach(struct ata_port *ap)
2214{
2215 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09002216 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09002217 u32 cmd;
2218
2219 cmd = readl(port_mmio + PORT_CMD);
2220 cmd &= ~PORT_CMD_PMP;
2221 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09002222
2223 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
2224 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09002225}
2226
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002227static int ahci_port_resume(struct ata_port *ap)
2228{
2229 ahci_power_up(ap);
2230 ahci_start_port(ap);
2231
Tejun Heo071f44b2008-04-07 22:47:22 +09002232 if (sata_pmp_attached(ap))
Tejun Heo7d50b602007-09-23 13:19:54 +09002233 ahci_pmp_attach(ap);
2234 else
2235 ahci_pmp_detach(ap);
2236
Alexey Dobriyan028a2592007-07-17 23:48:48 +04002237 return 0;
2238}
2239
Tejun Heo438ac6d2007-03-02 17:31:26 +09002240#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +09002241static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2242{
Tejun Heoc1332872006-07-26 15:59:26 +09002243 const char *emsg = NULL;
2244 int rc;
2245
Tejun Heo4447d352007-04-17 23:44:08 +09002246 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo8e16f942006-11-20 15:42:36 +09002247 if (rc == 0)
Tejun Heo4447d352007-04-17 23:44:08 +09002248 ahci_power_down(ap);
Tejun Heo8e16f942006-11-20 15:42:36 +09002249 else {
Tejun Heoc1332872006-07-26 15:59:26 +09002250 ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002251 ahci_start_port(ap);
Tejun Heoc1332872006-07-26 15:59:26 +09002252 }
2253
2254 return rc;
2255}
2256
Tejun Heoc1332872006-07-26 15:59:26 +09002257static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
2258{
Jeff Garzikcca39742006-08-24 03:19:22 -04002259 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002260 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heoc1332872006-07-26 15:59:26 +09002261 u32 ctl;
2262
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002263 if (mesg.event & PM_EVENT_SLEEP) {
Tejun Heoc1332872006-07-26 15:59:26 +09002264 /* AHCI spec rev1.1 section 8.3.3:
2265 * Software must disable interrupts prior to requesting a
2266 * transition of the HBA to D3 state.
2267 */
2268 ctl = readl(mmio + HOST_CTL);
2269 ctl &= ~HOST_IRQ_EN;
2270 writel(ctl, mmio + HOST_CTL);
2271 readl(mmio + HOST_CTL); /* flush */
2272 }
2273
2274 return ata_pci_device_suspend(pdev, mesg);
2275}
2276
2277static int ahci_pci_device_resume(struct pci_dev *pdev)
2278{
Jeff Garzikcca39742006-08-24 03:19:22 -04002279 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heoc1332872006-07-26 15:59:26 +09002280 int rc;
2281
Tejun Heo553c4aa2006-12-26 19:39:50 +09002282 rc = ata_pci_device_do_resume(pdev);
2283 if (rc)
2284 return rc;
Tejun Heoc1332872006-07-26 15:59:26 +09002285
2286 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
Tejun Heo4447d352007-04-17 23:44:08 +09002287 rc = ahci_reset_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002288 if (rc)
2289 return rc;
2290
Tejun Heo4447d352007-04-17 23:44:08 +09002291 ahci_init_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002292 }
2293
Jeff Garzikcca39742006-08-24 03:19:22 -04002294 ata_host_resume(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002295
2296 return 0;
2297}
Tejun Heo438ac6d2007-03-02 17:31:26 +09002298#endif
Tejun Heoc1332872006-07-26 15:59:26 +09002299
Tejun Heo254950c2006-07-26 15:59:25 +09002300static int ahci_port_start(struct ata_port *ap)
2301{
Jeff Garzikcca39742006-08-24 03:19:22 -04002302 struct device *dev = ap->host->dev;
Tejun Heo254950c2006-07-26 15:59:25 +09002303 struct ahci_port_priv *pp;
Tejun Heo254950c2006-07-26 15:59:25 +09002304 void *mem;
2305 dma_addr_t mem_dma;
Tejun Heo254950c2006-07-26 15:59:25 +09002306
Tejun Heo24dc5f32007-01-20 16:00:28 +09002307 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Tejun Heo254950c2006-07-26 15:59:25 +09002308 if (!pp)
2309 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002310
Tejun Heo24dc5f32007-01-20 16:00:28 +09002311 mem = dmam_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma,
2312 GFP_KERNEL);
2313 if (!mem)
Tejun Heo254950c2006-07-26 15:59:25 +09002314 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002315 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
2316
2317 /*
2318 * First item in chunk of DMA memory: 32-slot command table,
2319 * 32 bytes each in size
2320 */
2321 pp->cmd_slot = mem;
2322 pp->cmd_slot_dma = mem_dma;
2323
2324 mem += AHCI_CMD_SLOT_SZ;
2325 mem_dma += AHCI_CMD_SLOT_SZ;
2326
2327 /*
2328 * Second item: Received-FIS area
2329 */
2330 pp->rx_fis = mem;
2331 pp->rx_fis_dma = mem_dma;
2332
2333 mem += AHCI_RX_FIS_SZ;
2334 mem_dma += AHCI_RX_FIS_SZ;
2335
2336 /*
2337 * Third item: data area for storing a single command
2338 * and its scatter-gather table
2339 */
2340 pp->cmd_tbl = mem;
2341 pp->cmd_tbl_dma = mem_dma;
2342
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002343 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002344 * Save off initial list of interrupts to be enabled.
2345 * This could be changed later
2346 */
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002347 pp->intr_mask = DEF_PORT_IRQ;
2348
Tejun Heo254950c2006-07-26 15:59:25 +09002349 ap->private_data = pp;
2350
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002351 /* engage engines, captain */
2352 return ahci_port_resume(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09002353}
2354
2355static void ahci_port_stop(struct ata_port *ap)
2356{
Tejun Heo0be0aa92006-07-26 15:59:26 +09002357 const char *emsg = NULL;
2358 int rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002359
Tejun Heo0be0aa92006-07-26 15:59:26 +09002360 /* de-initialize port */
Tejun Heo4447d352007-04-17 23:44:08 +09002361 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo0be0aa92006-07-26 15:59:26 +09002362 if (rc)
2363 ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
Tejun Heo254950c2006-07-26 15:59:25 +09002364}
2365
Tejun Heo4447d352007-04-17 23:44:08 +09002366static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 if (using_dac &&
2371 !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
2372 rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
2373 if (rc) {
2374 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2375 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002376 dev_printk(KERN_ERR, &pdev->dev,
2377 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 return rc;
2379 }
2380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 } else {
2382 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2383 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002384 dev_printk(KERN_ERR, &pdev->dev,
2385 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 return rc;
2387 }
2388 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2389 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002390 dev_printk(KERN_ERR, &pdev->dev,
2391 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 return rc;
2393 }
2394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 return 0;
2396}
2397
Tejun Heo4447d352007-04-17 23:44:08 +09002398static void ahci_print_info(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
Tejun Heo4447d352007-04-17 23:44:08 +09002400 struct ahci_host_priv *hpriv = host->private_data;
2401 struct pci_dev *pdev = to_pci_dev(host->dev);
2402 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 u32 vers, cap, impl, speed;
2404 const char *speed_s;
2405 u16 cc;
2406 const char *scc_s;
2407
2408 vers = readl(mmio + HOST_VERSION);
2409 cap = hpriv->cap;
2410 impl = hpriv->port_map;
2411
2412 speed = (cap >> 20) & 0xf;
2413 if (speed == 1)
2414 speed_s = "1.5";
2415 else if (speed == 2)
2416 speed_s = "3";
2417 else
2418 speed_s = "?";
2419
2420 pci_read_config_word(pdev, 0x0a, &cc);
Conke Huc9f89472007-01-09 05:32:51 -05002421 if (cc == PCI_CLASS_STORAGE_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 scc_s = "IDE";
Conke Huc9f89472007-01-09 05:32:51 -05002423 else if (cc == PCI_CLASS_STORAGE_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 scc_s = "SATA";
Conke Huc9f89472007-01-09 05:32:51 -05002425 else if (cc == PCI_CLASS_STORAGE_RAID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 scc_s = "RAID";
2427 else
2428 scc_s = "unknown";
2429
Jeff Garzika9524a72005-10-30 14:39:11 -05002430 dev_printk(KERN_INFO, &pdev->dev,
2431 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002433 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002435 (vers >> 24) & 0xff,
2436 (vers >> 16) & 0xff,
2437 (vers >> 8) & 0xff,
2438 vers & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
2440 ((cap >> 8) & 0x1f) + 1,
2441 (cap & 0x1f) + 1,
2442 speed_s,
2443 impl,
2444 scc_s);
2445
Jeff Garzika9524a72005-10-30 14:39:11 -05002446 dev_printk(KERN_INFO, &pdev->dev,
2447 "flags: "
Tejun Heo203ef6c2007-07-16 14:29:40 +09002448 "%s%s%s%s%s%s%s"
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002449 "%s%s%s%s%s%s%s"
2450 "%s\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002451 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 cap & (1 << 31) ? "64bit " : "",
2454 cap & (1 << 30) ? "ncq " : "",
Tejun Heo203ef6c2007-07-16 14:29:40 +09002455 cap & (1 << 29) ? "sntf " : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 cap & (1 << 28) ? "ilck " : "",
2457 cap & (1 << 27) ? "stag " : "",
2458 cap & (1 << 26) ? "pm " : "",
2459 cap & (1 << 25) ? "led " : "",
2460
2461 cap & (1 << 24) ? "clo " : "",
2462 cap & (1 << 19) ? "nz " : "",
2463 cap & (1 << 18) ? "only " : "",
2464 cap & (1 << 17) ? "pmp " : "",
2465 cap & (1 << 15) ? "pio " : "",
2466 cap & (1 << 14) ? "slum " : "",
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002467 cap & (1 << 13) ? "part " : "",
2468 cap & (1 << 6) ? "ems ": ""
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 );
2470}
2471
Tejun Heoedc93052007-10-25 14:59:16 +09002472/* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2473 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2474 * support PMP and the 4726 either directly exports the device
2475 * attached to the first downstream port or acts as a hardware storage
2476 * controller and emulate a single ATA device (can be RAID 0/1 or some
2477 * other configuration).
2478 *
2479 * When there's no device attached to the first downstream port of the
2480 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2481 * configure the 4726. However, ATA emulation of the device is very
2482 * lame. It doesn't send signature D2H Reg FIS after the initial
2483 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2484 *
2485 * The following function works around the problem by always using
2486 * hardreset on the port and not depending on receiving signature FIS
2487 * afterward. If signature FIS isn't received soon, ATA class is
2488 * assumed without follow-up softreset.
2489 */
2490static void ahci_p5wdh_workaround(struct ata_host *host)
2491{
2492 static struct dmi_system_id sysids[] = {
2493 {
2494 .ident = "P5W DH Deluxe",
2495 .matches = {
2496 DMI_MATCH(DMI_SYS_VENDOR,
2497 "ASUSTEK COMPUTER INC"),
2498 DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
2499 },
2500 },
2501 { }
2502 };
2503 struct pci_dev *pdev = to_pci_dev(host->dev);
2504
2505 if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) &&
2506 dmi_check_system(sysids)) {
2507 struct ata_port *ap = host->ports[1];
2508
2509 dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH "
2510 "Deluxe on-board SIMG4726 workaround\n");
2511
2512 ap->ops = &ahci_p5wdh_ops;
2513 ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA;
2514 }
2515}
2516
Tejun Heo24dc5f32007-01-20 16:00:28 +09002517static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
2519 static int printed_version;
Tejun Heoe297d992008-06-10 00:13:04 +09002520 unsigned int board_id = ent->driver_data;
2521 struct ata_port_info pi = ahci_port_info[board_id];
Tejun Heo4447d352007-04-17 23:44:08 +09002522 const struct ata_port_info *ppi[] = { &pi, NULL };
Tejun Heo24dc5f32007-01-20 16:00:28 +09002523 struct device *dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 struct ahci_host_priv *hpriv;
Tejun Heo4447d352007-04-17 23:44:08 +09002525 struct ata_host *host;
Tejun Heo837f5f82008-02-06 15:13:51 +09002526 int n_ports, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
2528 VPRINTK("ENTER\n");
2529
Tejun Heo12fad3f2006-05-15 21:03:55 +09002530 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
2531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05002533 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Tejun Heo4447d352007-04-17 23:44:08 +09002535 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09002536 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (rc)
2538 return rc;
2539
Tejun Heodea55132008-03-11 19:52:31 +09002540 /* AHCI controllers often implement SFF compatible interface.
2541 * Grab all PCI BARs just in case.
2542 */
2543 rc = pcim_iomap_regions_request_all(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002544 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002545 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002546 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002547 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Tejun Heoc4f77922007-12-06 15:09:43 +09002549 if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
2550 (pdev->device == 0x2652 || pdev->device == 0x2653)) {
2551 u8 map;
2552
2553 /* ICH6s share the same PCI ID for both piix and ahci
2554 * modes. Enabling ahci mode while MAP indicates
2555 * combined mode is a bad idea. Yield to ata_piix.
2556 */
2557 pci_read_config_byte(pdev, ICH_MAP, &map);
2558 if (map & 0x3) {
2559 dev_printk(KERN_INFO, &pdev->dev, "controller is in "
2560 "combined mode, can't enable AHCI mode\n");
2561 return -ENODEV;
2562 }
2563 }
2564
Tejun Heo24dc5f32007-01-20 16:00:28 +09002565 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
2566 if (!hpriv)
2567 return -ENOMEM;
Tejun Heo417a1a62007-09-23 13:19:55 +09002568 hpriv->flags |= (unsigned long)pi.private_data;
2569
Tejun Heoe297d992008-06-10 00:13:04 +09002570 /* MCP65 revision A1 and A2 can't do MSI */
2571 if (board_id == board_ahci_mcp65 &&
2572 (pdev->revision == 0xa1 || pdev->revision == 0xa2))
2573 hpriv->flags |= AHCI_HFLAG_NO_MSI;
2574
Tejun Heo417a1a62007-09-23 13:19:55 +09002575 if ((hpriv->flags & AHCI_HFLAG_NO_MSI) || pci_enable_msi(pdev))
2576 pci_intx(pdev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Tejun Heo4447d352007-04-17 23:44:08 +09002578 /* save initial config */
Tejun Heo417a1a62007-09-23 13:19:55 +09002579 ahci_save_initial_config(pdev, hpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Tejun Heo4447d352007-04-17 23:44:08 +09002581 /* prepare host */
Tejun Heo274c1fd2007-07-16 14:29:40 +09002582 if (hpriv->cap & HOST_CAP_NCQ)
Tejun Heo4447d352007-04-17 23:44:08 +09002583 pi.flags |= ATA_FLAG_NCQ;
2584
Tejun Heo7d50b602007-09-23 13:19:54 +09002585 if (hpriv->cap & HOST_CAP_PMP)
2586 pi.flags |= ATA_FLAG_PMP;
2587
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002588 if (ahci_em_messages && (hpriv->cap & HOST_CAP_EMS)) {
2589 u8 messages;
2590 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
2591 u32 em_loc = readl(mmio + HOST_EM_LOC);
2592 u32 em_ctl = readl(mmio + HOST_EM_CTL);
2593
2594 messages = (em_ctl & 0x000f0000) >> 16;
2595
2596 /* we only support LED message type right now */
2597 if ((messages & 0x01) && (ahci_em_messages == 1)) {
2598 /* store em_loc */
2599 hpriv->em_loc = ((em_loc >> 16) * 4);
2600 pi.flags |= ATA_FLAG_EM;
2601 if (!(em_ctl & EM_CTL_ALHD))
2602 pi.flags |= ATA_FLAG_SW_ACTIVITY;
2603 }
2604 }
2605
Tejun Heo837f5f82008-02-06 15:13:51 +09002606 /* CAP.NP sometimes indicate the index of the last enabled
2607 * port, at other times, that of the last possible port, so
2608 * determining the maximum port number requires looking at
2609 * both CAP.NP and port_map.
2610 */
2611 n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));
2612
2613 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
Tejun Heo4447d352007-04-17 23:44:08 +09002614 if (!host)
2615 return -ENOMEM;
2616 host->iomap = pcim_iomap_table(pdev);
2617 host->private_data = hpriv;
2618
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002619 if (pi.flags & ATA_FLAG_EM)
2620 ahci_reset_em(host);
2621
Tejun Heo4447d352007-04-17 23:44:08 +09002622 for (i = 0; i < host->n_ports; i++) {
Jeff Garzikdab632e2007-05-28 08:33:01 -04002623 struct ata_port *ap = host->ports[i];
Tejun Heo4447d352007-04-17 23:44:08 +09002624
Tejun Heocbcdd872007-08-18 13:14:55 +09002625 ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar");
2626 ata_port_pbar_desc(ap, AHCI_PCI_BAR,
2627 0x100 + ap->port_no * 0x80, "port");
2628
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002629 /* set initial link pm policy */
2630 ap->pm_policy = NOT_AVAILABLE;
2631
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -07002632 /* set enclosure management message type */
2633 if (ap->flags & ATA_FLAG_EM)
2634 ap->em_message_type = ahci_em_messages;
2635
2636
Jeff Garzikdab632e2007-05-28 08:33:01 -04002637 /* disabled/not-implemented port */
Tejun Heo350756f2008-04-07 22:47:21 +09002638 if (!(hpriv->port_map & (1 << i)))
Jeff Garzikdab632e2007-05-28 08:33:01 -04002639 ap->ops = &ata_dummy_port_ops;
Tejun Heo4447d352007-04-17 23:44:08 +09002640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
Tejun Heoedc93052007-10-25 14:59:16 +09002642 /* apply workaround for ASUS P5W DH Deluxe mainboard */
2643 ahci_p5wdh_workaround(host);
2644
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09002646 rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002648 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Tejun Heo4447d352007-04-17 23:44:08 +09002650 rc = ahci_reset_controller(host);
2651 if (rc)
2652 return rc;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002653
Tejun Heo4447d352007-04-17 23:44:08 +09002654 ahci_init_controller(host);
2655 ahci_print_info(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Tejun Heo4447d352007-04-17 23:44:08 +09002657 pci_set_master(pdev);
2658 return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
2659 &ahci_sht);
Jeff Garzik907f4672005-05-12 15:03:42 -04002660}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662static int __init ahci_init(void)
2663{
Pavel Roskinb7887192006-08-10 18:13:18 +09002664 return pci_register_driver(&ahci_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665}
2666
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667static void __exit ahci_exit(void)
2668{
2669 pci_unregister_driver(&ahci_pci_driver);
2670}
2671
2672
2673MODULE_AUTHOR("Jeff Garzik");
2674MODULE_DESCRIPTION("AHCI SATA low-level driver");
2675MODULE_LICENSE("GPL");
2676MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04002677MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679module_init(ahci_init);
2680module_exit(ahci_exit);