blob: 492e521715d6efe12775c94c8295702af5239865 [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60enum {
61 AHCI_PCI_BAR = 5,
Tejun Heo648a88b2006-11-09 15:08:40 +090062 AHCI_MAX_PORTS = 32,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 AHCI_MAX_SG = 168, /* hardware max is 64K */
64 AHCI_DMA_BOUNDARY = 0xffffffff,
Jens Axboebe5d8212007-05-22 09:45:39 +020065 AHCI_USE_CLUSTERING = 1,
Tejun Heo12fad3f2006-05-15 21:03:55 +090066 AHCI_MAX_CMDS = 32,
Tejun Heodd410ff2006-05-15 21:03:50 +090067 AHCI_CMD_SZ = 32,
Tejun Heo12fad3f2006-05-15 21:03:55 +090068 AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 AHCI_RX_FIS_SZ = 256,
Jeff Garzika0ea7322005-06-04 01:13:15 -040070 AHCI_CMD_TBL_CDB = 0x40,
Tejun Heodd410ff2006-05-15 21:03:50 +090071 AHCI_CMD_TBL_HDR_SZ = 0x80,
72 AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16),
73 AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS,
74 AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ +
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 AHCI_RX_FIS_SZ,
76 AHCI_IRQ_ON_SG = (1 << 31),
77 AHCI_CMD_ATAPI = (1 << 5),
78 AHCI_CMD_WRITE = (1 << 6),
Tejun Heo4b10e552006-03-12 11:25:27 +090079 AHCI_CMD_PREFETCH = (1 << 7),
Tejun Heo22b49982006-01-23 21:38:44 +090080 AHCI_CMD_RESET = (1 << 8),
81 AHCI_CMD_CLR_BUSY = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
Tejun Heo0291f952007-01-25 19:16:28 +090084 RX_FIS_SDB = 0x58, /* offset of SDB FIS data */
Tejun Heo78cd52d2006-05-15 20:58:29 +090085 RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 board_ahci = 0,
Tejun Heo7a234af2007-09-03 12:44:57 +090088 board_ahci_vt8251 = 1,
89 board_ahci_ign_iferr = 2,
90 board_ahci_sb600 = 3,
91 board_ahci_mv = 4,
Shane Huange39fc8c2008-02-22 05:00:31 -080092 board_ahci_sb700 = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 /* global controller registers */
95 HOST_CAP = 0x00, /* host capabilities */
96 HOST_CTL = 0x04, /* global host control */
97 HOST_IRQ_STAT = 0x08, /* interrupt status */
98 HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
99 HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
100
101 /* HOST_CTL bits */
102 HOST_RESET = (1 << 0), /* reset controller; self-clear */
103 HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
104 HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
105
106 /* HOST_CAP bits */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900107 HOST_CAP_SSC = (1 << 14), /* Slumber capable */
Tejun Heo7d50b602007-09-23 13:19:54 +0900108 HOST_CAP_PMP = (1 << 17), /* Port Multiplier support */
Tejun Heo22b49982006-01-23 21:38:44 +0900109 HOST_CAP_CLO = (1 << 24), /* Command List Override support */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400110 HOST_CAP_ALPM = (1 << 26), /* Aggressive Link PM support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900111 HOST_CAP_SSS = (1 << 27), /* Staggered Spin-up */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900112 HOST_CAP_SNTF = (1 << 29), /* SNotification register */
Tejun Heo979db802006-05-15 21:03:52 +0900113 HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */
Tejun Heodd410ff2006-05-15 21:03:50 +0900114 HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 /* registers for each SATA port */
117 PORT_LST_ADDR = 0x00, /* command list DMA addr */
118 PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
119 PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
120 PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
121 PORT_IRQ_STAT = 0x10, /* interrupt status */
122 PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
123 PORT_CMD = 0x18, /* port command */
124 PORT_TFDATA = 0x20, /* taskfile data */
125 PORT_SIG = 0x24, /* device TF signature */
126 PORT_CMD_ISSUE = 0x38, /* command issue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
128 PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
129 PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
130 PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900131 PORT_SCR_NTF = 0x3c, /* SATA phy register: SNotification */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /* PORT_IRQ_{STAT,MASK} bits */
134 PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
135 PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
136 PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
137 PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
138 PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
139 PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
140 PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
141 PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
142
143 PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
144 PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
145 PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
146 PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
147 PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
148 PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
149 PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
150 PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
151 PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
152
Tejun Heo78cd52d2006-05-15 20:58:29 +0900153 PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR |
154 PORT_IRQ_IF_ERR |
155 PORT_IRQ_CONNECT |
Tejun Heo42969712006-05-31 18:28:18 +0900156 PORT_IRQ_PHYRDY |
Tejun Heo7d50b602007-09-23 13:19:54 +0900157 PORT_IRQ_UNK_FIS |
158 PORT_IRQ_BAD_PMP,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900159 PORT_IRQ_ERROR = PORT_IRQ_FREEZE |
160 PORT_IRQ_TF_ERR |
161 PORT_IRQ_HBUS_DATA_ERR,
162 DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
163 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS |
164 PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /* PORT_CMD bits */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400167 PORT_CMD_ASP = (1 << 27), /* Aggressive Slumber/Partial */
168 PORT_CMD_ALPE = (1 << 26), /* Aggressive Link PM enable */
Jeff Garzik02eaa662005-11-12 01:32:19 -0500169 PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
Tejun Heo7d50b602007-09-23 13:19:54 +0900170 PORT_CMD_PMP = (1 << 17), /* PMP attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
172 PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
173 PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
Tejun Heo22b49982006-01-23 21:38:44 +0900174 PORT_CMD_CLO = (1 << 3), /* Command list override */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
176 PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
177 PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
178
Tejun Heo0be0aa92006-07-26 15:59:26 +0900179 PORT_CMD_ICC_MASK = (0xf << 28), /* i/f ICC state mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
181 PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
182 PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
Jeff Garzik4b0060f2005-06-04 00:50:22 -0400183
Tejun Heo417a1a62007-09-23 13:19:55 +0900184 /* hpriv->flags bits */
185 AHCI_HFLAG_NO_NCQ = (1 << 0),
186 AHCI_HFLAG_IGN_IRQ_IF_ERR = (1 << 1), /* ignore IRQ_IF_ERR */
187 AHCI_HFLAG_IGN_SERR_INTERNAL = (1 << 2), /* ignore SERR_INTERNAL */
188 AHCI_HFLAG_32BIT_ONLY = (1 << 3), /* force 32bit */
189 AHCI_HFLAG_MV_PATA = (1 << 4), /* PATA port */
190 AHCI_HFLAG_NO_MSI = (1 << 5), /* no PCI MSI */
Tejun Heo6949b912007-09-23 13:19:55 +0900191 AHCI_HFLAG_NO_PMP = (1 << 6), /* no PMP */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400192 AHCI_HFLAG_NO_HOTPLUG = (1 << 7), /* ignore PxSERR.DIAG.N */
Jeff Garzika8785392008-02-28 15:43:48 -0500193 AHCI_HFLAG_SECT255 = (1 << 8), /* max 255 sectors */
Tejun Heo417a1a62007-09-23 13:19:55 +0900194
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200195 /* ap->flags bits */
Tejun Heo1188c0d2007-04-23 02:41:05 +0900196
197 AHCI_FLAG_COMMON = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
198 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400199 ATA_FLAG_ACPI_SATA | ATA_FLAG_AN |
200 ATA_FLAG_IPM,
Tejun Heoc4f77922007-12-06 15:09:43 +0900201
202 ICH_MAP = 0x90, /* ICH MAP register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
205struct ahci_cmd_hdr {
Al Viro4ca4e432007-12-30 09:32:22 +0000206 __le32 opts;
207 __le32 status;
208 __le32 tbl_addr;
209 __le32 tbl_addr_hi;
210 __le32 reserved[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
213struct ahci_sg {
Al Viro4ca4e432007-12-30 09:32:22 +0000214 __le32 addr;
215 __le32 addr_hi;
216 __le32 reserved;
217 __le32 flags_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
220struct ahci_host_priv {
Tejun Heo417a1a62007-09-23 13:19:55 +0900221 unsigned int flags; /* AHCI_HFLAG_* */
Tejun Heod447df12007-03-18 22:15:33 +0900222 u32 cap; /* cap to use */
223 u32 port_map; /* port map to use */
224 u32 saved_cap; /* saved initial cap */
225 u32 saved_port_map; /* saved initial port_map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226};
227
228struct ahci_port_priv {
Tejun Heo7d50b602007-09-23 13:19:54 +0900229 struct ata_link *active_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 struct ahci_cmd_hdr *cmd_slot;
231 dma_addr_t cmd_slot_dma;
232 void *cmd_tbl;
233 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 void *rx_fis;
235 dma_addr_t rx_fis_dma;
Tejun Heo0291f952007-01-25 19:16:28 +0900236 /* for NCQ spurious interrupt analysis */
Tejun Heo0291f952007-01-25 19:16:28 +0900237 unsigned int ncq_saw_d2h:1;
238 unsigned int ncq_saw_dmas:1;
Tejun Heoafb2d552007-02-27 13:24:19 +0900239 unsigned int ncq_saw_sdb:1;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -0700240 u32 intr_mask; /* interrupts to enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241};
242
Tejun Heoda3dbb12007-07-16 14:29:40 +0900243static int ahci_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val);
244static int ahci_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400245static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900246static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247static int ahci_port_start(struct ata_port *ap);
248static void ahci_port_stop(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
250static void ahci_qc_prep(struct ata_queued_cmd *qc);
251static u8 ahci_check_status(struct ata_port *ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900252static void ahci_freeze(struct ata_port *ap);
253static void ahci_thaw(struct ata_port *ap);
Tejun Heo7d50b602007-09-23 13:19:54 +0900254static void ahci_pmp_attach(struct ata_port *ap);
255static void ahci_pmp_detach(struct ata_port *ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900256static void ahci_error_handler(struct ata_port *ap);
Tejun Heoad616ff2006-11-01 18:00:24 +0900257static void ahci_vt8251_error_handler(struct ata_port *ap);
Tejun Heoedc93052007-10-25 14:59:16 +0900258static void ahci_p5wdh_error_handler(struct ata_port *ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900259static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -0400260static int ahci_port_resume(struct ata_port *ap);
Jeff Garzika8785392008-02-28 15:43:48 -0500261static void ahci_dev_config(struct ata_device *dev);
Jeff Garzikdab632e2007-05-28 08:33:01 -0400262static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl);
263static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
264 u32 opts);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900265#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900266static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
Tejun Heoc1332872006-07-26 15:59:26 +0900267static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
268static int ahci_pci_device_resume(struct pci_dev *pdev);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900269#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400271static struct class_device_attribute *ahci_shost_attrs[] = {
272 &class_device_attr_link_power_management_policy,
273 NULL
274};
275
Jeff Garzik193515d2005-11-07 00:59:37 -0500276static struct scsi_host_template ahci_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 .module = THIS_MODULE,
278 .name = DRV_NAME,
279 .ioctl = ata_scsi_ioctl,
280 .queuecommand = ata_scsi_queuecmd,
Tejun Heo12fad3f2006-05-15 21:03:55 +0900281 .change_queue_depth = ata_scsi_change_queue_depth,
282 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 .this_id = ATA_SHT_THIS_ID,
284 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
286 .emulated = ATA_SHT_EMULATED,
287 .use_clustering = AHCI_USE_CLUSTERING,
288 .proc_name = DRV_NAME,
289 .dma_boundary = AHCI_DMA_BOUNDARY,
290 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900291 .slave_destroy = ata_scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 .bios_param = ata_std_bios_param,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400293 .shost_attrs = ahci_shost_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294};
295
Jeff Garzik057ace52005-10-22 14:27:05 -0400296static const struct ata_port_operations ahci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 .check_status = ahci_check_status,
298 .check_altstatus = ahci_check_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 .dev_select = ata_noop_dev_select,
300
Jeff Garzika8785392008-02-28 15:43:48 -0500301 .dev_config = ahci_dev_config,
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 .tf_read = ahci_tf_read,
304
Tejun Heo7d50b602007-09-23 13:19:54 +0900305 .qc_defer = sata_pmp_qc_defer_cmd_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 .qc_prep = ahci_qc_prep,
307 .qc_issue = ahci_qc_issue,
308
Tejun Heo358f9a72008-03-25 12:22:47 +0900309 .irq_clear = ata_noop_irq_clear,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 .scr_read = ahci_scr_read,
312 .scr_write = ahci_scr_write,
313
Tejun Heo78cd52d2006-05-15 20:58:29 +0900314 .freeze = ahci_freeze,
315 .thaw = ahci_thaw,
316
317 .error_handler = ahci_error_handler,
318 .post_internal_cmd = ahci_post_internal_cmd,
319
Tejun Heo7d50b602007-09-23 13:19:54 +0900320 .pmp_attach = ahci_pmp_attach,
321 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900322
Tejun Heo438ac6d2007-03-02 17:31:26 +0900323#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900324 .port_suspend = ahci_port_suspend,
325 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900326#endif
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400327 .enable_pm = ahci_enable_alpm,
328 .disable_pm = ahci_disable_alpm,
Tejun Heoc1332872006-07-26 15:59:26 +0900329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 .port_start = ahci_port_start,
331 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332};
333
Tejun Heoad616ff2006-11-01 18:00:24 +0900334static const struct ata_port_operations ahci_vt8251_ops = {
Tejun Heoad616ff2006-11-01 18:00:24 +0900335 .check_status = ahci_check_status,
336 .check_altstatus = ahci_check_status,
337 .dev_select = ata_noop_dev_select,
338
339 .tf_read = ahci_tf_read,
340
Tejun Heo7d50b602007-09-23 13:19:54 +0900341 .qc_defer = sata_pmp_qc_defer_cmd_switch,
Tejun Heoad616ff2006-11-01 18:00:24 +0900342 .qc_prep = ahci_qc_prep,
343 .qc_issue = ahci_qc_issue,
344
Tejun Heo358f9a72008-03-25 12:22:47 +0900345 .irq_clear = ata_noop_irq_clear,
Tejun Heoad616ff2006-11-01 18:00:24 +0900346
347 .scr_read = ahci_scr_read,
348 .scr_write = ahci_scr_write,
349
350 .freeze = ahci_freeze,
351 .thaw = ahci_thaw,
352
353 .error_handler = ahci_vt8251_error_handler,
354 .post_internal_cmd = ahci_post_internal_cmd,
355
Tejun Heo7d50b602007-09-23 13:19:54 +0900356 .pmp_attach = ahci_pmp_attach,
357 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900358
Tejun Heo438ac6d2007-03-02 17:31:26 +0900359#ifdef CONFIG_PM
Tejun Heoad616ff2006-11-01 18:00:24 +0900360 .port_suspend = ahci_port_suspend,
361 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900362#endif
Tejun Heoad616ff2006-11-01 18:00:24 +0900363
364 .port_start = ahci_port_start,
365 .port_stop = ahci_port_stop,
366};
367
Tejun Heoedc93052007-10-25 14:59:16 +0900368static const struct ata_port_operations ahci_p5wdh_ops = {
369 .check_status = ahci_check_status,
370 .check_altstatus = ahci_check_status,
371 .dev_select = ata_noop_dev_select,
372
373 .tf_read = ahci_tf_read,
374
375 .qc_defer = sata_pmp_qc_defer_cmd_switch,
376 .qc_prep = ahci_qc_prep,
377 .qc_issue = ahci_qc_issue,
378
Tejun Heo358f9a72008-03-25 12:22:47 +0900379 .irq_clear = ata_noop_irq_clear,
Tejun Heoedc93052007-10-25 14:59:16 +0900380
381 .scr_read = ahci_scr_read,
382 .scr_write = ahci_scr_write,
383
384 .freeze = ahci_freeze,
385 .thaw = ahci_thaw,
386
387 .error_handler = ahci_p5wdh_error_handler,
388 .post_internal_cmd = ahci_post_internal_cmd,
389
390 .pmp_attach = ahci_pmp_attach,
391 .pmp_detach = ahci_pmp_detach,
392
393#ifdef CONFIG_PM
394 .port_suspend = ahci_port_suspend,
395 .port_resume = ahci_port_resume,
396#endif
397
398 .port_start = ahci_port_start,
399 .port_stop = ahci_port_stop,
400};
401
Tejun Heo417a1a62007-09-23 13:19:55 +0900402#define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
403
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100404static const struct ata_port_info ahci_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /* board_ahci */
406 {
Tejun Heo1188c0d2007-04-23 02:41:05 +0900407 .flags = AHCI_FLAG_COMMON,
Brett Russ7da79312005-09-01 21:53:34 -0400408 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400409 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 .port_ops = &ahci_ops,
411 },
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200412 /* board_ahci_vt8251 */
413 {
Tejun Heo6949b912007-09-23 13:19:55 +0900414 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900415 .flags = AHCI_FLAG_COMMON,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200416 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400417 .udma_mask = ATA_UDMA6,
Tejun Heoad616ff2006-11-01 18:00:24 +0900418 .port_ops = &ahci_vt8251_ops,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200419 },
Tejun Heo41669552006-11-29 11:33:14 +0900420 /* board_ahci_ign_iferr */
421 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900422 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR),
423 .flags = AHCI_FLAG_COMMON,
Tejun Heo41669552006-11-29 11:33:14 +0900424 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400425 .udma_mask = ATA_UDMA6,
Tejun Heo41669552006-11-29 11:33:14 +0900426 .port_ops = &ahci_ops,
427 },
Conke Hu55a61602007-03-27 18:33:05 +0800428 /* board_ahci_sb600 */
429 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900430 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
Jeff Garzik4cde32f2008-03-24 22:40:40 -0400431 AHCI_HFLAG_32BIT_ONLY |
Jeff Garzika8785392008-02-28 15:43:48 -0500432 AHCI_HFLAG_SECT255 | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900433 .flags = AHCI_FLAG_COMMON,
Conke Hu55a61602007-03-27 18:33:05 +0800434 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400435 .udma_mask = ATA_UDMA6,
Conke Hu55a61602007-03-27 18:33:05 +0800436 .port_ops = &ahci_ops,
437 },
Jeff Garzikcd70c262007-07-08 02:29:42 -0400438 /* board_ahci_mv */
439 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900440 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI |
441 AHCI_HFLAG_MV_PATA),
Jeff Garzikcd70c262007-07-08 02:29:42 -0400442 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo417a1a62007-09-23 13:19:55 +0900443 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
Jeff Garzikcd70c262007-07-08 02:29:42 -0400444 .pio_mask = 0x1f, /* pio0-4 */
445 .udma_mask = ATA_UDMA6,
446 .port_ops = &ahci_ops,
447 },
Shane Huange39fc8c2008-02-22 05:00:31 -0800448 /* board_ahci_sb700 */
449 {
450 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
451 AHCI_HFLAG_NO_PMP),
452 .flags = AHCI_FLAG_COMMON,
Shane Huange39fc8c2008-02-22 05:00:31 -0800453 .pio_mask = 0x1f, /* pio0-4 */
454 .udma_mask = ATA_UDMA6,
455 .port_ops = &ahci_ops,
456 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457};
458
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500459static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400460 /* Intel */
Jeff Garzik54bb3a92006-09-27 22:20:11 -0400461 { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
462 { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
463 { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
464 { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
465 { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
Tejun Heo82490c02007-01-23 15:13:39 +0900466 { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
Jeff Garzik54bb3a92006-09-27 22:20:11 -0400467 { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
468 { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
469 { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
470 { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
Tejun Heo7a234af2007-09-03 12:44:57 +0900471 { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */
472 { PCI_VDEVICE(INTEL, 0x2822), board_ahci }, /* ICH8 */
473 { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */
474 { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */
475 { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */
476 { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */
477 { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */
478 { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */
479 { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */
480 { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */
481 { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */
482 { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */
483 { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */
484 { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */
485 { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */
486 { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */
487 { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */
Jason Gastond4155e62007-09-20 17:35:00 -0400488 { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */
489 { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */
Jason Gaston16ad1ad2008-01-28 17:34:14 -0800490 { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */
491 { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400492
Tejun Heoe34bb372007-02-26 20:24:03 +0900493 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
494 { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
495 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400496
497 /* ATI */
Conke Huc65ec1c2007-04-11 18:23:14 +0800498 { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
Shane Huange39fc8c2008-02-22 05:00:31 -0800499 { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb700 }, /* ATI SB700/800 */
500 { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb700 }, /* ATI SB700/800 */
501 { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb700 }, /* ATI SB700/800 */
502 { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb700 }, /* ATI SB700/800 */
503 { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb700 }, /* ATI SB700/800 */
504 { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb700 }, /* ATI SB700/800 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400505
506 /* VIA */
Jeff Garzik54bb3a92006-09-27 22:20:11 -0400507 { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
Tejun Heobf335542007-04-11 17:27:14 +0900508 { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400509
510 /* NVIDIA */
Jeff Garzik54bb3a92006-09-27 22:20:11 -0400511 { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci }, /* MCP65 */
512 { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci }, /* MCP65 */
513 { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci }, /* MCP65 */
514 { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci }, /* MCP65 */
Peer Chen6fbf5ba2006-12-20 14:18:00 -0500515 { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci }, /* MCP65 */
516 { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci }, /* MCP65 */
517 { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci }, /* MCP65 */
518 { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci }, /* MCP65 */
519 { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci }, /* MCP67 */
520 { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci }, /* MCP67 */
521 { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci }, /* MCP67 */
522 { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci }, /* MCP67 */
Peer Chen895663c2006-11-02 17:59:46 -0500523 { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci }, /* MCP67 */
524 { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci }, /* MCP67 */
525 { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci }, /* MCP67 */
526 { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci }, /* MCP67 */
527 { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci }, /* MCP67 */
528 { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci }, /* MCP67 */
529 { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci }, /* MCP67 */
530 { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci }, /* MCP67 */
Peer Chen0522b282007-06-07 18:05:12 +0800531 { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci }, /* MCP73 */
532 { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci }, /* MCP73 */
533 { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci }, /* MCP73 */
534 { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci }, /* MCP73 */
535 { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci }, /* MCP73 */
536 { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci }, /* MCP73 */
537 { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci }, /* MCP73 */
538 { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci }, /* MCP73 */
539 { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci }, /* MCP73 */
540 { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci }, /* MCP73 */
541 { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci }, /* MCP73 */
542 { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci }, /* MCP73 */
543 { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */
544 { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */
545 { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */
546 { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */
547 { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */
548 { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */
549 { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */
550 { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */
551 { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */
552 { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
553 { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
554 { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
peerchen6ba86952007-12-03 22:20:37 +0800555 { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */
556 { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */
557 { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */
558 { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */
Peer Chen71008192007-09-24 10:16:25 +0800559 { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */
560 { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */
561 { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */
562 { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */
563 { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */
564 { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */
565 { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */
566 { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */
peerchen70d562c2008-03-06 21:22:41 +0800567 { PCI_VDEVICE(NVIDIA, 0x0bc8), board_ahci }, /* MCP7B */
568 { PCI_VDEVICE(NVIDIA, 0x0bc9), board_ahci }, /* MCP7B */
569 { PCI_VDEVICE(NVIDIA, 0x0bca), board_ahci }, /* MCP7B */
570 { PCI_VDEVICE(NVIDIA, 0x0bcb), board_ahci }, /* MCP7B */
571 { PCI_VDEVICE(NVIDIA, 0x0bcc), board_ahci }, /* MCP7B */
572 { PCI_VDEVICE(NVIDIA, 0x0bcd), board_ahci }, /* MCP7B */
573 { PCI_VDEVICE(NVIDIA, 0x0bce), board_ahci }, /* MCP7B */
574 { PCI_VDEVICE(NVIDIA, 0x0bcf), board_ahci }, /* MCP7B */
575 { PCI_VDEVICE(NVIDIA, 0x0bd0), board_ahci }, /* MCP7B */
576 { PCI_VDEVICE(NVIDIA, 0x0bd1), board_ahci }, /* MCP7B */
577 { PCI_VDEVICE(NVIDIA, 0x0bd2), board_ahci }, /* MCP7B */
578 { PCI_VDEVICE(NVIDIA, 0x0bd3), board_ahci }, /* MCP7B */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400579
Jeff Garzik95916ed2006-07-29 04:10:14 -0400580 /* SiS */
Jeff Garzik54bb3a92006-09-27 22:20:11 -0400581 { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */
582 { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 966 */
583 { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */
Jeff Garzik95916ed2006-07-29 04:10:14 -0400584
Jeff Garzikcd70c262007-07-08 02:29:42 -0400585 /* Marvell */
586 { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100587 { PCI_VDEVICE(MARVELL, 0x6121), board_ahci_mv }, /* 6121 */
Jeff Garzikcd70c262007-07-08 02:29:42 -0400588
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500589 /* Generic, PCI class code for AHCI */
590 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Conke Huc9f89472007-01-09 05:32:51 -0500591 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 { } /* terminate list */
594};
595
596
597static struct pci_driver ahci_pci_driver = {
598 .name = DRV_NAME,
599 .id_table = ahci_pci_tbl,
600 .probe = ahci_init_one,
Tejun Heo24dc5f32007-01-20 16:00:28 +0900601 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900602#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900603 .suspend = ahci_pci_device_suspend,
604 .resume = ahci_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900605#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606};
607
608
Tejun Heo98fa4b62006-11-02 12:17:23 +0900609static inline int ahci_nr_ports(u32 cap)
610{
611 return (cap & 0x1f) + 1;
612}
613
Jeff Garzikdab632e2007-05-28 08:33:01 -0400614static inline void __iomem *__ahci_port_base(struct ata_host *host,
615 unsigned int port_no)
616{
617 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
618
619 return mmio + 0x100 + (port_no * 0x80);
620}
621
Tejun Heo4447d352007-04-17 23:44:08 +0900622static inline void __iomem *ahci_port_base(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Jeff Garzikdab632e2007-05-28 08:33:01 -0400624 return __ahci_port_base(ap->host, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Tejun Heob710a1f2008-01-05 23:11:57 +0900627static void ahci_enable_ahci(void __iomem *mmio)
628{
629 u32 tmp;
630
631 /* turn on AHCI_EN */
632 tmp = readl(mmio + HOST_CTL);
633 if (!(tmp & HOST_AHCI_EN)) {
634 tmp |= HOST_AHCI_EN;
635 writel(tmp, mmio + HOST_CTL);
636 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
637 WARN_ON(!(tmp & HOST_AHCI_EN));
638 }
639}
640
Tejun Heod447df12007-03-18 22:15:33 +0900641/**
642 * ahci_save_initial_config - Save and fixup initial config values
Tejun Heo4447d352007-04-17 23:44:08 +0900643 * @pdev: target PCI device
Tejun Heo4447d352007-04-17 23:44:08 +0900644 * @hpriv: host private area to store config values
Tejun Heod447df12007-03-18 22:15:33 +0900645 *
646 * Some registers containing configuration info might be setup by
647 * BIOS and might be cleared on reset. This function saves the
648 * initial values of those registers into @hpriv such that they
649 * can be restored after controller reset.
650 *
651 * If inconsistent, config values are fixed up by this function.
652 *
653 * LOCKING:
654 * None.
655 */
Tejun Heo4447d352007-04-17 23:44:08 +0900656static void ahci_save_initial_config(struct pci_dev *pdev,
Tejun Heo4447d352007-04-17 23:44:08 +0900657 struct ahci_host_priv *hpriv)
Tejun Heod447df12007-03-18 22:15:33 +0900658{
Tejun Heo4447d352007-04-17 23:44:08 +0900659 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +0900660 u32 cap, port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900661 int i;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100662 int mv;
Tejun Heod447df12007-03-18 22:15:33 +0900663
Tejun Heob710a1f2008-01-05 23:11:57 +0900664 /* make sure AHCI mode is enabled before accessing CAP */
665 ahci_enable_ahci(mmio);
666
Tejun Heod447df12007-03-18 22:15:33 +0900667 /* Values prefixed with saved_ are written back to host after
668 * reset. Values without are used for driver operation.
669 */
670 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
671 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
672
Tejun Heo274c1fd2007-07-16 14:29:40 +0900673 /* some chips have errata preventing 64bit use */
Tejun Heo417a1a62007-09-23 13:19:55 +0900674 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Tejun Heoc7a42152007-05-18 16:23:19 +0200675 dev_printk(KERN_INFO, &pdev->dev,
676 "controller can't do 64bit DMA, forcing 32bit\n");
677 cap &= ~HOST_CAP_64;
678 }
679
Tejun Heo417a1a62007-09-23 13:19:55 +0900680 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Tejun Heo274c1fd2007-07-16 14:29:40 +0900681 dev_printk(KERN_INFO, &pdev->dev,
682 "controller can't do NCQ, turning off CAP_NCQ\n");
683 cap &= ~HOST_CAP_NCQ;
684 }
685
Roel Kluin258cd842008-03-09 21:42:40 +0100686 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Tejun Heo6949b912007-09-23 13:19:55 +0900687 dev_printk(KERN_INFO, &pdev->dev,
688 "controller can't do PMP, turning off CAP_PMP\n");
689 cap &= ~HOST_CAP_PMP;
690 }
691
Jeff Garzikcd70c262007-07-08 02:29:42 -0400692 /*
693 * Temporary Marvell 6145 hack: PATA port presence
694 * is asserted through the standard AHCI port
695 * presence register, as bit 4 (counting from 0)
696 */
Tejun Heo417a1a62007-09-23 13:19:55 +0900697 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100698 if (pdev->device == 0x6121)
699 mv = 0x3;
700 else
701 mv = 0xf;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400702 dev_printk(KERN_ERR, &pdev->dev,
703 "MV_AHCI HACK: port_map %x -> %x\n",
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100704 port_map,
705 port_map & mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -0400706
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +0100707 port_map &= mv;
Jeff Garzikcd70c262007-07-08 02:29:42 -0400708 }
709
Tejun Heo17199b12007-03-18 22:26:53 +0900710 /* cross check port_map and cap.n_ports */
Tejun Heo7a234af2007-09-03 12:44:57 +0900711 if (port_map) {
Tejun Heo837f5f82008-02-06 15:13:51 +0900712 int map_ports = 0;
Tejun Heo17199b12007-03-18 22:26:53 +0900713
Tejun Heo837f5f82008-02-06 15:13:51 +0900714 for (i = 0; i < AHCI_MAX_PORTS; i++)
715 if (port_map & (1 << i))
716 map_ports++;
Tejun Heo17199b12007-03-18 22:26:53 +0900717
Tejun Heo837f5f82008-02-06 15:13:51 +0900718 /* If PI has more ports than n_ports, whine, clear
719 * port_map and let it be generated from n_ports.
Tejun Heo17199b12007-03-18 22:26:53 +0900720 */
Tejun Heo837f5f82008-02-06 15:13:51 +0900721 if (map_ports > ahci_nr_ports(cap)) {
Tejun Heo4447d352007-04-17 23:44:08 +0900722 dev_printk(KERN_WARNING, &pdev->dev,
Tejun Heo837f5f82008-02-06 15:13:51 +0900723 "implemented port map (0x%x) contains more "
724 "ports than nr_ports (%u), using nr_ports\n",
725 port_map, ahci_nr_ports(cap));
Tejun Heo7a234af2007-09-03 12:44:57 +0900726 port_map = 0;
727 }
728 }
729
730 /* fabricate port_map from cap.nr_ports */
731 if (!port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900732 port_map = (1 << ahci_nr_ports(cap)) - 1;
Tejun Heo7a234af2007-09-03 12:44:57 +0900733 dev_printk(KERN_WARNING, &pdev->dev,
734 "forcing PORTS_IMPL to 0x%x\n", port_map);
735
736 /* write the fixed up value to the PI register */
737 hpriv->saved_port_map = port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900738 }
739
Tejun Heod447df12007-03-18 22:15:33 +0900740 /* record values to use during operation */
741 hpriv->cap = cap;
742 hpriv->port_map = port_map;
743}
744
745/**
746 * ahci_restore_initial_config - Restore initial config
Tejun Heo4447d352007-04-17 23:44:08 +0900747 * @host: target ATA host
Tejun Heod447df12007-03-18 22:15:33 +0900748 *
749 * Restore initial config stored by ahci_save_initial_config().
750 *
751 * LOCKING:
752 * None.
753 */
Tejun Heo4447d352007-04-17 23:44:08 +0900754static void ahci_restore_initial_config(struct ata_host *host)
Tejun Heod447df12007-03-18 22:15:33 +0900755{
Tejun Heo4447d352007-04-17 23:44:08 +0900756 struct ahci_host_priv *hpriv = host->private_data;
757 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
758
Tejun Heod447df12007-03-18 22:15:33 +0900759 writel(hpriv->saved_cap, mmio + HOST_CAP);
760 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
761 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
762}
763
Tejun Heo203ef6c2007-07-16 14:29:40 +0900764static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900766 static const int offset[] = {
767 [SCR_STATUS] = PORT_SCR_STAT,
768 [SCR_CONTROL] = PORT_SCR_CTL,
769 [SCR_ERROR] = PORT_SCR_ERR,
770 [SCR_ACTIVE] = PORT_SCR_ACT,
771 [SCR_NOTIFICATION] = PORT_SCR_NTF,
772 };
773 struct ahci_host_priv *hpriv = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Tejun Heo203ef6c2007-07-16 14:29:40 +0900775 if (sc_reg < ARRAY_SIZE(offset) &&
776 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
777 return offset[sc_reg];
Tejun Heoda3dbb12007-07-16 14:29:40 +0900778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
Tejun Heo203ef6c2007-07-16 14:29:40 +0900781static int ahci_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900783 void __iomem *port_mmio = ahci_port_base(ap);
784 int offset = ahci_scr_offset(ap, sc_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Tejun Heo203ef6c2007-07-16 14:29:40 +0900786 if (offset) {
787 *val = readl(port_mmio + offset);
788 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
Tejun Heo203ef6c2007-07-16 14:29:40 +0900790 return -EINVAL;
791}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Tejun Heo203ef6c2007-07-16 14:29:40 +0900793static int ahci_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val)
794{
795 void __iomem *port_mmio = ahci_port_base(ap);
796 int offset = ahci_scr_offset(ap, sc_reg);
797
798 if (offset) {
799 writel(val, port_mmio + offset);
800 return 0;
801 }
802 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
Tejun Heo4447d352007-04-17 23:44:08 +0900805static void ahci_start_engine(struct ata_port *ap)
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900806{
Tejun Heo4447d352007-04-17 23:44:08 +0900807 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900808 u32 tmp;
809
Tejun Heod8fcd112006-07-26 15:59:25 +0900810 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +0900811 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900812 tmp |= PORT_CMD_START;
813 writel(tmp, port_mmio + PORT_CMD);
814 readl(port_mmio + PORT_CMD); /* flush */
815}
816
Tejun Heo4447d352007-04-17 23:44:08 +0900817static int ahci_stop_engine(struct ata_port *ap)
Tejun Heo254950c2006-07-26 15:59:25 +0900818{
Tejun Heo4447d352007-04-17 23:44:08 +0900819 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo254950c2006-07-26 15:59:25 +0900820 u32 tmp;
821
822 tmp = readl(port_mmio + PORT_CMD);
823
Tejun Heod8fcd112006-07-26 15:59:25 +0900824 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900825 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
826 return 0;
827
Tejun Heod8fcd112006-07-26 15:59:25 +0900828 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900829 tmp &= ~PORT_CMD_START;
830 writel(tmp, port_mmio + PORT_CMD);
831
Tejun Heod8fcd112006-07-26 15:59:25 +0900832 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +0900833 tmp = ata_wait_register(port_mmio + PORT_CMD,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400834 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +0900835 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +0900836 return -EIO;
837
838 return 0;
839}
840
Tejun Heo4447d352007-04-17 23:44:08 +0900841static void ahci_start_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900842{
Tejun Heo4447d352007-04-17 23:44:08 +0900843 void __iomem *port_mmio = ahci_port_base(ap);
844 struct ahci_host_priv *hpriv = ap->host->private_data;
845 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo0be0aa92006-07-26 15:59:26 +0900846 u32 tmp;
847
848 /* set FIS registers */
Tejun Heo4447d352007-04-17 23:44:08 +0900849 if (hpriv->cap & HOST_CAP_64)
850 writel((pp->cmd_slot_dma >> 16) >> 16,
851 port_mmio + PORT_LST_ADDR_HI);
852 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900853
Tejun Heo4447d352007-04-17 23:44:08 +0900854 if (hpriv->cap & HOST_CAP_64)
855 writel((pp->rx_fis_dma >> 16) >> 16,
856 port_mmio + PORT_FIS_ADDR_HI);
857 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900858
859 /* enable FIS reception */
860 tmp = readl(port_mmio + PORT_CMD);
861 tmp |= PORT_CMD_FIS_RX;
862 writel(tmp, port_mmio + PORT_CMD);
863
864 /* flush */
865 readl(port_mmio + PORT_CMD);
866}
867
Tejun Heo4447d352007-04-17 23:44:08 +0900868static int ahci_stop_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);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900871 u32 tmp;
872
873 /* disable FIS reception */
874 tmp = readl(port_mmio + PORT_CMD);
875 tmp &= ~PORT_CMD_FIS_RX;
876 writel(tmp, port_mmio + PORT_CMD);
877
878 /* wait for completion, spec says 500ms, give it 1000 */
879 tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
880 PORT_CMD_FIS_ON, 10, 1000);
881 if (tmp & PORT_CMD_FIS_ON)
882 return -EBUSY;
883
884 return 0;
885}
886
Tejun Heo4447d352007-04-17 23:44:08 +0900887static void ahci_power_up(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900888{
Tejun Heo4447d352007-04-17 23:44:08 +0900889 struct ahci_host_priv *hpriv = ap->host->private_data;
890 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900891 u32 cmd;
892
893 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
894
895 /* spin up device */
Tejun Heo4447d352007-04-17 23:44:08 +0900896 if (hpriv->cap & HOST_CAP_SSS) {
Tejun Heo0be0aa92006-07-26 15:59:26 +0900897 cmd |= PORT_CMD_SPIN_UP;
898 writel(cmd, port_mmio + PORT_CMD);
899 }
900
901 /* wake up link */
902 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
903}
904
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400905static void ahci_disable_alpm(struct ata_port *ap)
906{
907 struct ahci_host_priv *hpriv = ap->host->private_data;
908 void __iomem *port_mmio = ahci_port_base(ap);
909 u32 cmd;
910 struct ahci_port_priv *pp = ap->private_data;
911
912 /* IPM bits should be disabled by libata-core */
913 /* get the existing command bits */
914 cmd = readl(port_mmio + PORT_CMD);
915
916 /* disable ALPM and ASP */
917 cmd &= ~PORT_CMD_ASP;
918 cmd &= ~PORT_CMD_ALPE;
919
920 /* force the interface back to active */
921 cmd |= PORT_CMD_ICC_ACTIVE;
922
923 /* write out new cmd value */
924 writel(cmd, port_mmio + PORT_CMD);
925 cmd = readl(port_mmio + PORT_CMD);
926
927 /* wait 10ms to be sure we've come out of any low power state */
928 msleep(10);
929
930 /* clear out any PhyRdy stuff from interrupt status */
931 writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT);
932
933 /* go ahead and clean out PhyRdy Change from Serror too */
934 ahci_scr_write(ap, SCR_ERROR, ((1 << 16) | (1 << 18)));
935
936 /*
937 * Clear flag to indicate that we should ignore all PhyRdy
938 * state changes
939 */
940 hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG;
941
942 /*
943 * Enable interrupts on Phy Ready.
944 */
945 pp->intr_mask |= PORT_IRQ_PHYRDY;
946 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
947
948 /*
949 * don't change the link pm policy - we can be called
950 * just to turn of link pm temporarily
951 */
952}
953
954static int ahci_enable_alpm(struct ata_port *ap,
955 enum link_pm policy)
956{
957 struct ahci_host_priv *hpriv = ap->host->private_data;
958 void __iomem *port_mmio = ahci_port_base(ap);
959 u32 cmd;
960 struct ahci_port_priv *pp = ap->private_data;
961 u32 asp;
962
963 /* Make sure the host is capable of link power management */
964 if (!(hpriv->cap & HOST_CAP_ALPM))
965 return -EINVAL;
966
967 switch (policy) {
968 case MAX_PERFORMANCE:
969 case NOT_AVAILABLE:
970 /*
971 * if we came here with NOT_AVAILABLE,
972 * it just means this is the first time we
973 * have tried to enable - default to max performance,
974 * and let the user go to lower power modes on request.
975 */
976 ahci_disable_alpm(ap);
977 return 0;
978 case MIN_POWER:
979 /* configure HBA to enter SLUMBER */
980 asp = PORT_CMD_ASP;
981 break;
982 case MEDIUM_POWER:
983 /* configure HBA to enter PARTIAL */
984 asp = 0;
985 break;
986 default:
987 return -EINVAL;
988 }
989
990 /*
991 * Disable interrupts on Phy Ready. This keeps us from
992 * getting woken up due to spurious phy ready interrupts
993 * TBD - Hot plug should be done via polling now, is
994 * that even supported?
995 */
996 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
997 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
998
999 /*
1000 * Set a flag to indicate that we should ignore all PhyRdy
1001 * state changes since these can happen now whenever we
1002 * change link state
1003 */
1004 hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG;
1005
1006 /* get the existing command bits */
1007 cmd = readl(port_mmio + PORT_CMD);
1008
1009 /*
1010 * Set ASP based on Policy
1011 */
1012 cmd |= asp;
1013
1014 /*
1015 * Setting this bit will instruct the HBA to aggressively
1016 * enter a lower power link state when it's appropriate and
1017 * based on the value set above for ASP
1018 */
1019 cmd |= PORT_CMD_ALPE;
1020
1021 /* write out new cmd value */
1022 writel(cmd, port_mmio + PORT_CMD);
1023 cmd = readl(port_mmio + PORT_CMD);
1024
1025 /* IPM bits should be set by libata-core */
1026 return 0;
1027}
1028
Tejun Heo438ac6d2007-03-02 17:31:26 +09001029#ifdef CONFIG_PM
Tejun Heo4447d352007-04-17 23:44:08 +09001030static void ahci_power_down(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001031{
Tejun Heo4447d352007-04-17 23:44:08 +09001032 struct ahci_host_priv *hpriv = ap->host->private_data;
1033 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001034 u32 cmd, scontrol;
1035
Tejun Heo4447d352007-04-17 23:44:08 +09001036 if (!(hpriv->cap & HOST_CAP_SSS))
Tejun Heo07c53da2007-01-21 02:10:11 +09001037 return;
1038
1039 /* put device into listen mode, first set PxSCTL.DET to 0 */
1040 scontrol = readl(port_mmio + PORT_SCR_CTL);
1041 scontrol &= ~0xf;
1042 writel(scontrol, port_mmio + PORT_SCR_CTL);
1043
1044 /* then set PxCMD.SUD to 0 */
Tejun Heo0be0aa92006-07-26 15:59:26 +09001045 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
Tejun Heo07c53da2007-01-21 02:10:11 +09001046 cmd &= ~PORT_CMD_SPIN_UP;
1047 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001048}
Tejun Heo438ac6d2007-03-02 17:31:26 +09001049#endif
Tejun Heo0be0aa92006-07-26 15:59:26 +09001050
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001051static void ahci_start_port(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001052{
Tejun Heo0be0aa92006-07-26 15:59:26 +09001053 /* enable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001054 ahci_start_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001055
1056 /* enable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001057 ahci_start_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001058}
1059
Tejun Heo4447d352007-04-17 23:44:08 +09001060static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001061{
1062 int rc;
1063
1064 /* disable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001065 rc = ahci_stop_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001066 if (rc) {
1067 *emsg = "failed to stop engine";
1068 return rc;
1069 }
1070
1071 /* disable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001072 rc = ahci_stop_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001073 if (rc) {
1074 *emsg = "failed stop FIS RX";
1075 return rc;
1076 }
1077
Tejun Heo0be0aa92006-07-26 15:59:26 +09001078 return 0;
1079}
1080
Tejun Heo4447d352007-04-17 23:44:08 +09001081static int ahci_reset_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001082{
Tejun Heo4447d352007-04-17 23:44:08 +09001083 struct pci_dev *pdev = to_pci_dev(host->dev);
Tejun Heo49f29092007-11-19 16:03:44 +09001084 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001085 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +09001086 u32 tmp;
Tejun Heod91542c2006-07-26 15:59:26 +09001087
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001088 /* we must be in AHCI mode, before using anything
1089 * AHCI-specific, such as HOST_RESET.
1090 */
Tejun Heob710a1f2008-01-05 23:11:57 +09001091 ahci_enable_ahci(mmio);
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001092
1093 /* global controller reset */
Tejun Heoa22e6442008-03-10 10:25:25 +09001094 if (!ahci_skip_host_reset) {
1095 tmp = readl(mmio + HOST_CTL);
1096 if ((tmp & HOST_RESET) == 0) {
1097 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1098 readl(mmio + HOST_CTL); /* flush */
1099 }
Tejun Heod91542c2006-07-26 15:59:26 +09001100
Tejun Heoa22e6442008-03-10 10:25:25 +09001101 /* reset must complete within 1 second, or
1102 * the hardware should be considered fried.
1103 */
1104 ssleep(1);
Tejun Heod91542c2006-07-26 15:59:26 +09001105
Tejun Heoa22e6442008-03-10 10:25:25 +09001106 tmp = readl(mmio + HOST_CTL);
1107 if (tmp & HOST_RESET) {
1108 dev_printk(KERN_ERR, host->dev,
1109 "controller reset failed (0x%x)\n", tmp);
1110 return -EIO;
1111 }
Tejun Heod91542c2006-07-26 15:59:26 +09001112
Tejun Heoa22e6442008-03-10 10:25:25 +09001113 /* turn on AHCI mode */
1114 ahci_enable_ahci(mmio);
Tejun Heo98fa4b62006-11-02 12:17:23 +09001115
Tejun Heoa22e6442008-03-10 10:25:25 +09001116 /* Some registers might be cleared on reset. Restore
1117 * initial values.
1118 */
1119 ahci_restore_initial_config(host);
1120 } else
1121 dev_printk(KERN_INFO, host->dev,
1122 "skipping global host reset\n");
Tejun Heod91542c2006-07-26 15:59:26 +09001123
1124 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1125 u16 tmp16;
1126
1127 /* configure PCS */
1128 pci_read_config_word(pdev, 0x92, &tmp16);
Tejun Heo49f29092007-11-19 16:03:44 +09001129 if ((tmp16 & hpriv->port_map) != hpriv->port_map) {
1130 tmp16 |= hpriv->port_map;
1131 pci_write_config_word(pdev, 0x92, tmp16);
1132 }
Tejun Heod91542c2006-07-26 15:59:26 +09001133 }
1134
1135 return 0;
1136}
1137
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001138static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap,
1139 int port_no, void __iomem *mmio,
1140 void __iomem *port_mmio)
1141{
1142 const char *emsg = NULL;
1143 int rc;
1144 u32 tmp;
1145
1146 /* make sure port is not active */
1147 rc = ahci_deinit_port(ap, &emsg);
1148 if (rc)
1149 dev_printk(KERN_WARNING, &pdev->dev,
1150 "%s (%d)\n", emsg, rc);
1151
1152 /* clear SError */
1153 tmp = readl(port_mmio + PORT_SCR_ERR);
1154 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1155 writel(tmp, port_mmio + PORT_SCR_ERR);
1156
1157 /* clear port IRQ */
1158 tmp = readl(port_mmio + PORT_IRQ_STAT);
1159 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1160 if (tmp)
1161 writel(tmp, port_mmio + PORT_IRQ_STAT);
1162
1163 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1164}
1165
Tejun Heo4447d352007-04-17 23:44:08 +09001166static void ahci_init_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001167{
Tejun Heo417a1a62007-09-23 13:19:55 +09001168 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001169 struct pci_dev *pdev = to_pci_dev(host->dev);
1170 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001171 int i;
Jeff Garzikcd70c262007-07-08 02:29:42 -04001172 void __iomem *port_mmio;
Tejun Heod91542c2006-07-26 15:59:26 +09001173 u32 tmp;
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001174 int mv;
Tejun Heod91542c2006-07-26 15:59:26 +09001175
Tejun Heo417a1a62007-09-23 13:19:55 +09001176 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jose Alberto Regueroc40e7cb2008-03-13 23:22:24 +01001177 if (pdev->device == 0x6121)
1178 mv = 2;
1179 else
1180 mv = 4;
1181 port_mmio = __ahci_port_base(host, mv);
Jeff Garzikcd70c262007-07-08 02:29:42 -04001182
1183 writel(0, port_mmio + PORT_IRQ_MASK);
1184
1185 /* clear port IRQ */
1186 tmp = readl(port_mmio + PORT_IRQ_STAT);
1187 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1188 if (tmp)
1189 writel(tmp, port_mmio + PORT_IRQ_STAT);
1190 }
1191
Tejun Heo4447d352007-04-17 23:44:08 +09001192 for (i = 0; i < host->n_ports; i++) {
1193 struct ata_port *ap = host->ports[i];
Tejun Heod91542c2006-07-26 15:59:26 +09001194
Jeff Garzikcd70c262007-07-08 02:29:42 -04001195 port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09001196 if (ata_port_is_dummy(ap))
Tejun Heod91542c2006-07-26 15:59:26 +09001197 continue;
Tejun Heod91542c2006-07-26 15:59:26 +09001198
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001199 ahci_port_init(pdev, ap, i, mmio, port_mmio);
Tejun Heod91542c2006-07-26 15:59:26 +09001200 }
1201
1202 tmp = readl(mmio + HOST_CTL);
1203 VPRINTK("HOST_CTL 0x%x\n", tmp);
1204 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1205 tmp = readl(mmio + HOST_CTL);
1206 VPRINTK("HOST_CTL 0x%x\n", tmp);
1207}
1208
Jeff Garzika8785392008-02-28 15:43:48 -05001209static void ahci_dev_config(struct ata_device *dev)
1210{
1211 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1212
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001213 if (hpriv->flags & AHCI_HFLAG_SECT255) {
Jeff Garzika8785392008-02-28 15:43:48 -05001214 dev->max_sectors = 255;
Jeff Garzik4cde32f2008-03-24 22:40:40 -04001215 ata_dev_printk(dev, KERN_INFO,
1216 "SB600 AHCI: limiting to 255 sectors per cmd\n");
1217 }
Jeff Garzika8785392008-02-28 15:43:48 -05001218}
1219
Tejun Heo422b7592005-12-19 22:37:17 +09001220static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Tejun Heo4447d352007-04-17 23:44:08 +09001222 void __iomem *port_mmio = ahci_port_base(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +09001224 u32 tmp;
1225
1226 tmp = readl(port_mmio + PORT_SIG);
1227 tf.lbah = (tmp >> 24) & 0xff;
1228 tf.lbam = (tmp >> 16) & 0xff;
1229 tf.lbal = (tmp >> 8) & 0xff;
1230 tf.nsect = (tmp) & 0xff;
1231
1232 return ata_dev_classify(&tf);
1233}
1234
Tejun Heo12fad3f2006-05-15 21:03:55 +09001235static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1236 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +09001237{
Tejun Heo12fad3f2006-05-15 21:03:55 +09001238 dma_addr_t cmd_tbl_dma;
1239
1240 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1241
1242 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1243 pp->cmd_slot[tag].status = 0;
1244 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1245 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +09001246}
1247
Tejun Heod2e75df2007-07-16 14:29:39 +09001248static int ahci_kick_engine(struct ata_port *ap, int force_restart)
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001249{
Tejun Heo0d5ff562007-02-01 15:06:36 +09001250 void __iomem *port_mmio = ap->ioaddr.cmd_addr;
Jeff Garzikcca39742006-08-24 03:19:22 -04001251 struct ahci_host_priv *hpriv = ap->host->private_data;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001252 u32 tmp;
Tejun Heod2e75df2007-07-16 14:29:39 +09001253 int busy, rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001254
Tejun Heod2e75df2007-07-16 14:29:39 +09001255 /* do we need to kick the port? */
1256 busy = ahci_check_status(ap) & (ATA_BUSY | ATA_DRQ);
1257 if (!busy && !force_restart)
1258 return 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001259
Tejun Heod2e75df2007-07-16 14:29:39 +09001260 /* stop engine */
1261 rc = ahci_stop_engine(ap);
1262 if (rc)
1263 goto out_restart;
1264
1265 /* need to do CLO? */
1266 if (!busy) {
1267 rc = 0;
1268 goto out_restart;
1269 }
1270
1271 if (!(hpriv->cap & HOST_CAP_CLO)) {
1272 rc = -EOPNOTSUPP;
1273 goto out_restart;
1274 }
1275
1276 /* perform CLO */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001277 tmp = readl(port_mmio + PORT_CMD);
1278 tmp |= PORT_CMD_CLO;
1279 writel(tmp, port_mmio + PORT_CMD);
1280
Tejun Heod2e75df2007-07-16 14:29:39 +09001281 rc = 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001282 tmp = ata_wait_register(port_mmio + PORT_CMD,
1283 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1284 if (tmp & PORT_CMD_CLO)
Tejun Heod2e75df2007-07-16 14:29:39 +09001285 rc = -EIO;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001286
Tejun Heod2e75df2007-07-16 14:29:39 +09001287 /* restart engine */
1288 out_restart:
1289 ahci_start_engine(ap);
1290 return rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001291}
1292
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001293static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1294 struct ata_taskfile *tf, int is_cmd, u16 flags,
1295 unsigned long timeout_msec)
1296{
1297 const u32 cmd_fis_len = 5; /* five dwords */
1298 struct ahci_port_priv *pp = ap->private_data;
1299 void __iomem *port_mmio = ahci_port_base(ap);
1300 u8 *fis = pp->cmd_tbl;
1301 u32 tmp;
1302
1303 /* prep the command */
1304 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1305 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1306
1307 /* issue & wait */
1308 writel(1, port_mmio + PORT_CMD_ISSUE);
1309
1310 if (timeout_msec) {
1311 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1,
1312 1, timeout_msec);
1313 if (tmp & 0x1) {
1314 ahci_kick_engine(ap, 1);
1315 return -EBUSY;
1316 }
1317 } else
1318 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1319
1320 return 0;
1321}
1322
Tejun Heocc0680a2007-08-06 18:36:23 +09001323static int ahci_do_softreset(struct ata_link *link, unsigned int *class,
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001324 int pmp, unsigned long deadline)
Tejun Heo4658f792006-03-22 21:07:03 +09001325{
Tejun Heocc0680a2007-08-06 18:36:23 +09001326 struct ata_port *ap = link->ap;
Tejun Heo4658f792006-03-22 21:07:03 +09001327 const char *reason = NULL;
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001328 unsigned long now, msecs;
Tejun Heo4658f792006-03-22 21:07:03 +09001329 struct ata_taskfile tf;
Tejun Heo4658f792006-03-22 21:07:03 +09001330 int rc;
1331
1332 DPRINTK("ENTER\n");
1333
Tejun Heocc0680a2007-08-06 18:36:23 +09001334 if (ata_link_offline(link)) {
Tejun Heoc2a65852006-04-03 01:58:06 +09001335 DPRINTK("PHY reports no device\n");
1336 *class = ATA_DEV_NONE;
1337 return 0;
1338 }
1339
Tejun Heo4658f792006-03-22 21:07:03 +09001340 /* prepare for SRST (AHCI-1.1 10.4.1) */
Tejun Heod2e75df2007-07-16 14:29:39 +09001341 rc = ahci_kick_engine(ap, 1);
Tejun Heo994056d2007-12-06 15:02:48 +09001342 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09001343 ata_link_printk(link, KERN_WARNING,
Tejun Heo994056d2007-12-06 15:02:48 +09001344 "failed to reset engine (errno=%d)\n", rc);
Tejun Heo4658f792006-03-22 21:07:03 +09001345
Tejun Heocc0680a2007-08-06 18:36:23 +09001346 ata_tf_init(link->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +09001347
1348 /* issue the first D2H Register FIS */
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001349 msecs = 0;
1350 now = jiffies;
1351 if (time_after(now, deadline))
1352 msecs = jiffies_to_msecs(deadline - now);
1353
Tejun Heo4658f792006-03-22 21:07:03 +09001354 tf.ctl |= ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001355 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001356 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
Tejun Heo4658f792006-03-22 21:07:03 +09001357 rc = -EIO;
1358 reason = "1st FIS failed";
1359 goto fail;
1360 }
1361
1362 /* spec says at least 5us, but be generous and sleep for 1ms */
1363 msleep(1);
1364
1365 /* issue the second D2H Register FIS */
Tejun Heo4658f792006-03-22 21:07:03 +09001366 tf.ctl &= ~ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001367 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
Tejun Heo4658f792006-03-22 21:07:03 +09001368
Tejun Heo88ff6ea2007-10-16 14:21:24 -07001369 /* wait a while before checking status */
1370 ata_wait_after_reset(ap, deadline);
Tejun Heo4658f792006-03-22 21:07:03 +09001371
Tejun Heo9b893912007-02-02 16:50:52 +09001372 rc = ata_wait_ready(ap, deadline);
1373 /* link occupied, -ENODEV too is an error */
1374 if (rc) {
1375 reason = "device not ready";
1376 goto fail;
Tejun Heo4658f792006-03-22 21:07:03 +09001377 }
Tejun Heo9b893912007-02-02 16:50:52 +09001378 *class = ahci_dev_classify(ap);
Tejun Heo4658f792006-03-22 21:07:03 +09001379
1380 DPRINTK("EXIT, class=%u\n", *class);
1381 return 0;
1382
Tejun Heo4658f792006-03-22 21:07:03 +09001383 fail:
Tejun Heocc0680a2007-08-06 18:36:23 +09001384 ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +09001385 return rc;
1386}
1387
Tejun Heocc0680a2007-08-06 18:36:23 +09001388static int ahci_softreset(struct ata_link *link, unsigned int *class,
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001389 unsigned long deadline)
1390{
Tejun Heo7d50b602007-09-23 13:19:54 +09001391 int pmp = 0;
1392
1393 if (link->ap->flags & ATA_FLAG_PMP)
1394 pmp = SATA_PMP_CTRL_PORT;
1395
1396 return ahci_do_softreset(link, class, pmp, deadline);
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001397}
1398
Tejun Heocc0680a2007-08-06 18:36:23 +09001399static int ahci_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001400 unsigned long deadline)
Tejun Heo422b7592005-12-19 22:37:17 +09001401{
Tejun Heocc0680a2007-08-06 18:36:23 +09001402 struct ata_port *ap = link->ap;
Tejun Heo42969712006-05-31 18:28:18 +09001403 struct ahci_port_priv *pp = ap->private_data;
1404 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1405 struct ata_taskfile tf;
Tejun Heo4bd00f62006-02-11 16:26:02 +09001406 int rc;
1407
1408 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Tejun Heo4447d352007-04-17 23:44:08 +09001410 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +09001411
1412 /* clear D2H reception area to properly wait for D2H FIS */
Tejun Heocc0680a2007-08-06 18:36:23 +09001413 ata_tf_init(link->device, &tf);
Tejun Heodfd7a3d2007-01-26 15:37:20 +09001414 tf.command = 0x80;
Tejun Heo99771262007-07-16 14:29:38 +09001415 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
Tejun Heo42969712006-05-31 18:28:18 +09001416
Tejun Heocc0680a2007-08-06 18:36:23 +09001417 rc = sata_std_hardreset(link, class, deadline);
Tejun Heo42969712006-05-31 18:28:18 +09001418
Tejun Heo4447d352007-04-17 23:44:08 +09001419 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Tejun Heocc0680a2007-08-06 18:36:23 +09001421 if (rc == 0 && ata_link_online(link))
Tejun Heo4bd00f62006-02-11 16:26:02 +09001422 *class = ahci_dev_classify(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09001423 if (rc != -EAGAIN && *class == ATA_DEV_UNKNOWN)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001424 *class = ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Tejun Heo4bd00f62006-02-11 16:26:02 +09001426 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1427 return rc;
1428}
1429
Tejun Heocc0680a2007-08-06 18:36:23 +09001430static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001431 unsigned long deadline)
Tejun Heoad616ff2006-11-01 18:00:24 +09001432{
Tejun Heocc0680a2007-08-06 18:36:23 +09001433 struct ata_port *ap = link->ap;
Tejun Heoda3dbb12007-07-16 14:29:40 +09001434 u32 serror;
Tejun Heoad616ff2006-11-01 18:00:24 +09001435 int rc;
1436
1437 DPRINTK("ENTER\n");
1438
Tejun Heo4447d352007-04-17 23:44:08 +09001439 ahci_stop_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001440
Tejun Heocc0680a2007-08-06 18:36:23 +09001441 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heod4b2bab2007-02-02 16:50:52 +09001442 deadline);
Tejun Heoad616ff2006-11-01 18:00:24 +09001443
1444 /* vt8251 needs SError cleared for the port to operate */
Tejun Heoda3dbb12007-07-16 14:29:40 +09001445 ahci_scr_read(ap, SCR_ERROR, &serror);
1446 ahci_scr_write(ap, SCR_ERROR, serror);
Tejun Heoad616ff2006-11-01 18:00:24 +09001447
Tejun Heo4447d352007-04-17 23:44:08 +09001448 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001449
1450 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1451
1452 /* vt8251 doesn't clear BSY on signature FIS reception,
1453 * request follow-up softreset.
1454 */
1455 return rc ?: -EAGAIN;
1456}
1457
Tejun Heoedc93052007-10-25 14:59:16 +09001458static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
1459 unsigned long deadline)
1460{
1461 struct ata_port *ap = link->ap;
1462 struct ahci_port_priv *pp = ap->private_data;
1463 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1464 struct ata_taskfile tf;
1465 int rc;
1466
1467 ahci_stop_engine(ap);
1468
1469 /* clear D2H reception area to properly wait for D2H FIS */
1470 ata_tf_init(link->device, &tf);
1471 tf.command = 0x80;
1472 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1473
1474 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
1475 deadline);
1476
1477 ahci_start_engine(ap);
1478
1479 if (rc || ata_link_offline(link))
1480 return rc;
1481
1482 /* spec mandates ">= 2ms" before checking status */
1483 msleep(150);
1484
1485 /* The pseudo configuration device on SIMG4726 attached to
1486 * ASUS P5W-DH Deluxe doesn't send signature FIS after
1487 * hardreset if no device is attached to the first downstream
1488 * port && the pseudo device locks up on SRST w/ PMP==0. To
1489 * work around this, wait for !BSY only briefly. If BSY isn't
1490 * cleared, perform CLO and proceed to IDENTIFY (achieved by
1491 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
1492 *
1493 * Wait for two seconds. Devices attached to downstream port
1494 * which can't process the following IDENTIFY after this will
1495 * have to be reset again. For most cases, this should
1496 * suffice while making probing snappish enough.
1497 */
1498 rc = ata_wait_ready(ap, jiffies + 2 * HZ);
1499 if (rc)
1500 ahci_kick_engine(ap, 0);
1501
1502 return 0;
1503}
1504
Tejun Heocc0680a2007-08-06 18:36:23 +09001505static void ahci_postreset(struct ata_link *link, unsigned int *class)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001506{
Tejun Heocc0680a2007-08-06 18:36:23 +09001507 struct ata_port *ap = link->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09001508 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001509 u32 new_tmp, tmp;
1510
Tejun Heocc0680a2007-08-06 18:36:23 +09001511 ata_std_postreset(link, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -05001512
1513 /* Make sure port's ATAPI bit is set appropriately */
1514 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001515 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -05001516 new_tmp |= PORT_CMD_ATAPI;
1517 else
1518 new_tmp &= ~PORT_CMD_ATAPI;
1519 if (new_tmp != tmp) {
1520 writel(new_tmp, port_mmio + PORT_CMD);
1521 readl(port_mmio + PORT_CMD); /* flush */
1522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Tejun Heo7d50b602007-09-23 13:19:54 +09001525static int ahci_pmp_softreset(struct ata_link *link, unsigned int *class,
1526 unsigned long deadline)
1527{
1528 return ahci_do_softreset(link, class, link->pmp, deadline);
1529}
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531static u8 ahci_check_status(struct ata_port *ap)
1532{
Tejun Heo0d5ff562007-02-01 15:06:36 +09001533 void __iomem *mmio = ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 return readl(mmio + PORT_TFDATA) & 0xFF;
1536}
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
1539{
1540 struct ahci_port_priv *pp = ap->private_data;
1541 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1542
1543 ata_tf_from_fis(d2h_fis, tf);
1544}
1545
Tejun Heo12fad3f2006-05-15 21:03:55 +09001546static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001548 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09001549 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1550 unsigned int si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 VPRINTK("ENTER\n");
1553
1554 /*
1555 * Next, the S/G list.
1556 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09001557 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001558 dma_addr_t addr = sg_dma_address(sg);
1559 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Tejun Heoff2aeb12007-12-05 16:43:11 +09001561 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1562 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1563 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
Jeff Garzik828d09d2005-11-12 01:27:07 -05001565
Tejun Heoff2aeb12007-12-05 16:43:11 +09001566 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567}
1568
1569static void ahci_qc_prep(struct ata_queued_cmd *qc)
1570{
Jeff Garzika0ea7322005-06-04 01:13:15 -04001571 struct ata_port *ap = qc->ap;
1572 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo405e66b2007-11-27 19:28:53 +09001573 int is_atapi = ata_is_atapi(qc->tf.protocol);
Tejun Heo12fad3f2006-05-15 21:03:55 +09001574 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 u32 opts;
1576 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -05001577 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 * Fill in command table information. First, the header,
1581 * a SATA Register - Host to Device command FIS.
1582 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09001583 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
1584
Tejun Heo7d50b602007-09-23 13:19:54 +09001585 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
Tejun Heocc9278e2006-02-10 17:25:47 +09001586 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09001587 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1588 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -04001589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Tejun Heocc9278e2006-02-10 17:25:47 +09001591 n_elem = 0;
1592 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +09001593 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Tejun Heocc9278e2006-02-10 17:25:47 +09001595 /*
1596 * Fill in command slot information.
1597 */
Tejun Heo7d50b602007-09-23 13:19:54 +09001598 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
Tejun Heocc9278e2006-02-10 17:25:47 +09001599 if (qc->tf.flags & ATA_TFLAG_WRITE)
1600 opts |= AHCI_CMD_WRITE;
1601 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +09001602 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -05001603
Tejun Heo12fad3f2006-05-15 21:03:55 +09001604 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
Tejun Heo78cd52d2006-05-15 20:58:29 +09001607static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
Tejun Heo417a1a62007-09-23 13:19:55 +09001609 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001610 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09001611 struct ata_eh_info *host_ehi = &ap->link.eh_info;
1612 struct ata_link *link = NULL;
1613 struct ata_queued_cmd *active_qc;
1614 struct ata_eh_info *active_ehi;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001615 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Tejun Heo7d50b602007-09-23 13:19:54 +09001617 /* determine active link */
1618 ata_port_for_each_link(link, ap)
1619 if (ata_link_active(link))
1620 break;
1621 if (!link)
1622 link = &ap->link;
1623
1624 active_qc = ata_qc_from_tag(ap, link->active_tag);
1625 active_ehi = &link->eh_info;
1626
1627 /* record irq stat */
1628 ata_ehi_clear_desc(host_ehi);
1629 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
Jeff Garzik9f68a242005-11-15 14:03:47 -05001630
Tejun Heo78cd52d2006-05-15 20:58:29 +09001631 /* AHCI needs SError cleared; otherwise, it might lock up */
Tejun Heoda3dbb12007-07-16 14:29:40 +09001632 ahci_scr_read(ap, SCR_ERROR, &serror);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001633 ahci_scr_write(ap, SCR_ERROR, serror);
Tejun Heo7d50b602007-09-23 13:19:54 +09001634 host_ehi->serror |= serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Tejun Heo41669552006-11-29 11:33:14 +09001636 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
Tejun Heo417a1a62007-09-23 13:19:55 +09001637 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
Tejun Heo41669552006-11-29 11:33:14 +09001638 irq_stat &= ~PORT_IRQ_IF_ERR;
1639
Conke Hu55a61602007-03-27 18:33:05 +08001640 if (irq_stat & PORT_IRQ_TF_ERR) {
Tejun Heo7d50b602007-09-23 13:19:54 +09001641 /* If qc is active, charge it; otherwise, the active
1642 * link. There's no active qc on NCQ errors. It will
1643 * be determined by EH by reading log page 10h.
1644 */
1645 if (active_qc)
1646 active_qc->err_mask |= AC_ERR_DEV;
1647 else
1648 active_ehi->err_mask |= AC_ERR_DEV;
1649
Tejun Heo417a1a62007-09-23 13:19:55 +09001650 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
Tejun Heo7d50b602007-09-23 13:19:54 +09001651 host_ehi->serror &= ~SERR_INTERNAL;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Tejun Heo78cd52d2006-05-15 20:58:29 +09001654 if (irq_stat & PORT_IRQ_UNK_FIS) {
1655 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Tejun Heo7d50b602007-09-23 13:19:54 +09001657 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09001658 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09001659 ata_ehi_push_desc(active_ehi,
1660 "unknown FIS %08x %08x %08x %08x" ,
Tejun Heo78cd52d2006-05-15 20:58:29 +09001661 unk[0], unk[1], unk[2], unk[3]);
1662 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04001663
Tejun Heo7d50b602007-09-23 13:19:54 +09001664 if (ap->nr_pmp_links && (irq_stat & PORT_IRQ_BAD_PMP)) {
1665 active_ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09001666 active_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09001667 ata_ehi_push_desc(active_ehi, "incorrect PMP");
1668 }
Tejun Heo78cd52d2006-05-15 20:58:29 +09001669
Tejun Heo7d50b602007-09-23 13:19:54 +09001670 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
1671 host_ehi->err_mask |= AC_ERR_HOST_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09001672 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09001673 ata_ehi_push_desc(host_ehi, "host bus error");
1674 }
1675
1676 if (irq_stat & PORT_IRQ_IF_ERR) {
1677 host_ehi->err_mask |= AC_ERR_ATA_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09001678 host_ehi->action |= ATA_EH_RESET;
Tejun Heo7d50b602007-09-23 13:19:54 +09001679 ata_ehi_push_desc(host_ehi, "interface fatal error");
1680 }
1681
1682 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
1683 ata_ehi_hotplugged(host_ehi);
1684 ata_ehi_push_desc(host_ehi, "%s",
1685 irq_stat & PORT_IRQ_CONNECT ?
1686 "connection status changed" : "PHY RDY changed");
1687 }
1688
1689 /* okay, let's hand over to EH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Tejun Heo78cd52d2006-05-15 20:58:29 +09001691 if (irq_stat & PORT_IRQ_FREEZE)
1692 ata_port_freeze(ap);
1693 else
1694 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001697static void ahci_port_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
Tejun Heo4447d352007-04-17 23:44:08 +09001699 void __iomem *port_mmio = ap->ioaddr.cmd_addr;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001700 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo0291f952007-01-25 19:16:28 +09001701 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo5f226c62007-10-09 15:02:23 +09001702 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heob06ce3e2007-10-09 15:06:48 +09001703 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Tejun Heo12fad3f2006-05-15 21:03:55 +09001704 u32 status, qc_active;
Tejun Heo459ad682007-12-07 12:46:23 +09001705 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 status = readl(port_mmio + PORT_IRQ_STAT);
1708 writel(status, port_mmio + PORT_IRQ_STAT);
1709
Tejun Heob06ce3e2007-10-09 15:06:48 +09001710 /* ignore BAD_PMP while resetting */
1711 if (unlikely(resetting))
1712 status &= ~PORT_IRQ_BAD_PMP;
1713
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001714 /* If we are getting PhyRdy, this is
1715 * just a power state change, we should
1716 * clear out this, plus the PhyRdy/Comm
1717 * Wake bits from Serror
1718 */
1719 if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) &&
1720 (status & PORT_IRQ_PHYRDY)) {
1721 status &= ~PORT_IRQ_PHYRDY;
1722 ahci_scr_write(ap, SCR_ERROR, ((1 << 16) | (1 << 18)));
1723 }
1724
Tejun Heo78cd52d2006-05-15 20:58:29 +09001725 if (unlikely(status & PORT_IRQ_ERROR)) {
1726 ahci_error_intr(ap, status);
1727 return;
1728 }
1729
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04001730 if (status & PORT_IRQ_SDB_FIS) {
Tejun Heo5f226c62007-10-09 15:02:23 +09001731 /* If SNotification is available, leave notification
1732 * handling to sata_async_notification(). If not,
1733 * emulate it by snooping SDB FIS RX area.
1734 *
1735 * Snooping FIS RX area is probably cheaper than
1736 * poking SNotification but some constrollers which
1737 * implement SNotification, ICH9 for example, don't
1738 * store AN SDB FIS into receive area.
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04001739 */
Tejun Heo5f226c62007-10-09 15:02:23 +09001740 if (hpriv->cap & HOST_CAP_SNTF)
Tejun Heo7d77b242007-09-23 13:14:13 +09001741 sata_async_notification(ap);
Tejun Heo5f226c62007-10-09 15:02:23 +09001742 else {
1743 /* If the 'N' bit in word 0 of the FIS is set,
1744 * we just received asynchronous notification.
1745 * Tell libata about it.
1746 */
1747 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
1748 u32 f0 = le32_to_cpu(f[0]);
1749
1750 if (f0 & (1 << 15))
1751 sata_async_notification(ap);
1752 }
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04001753 }
1754
Tejun Heo7d50b602007-09-23 13:19:54 +09001755 /* pp->active_link is valid iff any command is in flight */
1756 if (ap->qc_active && pp->active_link->sactive)
Tejun Heo12fad3f2006-05-15 21:03:55 +09001757 qc_active = readl(port_mmio + PORT_SCR_ACT);
1758 else
1759 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
1760
1761 rc = ata_qc_complete_multiple(ap, qc_active, NULL);
Tejun Heob06ce3e2007-10-09 15:06:48 +09001762
Tejun Heo459ad682007-12-07 12:46:23 +09001763 /* while resetting, invalid completions are expected */
1764 if (unlikely(rc < 0 && !resetting)) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09001765 ehi->err_mask |= AC_ERR_HSM;
Tejun Heocf480622008-01-24 00:05:14 +09001766 ehi->action |= ATA_EH_RESET;
Tejun Heo12fad3f2006-05-15 21:03:55 +09001767 ata_port_freeze(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769}
1770
David Howells7d12e782006-10-05 14:55:46 +01001771static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Jeff Garzikcca39742006-08-24 03:19:22 -04001773 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 struct ahci_host_priv *hpriv;
1775 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -04001776 void __iomem *mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 u32 irq_stat, irq_ack = 0;
1778
1779 VPRINTK("ENTER\n");
1780
Jeff Garzikcca39742006-08-24 03:19:22 -04001781 hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09001782 mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 /* sigh. 0xffffffff is a valid return from h/w */
1785 irq_stat = readl(mmio + HOST_IRQ_STAT);
1786 irq_stat &= hpriv->port_map;
1787 if (!irq_stat)
1788 return IRQ_NONE;
1789
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001790 spin_lock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001792 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Jeff Garzik67846b32005-10-05 02:58:32 -04001795 if (!(irq_stat & (1 << i)))
1796 continue;
1797
Jeff Garzikcca39742006-08-24 03:19:22 -04001798 ap = host->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -04001799 if (ap) {
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001800 ahci_port_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -04001801 VPRINTK("port %u\n", i);
1802 } else {
1803 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +09001804 if (ata_ratelimit())
Jeff Garzikcca39742006-08-24 03:19:22 -04001805 dev_printk(KERN_WARNING, host->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -05001806 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 }
Jeff Garzik67846b32005-10-05 02:58:32 -04001808
1809 irq_ack |= (1 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
1811
1812 if (irq_ack) {
1813 writel(irq_ack, mmio + HOST_IRQ_STAT);
1814 handled = 1;
1815 }
1816
Jeff Garzikcca39742006-08-24 03:19:22 -04001817 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
1819 VPRINTK("EXIT\n");
1820
1821 return IRQ_RETVAL(handled);
1822}
1823
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09001824static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
1826 struct ata_port *ap = qc->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09001827 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09001828 struct ahci_port_priv *pp = ap->private_data;
1829
1830 /* Keep track of the currently active link. It will be used
1831 * in completion path to determine whether NCQ phase is in
1832 * progress.
1833 */
1834 pp->active_link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Tejun Heo12fad3f2006-05-15 21:03:55 +09001836 if (qc->tf.protocol == ATA_PROT_NCQ)
1837 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
1838 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1840
1841 return 0;
1842}
1843
Tejun Heo78cd52d2006-05-15 20:58:29 +09001844static void ahci_freeze(struct ata_port *ap)
1845{
Tejun Heo4447d352007-04-17 23:44:08 +09001846 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001847
1848 /* turn IRQ off */
1849 writel(0, port_mmio + PORT_IRQ_MASK);
1850}
1851
1852static void ahci_thaw(struct ata_port *ap)
1853{
Tejun Heo0d5ff562007-02-01 15:06:36 +09001854 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
Tejun Heo4447d352007-04-17 23:44:08 +09001855 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001856 u32 tmp;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07001857 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001858
1859 /* clear IRQ */
1860 tmp = readl(port_mmio + PORT_IRQ_STAT);
1861 writel(tmp, port_mmio + PORT_IRQ_STAT);
Tejun Heoa7187282007-01-27 11:04:26 +09001862 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001863
Tejun Heo1c954a42007-10-09 15:01:37 +09001864 /* turn IRQ back on */
1865 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001866}
1867
1868static void ahci_error_handler(struct ata_port *ap)
1869{
Tejun Heob51e9e52006-06-29 01:29:30 +09001870 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +09001871 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09001872 ahci_stop_engine(ap);
1873 ahci_start_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001874 }
1875
1876 /* perform recovery */
Tejun Heo7d50b602007-09-23 13:19:54 +09001877 sata_pmp_do_eh(ap, ata_std_prereset, ahci_softreset,
1878 ahci_hardreset, ahci_postreset,
1879 sata_pmp_std_prereset, ahci_pmp_softreset,
1880 sata_pmp_std_hardreset, sata_pmp_std_postreset);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001881}
1882
Tejun Heoad616ff2006-11-01 18:00:24 +09001883static void ahci_vt8251_error_handler(struct ata_port *ap)
1884{
Tejun Heoad616ff2006-11-01 18:00:24 +09001885 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
1886 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09001887 ahci_stop_engine(ap);
1888 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001889 }
1890
1891 /* perform recovery */
1892 ata_do_eh(ap, ata_std_prereset, ahci_softreset, ahci_vt8251_hardreset,
1893 ahci_postreset);
1894}
1895
Tejun Heoedc93052007-10-25 14:59:16 +09001896static void ahci_p5wdh_error_handler(struct ata_port *ap)
1897{
1898 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
1899 /* restart engine */
1900 ahci_stop_engine(ap);
1901 ahci_start_engine(ap);
1902 }
1903
1904 /* perform recovery */
1905 ata_do_eh(ap, ata_std_prereset, ahci_softreset, ahci_p5wdh_hardreset,
1906 ahci_postreset);
1907}
1908
Tejun Heo78cd52d2006-05-15 20:58:29 +09001909static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
1910{
1911 struct ata_port *ap = qc->ap;
1912
Tejun Heod2e75df2007-07-16 14:29:39 +09001913 /* make DMA engine forget about the failed command */
1914 if (qc->flags & ATA_QCFLAG_FAILED)
1915 ahci_kick_engine(ap, 1);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001916}
1917
Tejun Heo7d50b602007-09-23 13:19:54 +09001918static void ahci_pmp_attach(struct ata_port *ap)
1919{
1920 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09001921 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09001922 u32 cmd;
1923
1924 cmd = readl(port_mmio + PORT_CMD);
1925 cmd |= PORT_CMD_PMP;
1926 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09001927
1928 pp->intr_mask |= PORT_IRQ_BAD_PMP;
1929 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09001930}
1931
1932static void ahci_pmp_detach(struct ata_port *ap)
1933{
1934 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09001935 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09001936 u32 cmd;
1937
1938 cmd = readl(port_mmio + PORT_CMD);
1939 cmd &= ~PORT_CMD_PMP;
1940 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09001941
1942 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
1943 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09001944}
1945
Alexey Dobriyan028a2592007-07-17 23:48:48 +04001946static int ahci_port_resume(struct ata_port *ap)
1947{
1948 ahci_power_up(ap);
1949 ahci_start_port(ap);
1950
Tejun Heo7d50b602007-09-23 13:19:54 +09001951 if (ap->nr_pmp_links)
1952 ahci_pmp_attach(ap);
1953 else
1954 ahci_pmp_detach(ap);
1955
Alexey Dobriyan028a2592007-07-17 23:48:48 +04001956 return 0;
1957}
1958
Tejun Heo438ac6d2007-03-02 17:31:26 +09001959#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +09001960static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
1961{
Tejun Heoc1332872006-07-26 15:59:26 +09001962 const char *emsg = NULL;
1963 int rc;
1964
Tejun Heo4447d352007-04-17 23:44:08 +09001965 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo8e16f942006-11-20 15:42:36 +09001966 if (rc == 0)
Tejun Heo4447d352007-04-17 23:44:08 +09001967 ahci_power_down(ap);
Tejun Heo8e16f942006-11-20 15:42:36 +09001968 else {
Tejun Heoc1332872006-07-26 15:59:26 +09001969 ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001970 ahci_start_port(ap);
Tejun Heoc1332872006-07-26 15:59:26 +09001971 }
1972
1973 return rc;
1974}
1975
Tejun Heoc1332872006-07-26 15:59:26 +09001976static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
1977{
Jeff Garzikcca39742006-08-24 03:19:22 -04001978 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09001979 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heoc1332872006-07-26 15:59:26 +09001980 u32 ctl;
1981
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01001982 if (mesg.event & PM_EVENT_SLEEP) {
Tejun Heoc1332872006-07-26 15:59:26 +09001983 /* AHCI spec rev1.1 section 8.3.3:
1984 * Software must disable interrupts prior to requesting a
1985 * transition of the HBA to D3 state.
1986 */
1987 ctl = readl(mmio + HOST_CTL);
1988 ctl &= ~HOST_IRQ_EN;
1989 writel(ctl, mmio + HOST_CTL);
1990 readl(mmio + HOST_CTL); /* flush */
1991 }
1992
1993 return ata_pci_device_suspend(pdev, mesg);
1994}
1995
1996static int ahci_pci_device_resume(struct pci_dev *pdev)
1997{
Jeff Garzikcca39742006-08-24 03:19:22 -04001998 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heoc1332872006-07-26 15:59:26 +09001999 int rc;
2000
Tejun Heo553c4aa2006-12-26 19:39:50 +09002001 rc = ata_pci_device_do_resume(pdev);
2002 if (rc)
2003 return rc;
Tejun Heoc1332872006-07-26 15:59:26 +09002004
2005 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
Tejun Heo4447d352007-04-17 23:44:08 +09002006 rc = ahci_reset_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002007 if (rc)
2008 return rc;
2009
Tejun Heo4447d352007-04-17 23:44:08 +09002010 ahci_init_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002011 }
2012
Jeff Garzikcca39742006-08-24 03:19:22 -04002013 ata_host_resume(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002014
2015 return 0;
2016}
Tejun Heo438ac6d2007-03-02 17:31:26 +09002017#endif
Tejun Heoc1332872006-07-26 15:59:26 +09002018
Tejun Heo254950c2006-07-26 15:59:25 +09002019static int ahci_port_start(struct ata_port *ap)
2020{
Jeff Garzikcca39742006-08-24 03:19:22 -04002021 struct device *dev = ap->host->dev;
Tejun Heo254950c2006-07-26 15:59:25 +09002022 struct ahci_port_priv *pp;
Tejun Heo254950c2006-07-26 15:59:25 +09002023 void *mem;
2024 dma_addr_t mem_dma;
Tejun Heo254950c2006-07-26 15:59:25 +09002025
Tejun Heo24dc5f32007-01-20 16:00:28 +09002026 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Tejun Heo254950c2006-07-26 15:59:25 +09002027 if (!pp)
2028 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002029
Tejun Heo24dc5f32007-01-20 16:00:28 +09002030 mem = dmam_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma,
2031 GFP_KERNEL);
2032 if (!mem)
Tejun Heo254950c2006-07-26 15:59:25 +09002033 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002034 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
2035
2036 /*
2037 * First item in chunk of DMA memory: 32-slot command table,
2038 * 32 bytes each in size
2039 */
2040 pp->cmd_slot = mem;
2041 pp->cmd_slot_dma = mem_dma;
2042
2043 mem += AHCI_CMD_SLOT_SZ;
2044 mem_dma += AHCI_CMD_SLOT_SZ;
2045
2046 /*
2047 * Second item: Received-FIS area
2048 */
2049 pp->rx_fis = mem;
2050 pp->rx_fis_dma = mem_dma;
2051
2052 mem += AHCI_RX_FIS_SZ;
2053 mem_dma += AHCI_RX_FIS_SZ;
2054
2055 /*
2056 * Third item: data area for storing a single command
2057 * and its scatter-gather table
2058 */
2059 pp->cmd_tbl = mem;
2060 pp->cmd_tbl_dma = mem_dma;
2061
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002062 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002063 * Save off initial list of interrupts to be enabled.
2064 * This could be changed later
2065 */
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002066 pp->intr_mask = DEF_PORT_IRQ;
2067
Tejun Heo254950c2006-07-26 15:59:25 +09002068 ap->private_data = pp;
2069
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002070 /* engage engines, captain */
2071 return ahci_port_resume(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09002072}
2073
2074static void ahci_port_stop(struct ata_port *ap)
2075{
Tejun Heo0be0aa92006-07-26 15:59:26 +09002076 const char *emsg = NULL;
2077 int rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002078
Tejun Heo0be0aa92006-07-26 15:59:26 +09002079 /* de-initialize port */
Tejun Heo4447d352007-04-17 23:44:08 +09002080 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo0be0aa92006-07-26 15:59:26 +09002081 if (rc)
2082 ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
Tejun Heo254950c2006-07-26 15:59:25 +09002083}
2084
Tejun Heo4447d352007-04-17 23:44:08 +09002085static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 if (using_dac &&
2090 !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
2091 rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
2092 if (rc) {
2093 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2094 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002095 dev_printk(KERN_ERR, &pdev->dev,
2096 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 return rc;
2098 }
2099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 } else {
2101 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2102 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002103 dev_printk(KERN_ERR, &pdev->dev,
2104 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return rc;
2106 }
2107 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2108 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002109 dev_printk(KERN_ERR, &pdev->dev,
2110 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return rc;
2112 }
2113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return 0;
2115}
2116
Tejun Heo4447d352007-04-17 23:44:08 +09002117static void ahci_print_info(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
Tejun Heo4447d352007-04-17 23:44:08 +09002119 struct ahci_host_priv *hpriv = host->private_data;
2120 struct pci_dev *pdev = to_pci_dev(host->dev);
2121 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 u32 vers, cap, impl, speed;
2123 const char *speed_s;
2124 u16 cc;
2125 const char *scc_s;
2126
2127 vers = readl(mmio + HOST_VERSION);
2128 cap = hpriv->cap;
2129 impl = hpriv->port_map;
2130
2131 speed = (cap >> 20) & 0xf;
2132 if (speed == 1)
2133 speed_s = "1.5";
2134 else if (speed == 2)
2135 speed_s = "3";
2136 else
2137 speed_s = "?";
2138
2139 pci_read_config_word(pdev, 0x0a, &cc);
Conke Huc9f89472007-01-09 05:32:51 -05002140 if (cc == PCI_CLASS_STORAGE_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 scc_s = "IDE";
Conke Huc9f89472007-01-09 05:32:51 -05002142 else if (cc == PCI_CLASS_STORAGE_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 scc_s = "SATA";
Conke Huc9f89472007-01-09 05:32:51 -05002144 else if (cc == PCI_CLASS_STORAGE_RAID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 scc_s = "RAID";
2146 else
2147 scc_s = "unknown";
2148
Jeff Garzika9524a72005-10-30 14:39:11 -05002149 dev_printk(KERN_INFO, &pdev->dev,
2150 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002152 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002154 (vers >> 24) & 0xff,
2155 (vers >> 16) & 0xff,
2156 (vers >> 8) & 0xff,
2157 vers & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159 ((cap >> 8) & 0x1f) + 1,
2160 (cap & 0x1f) + 1,
2161 speed_s,
2162 impl,
2163 scc_s);
2164
Jeff Garzika9524a72005-10-30 14:39:11 -05002165 dev_printk(KERN_INFO, &pdev->dev,
2166 "flags: "
Tejun Heo203ef6c2007-07-16 14:29:40 +09002167 "%s%s%s%s%s%s%s"
2168 "%s%s%s%s%s%s%s\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002169 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 cap & (1 << 31) ? "64bit " : "",
2172 cap & (1 << 30) ? "ncq " : "",
Tejun Heo203ef6c2007-07-16 14:29:40 +09002173 cap & (1 << 29) ? "sntf " : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 cap & (1 << 28) ? "ilck " : "",
2175 cap & (1 << 27) ? "stag " : "",
2176 cap & (1 << 26) ? "pm " : "",
2177 cap & (1 << 25) ? "led " : "",
2178
2179 cap & (1 << 24) ? "clo " : "",
2180 cap & (1 << 19) ? "nz " : "",
2181 cap & (1 << 18) ? "only " : "",
2182 cap & (1 << 17) ? "pmp " : "",
2183 cap & (1 << 15) ? "pio " : "",
2184 cap & (1 << 14) ? "slum " : "",
2185 cap & (1 << 13) ? "part " : ""
2186 );
2187}
2188
Tejun Heoedc93052007-10-25 14:59:16 +09002189/* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2190 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2191 * support PMP and the 4726 either directly exports the device
2192 * attached to the first downstream port or acts as a hardware storage
2193 * controller and emulate a single ATA device (can be RAID 0/1 or some
2194 * other configuration).
2195 *
2196 * When there's no device attached to the first downstream port of the
2197 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2198 * configure the 4726. However, ATA emulation of the device is very
2199 * lame. It doesn't send signature D2H Reg FIS after the initial
2200 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2201 *
2202 * The following function works around the problem by always using
2203 * hardreset on the port and not depending on receiving signature FIS
2204 * afterward. If signature FIS isn't received soon, ATA class is
2205 * assumed without follow-up softreset.
2206 */
2207static void ahci_p5wdh_workaround(struct ata_host *host)
2208{
2209 static struct dmi_system_id sysids[] = {
2210 {
2211 .ident = "P5W DH Deluxe",
2212 .matches = {
2213 DMI_MATCH(DMI_SYS_VENDOR,
2214 "ASUSTEK COMPUTER INC"),
2215 DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
2216 },
2217 },
2218 { }
2219 };
2220 struct pci_dev *pdev = to_pci_dev(host->dev);
2221
2222 if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) &&
2223 dmi_check_system(sysids)) {
2224 struct ata_port *ap = host->ports[1];
2225
2226 dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH "
2227 "Deluxe on-board SIMG4726 workaround\n");
2228
2229 ap->ops = &ahci_p5wdh_ops;
2230 ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA;
2231 }
2232}
2233
Tejun Heo24dc5f32007-01-20 16:00:28 +09002234static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
2236 static int printed_version;
Tejun Heo4447d352007-04-17 23:44:08 +09002237 struct ata_port_info pi = ahci_port_info[ent->driver_data];
2238 const struct ata_port_info *ppi[] = { &pi, NULL };
Tejun Heo24dc5f32007-01-20 16:00:28 +09002239 struct device *dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 struct ahci_host_priv *hpriv;
Tejun Heo4447d352007-04-17 23:44:08 +09002241 struct ata_host *host;
Tejun Heo837f5f82008-02-06 15:13:51 +09002242 int n_ports, i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 VPRINTK("ENTER\n");
2245
Tejun Heo12fad3f2006-05-15 21:03:55 +09002246 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05002249 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Tejun Heo4447d352007-04-17 23:44:08 +09002251 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09002252 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 if (rc)
2254 return rc;
2255
Tejun Heodea55132008-03-11 19:52:31 +09002256 /* AHCI controllers often implement SFF compatible interface.
2257 * Grab all PCI BARs just in case.
2258 */
2259 rc = pcim_iomap_regions_request_all(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002260 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002261 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002262 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002263 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Tejun Heoc4f77922007-12-06 15:09:43 +09002265 if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
2266 (pdev->device == 0x2652 || pdev->device == 0x2653)) {
2267 u8 map;
2268
2269 /* ICH6s share the same PCI ID for both piix and ahci
2270 * modes. Enabling ahci mode while MAP indicates
2271 * combined mode is a bad idea. Yield to ata_piix.
2272 */
2273 pci_read_config_byte(pdev, ICH_MAP, &map);
2274 if (map & 0x3) {
2275 dev_printk(KERN_INFO, &pdev->dev, "controller is in "
2276 "combined mode, can't enable AHCI mode\n");
2277 return -ENODEV;
2278 }
2279 }
2280
Tejun Heo24dc5f32007-01-20 16:00:28 +09002281 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
2282 if (!hpriv)
2283 return -ENOMEM;
Tejun Heo417a1a62007-09-23 13:19:55 +09002284 hpriv->flags |= (unsigned long)pi.private_data;
2285
2286 if ((hpriv->flags & AHCI_HFLAG_NO_MSI) || pci_enable_msi(pdev))
2287 pci_intx(pdev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Tejun Heo4447d352007-04-17 23:44:08 +09002289 /* save initial config */
Tejun Heo417a1a62007-09-23 13:19:55 +09002290 ahci_save_initial_config(pdev, hpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Tejun Heo4447d352007-04-17 23:44:08 +09002292 /* prepare host */
Tejun Heo274c1fd2007-07-16 14:29:40 +09002293 if (hpriv->cap & HOST_CAP_NCQ)
Tejun Heo4447d352007-04-17 23:44:08 +09002294 pi.flags |= ATA_FLAG_NCQ;
2295
Tejun Heo7d50b602007-09-23 13:19:54 +09002296 if (hpriv->cap & HOST_CAP_PMP)
2297 pi.flags |= ATA_FLAG_PMP;
2298
Tejun Heo837f5f82008-02-06 15:13:51 +09002299 /* CAP.NP sometimes indicate the index of the last enabled
2300 * port, at other times, that of the last possible port, so
2301 * determining the maximum port number requires looking at
2302 * both CAP.NP and port_map.
2303 */
2304 n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));
2305
2306 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
Tejun Heo4447d352007-04-17 23:44:08 +09002307 if (!host)
2308 return -ENOMEM;
2309 host->iomap = pcim_iomap_table(pdev);
2310 host->private_data = hpriv;
2311
2312 for (i = 0; i < host->n_ports; i++) {
Jeff Garzikdab632e2007-05-28 08:33:01 -04002313 struct ata_port *ap = host->ports[i];
2314 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09002315
Tejun Heocbcdd872007-08-18 13:14:55 +09002316 ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar");
2317 ata_port_pbar_desc(ap, AHCI_PCI_BAR,
2318 0x100 + ap->port_no * 0x80, "port");
2319
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002320 /* set initial link pm policy */
2321 ap->pm_policy = NOT_AVAILABLE;
2322
Jeff Garzikdab632e2007-05-28 08:33:01 -04002323 /* standard SATA port setup */
Tejun Heo203ef6c2007-07-16 14:29:40 +09002324 if (hpriv->port_map & (1 << i))
Tejun Heo4447d352007-04-17 23:44:08 +09002325 ap->ioaddr.cmd_addr = port_mmio;
Jeff Garzikdab632e2007-05-28 08:33:01 -04002326
2327 /* disabled/not-implemented port */
2328 else
2329 ap->ops = &ata_dummy_port_ops;
Tejun Heo4447d352007-04-17 23:44:08 +09002330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Tejun Heoedc93052007-10-25 14:59:16 +09002332 /* apply workaround for ASUS P5W DH Deluxe mainboard */
2333 ahci_p5wdh_workaround(host);
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09002336 rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002338 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Tejun Heo4447d352007-04-17 23:44:08 +09002340 rc = ahci_reset_controller(host);
2341 if (rc)
2342 return rc;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002343
Tejun Heo4447d352007-04-17 23:44:08 +09002344 ahci_init_controller(host);
2345 ahci_print_info(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Tejun Heo4447d352007-04-17 23:44:08 +09002347 pci_set_master(pdev);
2348 return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
2349 &ahci_sht);
Jeff Garzik907f4672005-05-12 15:03:42 -04002350}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352static int __init ahci_init(void)
2353{
Pavel Roskinb7887192006-08-10 18:13:18 +09002354 return pci_register_driver(&ahci_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355}
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357static void __exit ahci_exit(void)
2358{
2359 pci_unregister_driver(&ahci_pci_driver);
2360}
2361
2362
2363MODULE_AUTHOR("Jeff Garzik");
2364MODULE_DESCRIPTION("AHCI SATA low-level driver");
2365MODULE_LICENSE("GPL");
2366MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04002367MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369module_init(ahci_init);
2370module_exit(ahci_exit);