blob: e02b9c65287b85ecc0b602910bc897335998221f [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>
42#include <linux/sched.h>
domen@coderock.org87507cf2005-04-08 09:53:06 +020043#include <linux/dma-mapping.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050044#include <linux/device.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>
48#include <asm/io.h>
49
50#define DRV_NAME "ahci"
Jeff Garzik8676ce02006-06-26 20:41:33 -040051#define DRV_VERSION "2.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53
54enum {
55 AHCI_PCI_BAR = 5,
56 AHCI_MAX_SG = 168, /* hardware max is 64K */
57 AHCI_DMA_BOUNDARY = 0xffffffff,
58 AHCI_USE_CLUSTERING = 0,
Tejun Heo12fad3f2006-05-15 21:03:55 +090059 AHCI_MAX_CMDS = 32,
Tejun Heodd410ff2006-05-15 21:03:50 +090060 AHCI_CMD_SZ = 32,
Tejun Heo12fad3f2006-05-15 21:03:55 +090061 AHCI_CMD_SLOT_SZ = AHCI_MAX_CMDS * AHCI_CMD_SZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 AHCI_RX_FIS_SZ = 256,
Jeff Garzika0ea7322005-06-04 01:13:15 -040063 AHCI_CMD_TBL_CDB = 0x40,
Tejun Heodd410ff2006-05-15 21:03:50 +090064 AHCI_CMD_TBL_HDR_SZ = 0x80,
65 AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR_SZ + (AHCI_MAX_SG * 16),
66 AHCI_CMD_TBL_AR_SZ = AHCI_CMD_TBL_SZ * AHCI_MAX_CMDS,
67 AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_AR_SZ +
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 AHCI_RX_FIS_SZ,
69 AHCI_IRQ_ON_SG = (1 << 31),
70 AHCI_CMD_ATAPI = (1 << 5),
71 AHCI_CMD_WRITE = (1 << 6),
Tejun Heo4b10e552006-03-12 11:25:27 +090072 AHCI_CMD_PREFETCH = (1 << 7),
Tejun Heo22b49982006-01-23 21:38:44 +090073 AHCI_CMD_RESET = (1 << 8),
74 AHCI_CMD_CLR_BUSY = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
Tejun Heo78cd52d2006-05-15 20:58:29 +090077 RX_FIS_UNK = 0x60, /* offset of Unknown FIS data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 board_ahci = 0,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +020080 board_ahci_vt8251 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 /* global controller registers */
83 HOST_CAP = 0x00, /* host capabilities */
84 HOST_CTL = 0x04, /* global host control */
85 HOST_IRQ_STAT = 0x08, /* interrupt status */
86 HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
87 HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
88
89 /* HOST_CTL bits */
90 HOST_RESET = (1 << 0), /* reset controller; self-clear */
91 HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
92 HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
93
94 /* HOST_CAP bits */
Tejun Heo22b49982006-01-23 21:38:44 +090095 HOST_CAP_CLO = (1 << 24), /* Command List Override support */
Tejun Heo979db802006-05-15 21:03:52 +090096 HOST_CAP_NCQ = (1 << 30), /* Native Command Queueing */
Tejun Heodd410ff2006-05-15 21:03:50 +090097 HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 /* registers for each SATA port */
100 PORT_LST_ADDR = 0x00, /* command list DMA addr */
101 PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
102 PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
103 PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
104 PORT_IRQ_STAT = 0x10, /* interrupt status */
105 PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
106 PORT_CMD = 0x18, /* port command */
107 PORT_TFDATA = 0x20, /* taskfile data */
108 PORT_SIG = 0x24, /* device TF signature */
109 PORT_CMD_ISSUE = 0x38, /* command issue */
110 PORT_SCR = 0x28, /* SATA phy register block */
111 PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
112 PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
113 PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
114 PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
115
116 /* PORT_IRQ_{STAT,MASK} bits */
117 PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
118 PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
119 PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
120 PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
121 PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
122 PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
123 PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
124 PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
125
126 PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
127 PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
128 PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
129 PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
130 PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
131 PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
132 PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
133 PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
134 PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
135
Tejun Heo78cd52d2006-05-15 20:58:29 +0900136 PORT_IRQ_FREEZE = PORT_IRQ_HBUS_ERR |
137 PORT_IRQ_IF_ERR |
138 PORT_IRQ_CONNECT |
Tejun Heo42969712006-05-31 18:28:18 +0900139 PORT_IRQ_PHYRDY |
Tejun Heo78cd52d2006-05-15 20:58:29 +0900140 PORT_IRQ_UNK_FIS,
141 PORT_IRQ_ERROR = PORT_IRQ_FREEZE |
142 PORT_IRQ_TF_ERR |
143 PORT_IRQ_HBUS_DATA_ERR,
144 DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
145 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS |
146 PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* PORT_CMD bits */
Jeff Garzik02eaa662005-11-12 01:32:19 -0500149 PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
151 PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
152 PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
Tejun Heo22b49982006-01-23 21:38:44 +0900153 PORT_CMD_CLO = (1 << 3), /* Command list override */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
155 PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
156 PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
157
158 PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
159 PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
160 PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
Jeff Garzik4b0060f2005-06-04 00:50:22 -0400161
162 /* hpriv->flags bits */
163 AHCI_FLAG_MSI = (1 << 0),
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200164
165 /* ap->flags bits */
166 AHCI_FLAG_RESET_NEEDS_CLO = (1 << 24),
Tejun Heo71f07372006-06-21 23:12:48 +0900167 AHCI_FLAG_NO_NCQ = (1 << 25),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168};
169
170struct ahci_cmd_hdr {
171 u32 opts;
172 u32 status;
173 u32 tbl_addr;
174 u32 tbl_addr_hi;
175 u32 reserved[4];
176};
177
178struct ahci_sg {
179 u32 addr;
180 u32 addr_hi;
181 u32 reserved;
182 u32 flags_size;
183};
184
185struct ahci_host_priv {
186 unsigned long flags;
187 u32 cap; /* cache of HOST_CAP register */
188 u32 port_map; /* cache of HOST_PORTS_IMPL reg */
189};
190
191struct ahci_port_priv {
192 struct ahci_cmd_hdr *cmd_slot;
193 dma_addr_t cmd_slot_dma;
194 void *cmd_tbl;
195 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 void *rx_fis;
197 dma_addr_t rx_fis_dma;
198};
199
200static u32 ahci_scr_read (struct ata_port *ap, unsigned int sc_reg);
201static void ahci_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
202static int ahci_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900203static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static irqreturn_t ahci_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205static void ahci_irq_clear(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static int ahci_port_start(struct ata_port *ap);
207static void ahci_port_stop(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
209static void ahci_qc_prep(struct ata_queued_cmd *qc);
210static u8 ahci_check_status(struct ata_port *ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900211static void ahci_freeze(struct ata_port *ap);
212static void ahci_thaw(struct ata_port *ap);
213static void ahci_error_handler(struct ata_port *ap);
214static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzik907f4672005-05-12 15:03:42 -0400215static void ahci_remove_one (struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Jeff Garzik193515d2005-11-07 00:59:37 -0500217static struct scsi_host_template ahci_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 .module = THIS_MODULE,
219 .name = DRV_NAME,
220 .ioctl = ata_scsi_ioctl,
221 .queuecommand = ata_scsi_queuecmd,
Tejun Heo12fad3f2006-05-15 21:03:55 +0900222 .change_queue_depth = ata_scsi_change_queue_depth,
223 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 .this_id = ATA_SHT_THIS_ID,
225 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
227 .emulated = ATA_SHT_EMULATED,
228 .use_clustering = AHCI_USE_CLUSTERING,
229 .proc_name = DRV_NAME,
230 .dma_boundary = AHCI_DMA_BOUNDARY,
231 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900232 .slave_destroy = ata_scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Jeff Garzik057ace52005-10-22 14:27:05 -0400236static const struct ata_port_operations ahci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 .port_disable = ata_port_disable,
238
239 .check_status = ahci_check_status,
240 .check_altstatus = ahci_check_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .dev_select = ata_noop_dev_select,
242
243 .tf_read = ahci_tf_read,
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 .qc_prep = ahci_qc_prep,
246 .qc_issue = ahci_qc_issue,
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .irq_handler = ahci_interrupt,
249 .irq_clear = ahci_irq_clear,
250
251 .scr_read = ahci_scr_read,
252 .scr_write = ahci_scr_write,
253
Tejun Heo78cd52d2006-05-15 20:58:29 +0900254 .freeze = ahci_freeze,
255 .thaw = ahci_thaw,
256
257 .error_handler = ahci_error_handler,
258 .post_internal_cmd = ahci_post_internal_cmd,
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 .port_start = ahci_port_start,
261 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262};
263
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100264static const struct ata_port_info ahci_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /* board_ahci */
266 {
267 .sht = &ahci_sht,
268 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo42969712006-05-31 18:28:18 +0900269 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
270 ATA_FLAG_SKIP_D2H_BSY,
Brett Russ7da79312005-09-01 21:53:34 -0400271 .pio_mask = 0x1f, /* pio0-4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
273 .port_ops = &ahci_ops,
274 },
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200275 /* board_ahci_vt8251 */
276 {
277 .sht = &ahci_sht,
278 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
279 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Tejun Heo42969712006-05-31 18:28:18 +0900280 ATA_FLAG_SKIP_D2H_BSY |
Tejun Heo71f07372006-06-21 23:12:48 +0900281 AHCI_FLAG_RESET_NEEDS_CLO | AHCI_FLAG_NO_NCQ,
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200282 .pio_mask = 0x1f, /* pio0-4 */
283 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
284 .port_ops = &ahci_ops,
285 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286};
287
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500288static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400289 /* Intel */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 { PCI_VENDOR_ID_INTEL, 0x2652, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
291 board_ahci }, /* ICH6 */
292 { PCI_VENDOR_ID_INTEL, 0x2653, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
293 board_ahci }, /* ICH6M */
294 { PCI_VENDOR_ID_INTEL, 0x27c1, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
295 board_ahci }, /* ICH7 */
296 { PCI_VENDOR_ID_INTEL, 0x27c5, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
297 board_ahci }, /* ICH7M */
298 { PCI_VENDOR_ID_INTEL, 0x27c3, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
299 board_ahci }, /* ICH7R */
300 { PCI_VENDOR_ID_AL, 0x5288, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
301 board_ahci }, /* ULi M5288 */
Jason Gaston680d3232005-04-16 15:24:45 -0700302 { PCI_VENDOR_ID_INTEL, 0x2681, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
303 board_ahci }, /* ESB2 */
304 { PCI_VENDOR_ID_INTEL, 0x2682, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
305 board_ahci }, /* ESB2 */
306 { PCI_VENDOR_ID_INTEL, 0x2683, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
307 board_ahci }, /* ESB2 */
Jason Gaston3db368f2005-08-10 06:18:43 -0700308 { PCI_VENDOR_ID_INTEL, 0x27c6, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
309 board_ahci }, /* ICH7-M DH */
Jason Gastonf2857572006-01-09 11:09:13 -0800310 { PCI_VENDOR_ID_INTEL, 0x2821, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
311 board_ahci }, /* ICH8 */
312 { PCI_VENDOR_ID_INTEL, 0x2822, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
313 board_ahci }, /* ICH8 */
314 { PCI_VENDOR_ID_INTEL, 0x2824, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
315 board_ahci }, /* ICH8 */
316 { PCI_VENDOR_ID_INTEL, 0x2829, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
317 board_ahci }, /* ICH8M */
318 { PCI_VENDOR_ID_INTEL, 0x282a, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
319 board_ahci }, /* ICH8M */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400320
321 /* JMicron */
Jeff Garzikbd120972006-01-29 02:47:03 -0500322 { 0x197b, 0x2360, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
323 board_ahci }, /* JMicron JMB360 */
Jeff Garzik8fa29b22006-06-22 23:19:15 -0400324 { 0x197b, 0x2361, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
325 board_ahci }, /* JMicron JMB361 */
Jeff Garzik9220a2d2006-01-29 12:40:57 -0500326 { 0x197b, 0x2363, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
327 board_ahci }, /* JMicron JMB363 */
Jeff Garzik8fa29b22006-06-22 23:19:15 -0400328 { 0x197b, 0x2365, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
329 board_ahci }, /* JMicron JMB365 */
330 { 0x197b, 0x2366, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
331 board_ahci }, /* JMicron JMB366 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400332
333 /* ATI */
Jeff Garzik8b316a32006-03-30 17:07:32 -0500334 { PCI_VENDOR_ID_ATI, 0x4380, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
335 board_ahci }, /* ATI SB600 non-raid */
336 { PCI_VENDOR_ID_ATI, 0x4381, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
337 board_ahci }, /* ATI SB600 raid */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400338
339 /* VIA */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200340 { PCI_VENDOR_ID_VIA, 0x3349, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
341 board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400342
343 /* NVIDIA */
344 { PCI_VENDOR_ID_NVIDIA, 0x044c, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
345 board_ahci }, /* MCP65 */
346 { PCI_VENDOR_ID_NVIDIA, 0x044d, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
347 board_ahci }, /* MCP65 */
348 { PCI_VENDOR_ID_NVIDIA, 0x044e, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
349 board_ahci }, /* MCP65 */
350 { PCI_VENDOR_ID_NVIDIA, 0x044f, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
351 board_ahci }, /* MCP65 */
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 { } /* terminate list */
354};
355
356
357static struct pci_driver ahci_pci_driver = {
358 .name = DRV_NAME,
359 .id_table = ahci_pci_tbl,
360 .probe = ahci_init_one,
Jeff Garzik907f4672005-05-12 15:03:42 -0400361 .remove = ahci_remove_one,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362};
363
364
365static inline unsigned long ahci_port_base_ul (unsigned long base, unsigned int port)
366{
367 return base + 0x100 + (port * 0x80);
368}
369
Jeff Garzikea6ba102005-08-30 05:18:18 -0400370static inline void __iomem *ahci_port_base (void __iomem *base, unsigned int port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400372 return (void __iomem *) ahci_port_base_ul((unsigned long)base, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375static u32 ahci_scr_read (struct ata_port *ap, unsigned int sc_reg_in)
376{
377 unsigned int sc_reg;
378
379 switch (sc_reg_in) {
380 case SCR_STATUS: sc_reg = 0; break;
381 case SCR_CONTROL: sc_reg = 1; break;
382 case SCR_ERROR: sc_reg = 2; break;
383 case SCR_ACTIVE: sc_reg = 3; break;
384 default:
385 return 0xffffffffU;
386 }
387
Al Viro1e4f2a92005-10-21 06:46:02 +0100388 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
391
392static void ahci_scr_write (struct ata_port *ap, unsigned int sc_reg_in,
393 u32 val)
394{
395 unsigned int sc_reg;
396
397 switch (sc_reg_in) {
398 case SCR_STATUS: sc_reg = 0; break;
399 case SCR_CONTROL: sc_reg = 1; break;
400 case SCR_ERROR: sc_reg = 2; break;
401 case SCR_ACTIVE: sc_reg = 3; break;
402 default:
403 return;
404 }
405
Al Viro1e4f2a92005-10-21 06:46:02 +0100406 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Tejun Heo9f592052006-07-26 15:59:26 +0900409static void ahci_start_engine(void __iomem *port_mmio)
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900410{
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900411 u32 tmp;
412
Tejun Heod8fcd112006-07-26 15:59:25 +0900413 /* start DMA */
Tejun Heo9f592052006-07-26 15:59:26 +0900414 tmp = readl(port_mmio + PORT_CMD);
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900415 tmp |= PORT_CMD_START;
416 writel(tmp, port_mmio + PORT_CMD);
417 readl(port_mmio + PORT_CMD); /* flush */
418}
419
Tejun Heo254950c2006-07-26 15:59:25 +0900420static int ahci_stop_engine(void __iomem *port_mmio)
421{
422 u32 tmp;
423
424 tmp = readl(port_mmio + PORT_CMD);
425
Tejun Heod8fcd112006-07-26 15:59:25 +0900426 /* check if the HBA is idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900427 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
428 return 0;
429
Tejun Heod8fcd112006-07-26 15:59:25 +0900430 /* setting HBA to idle */
Tejun Heo254950c2006-07-26 15:59:25 +0900431 tmp &= ~PORT_CMD_START;
432 writel(tmp, port_mmio + PORT_CMD);
433
Tejun Heod8fcd112006-07-26 15:59:25 +0900434 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo254950c2006-07-26 15:59:25 +0900435 tmp = ata_wait_register(port_mmio + PORT_CMD,
436 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
Tejun Heod8fcd112006-07-26 15:59:25 +0900437 if (tmp & PORT_CMD_LIST_ON)
Tejun Heo254950c2006-07-26 15:59:25 +0900438 return -EIO;
439
440 return 0;
441}
442
Tejun Heo422b7592005-12-19 22:37:17 +0900443static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
446 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +0900447 u32 tmp;
448
449 tmp = readl(port_mmio + PORT_SIG);
450 tf.lbah = (tmp >> 24) & 0xff;
451 tf.lbam = (tmp >> 16) & 0xff;
452 tf.lbal = (tmp >> 8) & 0xff;
453 tf.nsect = (tmp) & 0xff;
454
455 return ata_dev_classify(&tf);
456}
457
Tejun Heo12fad3f2006-05-15 21:03:55 +0900458static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
459 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +0900460{
Tejun Heo12fad3f2006-05-15 21:03:55 +0900461 dma_addr_t cmd_tbl_dma;
462
463 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
464
465 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
466 pp->cmd_slot[tag].status = 0;
467 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
468 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +0900469}
470
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200471static int ahci_clo(struct ata_port *ap)
472{
473 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
474 struct ahci_host_priv *hpriv = ap->host_set->private_data;
475 u32 tmp;
476
477 if (!(hpriv->cap & HOST_CAP_CLO))
478 return -EOPNOTSUPP;
479
480 tmp = readl(port_mmio + PORT_CMD);
481 tmp |= PORT_CMD_CLO;
482 writel(tmp, port_mmio + PORT_CMD);
483
484 tmp = ata_wait_register(port_mmio + PORT_CMD,
485 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
486 if (tmp & PORT_CMD_CLO)
487 return -EIO;
488
489 return 0;
490}
491
Tejun Heo42969712006-05-31 18:28:18 +0900492static int ahci_prereset(struct ata_port *ap)
493{
494 if ((ap->flags & AHCI_FLAG_RESET_NEEDS_CLO) &&
495 (ata_busy_wait(ap, ATA_BUSY, 1000) & ATA_BUSY)) {
496 /* ATA_BUSY hasn't cleared, so send a CLO */
497 ahci_clo(ap);
498 }
499
500 return ata_std_prereset(ap);
501}
502
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900503static int ahci_softreset(struct ata_port *ap, unsigned int *class)
Tejun Heo4658f792006-03-22 21:07:03 +0900504{
Tejun Heo4658f792006-03-22 21:07:03 +0900505 struct ahci_port_priv *pp = ap->private_data;
506 void __iomem *mmio = ap->host_set->mmio_base;
507 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
508 const u32 cmd_fis_len = 5; /* five dwords */
509 const char *reason = NULL;
510 struct ata_taskfile tf;
Tejun Heo75fe1802006-04-11 22:22:29 +0900511 u32 tmp;
Tejun Heo4658f792006-03-22 21:07:03 +0900512 u8 *fis;
513 int rc;
514
515 DPRINTK("ENTER\n");
516
Tejun Heo81952c52006-05-15 20:57:47 +0900517 if (ata_port_offline(ap)) {
Tejun Heoc2a65852006-04-03 01:58:06 +0900518 DPRINTK("PHY reports no device\n");
519 *class = ATA_DEV_NONE;
520 return 0;
521 }
522
Tejun Heo4658f792006-03-22 21:07:03 +0900523 /* prepare for SRST (AHCI-1.1 10.4.1) */
zhao, forrest5457f2192006-07-13 13:38:32 +0800524 rc = ahci_stop_engine(port_mmio);
Tejun Heo4658f792006-03-22 21:07:03 +0900525 if (rc) {
526 reason = "failed to stop engine";
527 goto fail_restart;
528 }
529
530 /* check BUSY/DRQ, perform Command List Override if necessary */
531 ahci_tf_read(ap, &tf);
532 if (tf.command & (ATA_BUSY | ATA_DRQ)) {
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200533 rc = ahci_clo(ap);
534
535 if (rc == -EOPNOTSUPP) {
536 reason = "port busy but CLO unavailable";
Tejun Heo4658f792006-03-22 21:07:03 +0900537 goto fail_restart;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200538 } else if (rc) {
539 reason = "port busy but CLO failed";
Tejun Heo4658f792006-03-22 21:07:03 +0900540 goto fail_restart;
541 }
542 }
543
544 /* restart engine */
zhao, forrest5457f2192006-07-13 13:38:32 +0800545 ahci_start_engine(port_mmio);
Tejun Heo4658f792006-03-22 21:07:03 +0900546
Tejun Heo3373efd2006-05-15 20:57:53 +0900547 ata_tf_init(ap->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +0900548 fis = pp->cmd_tbl;
549
550 /* issue the first D2H Register FIS */
Tejun Heo12fad3f2006-05-15 21:03:55 +0900551 ahci_fill_cmd_slot(pp, 0,
552 cmd_fis_len | AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY);
Tejun Heo4658f792006-03-22 21:07:03 +0900553
554 tf.ctl |= ATA_SRST;
555 ata_tf_to_fis(&tf, fis, 0);
556 fis[1] &= ~(1 << 7); /* turn off Command FIS bit */
557
558 writel(1, port_mmio + PORT_CMD_ISSUE);
Tejun Heo4658f792006-03-22 21:07:03 +0900559
Tejun Heo75fe1802006-04-11 22:22:29 +0900560 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1, 1, 500);
561 if (tmp & 0x1) {
Tejun Heo4658f792006-03-22 21:07:03 +0900562 rc = -EIO;
563 reason = "1st FIS failed";
564 goto fail;
565 }
566
567 /* spec says at least 5us, but be generous and sleep for 1ms */
568 msleep(1);
569
570 /* issue the second D2H Register FIS */
Tejun Heo12fad3f2006-05-15 21:03:55 +0900571 ahci_fill_cmd_slot(pp, 0, cmd_fis_len);
Tejun Heo4658f792006-03-22 21:07:03 +0900572
573 tf.ctl &= ~ATA_SRST;
574 ata_tf_to_fis(&tf, fis, 0);
575 fis[1] &= ~(1 << 7); /* turn off Command FIS bit */
576
577 writel(1, port_mmio + PORT_CMD_ISSUE);
578 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
579
580 /* spec mandates ">= 2ms" before checking status.
581 * We wait 150ms, because that was the magic delay used for
582 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
583 * between when the ATA command register is written, and then
584 * status is checked. Because waiting for "a while" before
585 * checking status is fine, post SRST, we perform this magic
586 * delay here as well.
587 */
588 msleep(150);
589
590 *class = ATA_DEV_NONE;
Tejun Heo81952c52006-05-15 20:57:47 +0900591 if (ata_port_online(ap)) {
Tejun Heo4658f792006-03-22 21:07:03 +0900592 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
593 rc = -EIO;
594 reason = "device not ready";
595 goto fail;
596 }
597 *class = ahci_dev_classify(ap);
598 }
599
600 DPRINTK("EXIT, class=%u\n", *class);
601 return 0;
602
603 fail_restart:
zhao, forrest5457f2192006-07-13 13:38:32 +0800604 ahci_start_engine(port_mmio);
Tejun Heo4658f792006-03-22 21:07:03 +0900605 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +0900606 ata_port_printk(ap, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +0900607 return rc;
608}
609
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900610static int ahci_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heo422b7592005-12-19 22:37:17 +0900611{
Tejun Heo42969712006-05-31 18:28:18 +0900612 struct ahci_port_priv *pp = ap->private_data;
613 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
614 struct ata_taskfile tf;
zhao, forrest5457f2192006-07-13 13:38:32 +0800615 void __iomem *mmio = ap->host_set->mmio_base;
616 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
Tejun Heo4bd00f62006-02-11 16:26:02 +0900617 int rc;
618
619 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
zhao, forrest5457f2192006-07-13 13:38:32 +0800621 ahci_stop_engine(port_mmio);
Tejun Heo42969712006-05-31 18:28:18 +0900622
623 /* clear D2H reception area to properly wait for D2H FIS */
624 ata_tf_init(ap->device, &tf);
625 tf.command = 0xff;
626 ata_tf_to_fis(&tf, d2h_fis, 0);
627
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900628 rc = sata_std_hardreset(ap, class);
Tejun Heo42969712006-05-31 18:28:18 +0900629
zhao, forrest5457f2192006-07-13 13:38:32 +0800630 ahci_start_engine(port_mmio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Tejun Heo81952c52006-05-15 20:57:47 +0900632 if (rc == 0 && ata_port_online(ap))
Tejun Heo4bd00f62006-02-11 16:26:02 +0900633 *class = ahci_dev_classify(ap);
634 if (*class == ATA_DEV_UNKNOWN)
635 *class = ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Tejun Heo4bd00f62006-02-11 16:26:02 +0900637 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
638 return rc;
639}
640
641static void ahci_postreset(struct ata_port *ap, unsigned int *class)
642{
643 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
644 u32 new_tmp, tmp;
645
646 ata_std_postreset(ap, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -0500647
648 /* Make sure port's ATAPI bit is set appropriately */
649 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +0900650 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -0500651 new_tmp |= PORT_CMD_ATAPI;
652 else
653 new_tmp &= ~PORT_CMD_ATAPI;
654 if (new_tmp != tmp) {
655 writel(new_tmp, port_mmio + PORT_CMD);
656 readl(port_mmio + PORT_CMD); /* flush */
657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660static u8 ahci_check_status(struct ata_port *ap)
661{
Al Viro1e4f2a92005-10-21 06:46:02 +0100662 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 return readl(mmio + PORT_TFDATA) & 0xFF;
665}
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
668{
669 struct ahci_port_priv *pp = ap->private_data;
670 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
671
672 ata_tf_from_fis(d2h_fis, tf);
673}
674
Tejun Heo12fad3f2006-05-15 21:03:55 +0900675static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400677 struct scatterlist *sg;
678 struct ahci_sg *ahci_sg;
Jeff Garzik828d09d2005-11-12 01:27:07 -0500679 unsigned int n_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 VPRINTK("ENTER\n");
682
683 /*
684 * Next, the S/G list.
685 */
Tejun Heo12fad3f2006-05-15 21:03:55 +0900686 ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400687 ata_for_each_sg(sg, qc) {
688 dma_addr_t addr = sg_dma_address(sg);
689 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400691 ahci_sg->addr = cpu_to_le32(addr & 0xffffffff);
692 ahci_sg->addr_hi = cpu_to_le32((addr >> 16) >> 16);
693 ahci_sg->flags_size = cpu_to_le32(sg_len - 1);
Jeff Garzik828d09d2005-11-12 01:27:07 -0500694
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400695 ahci_sg++;
Jeff Garzik828d09d2005-11-12 01:27:07 -0500696 n_sg++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
Jeff Garzik828d09d2005-11-12 01:27:07 -0500698
699 return n_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702static void ahci_qc_prep(struct ata_queued_cmd *qc)
703{
Jeff Garzika0ea7322005-06-04 01:13:15 -0400704 struct ata_port *ap = qc->ap;
705 struct ahci_port_priv *pp = ap->private_data;
Tejun Heocc9278e2006-02-10 17:25:47 +0900706 int is_atapi = is_atapi_taskfile(&qc->tf);
Tejun Heo12fad3f2006-05-15 21:03:55 +0900707 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 u32 opts;
709 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -0500710 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 * Fill in command table information. First, the header,
714 * a SATA Register - Host to Device command FIS.
715 */
Tejun Heo12fad3f2006-05-15 21:03:55 +0900716 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
717
718 ata_tf_to_fis(&qc->tf, cmd_tbl, 0);
Tejun Heocc9278e2006-02-10 17:25:47 +0900719 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +0900720 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
721 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -0400722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Tejun Heocc9278e2006-02-10 17:25:47 +0900724 n_elem = 0;
725 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +0900726 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Tejun Heocc9278e2006-02-10 17:25:47 +0900728 /*
729 * Fill in command slot information.
730 */
731 opts = cmd_fis_len | n_elem << 16;
732 if (qc->tf.flags & ATA_TFLAG_WRITE)
733 opts |= AHCI_CMD_WRITE;
734 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +0900735 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -0500736
Tejun Heo12fad3f2006-05-15 21:03:55 +0900737 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Tejun Heo78cd52d2006-05-15 20:58:29 +0900740static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Tejun Heo78cd52d2006-05-15 20:58:29 +0900742 struct ahci_port_priv *pp = ap->private_data;
743 struct ata_eh_info *ehi = &ap->eh_info;
744 unsigned int err_mask = 0, action = 0;
745 struct ata_queued_cmd *qc;
746 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Tejun Heo78cd52d2006-05-15 20:58:29 +0900748 ata_ehi_clear_desc(ehi);
Jeff Garzik9f68a242005-11-15 14:03:47 -0500749
Tejun Heo78cd52d2006-05-15 20:58:29 +0900750 /* AHCI needs SError cleared; otherwise, it might lock up */
751 serror = ahci_scr_read(ap, SCR_ERROR);
752 ahci_scr_write(ap, SCR_ERROR, serror);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Tejun Heo78cd52d2006-05-15 20:58:29 +0900754 /* analyze @irq_stat */
755 ata_ehi_push_desc(ehi, "irq_stat 0x%08x", irq_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Tejun Heo78cd52d2006-05-15 20:58:29 +0900757 if (irq_stat & PORT_IRQ_TF_ERR)
758 err_mask |= AC_ERR_DEV;
759
760 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
761 err_mask |= AC_ERR_HOST_BUS;
762 action |= ATA_EH_SOFTRESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
Tejun Heo78cd52d2006-05-15 20:58:29 +0900765 if (irq_stat & PORT_IRQ_IF_ERR) {
766 err_mask |= AC_ERR_ATA_BUS;
767 action |= ATA_EH_SOFTRESET;
768 ata_ehi_push_desc(ehi, ", interface fatal error");
769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Tejun Heo78cd52d2006-05-15 20:58:29 +0900771 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
Tejun Heo42969712006-05-31 18:28:18 +0900772 ata_ehi_hotplugged(ehi);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900773 ata_ehi_push_desc(ehi, ", %s", irq_stat & PORT_IRQ_CONNECT ?
774 "connection status changed" : "PHY RDY changed");
775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Tejun Heo78cd52d2006-05-15 20:58:29 +0900777 if (irq_stat & PORT_IRQ_UNK_FIS) {
778 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Tejun Heo78cd52d2006-05-15 20:58:29 +0900780 err_mask |= AC_ERR_HSM;
781 action |= ATA_EH_SOFTRESET;
782 ata_ehi_push_desc(ehi, ", unknown FIS %08x %08x %08x %08x",
783 unk[0], unk[1], unk[2], unk[3]);
784 }
Jeff Garzikb8f61532005-08-25 22:01:20 -0400785
Tejun Heo78cd52d2006-05-15 20:58:29 +0900786 /* okay, let's hand over to EH */
787 ehi->serror |= serror;
788 ehi->action |= action;
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900791 if (qc)
792 qc->err_mask |= err_mask;
793 else
794 ehi->err_mask |= err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Tejun Heo78cd52d2006-05-15 20:58:29 +0900796 if (irq_stat & PORT_IRQ_FREEZE)
797 ata_port_freeze(ap);
798 else
799 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
Tejun Heo78cd52d2006-05-15 20:58:29 +0900802static void ahci_host_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400804 void __iomem *mmio = ap->host_set->mmio_base;
805 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
Tejun Heo12fad3f2006-05-15 21:03:55 +0900806 struct ata_eh_info *ehi = &ap->eh_info;
807 u32 status, qc_active;
808 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 status = readl(port_mmio + PORT_IRQ_STAT);
811 writel(status, port_mmio + PORT_IRQ_STAT);
812
Tejun Heo78cd52d2006-05-15 20:58:29 +0900813 if (unlikely(status & PORT_IRQ_ERROR)) {
814 ahci_error_intr(ap, status);
815 return;
816 }
817
Tejun Heo12fad3f2006-05-15 21:03:55 +0900818 if (ap->sactive)
819 qc_active = readl(port_mmio + PORT_SCR_ACT);
820 else
821 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
822
823 rc = ata_qc_complete_multiple(ap, qc_active, NULL);
824 if (rc > 0)
825 return;
826 if (rc < 0) {
827 ehi->err_mask |= AC_ERR_HSM;
828 ehi->action |= ATA_EH_SOFTRESET;
829 ata_port_freeze(ap);
830 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832
Tejun Heo2a3917a2006-05-15 20:58:30 +0900833 /* hmmm... a spurious interupt */
834
Tejun Heo12fad3f2006-05-15 21:03:55 +0900835 /* some devices send D2H reg with I bit set during NCQ command phase */
836 if (ap->sactive && status & PORT_IRQ_D2H_REG_FIS)
837 return;
838
Tejun Heo2a3917a2006-05-15 20:58:30 +0900839 /* ignore interim PIO setup fis interrupts */
840 if (ata_tag_valid(ap->active_tag)) {
841 struct ata_queued_cmd *qc =
842 ata_qc_from_tag(ap, ap->active_tag);
843
844 if (qc && qc->tf.protocol == ATA_PROT_PIO &&
845 (status & PORT_IRQ_PIOS_FIS))
846 return;
847 }
848
Tejun Heo78cd52d2006-05-15 20:58:29 +0900849 if (ata_ratelimit())
850 ata_port_printk(ap, KERN_INFO, "spurious interrupt "
Tejun Heo12fad3f2006-05-15 21:03:55 +0900851 "(irq_stat 0x%x active_tag %d sactive 0x%x)\n",
852 status, ap->active_tag, ap->sactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
855static void ahci_irq_clear(struct ata_port *ap)
856{
857 /* TODO */
858}
859
Tejun Heo12fad3f2006-05-15 21:03:55 +0900860static irqreturn_t ahci_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 struct ata_host_set *host_set = dev_instance;
863 struct ahci_host_priv *hpriv;
864 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400865 void __iomem *mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 u32 irq_stat, irq_ack = 0;
867
868 VPRINTK("ENTER\n");
869
870 hpriv = host_set->private_data;
871 mmio = host_set->mmio_base;
872
873 /* sigh. 0xffffffff is a valid return from h/w */
874 irq_stat = readl(mmio + HOST_IRQ_STAT);
875 irq_stat &= hpriv->port_map;
876 if (!irq_stat)
877 return IRQ_NONE;
878
879 spin_lock(&host_set->lock);
880
881 for (i = 0; i < host_set->n_ports; i++) {
882 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Jeff Garzik67846b32005-10-05 02:58:32 -0400884 if (!(irq_stat & (1 << i)))
885 continue;
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 ap = host_set->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -0400888 if (ap) {
Tejun Heo78cd52d2006-05-15 20:58:29 +0900889 ahci_host_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -0400890 VPRINTK("port %u\n", i);
891 } else {
892 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +0900893 if (ata_ratelimit())
894 dev_printk(KERN_WARNING, host_set->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -0500895 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
Jeff Garzik67846b32005-10-05 02:58:32 -0400897
898 irq_ack |= (1 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900
901 if (irq_ack) {
902 writel(irq_ack, mmio + HOST_IRQ_STAT);
903 handled = 1;
904 }
905
Tejun Heo78cd52d2006-05-15 20:58:29 +0900906 spin_unlock(&host_set->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 VPRINTK("EXIT\n");
909
910 return IRQ_RETVAL(handled);
911}
912
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900913static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
915 struct ata_port *ap = qc->ap;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400916 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Tejun Heo12fad3f2006-05-15 21:03:55 +0900918 if (qc->tf.protocol == ATA_PROT_NCQ)
919 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
920 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
922
923 return 0;
924}
925
Tejun Heo78cd52d2006-05-15 20:58:29 +0900926static void ahci_freeze(struct ata_port *ap)
927{
928 void __iomem *mmio = ap->host_set->mmio_base;
929 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
930
931 /* turn IRQ off */
932 writel(0, port_mmio + PORT_IRQ_MASK);
933}
934
935static void ahci_thaw(struct ata_port *ap)
936{
937 void __iomem *mmio = ap->host_set->mmio_base;
938 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
939 u32 tmp;
940
941 /* clear IRQ */
942 tmp = readl(port_mmio + PORT_IRQ_STAT);
943 writel(tmp, port_mmio + PORT_IRQ_STAT);
944 writel(1 << ap->id, mmio + HOST_IRQ_STAT);
945
946 /* turn IRQ back on */
947 writel(DEF_PORT_IRQ, port_mmio + PORT_IRQ_MASK);
948}
949
950static void ahci_error_handler(struct ata_port *ap)
951{
zhao, forrest5457f2192006-07-13 13:38:32 +0800952 void __iomem *mmio = ap->host_set->mmio_base;
953 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
954
Tejun Heob51e9e52006-06-29 01:29:30 +0900955 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
Tejun Heo78cd52d2006-05-15 20:58:29 +0900956 /* restart engine */
zhao, forrest5457f2192006-07-13 13:38:32 +0800957 ahci_stop_engine(port_mmio);
958 ahci_start_engine(port_mmio);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900959 }
960
961 /* perform recovery */
Tejun Heo42969712006-05-31 18:28:18 +0900962 ata_do_eh(ap, ahci_prereset, ahci_softreset, ahci_hardreset,
Tejun Heof5914a42006-05-31 18:27:48 +0900963 ahci_postreset);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900964}
965
966static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
967{
968 struct ata_port *ap = qc->ap;
zhao, forrest5457f2192006-07-13 13:38:32 +0800969 void __iomem *mmio = ap->host_set->mmio_base;
970 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900971
972 if (qc->flags & ATA_QCFLAG_FAILED)
973 qc->err_mask |= AC_ERR_OTHER;
974
975 if (qc->err_mask) {
976 /* make DMA engine forget about the failed command */
zhao, forrest5457f2192006-07-13 13:38:32 +0800977 ahci_stop_engine(port_mmio);
978 ahci_start_engine(port_mmio);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900979 }
980}
981
Tejun Heo254950c2006-07-26 15:59:25 +0900982static int ahci_port_start(struct ata_port *ap)
983{
984 struct device *dev = ap->host_set->dev;
985 struct ahci_host_priv *hpriv = ap->host_set->private_data;
986 struct ahci_port_priv *pp;
987 void __iomem *mmio = ap->host_set->mmio_base;
988 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
989 void *mem;
990 dma_addr_t mem_dma;
991 int rc;
992
993 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
994 if (!pp)
995 return -ENOMEM;
996 memset(pp, 0, sizeof(*pp));
997
998 rc = ata_pad_alloc(ap, dev);
999 if (rc) {
1000 kfree(pp);
1001 return rc;
1002 }
1003
1004 mem = dma_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma, GFP_KERNEL);
1005 if (!mem) {
1006 ata_pad_free(ap, dev);
1007 kfree(pp);
1008 return -ENOMEM;
1009 }
1010 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
1011
1012 /*
1013 * First item in chunk of DMA memory: 32-slot command table,
1014 * 32 bytes each in size
1015 */
1016 pp->cmd_slot = mem;
1017 pp->cmd_slot_dma = mem_dma;
1018
1019 mem += AHCI_CMD_SLOT_SZ;
1020 mem_dma += AHCI_CMD_SLOT_SZ;
1021
1022 /*
1023 * Second item: Received-FIS area
1024 */
1025 pp->rx_fis = mem;
1026 pp->rx_fis_dma = mem_dma;
1027
1028 mem += AHCI_RX_FIS_SZ;
1029 mem_dma += AHCI_RX_FIS_SZ;
1030
1031 /*
1032 * Third item: data area for storing a single command
1033 * and its scatter-gather table
1034 */
1035 pp->cmd_tbl = mem;
1036 pp->cmd_tbl_dma = mem_dma;
1037
1038 ap->private_data = pp;
1039
1040 if (hpriv->cap & HOST_CAP_64)
1041 writel((pp->cmd_slot_dma >> 16) >> 16, port_mmio + PORT_LST_ADDR_HI);
1042 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
1043 readl(port_mmio + PORT_LST_ADDR); /* flush */
1044
1045 if (hpriv->cap & HOST_CAP_64)
1046 writel((pp->rx_fis_dma >> 16) >> 16, port_mmio + PORT_FIS_ADDR_HI);
1047 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
1048 readl(port_mmio + PORT_FIS_ADDR); /* flush */
1049
1050 writel(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
1051 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
1052 PORT_CMD_START, port_mmio + PORT_CMD);
1053 readl(port_mmio + PORT_CMD); /* flush */
1054
1055 return 0;
1056}
1057
1058static void ahci_port_stop(struct ata_port *ap)
1059{
1060 struct device *dev = ap->host_set->dev;
1061 struct ahci_port_priv *pp = ap->private_data;
1062 void __iomem *mmio = ap->host_set->mmio_base;
1063 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
1064 u32 tmp;
1065
1066 tmp = readl(port_mmio + PORT_CMD);
1067 tmp &= ~(PORT_CMD_START | PORT_CMD_FIS_RX);
1068 writel(tmp, port_mmio + PORT_CMD);
1069 readl(port_mmio + PORT_CMD); /* flush */
1070
1071 /* spec says 500 msecs for each PORT_CMD_{START,FIS_RX} bit, so
1072 * this is slightly incorrect.
1073 */
1074 msleep(500);
1075
1076 ap->private_data = NULL;
1077 dma_free_coherent(dev, AHCI_PORT_PRIV_DMA_SZ,
1078 pp->cmd_slot, pp->cmd_slot_dma);
1079 ata_pad_free(ap, dev);
1080 kfree(pp);
1081}
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083static void ahci_setup_port(struct ata_ioports *port, unsigned long base,
1084 unsigned int port_idx)
1085{
1086 VPRINTK("ENTER, base==0x%lx, port_idx %u\n", base, port_idx);
1087 base = ahci_port_base_ul(base, port_idx);
1088 VPRINTK("base now==0x%lx\n", base);
1089
1090 port->cmd_addr = base;
1091 port->scr_addr = base + PORT_SCR;
1092
1093 VPRINTK("EXIT\n");
1094}
1095
1096static int ahci_host_init(struct ata_probe_ent *probe_ent)
1097{
1098 struct ahci_host_priv *hpriv = probe_ent->private_data;
1099 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
1100 void __iomem *mmio = probe_ent->mmio_base;
1101 u32 tmp, cap_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 unsigned int i, j, using_dac;
1103 int rc;
1104 void __iomem *port_mmio;
1105
1106 cap_save = readl(mmio + HOST_CAP);
1107 cap_save &= ( (1<<28) | (1<<17) );
1108 cap_save |= (1 << 27);
1109
1110 /* global controller reset */
1111 tmp = readl(mmio + HOST_CTL);
1112 if ((tmp & HOST_RESET) == 0) {
1113 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1114 readl(mmio + HOST_CTL); /* flush */
1115 }
1116
1117 /* reset must complete within 1 second, or
1118 * the hardware should be considered fried.
1119 */
1120 ssleep(1);
1121
1122 tmp = readl(mmio + HOST_CTL);
1123 if (tmp & HOST_RESET) {
Jeff Garzika9524a72005-10-30 14:39:11 -05001124 dev_printk(KERN_ERR, &pdev->dev,
1125 "controller reset failed (0x%x)\n", tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return -EIO;
1127 }
1128
1129 writel(HOST_AHCI_EN, mmio + HOST_CTL);
1130 (void) readl(mmio + HOST_CTL); /* flush */
1131 writel(cap_save, mmio + HOST_CAP);
1132 writel(0xf, mmio + HOST_PORTS_IMPL);
1133 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
1134
Jeff Garzikbd120972006-01-29 02:47:03 -05001135 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1136 u16 tmp16;
1137
1138 pci_read_config_word(pdev, 0x92, &tmp16);
1139 tmp16 |= 0xf;
1140 pci_write_config_word(pdev, 0x92, tmp16);
1141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 hpriv->cap = readl(mmio + HOST_CAP);
1144 hpriv->port_map = readl(mmio + HOST_PORTS_IMPL);
1145 probe_ent->n_ports = (hpriv->cap & 0x1f) + 1;
1146
1147 VPRINTK("cap 0x%x port_map 0x%x n_ports %d\n",
1148 hpriv->cap, hpriv->port_map, probe_ent->n_ports);
1149
1150 using_dac = hpriv->cap & HOST_CAP_64;
1151 if (using_dac &&
1152 !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
1153 rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
1154 if (rc) {
1155 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1156 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05001157 dev_printk(KERN_ERR, &pdev->dev,
1158 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return rc;
1160 }
1161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 } else {
1163 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1164 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05001165 dev_printk(KERN_ERR, &pdev->dev,
1166 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return rc;
1168 }
1169 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1170 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05001171 dev_printk(KERN_ERR, &pdev->dev,
1172 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return rc;
1174 }
1175 }
1176
1177 for (i = 0; i < probe_ent->n_ports; i++) {
1178#if 0 /* BIOSen initialize this incorrectly */
1179 if (!(hpriv->port_map & (1 << i)))
1180 continue;
1181#endif
1182
1183 port_mmio = ahci_port_base(mmio, i);
1184 VPRINTK("mmio %p port_mmio %p\n", mmio, port_mmio);
1185
1186 ahci_setup_port(&probe_ent->port[i],
1187 (unsigned long) mmio, i);
1188
1189 /* make sure port is not active */
1190 tmp = readl(port_mmio + PORT_CMD);
1191 VPRINTK("PORT_CMD 0x%x\n", tmp);
1192 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
1193 PORT_CMD_FIS_RX | PORT_CMD_START)) {
1194 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
1195 PORT_CMD_FIS_RX | PORT_CMD_START);
1196 writel(tmp, port_mmio + PORT_CMD);
1197 readl(port_mmio + PORT_CMD); /* flush */
1198
1199 /* spec says 500 msecs for each bit, so
1200 * this is slightly incorrect.
1201 */
1202 msleep(500);
1203 }
1204
1205 writel(PORT_CMD_SPIN_UP, port_mmio + PORT_CMD);
1206
1207 j = 0;
1208 while (j < 100) {
1209 msleep(10);
1210 tmp = readl(port_mmio + PORT_SCR_STAT);
1211 if ((tmp & 0xf) == 0x3)
1212 break;
1213 j++;
1214 }
1215
1216 tmp = readl(port_mmio + PORT_SCR_ERR);
1217 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1218 writel(tmp, port_mmio + PORT_SCR_ERR);
1219
1220 /* ack any pending irq events for this port */
1221 tmp = readl(port_mmio + PORT_IRQ_STAT);
1222 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1223 if (tmp)
1224 writel(tmp, port_mmio + PORT_IRQ_STAT);
1225
1226 writel(1 << i, mmio + HOST_IRQ_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
1228
1229 tmp = readl(mmio + HOST_CTL);
1230 VPRINTK("HOST_CTL 0x%x\n", tmp);
1231 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1232 tmp = readl(mmio + HOST_CTL);
1233 VPRINTK("HOST_CTL 0x%x\n", tmp);
1234
1235 pci_set_master(pdev);
1236
1237 return 0;
1238}
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240static void ahci_print_info(struct ata_probe_ent *probe_ent)
1241{
1242 struct ahci_host_priv *hpriv = probe_ent->private_data;
1243 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
Jeff Garzikea6ba102005-08-30 05:18:18 -04001244 void __iomem *mmio = probe_ent->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 u32 vers, cap, impl, speed;
1246 const char *speed_s;
1247 u16 cc;
1248 const char *scc_s;
1249
1250 vers = readl(mmio + HOST_VERSION);
1251 cap = hpriv->cap;
1252 impl = hpriv->port_map;
1253
1254 speed = (cap >> 20) & 0xf;
1255 if (speed == 1)
1256 speed_s = "1.5";
1257 else if (speed == 2)
1258 speed_s = "3";
1259 else
1260 speed_s = "?";
1261
1262 pci_read_config_word(pdev, 0x0a, &cc);
1263 if (cc == 0x0101)
1264 scc_s = "IDE";
1265 else if (cc == 0x0106)
1266 scc_s = "SATA";
1267 else if (cc == 0x0104)
1268 scc_s = "RAID";
1269 else
1270 scc_s = "unknown";
1271
Jeff Garzika9524a72005-10-30 14:39:11 -05001272 dev_printk(KERN_INFO, &pdev->dev,
1273 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
1275 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 (vers >> 24) & 0xff,
1278 (vers >> 16) & 0xff,
1279 (vers >> 8) & 0xff,
1280 vers & 0xff,
1281
1282 ((cap >> 8) & 0x1f) + 1,
1283 (cap & 0x1f) + 1,
1284 speed_s,
1285 impl,
1286 scc_s);
1287
Jeff Garzika9524a72005-10-30 14:39:11 -05001288 dev_printk(KERN_INFO, &pdev->dev,
1289 "flags: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 "%s%s%s%s%s%s"
1291 "%s%s%s%s%s%s%s\n"
1292 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 cap & (1 << 31) ? "64bit " : "",
1295 cap & (1 << 30) ? "ncq " : "",
1296 cap & (1 << 28) ? "ilck " : "",
1297 cap & (1 << 27) ? "stag " : "",
1298 cap & (1 << 26) ? "pm " : "",
1299 cap & (1 << 25) ? "led " : "",
1300
1301 cap & (1 << 24) ? "clo " : "",
1302 cap & (1 << 19) ? "nz " : "",
1303 cap & (1 << 18) ? "only " : "",
1304 cap & (1 << 17) ? "pmp " : "",
1305 cap & (1 << 15) ? "pio " : "",
1306 cap & (1 << 14) ? "slum " : "",
1307 cap & (1 << 13) ? "part " : ""
1308 );
1309}
1310
1311static int ahci_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1312{
1313 static int printed_version;
1314 struct ata_probe_ent *probe_ent = NULL;
1315 struct ahci_host_priv *hpriv;
1316 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -04001317 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 unsigned int board_idx = (unsigned int) ent->driver_data;
Jeff Garzik907f4672005-05-12 15:03:42 -04001319 int have_msi, pci_dev_busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 int rc;
1321
1322 VPRINTK("ENTER\n");
1323
Tejun Heo12fad3f2006-05-15 21:03:55 +09001324 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05001327 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
root9545b572006-07-05 22:58:20 -04001329 /* JMicron-specific fixup: make sure we're in AHCI mode */
1330 /* This is protected from races with ata_jmicron by the pci probe
1331 locking */
1332 if (pdev->vendor == PCI_VENDOR_ID_JMICRON) {
1333 /* AHCI enable, AHCI on function 0 */
1334 pci_write_config_byte(pdev, 0x41, 0xa1);
1335 /* Function 1 is the PATA controller */
1336 if (PCI_FUNC(pdev->devfn))
1337 return -ENODEV;
1338 }
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 rc = pci_enable_device(pdev);
1341 if (rc)
1342 return rc;
1343
1344 rc = pci_request_regions(pdev, DRV_NAME);
1345 if (rc) {
1346 pci_dev_busy = 1;
1347 goto err_out;
1348 }
1349
Jeff Garzik907f4672005-05-12 15:03:42 -04001350 if (pci_enable_msi(pdev) == 0)
1351 have_msi = 1;
1352 else {
1353 pci_intx(pdev, 1);
1354 have_msi = 0;
1355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
1358 if (probe_ent == NULL) {
1359 rc = -ENOMEM;
Jeff Garzik907f4672005-05-12 15:03:42 -04001360 goto err_out_msi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 }
1362
1363 memset(probe_ent, 0, sizeof(*probe_ent));
1364 probe_ent->dev = pci_dev_to_dev(pdev);
1365 INIT_LIST_HEAD(&probe_ent->node);
1366
Jeff Garzik374b1872005-08-30 05:42:52 -04001367 mmio_base = pci_iomap(pdev, AHCI_PCI_BAR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (mmio_base == NULL) {
1369 rc = -ENOMEM;
1370 goto err_out_free_ent;
1371 }
1372 base = (unsigned long) mmio_base;
1373
1374 hpriv = kmalloc(sizeof(*hpriv), GFP_KERNEL);
1375 if (!hpriv) {
1376 rc = -ENOMEM;
1377 goto err_out_iounmap;
1378 }
1379 memset(hpriv, 0, sizeof(*hpriv));
1380
1381 probe_ent->sht = ahci_port_info[board_idx].sht;
1382 probe_ent->host_flags = ahci_port_info[board_idx].host_flags;
1383 probe_ent->pio_mask = ahci_port_info[board_idx].pio_mask;
1384 probe_ent->udma_mask = ahci_port_info[board_idx].udma_mask;
1385 probe_ent->port_ops = ahci_port_info[board_idx].port_ops;
1386
1387 probe_ent->irq = pdev->irq;
Thomas Gleixner1d6f3592006-07-01 19:29:42 -07001388 probe_ent->irq_flags = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 probe_ent->mmio_base = mmio_base;
1390 probe_ent->private_data = hpriv;
1391
Jeff Garzik4b0060f2005-06-04 00:50:22 -04001392 if (have_msi)
1393 hpriv->flags |= AHCI_FLAG_MSI;
Jeff Garzik907f4672005-05-12 15:03:42 -04001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /* initialize adapter */
1396 rc = ahci_host_init(probe_ent);
1397 if (rc)
1398 goto err_out_hpriv;
1399
Tejun Heo71f07372006-06-21 23:12:48 +09001400 if (!(probe_ent->host_flags & AHCI_FLAG_NO_NCQ) &&
1401 (hpriv->cap & HOST_CAP_NCQ))
Tejun Heo12fad3f2006-05-15 21:03:55 +09001402 probe_ent->host_flags |= ATA_FLAG_NCQ;
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 ahci_print_info(probe_ent);
1405
1406 /* FIXME: check ata_device_add return value */
1407 ata_device_add(probe_ent);
1408 kfree(probe_ent);
1409
1410 return 0;
1411
1412err_out_hpriv:
1413 kfree(hpriv);
1414err_out_iounmap:
Jeff Garzik374b1872005-08-30 05:42:52 -04001415 pci_iounmap(pdev, mmio_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416err_out_free_ent:
1417 kfree(probe_ent);
Jeff Garzik907f4672005-05-12 15:03:42 -04001418err_out_msi:
1419 if (have_msi)
1420 pci_disable_msi(pdev);
1421 else
1422 pci_intx(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 pci_release_regions(pdev);
1424err_out:
1425 if (!pci_dev_busy)
1426 pci_disable_device(pdev);
1427 return rc;
1428}
1429
Jeff Garzik907f4672005-05-12 15:03:42 -04001430static void ahci_remove_one (struct pci_dev *pdev)
1431{
1432 struct device *dev = pci_dev_to_dev(pdev);
1433 struct ata_host_set *host_set = dev_get_drvdata(dev);
1434 struct ahci_host_priv *hpriv = host_set->private_data;
Jeff Garzik907f4672005-05-12 15:03:42 -04001435 unsigned int i;
1436 int have_msi;
1437
Tejun Heo720ba122006-05-31 18:28:13 +09001438 for (i = 0; i < host_set->n_ports; i++)
1439 ata_port_detach(host_set->ports[i]);
Jeff Garzik907f4672005-05-12 15:03:42 -04001440
Jeff Garzik4b0060f2005-06-04 00:50:22 -04001441 have_msi = hpriv->flags & AHCI_FLAG_MSI;
Jeff Garzik907f4672005-05-12 15:03:42 -04001442 free_irq(host_set->irq, host_set);
Jeff Garzik907f4672005-05-12 15:03:42 -04001443
1444 for (i = 0; i < host_set->n_ports; i++) {
Tejun Heo720ba122006-05-31 18:28:13 +09001445 struct ata_port *ap = host_set->ports[i];
Jeff Garzik907f4672005-05-12 15:03:42 -04001446
1447 ata_scsi_release(ap->host);
1448 scsi_host_put(ap->host);
1449 }
1450
Jeff Garzike005f012005-08-30 04:18:28 -04001451 kfree(hpriv);
Jeff Garzik374b1872005-08-30 05:42:52 -04001452 pci_iounmap(pdev, host_set->mmio_base);
Jeff Garzikead5de92005-05-31 11:53:57 -04001453 kfree(host_set);
1454
Jeff Garzik907f4672005-05-12 15:03:42 -04001455 if (have_msi)
1456 pci_disable_msi(pdev);
1457 else
1458 pci_intx(pdev, 0);
1459 pci_release_regions(pdev);
Jeff Garzik907f4672005-05-12 15:03:42 -04001460 pci_disable_device(pdev);
1461 dev_set_drvdata(dev, NULL);
1462}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464static int __init ahci_init(void)
1465{
1466 return pci_module_init(&ahci_pci_driver);
1467}
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469static void __exit ahci_exit(void)
1470{
1471 pci_unregister_driver(&ahci_pci_driver);
1472}
1473
1474
1475MODULE_AUTHOR("Jeff Garzik");
1476MODULE_DESCRIPTION("AHCI SATA low-level driver");
1477MODULE_LICENSE("GPL");
1478MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04001479MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481module_init(ahci_init);
1482module_exit(ahci_exit);