blob: 4688dbf2d1110d7b31ab4809e1de621721fd0456 [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
Kristen Carlson Accardi31556592007-10-25 01:33:26 -040052static int ahci_enable_alpm(struct ata_port *ap,
53 enum link_pm policy);
54static void ahci_disable_alpm(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56enum {
57 AHCI_PCI_BAR = 5,
Tejun Heo648a88b2006-11-09 15:08:40 +090058 AHCI_MAX_PORTS = 32,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 AHCI_MAX_SG = 168, /* hardware max is 64K */
60 AHCI_DMA_BOUNDARY = 0xffffffff,
Jens Axboebe5d8212007-05-22 09:45:39 +020061 AHCI_USE_CLUSTERING = 1,
Tejun Heo12fad3f2006-05-15 21:03:55 +090062 AHCI_MAX_CMDS = 32,
Tejun Heodd410ff2006-05-15 21:03:50 +090063 AHCI_CMD_SZ = 32,
Tejun Heo12fad3f2006-05-15 21:03:55 +090064 AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 AHCI_RX_FIS_SZ = 256,
Jeff Garzika0ea7322005-06-04 01:13:15 -040066 AHCI_CMD_TBL_CDB = 0x40,
Tejun Heodd410ff2006-05-15 21:03:50 +090067 AHCI_CMD_TBL_HDR_SZ = 0x80,
68 AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16),
69 AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS,
70 AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ +
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 AHCI_RX_FIS_SZ,
72 AHCI_IRQ_ON_SG = (1 << 31),
73 AHCI_CMD_ATAPI = (1 << 5),
74 AHCI_CMD_WRITE = (1 << 6),
Tejun Heo4b10e552006-03-12 11:25:27 +090075 AHCI_CMD_PREFETCH = (1 << 7),
Tejun Heo22b49982006-01-23 21:38:44 +090076 AHCI_CMD_RESET = (1 << 8),
77 AHCI_CMD_CLR_BUSY = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
Tejun Heo0291f952007-01-25 19:16:28 +090080 RX_FIS_SDB = 0x58, /* offset of SDB FIS data */
Tejun Heo78cd52d2006-05-15 20:58:29 +090081 RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 board_ahci = 0,
Tejun Heo7a234af2007-09-03 12:44:57 +090084 board_ahci_vt8251 = 1,
85 board_ahci_ign_iferr = 2,
86 board_ahci_sb600 = 3,
87 board_ahci_mv = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 /* global controller registers */
90 HOST_CAP = 0x00, /* host capabilities */
91 HOST_CTL = 0x04, /* global host control */
92 HOST_IRQ_STAT = 0x08, /* interrupt status */
93 HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
94 HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
95
96 /* HOST_CTL bits */
97 HOST_RESET = (1 << 0), /* reset controller; self-clear */
98 HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
99 HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
100
101 /* HOST_CAP bits */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900102 HOST_CAP_SSC = (1 << 14), /* Slumber capable */
Tejun Heo7d50b602007-09-23 13:19:54 +0900103 HOST_CAP_PMP = (1 << 17), /* Port Multiplier support */
Tejun Heo22b49982006-01-23 21:38:44 +0900104 HOST_CAP_CLO = (1 << 24), /* Command List Override support */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400105 HOST_CAP_ALPM = (1 << 26), /* Aggressive Link PM support */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900106 HOST_CAP_SSS = (1 << 27), /* Staggered Spin-up */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900107 HOST_CAP_SNTF = (1 << 29), /* SNotification register */
Tejun Heo979db802006-05-15 21:03:52 +0900108 HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */
Tejun Heodd410ff2006-05-15 21:03:50 +0900109 HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 /* registers for each SATA port */
112 PORT_LST_ADDR = 0x00, /* command list DMA addr */
113 PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
114 PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
115 PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
116 PORT_IRQ_STAT = 0x10, /* interrupt status */
117 PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
118 PORT_CMD = 0x18, /* port command */
119 PORT_TFDATA = 0x20, /* taskfile data */
120 PORT_SIG = 0x24, /* device TF signature */
121 PORT_CMD_ISSUE = 0x38, /* command issue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
123 PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
124 PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
125 PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
Tejun Heo203ef6c2007-07-16 14:29:40 +0900126 PORT_SCR_NTF = 0x3c, /* SATA phy register: SNotification */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 /* PORT_IRQ_{STAT,MASK} bits */
129 PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
130 PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
131 PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
132 PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
133 PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
134 PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
135 PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
136 PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
137
138 PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
139 PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
140 PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
141 PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
142 PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
143 PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
144 PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
145 PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
146 PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
147
Tejun Heo78cd52d2006-05-15 20:58:29 +0900148 PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR |
149 PORT_IRQ_IF_ERR |
150 PORT_IRQ_CONNECT |
Tejun Heo42969712006-05-31 18:28:18 +0900151 PORT_IRQ_PHYRDY |
Tejun Heo7d50b602007-09-23 13:19:54 +0900152 PORT_IRQ_UNK_FIS |
153 PORT_IRQ_BAD_PMP,
Tejun Heo78cd52d2006-05-15 20:58:29 +0900154 PORT_IRQ_ERROR = PORT_IRQ_FREEZE |
155 PORT_IRQ_TF_ERR |
156 PORT_IRQ_HBUS_DATA_ERR,
157 DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
158 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS |
159 PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /* PORT_CMD bits */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400162 PORT_CMD_ASP = (1 << 27), /* Aggressive Slumber/Partial */
163 PORT_CMD_ALPE = (1 << 26), /* Aggressive Link PM enable */
Jeff Garzik02eaa662005-11-12 01:32:19 -0500164 PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
Tejun Heo7d50b602007-09-23 13:19:54 +0900165 PORT_CMD_PMP = (1 << 17), /* PMP attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
167 PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
168 PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
Tejun Heo22b49982006-01-23 21:38:44 +0900169 PORT_CMD_CLO = (1 << 3), /* Command list override */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
171 PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
172 PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
173
Tejun Heo0be0aa92006-07-26 15:59:26 +0900174 PORT_CMD_ICC_MASK = (0xf << 28), /* i/f ICC state mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
176 PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
177 PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
Jeff Garzik4b0060f2005-06-04 00:50:22 -0400178
Tejun Heo417a1a62007-09-23 13:19:55 +0900179 /* hpriv->flags bits */
180 AHCI_HFLAG_NO_NCQ = (1 << 0),
181 AHCI_HFLAG_IGN_IRQ_IF_ERR = (1 << 1), /* ignore IRQ_IF_ERR */
182 AHCI_HFLAG_IGN_SERR_INTERNAL = (1 << 2), /* ignore SERR_INTERNAL */
183 AHCI_HFLAG_32BIT_ONLY = (1 << 3), /* force 32bit */
184 AHCI_HFLAG_MV_PATA = (1 << 4), /* PATA port */
185 AHCI_HFLAG_NO_MSI = (1 << 5), /* no PCI MSI */
Tejun Heo6949b912007-09-23 13:19:55 +0900186 AHCI_HFLAG_NO_PMP = (1 << 6), /* no PMP */
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400187 AHCI_HFLAG_NO_HOTPLUG = (1 << 7), /* ignore PxSERR.DIAG.N */
Tejun Heo417a1a62007-09-23 13:19:55 +0900188
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200189 /* ap->flags bits */
Tejun Heo1188c0d2007-04-23 02:41:05 +0900190
191 AHCI_FLAG_COMMON = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
192 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400193 ATA_FLAG_ACPI_SATA | ATA_FLAG_AN |
194 ATA_FLAG_IPM,
Tejun Heo0c887582007-08-06 18:36:23 +0900195 AHCI_LFLAG_COMMON = ATA_LFLAG_SKIP_D2H_BSY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
197
198struct ahci_cmd_hdr {
199 u32 opts;
200 u32 status;
201 u32 tbl_addr;
202 u32 tbl_addr_hi;
203 u32 reserved[4];
204};
205
206struct ahci_sg {
207 u32 addr;
208 u32 addr_hi;
209 u32 reserved;
210 u32 flags_size;
211};
212
213struct ahci_host_priv {
Tejun Heo417a1a62007-09-23 13:19:55 +0900214 unsigned int flags; /* AHCI_HFLAG_* */
Tejun Heod447df12007-03-18 22:15:33 +0900215 u32 cap; /* cap to use */
216 u32 port_map; /* port map to use */
217 u32 saved_cap; /* saved initial cap */
218 u32 saved_port_map; /* saved initial port_map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
221struct ahci_port_priv {
Tejun Heo7d50b602007-09-23 13:19:54 +0900222 struct ata_link *active_link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 struct ahci_cmd_hdr *cmd_slot;
224 dma_addr_t cmd_slot_dma;
225 void *cmd_tbl;
226 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 void *rx_fis;
228 dma_addr_t rx_fis_dma;
Tejun Heo0291f952007-01-25 19:16:28 +0900229 /* for NCQ spurious interrupt analysis */
Tejun Heo0291f952007-01-25 19:16:28 +0900230 unsigned int ncq_saw_d2h:1;
231 unsigned int ncq_saw_dmas:1;
Tejun Heoafb2d552007-02-27 13:24:19 +0900232 unsigned int ncq_saw_sdb:1;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -0700233 u32 intr_mask; /* interrupts to enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Tejun Heoda3dbb12007-07-16 14:29:40 +0900236static int ahci_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val);
237static int ahci_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400238static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900239static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240static void ahci_irq_clear(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241static int ahci_port_start(struct ata_port *ap);
242static void ahci_port_stop(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
244static void ahci_qc_prep(struct ata_queued_cmd *qc);
245static u8 ahci_check_status(struct ata_port *ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900246static void ahci_freeze(struct ata_port *ap);
247static void ahci_thaw(struct ata_port *ap);
Tejun Heo7d50b602007-09-23 13:19:54 +0900248static void ahci_pmp_attach(struct ata_port *ap);
249static void ahci_pmp_detach(struct ata_port *ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900250static void ahci_error_handler(struct ata_port *ap);
Tejun Heoad616ff2006-11-01 18:00:24 +0900251static void ahci_vt8251_error_handler(struct ata_port *ap);
Tejun Heoedc93052007-10-25 14:59:16 +0900252static void ahci_p5wdh_error_handler(struct ata_port *ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900253static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -0400254static int ahci_port_resume(struct ata_port *ap);
Jeff Garzikdab632e2007-05-28 08:33:01 -0400255static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl);
256static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
257 u32 opts);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900258#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900259static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
Tejun Heoc1332872006-07-26 15:59:26 +0900260static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
261static int ahci_pci_device_resume(struct pci_dev *pdev);
Tejun Heo438ac6d2007-03-02 17:31:26 +0900262#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400264static struct class_device_attribute *ahci_shost_attrs[] = {
265 &class_device_attr_link_power_management_policy,
266 NULL
267};
268
Jeff Garzik193515d2005-11-07 00:59:37 -0500269static struct scsi_host_template ahci_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 .module = THIS_MODULE,
271 .name = DRV_NAME,
272 .ioctl = ata_scsi_ioctl,
273 .queuecommand = ata_scsi_queuecmd,
Tejun Heo12fad3f2006-05-15 21:03:55 +0900274 .change_queue_depth = ata_scsi_change_queue_depth,
275 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 .this_id = ATA_SHT_THIS_ID,
277 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
279 .emulated = ATA_SHT_EMULATED,
280 .use_clustering = AHCI_USE_CLUSTERING,
281 .proc_name = DRV_NAME,
282 .dma_boundary = AHCI_DMA_BOUNDARY,
283 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900284 .slave_destroy = ata_scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 .bios_param = ata_std_bios_param,
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400286 .shost_attrs = ahci_shost_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
Jeff Garzik057ace52005-10-22 14:27:05 -0400289static const struct ata_port_operations ahci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 .check_status = ahci_check_status,
291 .check_altstatus = ahci_check_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 .dev_select = ata_noop_dev_select,
293
294 .tf_read = ahci_tf_read,
295
Tejun Heo7d50b602007-09-23 13:19:54 +0900296 .qc_defer = sata_pmp_qc_defer_cmd_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 .qc_prep = ahci_qc_prep,
298 .qc_issue = ahci_qc_issue,
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 .irq_clear = ahci_irq_clear,
301
302 .scr_read = ahci_scr_read,
303 .scr_write = ahci_scr_write,
304
Tejun Heo78cd52d2006-05-15 20:58:29 +0900305 .freeze = ahci_freeze,
306 .thaw = ahci_thaw,
307
308 .error_handler = ahci_error_handler,
309 .post_internal_cmd = ahci_post_internal_cmd,
310
Tejun Heo7d50b602007-09-23 13:19:54 +0900311 .pmp_attach = ahci_pmp_attach,
312 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900313
Tejun Heo438ac6d2007-03-02 17:31:26 +0900314#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900315 .port_suspend = ahci_port_suspend,
316 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900317#endif
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400318 .enable_pm = ahci_enable_alpm,
319 .disable_pm = ahci_disable_alpm,
Tejun Heoc1332872006-07-26 15:59:26 +0900320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 .port_start = ahci_port_start,
322 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323};
324
Tejun Heoad616ff2006-11-01 18:00:24 +0900325static const struct ata_port_operations ahci_vt8251_ops = {
Tejun Heoad616ff2006-11-01 18:00:24 +0900326 .check_status = ahci_check_status,
327 .check_altstatus = ahci_check_status,
328 .dev_select = ata_noop_dev_select,
329
330 .tf_read = ahci_tf_read,
331
Tejun Heo7d50b602007-09-23 13:19:54 +0900332 .qc_defer = sata_pmp_qc_defer_cmd_switch,
Tejun Heoad616ff2006-11-01 18:00:24 +0900333 .qc_prep = ahci_qc_prep,
334 .qc_issue = ahci_qc_issue,
335
Tejun Heoad616ff2006-11-01 18:00:24 +0900336 .irq_clear = ahci_irq_clear,
337
338 .scr_read = ahci_scr_read,
339 .scr_write = ahci_scr_write,
340
341 .freeze = ahci_freeze,
342 .thaw = ahci_thaw,
343
344 .error_handler = ahci_vt8251_error_handler,
345 .post_internal_cmd = ahci_post_internal_cmd,
346
Tejun Heo7d50b602007-09-23 13:19:54 +0900347 .pmp_attach = ahci_pmp_attach,
348 .pmp_detach = ahci_pmp_detach,
Tejun Heo7d50b602007-09-23 13:19:54 +0900349
Tejun Heo438ac6d2007-03-02 17:31:26 +0900350#ifdef CONFIG_PM
Tejun Heoad616ff2006-11-01 18:00:24 +0900351 .port_suspend = ahci_port_suspend,
352 .port_resume = ahci_port_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900353#endif
Tejun Heoad616ff2006-11-01 18:00:24 +0900354
355 .port_start = ahci_port_start,
356 .port_stop = ahci_port_stop,
357};
358
Tejun Heoedc93052007-10-25 14:59:16 +0900359static const struct ata_port_operations ahci_p5wdh_ops = {
360 .check_status = ahci_check_status,
361 .check_altstatus = ahci_check_status,
362 .dev_select = ata_noop_dev_select,
363
364 .tf_read = ahci_tf_read,
365
366 .qc_defer = sata_pmp_qc_defer_cmd_switch,
367 .qc_prep = ahci_qc_prep,
368 .qc_issue = ahci_qc_issue,
369
370 .irq_clear = ahci_irq_clear,
371
372 .scr_read = ahci_scr_read,
373 .scr_write = ahci_scr_write,
374
375 .freeze = ahci_freeze,
376 .thaw = ahci_thaw,
377
378 .error_handler = ahci_p5wdh_error_handler,
379 .post_internal_cmd = ahci_post_internal_cmd,
380
381 .pmp_attach = ahci_pmp_attach,
382 .pmp_detach = ahci_pmp_detach,
383
384#ifdef CONFIG_PM
385 .port_suspend = ahci_port_suspend,
386 .port_resume = ahci_port_resume,
387#endif
388
389 .port_start = ahci_port_start,
390 .port_stop = ahci_port_stop,
391};
392
Tejun Heo417a1a62007-09-23 13:19:55 +0900393#define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
394
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100395static const struct ata_port_info ahci_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /* board_ahci */
397 {
Tejun Heo1188c0d2007-04-23 02:41:05 +0900398 .flags = AHCI_FLAG_COMMON,
Tejun Heo0c887582007-08-06 18:36:23 +0900399 .link_flags = AHCI_LFLAG_COMMON,
Brett Russ7da79312005-09-01 21:53:34 -0400400 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400401 .udma_mask = ATA_UDMA6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 .port_ops = &ahci_ops,
403 },
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200404 /* board_ahci_vt8251 */
405 {
Tejun Heo6949b912007-09-23 13:19:55 +0900406 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900407 .flags = AHCI_FLAG_COMMON,
Tejun Heo0c887582007-08-06 18:36:23 +0900408 .link_flags = AHCI_LFLAG_COMMON | ATA_LFLAG_HRST_TO_RESUME,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200409 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400410 .udma_mask = ATA_UDMA6,
Tejun Heoad616ff2006-11-01 18:00:24 +0900411 .port_ops = &ahci_vt8251_ops,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200412 },
Tejun Heo41669552006-11-29 11:33:14 +0900413 /* board_ahci_ign_iferr */
414 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900415 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR),
416 .flags = AHCI_FLAG_COMMON,
Tejun Heo0c887582007-08-06 18:36:23 +0900417 .link_flags = AHCI_LFLAG_COMMON,
Tejun Heo41669552006-11-29 11:33:14 +0900418 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400419 .udma_mask = ATA_UDMA6,
Tejun Heo41669552006-11-29 11:33:14 +0900420 .port_ops = &ahci_ops,
421 },
Conke Hu55a61602007-03-27 18:33:05 +0800422 /* board_ahci_sb600 */
423 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900424 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL |
Tejun Heo6949b912007-09-23 13:19:55 +0900425 AHCI_HFLAG_32BIT_ONLY | AHCI_HFLAG_NO_PMP),
Tejun Heo417a1a62007-09-23 13:19:55 +0900426 .flags = AHCI_FLAG_COMMON,
Tejun Heo0c887582007-08-06 18:36:23 +0900427 .link_flags = AHCI_LFLAG_COMMON,
Conke Hu55a61602007-03-27 18:33:05 +0800428 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400429 .udma_mask = ATA_UDMA6,
Conke Hu55a61602007-03-27 18:33:05 +0800430 .port_ops = &ahci_ops,
431 },
Jeff Garzikcd70c262007-07-08 02:29:42 -0400432 /* board_ahci_mv */
433 {
Tejun Heo417a1a62007-09-23 13:19:55 +0900434 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ | AHCI_HFLAG_NO_MSI |
435 AHCI_HFLAG_MV_PATA),
Jeff Garzikcd70c262007-07-08 02:29:42 -0400436 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo417a1a62007-09-23 13:19:55 +0900437 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
Tejun Heo0c887582007-08-06 18:36:23 +0900438 .link_flags = AHCI_LFLAG_COMMON,
Jeff Garzikcd70c262007-07-08 02:29:42 -0400439 .pio_mask = 0x1f, /* pio0-4 */
440 .udma_mask = ATA_UDMA6,
441 .port_ops = &ahci_ops,
442 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443};
444
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500445static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400446 /* Intel */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400447 { PCI_VDEVICE(INTEL, 0x2652), board_ahci }, /* ICH6 */
448 { PCI_VDEVICE(INTEL, 0x2653), board_ahci }, /* ICH6M */
449 { PCI_VDEVICE(INTEL, 0x27c1), board_ahci }, /* ICH7 */
450 { PCI_VDEVICE(INTEL, 0x27c5), board_ahci }, /* ICH7M */
451 { PCI_VDEVICE(INTEL, 0x27c3), board_ahci }, /* ICH7R */
Tejun Heo82490c02007-01-23 15:13:39 +0900452 { PCI_VDEVICE(AL, 0x5288), board_ahci_ign_iferr }, /* ULi M5288 */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400453 { PCI_VDEVICE(INTEL, 0x2681), board_ahci }, /* ESB2 */
454 { PCI_VDEVICE(INTEL, 0x2682), board_ahci }, /* ESB2 */
455 { PCI_VDEVICE(INTEL, 0x2683), board_ahci }, /* ESB2 */
456 { PCI_VDEVICE(INTEL, 0x27c6), board_ahci }, /* ICH7-M DH */
Tejun Heo7a234af2007-09-03 12:44:57 +0900457 { PCI_VDEVICE(INTEL, 0x2821), board_ahci }, /* ICH8 */
458 { PCI_VDEVICE(INTEL, 0x2822), board_ahci }, /* ICH8 */
459 { PCI_VDEVICE(INTEL, 0x2824), board_ahci }, /* ICH8 */
460 { PCI_VDEVICE(INTEL, 0x2829), board_ahci }, /* ICH8M */
461 { PCI_VDEVICE(INTEL, 0x282a), board_ahci }, /* ICH8M */
462 { PCI_VDEVICE(INTEL, 0x2922), board_ahci }, /* ICH9 */
463 { PCI_VDEVICE(INTEL, 0x2923), board_ahci }, /* ICH9 */
464 { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */
465 { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */
466 { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */
467 { PCI_VDEVICE(INTEL, 0x2929), board_ahci }, /* ICH9M */
468 { PCI_VDEVICE(INTEL, 0x292a), board_ahci }, /* ICH9M */
469 { PCI_VDEVICE(INTEL, 0x292b), board_ahci }, /* ICH9M */
470 { PCI_VDEVICE(INTEL, 0x292c), board_ahci }, /* ICH9M */
471 { PCI_VDEVICE(INTEL, 0x292f), board_ahci }, /* ICH9M */
472 { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */
473 { PCI_VDEVICE(INTEL, 0x294e), board_ahci }, /* ICH9M */
Jason Gastond4155e62007-09-20 17:35:00 -0400474 { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */
475 { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400476
Tejun Heoe34bb372007-02-26 20:24:03 +0900477 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
478 { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
479 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci_ign_iferr },
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400480
481 /* ATI */
Conke Huc65ec1c2007-04-11 18:23:14 +0800482 { PCI_VDEVICE(ATI, 0x4380), board_ahci_sb600 }, /* ATI SB600 */
henry suc69c0892007-09-20 16:07:33 -0400483 { PCI_VDEVICE(ATI, 0x4390), board_ahci_sb600 }, /* ATI SB700/800 */
484 { PCI_VDEVICE(ATI, 0x4391), board_ahci_sb600 }, /* ATI SB700/800 */
485 { PCI_VDEVICE(ATI, 0x4392), board_ahci_sb600 }, /* ATI SB700/800 */
486 { PCI_VDEVICE(ATI, 0x4393), board_ahci_sb600 }, /* ATI SB700/800 */
487 { PCI_VDEVICE(ATI, 0x4394), board_ahci_sb600 }, /* ATI SB700/800 */
488 { PCI_VDEVICE(ATI, 0x4395), board_ahci_sb600 }, /* ATI SB700/800 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400489
490 /* VIA */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400491 { PCI_VDEVICE(VIA, 0x3349), board_ahci_vt8251 }, /* VIA VT8251 */
Tejun Heobf335542007-04-11 17:27:14 +0900492 { PCI_VDEVICE(VIA, 0x6287), board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400493
494 /* NVIDIA */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400495 { PCI_VDEVICE(NVIDIA, 0x044c), board_ahci }, /* MCP65 */
496 { PCI_VDEVICE(NVIDIA, 0x044d), board_ahci }, /* MCP65 */
497 { PCI_VDEVICE(NVIDIA, 0x044e), board_ahci }, /* MCP65 */
498 { PCI_VDEVICE(NVIDIA, 0x044f), board_ahci }, /* MCP65 */
Peer Chen6fbf5ba2006-12-20 14:18:00 -0500499 { PCI_VDEVICE(NVIDIA, 0x045c), board_ahci }, /* MCP65 */
500 { PCI_VDEVICE(NVIDIA, 0x045d), board_ahci }, /* MCP65 */
501 { PCI_VDEVICE(NVIDIA, 0x045e), board_ahci }, /* MCP65 */
502 { PCI_VDEVICE(NVIDIA, 0x045f), board_ahci }, /* MCP65 */
503 { PCI_VDEVICE(NVIDIA, 0x0550), board_ahci }, /* MCP67 */
504 { PCI_VDEVICE(NVIDIA, 0x0551), board_ahci }, /* MCP67 */
505 { PCI_VDEVICE(NVIDIA, 0x0552), board_ahci }, /* MCP67 */
506 { PCI_VDEVICE(NVIDIA, 0x0553), board_ahci }, /* MCP67 */
Peer Chen895663c2006-11-02 17:59:46 -0500507 { PCI_VDEVICE(NVIDIA, 0x0554), board_ahci }, /* MCP67 */
508 { PCI_VDEVICE(NVIDIA, 0x0555), board_ahci }, /* MCP67 */
509 { PCI_VDEVICE(NVIDIA, 0x0556), board_ahci }, /* MCP67 */
510 { PCI_VDEVICE(NVIDIA, 0x0557), board_ahci }, /* MCP67 */
511 { PCI_VDEVICE(NVIDIA, 0x0558), board_ahci }, /* MCP67 */
512 { PCI_VDEVICE(NVIDIA, 0x0559), board_ahci }, /* MCP67 */
513 { PCI_VDEVICE(NVIDIA, 0x055a), board_ahci }, /* MCP67 */
514 { PCI_VDEVICE(NVIDIA, 0x055b), board_ahci }, /* MCP67 */
Peer Chen0522b282007-06-07 18:05:12 +0800515 { PCI_VDEVICE(NVIDIA, 0x07f0), board_ahci }, /* MCP73 */
516 { PCI_VDEVICE(NVIDIA, 0x07f1), board_ahci }, /* MCP73 */
517 { PCI_VDEVICE(NVIDIA, 0x07f2), board_ahci }, /* MCP73 */
518 { PCI_VDEVICE(NVIDIA, 0x07f3), board_ahci }, /* MCP73 */
519 { PCI_VDEVICE(NVIDIA, 0x07f4), board_ahci }, /* MCP73 */
520 { PCI_VDEVICE(NVIDIA, 0x07f5), board_ahci }, /* MCP73 */
521 { PCI_VDEVICE(NVIDIA, 0x07f6), board_ahci }, /* MCP73 */
522 { PCI_VDEVICE(NVIDIA, 0x07f7), board_ahci }, /* MCP73 */
523 { PCI_VDEVICE(NVIDIA, 0x07f8), board_ahci }, /* MCP73 */
524 { PCI_VDEVICE(NVIDIA, 0x07f9), board_ahci }, /* MCP73 */
525 { PCI_VDEVICE(NVIDIA, 0x07fa), board_ahci }, /* MCP73 */
526 { PCI_VDEVICE(NVIDIA, 0x07fb), board_ahci }, /* MCP73 */
527 { PCI_VDEVICE(NVIDIA, 0x0ad0), board_ahci }, /* MCP77 */
528 { PCI_VDEVICE(NVIDIA, 0x0ad1), board_ahci }, /* MCP77 */
529 { PCI_VDEVICE(NVIDIA, 0x0ad2), board_ahci }, /* MCP77 */
530 { PCI_VDEVICE(NVIDIA, 0x0ad3), board_ahci }, /* MCP77 */
531 { PCI_VDEVICE(NVIDIA, 0x0ad4), board_ahci }, /* MCP77 */
532 { PCI_VDEVICE(NVIDIA, 0x0ad5), board_ahci }, /* MCP77 */
533 { PCI_VDEVICE(NVIDIA, 0x0ad6), board_ahci }, /* MCP77 */
534 { PCI_VDEVICE(NVIDIA, 0x0ad7), board_ahci }, /* MCP77 */
535 { PCI_VDEVICE(NVIDIA, 0x0ad8), board_ahci }, /* MCP77 */
536 { PCI_VDEVICE(NVIDIA, 0x0ad9), board_ahci }, /* MCP77 */
537 { PCI_VDEVICE(NVIDIA, 0x0ada), board_ahci }, /* MCP77 */
538 { PCI_VDEVICE(NVIDIA, 0x0adb), board_ahci }, /* MCP77 */
peerchen6ba86952007-12-03 22:20:37 +0800539 { PCI_VDEVICE(NVIDIA, 0x0ab4), board_ahci }, /* MCP79 */
540 { PCI_VDEVICE(NVIDIA, 0x0ab5), board_ahci }, /* MCP79 */
541 { PCI_VDEVICE(NVIDIA, 0x0ab6), board_ahci }, /* MCP79 */
542 { PCI_VDEVICE(NVIDIA, 0x0ab7), board_ahci }, /* MCP79 */
Peer Chen71008192007-09-24 10:16:25 +0800543 { PCI_VDEVICE(NVIDIA, 0x0ab8), board_ahci }, /* MCP79 */
544 { PCI_VDEVICE(NVIDIA, 0x0ab9), board_ahci }, /* MCP79 */
545 { PCI_VDEVICE(NVIDIA, 0x0aba), board_ahci }, /* MCP79 */
546 { PCI_VDEVICE(NVIDIA, 0x0abb), board_ahci }, /* MCP79 */
547 { PCI_VDEVICE(NVIDIA, 0x0abc), board_ahci }, /* MCP79 */
548 { PCI_VDEVICE(NVIDIA, 0x0abd), board_ahci }, /* MCP79 */
549 { PCI_VDEVICE(NVIDIA, 0x0abe), board_ahci }, /* MCP79 */
550 { PCI_VDEVICE(NVIDIA, 0x0abf), board_ahci }, /* MCP79 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400551
Jeff Garzik95916ed2006-07-29 04:10:14 -0400552 /* SiS */
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400553 { PCI_VDEVICE(SI, 0x1184), board_ahci }, /* SiS 966 */
554 { PCI_VDEVICE(SI, 0x1185), board_ahci }, /* SiS 966 */
555 { PCI_VDEVICE(SI, 0x0186), board_ahci }, /* SiS 968 */
Jeff Garzik95916ed2006-07-29 04:10:14 -0400556
Jeff Garzikcd70c262007-07-08 02:29:42 -0400557 /* Marvell */
558 { PCI_VDEVICE(MARVELL, 0x6145), board_ahci_mv }, /* 6145 */
559
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500560 /* Generic, PCI class code for AHCI */
561 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Conke Huc9f89472007-01-09 05:32:51 -0500562 PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff, board_ahci },
Jeff Garzik415ae2b2006-11-01 05:10:42 -0500563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 { } /* terminate list */
565};
566
567
568static struct pci_driver ahci_pci_driver = {
569 .name = DRV_NAME,
570 .id_table = ahci_pci_tbl,
571 .probe = ahci_init_one,
Tejun Heo24dc5f32007-01-20 16:00:28 +0900572 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900573#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +0900574 .suspend = ahci_pci_device_suspend,
575 .resume = ahci_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900576#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577};
578
579
Tejun Heo98fa4b62006-11-02 12:17:23 +0900580static inline int ahci_nr_ports(u32 cap)
581{
582 return (cap & 0x1f) + 1;
583}
584
Jeff Garzikdab632e2007-05-28 08:33:01 -0400585static inline void __iomem *__ahci_port_base(struct ata_host *host,
586 unsigned int port_no)
587{
588 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
589
590 return mmio + 0x100 + (port_no * 0x80);
591}
592
Tejun Heo4447d352007-04-17 23:44:08 +0900593static inline void __iomem *ahci_port_base(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Jeff Garzikdab632e2007-05-28 08:33:01 -0400595 return __ahci_port_base(ap->host, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Tejun Heod447df12007-03-18 22:15:33 +0900598/**
599 * ahci_save_initial_config - Save and fixup initial config values
Tejun Heo4447d352007-04-17 23:44:08 +0900600 * @pdev: target PCI device
Tejun Heo4447d352007-04-17 23:44:08 +0900601 * @hpriv: host private area to store config values
Tejun Heod447df12007-03-18 22:15:33 +0900602 *
603 * Some registers containing configuration info might be setup by
604 * BIOS and might be cleared on reset. This function saves the
605 * initial values of those registers into @hpriv such that they
606 * can be restored after controller reset.
607 *
608 * If inconsistent, config values are fixed up by this function.
609 *
610 * LOCKING:
611 * None.
612 */
Tejun Heo4447d352007-04-17 23:44:08 +0900613static void ahci_save_initial_config(struct pci_dev *pdev,
Tejun Heo4447d352007-04-17 23:44:08 +0900614 struct ahci_host_priv *hpriv)
Tejun Heod447df12007-03-18 22:15:33 +0900615{
Tejun Heo4447d352007-04-17 23:44:08 +0900616 void __iomem *mmio = pcim_iomap_table(pdev)[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +0900617 u32 cap, port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900618 int i;
Tejun Heod447df12007-03-18 22:15:33 +0900619
620 /* Values prefixed with saved_ are written back to host after
621 * reset. Values without are used for driver operation.
622 */
623 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
624 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
625
Tejun Heo274c1fd2007-07-16 14:29:40 +0900626 /* some chips have errata preventing 64bit use */
Tejun Heo417a1a62007-09-23 13:19:55 +0900627 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Tejun Heoc7a42152007-05-18 16:23:19 +0200628 dev_printk(KERN_INFO, &pdev->dev,
629 "controller can't do 64bit DMA, forcing 32bit\n");
630 cap &= ~HOST_CAP_64;
631 }
632
Tejun Heo417a1a62007-09-23 13:19:55 +0900633 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Tejun Heo274c1fd2007-07-16 14:29:40 +0900634 dev_printk(KERN_INFO, &pdev->dev,
635 "controller can't do NCQ, turning off CAP_NCQ\n");
636 cap &= ~HOST_CAP_NCQ;
637 }
638
Tejun Heo6949b912007-09-23 13:19:55 +0900639 if ((cap && HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
640 dev_printk(KERN_INFO, &pdev->dev,
641 "controller can't do PMP, turning off CAP_PMP\n");
642 cap &= ~HOST_CAP_PMP;
643 }
644
Jeff Garzikcd70c262007-07-08 02:29:42 -0400645 /*
646 * Temporary Marvell 6145 hack: PATA port presence
647 * is asserted through the standard AHCI port
648 * presence register, as bit 4 (counting from 0)
649 */
Tejun Heo417a1a62007-09-23 13:19:55 +0900650 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jeff Garzikcd70c262007-07-08 02:29:42 -0400651 dev_printk(KERN_ERR, &pdev->dev,
652 "MV_AHCI HACK: port_map %x -> %x\n",
653 hpriv->port_map,
654 hpriv->port_map & 0xf);
655
656 port_map &= 0xf;
657 }
658
Tejun Heo17199b12007-03-18 22:26:53 +0900659 /* cross check port_map and cap.n_ports */
Tejun Heo7a234af2007-09-03 12:44:57 +0900660 if (port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900661 u32 tmp_port_map = port_map;
662 int n_ports = ahci_nr_ports(cap);
663
664 for (i = 0; i < AHCI_MAX_PORTS && n_ports; i++) {
665 if (tmp_port_map & (1 << i)) {
666 n_ports--;
667 tmp_port_map &= ~(1 << i);
668 }
669 }
670
Tejun Heo7a234af2007-09-03 12:44:57 +0900671 /* If n_ports and port_map are inconsistent, whine and
672 * clear port_map and let it be generated from n_ports.
Tejun Heo17199b12007-03-18 22:26:53 +0900673 */
Tejun Heo7a234af2007-09-03 12:44:57 +0900674 if (n_ports || tmp_port_map) {
Tejun Heo4447d352007-04-17 23:44:08 +0900675 dev_printk(KERN_WARNING, &pdev->dev,
Tejun Heo17199b12007-03-18 22:26:53 +0900676 "nr_ports (%u) and implemented port map "
Tejun Heo7a234af2007-09-03 12:44:57 +0900677 "(0x%x) don't match, using nr_ports\n",
Tejun Heo17199b12007-03-18 22:26:53 +0900678 ahci_nr_ports(cap), port_map);
Tejun Heo7a234af2007-09-03 12:44:57 +0900679 port_map = 0;
680 }
681 }
682
683 /* fabricate port_map from cap.nr_ports */
684 if (!port_map) {
Tejun Heo17199b12007-03-18 22:26:53 +0900685 port_map = (1 << ahci_nr_ports(cap)) - 1;
Tejun Heo7a234af2007-09-03 12:44:57 +0900686 dev_printk(KERN_WARNING, &pdev->dev,
687 "forcing PORTS_IMPL to 0x%x\n", port_map);
688
689 /* write the fixed up value to the PI register */
690 hpriv->saved_port_map = port_map;
Tejun Heo17199b12007-03-18 22:26:53 +0900691 }
692
Tejun Heod447df12007-03-18 22:15:33 +0900693 /* record values to use during operation */
694 hpriv->cap = cap;
695 hpriv->port_map = port_map;
696}
697
698/**
699 * ahci_restore_initial_config - Restore initial config
Tejun Heo4447d352007-04-17 23:44:08 +0900700 * @host: target ATA host
Tejun Heod447df12007-03-18 22:15:33 +0900701 *
702 * Restore initial config stored by ahci_save_initial_config().
703 *
704 * LOCKING:
705 * None.
706 */
Tejun Heo4447d352007-04-17 23:44:08 +0900707static void ahci_restore_initial_config(struct ata_host *host)
Tejun Heod447df12007-03-18 22:15:33 +0900708{
Tejun Heo4447d352007-04-17 23:44:08 +0900709 struct ahci_host_priv *hpriv = host->private_data;
710 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
711
Tejun Heod447df12007-03-18 22:15:33 +0900712 writel(hpriv->saved_cap, mmio + HOST_CAP);
713 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
714 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
715}
716
Tejun Heo203ef6c2007-07-16 14:29:40 +0900717static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900719 static const int offset[] = {
720 [SCR_STATUS] = PORT_SCR_STAT,
721 [SCR_CONTROL] = PORT_SCR_CTL,
722 [SCR_ERROR] = PORT_SCR_ERR,
723 [SCR_ACTIVE] = PORT_SCR_ACT,
724 [SCR_NOTIFICATION] = PORT_SCR_NTF,
725 };
726 struct ahci_host_priv *hpriv = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Tejun Heo203ef6c2007-07-16 14:29:40 +0900728 if (sc_reg < ARRAY_SIZE(offset) &&
729 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
730 return offset[sc_reg];
Tejun Heoda3dbb12007-07-16 14:29:40 +0900731 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Tejun Heo203ef6c2007-07-16 14:29:40 +0900734static int ahci_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Tejun Heo203ef6c2007-07-16 14:29:40 +0900736 void __iomem *port_mmio = ahci_port_base(ap);
737 int offset = ahci_scr_offset(ap, sc_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Tejun Heo203ef6c2007-07-16 14:29:40 +0900739 if (offset) {
740 *val = readl(port_mmio + offset);
741 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Tejun Heo203ef6c2007-07-16 14:29:40 +0900743 return -EINVAL;
744}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Tejun Heo203ef6c2007-07-16 14:29:40 +0900746static int ahci_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val)
747{
748 void __iomem *port_mmio = ahci_port_base(ap);
749 int offset = ahci_scr_offset(ap, sc_reg);
750
751 if (offset) {
752 writel(val, port_mmio + offset);
753 return 0;
754 }
755 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Tejun Heo4447d352007-04-17 23:44:08 +0900758static void ahci_start_engine(struct ata_port *ap)
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900759{
Tejun Heo4447d352007-04-17 23:44:08 +0900760 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900761 u32 tmp;
762
Tejun Heod8fcd112006-07-26 15:59:25 +0900763 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +0900764 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900765 tmp |= PORT_CMD_START;
766 writel(tmp, port_mmio + PORT_CMD);
767 readl(port_mmio + PORT_CMD); /* flush */
768}
769
Tejun Heo4447d352007-04-17 23:44:08 +0900770static int ahci_stop_engine(struct ata_port *ap)
Tejun Heo254950c2006-07-26 15:59:25 +0900771{
Tejun Heo4447d352007-04-17 23:44:08 +0900772 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo254950c2006-07-26 15:59:25 +0900773 u32 tmp;
774
775 tmp = readl(port_mmio + PORT_CMD);
776
Tejun Heod8fcd112006-07-26 15:59:25 +0900777 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900778 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
779 return 0;
780
Tejun Heod8fcd112006-07-26 15:59:25 +0900781 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900782 tmp &= ~PORT_CMD_START;
783 writel(tmp, port_mmio + PORT_CMD);
784
Tejun Heod8fcd112006-07-26 15:59:25 +0900785 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +0900786 tmp = ata_wait_register(port_mmio + PORT_CMD,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400787 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +0900788 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +0900789 return -EIO;
790
791 return 0;
792}
793
Tejun Heo4447d352007-04-17 23:44:08 +0900794static void ahci_start_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900795{
Tejun Heo4447d352007-04-17 23:44:08 +0900796 void __iomem *port_mmio = ahci_port_base(ap);
797 struct ahci_host_priv *hpriv = ap->host->private_data;
798 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo0be0aa92006-07-26 15:59:26 +0900799 u32 tmp;
800
801 /* set FIS registers */
Tejun Heo4447d352007-04-17 23:44:08 +0900802 if (hpriv->cap & HOST_CAP_64)
803 writel((pp->cmd_slot_dma >> 16) >> 16,
804 port_mmio + PORT_LST_ADDR_HI);
805 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900806
Tejun Heo4447d352007-04-17 23:44:08 +0900807 if (hpriv->cap & HOST_CAP_64)
808 writel((pp->rx_fis_dma >> 16) >> 16,
809 port_mmio + PORT_FIS_ADDR_HI);
810 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900811
812 /* enable FIS reception */
813 tmp = readl(port_mmio + PORT_CMD);
814 tmp |= PORT_CMD_FIS_RX;
815 writel(tmp, port_mmio + PORT_CMD);
816
817 /* flush */
818 readl(port_mmio + PORT_CMD);
819}
820
Tejun Heo4447d352007-04-17 23:44:08 +0900821static int ahci_stop_fis_rx(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900822{
Tejun Heo4447d352007-04-17 23:44:08 +0900823 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900824 u32 tmp;
825
826 /* disable FIS reception */
827 tmp = readl(port_mmio + PORT_CMD);
828 tmp &= ~PORT_CMD_FIS_RX;
829 writel(tmp, port_mmio + PORT_CMD);
830
831 /* wait for completion, spec says 500ms, give it 1000 */
832 tmp = ata_wait_register(port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
833 PORT_CMD_FIS_ON, 10, 1000);
834 if (tmp & PORT_CMD_FIS_ON)
835 return -EBUSY;
836
837 return 0;
838}
839
Tejun Heo4447d352007-04-17 23:44:08 +0900840static void ahci_power_up(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900841{
Tejun Heo4447d352007-04-17 23:44:08 +0900842 struct ahci_host_priv *hpriv = ap->host->private_data;
843 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900844 u32 cmd;
845
846 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
847
848 /* spin up device */
Tejun Heo4447d352007-04-17 23:44:08 +0900849 if (hpriv->cap & HOST_CAP_SSS) {
Tejun Heo0be0aa92006-07-26 15:59:26 +0900850 cmd |= PORT_CMD_SPIN_UP;
851 writel(cmd, port_mmio + PORT_CMD);
852 }
853
854 /* wake up link */
855 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
856}
857
Kristen Carlson Accardi31556592007-10-25 01:33:26 -0400858static void ahci_disable_alpm(struct ata_port *ap)
859{
860 struct ahci_host_priv *hpriv = ap->host->private_data;
861 void __iomem *port_mmio = ahci_port_base(ap);
862 u32 cmd;
863 struct ahci_port_priv *pp = ap->private_data;
864
865 /* IPM bits should be disabled by libata-core */
866 /* get the existing command bits */
867 cmd = readl(port_mmio + PORT_CMD);
868
869 /* disable ALPM and ASP */
870 cmd &= ~PORT_CMD_ASP;
871 cmd &= ~PORT_CMD_ALPE;
872
873 /* force the interface back to active */
874 cmd |= PORT_CMD_ICC_ACTIVE;
875
876 /* write out new cmd value */
877 writel(cmd, port_mmio + PORT_CMD);
878 cmd = readl(port_mmio + PORT_CMD);
879
880 /* wait 10ms to be sure we've come out of any low power state */
881 msleep(10);
882
883 /* clear out any PhyRdy stuff from interrupt status */
884 writel(PORT_IRQ_PHYRDY, port_mmio + PORT_IRQ_STAT);
885
886 /* go ahead and clean out PhyRdy Change from Serror too */
887 ahci_scr_write(ap, SCR_ERROR, ((1 << 16) | (1 << 18)));
888
889 /*
890 * Clear flag to indicate that we should ignore all PhyRdy
891 * state changes
892 */
893 hpriv->flags &= ~AHCI_HFLAG_NO_HOTPLUG;
894
895 /*
896 * Enable interrupts on Phy Ready.
897 */
898 pp->intr_mask |= PORT_IRQ_PHYRDY;
899 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
900
901 /*
902 * don't change the link pm policy - we can be called
903 * just to turn of link pm temporarily
904 */
905}
906
907static int ahci_enable_alpm(struct ata_port *ap,
908 enum link_pm policy)
909{
910 struct ahci_host_priv *hpriv = ap->host->private_data;
911 void __iomem *port_mmio = ahci_port_base(ap);
912 u32 cmd;
913 struct ahci_port_priv *pp = ap->private_data;
914 u32 asp;
915
916 /* Make sure the host is capable of link power management */
917 if (!(hpriv->cap & HOST_CAP_ALPM))
918 return -EINVAL;
919
920 switch (policy) {
921 case MAX_PERFORMANCE:
922 case NOT_AVAILABLE:
923 /*
924 * if we came here with NOT_AVAILABLE,
925 * it just means this is the first time we
926 * have tried to enable - default to max performance,
927 * and let the user go to lower power modes on request.
928 */
929 ahci_disable_alpm(ap);
930 return 0;
931 case MIN_POWER:
932 /* configure HBA to enter SLUMBER */
933 asp = PORT_CMD_ASP;
934 break;
935 case MEDIUM_POWER:
936 /* configure HBA to enter PARTIAL */
937 asp = 0;
938 break;
939 default:
940 return -EINVAL;
941 }
942
943 /*
944 * Disable interrupts on Phy Ready. This keeps us from
945 * getting woken up due to spurious phy ready interrupts
946 * TBD - Hot plug should be done via polling now, is
947 * that even supported?
948 */
949 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
950 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
951
952 /*
953 * Set a flag to indicate that we should ignore all PhyRdy
954 * state changes since these can happen now whenever we
955 * change link state
956 */
957 hpriv->flags |= AHCI_HFLAG_NO_HOTPLUG;
958
959 /* get the existing command bits */
960 cmd = readl(port_mmio + PORT_CMD);
961
962 /*
963 * Set ASP based on Policy
964 */
965 cmd |= asp;
966
967 /*
968 * Setting this bit will instruct the HBA to aggressively
969 * enter a lower power link state when it's appropriate and
970 * based on the value set above for ASP
971 */
972 cmd |= PORT_CMD_ALPE;
973
974 /* write out new cmd value */
975 writel(cmd, port_mmio + PORT_CMD);
976 cmd = readl(port_mmio + PORT_CMD);
977
978 /* IPM bits should be set by libata-core */
979 return 0;
980}
981
Tejun Heo438ac6d2007-03-02 17:31:26 +0900982#ifdef CONFIG_PM
Tejun Heo4447d352007-04-17 23:44:08 +0900983static void ahci_power_down(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +0900984{
Tejun Heo4447d352007-04-17 23:44:08 +0900985 struct ahci_host_priv *hpriv = ap->host->private_data;
986 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +0900987 u32 cmd, scontrol;
988
Tejun Heo4447d352007-04-17 23:44:08 +0900989 if (!(hpriv->cap & HOST_CAP_SSS))
Tejun Heo07c53da2007-01-21 02:10:11 +0900990 return;
991
992 /* put device into listen mode, first set PxSCTL.DET to 0 */
993 scontrol = readl(port_mmio + PORT_SCR_CTL);
994 scontrol &= ~0xf;
995 writel(scontrol, port_mmio + PORT_SCR_CTL);
996
997 /* then set PxCMD.SUD to 0 */
Tejun Heo0be0aa92006-07-26 15:59:26 +0900998 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
Tejun Heo07c53da2007-01-21 02:10:11 +0900999 cmd &= ~PORT_CMD_SPIN_UP;
1000 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001001}
Tejun Heo438ac6d2007-03-02 17:31:26 +09001002#endif
Tejun Heo0be0aa92006-07-26 15:59:26 +09001003
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001004static void ahci_start_port(struct ata_port *ap)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001005{
Tejun Heo0be0aa92006-07-26 15:59:26 +09001006 /* enable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001007 ahci_start_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001008
1009 /* enable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001010 ahci_start_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001011}
1012
Tejun Heo4447d352007-04-17 23:44:08 +09001013static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
Tejun Heo0be0aa92006-07-26 15:59:26 +09001014{
1015 int rc;
1016
1017 /* disable DMA */
Tejun Heo4447d352007-04-17 23:44:08 +09001018 rc = ahci_stop_engine(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001019 if (rc) {
1020 *emsg = "failed to stop engine";
1021 return rc;
1022 }
1023
1024 /* disable FIS reception */
Tejun Heo4447d352007-04-17 23:44:08 +09001025 rc = ahci_stop_fis_rx(ap);
Tejun Heo0be0aa92006-07-26 15:59:26 +09001026 if (rc) {
1027 *emsg = "failed stop FIS RX";
1028 return rc;
1029 }
1030
Tejun Heo0be0aa92006-07-26 15:59:26 +09001031 return 0;
1032}
1033
Tejun Heo4447d352007-04-17 23:44:08 +09001034static int ahci_reset_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001035{
Tejun Heo4447d352007-04-17 23:44:08 +09001036 struct pci_dev *pdev = to_pci_dev(host->dev);
1037 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heod447df12007-03-18 22:15:33 +09001038 u32 tmp;
Tejun Heod91542c2006-07-26 15:59:26 +09001039
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001040 /* we must be in AHCI mode, before using anything
1041 * AHCI-specific, such as HOST_RESET.
1042 */
Tejun Heod91542c2006-07-26 15:59:26 +09001043 tmp = readl(mmio + HOST_CTL);
Jeff Garzikab6fc952007-10-29 10:43:55 -04001044 if (!(tmp & HOST_AHCI_EN)) {
1045 tmp |= HOST_AHCI_EN;
1046 writel(tmp, mmio + HOST_CTL);
1047 }
Jeff Garzik3cc3eb12007-09-26 00:02:41 -04001048
1049 /* global controller reset */
Tejun Heod91542c2006-07-26 15:59:26 +09001050 if ((tmp & HOST_RESET) == 0) {
1051 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1052 readl(mmio + HOST_CTL); /* flush */
1053 }
1054
1055 /* reset must complete within 1 second, or
1056 * the hardware should be considered fried.
1057 */
1058 ssleep(1);
1059
1060 tmp = readl(mmio + HOST_CTL);
1061 if (tmp & HOST_RESET) {
Tejun Heo4447d352007-04-17 23:44:08 +09001062 dev_printk(KERN_ERR, host->dev,
Tejun Heod91542c2006-07-26 15:59:26 +09001063 "controller reset failed (0x%x)\n", tmp);
1064 return -EIO;
1065 }
1066
Tejun Heo98fa4b62006-11-02 12:17:23 +09001067 /* turn on AHCI mode */
Tejun Heod91542c2006-07-26 15:59:26 +09001068 writel(HOST_AHCI_EN, mmio + HOST_CTL);
1069 (void) readl(mmio + HOST_CTL); /* flush */
Tejun Heo98fa4b62006-11-02 12:17:23 +09001070
Tejun Heod447df12007-03-18 22:15:33 +09001071 /* some registers might be cleared on reset. restore initial values */
Tejun Heo4447d352007-04-17 23:44:08 +09001072 ahci_restore_initial_config(host);
Tejun Heod91542c2006-07-26 15:59:26 +09001073
1074 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1075 u16 tmp16;
1076
1077 /* configure PCS */
1078 pci_read_config_word(pdev, 0x92, &tmp16);
1079 tmp16 |= 0xf;
1080 pci_write_config_word(pdev, 0x92, tmp16);
1081 }
1082
1083 return 0;
1084}
1085
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001086static void ahci_port_init(struct pci_dev *pdev, struct ata_port *ap,
1087 int port_no, void __iomem *mmio,
1088 void __iomem *port_mmio)
1089{
1090 const char *emsg = NULL;
1091 int rc;
1092 u32 tmp;
1093
1094 /* make sure port is not active */
1095 rc = ahci_deinit_port(ap, &emsg);
1096 if (rc)
1097 dev_printk(KERN_WARNING, &pdev->dev,
1098 "%s (%d)\n", emsg, rc);
1099
1100 /* clear SError */
1101 tmp = readl(port_mmio + PORT_SCR_ERR);
1102 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1103 writel(tmp, port_mmio + PORT_SCR_ERR);
1104
1105 /* clear port IRQ */
1106 tmp = readl(port_mmio + PORT_IRQ_STAT);
1107 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1108 if (tmp)
1109 writel(tmp, port_mmio + PORT_IRQ_STAT);
1110
1111 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1112}
1113
Tejun Heo4447d352007-04-17 23:44:08 +09001114static void ahci_init_controller(struct ata_host *host)
Tejun Heod91542c2006-07-26 15:59:26 +09001115{
Tejun Heo417a1a62007-09-23 13:19:55 +09001116 struct ahci_host_priv *hpriv = host->private_data;
Tejun Heo4447d352007-04-17 23:44:08 +09001117 struct pci_dev *pdev = to_pci_dev(host->dev);
1118 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001119 int i;
Jeff Garzikcd70c262007-07-08 02:29:42 -04001120 void __iomem *port_mmio;
Tejun Heod91542c2006-07-26 15:59:26 +09001121 u32 tmp;
1122
Tejun Heo417a1a62007-09-23 13:19:55 +09001123 if (hpriv->flags & AHCI_HFLAG_MV_PATA) {
Jeff Garzikcd70c262007-07-08 02:29:42 -04001124 port_mmio = __ahci_port_base(host, 4);
1125
1126 writel(0, port_mmio + PORT_IRQ_MASK);
1127
1128 /* clear port IRQ */
1129 tmp = readl(port_mmio + PORT_IRQ_STAT);
1130 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1131 if (tmp)
1132 writel(tmp, port_mmio + PORT_IRQ_STAT);
1133 }
1134
Tejun Heo4447d352007-04-17 23:44:08 +09001135 for (i = 0; i < host->n_ports; i++) {
1136 struct ata_port *ap = host->ports[i];
Tejun Heod91542c2006-07-26 15:59:26 +09001137
Jeff Garzikcd70c262007-07-08 02:29:42 -04001138 port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09001139 if (ata_port_is_dummy(ap))
Tejun Heod91542c2006-07-26 15:59:26 +09001140 continue;
Tejun Heod91542c2006-07-26 15:59:26 +09001141
Jeff Garzik2bcd8662007-05-28 07:45:27 -04001142 ahci_port_init(pdev, ap, i, mmio, port_mmio);
Tejun Heod91542c2006-07-26 15:59:26 +09001143 }
1144
1145 tmp = readl(mmio + HOST_CTL);
1146 VPRINTK("HOST_CTL 0x%x\n", tmp);
1147 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1148 tmp = readl(mmio + HOST_CTL);
1149 VPRINTK("HOST_CTL 0x%x\n", tmp);
1150}
1151
Tejun Heo422b7592005-12-19 22:37:17 +09001152static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Tejun Heo4447d352007-04-17 23:44:08 +09001154 void __iomem *port_mmio = ahci_port_base(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +09001156 u32 tmp;
1157
1158 tmp = readl(port_mmio + PORT_SIG);
1159 tf.lbah = (tmp >> 24) & 0xff;
1160 tf.lbam = (tmp >> 16) & 0xff;
1161 tf.lbal = (tmp >> 8) & 0xff;
1162 tf.nsect = (tmp) & 0xff;
1163
1164 return ata_dev_classify(&tf);
1165}
1166
Tejun Heo12fad3f2006-05-15 21:03:55 +09001167static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1168 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +09001169{
Tejun Heo12fad3f2006-05-15 21:03:55 +09001170 dma_addr_t cmd_tbl_dma;
1171
1172 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1173
1174 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1175 pp->cmd_slot[tag].status = 0;
1176 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1177 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +09001178}
1179
Tejun Heod2e75df2007-07-16 14:29:39 +09001180static int ahci_kick_engine(struct ata_port *ap, int force_restart)
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001181{
Tejun Heo0d5ff562007-02-01 15:06:36 +09001182 void __iomem *port_mmio = ap->ioaddr.cmd_addr;
Jeff Garzikcca39742006-08-24 03:19:22 -04001183 struct ahci_host_priv *hpriv = ap->host->private_data;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001184 u32 tmp;
Tejun Heod2e75df2007-07-16 14:29:39 +09001185 int busy, rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001186
Tejun Heod2e75df2007-07-16 14:29:39 +09001187 /* do we need to kick the port? */
1188 busy = ahci_check_status(ap) & (ATA_BUSY | ATA_DRQ);
1189 if (!busy && !force_restart)
1190 return 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001191
Tejun Heod2e75df2007-07-16 14:29:39 +09001192 /* stop engine */
1193 rc = ahci_stop_engine(ap);
1194 if (rc)
1195 goto out_restart;
1196
1197 /* need to do CLO? */
1198 if (!busy) {
1199 rc = 0;
1200 goto out_restart;
1201 }
1202
1203 if (!(hpriv->cap & HOST_CAP_CLO)) {
1204 rc = -EOPNOTSUPP;
1205 goto out_restart;
1206 }
1207
1208 /* perform CLO */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001209 tmp = readl(port_mmio + PORT_CMD);
1210 tmp |= PORT_CMD_CLO;
1211 writel(tmp, port_mmio + PORT_CMD);
1212
Tejun Heod2e75df2007-07-16 14:29:39 +09001213 rc = 0;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001214 tmp = ata_wait_register(port_mmio + PORT_CMD,
1215 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1216 if (tmp & PORT_CMD_CLO)
Tejun Heod2e75df2007-07-16 14:29:39 +09001217 rc = -EIO;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001218
Tejun Heod2e75df2007-07-16 14:29:39 +09001219 /* restart engine */
1220 out_restart:
1221 ahci_start_engine(ap);
1222 return rc;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +02001223}
1224
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001225static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1226 struct ata_taskfile *tf, int is_cmd, u16 flags,
1227 unsigned long timeout_msec)
1228{
1229 const u32 cmd_fis_len = 5; /* five dwords */
1230 struct ahci_port_priv *pp = ap->private_data;
1231 void __iomem *port_mmio = ahci_port_base(ap);
1232 u8 *fis = pp->cmd_tbl;
1233 u32 tmp;
1234
1235 /* prep the command */
1236 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1237 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1238
1239 /* issue & wait */
1240 writel(1, port_mmio + PORT_CMD_ISSUE);
1241
1242 if (timeout_msec) {
1243 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1,
1244 1, timeout_msec);
1245 if (tmp & 0x1) {
1246 ahci_kick_engine(ap, 1);
1247 return -EBUSY;
1248 }
1249 } else
1250 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1251
1252 return 0;
1253}
1254
Tejun Heocc0680a2007-08-06 18:36:23 +09001255static int ahci_do_softreset(struct ata_link *link, unsigned int *class,
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001256 int pmp, unsigned long deadline)
Tejun Heo4658f792006-03-22 21:07:03 +09001257{
Tejun Heocc0680a2007-08-06 18:36:23 +09001258 struct ata_port *ap = link->ap;
Tejun Heo4658f792006-03-22 21:07:03 +09001259 const char *reason = NULL;
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001260 unsigned long now, msecs;
Tejun Heo4658f792006-03-22 21:07:03 +09001261 struct ata_taskfile tf;
Tejun Heo4658f792006-03-22 21:07:03 +09001262 int rc;
1263
1264 DPRINTK("ENTER\n");
1265
Tejun Heocc0680a2007-08-06 18:36:23 +09001266 if (ata_link_offline(link)) {
Tejun Heoc2a65852006-04-03 01:58:06 +09001267 DPRINTK("PHY reports no device\n");
1268 *class = ATA_DEV_NONE;
1269 return 0;
1270 }
1271
Tejun Heo4658f792006-03-22 21:07:03 +09001272 /* prepare for SRST (AHCI-1.1 10.4.1) */
Tejun Heod2e75df2007-07-16 14:29:39 +09001273 rc = ahci_kick_engine(ap, 1);
1274 if (rc)
Tejun Heocc0680a2007-08-06 18:36:23 +09001275 ata_link_printk(link, KERN_WARNING,
Tejun Heod2e75df2007-07-16 14:29:39 +09001276 "failed to reset engine (errno=%d)", rc);
Tejun Heo4658f792006-03-22 21:07:03 +09001277
Tejun Heocc0680a2007-08-06 18:36:23 +09001278 ata_tf_init(link->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +09001279
1280 /* issue the first D2H Register FIS */
Tejun Heo2cbb79e2007-07-16 14:29:38 +09001281 msecs = 0;
1282 now = jiffies;
1283 if (time_after(now, deadline))
1284 msecs = jiffies_to_msecs(deadline - now);
1285
Tejun Heo4658f792006-03-22 21:07:03 +09001286 tf.ctl |= ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001287 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
Tejun Heo91c4a2e2007-07-16 14:29:39 +09001288 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
Tejun Heo4658f792006-03-22 21:07:03 +09001289 rc = -EIO;
1290 reason = "1st FIS failed";
1291 goto fail;
1292 }
1293
1294 /* spec says at least 5us, but be generous and sleep for 1ms */
1295 msleep(1);
1296
1297 /* issue the second D2H Register FIS */
Tejun Heo4658f792006-03-22 21:07:03 +09001298 tf.ctl &= ~ATA_SRST;
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001299 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
Tejun Heo4658f792006-03-22 21:07:03 +09001300
Tejun Heo88ff6ea2007-10-16 14:21:24 -07001301 /* wait a while before checking status */
1302 ata_wait_after_reset(ap, deadline);
Tejun Heo4658f792006-03-22 21:07:03 +09001303
Tejun Heo9b893912007-02-02 16:50:52 +09001304 rc = ata_wait_ready(ap, deadline);
1305 /* link occupied, -ENODEV too is an error */
1306 if (rc) {
1307 reason = "device not ready";
1308 goto fail;
Tejun Heo4658f792006-03-22 21:07:03 +09001309 }
Tejun Heo9b893912007-02-02 16:50:52 +09001310 *class = ahci_dev_classify(ap);
Tejun Heo4658f792006-03-22 21:07:03 +09001311
1312 DPRINTK("EXIT, class=%u\n", *class);
1313 return 0;
1314
Tejun Heo4658f792006-03-22 21:07:03 +09001315 fail:
Tejun Heocc0680a2007-08-06 18:36:23 +09001316 ata_link_printk(link, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +09001317 return rc;
1318}
1319
Tejun Heocc0680a2007-08-06 18:36:23 +09001320static int ahci_softreset(struct ata_link *link, unsigned int *class,
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001321 unsigned long deadline)
1322{
Tejun Heo7d50b602007-09-23 13:19:54 +09001323 int pmp = 0;
1324
1325 if (link->ap->flags & ATA_FLAG_PMP)
1326 pmp = SATA_PMP_CTRL_PORT;
1327
1328 return ahci_do_softreset(link, class, pmp, deadline);
Tejun Heoa9cf5e82007-07-16 14:29:39 +09001329}
1330
Tejun Heocc0680a2007-08-06 18:36:23 +09001331static int ahci_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001332 unsigned long deadline)
Tejun Heo422b7592005-12-19 22:37:17 +09001333{
Tejun Heocc0680a2007-08-06 18:36:23 +09001334 struct ata_port *ap = link->ap;
Tejun Heo42969712006-05-31 18:28:18 +09001335 struct ahci_port_priv *pp = ap->private_data;
1336 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1337 struct ata_taskfile tf;
Tejun Heo4bd00f62006-02-11 16:26:02 +09001338 int rc;
1339
1340 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Tejun Heo4447d352007-04-17 23:44:08 +09001342 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +09001343
1344 /* clear D2H reception area to properly wait for D2H FIS */
Tejun Heocc0680a2007-08-06 18:36:23 +09001345 ata_tf_init(link->device, &tf);
Tejun Heodfd7a3d2007-01-26 15:37:20 +09001346 tf.command = 0x80;
Tejun Heo99771262007-07-16 14:29:38 +09001347 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
Tejun Heo42969712006-05-31 18:28:18 +09001348
Tejun Heocc0680a2007-08-06 18:36:23 +09001349 rc = sata_std_hardreset(link, class, deadline);
Tejun Heo42969712006-05-31 18:28:18 +09001350
Tejun Heo4447d352007-04-17 23:44:08 +09001351 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Tejun Heocc0680a2007-08-06 18:36:23 +09001353 if (rc == 0 && ata_link_online(link))
Tejun Heo4bd00f62006-02-11 16:26:02 +09001354 *class = ahci_dev_classify(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09001355 if (rc != -EAGAIN && *class == ATA_DEV_UNKNOWN)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001356 *class = ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Tejun Heo4bd00f62006-02-11 16:26:02 +09001358 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1359 return rc;
1360}
1361
Tejun Heocc0680a2007-08-06 18:36:23 +09001362static int ahci_vt8251_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09001363 unsigned long deadline)
Tejun Heoad616ff2006-11-01 18:00:24 +09001364{
Tejun Heocc0680a2007-08-06 18:36:23 +09001365 struct ata_port *ap = link->ap;
Tejun Heoda3dbb12007-07-16 14:29:40 +09001366 u32 serror;
Tejun Heoad616ff2006-11-01 18:00:24 +09001367 int rc;
1368
1369 DPRINTK("ENTER\n");
1370
Tejun Heo4447d352007-04-17 23:44:08 +09001371 ahci_stop_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001372
Tejun Heocc0680a2007-08-06 18:36:23 +09001373 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
Tejun Heod4b2bab2007-02-02 16:50:52 +09001374 deadline);
Tejun Heoad616ff2006-11-01 18:00:24 +09001375
1376 /* vt8251 needs SError cleared for the port to operate */
Tejun Heoda3dbb12007-07-16 14:29:40 +09001377 ahci_scr_read(ap, SCR_ERROR, &serror);
1378 ahci_scr_write(ap, SCR_ERROR, serror);
Tejun Heoad616ff2006-11-01 18:00:24 +09001379
Tejun Heo4447d352007-04-17 23:44:08 +09001380 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001381
1382 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1383
1384 /* vt8251 doesn't clear BSY on signature FIS reception,
1385 * request follow-up softreset.
1386 */
1387 return rc ?: -EAGAIN;
1388}
1389
Tejun Heoedc93052007-10-25 14:59:16 +09001390static int ahci_p5wdh_hardreset(struct ata_link *link, unsigned int *class,
1391 unsigned long deadline)
1392{
1393 struct ata_port *ap = link->ap;
1394 struct ahci_port_priv *pp = ap->private_data;
1395 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1396 struct ata_taskfile tf;
1397 int rc;
1398
1399 ahci_stop_engine(ap);
1400
1401 /* clear D2H reception area to properly wait for D2H FIS */
1402 ata_tf_init(link->device, &tf);
1403 tf.command = 0x80;
1404 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1405
1406 rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
1407 deadline);
1408
1409 ahci_start_engine(ap);
1410
1411 if (rc || ata_link_offline(link))
1412 return rc;
1413
1414 /* spec mandates ">= 2ms" before checking status */
1415 msleep(150);
1416
1417 /* The pseudo configuration device on SIMG4726 attached to
1418 * ASUS P5W-DH Deluxe doesn't send signature FIS after
1419 * hardreset if no device is attached to the first downstream
1420 * port && the pseudo device locks up on SRST w/ PMP==0. To
1421 * work around this, wait for !BSY only briefly. If BSY isn't
1422 * cleared, perform CLO and proceed to IDENTIFY (achieved by
1423 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
1424 *
1425 * Wait for two seconds. Devices attached to downstream port
1426 * which can't process the following IDENTIFY after this will
1427 * have to be reset again. For most cases, this should
1428 * suffice while making probing snappish enough.
1429 */
1430 rc = ata_wait_ready(ap, jiffies + 2 * HZ);
1431 if (rc)
1432 ahci_kick_engine(ap, 0);
1433
1434 return 0;
1435}
1436
Tejun Heocc0680a2007-08-06 18:36:23 +09001437static void ahci_postreset(struct ata_link *link, unsigned int *class)
Tejun Heo4bd00f62006-02-11 16:26:02 +09001438{
Tejun Heocc0680a2007-08-06 18:36:23 +09001439 struct ata_port *ap = link->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09001440 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001441 u32 new_tmp, tmp;
1442
Tejun Heocc0680a2007-08-06 18:36:23 +09001443 ata_std_postreset(link, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -05001444
1445 /* Make sure port's ATAPI bit is set appropriately */
1446 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +09001447 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -05001448 new_tmp |= PORT_CMD_ATAPI;
1449 else
1450 new_tmp &= ~PORT_CMD_ATAPI;
1451 if (new_tmp != tmp) {
1452 writel(new_tmp, port_mmio + PORT_CMD);
1453 readl(port_mmio + PORT_CMD); /* flush */
1454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456
Tejun Heo7d50b602007-09-23 13:19:54 +09001457static int ahci_pmp_softreset(struct ata_link *link, unsigned int *class,
1458 unsigned long deadline)
1459{
1460 return ahci_do_softreset(link, class, link->pmp, deadline);
1461}
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463static u8 ahci_check_status(struct ata_port *ap)
1464{
Tejun Heo0d5ff562007-02-01 15:06:36 +09001465 void __iomem *mmio = ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 return readl(mmio + PORT_TFDATA) & 0xFF;
1468}
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
1471{
1472 struct ahci_port_priv *pp = ap->private_data;
1473 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1474
1475 ata_tf_from_fis(d2h_fis, tf);
1476}
1477
Tejun Heo12fad3f2006-05-15 21:03:55 +09001478static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001480 struct scatterlist *sg;
1481 struct ahci_sg *ahci_sg;
Jeff Garzik828d09d2005-11-12 01:27:07 -05001482 unsigned int n_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 VPRINTK("ENTER\n");
1485
1486 /*
1487 * Next, the S/G list.
1488 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09001489 ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001490 ata_for_each_sg(sg, qc) {
1491 dma_addr_t addr = sg_dma_address(sg);
1492 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001494 ahci_sg->addr = cpu_to_le32(addr & 0xffffffff);
1495 ahci_sg->addr_hi = cpu_to_le32((addr >> 16) >> 16);
1496 ahci_sg->flags_size = cpu_to_le32(sg_len - 1);
Jeff Garzik828d09d2005-11-12 01:27:07 -05001497
Jeff Garzikcedc9a42005-10-05 07:13:30 -04001498 ahci_sg++;
Jeff Garzik828d09d2005-11-12 01:27:07 -05001499 n_sg++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
Jeff Garzik828d09d2005-11-12 01:27:07 -05001501
1502 return n_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
1505static void ahci_qc_prep(struct ata_queued_cmd *qc)
1506{
Jeff Garzika0ea7322005-06-04 01:13:15 -04001507 struct ata_port *ap = qc->ap;
1508 struct ahci_port_priv *pp = ap->private_data;
Tejun Heocc9278e2006-02-10 17:25:47 +09001509 int is_atapi = is_atapi_taskfile(&qc->tf);
Tejun Heo12fad3f2006-05-15 21:03:55 +09001510 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 u32 opts;
1512 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -05001513 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 * Fill in command table information. First, the header,
1517 * a SATA Register - Host to Device command FIS.
1518 */
Tejun Heo12fad3f2006-05-15 21:03:55 +09001519 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
1520
Tejun Heo7d50b602007-09-23 13:19:54 +09001521 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
Tejun Heocc9278e2006-02-10 17:25:47 +09001522 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +09001523 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1524 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -04001525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Tejun Heocc9278e2006-02-10 17:25:47 +09001527 n_elem = 0;
1528 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +09001529 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Tejun Heocc9278e2006-02-10 17:25:47 +09001531 /*
1532 * Fill in command slot information.
1533 */
Tejun Heo7d50b602007-09-23 13:19:54 +09001534 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
Tejun Heocc9278e2006-02-10 17:25:47 +09001535 if (qc->tf.flags & ATA_TFLAG_WRITE)
1536 opts |= AHCI_CMD_WRITE;
1537 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +09001538 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -05001539
Tejun Heo12fad3f2006-05-15 21:03:55 +09001540 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
Tejun Heo78cd52d2006-05-15 20:58:29 +09001543static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Tejun Heo417a1a62007-09-23 13:19:55 +09001545 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001546 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09001547 struct ata_eh_info *host_ehi = &ap->link.eh_info;
1548 struct ata_link *link = NULL;
1549 struct ata_queued_cmd *active_qc;
1550 struct ata_eh_info *active_ehi;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001551 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Tejun Heo7d50b602007-09-23 13:19:54 +09001553 /* determine active link */
1554 ata_port_for_each_link(link, ap)
1555 if (ata_link_active(link))
1556 break;
1557 if (!link)
1558 link = &ap->link;
1559
1560 active_qc = ata_qc_from_tag(ap, link->active_tag);
1561 active_ehi = &link->eh_info;
1562
1563 /* record irq stat */
1564 ata_ehi_clear_desc(host_ehi);
1565 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
Jeff Garzik9f68a242005-11-15 14:03:47 -05001566
Tejun Heo78cd52d2006-05-15 20:58:29 +09001567 /* AHCI needs SError cleared; otherwise, it might lock up */
Tejun Heoda3dbb12007-07-16 14:29:40 +09001568 ahci_scr_read(ap, SCR_ERROR, &serror);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001569 ahci_scr_write(ap, SCR_ERROR, serror);
Tejun Heo7d50b602007-09-23 13:19:54 +09001570 host_ehi->serror |= serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Tejun Heo41669552006-11-29 11:33:14 +09001572 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
Tejun Heo417a1a62007-09-23 13:19:55 +09001573 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
Tejun Heo41669552006-11-29 11:33:14 +09001574 irq_stat &= ~PORT_IRQ_IF_ERR;
1575
Conke Hu55a61602007-03-27 18:33:05 +08001576 if (irq_stat & PORT_IRQ_TF_ERR) {
Tejun Heo7d50b602007-09-23 13:19:54 +09001577 /* If qc is active, charge it; otherwise, the active
1578 * link. There's no active qc on NCQ errors. It will
1579 * be determined by EH by reading log page 10h.
1580 */
1581 if (active_qc)
1582 active_qc->err_mask |= AC_ERR_DEV;
1583 else
1584 active_ehi->err_mask |= AC_ERR_DEV;
1585
Tejun Heo417a1a62007-09-23 13:19:55 +09001586 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
Tejun Heo7d50b602007-09-23 13:19:54 +09001587 host_ehi->serror &= ~SERR_INTERNAL;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Tejun Heo78cd52d2006-05-15 20:58:29 +09001590 if (irq_stat & PORT_IRQ_UNK_FIS) {
1591 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Tejun Heo7d50b602007-09-23 13:19:54 +09001593 active_ehi->err_mask |= AC_ERR_HSM;
1594 active_ehi->action |= ATA_EH_SOFTRESET;
1595 ata_ehi_push_desc(active_ehi,
1596 "unknown FIS %08x %08x %08x %08x" ,
Tejun Heo78cd52d2006-05-15 20:58:29 +09001597 unk[0], unk[1], unk[2], unk[3]);
1598 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04001599
Tejun Heo7d50b602007-09-23 13:19:54 +09001600 if (ap->nr_pmp_links && (irq_stat & PORT_IRQ_BAD_PMP)) {
1601 active_ehi->err_mask |= AC_ERR_HSM;
1602 active_ehi->action |= ATA_EH_SOFTRESET;
1603 ata_ehi_push_desc(active_ehi, "incorrect PMP");
1604 }
Tejun Heo78cd52d2006-05-15 20:58:29 +09001605
Tejun Heo7d50b602007-09-23 13:19:54 +09001606 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
1607 host_ehi->err_mask |= AC_ERR_HOST_BUS;
1608 host_ehi->action |= ATA_EH_SOFTRESET;
1609 ata_ehi_push_desc(host_ehi, "host bus error");
1610 }
1611
1612 if (irq_stat & PORT_IRQ_IF_ERR) {
1613 host_ehi->err_mask |= AC_ERR_ATA_BUS;
1614 host_ehi->action |= ATA_EH_SOFTRESET;
1615 ata_ehi_push_desc(host_ehi, "interface fatal error");
1616 }
1617
1618 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
1619 ata_ehi_hotplugged(host_ehi);
1620 ata_ehi_push_desc(host_ehi, "%s",
1621 irq_stat & PORT_IRQ_CONNECT ?
1622 "connection status changed" : "PHY RDY changed");
1623 }
1624
1625 /* okay, let's hand over to EH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Tejun Heo78cd52d2006-05-15 20:58:29 +09001627 if (irq_stat & PORT_IRQ_FREEZE)
1628 ata_port_freeze(ap);
1629 else
1630 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
1632
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001633static void ahci_port_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Tejun Heo4447d352007-04-17 23:44:08 +09001635 void __iomem *port_mmio = ap->ioaddr.cmd_addr;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001636 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo0291f952007-01-25 19:16:28 +09001637 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo5f226c62007-10-09 15:02:23 +09001638 struct ahci_host_priv *hpriv = ap->host->private_data;
Tejun Heob06ce3e2007-10-09 15:06:48 +09001639 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Tejun Heo12fad3f2006-05-15 21:03:55 +09001640 u32 status, qc_active;
Tejun Heo0291f952007-01-25 19:16:28 +09001641 int rc, known_irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 status = readl(port_mmio + PORT_IRQ_STAT);
1644 writel(status, port_mmio + PORT_IRQ_STAT);
1645
Tejun Heob06ce3e2007-10-09 15:06:48 +09001646 /* ignore BAD_PMP while resetting */
1647 if (unlikely(resetting))
1648 status &= ~PORT_IRQ_BAD_PMP;
1649
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04001650 /* If we are getting PhyRdy, this is
1651 * just a power state change, we should
1652 * clear out this, plus the PhyRdy/Comm
1653 * Wake bits from Serror
1654 */
1655 if ((hpriv->flags & AHCI_HFLAG_NO_HOTPLUG) &&
1656 (status & PORT_IRQ_PHYRDY)) {
1657 status &= ~PORT_IRQ_PHYRDY;
1658 ahci_scr_write(ap, SCR_ERROR, ((1 << 16) | (1 << 18)));
1659 }
1660
Tejun Heo78cd52d2006-05-15 20:58:29 +09001661 if (unlikely(status & PORT_IRQ_ERROR)) {
1662 ahci_error_intr(ap, status);
1663 return;
1664 }
1665
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04001666 if (status & PORT_IRQ_SDB_FIS) {
Tejun Heo5f226c62007-10-09 15:02:23 +09001667 /* If SNotification is available, leave notification
1668 * handling to sata_async_notification(). If not,
1669 * emulate it by snooping SDB FIS RX area.
1670 *
1671 * Snooping FIS RX area is probably cheaper than
1672 * poking SNotification but some constrollers which
1673 * implement SNotification, ICH9 for example, don't
1674 * store AN SDB FIS into receive area.
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04001675 */
Tejun Heo5f226c62007-10-09 15:02:23 +09001676 if (hpriv->cap & HOST_CAP_SNTF)
Tejun Heo7d77b242007-09-23 13:14:13 +09001677 sata_async_notification(ap);
Tejun Heo5f226c62007-10-09 15:02:23 +09001678 else {
1679 /* If the 'N' bit in word 0 of the FIS is set,
1680 * we just received asynchronous notification.
1681 * Tell libata about it.
1682 */
1683 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
1684 u32 f0 = le32_to_cpu(f[0]);
1685
1686 if (f0 & (1 << 15))
1687 sata_async_notification(ap);
1688 }
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04001689 }
1690
Tejun Heo7d50b602007-09-23 13:19:54 +09001691 /* pp->active_link is valid iff any command is in flight */
1692 if (ap->qc_active && pp->active_link->sactive)
Tejun Heo12fad3f2006-05-15 21:03:55 +09001693 qc_active = readl(port_mmio + PORT_SCR_ACT);
1694 else
1695 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
1696
1697 rc = ata_qc_complete_multiple(ap, qc_active, NULL);
Tejun Heob06ce3e2007-10-09 15:06:48 +09001698
1699 /* If resetting, spurious or invalid completions are expected,
1700 * return unconditionally.
1701 */
1702 if (resetting)
1703 return;
1704
Tejun Heo12fad3f2006-05-15 21:03:55 +09001705 if (rc > 0)
1706 return;
1707 if (rc < 0) {
1708 ehi->err_mask |= AC_ERR_HSM;
1709 ehi->action |= ATA_EH_SOFTRESET;
1710 ata_port_freeze(ap);
1711 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 }
1713
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001714 /* hmmm... a spurious interrupt */
Tejun Heo2a3917a2006-05-15 20:58:30 +09001715
Tejun Heo0291f952007-01-25 19:16:28 +09001716 /* if !NCQ, ignore. No modern ATA device has broken HSM
1717 * implementation for non-NCQ commands.
1718 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001719 if (!ap->link.sactive)
Tejun Heo12fad3f2006-05-15 21:03:55 +09001720 return;
1721
Tejun Heo0291f952007-01-25 19:16:28 +09001722 if (status & PORT_IRQ_D2H_REG_FIS) {
1723 if (!pp->ncq_saw_d2h)
1724 ata_port_printk(ap, KERN_INFO,
1725 "D2H reg with I during NCQ, "
1726 "this message won't be printed again\n");
1727 pp->ncq_saw_d2h = 1;
1728 known_irq = 1;
1729 }
Tejun Heo2a3917a2006-05-15 20:58:30 +09001730
Tejun Heo0291f952007-01-25 19:16:28 +09001731 if (status & PORT_IRQ_DMAS_FIS) {
1732 if (!pp->ncq_saw_dmas)
1733 ata_port_printk(ap, KERN_INFO,
1734 "DMAS FIS during NCQ, "
1735 "this message won't be printed again\n");
1736 pp->ncq_saw_dmas = 1;
1737 known_irq = 1;
1738 }
1739
Tejun Heoa2bbd0c2007-02-21 16:34:25 +09001740 if (status & PORT_IRQ_SDB_FIS) {
Al Viro04d4f7a2007-02-09 16:39:30 +00001741 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
Tejun Heo0291f952007-01-25 19:16:28 +09001742
Tejun Heoafb2d552007-02-27 13:24:19 +09001743 if (le32_to_cpu(f[1])) {
1744 /* SDB FIS containing spurious completions
1745 * might be dangerous, whine and fail commands
1746 * with HSM violation. EH will turn off NCQ
1747 * after several such failures.
1748 */
1749 ata_ehi_push_desc(ehi,
1750 "spurious completions during NCQ "
1751 "issue=0x%x SAct=0x%x FIS=%08x:%08x",
1752 readl(port_mmio + PORT_CMD_ISSUE),
1753 readl(port_mmio + PORT_SCR_ACT),
1754 le32_to_cpu(f[0]), le32_to_cpu(f[1]));
1755 ehi->err_mask |= AC_ERR_HSM;
1756 ehi->action |= ATA_EH_SOFTRESET;
1757 ata_port_freeze(ap);
1758 } else {
1759 if (!pp->ncq_saw_sdb)
1760 ata_port_printk(ap, KERN_INFO,
1761 "spurious SDB FIS %08x:%08x during NCQ, "
1762 "this message won't be printed again\n",
1763 le32_to_cpu(f[0]), le32_to_cpu(f[1]));
1764 pp->ncq_saw_sdb = 1;
1765 }
Tejun Heo0291f952007-01-25 19:16:28 +09001766 known_irq = 1;
1767 }
1768
1769 if (!known_irq)
Tejun Heo78cd52d2006-05-15 20:58:29 +09001770 ata_port_printk(ap, KERN_INFO, "spurious interrupt "
Tejun Heo0291f952007-01-25 19:16:28 +09001771 "(irq_stat 0x%x active_tag 0x%x sactive 0x%x)\n",
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001772 status, ap->link.active_tag, ap->link.sactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773}
1774
1775static void ahci_irq_clear(struct ata_port *ap)
1776{
1777 /* TODO */
1778}
1779
David Howells7d12e782006-10-05 14:55:46 +01001780static irqreturn_t ahci_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Jeff Garzikcca39742006-08-24 03:19:22 -04001782 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 struct ahci_host_priv *hpriv;
1784 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -04001785 void __iomem *mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 u32 irq_stat, irq_ack = 0;
1787
1788 VPRINTK("ENTER\n");
1789
Jeff Garzikcca39742006-08-24 03:19:22 -04001790 hpriv = host->private_data;
Tejun Heo0d5ff562007-02-01 15:06:36 +09001791 mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 /* sigh. 0xffffffff is a valid return from h/w */
1794 irq_stat = readl(mmio + HOST_IRQ_STAT);
1795 irq_stat &= hpriv->port_map;
1796 if (!irq_stat)
1797 return IRQ_NONE;
1798
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001799 spin_lock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001801 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Jeff Garzik67846b32005-10-05 02:58:32 -04001804 if (!(irq_stat & (1 << i)))
1805 continue;
1806
Jeff Garzikcca39742006-08-24 03:19:22 -04001807 ap = host->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -04001808 if (ap) {
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001809 ahci_port_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -04001810 VPRINTK("port %u\n", i);
1811 } else {
1812 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +09001813 if (ata_ratelimit())
Jeff Garzikcca39742006-08-24 03:19:22 -04001814 dev_printk(KERN_WARNING, host->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -05001815 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 }
Jeff Garzik67846b32005-10-05 02:58:32 -04001817
1818 irq_ack |= (1 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
1820
1821 if (irq_ack) {
1822 writel(irq_ack, mmio + HOST_IRQ_STAT);
1823 handled = 1;
1824 }
1825
Jeff Garzikcca39742006-08-24 03:19:22 -04001826 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 VPRINTK("EXIT\n");
1829
1830 return IRQ_RETVAL(handled);
1831}
1832
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09001833static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
1835 struct ata_port *ap = qc->ap;
Tejun Heo4447d352007-04-17 23:44:08 +09001836 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo7d50b602007-09-23 13:19:54 +09001837 struct ahci_port_priv *pp = ap->private_data;
1838
1839 /* Keep track of the currently active link. It will be used
1840 * in completion path to determine whether NCQ phase is in
1841 * progress.
1842 */
1843 pp->active_link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Tejun Heo12fad3f2006-05-15 21:03:55 +09001845 if (qc->tf.protocol == ATA_PROT_NCQ)
1846 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
1847 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1849
1850 return 0;
1851}
1852
Tejun Heo78cd52d2006-05-15 20:58:29 +09001853static void ahci_freeze(struct ata_port *ap)
1854{
Tejun Heo4447d352007-04-17 23:44:08 +09001855 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001856
1857 /* turn IRQ off */
1858 writel(0, port_mmio + PORT_IRQ_MASK);
1859}
1860
1861static void ahci_thaw(struct ata_port *ap)
1862{
Tejun Heo0d5ff562007-02-01 15:06:36 +09001863 void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
Tejun Heo4447d352007-04-17 23:44:08 +09001864 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001865 u32 tmp;
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07001866 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo78cd52d2006-05-15 20:58:29 +09001867
1868 /* clear IRQ */
1869 tmp = readl(port_mmio + PORT_IRQ_STAT);
1870 writel(tmp, port_mmio + PORT_IRQ_STAT);
Tejun Heoa7187282007-01-27 11:04:26 +09001871 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001872
Tejun Heo1c954a42007-10-09 15:01:37 +09001873 /* turn IRQ back on */
1874 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001875}
1876
1877static void ahci_error_handler(struct ata_port *ap)
1878{
Tejun Heob51e9e52006-06-29 01:29:30 +09001879 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +09001880 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09001881 ahci_stop_engine(ap);
1882 ahci_start_engine(ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001883 }
1884
1885 /* perform recovery */
Tejun Heo7d50b602007-09-23 13:19:54 +09001886 sata_pmp_do_eh(ap, ata_std_prereset, ahci_softreset,
1887 ahci_hardreset, ahci_postreset,
1888 sata_pmp_std_prereset, ahci_pmp_softreset,
1889 sata_pmp_std_hardreset, sata_pmp_std_postreset);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001890}
1891
Tejun Heoad616ff2006-11-01 18:00:24 +09001892static void ahci_vt8251_error_handler(struct ata_port *ap)
1893{
Tejun Heoad616ff2006-11-01 18:00:24 +09001894 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
1895 /* restart engine */
Tejun Heo4447d352007-04-17 23:44:08 +09001896 ahci_stop_engine(ap);
1897 ahci_start_engine(ap);
Tejun Heoad616ff2006-11-01 18:00:24 +09001898 }
1899
1900 /* perform recovery */
1901 ata_do_eh(ap, ata_std_prereset, ahci_softreset, ahci_vt8251_hardreset,
1902 ahci_postreset);
1903}
1904
Tejun Heoedc93052007-10-25 14:59:16 +09001905static void ahci_p5wdh_error_handler(struct ata_port *ap)
1906{
1907 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
1908 /* restart engine */
1909 ahci_stop_engine(ap);
1910 ahci_start_engine(ap);
1911 }
1912
1913 /* perform recovery */
1914 ata_do_eh(ap, ata_std_prereset, ahci_softreset, ahci_p5wdh_hardreset,
1915 ahci_postreset);
1916}
1917
Tejun Heo78cd52d2006-05-15 20:58:29 +09001918static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
1919{
1920 struct ata_port *ap = qc->ap;
1921
Tejun Heod2e75df2007-07-16 14:29:39 +09001922 /* make DMA engine forget about the failed command */
1923 if (qc->flags & ATA_QCFLAG_FAILED)
1924 ahci_kick_engine(ap, 1);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001925}
1926
Tejun Heo7d50b602007-09-23 13:19:54 +09001927static void ahci_pmp_attach(struct ata_port *ap)
1928{
1929 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09001930 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09001931 u32 cmd;
1932
1933 cmd = readl(port_mmio + PORT_CMD);
1934 cmd |= PORT_CMD_PMP;
1935 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09001936
1937 pp->intr_mask |= PORT_IRQ_BAD_PMP;
1938 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09001939}
1940
1941static void ahci_pmp_detach(struct ata_port *ap)
1942{
1943 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo1c954a42007-10-09 15:01:37 +09001944 struct ahci_port_priv *pp = ap->private_data;
Tejun Heo7d50b602007-09-23 13:19:54 +09001945 u32 cmd;
1946
1947 cmd = readl(port_mmio + PORT_CMD);
1948 cmd &= ~PORT_CMD_PMP;
1949 writel(cmd, port_mmio + PORT_CMD);
Tejun Heo1c954a42007-10-09 15:01:37 +09001950
1951 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
1952 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Tejun Heo7d50b602007-09-23 13:19:54 +09001953}
1954
Alexey Dobriyan028a2592007-07-17 23:48:48 +04001955static int ahci_port_resume(struct ata_port *ap)
1956{
1957 ahci_power_up(ap);
1958 ahci_start_port(ap);
1959
Tejun Heo7d50b602007-09-23 13:19:54 +09001960 if (ap->nr_pmp_links)
1961 ahci_pmp_attach(ap);
1962 else
1963 ahci_pmp_detach(ap);
1964
Alexey Dobriyan028a2592007-07-17 23:48:48 +04001965 return 0;
1966}
1967
Tejun Heo438ac6d2007-03-02 17:31:26 +09001968#ifdef CONFIG_PM
Tejun Heoc1332872006-07-26 15:59:26 +09001969static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
1970{
Tejun Heoc1332872006-07-26 15:59:26 +09001971 const char *emsg = NULL;
1972 int rc;
1973
Tejun Heo4447d352007-04-17 23:44:08 +09001974 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo8e16f942006-11-20 15:42:36 +09001975 if (rc == 0)
Tejun Heo4447d352007-04-17 23:44:08 +09001976 ahci_power_down(ap);
Tejun Heo8e16f942006-11-20 15:42:36 +09001977 else {
Tejun Heoc1332872006-07-26 15:59:26 +09001978 ata_port_printk(ap, KERN_ERR, "%s (%d)\n", emsg, rc);
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04001979 ahci_start_port(ap);
Tejun Heoc1332872006-07-26 15:59:26 +09001980 }
1981
1982 return rc;
1983}
1984
Tejun Heoc1332872006-07-26 15:59:26 +09001985static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
1986{
Jeff Garzikcca39742006-08-24 03:19:22 -04001987 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09001988 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Tejun Heoc1332872006-07-26 15:59:26 +09001989 u32 ctl;
1990
1991 if (mesg.event == PM_EVENT_SUSPEND) {
1992 /* AHCI spec rev1.1 section 8.3.3:
1993 * Software must disable interrupts prior to requesting a
1994 * transition of the HBA to D3 state.
1995 */
1996 ctl = readl(mmio + HOST_CTL);
1997 ctl &= ~HOST_IRQ_EN;
1998 writel(ctl, mmio + HOST_CTL);
1999 readl(mmio + HOST_CTL); /* flush */
2000 }
2001
2002 return ata_pci_device_suspend(pdev, mesg);
2003}
2004
2005static int ahci_pci_device_resume(struct pci_dev *pdev)
2006{
Jeff Garzikcca39742006-08-24 03:19:22 -04002007 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heoc1332872006-07-26 15:59:26 +09002008 int rc;
2009
Tejun Heo553c4aa2006-12-26 19:39:50 +09002010 rc = ata_pci_device_do_resume(pdev);
2011 if (rc)
2012 return rc;
Tejun Heoc1332872006-07-26 15:59:26 +09002013
2014 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
Tejun Heo4447d352007-04-17 23:44:08 +09002015 rc = ahci_reset_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002016 if (rc)
2017 return rc;
2018
Tejun Heo4447d352007-04-17 23:44:08 +09002019 ahci_init_controller(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002020 }
2021
Jeff Garzikcca39742006-08-24 03:19:22 -04002022 ata_host_resume(host);
Tejun Heoc1332872006-07-26 15:59:26 +09002023
2024 return 0;
2025}
Tejun Heo438ac6d2007-03-02 17:31:26 +09002026#endif
Tejun Heoc1332872006-07-26 15:59:26 +09002027
Tejun Heo254950c2006-07-26 15:59:25 +09002028static int ahci_port_start(struct ata_port *ap)
2029{
Jeff Garzikcca39742006-08-24 03:19:22 -04002030 struct device *dev = ap->host->dev;
Tejun Heo254950c2006-07-26 15:59:25 +09002031 struct ahci_port_priv *pp;
Tejun Heo254950c2006-07-26 15:59:25 +09002032 void *mem;
2033 dma_addr_t mem_dma;
2034 int rc;
2035
Tejun Heo24dc5f32007-01-20 16:00:28 +09002036 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Tejun Heo254950c2006-07-26 15:59:25 +09002037 if (!pp)
2038 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002039
2040 rc = ata_pad_alloc(ap, dev);
Tejun Heo24dc5f32007-01-20 16:00:28 +09002041 if (rc)
Tejun Heo254950c2006-07-26 15:59:25 +09002042 return rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002043
Tejun Heo24dc5f32007-01-20 16:00:28 +09002044 mem = dmam_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma,
2045 GFP_KERNEL);
2046 if (!mem)
Tejun Heo254950c2006-07-26 15:59:25 +09002047 return -ENOMEM;
Tejun Heo254950c2006-07-26 15:59:25 +09002048 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
2049
2050 /*
2051 * First item in chunk of DMA memory: 32-slot command table,
2052 * 32 bytes each in size
2053 */
2054 pp->cmd_slot = mem;
2055 pp->cmd_slot_dma = mem_dma;
2056
2057 mem += AHCI_CMD_SLOT_SZ;
2058 mem_dma += AHCI_CMD_SLOT_SZ;
2059
2060 /*
2061 * Second item: Received-FIS area
2062 */
2063 pp->rx_fis = mem;
2064 pp->rx_fis_dma = mem_dma;
2065
2066 mem += AHCI_RX_FIS_SZ;
2067 mem_dma += AHCI_RX_FIS_SZ;
2068
2069 /*
2070 * Third item: data area for storing a single command
2071 * and its scatter-gather table
2072 */
2073 pp->cmd_tbl = mem;
2074 pp->cmd_tbl_dma = mem_dma;
2075
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002076 /*
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002077 * Save off initial list of interrupts to be enabled.
2078 * This could be changed later
2079 */
Kristen Carlson Accardia7384922007-08-09 14:23:41 -07002080 pp->intr_mask = DEF_PORT_IRQ;
2081
Tejun Heo254950c2006-07-26 15:59:25 +09002082 ap->private_data = pp;
2083
Jeff Garzikdf69c9c2007-05-26 20:46:51 -04002084 /* engage engines, captain */
2085 return ahci_port_resume(ap);
Tejun Heo254950c2006-07-26 15:59:25 +09002086}
2087
2088static void ahci_port_stop(struct ata_port *ap)
2089{
Tejun Heo0be0aa92006-07-26 15:59:26 +09002090 const char *emsg = NULL;
2091 int rc;
Tejun Heo254950c2006-07-26 15:59:25 +09002092
Tejun Heo0be0aa92006-07-26 15:59:26 +09002093 /* de-initialize port */
Tejun Heo4447d352007-04-17 23:44:08 +09002094 rc = ahci_deinit_port(ap, &emsg);
Tejun Heo0be0aa92006-07-26 15:59:26 +09002095 if (rc)
2096 ata_port_printk(ap, KERN_WARNING, "%s (%d)\n", emsg, rc);
Tejun Heo254950c2006-07-26 15:59:25 +09002097}
2098
Tejun Heo4447d352007-04-17 23:44:08 +09002099static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 if (using_dac &&
2104 !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
2105 rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
2106 if (rc) {
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 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return rc;
2112 }
2113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 } else {
2115 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2116 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002117 dev_printk(KERN_ERR, &pdev->dev,
2118 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return rc;
2120 }
2121 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
2122 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05002123 dev_printk(KERN_ERR, &pdev->dev,
2124 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return rc;
2126 }
2127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return 0;
2129}
2130
Tejun Heo4447d352007-04-17 23:44:08 +09002131static void ahci_print_info(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
Tejun Heo4447d352007-04-17 23:44:08 +09002133 struct ahci_host_priv *hpriv = host->private_data;
2134 struct pci_dev *pdev = to_pci_dev(host->dev);
2135 void __iomem *mmio = host->iomap[AHCI_PCI_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 u32 vers, cap, impl, speed;
2137 const char *speed_s;
2138 u16 cc;
2139 const char *scc_s;
2140
2141 vers = readl(mmio + HOST_VERSION);
2142 cap = hpriv->cap;
2143 impl = hpriv->port_map;
2144
2145 speed = (cap >> 20) & 0xf;
2146 if (speed == 1)
2147 speed_s = "1.5";
2148 else if (speed == 2)
2149 speed_s = "3";
2150 else
2151 speed_s = "?";
2152
2153 pci_read_config_word(pdev, 0x0a, &cc);
Conke Huc9f89472007-01-09 05:32:51 -05002154 if (cc == PCI_CLASS_STORAGE_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 scc_s = "IDE";
Conke Huc9f89472007-01-09 05:32:51 -05002156 else if (cc == PCI_CLASS_STORAGE_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 scc_s = "SATA";
Conke Huc9f89472007-01-09 05:32:51 -05002158 else if (cc == PCI_CLASS_STORAGE_RAID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 scc_s = "RAID";
2160 else
2161 scc_s = "unknown";
2162
Jeff Garzika9524a72005-10-30 14:39:11 -05002163 dev_printk(KERN_INFO, &pdev->dev,
2164 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002166 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002168 (vers >> 24) & 0xff,
2169 (vers >> 16) & 0xff,
2170 (vers >> 8) & 0xff,
2171 vers & 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 ((cap >> 8) & 0x1f) + 1,
2174 (cap & 0x1f) + 1,
2175 speed_s,
2176 impl,
2177 scc_s);
2178
Jeff Garzika9524a72005-10-30 14:39:11 -05002179 dev_printk(KERN_INFO, &pdev->dev,
2180 "flags: "
Tejun Heo203ef6c2007-07-16 14:29:40 +09002181 "%s%s%s%s%s%s%s"
2182 "%s%s%s%s%s%s%s\n"
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002183 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185 cap & (1 << 31) ? "64bit " : "",
2186 cap & (1 << 30) ? "ncq " : "",
Tejun Heo203ef6c2007-07-16 14:29:40 +09002187 cap & (1 << 29) ? "sntf " : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 cap & (1 << 28) ? "ilck " : "",
2189 cap & (1 << 27) ? "stag " : "",
2190 cap & (1 << 26) ? "pm " : "",
2191 cap & (1 << 25) ? "led " : "",
2192
2193 cap & (1 << 24) ? "clo " : "",
2194 cap & (1 << 19) ? "nz " : "",
2195 cap & (1 << 18) ? "only " : "",
2196 cap & (1 << 17) ? "pmp " : "",
2197 cap & (1 << 15) ? "pio " : "",
2198 cap & (1 << 14) ? "slum " : "",
2199 cap & (1 << 13) ? "part " : ""
2200 );
2201}
2202
Tejun Heoedc93052007-10-25 14:59:16 +09002203/* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2204 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2205 * support PMP and the 4726 either directly exports the device
2206 * attached to the first downstream port or acts as a hardware storage
2207 * controller and emulate a single ATA device (can be RAID 0/1 or some
2208 * other configuration).
2209 *
2210 * When there's no device attached to the first downstream port of the
2211 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2212 * configure the 4726. However, ATA emulation of the device is very
2213 * lame. It doesn't send signature D2H Reg FIS after the initial
2214 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2215 *
2216 * The following function works around the problem by always using
2217 * hardreset on the port and not depending on receiving signature FIS
2218 * afterward. If signature FIS isn't received soon, ATA class is
2219 * assumed without follow-up softreset.
2220 */
2221static void ahci_p5wdh_workaround(struct ata_host *host)
2222{
2223 static struct dmi_system_id sysids[] = {
2224 {
2225 .ident = "P5W DH Deluxe",
2226 .matches = {
2227 DMI_MATCH(DMI_SYS_VENDOR,
2228 "ASUSTEK COMPUTER INC"),
2229 DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
2230 },
2231 },
2232 { }
2233 };
2234 struct pci_dev *pdev = to_pci_dev(host->dev);
2235
2236 if (pdev->bus->number == 0 && pdev->devfn == PCI_DEVFN(0x1f, 2) &&
2237 dmi_check_system(sysids)) {
2238 struct ata_port *ap = host->ports[1];
2239
2240 dev_printk(KERN_INFO, &pdev->dev, "enabling ASUS P5W DH "
2241 "Deluxe on-board SIMG4726 workaround\n");
2242
2243 ap->ops = &ahci_p5wdh_ops;
2244 ap->link.flags |= ATA_LFLAG_NO_SRST | ATA_LFLAG_ASSUME_ATA;
2245 }
2246}
2247
Tejun Heo24dc5f32007-01-20 16:00:28 +09002248static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249{
2250 static int printed_version;
Tejun Heo4447d352007-04-17 23:44:08 +09002251 struct ata_port_info pi = ahci_port_info[ent->driver_data];
2252 const struct ata_port_info *ppi[] = { &pi, NULL };
Tejun Heo24dc5f32007-01-20 16:00:28 +09002253 struct device *dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 struct ahci_host_priv *hpriv;
Tejun Heo4447d352007-04-17 23:44:08 +09002255 struct ata_host *host;
2256 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 VPRINTK("ENTER\n");
2259
Tejun Heo12fad3f2006-05-15 21:03:55 +09002260 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
2261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05002263 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Tejun Heo4447d352007-04-17 23:44:08 +09002265 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09002266 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 if (rc)
2268 return rc;
2269
Tejun Heo0d5ff562007-02-01 15:06:36 +09002270 rc = pcim_iomap_regions(pdev, 1 << AHCI_PCI_BAR, DRV_NAME);
2271 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002272 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002273 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002274 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Tejun Heo24dc5f32007-01-20 16:00:28 +09002276 hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
2277 if (!hpriv)
2278 return -ENOMEM;
Tejun Heo417a1a62007-09-23 13:19:55 +09002279 hpriv->flags |= (unsigned long)pi.private_data;
2280
2281 if ((hpriv->flags & AHCI_HFLAG_NO_MSI) || pci_enable_msi(pdev))
2282 pci_intx(pdev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Tejun Heo4447d352007-04-17 23:44:08 +09002284 /* save initial config */
Tejun Heo417a1a62007-09-23 13:19:55 +09002285 ahci_save_initial_config(pdev, hpriv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Tejun Heo4447d352007-04-17 23:44:08 +09002287 /* prepare host */
Tejun Heo274c1fd2007-07-16 14:29:40 +09002288 if (hpriv->cap & HOST_CAP_NCQ)
Tejun Heo4447d352007-04-17 23:44:08 +09002289 pi.flags |= ATA_FLAG_NCQ;
2290
Tejun Heo7d50b602007-09-23 13:19:54 +09002291 if (hpriv->cap & HOST_CAP_PMP)
2292 pi.flags |= ATA_FLAG_PMP;
2293
Tejun Heo4447d352007-04-17 23:44:08 +09002294 host = ata_host_alloc_pinfo(&pdev->dev, ppi, fls(hpriv->port_map));
2295 if (!host)
2296 return -ENOMEM;
2297 host->iomap = pcim_iomap_table(pdev);
2298 host->private_data = hpriv;
2299
2300 for (i = 0; i < host->n_ports; i++) {
Jeff Garzikdab632e2007-05-28 08:33:01 -04002301 struct ata_port *ap = host->ports[i];
2302 void __iomem *port_mmio = ahci_port_base(ap);
Tejun Heo4447d352007-04-17 23:44:08 +09002303
Tejun Heocbcdd872007-08-18 13:14:55 +09002304 ata_port_pbar_desc(ap, AHCI_PCI_BAR, -1, "abar");
2305 ata_port_pbar_desc(ap, AHCI_PCI_BAR,
2306 0x100 + ap->port_no * 0x80, "port");
2307
Kristen Carlson Accardi31556592007-10-25 01:33:26 -04002308 /* set initial link pm policy */
2309 ap->pm_policy = NOT_AVAILABLE;
2310
Jeff Garzikdab632e2007-05-28 08:33:01 -04002311 /* standard SATA port setup */
Tejun Heo203ef6c2007-07-16 14:29:40 +09002312 if (hpriv->port_map & (1 << i))
Tejun Heo4447d352007-04-17 23:44:08 +09002313 ap->ioaddr.cmd_addr = port_mmio;
Jeff Garzikdab632e2007-05-28 08:33:01 -04002314
2315 /* disabled/not-implemented port */
2316 else
2317 ap->ops = &ata_dummy_port_ops;
Tejun Heo4447d352007-04-17 23:44:08 +09002318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Tejun Heoedc93052007-10-25 14:59:16 +09002320 /* apply workaround for ASUS P5W DH Deluxe mainboard */
2321 ahci_p5wdh_workaround(host);
2322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09002324 rc = ahci_configure_dma_masks(pdev, hpriv->cap & HOST_CAP_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09002326 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Tejun Heo4447d352007-04-17 23:44:08 +09002328 rc = ahci_reset_controller(host);
2329 if (rc)
2330 return rc;
Tejun Heo12fad3f2006-05-15 21:03:55 +09002331
Tejun Heo4447d352007-04-17 23:44:08 +09002332 ahci_init_controller(host);
2333 ahci_print_info(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Tejun Heo4447d352007-04-17 23:44:08 +09002335 pci_set_master(pdev);
2336 return ata_host_activate(host, pdev->irq, ahci_interrupt, IRQF_SHARED,
2337 &ahci_sht);
Jeff Garzik907f4672005-05-12 15:03:42 -04002338}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
2340static int __init ahci_init(void)
2341{
Pavel Roskinb7887192006-08-10 18:13:18 +09002342 return pci_register_driver(&ahci_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343}
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345static void __exit ahci_exit(void)
2346{
2347 pci_unregister_driver(&ahci_pci_driver);
2348}
2349
2350
2351MODULE_AUTHOR("Jeff Garzik");
2352MODULE_DESCRIPTION("AHCI SATA low-level driver");
2353MODULE_LICENSE("GPL");
2354MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04002355MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
2357module_init(ahci_init);
2358module_exit(ahci_exit);