blob: 82ecdef0c48b1873ed82677ec565c221fa874445 [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 Garzikaf643712006-04-02 20:41:36 -040051#define DRV_VERSION "1.3"
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),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167};
168
169struct ahci_cmd_hdr {
170 u32 opts;
171 u32 status;
172 u32 tbl_addr;
173 u32 tbl_addr_hi;
174 u32 reserved[4];
175};
176
177struct ahci_sg {
178 u32 addr;
179 u32 addr_hi;
180 u32 reserved;
181 u32 flags_size;
182};
183
184struct ahci_host_priv {
185 unsigned long flags;
186 u32 cap; /* cache of HOST_CAP register */
187 u32 port_map; /* cache of HOST_PORTS_IMPL reg */
188};
189
190struct ahci_port_priv {
191 struct ahci_cmd_hdr *cmd_slot;
192 dma_addr_t cmd_slot_dma;
193 void *cmd_tbl;
194 dma_addr_t cmd_tbl_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 void *rx_fis;
196 dma_addr_t rx_fis_dma;
197};
198
199static u32 ahci_scr_read (struct ata_port *ap, unsigned int sc_reg);
200static void ahci_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
201static int ahci_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900202static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static irqreturn_t ahci_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static void ahci_irq_clear(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205static int ahci_port_start(struct ata_port *ap);
206static void ahci_port_stop(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
208static void ahci_qc_prep(struct ata_queued_cmd *qc);
209static u8 ahci_check_status(struct ata_port *ap);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900210static void ahci_freeze(struct ata_port *ap);
211static void ahci_thaw(struct ata_port *ap);
212static void ahci_error_handler(struct ata_port *ap);
213static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Jeff Garzik907f4672005-05-12 15:03:42 -0400214static void ahci_remove_one (struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Jeff Garzik193515d2005-11-07 00:59:37 -0500216static struct scsi_host_template ahci_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 .module = THIS_MODULE,
218 .name = DRV_NAME,
219 .ioctl = ata_scsi_ioctl,
220 .queuecommand = ata_scsi_queuecmd,
Tejun Heo12fad3f2006-05-15 21:03:55 +0900221 .change_queue_depth = ata_scsi_change_queue_depth,
222 .can_queue = AHCI_MAX_CMDS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 .this_id = ATA_SHT_THIS_ID,
224 .sg_tablesize = AHCI_MAX_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
226 .emulated = ATA_SHT_EMULATED,
227 .use_clustering = AHCI_USE_CLUSTERING,
228 .proc_name = DRV_NAME,
229 .dma_boundary = AHCI_DMA_BOUNDARY,
230 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900231 .slave_destroy = ata_scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
Jeff Garzik057ace52005-10-22 14:27:05 -0400235static const struct ata_port_operations ahci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 .port_disable = ata_port_disable,
237
238 .check_status = ahci_check_status,
239 .check_altstatus = ahci_check_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 .dev_select = ata_noop_dev_select,
241
242 .tf_read = ahci_tf_read,
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 .qc_prep = ahci_qc_prep,
245 .qc_issue = ahci_qc_issue,
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 .irq_handler = ahci_interrupt,
248 .irq_clear = ahci_irq_clear,
249
250 .scr_read = ahci_scr_read,
251 .scr_write = ahci_scr_write,
252
Tejun Heo78cd52d2006-05-15 20:58:29 +0900253 .freeze = ahci_freeze,
254 .thaw = ahci_thaw,
255
256 .error_handler = ahci_error_handler,
257 .post_internal_cmd = ahci_post_internal_cmd,
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 .port_start = ahci_port_start,
260 .port_stop = ahci_port_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100263static const struct ata_port_info ahci_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* board_ahci */
265 {
266 .sht = &ahci_sht,
267 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo42969712006-05-31 18:28:18 +0900268 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
269 ATA_FLAG_SKIP_D2H_BSY,
Brett Russ7da79312005-09-01 21:53:34 -0400270 .pio_mask = 0x1f, /* pio0-4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
272 .port_ops = &ahci_ops,
273 },
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200274 /* board_ahci_vt8251 */
275 {
276 .sht = &ahci_sht,
277 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
278 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Tejun Heo42969712006-05-31 18:28:18 +0900279 ATA_FLAG_SKIP_D2H_BSY |
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200280 AHCI_FLAG_RESET_NEEDS_CLO,
281 .pio_mask = 0x1f, /* pio0-4 */
282 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
283 .port_ops = &ahci_ops,
284 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500287static const struct pci_device_id ahci_pci_tbl[] = {
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400288 /* Intel */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 { PCI_VENDOR_ID_INTEL, 0x2652, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
290 board_ahci }, /* ICH6 */
291 { PCI_VENDOR_ID_INTEL, 0x2653, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
292 board_ahci }, /* ICH6M */
293 { PCI_VENDOR_ID_INTEL, 0x27c1, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
294 board_ahci }, /* ICH7 */
295 { PCI_VENDOR_ID_INTEL, 0x27c5, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
296 board_ahci }, /* ICH7M */
297 { PCI_VENDOR_ID_INTEL, 0x27c3, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
298 board_ahci }, /* ICH7R */
299 { PCI_VENDOR_ID_AL, 0x5288, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
300 board_ahci }, /* ULi M5288 */
Jason Gaston680d3232005-04-16 15:24:45 -0700301 { PCI_VENDOR_ID_INTEL, 0x2681, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
302 board_ahci }, /* ESB2 */
303 { PCI_VENDOR_ID_INTEL, 0x2682, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
304 board_ahci }, /* ESB2 */
305 { PCI_VENDOR_ID_INTEL, 0x2683, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
306 board_ahci }, /* ESB2 */
Jason Gaston3db368f2005-08-10 06:18:43 -0700307 { PCI_VENDOR_ID_INTEL, 0x27c6, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
308 board_ahci }, /* ICH7-M DH */
Jason Gastonf2857572006-01-09 11:09:13 -0800309 { PCI_VENDOR_ID_INTEL, 0x2821, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
310 board_ahci }, /* ICH8 */
311 { PCI_VENDOR_ID_INTEL, 0x2822, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
312 board_ahci }, /* ICH8 */
313 { PCI_VENDOR_ID_INTEL, 0x2824, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
314 board_ahci }, /* ICH8 */
315 { PCI_VENDOR_ID_INTEL, 0x2829, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
316 board_ahci }, /* ICH8M */
317 { PCI_VENDOR_ID_INTEL, 0x282a, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
318 board_ahci }, /* ICH8M */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400319
320 /* JMicron */
Jeff Garzikbd120972006-01-29 02:47:03 -0500321 { 0x197b, 0x2360, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
322 board_ahci }, /* JMicron JMB360 */
Jeff Garzik9220a2d2006-01-29 12:40:57 -0500323 { 0x197b, 0x2363, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
324 board_ahci }, /* JMicron JMB363 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400325
326 /* ATI */
Jeff Garzik8b316a32006-03-30 17:07:32 -0500327 { PCI_VENDOR_ID_ATI, 0x4380, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
328 board_ahci }, /* ATI SB600 non-raid */
329 { PCI_VENDOR_ID_ATI, 0x4381, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
330 board_ahci }, /* ATI SB600 raid */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400331
332 /* VIA */
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200333 { PCI_VENDOR_ID_VIA, 0x3349, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
334 board_ahci_vt8251 }, /* VIA VT8251 */
Jeff Garzikfe7fa312006-06-22 23:05:36 -0400335
336 /* NVIDIA */
337 { PCI_VENDOR_ID_NVIDIA, 0x044c, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
338 board_ahci }, /* MCP65 */
339 { PCI_VENDOR_ID_NVIDIA, 0x044d, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
340 board_ahci }, /* MCP65 */
341 { PCI_VENDOR_ID_NVIDIA, 0x044e, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
342 board_ahci }, /* MCP65 */
343 { PCI_VENDOR_ID_NVIDIA, 0x044f, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
344 board_ahci }, /* MCP65 */
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 { } /* terminate list */
347};
348
349
350static struct pci_driver ahci_pci_driver = {
351 .name = DRV_NAME,
352 .id_table = ahci_pci_tbl,
353 .probe = ahci_init_one,
Jeff Garzik907f4672005-05-12 15:03:42 -0400354 .remove = ahci_remove_one,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355};
356
357
358static inline unsigned long ahci_port_base_ul (unsigned long base, unsigned int port)
359{
360 return base + 0x100 + (port * 0x80);
361}
362
Jeff Garzikea6ba102005-08-30 05:18:18 -0400363static inline void __iomem *ahci_port_base (void __iomem *base, unsigned int port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400365 return (void __iomem *) ahci_port_base_ul((unsigned long)base, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static int ahci_port_start(struct ata_port *ap)
369{
370 struct device *dev = ap->host_set->dev;
371 struct ahci_host_priv *hpriv = ap->host_set->private_data;
372 struct ahci_port_priv *pp;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400373 void __iomem *mmio = ap->host_set->mmio_base;
374 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
375 void *mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 dma_addr_t mem_dma;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500377 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
Tejun Heo0a139e72005-06-26 23:52:50 +0900380 if (!pp)
381 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 memset(pp, 0, sizeof(*pp));
383
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500384 rc = ata_pad_alloc(ap, dev);
385 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400386 kfree(pp);
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500387 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400388 }
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 mem = dma_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma, GFP_KERNEL);
391 if (!mem) {
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500392 ata_pad_free(ap, dev);
Tejun Heo0a139e72005-06-26 23:52:50 +0900393 kfree(pp);
394 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
397
398 /*
399 * First item in chunk of DMA memory: 32-slot command table,
400 * 32 bytes each in size
401 */
402 pp->cmd_slot = mem;
403 pp->cmd_slot_dma = mem_dma;
404
405 mem += AHCI_CMD_SLOT_SZ;
406 mem_dma += AHCI_CMD_SLOT_SZ;
407
408 /*
409 * Second item: Received-FIS area
410 */
411 pp->rx_fis = mem;
412 pp->rx_fis_dma = mem_dma;
413
414 mem += AHCI_RX_FIS_SZ;
415 mem_dma += AHCI_RX_FIS_SZ;
416
417 /*
418 * Third item: data area for storing a single command
419 * and its scatter-gather table
420 */
421 pp->cmd_tbl = mem;
422 pp->cmd_tbl_dma = mem_dma;
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 ap->private_data = pp;
425
426 if (hpriv->cap & HOST_CAP_64)
427 writel((pp->cmd_slot_dma >> 16) >> 16, port_mmio + PORT_LST_ADDR_HI);
428 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
429 readl(port_mmio + PORT_LST_ADDR); /* flush */
430
431 if (hpriv->cap & HOST_CAP_64)
432 writel((pp->rx_fis_dma >> 16) >> 16, port_mmio + PORT_FIS_ADDR_HI);
433 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
434 readl(port_mmio + PORT_FIS_ADDR); /* flush */
435
436 writel(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
437 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
438 PORT_CMD_START, port_mmio + PORT_CMD);
439 readl(port_mmio + PORT_CMD); /* flush */
440
441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444
445static void ahci_port_stop(struct ata_port *ap)
446{
447 struct device *dev = ap->host_set->dev;
448 struct ahci_port_priv *pp = ap->private_data;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400449 void __iomem *mmio = ap->host_set->mmio_base;
450 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 u32 tmp;
452
453 tmp = readl(port_mmio + PORT_CMD);
454 tmp &= ~(PORT_CMD_START | PORT_CMD_FIS_RX);
455 writel(tmp, port_mmio + PORT_CMD);
456 readl(port_mmio + PORT_CMD); /* flush */
457
458 /* spec says 500 msecs for each PORT_CMD_{START,FIS_RX} bit, so
459 * this is slightly incorrect.
460 */
461 msleep(500);
462
463 ap->private_data = NULL;
464 dma_free_coherent(dev, AHCI_PORT_PRIV_DMA_SZ,
465 pp->cmd_slot, pp->cmd_slot_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500466 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 kfree(pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
470static u32 ahci_scr_read (struct ata_port *ap, unsigned int sc_reg_in)
471{
472 unsigned int sc_reg;
473
474 switch (sc_reg_in) {
475 case SCR_STATUS: sc_reg = 0; break;
476 case SCR_CONTROL: sc_reg = 1; break;
477 case SCR_ERROR: sc_reg = 2; break;
478 case SCR_ACTIVE: sc_reg = 3; break;
479 default:
480 return 0xffffffffU;
481 }
482
Al Viro1e4f2a92005-10-21 06:46:02 +0100483 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486
487static void ahci_scr_write (struct ata_port *ap, unsigned int sc_reg_in,
488 u32 val)
489{
490 unsigned int sc_reg;
491
492 switch (sc_reg_in) {
493 case SCR_STATUS: sc_reg = 0; break;
494 case SCR_CONTROL: sc_reg = 1; break;
495 case SCR_ERROR: sc_reg = 2; break;
496 case SCR_ACTIVE: sc_reg = 3; break;
497 default:
498 return;
499 }
500
Al Viro1e4f2a92005-10-21 06:46:02 +0100501 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
Tejun Heo7c76d1e2005-12-19 22:36:34 +0900504static int ahci_stop_engine(struct ata_port *ap)
505{
506 void __iomem *mmio = ap->host_set->mmio_base;
507 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
508 int work;
509 u32 tmp;
510
511 tmp = readl(port_mmio + PORT_CMD);
512 tmp &= ~PORT_CMD_START;
513 writel(tmp, port_mmio + PORT_CMD);
514
515 /* wait for engine to stop. TODO: this could be
516 * as long as 500 msec
517 */
518 work = 1000;
519 while (work-- > 0) {
520 tmp = readl(port_mmio + PORT_CMD);
521 if ((tmp & PORT_CMD_LIST_ON) == 0)
522 return 0;
523 udelay(10);
524 }
525
526 return -EIO;
527}
528
529static void ahci_start_engine(struct ata_port *ap)
530{
531 void __iomem *mmio = ap->host_set->mmio_base;
532 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
533 u32 tmp;
534
535 tmp = readl(port_mmio + PORT_CMD);
536 tmp |= PORT_CMD_START;
537 writel(tmp, port_mmio + PORT_CMD);
538 readl(port_mmio + PORT_CMD); /* flush */
539}
540
Tejun Heo422b7592005-12-19 22:37:17 +0900541static unsigned int ahci_dev_classify(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
544 struct ata_taskfile tf;
Tejun Heo422b7592005-12-19 22:37:17 +0900545 u32 tmp;
546
547 tmp = readl(port_mmio + PORT_SIG);
548 tf.lbah = (tmp >> 24) & 0xff;
549 tf.lbam = (tmp >> 16) & 0xff;
550 tf.lbal = (tmp >> 8) & 0xff;
551 tf.nsect = (tmp) & 0xff;
552
553 return ata_dev_classify(&tf);
554}
555
Tejun Heo12fad3f2006-05-15 21:03:55 +0900556static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
557 u32 opts)
Tejun Heocc9278e2006-02-10 17:25:47 +0900558{
Tejun Heo12fad3f2006-05-15 21:03:55 +0900559 dma_addr_t cmd_tbl_dma;
560
561 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
562
563 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
564 pp->cmd_slot[tag].status = 0;
565 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
566 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
Tejun Heocc9278e2006-02-10 17:25:47 +0900567}
568
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200569static int ahci_clo(struct ata_port *ap)
570{
571 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
572 struct ahci_host_priv *hpriv = ap->host_set->private_data;
573 u32 tmp;
574
575 if (!(hpriv->cap & HOST_CAP_CLO))
576 return -EOPNOTSUPP;
577
578 tmp = readl(port_mmio + PORT_CMD);
579 tmp |= PORT_CMD_CLO;
580 writel(tmp, port_mmio + PORT_CMD);
581
582 tmp = ata_wait_register(port_mmio + PORT_CMD,
583 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
584 if (tmp & PORT_CMD_CLO)
585 return -EIO;
586
587 return 0;
588}
589
Tejun Heo42969712006-05-31 18:28:18 +0900590static int ahci_prereset(struct ata_port *ap)
591{
592 if ((ap->flags & AHCI_FLAG_RESET_NEEDS_CLO) &&
593 (ata_busy_wait(ap, ATA_BUSY, 1000) & ATA_BUSY)) {
594 /* ATA_BUSY hasn't cleared, so send a CLO */
595 ahci_clo(ap);
596 }
597
598 return ata_std_prereset(ap);
599}
600
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900601static int ahci_softreset(struct ata_port *ap, unsigned int *class)
Tejun Heo4658f792006-03-22 21:07:03 +0900602{
Tejun Heo4658f792006-03-22 21:07:03 +0900603 struct ahci_port_priv *pp = ap->private_data;
604 void __iomem *mmio = ap->host_set->mmio_base;
605 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
606 const u32 cmd_fis_len = 5; /* five dwords */
607 const char *reason = NULL;
608 struct ata_taskfile tf;
Tejun Heo75fe1802006-04-11 22:22:29 +0900609 u32 tmp;
Tejun Heo4658f792006-03-22 21:07:03 +0900610 u8 *fis;
611 int rc;
612
613 DPRINTK("ENTER\n");
614
Tejun Heo81952c52006-05-15 20:57:47 +0900615 if (ata_port_offline(ap)) {
Tejun Heoc2a65852006-04-03 01:58:06 +0900616 DPRINTK("PHY reports no device\n");
617 *class = ATA_DEV_NONE;
618 return 0;
619 }
620
Tejun Heo4658f792006-03-22 21:07:03 +0900621 /* prepare for SRST (AHCI-1.1 10.4.1) */
622 rc = ahci_stop_engine(ap);
623 if (rc) {
624 reason = "failed to stop engine";
625 goto fail_restart;
626 }
627
628 /* check BUSY/DRQ, perform Command List Override if necessary */
629 ahci_tf_read(ap, &tf);
630 if (tf.command & (ATA_BUSY | ATA_DRQ)) {
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200631 rc = ahci_clo(ap);
632
633 if (rc == -EOPNOTSUPP) {
634 reason = "port busy but CLO unavailable";
Tejun Heo4658f792006-03-22 21:07:03 +0900635 goto fail_restart;
Bastiaan Jacquesbf2af2a2006-04-17 14:17:59 +0200636 } else if (rc) {
637 reason = "port busy but CLO failed";
Tejun Heo4658f792006-03-22 21:07:03 +0900638 goto fail_restart;
639 }
640 }
641
642 /* restart engine */
643 ahci_start_engine(ap);
644
Tejun Heo3373efd2006-05-15 20:57:53 +0900645 ata_tf_init(ap->device, &tf);
Tejun Heo4658f792006-03-22 21:07:03 +0900646 fis = pp->cmd_tbl;
647
648 /* issue the first D2H Register FIS */
Tejun Heo12fad3f2006-05-15 21:03:55 +0900649 ahci_fill_cmd_slot(pp, 0,
650 cmd_fis_len | AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY);
Tejun Heo4658f792006-03-22 21:07:03 +0900651
652 tf.ctl |= ATA_SRST;
653 ata_tf_to_fis(&tf, fis, 0);
654 fis[1] &= ~(1 << 7); /* turn off Command FIS bit */
655
656 writel(1, port_mmio + PORT_CMD_ISSUE);
Tejun Heo4658f792006-03-22 21:07:03 +0900657
Tejun Heo75fe1802006-04-11 22:22:29 +0900658 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1, 1, 500);
659 if (tmp & 0x1) {
Tejun Heo4658f792006-03-22 21:07:03 +0900660 rc = -EIO;
661 reason = "1st FIS failed";
662 goto fail;
663 }
664
665 /* spec says at least 5us, but be generous and sleep for 1ms */
666 msleep(1);
667
668 /* issue the second D2H Register FIS */
Tejun Heo12fad3f2006-05-15 21:03:55 +0900669 ahci_fill_cmd_slot(pp, 0, cmd_fis_len);
Tejun Heo4658f792006-03-22 21:07:03 +0900670
671 tf.ctl &= ~ATA_SRST;
672 ata_tf_to_fis(&tf, fis, 0);
673 fis[1] &= ~(1 << 7); /* turn off Command FIS bit */
674
675 writel(1, port_mmio + PORT_CMD_ISSUE);
676 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
677
678 /* spec mandates ">= 2ms" before checking status.
679 * We wait 150ms, because that was the magic delay used for
680 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
681 * between when the ATA command register is written, and then
682 * status is checked. Because waiting for "a while" before
683 * checking status is fine, post SRST, we perform this magic
684 * delay here as well.
685 */
686 msleep(150);
687
688 *class = ATA_DEV_NONE;
Tejun Heo81952c52006-05-15 20:57:47 +0900689 if (ata_port_online(ap)) {
Tejun Heo4658f792006-03-22 21:07:03 +0900690 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
691 rc = -EIO;
692 reason = "device not ready";
693 goto fail;
694 }
695 *class = ahci_dev_classify(ap);
696 }
697
698 DPRINTK("EXIT, class=%u\n", *class);
699 return 0;
700
701 fail_restart:
702 ahci_start_engine(ap);
703 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +0900704 ata_port_printk(ap, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo4658f792006-03-22 21:07:03 +0900705 return rc;
706}
707
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900708static int ahci_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heo422b7592005-12-19 22:37:17 +0900709{
Tejun Heo42969712006-05-31 18:28:18 +0900710 struct ahci_port_priv *pp = ap->private_data;
711 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
712 struct ata_taskfile tf;
Tejun Heo4bd00f62006-02-11 16:26:02 +0900713 int rc;
714
715 DPRINTK("ENTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Tejun Heoe0bfd142006-01-23 16:31:53 +0900717 ahci_stop_engine(ap);
Tejun Heo42969712006-05-31 18:28:18 +0900718
719 /* clear D2H reception area to properly wait for D2H FIS */
720 ata_tf_init(ap->device, &tf);
721 tf.command = 0xff;
722 ata_tf_to_fis(&tf, d2h_fis, 0);
723
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900724 rc = sata_std_hardreset(ap, class);
Tejun Heo42969712006-05-31 18:28:18 +0900725
Tejun Heoe0bfd142006-01-23 16:31:53 +0900726 ahci_start_engine(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Tejun Heo81952c52006-05-15 20:57:47 +0900728 if (rc == 0 && ata_port_online(ap))
Tejun Heo4bd00f62006-02-11 16:26:02 +0900729 *class = ahci_dev_classify(ap);
730 if (*class == ATA_DEV_UNKNOWN)
731 *class = ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Tejun Heo4bd00f62006-02-11 16:26:02 +0900733 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
734 return rc;
735}
736
737static void ahci_postreset(struct ata_port *ap, unsigned int *class)
738{
739 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
740 u32 new_tmp, tmp;
741
742 ata_std_postreset(ap, class);
Jeff Garzik02eaa662005-11-12 01:32:19 -0500743
744 /* Make sure port's ATAPI bit is set appropriately */
745 new_tmp = tmp = readl(port_mmio + PORT_CMD);
Tejun Heo4bd00f62006-02-11 16:26:02 +0900746 if (*class == ATA_DEV_ATAPI)
Jeff Garzik02eaa662005-11-12 01:32:19 -0500747 new_tmp |= PORT_CMD_ATAPI;
748 else
749 new_tmp &= ~PORT_CMD_ATAPI;
750 if (new_tmp != tmp) {
751 writel(new_tmp, port_mmio + PORT_CMD);
752 readl(port_mmio + PORT_CMD); /* flush */
753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
756static u8 ahci_check_status(struct ata_port *ap)
757{
Al Viro1e4f2a92005-10-21 06:46:02 +0100758 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 return readl(mmio + PORT_TFDATA) & 0xFF;
761}
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
764{
765 struct ahci_port_priv *pp = ap->private_data;
766 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
767
768 ata_tf_from_fis(d2h_fis, tf);
769}
770
Tejun Heo12fad3f2006-05-15 21:03:55 +0900771static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400773 struct scatterlist *sg;
774 struct ahci_sg *ahci_sg;
Jeff Garzik828d09d2005-11-12 01:27:07 -0500775 unsigned int n_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 VPRINTK("ENTER\n");
778
779 /*
780 * Next, the S/G list.
781 */
Tejun Heo12fad3f2006-05-15 21:03:55 +0900782 ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400783 ata_for_each_sg(sg, qc) {
784 dma_addr_t addr = sg_dma_address(sg);
785 u32 sg_len = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400787 ahci_sg->addr = cpu_to_le32(addr & 0xffffffff);
788 ahci_sg->addr_hi = cpu_to_le32((addr >> 16) >> 16);
789 ahci_sg->flags_size = cpu_to_le32(sg_len - 1);
Jeff Garzik828d09d2005-11-12 01:27:07 -0500790
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400791 ahci_sg++;
Jeff Garzik828d09d2005-11-12 01:27:07 -0500792 n_sg++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
Jeff Garzik828d09d2005-11-12 01:27:07 -0500794
795 return n_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
798static void ahci_qc_prep(struct ata_queued_cmd *qc)
799{
Jeff Garzika0ea7322005-06-04 01:13:15 -0400800 struct ata_port *ap = qc->ap;
801 struct ahci_port_priv *pp = ap->private_data;
Tejun Heocc9278e2006-02-10 17:25:47 +0900802 int is_atapi = is_atapi_taskfile(&qc->tf);
Tejun Heo12fad3f2006-05-15 21:03:55 +0900803 void *cmd_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 u32 opts;
805 const u32 cmd_fis_len = 5; /* five dwords */
Jeff Garzik828d09d2005-11-12 01:27:07 -0500806 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 * Fill in command table information. First, the header,
810 * a SATA Register - Host to Device command FIS.
811 */
Tejun Heo12fad3f2006-05-15 21:03:55 +0900812 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
813
814 ata_tf_to_fis(&qc->tf, cmd_tbl, 0);
Tejun Heocc9278e2006-02-10 17:25:47 +0900815 if (is_atapi) {
Tejun Heo12fad3f2006-05-15 21:03:55 +0900816 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
817 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
Jeff Garzika0ea7322005-06-04 01:13:15 -0400818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Tejun Heocc9278e2006-02-10 17:25:47 +0900820 n_elem = 0;
821 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo12fad3f2006-05-15 21:03:55 +0900822 n_elem = ahci_fill_sg(qc, cmd_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Tejun Heocc9278e2006-02-10 17:25:47 +0900824 /*
825 * Fill in command slot information.
826 */
827 opts = cmd_fis_len | n_elem << 16;
828 if (qc->tf.flags & ATA_TFLAG_WRITE)
829 opts |= AHCI_CMD_WRITE;
830 if (is_atapi)
Tejun Heo4b10e552006-03-12 11:25:27 +0900831 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
Jeff Garzik828d09d2005-11-12 01:27:07 -0500832
Tejun Heo12fad3f2006-05-15 21:03:55 +0900833 ahci_fill_cmd_slot(pp, qc->tag, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Tejun Heo78cd52d2006-05-15 20:58:29 +0900836static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Tejun Heo78cd52d2006-05-15 20:58:29 +0900838 struct ahci_port_priv *pp = ap->private_data;
839 struct ata_eh_info *ehi = &ap->eh_info;
840 unsigned int err_mask = 0, action = 0;
841 struct ata_queued_cmd *qc;
842 u32 serror;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Tejun Heo78cd52d2006-05-15 20:58:29 +0900844 ata_ehi_clear_desc(ehi);
Jeff Garzik9f68a242005-11-15 14:03:47 -0500845
Tejun Heo78cd52d2006-05-15 20:58:29 +0900846 /* AHCI needs SError cleared; otherwise, it might lock up */
847 serror = ahci_scr_read(ap, SCR_ERROR);
848 ahci_scr_write(ap, SCR_ERROR, serror);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Tejun Heo78cd52d2006-05-15 20:58:29 +0900850 /* analyze @irq_stat */
851 ata_ehi_push_desc(ehi, "irq_stat 0x%08x", irq_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Tejun Heo78cd52d2006-05-15 20:58:29 +0900853 if (irq_stat & PORT_IRQ_TF_ERR)
854 err_mask |= AC_ERR_DEV;
855
856 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
857 err_mask |= AC_ERR_HOST_BUS;
858 action |= ATA_EH_SOFTRESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860
Tejun Heo78cd52d2006-05-15 20:58:29 +0900861 if (irq_stat & PORT_IRQ_IF_ERR) {
862 err_mask |= AC_ERR_ATA_BUS;
863 action |= ATA_EH_SOFTRESET;
864 ata_ehi_push_desc(ehi, ", interface fatal error");
865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Tejun Heo78cd52d2006-05-15 20:58:29 +0900867 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
Tejun Heo42969712006-05-31 18:28:18 +0900868 ata_ehi_hotplugged(ehi);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900869 ata_ehi_push_desc(ehi, ", %s", irq_stat & PORT_IRQ_CONNECT ?
870 "connection status changed" : "PHY RDY changed");
871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Tejun Heo78cd52d2006-05-15 20:58:29 +0900873 if (irq_stat & PORT_IRQ_UNK_FIS) {
874 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Tejun Heo78cd52d2006-05-15 20:58:29 +0900876 err_mask |= AC_ERR_HSM;
877 action |= ATA_EH_SOFTRESET;
878 ata_ehi_push_desc(ehi, ", unknown FIS %08x %08x %08x %08x",
879 unk[0], unk[1], unk[2], unk[3]);
880 }
Jeff Garzikb8f61532005-08-25 22:01:20 -0400881
Tejun Heo78cd52d2006-05-15 20:58:29 +0900882 /* okay, let's hand over to EH */
883 ehi->serror |= serror;
884 ehi->action |= action;
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heo78cd52d2006-05-15 20:58:29 +0900887 if (qc)
888 qc->err_mask |= err_mask;
889 else
890 ehi->err_mask |= err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Tejun Heo78cd52d2006-05-15 20:58:29 +0900892 if (irq_stat & PORT_IRQ_FREEZE)
893 ata_port_freeze(ap);
894 else
895 ata_port_abort(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
Tejun Heo78cd52d2006-05-15 20:58:29 +0900898static void ahci_host_intr(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400900 void __iomem *mmio = ap->host_set->mmio_base;
901 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
Tejun Heo12fad3f2006-05-15 21:03:55 +0900902 struct ata_eh_info *ehi = &ap->eh_info;
903 u32 status, qc_active;
904 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 status = readl(port_mmio + PORT_IRQ_STAT);
907 writel(status, port_mmio + PORT_IRQ_STAT);
908
Tejun Heo78cd52d2006-05-15 20:58:29 +0900909 if (unlikely(status & PORT_IRQ_ERROR)) {
910 ahci_error_intr(ap, status);
911 return;
912 }
913
Tejun Heo12fad3f2006-05-15 21:03:55 +0900914 if (ap->sactive)
915 qc_active = readl(port_mmio + PORT_SCR_ACT);
916 else
917 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
918
919 rc = ata_qc_complete_multiple(ap, qc_active, NULL);
920 if (rc > 0)
921 return;
922 if (rc < 0) {
923 ehi->err_mask |= AC_ERR_HSM;
924 ehi->action |= ATA_EH_SOFTRESET;
925 ata_port_freeze(ap);
926 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928
Tejun Heo2a3917a2006-05-15 20:58:30 +0900929 /* hmmm... a spurious interupt */
930
Tejun Heo12fad3f2006-05-15 21:03:55 +0900931 /* some devices send D2H reg with I bit set during NCQ command phase */
932 if (ap->sactive && status & PORT_IRQ_D2H_REG_FIS)
933 return;
934
Tejun Heo2a3917a2006-05-15 20:58:30 +0900935 /* ignore interim PIO setup fis interrupts */
936 if (ata_tag_valid(ap->active_tag)) {
937 struct ata_queued_cmd *qc =
938 ata_qc_from_tag(ap, ap->active_tag);
939
940 if (qc && qc->tf.protocol == ATA_PROT_PIO &&
941 (status & PORT_IRQ_PIOS_FIS))
942 return;
943 }
944
Tejun Heo78cd52d2006-05-15 20:58:29 +0900945 if (ata_ratelimit())
946 ata_port_printk(ap, KERN_INFO, "spurious interrupt "
Tejun Heo12fad3f2006-05-15 21:03:55 +0900947 "(irq_stat 0x%x active_tag %d sactive 0x%x)\n",
948 status, ap->active_tag, ap->sactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
951static void ahci_irq_clear(struct ata_port *ap)
952{
953 /* TODO */
954}
955
Tejun Heo12fad3f2006-05-15 21:03:55 +0900956static irqreturn_t ahci_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
958 struct ata_host_set *host_set = dev_instance;
959 struct ahci_host_priv *hpriv;
960 unsigned int i, handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400961 void __iomem *mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 u32 irq_stat, irq_ack = 0;
963
964 VPRINTK("ENTER\n");
965
966 hpriv = host_set->private_data;
967 mmio = host_set->mmio_base;
968
969 /* sigh. 0xffffffff is a valid return from h/w */
970 irq_stat = readl(mmio + HOST_IRQ_STAT);
971 irq_stat &= hpriv->port_map;
972 if (!irq_stat)
973 return IRQ_NONE;
974
975 spin_lock(&host_set->lock);
976
977 for (i = 0; i < host_set->n_ports; i++) {
978 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Jeff Garzik67846b32005-10-05 02:58:32 -0400980 if (!(irq_stat & (1 << i)))
981 continue;
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 ap = host_set->ports[i];
Jeff Garzik67846b32005-10-05 02:58:32 -0400984 if (ap) {
Tejun Heo78cd52d2006-05-15 20:58:29 +0900985 ahci_host_intr(ap);
Jeff Garzik67846b32005-10-05 02:58:32 -0400986 VPRINTK("port %u\n", i);
987 } else {
988 VPRINTK("port %u (no irq)\n", i);
Tejun Heo6971ed12006-03-11 12:47:54 +0900989 if (ata_ratelimit())
990 dev_printk(KERN_WARNING, host_set->dev,
Jeff Garzika9524a72005-10-30 14:39:11 -0500991 "interrupt on disabled port %u\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
Jeff Garzik67846b32005-10-05 02:58:32 -0400993
994 irq_ack |= (1 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996
997 if (irq_ack) {
998 writel(irq_ack, mmio + HOST_IRQ_STAT);
999 handled = 1;
1000 }
1001
Tejun Heo78cd52d2006-05-15 20:58:29 +09001002 spin_unlock(&host_set->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 VPRINTK("EXIT\n");
1005
1006 return IRQ_RETVAL(handled);
1007}
1008
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09001009static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
1011 struct ata_port *ap = qc->ap;
Jeff Garzikea6ba102005-08-30 05:18:18 -04001012 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Tejun Heo12fad3f2006-05-15 21:03:55 +09001014 if (qc->tf.protocol == ATA_PROT_NCQ)
1015 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
1016 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1018
1019 return 0;
1020}
1021
Tejun Heo78cd52d2006-05-15 20:58:29 +09001022static void ahci_freeze(struct ata_port *ap)
1023{
1024 void __iomem *mmio = ap->host_set->mmio_base;
1025 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
1026
1027 /* turn IRQ off */
1028 writel(0, port_mmio + PORT_IRQ_MASK);
1029}
1030
1031static void ahci_thaw(struct ata_port *ap)
1032{
1033 void __iomem *mmio = ap->host_set->mmio_base;
1034 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
1035 u32 tmp;
1036
1037 /* clear IRQ */
1038 tmp = readl(port_mmio + PORT_IRQ_STAT);
1039 writel(tmp, port_mmio + PORT_IRQ_STAT);
1040 writel(1 << ap->id, mmio + HOST_IRQ_STAT);
1041
1042 /* turn IRQ back on */
1043 writel(DEF_PORT_IRQ, port_mmio + PORT_IRQ_MASK);
1044}
1045
1046static void ahci_error_handler(struct ata_port *ap)
1047{
1048 if (!(ap->flags & ATA_FLAG_FROZEN)) {
1049 /* restart engine */
1050 ahci_stop_engine(ap);
1051 ahci_start_engine(ap);
1052 }
1053
1054 /* perform recovery */
Tejun Heo42969712006-05-31 18:28:18 +09001055 ata_do_eh(ap, ahci_prereset, ahci_softreset, ahci_hardreset,
Tejun Heof5914a42006-05-31 18:27:48 +09001056 ahci_postreset);
Tejun Heo78cd52d2006-05-15 20:58:29 +09001057}
1058
1059static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
1060{
1061 struct ata_port *ap = qc->ap;
1062
1063 if (qc->flags & ATA_QCFLAG_FAILED)
1064 qc->err_mask |= AC_ERR_OTHER;
1065
1066 if (qc->err_mask) {
1067 /* make DMA engine forget about the failed command */
1068 ahci_stop_engine(ap);
1069 ahci_start_engine(ap);
1070 }
1071}
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073static void ahci_setup_port(struct ata_ioports *port, unsigned long base,
1074 unsigned int port_idx)
1075{
1076 VPRINTK("ENTER, base==0x%lx, port_idx %u\n", base, port_idx);
1077 base = ahci_port_base_ul(base, port_idx);
1078 VPRINTK("base now==0x%lx\n", base);
1079
1080 port->cmd_addr = base;
1081 port->scr_addr = base + PORT_SCR;
1082
1083 VPRINTK("EXIT\n");
1084}
1085
1086static int ahci_host_init(struct ata_probe_ent *probe_ent)
1087{
1088 struct ahci_host_priv *hpriv = probe_ent->private_data;
1089 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
1090 void __iomem *mmio = probe_ent->mmio_base;
1091 u32 tmp, cap_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 unsigned int i, j, using_dac;
1093 int rc;
1094 void __iomem *port_mmio;
1095
1096 cap_save = readl(mmio + HOST_CAP);
1097 cap_save &= ( (1<<28) | (1<<17) );
1098 cap_save |= (1 << 27);
1099
1100 /* global controller reset */
1101 tmp = readl(mmio + HOST_CTL);
1102 if ((tmp & HOST_RESET) == 0) {
1103 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1104 readl(mmio + HOST_CTL); /* flush */
1105 }
1106
1107 /* reset must complete within 1 second, or
1108 * the hardware should be considered fried.
1109 */
1110 ssleep(1);
1111
1112 tmp = readl(mmio + HOST_CTL);
1113 if (tmp & HOST_RESET) {
Jeff Garzika9524a72005-10-30 14:39:11 -05001114 dev_printk(KERN_ERR, &pdev->dev,
1115 "controller reset failed (0x%x)\n", tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return -EIO;
1117 }
1118
1119 writel(HOST_AHCI_EN, mmio + HOST_CTL);
1120 (void) readl(mmio + HOST_CTL); /* flush */
1121 writel(cap_save, mmio + HOST_CAP);
1122 writel(0xf, mmio + HOST_PORTS_IMPL);
1123 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
1124
Jeff Garzikbd120972006-01-29 02:47:03 -05001125 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1126 u16 tmp16;
1127
1128 pci_read_config_word(pdev, 0x92, &tmp16);
1129 tmp16 |= 0xf;
1130 pci_write_config_word(pdev, 0x92, tmp16);
1131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 hpriv->cap = readl(mmio + HOST_CAP);
1134 hpriv->port_map = readl(mmio + HOST_PORTS_IMPL);
1135 probe_ent->n_ports = (hpriv->cap & 0x1f) + 1;
1136
1137 VPRINTK("cap 0x%x port_map 0x%x n_ports %d\n",
1138 hpriv->cap, hpriv->port_map, probe_ent->n_ports);
1139
1140 using_dac = hpriv->cap & HOST_CAP_64;
1141 if (using_dac &&
1142 !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
1143 rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
1144 if (rc) {
1145 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1146 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05001147 dev_printk(KERN_ERR, &pdev->dev,
1148 "64-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 return rc;
1150 }
1151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 } else {
1153 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1154 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05001155 dev_printk(KERN_ERR, &pdev->dev,
1156 "32-bit DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return rc;
1158 }
1159 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1160 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -05001161 dev_printk(KERN_ERR, &pdev->dev,
1162 "32-bit consistent DMA enable failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 return rc;
1164 }
1165 }
1166
1167 for (i = 0; i < probe_ent->n_ports; i++) {
1168#if 0 /* BIOSen initialize this incorrectly */
1169 if (!(hpriv->port_map & (1 << i)))
1170 continue;
1171#endif
1172
1173 port_mmio = ahci_port_base(mmio, i);
1174 VPRINTK("mmio %p port_mmio %p\n", mmio, port_mmio);
1175
1176 ahci_setup_port(&probe_ent->port[i],
1177 (unsigned long) mmio, i);
1178
1179 /* make sure port is not active */
1180 tmp = readl(port_mmio + PORT_CMD);
1181 VPRINTK("PORT_CMD 0x%x\n", tmp);
1182 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
1183 PORT_CMD_FIS_RX | PORT_CMD_START)) {
1184 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
1185 PORT_CMD_FIS_RX | PORT_CMD_START);
1186 writel(tmp, port_mmio + PORT_CMD);
1187 readl(port_mmio + PORT_CMD); /* flush */
1188
1189 /* spec says 500 msecs for each bit, so
1190 * this is slightly incorrect.
1191 */
1192 msleep(500);
1193 }
1194
1195 writel(PORT_CMD_SPIN_UP, port_mmio + PORT_CMD);
1196
1197 j = 0;
1198 while (j < 100) {
1199 msleep(10);
1200 tmp = readl(port_mmio + PORT_SCR_STAT);
1201 if ((tmp & 0xf) == 0x3)
1202 break;
1203 j++;
1204 }
1205
1206 tmp = readl(port_mmio + PORT_SCR_ERR);
1207 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1208 writel(tmp, port_mmio + PORT_SCR_ERR);
1209
1210 /* ack any pending irq events for this port */
1211 tmp = readl(port_mmio + PORT_IRQ_STAT);
1212 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1213 if (tmp)
1214 writel(tmp, port_mmio + PORT_IRQ_STAT);
1215
1216 writel(1 << i, mmio + HOST_IRQ_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
1218
1219 tmp = readl(mmio + HOST_CTL);
1220 VPRINTK("HOST_CTL 0x%x\n", tmp);
1221 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1222 tmp = readl(mmio + HOST_CTL);
1223 VPRINTK("HOST_CTL 0x%x\n", tmp);
1224
1225 pci_set_master(pdev);
1226
1227 return 0;
1228}
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230static void ahci_print_info(struct ata_probe_ent *probe_ent)
1231{
1232 struct ahci_host_priv *hpriv = probe_ent->private_data;
1233 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
Jeff Garzikea6ba102005-08-30 05:18:18 -04001234 void __iomem *mmio = probe_ent->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 u32 vers, cap, impl, speed;
1236 const char *speed_s;
1237 u16 cc;
1238 const char *scc_s;
1239
1240 vers = readl(mmio + HOST_VERSION);
1241 cap = hpriv->cap;
1242 impl = hpriv->port_map;
1243
1244 speed = (cap >> 20) & 0xf;
1245 if (speed == 1)
1246 speed_s = "1.5";
1247 else if (speed == 2)
1248 speed_s = "3";
1249 else
1250 speed_s = "?";
1251
1252 pci_read_config_word(pdev, 0x0a, &cc);
1253 if (cc == 0x0101)
1254 scc_s = "IDE";
1255 else if (cc == 0x0106)
1256 scc_s = "SATA";
1257 else if (cc == 0x0104)
1258 scc_s = "RAID";
1259 else
1260 scc_s = "unknown";
1261
Jeff Garzika9524a72005-10-30 14:39:11 -05001262 dev_printk(KERN_INFO, &pdev->dev,
1263 "AHCI %02x%02x.%02x%02x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
1265 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 (vers >> 24) & 0xff,
1268 (vers >> 16) & 0xff,
1269 (vers >> 8) & 0xff,
1270 vers & 0xff,
1271
1272 ((cap >> 8) & 0x1f) + 1,
1273 (cap & 0x1f) + 1,
1274 speed_s,
1275 impl,
1276 scc_s);
1277
Jeff Garzika9524a72005-10-30 14:39:11 -05001278 dev_printk(KERN_INFO, &pdev->dev,
1279 "flags: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 "%s%s%s%s%s%s"
1281 "%s%s%s%s%s%s%s\n"
1282 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 cap & (1 << 31) ? "64bit " : "",
1285 cap & (1 << 30) ? "ncq " : "",
1286 cap & (1 << 28) ? "ilck " : "",
1287 cap & (1 << 27) ? "stag " : "",
1288 cap & (1 << 26) ? "pm " : "",
1289 cap & (1 << 25) ? "led " : "",
1290
1291 cap & (1 << 24) ? "clo " : "",
1292 cap & (1 << 19) ? "nz " : "",
1293 cap & (1 << 18) ? "only " : "",
1294 cap & (1 << 17) ? "pmp " : "",
1295 cap & (1 << 15) ? "pio " : "",
1296 cap & (1 << 14) ? "slum " : "",
1297 cap & (1 << 13) ? "part " : ""
1298 );
1299}
1300
1301static int ahci_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1302{
1303 static int printed_version;
1304 struct ata_probe_ent *probe_ent = NULL;
1305 struct ahci_host_priv *hpriv;
1306 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -04001307 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 unsigned int board_idx = (unsigned int) ent->driver_data;
Jeff Garzik907f4672005-05-12 15:03:42 -04001309 int have_msi, pci_dev_busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 int rc;
1311
1312 VPRINTK("ENTER\n");
1313
Tejun Heo12fad3f2006-05-15 21:03:55 +09001314 WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS);
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05001317 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 rc = pci_enable_device(pdev);
1320 if (rc)
1321 return rc;
1322
1323 rc = pci_request_regions(pdev, DRV_NAME);
1324 if (rc) {
1325 pci_dev_busy = 1;
1326 goto err_out;
1327 }
1328
Jeff Garzik907f4672005-05-12 15:03:42 -04001329 if (pci_enable_msi(pdev) == 0)
1330 have_msi = 1;
1331 else {
1332 pci_intx(pdev, 1);
1333 have_msi = 0;
1334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
1337 if (probe_ent == NULL) {
1338 rc = -ENOMEM;
Jeff Garzik907f4672005-05-12 15:03:42 -04001339 goto err_out_msi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341
1342 memset(probe_ent, 0, sizeof(*probe_ent));
1343 probe_ent->dev = pci_dev_to_dev(pdev);
1344 INIT_LIST_HEAD(&probe_ent->node);
1345
Jeff Garzik374b1872005-08-30 05:42:52 -04001346 mmio_base = pci_iomap(pdev, AHCI_PCI_BAR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (mmio_base == NULL) {
1348 rc = -ENOMEM;
1349 goto err_out_free_ent;
1350 }
1351 base = (unsigned long) mmio_base;
1352
1353 hpriv = kmalloc(sizeof(*hpriv), GFP_KERNEL);
1354 if (!hpriv) {
1355 rc = -ENOMEM;
1356 goto err_out_iounmap;
1357 }
1358 memset(hpriv, 0, sizeof(*hpriv));
1359
1360 probe_ent->sht = ahci_port_info[board_idx].sht;
1361 probe_ent->host_flags = ahci_port_info[board_idx].host_flags;
1362 probe_ent->pio_mask = ahci_port_info[board_idx].pio_mask;
1363 probe_ent->udma_mask = ahci_port_info[board_idx].udma_mask;
1364 probe_ent->port_ops = ahci_port_info[board_idx].port_ops;
1365
1366 probe_ent->irq = pdev->irq;
1367 probe_ent->irq_flags = SA_SHIRQ;
1368 probe_ent->mmio_base = mmio_base;
1369 probe_ent->private_data = hpriv;
1370
Jeff Garzik4b0060f2005-06-04 00:50:22 -04001371 if (have_msi)
1372 hpriv->flags |= AHCI_FLAG_MSI;
Jeff Garzik907f4672005-05-12 15:03:42 -04001373
Jeff Garzikbd120972006-01-29 02:47:03 -05001374 /* JMicron-specific fixup: make sure we're in AHCI mode */
1375 if (pdev->vendor == 0x197b)
1376 pci_write_config_byte(pdev, 0x41, 0xa1);
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 /* initialize adapter */
1379 rc = ahci_host_init(probe_ent);
1380 if (rc)
1381 goto err_out_hpriv;
1382
Tejun Heo12fad3f2006-05-15 21:03:55 +09001383 if (hpriv->cap & HOST_CAP_NCQ)
1384 probe_ent->host_flags |= ATA_FLAG_NCQ;
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 ahci_print_info(probe_ent);
1387
1388 /* FIXME: check ata_device_add return value */
1389 ata_device_add(probe_ent);
1390 kfree(probe_ent);
1391
1392 return 0;
1393
1394err_out_hpriv:
1395 kfree(hpriv);
1396err_out_iounmap:
Jeff Garzik374b1872005-08-30 05:42:52 -04001397 pci_iounmap(pdev, mmio_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398err_out_free_ent:
1399 kfree(probe_ent);
Jeff Garzik907f4672005-05-12 15:03:42 -04001400err_out_msi:
1401 if (have_msi)
1402 pci_disable_msi(pdev);
1403 else
1404 pci_intx(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 pci_release_regions(pdev);
1406err_out:
1407 if (!pci_dev_busy)
1408 pci_disable_device(pdev);
1409 return rc;
1410}
1411
Jeff Garzik907f4672005-05-12 15:03:42 -04001412static void ahci_remove_one (struct pci_dev *pdev)
1413{
1414 struct device *dev = pci_dev_to_dev(pdev);
1415 struct ata_host_set *host_set = dev_get_drvdata(dev);
1416 struct ahci_host_priv *hpriv = host_set->private_data;
Jeff Garzik907f4672005-05-12 15:03:42 -04001417 unsigned int i;
1418 int have_msi;
1419
Tejun Heo720ba122006-05-31 18:28:13 +09001420 for (i = 0; i < host_set->n_ports; i++)
1421 ata_port_detach(host_set->ports[i]);
Jeff Garzik907f4672005-05-12 15:03:42 -04001422
Jeff Garzik4b0060f2005-06-04 00:50:22 -04001423 have_msi = hpriv->flags & AHCI_FLAG_MSI;
Jeff Garzik907f4672005-05-12 15:03:42 -04001424 free_irq(host_set->irq, host_set);
Jeff Garzik907f4672005-05-12 15:03:42 -04001425
1426 for (i = 0; i < host_set->n_ports; i++) {
Tejun Heo720ba122006-05-31 18:28:13 +09001427 struct ata_port *ap = host_set->ports[i];
Jeff Garzik907f4672005-05-12 15:03:42 -04001428
1429 ata_scsi_release(ap->host);
1430 scsi_host_put(ap->host);
1431 }
1432
Jeff Garzike005f012005-08-30 04:18:28 -04001433 kfree(hpriv);
Jeff Garzik374b1872005-08-30 05:42:52 -04001434 pci_iounmap(pdev, host_set->mmio_base);
Jeff Garzikead5de92005-05-31 11:53:57 -04001435 kfree(host_set);
1436
Jeff Garzik907f4672005-05-12 15:03:42 -04001437 if (have_msi)
1438 pci_disable_msi(pdev);
1439 else
1440 pci_intx(pdev, 0);
1441 pci_release_regions(pdev);
Jeff Garzik907f4672005-05-12 15:03:42 -04001442 pci_disable_device(pdev);
1443 dev_set_drvdata(dev, NULL);
1444}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446static int __init ahci_init(void)
1447{
1448 return pci_module_init(&ahci_pci_driver);
1449}
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451static void __exit ahci_exit(void)
1452{
1453 pci_unregister_driver(&ahci_pci_driver);
1454}
1455
1456
1457MODULE_AUTHOR("Jeff Garzik");
1458MODULE_DESCRIPTION("AHCI SATA low-level driver");
1459MODULE_LICENSE("GPL");
1460MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
Jeff Garzik68854332005-08-23 02:53:51 -04001461MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463module_init(ahci_init);
1464module_exit(ahci_exit);