]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/scsi/ahci.c
[PATCH] sata_sil: convert to new EH
[mirror_ubuntu-bionic-kernel.git] / drivers / scsi / ahci.c
CommitLineData
1da177e4
LT
1/*
2 * ahci.c - AHCI SATA support
3 *
af36d7f0
JG
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2004-2005 Red Hat, Inc.
9 *
10 *
11 * 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:
1da177e4 30 * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf
af36d7f0 31 * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf
1da177e4
LT
32 *
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>
87507cfd 43#include <linux/dma-mapping.h>
a9524a76 44#include <linux/device.h>
1da177e4 45#include <scsi/scsi_host.h>
193515d5 46#include <scsi/scsi_cmnd.h>
1da177e4
LT
47#include <linux/libata.h>
48#include <asm/io.h>
49
50#define DRV_NAME "ahci"
af64371a 51#define DRV_VERSION "1.3"
1da177e4
LT
52
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,
59 AHCI_CMD_SLOT_SZ = 32 * 32,
60 AHCI_RX_FIS_SZ = 256,
61 AHCI_CMD_TBL_HDR = 0x80,
a0ea7328 62 AHCI_CMD_TBL_CDB = 0x40,
1da177e4
LT
63 AHCI_CMD_TBL_SZ = AHCI_CMD_TBL_HDR + (AHCI_MAX_SG * 16),
64 AHCI_PORT_PRIV_DMA_SZ = AHCI_CMD_SLOT_SZ + AHCI_CMD_TBL_SZ +
65 AHCI_RX_FIS_SZ,
66 AHCI_IRQ_ON_SG = (1 << 31),
67 AHCI_CMD_ATAPI = (1 << 5),
68 AHCI_CMD_WRITE = (1 << 6),
4b10e559 69 AHCI_CMD_PREFETCH = (1 << 7),
22b49985
TH
70 AHCI_CMD_RESET = (1 << 8),
71 AHCI_CMD_CLR_BUSY = (1 << 10),
1da177e4
LT
72
73 RX_FIS_D2H_REG = 0x40, /* offset of D2H Register FIS data */
74
75 board_ahci = 0,
bf2af2a2 76 board_ahci_vt8251 = 1,
1da177e4
LT
77
78 /* global controller registers */
79 HOST_CAP = 0x00, /* host capabilities */
80 HOST_CTL = 0x04, /* global host control */
81 HOST_IRQ_STAT = 0x08, /* interrupt status */
82 HOST_PORTS_IMPL = 0x0c, /* bitmap of implemented ports */
83 HOST_VERSION = 0x10, /* AHCI spec. version compliancy */
84
85 /* HOST_CTL bits */
86 HOST_RESET = (1 << 0), /* reset controller; self-clear */
87 HOST_IRQ_EN = (1 << 1), /* global IRQ enable */
88 HOST_AHCI_EN = (1 << 31), /* AHCI enabled */
89
90 /* HOST_CAP bits */
91 HOST_CAP_64 = (1 << 31), /* PCI DAC (64-bit DMA) support */
22b49985 92 HOST_CAP_CLO = (1 << 24), /* Command List Override support */
1da177e4
LT
93
94 /* registers for each SATA port */
95 PORT_LST_ADDR = 0x00, /* command list DMA addr */
96 PORT_LST_ADDR_HI = 0x04, /* command list DMA addr hi */
97 PORT_FIS_ADDR = 0x08, /* FIS rx buf addr */
98 PORT_FIS_ADDR_HI = 0x0c, /* FIS rx buf addr hi */
99 PORT_IRQ_STAT = 0x10, /* interrupt status */
100 PORT_IRQ_MASK = 0x14, /* interrupt enable/disable mask */
101 PORT_CMD = 0x18, /* port command */
102 PORT_TFDATA = 0x20, /* taskfile data */
103 PORT_SIG = 0x24, /* device TF signature */
104 PORT_CMD_ISSUE = 0x38, /* command issue */
105 PORT_SCR = 0x28, /* SATA phy register block */
106 PORT_SCR_STAT = 0x28, /* SATA phy register: SStatus */
107 PORT_SCR_CTL = 0x2c, /* SATA phy register: SControl */
108 PORT_SCR_ERR = 0x30, /* SATA phy register: SError */
109 PORT_SCR_ACT = 0x34, /* SATA phy register: SActive */
110
111 /* PORT_IRQ_{STAT,MASK} bits */
112 PORT_IRQ_COLD_PRES = (1 << 31), /* cold presence detect */
113 PORT_IRQ_TF_ERR = (1 << 30), /* task file error */
114 PORT_IRQ_HBUS_ERR = (1 << 29), /* host bus fatal error */
115 PORT_IRQ_HBUS_DATA_ERR = (1 << 28), /* host bus data error */
116 PORT_IRQ_IF_ERR = (1 << 27), /* interface fatal error */
117 PORT_IRQ_IF_NONFATAL = (1 << 26), /* interface non-fatal error */
118 PORT_IRQ_OVERFLOW = (1 << 24), /* xfer exhausted available S/G */
119 PORT_IRQ_BAD_PMP = (1 << 23), /* incorrect port multiplier */
120
121 PORT_IRQ_PHYRDY = (1 << 22), /* PhyRdy changed */
122 PORT_IRQ_DEV_ILCK = (1 << 7), /* device interlock */
123 PORT_IRQ_CONNECT = (1 << 6), /* port connect change status */
124 PORT_IRQ_SG_DONE = (1 << 5), /* descriptor processed */
125 PORT_IRQ_UNK_FIS = (1 << 4), /* unknown FIS rx'd */
126 PORT_IRQ_SDB_FIS = (1 << 3), /* Set Device Bits FIS rx'd */
127 PORT_IRQ_DMAS_FIS = (1 << 2), /* DMA Setup FIS rx'd */
128 PORT_IRQ_PIOS_FIS = (1 << 1), /* PIO Setup FIS rx'd */
129 PORT_IRQ_D2H_REG_FIS = (1 << 0), /* D2H Register FIS rx'd */
130
131 PORT_IRQ_FATAL = PORT_IRQ_TF_ERR |
132 PORT_IRQ_HBUS_ERR |
133 PORT_IRQ_HBUS_DATA_ERR |
134 PORT_IRQ_IF_ERR,
135 DEF_PORT_IRQ = PORT_IRQ_FATAL | PORT_IRQ_PHYRDY |
136 PORT_IRQ_CONNECT | PORT_IRQ_SG_DONE |
137 PORT_IRQ_UNK_FIS | PORT_IRQ_SDB_FIS |
138 PORT_IRQ_DMAS_FIS | PORT_IRQ_PIOS_FIS |
139 PORT_IRQ_D2H_REG_FIS,
140
141 /* PORT_CMD bits */
02eaa666 142 PORT_CMD_ATAPI = (1 << 24), /* Device is ATAPI */
1da177e4
LT
143 PORT_CMD_LIST_ON = (1 << 15), /* cmd list DMA engine running */
144 PORT_CMD_FIS_ON = (1 << 14), /* FIS DMA engine running */
145 PORT_CMD_FIS_RX = (1 << 4), /* Enable FIS receive DMA engine */
22b49985 146 PORT_CMD_CLO = (1 << 3), /* Command list override */
1da177e4
LT
147 PORT_CMD_POWER_ON = (1 << 2), /* Power up device */
148 PORT_CMD_SPIN_UP = (1 << 1), /* Spin up device */
149 PORT_CMD_START = (1 << 0), /* Enable port DMA engine */
150
151 PORT_CMD_ICC_ACTIVE = (0x1 << 28), /* Put i/f in active state */
152 PORT_CMD_ICC_PARTIAL = (0x2 << 28), /* Put i/f in partial state */
153 PORT_CMD_ICC_SLUMBER = (0x6 << 28), /* Put i/f in slumber state */
4b0060f4
JG
154
155 /* hpriv->flags bits */
156 AHCI_FLAG_MSI = (1 << 0),
bf2af2a2
BJ
157
158 /* ap->flags bits */
159 AHCI_FLAG_RESET_NEEDS_CLO = (1 << 24),
1da177e4
LT
160};
161
162struct ahci_cmd_hdr {
163 u32 opts;
164 u32 status;
165 u32 tbl_addr;
166 u32 tbl_addr_hi;
167 u32 reserved[4];
168};
169
170struct ahci_sg {
171 u32 addr;
172 u32 addr_hi;
173 u32 reserved;
174 u32 flags_size;
175};
176
177struct ahci_host_priv {
178 unsigned long flags;
179 u32 cap; /* cache of HOST_CAP register */
180 u32 port_map; /* cache of HOST_PORTS_IMPL reg */
181};
182
183struct ahci_port_priv {
184 struct ahci_cmd_hdr *cmd_slot;
185 dma_addr_t cmd_slot_dma;
186 void *cmd_tbl;
187 dma_addr_t cmd_tbl_dma;
188 struct ahci_sg *cmd_tbl_sg;
189 void *rx_fis;
190 dma_addr_t rx_fis_dma;
191};
192
193static u32 ahci_scr_read (struct ata_port *ap, unsigned int sc_reg);
194static void ahci_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
195static int ahci_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
9a3d9eb0 196static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
1da177e4 197static irqreturn_t ahci_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
4bd00f6a 198static int ahci_probe_reset(struct ata_port *ap, unsigned int *classes);
1da177e4
LT
199static void ahci_irq_clear(struct ata_port *ap);
200static void ahci_eng_timeout(struct ata_port *ap);
201static int ahci_port_start(struct ata_port *ap);
202static void ahci_port_stop(struct ata_port *ap);
1da177e4
LT
203static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
204static void ahci_qc_prep(struct ata_queued_cmd *qc);
205static u8 ahci_check_status(struct ata_port *ap);
1da177e4 206static inline int ahci_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc);
907f4678 207static void ahci_remove_one (struct pci_dev *pdev);
1da177e4 208
193515d5 209static struct scsi_host_template ahci_sht = {
1da177e4
LT
210 .module = THIS_MODULE,
211 .name = DRV_NAME,
212 .ioctl = ata_scsi_ioctl,
213 .queuecommand = ata_scsi_queuecmd,
1da177e4
LT
214 .can_queue = ATA_DEF_QUEUE,
215 .this_id = ATA_SHT_THIS_ID,
216 .sg_tablesize = AHCI_MAX_SG,
1da177e4
LT
217 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
218 .emulated = ATA_SHT_EMULATED,
219 .use_clustering = AHCI_USE_CLUSTERING,
220 .proc_name = DRV_NAME,
221 .dma_boundary = AHCI_DMA_BOUNDARY,
222 .slave_configure = ata_scsi_slave_config,
223 .bios_param = ata_std_bios_param,
1da177e4
LT
224};
225
057ace5e 226static const struct ata_port_operations ahci_ops = {
1da177e4
LT
227 .port_disable = ata_port_disable,
228
229 .check_status = ahci_check_status,
230 .check_altstatus = ahci_check_status,
1da177e4
LT
231 .dev_select = ata_noop_dev_select,
232
233 .tf_read = ahci_tf_read,
234
4bd00f6a 235 .probe_reset = ahci_probe_reset,
1da177e4
LT
236
237 .qc_prep = ahci_qc_prep,
238 .qc_issue = ahci_qc_issue,
239
240 .eng_timeout = ahci_eng_timeout,
241
242 .irq_handler = ahci_interrupt,
243 .irq_clear = ahci_irq_clear,
244
245 .scr_read = ahci_scr_read,
246 .scr_write = ahci_scr_write,
247
248 .port_start = ahci_port_start,
249 .port_stop = ahci_port_stop,
1da177e4
LT
250};
251
98ac62de 252static const struct ata_port_info ahci_port_info[] = {
1da177e4
LT
253 /* board_ahci */
254 {
255 .sht = &ahci_sht,
256 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
4bd00f6a 257 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
7da79312 258 .pio_mask = 0x1f, /* pio0-4 */
1da177e4
LT
259 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
260 .port_ops = &ahci_ops,
261 },
bf2af2a2
BJ
262 /* board_ahci_vt8251 */
263 {
264 .sht = &ahci_sht,
265 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
266 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
267 AHCI_FLAG_RESET_NEEDS_CLO,
268 .pio_mask = 0x1f, /* pio0-4 */
269 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
270 .port_ops = &ahci_ops,
271 },
1da177e4
LT
272};
273
3b7d697d 274static const struct pci_device_id ahci_pci_tbl[] = {
1da177e4
LT
275 { PCI_VENDOR_ID_INTEL, 0x2652, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
276 board_ahci }, /* ICH6 */
277 { PCI_VENDOR_ID_INTEL, 0x2653, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
278 board_ahci }, /* ICH6M */
279 { PCI_VENDOR_ID_INTEL, 0x27c1, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
280 board_ahci }, /* ICH7 */
281 { PCI_VENDOR_ID_INTEL, 0x27c5, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
282 board_ahci }, /* ICH7M */
283 { PCI_VENDOR_ID_INTEL, 0x27c3, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
284 board_ahci }, /* ICH7R */
285 { PCI_VENDOR_ID_AL, 0x5288, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
286 board_ahci }, /* ULi M5288 */
680d3235
JG
287 { PCI_VENDOR_ID_INTEL, 0x2681, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
288 board_ahci }, /* ESB2 */
289 { PCI_VENDOR_ID_INTEL, 0x2682, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
290 board_ahci }, /* ESB2 */
291 { PCI_VENDOR_ID_INTEL, 0x2683, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
292 board_ahci }, /* ESB2 */
3db368f7
JG
293 { PCI_VENDOR_ID_INTEL, 0x27c6, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
294 board_ahci }, /* ICH7-M DH */
f285757c
JG
295 { PCI_VENDOR_ID_INTEL, 0x2821, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
296 board_ahci }, /* ICH8 */
297 { PCI_VENDOR_ID_INTEL, 0x2822, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
298 board_ahci }, /* ICH8 */
299 { PCI_VENDOR_ID_INTEL, 0x2824, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
300 board_ahci }, /* ICH8 */
301 { PCI_VENDOR_ID_INTEL, 0x2829, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
302 board_ahci }, /* ICH8M */
303 { PCI_VENDOR_ID_INTEL, 0x282a, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
304 board_ahci }, /* ICH8M */
bd12097c
JG
305 { 0x197b, 0x2360, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
306 board_ahci }, /* JMicron JMB360 */
9220a2d0
JG
307 { 0x197b, 0x2363, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
308 board_ahci }, /* JMicron JMB363 */
8b316a39
JG
309 { PCI_VENDOR_ID_ATI, 0x4380, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
310 board_ahci }, /* ATI SB600 non-raid */
311 { PCI_VENDOR_ID_ATI, 0x4381, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
312 board_ahci }, /* ATI SB600 raid */
bf2af2a2
BJ
313 { PCI_VENDOR_ID_VIA, 0x3349, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
314 board_ahci_vt8251 }, /* VIA VT8251 */
1da177e4
LT
315 { } /* terminate list */
316};
317
318
319static struct pci_driver ahci_pci_driver = {
320 .name = DRV_NAME,
321 .id_table = ahci_pci_tbl,
322 .probe = ahci_init_one,
907f4678 323 .remove = ahci_remove_one,
1da177e4
LT
324};
325
326
327static inline unsigned long ahci_port_base_ul (unsigned long base, unsigned int port)
328{
329 return base + 0x100 + (port * 0x80);
330}
331
ea6ba10b 332static inline void __iomem *ahci_port_base (void __iomem *base, unsigned int port)
1da177e4 333{
ea6ba10b 334 return (void __iomem *) ahci_port_base_ul((unsigned long)base, port);
1da177e4
LT
335}
336
1da177e4
LT
337static int ahci_port_start(struct ata_port *ap)
338{
339 struct device *dev = ap->host_set->dev;
340 struct ahci_host_priv *hpriv = ap->host_set->private_data;
341 struct ahci_port_priv *pp;
ea6ba10b
JG
342 void __iomem *mmio = ap->host_set->mmio_base;
343 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
344 void *mem;
1da177e4 345 dma_addr_t mem_dma;
6037d6bb 346 int rc;
1da177e4 347
1da177e4 348 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
0a139e79
TH
349 if (!pp)
350 return -ENOMEM;
1da177e4
LT
351 memset(pp, 0, sizeof(*pp));
352
6037d6bb
JG
353 rc = ata_pad_alloc(ap, dev);
354 if (rc) {
cedc9a47 355 kfree(pp);
6037d6bb 356 return rc;
cedc9a47
JG
357 }
358
1da177e4
LT
359 mem = dma_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma, GFP_KERNEL);
360 if (!mem) {
6037d6bb 361 ata_pad_free(ap, dev);
0a139e79
TH
362 kfree(pp);
363 return -ENOMEM;
1da177e4
LT
364 }
365 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
366
367 /*
368 * First item in chunk of DMA memory: 32-slot command table,
369 * 32 bytes each in size
370 */
371 pp->cmd_slot = mem;
372 pp->cmd_slot_dma = mem_dma;
373
374 mem += AHCI_CMD_SLOT_SZ;
375 mem_dma += AHCI_CMD_SLOT_SZ;
376
377 /*
378 * Second item: Received-FIS area
379 */
380 pp->rx_fis = mem;
381 pp->rx_fis_dma = mem_dma;
382
383 mem += AHCI_RX_FIS_SZ;
384 mem_dma += AHCI_RX_FIS_SZ;
385
386 /*
387 * Third item: data area for storing a single command
388 * and its scatter-gather table
389 */
390 pp->cmd_tbl = mem;
391 pp->cmd_tbl_dma = mem_dma;
392
393 pp->cmd_tbl_sg = mem + AHCI_CMD_TBL_HDR;
394
395 ap->private_data = pp;
396
397 if (hpriv->cap & HOST_CAP_64)
398 writel((pp->cmd_slot_dma >> 16) >> 16, port_mmio + PORT_LST_ADDR_HI);
399 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
400 readl(port_mmio + PORT_LST_ADDR); /* flush */
401
402 if (hpriv->cap & HOST_CAP_64)
403 writel((pp->rx_fis_dma >> 16) >> 16, port_mmio + PORT_FIS_ADDR_HI);
404 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
405 readl(port_mmio + PORT_FIS_ADDR); /* flush */
406
407 writel(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
408 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
409 PORT_CMD_START, port_mmio + PORT_CMD);
410 readl(port_mmio + PORT_CMD); /* flush */
411
412 return 0;
1da177e4
LT
413}
414
415
416static void ahci_port_stop(struct ata_port *ap)
417{
418 struct device *dev = ap->host_set->dev;
419 struct ahci_port_priv *pp = ap->private_data;
ea6ba10b
JG
420 void __iomem *mmio = ap->host_set->mmio_base;
421 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
1da177e4
LT
422 u32 tmp;
423
424 tmp = readl(port_mmio + PORT_CMD);
425 tmp &= ~(PORT_CMD_START | PORT_CMD_FIS_RX);
426 writel(tmp, port_mmio + PORT_CMD);
427 readl(port_mmio + PORT_CMD); /* flush */
428
429 /* spec says 500 msecs for each PORT_CMD_{START,FIS_RX} bit, so
430 * this is slightly incorrect.
431 */
432 msleep(500);
433
434 ap->private_data = NULL;
435 dma_free_coherent(dev, AHCI_PORT_PRIV_DMA_SZ,
436 pp->cmd_slot, pp->cmd_slot_dma);
6037d6bb 437 ata_pad_free(ap, dev);
1da177e4 438 kfree(pp);
1da177e4
LT
439}
440
441static u32 ahci_scr_read (struct ata_port *ap, unsigned int sc_reg_in)
442{
443 unsigned int sc_reg;
444
445 switch (sc_reg_in) {
446 case SCR_STATUS: sc_reg = 0; break;
447 case SCR_CONTROL: sc_reg = 1; break;
448 case SCR_ERROR: sc_reg = 2; break;
449 case SCR_ACTIVE: sc_reg = 3; break;
450 default:
451 return 0xffffffffU;
452 }
453
1e4f2a96 454 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
1da177e4
LT
455}
456
457
458static void ahci_scr_write (struct ata_port *ap, unsigned int sc_reg_in,
459 u32 val)
460{
461 unsigned int sc_reg;
462
463 switch (sc_reg_in) {
464 case SCR_STATUS: sc_reg = 0; break;
465 case SCR_CONTROL: sc_reg = 1; break;
466 case SCR_ERROR: sc_reg = 2; break;
467 case SCR_ACTIVE: sc_reg = 3; break;
468 default:
469 return;
470 }
471
1e4f2a96 472 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
1da177e4
LT
473}
474
7c76d1e8
TH
475static int ahci_stop_engine(struct ata_port *ap)
476{
477 void __iomem *mmio = ap->host_set->mmio_base;
478 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
479 int work;
480 u32 tmp;
481
482 tmp = readl(port_mmio + PORT_CMD);
483 tmp &= ~PORT_CMD_START;
484 writel(tmp, port_mmio + PORT_CMD);
485
486 /* wait for engine to stop. TODO: this could be
487 * as long as 500 msec
488 */
489 work = 1000;
490 while (work-- > 0) {
491 tmp = readl(port_mmio + PORT_CMD);
492 if ((tmp & PORT_CMD_LIST_ON) == 0)
493 return 0;
494 udelay(10);
495 }
496
497 return -EIO;
498}
499
500static void ahci_start_engine(struct ata_port *ap)
501{
502 void __iomem *mmio = ap->host_set->mmio_base;
503 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
504 u32 tmp;
505
506 tmp = readl(port_mmio + PORT_CMD);
507 tmp |= PORT_CMD_START;
508 writel(tmp, port_mmio + PORT_CMD);
509 readl(port_mmio + PORT_CMD); /* flush */
510}
511
422b7595 512static unsigned int ahci_dev_classify(struct ata_port *ap)
1da177e4
LT
513{
514 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
515 struct ata_taskfile tf;
422b7595
TH
516 u32 tmp;
517
518 tmp = readl(port_mmio + PORT_SIG);
519 tf.lbah = (tmp >> 24) & 0xff;
520 tf.lbam = (tmp >> 16) & 0xff;
521 tf.lbal = (tmp >> 8) & 0xff;
522 tf.nsect = (tmp) & 0xff;
523
524 return ata_dev_classify(&tf);
525}
526
a42fc659 527static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, u32 opts)
cc9278ed 528{
cc9278ed
TH
529 pp->cmd_slot[0].opts = cpu_to_le32(opts);
530 pp->cmd_slot[0].status = 0;
531 pp->cmd_slot[0].tbl_addr = cpu_to_le32(pp->cmd_tbl_dma & 0xffffffff);
532 pp->cmd_slot[0].tbl_addr_hi = cpu_to_le32((pp->cmd_tbl_dma >> 16) >> 16);
533}
534
bf2af2a2 535static int ahci_clo(struct ata_port *ap)
4658f79b 536{
bf2af2a2 537 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
4658f79b 538 struct ahci_host_priv *hpriv = ap->host_set->private_data;
bf2af2a2
BJ
539 u32 tmp;
540
541 if (!(hpriv->cap & HOST_CAP_CLO))
542 return -EOPNOTSUPP;
543
544 tmp = readl(port_mmio + PORT_CMD);
545 tmp |= PORT_CMD_CLO;
546 writel(tmp, port_mmio + PORT_CMD);
547
548 tmp = ata_wait_register(port_mmio + PORT_CMD,
549 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
550 if (tmp & PORT_CMD_CLO)
551 return -EIO;
552
553 return 0;
554}
555
556static int ahci_softreset(struct ata_port *ap, unsigned int *class)
557{
4658f79b
TH
558 struct ahci_port_priv *pp = ap->private_data;
559 void __iomem *mmio = ap->host_set->mmio_base;
560 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
561 const u32 cmd_fis_len = 5; /* five dwords */
562 const char *reason = NULL;
563 struct ata_taskfile tf;
75fe1806 564 u32 tmp;
4658f79b
TH
565 u8 *fis;
566 int rc;
567
568 DPRINTK("ENTER\n");
569
81952c54 570 if (ata_port_offline(ap)) {
c2a65852
TH
571 DPRINTK("PHY reports no device\n");
572 *class = ATA_DEV_NONE;
573 return 0;
574 }
575
4658f79b
TH
576 /* prepare for SRST (AHCI-1.1 10.4.1) */
577 rc = ahci_stop_engine(ap);
578 if (rc) {
579 reason = "failed to stop engine";
580 goto fail_restart;
581 }
582
583 /* check BUSY/DRQ, perform Command List Override if necessary */
584 ahci_tf_read(ap, &tf);
585 if (tf.command & (ATA_BUSY | ATA_DRQ)) {
bf2af2a2 586 rc = ahci_clo(ap);
4658f79b 587
bf2af2a2
BJ
588 if (rc == -EOPNOTSUPP) {
589 reason = "port busy but CLO unavailable";
590 goto fail_restart;
591 } else if (rc) {
592 reason = "port busy but CLO failed";
4658f79b
TH
593 goto fail_restart;
594 }
595 }
596
597 /* restart engine */
598 ahci_start_engine(ap);
599
3373efd8 600 ata_tf_init(ap->device, &tf);
4658f79b
TH
601 fis = pp->cmd_tbl;
602
603 /* issue the first D2H Register FIS */
604 ahci_fill_cmd_slot(pp, cmd_fis_len | AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY);
605
606 tf.ctl |= ATA_SRST;
607 ata_tf_to_fis(&tf, fis, 0);
608 fis[1] &= ~(1 << 7); /* turn off Command FIS bit */
609
610 writel(1, port_mmio + PORT_CMD_ISSUE);
4658f79b 611
75fe1806
TH
612 tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1, 1, 500);
613 if (tmp & 0x1) {
4658f79b
TH
614 rc = -EIO;
615 reason = "1st FIS failed";
616 goto fail;
617 }
618
619 /* spec says at least 5us, but be generous and sleep for 1ms */
620 msleep(1);
621
622 /* issue the second D2H Register FIS */
623 ahci_fill_cmd_slot(pp, cmd_fis_len);
624
625 tf.ctl &= ~ATA_SRST;
626 ata_tf_to_fis(&tf, fis, 0);
627 fis[1] &= ~(1 << 7); /* turn off Command FIS bit */
628
629 writel(1, port_mmio + PORT_CMD_ISSUE);
630 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
631
632 /* spec mandates ">= 2ms" before checking status.
633 * We wait 150ms, because that was the magic delay used for
634 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
635 * between when the ATA command register is written, and then
636 * status is checked. Because waiting for "a while" before
637 * checking status is fine, post SRST, we perform this magic
638 * delay here as well.
639 */
640 msleep(150);
641
642 *class = ATA_DEV_NONE;
81952c54 643 if (ata_port_online(ap)) {
4658f79b
TH
644 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
645 rc = -EIO;
646 reason = "device not ready";
647 goto fail;
648 }
649 *class = ahci_dev_classify(ap);
650 }
651
652 DPRINTK("EXIT, class=%u\n", *class);
653 return 0;
654
655 fail_restart:
656 ahci_start_engine(ap);
657 fail:
f15a1daf 658 ata_port_printk(ap, KERN_ERR, "softreset failed (%s)\n", reason);
4658f79b
TH
659 return rc;
660}
661
2bf2cb26 662static int ahci_hardreset(struct ata_port *ap, unsigned int *class)
422b7595 663{
4bd00f6a
TH
664 int rc;
665
666 DPRINTK("ENTER\n");
1da177e4 667
e0bfd149 668 ahci_stop_engine(ap);
2bf2cb26 669 rc = sata_std_hardreset(ap, class);
e0bfd149 670 ahci_start_engine(ap);
1da177e4 671
81952c54 672 if (rc == 0 && ata_port_online(ap))
4bd00f6a
TH
673 *class = ahci_dev_classify(ap);
674 if (*class == ATA_DEV_UNKNOWN)
675 *class = ATA_DEV_NONE;
1da177e4 676
4bd00f6a
TH
677 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
678 return rc;
679}
680
681static void ahci_postreset(struct ata_port *ap, unsigned int *class)
682{
683 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
684 u32 new_tmp, tmp;
685
686 ata_std_postreset(ap, class);
02eaa666
JG
687
688 /* Make sure port's ATAPI bit is set appropriately */
689 new_tmp = tmp = readl(port_mmio + PORT_CMD);
4bd00f6a 690 if (*class == ATA_DEV_ATAPI)
02eaa666
JG
691 new_tmp |= PORT_CMD_ATAPI;
692 else
693 new_tmp &= ~PORT_CMD_ATAPI;
694 if (new_tmp != tmp) {
695 writel(new_tmp, port_mmio + PORT_CMD);
696 readl(port_mmio + PORT_CMD); /* flush */
697 }
1da177e4
LT
698}
699
4bd00f6a
TH
700static int ahci_probe_reset(struct ata_port *ap, unsigned int *classes)
701{
bf2af2a2
BJ
702 if ((ap->flags & AHCI_FLAG_RESET_NEEDS_CLO) &&
703 (ata_busy_wait(ap, ATA_BUSY, 1000) & ATA_BUSY)) {
704 /* ATA_BUSY hasn't cleared, so send a CLO */
705 ahci_clo(ap);
706 }
707
4658f79b
TH
708 return ata_drive_probe_reset(ap, ata_std_probeinit,
709 ahci_softreset, ahci_hardreset,
4bd00f6a
TH
710 ahci_postreset, classes);
711}
712
1da177e4
LT
713static u8 ahci_check_status(struct ata_port *ap)
714{
1e4f2a96 715 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
1da177e4
LT
716
717 return readl(mmio + PORT_TFDATA) & 0xFF;
718}
719
1da177e4
LT
720static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
721{
722 struct ahci_port_priv *pp = ap->private_data;
723 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
724
725 ata_tf_from_fis(d2h_fis, tf);
726}
727
828d09de 728static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc)
1da177e4
LT
729{
730 struct ahci_port_priv *pp = qc->ap->private_data;
cedc9a47
JG
731 struct scatterlist *sg;
732 struct ahci_sg *ahci_sg;
828d09de 733 unsigned int n_sg = 0;
1da177e4
LT
734
735 VPRINTK("ENTER\n");
736
737 /*
738 * Next, the S/G list.
739 */
cedc9a47
JG
740 ahci_sg = pp->cmd_tbl_sg;
741 ata_for_each_sg(sg, qc) {
742 dma_addr_t addr = sg_dma_address(sg);
743 u32 sg_len = sg_dma_len(sg);
744
745 ahci_sg->addr = cpu_to_le32(addr & 0xffffffff);
746 ahci_sg->addr_hi = cpu_to_le32((addr >> 16) >> 16);
747 ahci_sg->flags_size = cpu_to_le32(sg_len - 1);
828d09de 748
cedc9a47 749 ahci_sg++;
828d09de 750 n_sg++;
1da177e4 751 }
828d09de
JG
752
753 return n_sg;
1da177e4
LT
754}
755
756static void ahci_qc_prep(struct ata_queued_cmd *qc)
757{
a0ea7328
JG
758 struct ata_port *ap = qc->ap;
759 struct ahci_port_priv *pp = ap->private_data;
cc9278ed 760 int is_atapi = is_atapi_taskfile(&qc->tf);
1da177e4
LT
761 u32 opts;
762 const u32 cmd_fis_len = 5; /* five dwords */
828d09de 763 unsigned int n_elem;
1da177e4 764
1da177e4
LT
765 /*
766 * Fill in command table information. First, the header,
767 * a SATA Register - Host to Device command FIS.
768 */
769 ata_tf_to_fis(&qc->tf, pp->cmd_tbl, 0);
cc9278ed 770 if (is_atapi) {
a0ea7328 771 memset(pp->cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
6e7846e9
TH
772 memcpy(pp->cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb,
773 qc->dev->cdb_len);
a0ea7328 774 }
1da177e4 775
cc9278ed
TH
776 n_elem = 0;
777 if (qc->flags & ATA_QCFLAG_DMAMAP)
778 n_elem = ahci_fill_sg(qc);
1da177e4 779
cc9278ed
TH
780 /*
781 * Fill in command slot information.
782 */
783 opts = cmd_fis_len | n_elem << 16;
784 if (qc->tf.flags & ATA_TFLAG_WRITE)
785 opts |= AHCI_CMD_WRITE;
786 if (is_atapi)
4b10e559 787 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
828d09de 788
a42fc659 789 ahci_fill_cmd_slot(pp, opts);
1da177e4
LT
790}
791
c2cd76ff 792static void ahci_restart_port(struct ata_port *ap, u32 irq_stat)
1da177e4 793{
ea6ba10b
JG
794 void __iomem *mmio = ap->host_set->mmio_base;
795 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
1da177e4 796 u32 tmp;
1da177e4 797
c2cd76ff
JG
798 if ((ap->device[0].class != ATA_DEV_ATAPI) ||
799 ((irq_stat & PORT_IRQ_TF_ERR) == 0))
f15a1daf 800 ata_port_printk(ap, KERN_WARNING, "port reset, "
c2cd76ff 801 "p_is %x is %x pis %x cmd %x tf %x ss %x se %x\n",
c2cd76ff
JG
802 irq_stat,
803 readl(mmio + HOST_IRQ_STAT),
804 readl(port_mmio + PORT_IRQ_STAT),
805 readl(port_mmio + PORT_CMD),
806 readl(port_mmio + PORT_TFDATA),
807 readl(port_mmio + PORT_SCR_STAT),
808 readl(port_mmio + PORT_SCR_ERR));
9f68a248 809
1da177e4 810 /* stop DMA */
7c76d1e8 811 ahci_stop_engine(ap);
1da177e4
LT
812
813 /* clear SATA phy error, if any */
814 tmp = readl(port_mmio + PORT_SCR_ERR);
815 writel(tmp, port_mmio + PORT_SCR_ERR);
816
817 /* if DRQ/BSY is set, device needs to be reset.
818 * if so, issue COMRESET
819 */
820 tmp = readl(port_mmio + PORT_TFDATA);
821 if (tmp & (ATA_BUSY | ATA_DRQ)) {
822 writel(0x301, port_mmio + PORT_SCR_CTL);
823 readl(port_mmio + PORT_SCR_CTL); /* flush */
824 udelay(10);
825 writel(0x300, port_mmio + PORT_SCR_CTL);
826 readl(port_mmio + PORT_SCR_CTL); /* flush */
827 }
828
829 /* re-start DMA */
7c76d1e8 830 ahci_start_engine(ap);
1da177e4
LT
831}
832
833static void ahci_eng_timeout(struct ata_port *ap)
834{
b8f6153e 835 struct ata_host_set *host_set = ap->host_set;
ea6ba10b
JG
836 void __iomem *mmio = host_set->mmio_base;
837 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
1da177e4 838 struct ata_queued_cmd *qc;
b8f6153e 839 unsigned long flags;
1da177e4 840
f15a1daf 841 ata_port_printk(ap, KERN_WARNING, "handling error/timeout\n");
1da177e4 842
b8f6153e
JG
843 spin_lock_irqsave(&host_set->lock, flags);
844
f6379020 845 ahci_restart_port(ap, readl(port_mmio + PORT_IRQ_STAT));
1da177e4 846 qc = ata_qc_from_tag(ap, ap->active_tag);
f6379020 847 qc->err_mask |= AC_ERR_TIMEOUT;
1da177e4 848
b8f6153e 849 spin_unlock_irqrestore(&host_set->lock, flags);
a72ec4ce 850
f6379020 851 ata_eh_qc_complete(qc);
1da177e4
LT
852}
853
854static inline int ahci_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc)
855{
ea6ba10b
JG
856 void __iomem *mmio = ap->host_set->mmio_base;
857 void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
1da177e4
LT
858 u32 status, serr, ci;
859
860 serr = readl(port_mmio + PORT_SCR_ERR);
861 writel(serr, port_mmio + PORT_SCR_ERR);
862
863 status = readl(port_mmio + PORT_IRQ_STAT);
864 writel(status, port_mmio + PORT_IRQ_STAT);
865
866 ci = readl(port_mmio + PORT_CMD_ISSUE);
867 if (likely((ci & 0x1) == 0)) {
868 if (qc) {
beec7dbc 869 WARN_ON(qc->err_mask);
a22e2eb0 870 ata_qc_complete(qc);
1da177e4
LT
871 qc = NULL;
872 }
873 }
874
875 if (status & PORT_IRQ_FATAL) {
ad36d1a5
JG
876 unsigned int err_mask;
877 if (status & PORT_IRQ_TF_ERR)
878 err_mask = AC_ERR_DEV;
879 else if (status & PORT_IRQ_IF_ERR)
880 err_mask = AC_ERR_ATA_BUS;
881 else
882 err_mask = AC_ERR_HOST_BUS;
883
9f68a248 884 /* command processing has stopped due to error; restart */
c2cd76ff 885 ahci_restart_port(ap, status);
9f68a248 886
a22e2eb0 887 if (qc) {
284b6481 888 qc->err_mask |= err_mask;
a22e2eb0
AL
889 ata_qc_complete(qc);
890 }
1da177e4
LT
891 }
892
893 return 1;
894}
895
896static void ahci_irq_clear(struct ata_port *ap)
897{
898 /* TODO */
899}
900
901static irqreturn_t ahci_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
902{
903 struct ata_host_set *host_set = dev_instance;
904 struct ahci_host_priv *hpriv;
905 unsigned int i, handled = 0;
ea6ba10b 906 void __iomem *mmio;
1da177e4
LT
907 u32 irq_stat, irq_ack = 0;
908
909 VPRINTK("ENTER\n");
910
911 hpriv = host_set->private_data;
912 mmio = host_set->mmio_base;
913
914 /* sigh. 0xffffffff is a valid return from h/w */
915 irq_stat = readl(mmio + HOST_IRQ_STAT);
916 irq_stat &= hpriv->port_map;
917 if (!irq_stat)
918 return IRQ_NONE;
919
920 spin_lock(&host_set->lock);
921
922 for (i = 0; i < host_set->n_ports; i++) {
923 struct ata_port *ap;
1da177e4 924
67846b30
JG
925 if (!(irq_stat & (1 << i)))
926 continue;
927
1da177e4 928 ap = host_set->ports[i];
67846b30 929 if (ap) {
1da177e4
LT
930 struct ata_queued_cmd *qc;
931 qc = ata_qc_from_tag(ap, ap->active_tag);
67846b30 932 if (!ahci_host_intr(ap, qc))
6971ed1f
TH
933 if (ata_ratelimit())
934 dev_printk(KERN_WARNING, host_set->dev,
a9524a76
JG
935 "unhandled interrupt on port %u\n",
936 i);
67846b30
JG
937
938 VPRINTK("port %u\n", i);
939 } else {
940 VPRINTK("port %u (no irq)\n", i);
6971ed1f
TH
941 if (ata_ratelimit())
942 dev_printk(KERN_WARNING, host_set->dev,
a9524a76 943 "interrupt on disabled port %u\n", i);
1da177e4 944 }
67846b30
JG
945
946 irq_ack |= (1 << i);
1da177e4
LT
947 }
948
949 if (irq_ack) {
950 writel(irq_ack, mmio + HOST_IRQ_STAT);
951 handled = 1;
952 }
953
954 spin_unlock(&host_set->lock);
955
956 VPRINTK("EXIT\n");
957
958 return IRQ_RETVAL(handled);
959}
960
9a3d9eb0 961static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
1da177e4
LT
962{
963 struct ata_port *ap = qc->ap;
ea6ba10b 964 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
1da177e4 965
1da177e4
LT
966 writel(1, port_mmio + PORT_CMD_ISSUE);
967 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
968
969 return 0;
970}
971
972static void ahci_setup_port(struct ata_ioports *port, unsigned long base,
973 unsigned int port_idx)
974{
975 VPRINTK("ENTER, base==0x%lx, port_idx %u\n", base, port_idx);
976 base = ahci_port_base_ul(base, port_idx);
977 VPRINTK("base now==0x%lx\n", base);
978
979 port->cmd_addr = base;
980 port->scr_addr = base + PORT_SCR;
981
982 VPRINTK("EXIT\n");
983}
984
985static int ahci_host_init(struct ata_probe_ent *probe_ent)
986{
987 struct ahci_host_priv *hpriv = probe_ent->private_data;
988 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
989 void __iomem *mmio = probe_ent->mmio_base;
990 u32 tmp, cap_save;
1da177e4
LT
991 unsigned int i, j, using_dac;
992 int rc;
993 void __iomem *port_mmio;
994
995 cap_save = readl(mmio + HOST_CAP);
996 cap_save &= ( (1<<28) | (1<<17) );
997 cap_save |= (1 << 27);
998
999 /* global controller reset */
1000 tmp = readl(mmio + HOST_CTL);
1001 if ((tmp & HOST_RESET) == 0) {
1002 writel(tmp | HOST_RESET, mmio + HOST_CTL);
1003 readl(mmio + HOST_CTL); /* flush */
1004 }
1005
1006 /* reset must complete within 1 second, or
1007 * the hardware should be considered fried.
1008 */
1009 ssleep(1);
1010
1011 tmp = readl(mmio + HOST_CTL);
1012 if (tmp & HOST_RESET) {
a9524a76
JG
1013 dev_printk(KERN_ERR, &pdev->dev,
1014 "controller reset failed (0x%x)\n", tmp);
1da177e4
LT
1015 return -EIO;
1016 }
1017
1018 writel(HOST_AHCI_EN, mmio + HOST_CTL);
1019 (void) readl(mmio + HOST_CTL); /* flush */
1020 writel(cap_save, mmio + HOST_CAP);
1021 writel(0xf, mmio + HOST_PORTS_IMPL);
1022 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
1023
bd12097c
JG
1024 if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
1025 u16 tmp16;
1026
1027 pci_read_config_word(pdev, 0x92, &tmp16);
1028 tmp16 |= 0xf;
1029 pci_write_config_word(pdev, 0x92, tmp16);
1030 }
1da177e4
LT
1031
1032 hpriv->cap = readl(mmio + HOST_CAP);
1033 hpriv->port_map = readl(mmio + HOST_PORTS_IMPL);
1034 probe_ent->n_ports = (hpriv->cap & 0x1f) + 1;
1035
1036 VPRINTK("cap 0x%x port_map 0x%x n_ports %d\n",
1037 hpriv->cap, hpriv->port_map, probe_ent->n_ports);
1038
1039 using_dac = hpriv->cap & HOST_CAP_64;
1040 if (using_dac &&
1041 !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
1042 rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
1043 if (rc) {
1044 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1045 if (rc) {
a9524a76
JG
1046 dev_printk(KERN_ERR, &pdev->dev,
1047 "64-bit DMA enable failed\n");
1da177e4
LT
1048 return rc;
1049 }
1050 }
1da177e4
LT
1051 } else {
1052 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1053 if (rc) {
a9524a76
JG
1054 dev_printk(KERN_ERR, &pdev->dev,
1055 "32-bit DMA enable failed\n");
1da177e4
LT
1056 return rc;
1057 }
1058 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1059 if (rc) {
a9524a76
JG
1060 dev_printk(KERN_ERR, &pdev->dev,
1061 "32-bit consistent DMA enable failed\n");
1da177e4
LT
1062 return rc;
1063 }
1064 }
1065
1066 for (i = 0; i < probe_ent->n_ports; i++) {
1067#if 0 /* BIOSen initialize this incorrectly */
1068 if (!(hpriv->port_map & (1 << i)))
1069 continue;
1070#endif
1071
1072 port_mmio = ahci_port_base(mmio, i);
1073 VPRINTK("mmio %p port_mmio %p\n", mmio, port_mmio);
1074
1075 ahci_setup_port(&probe_ent->port[i],
1076 (unsigned long) mmio, i);
1077
1078 /* make sure port is not active */
1079 tmp = readl(port_mmio + PORT_CMD);
1080 VPRINTK("PORT_CMD 0x%x\n", tmp);
1081 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
1082 PORT_CMD_FIS_RX | PORT_CMD_START)) {
1083 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
1084 PORT_CMD_FIS_RX | PORT_CMD_START);
1085 writel(tmp, port_mmio + PORT_CMD);
1086 readl(port_mmio + PORT_CMD); /* flush */
1087
1088 /* spec says 500 msecs for each bit, so
1089 * this is slightly incorrect.
1090 */
1091 msleep(500);
1092 }
1093
1094 writel(PORT_CMD_SPIN_UP, port_mmio + PORT_CMD);
1095
1096 j = 0;
1097 while (j < 100) {
1098 msleep(10);
1099 tmp = readl(port_mmio + PORT_SCR_STAT);
1100 if ((tmp & 0xf) == 0x3)
1101 break;
1102 j++;
1103 }
1104
1105 tmp = readl(port_mmio + PORT_SCR_ERR);
1106 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1107 writel(tmp, port_mmio + PORT_SCR_ERR);
1108
1109 /* ack any pending irq events for this port */
1110 tmp = readl(port_mmio + PORT_IRQ_STAT);
1111 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1112 if (tmp)
1113 writel(tmp, port_mmio + PORT_IRQ_STAT);
1114
1115 writel(1 << i, mmio + HOST_IRQ_STAT);
1116
1117 /* set irq mask (enables interrupts) */
1118 writel(DEF_PORT_IRQ, port_mmio + PORT_IRQ_MASK);
1119 }
1120
1121 tmp = readl(mmio + HOST_CTL);
1122 VPRINTK("HOST_CTL 0x%x\n", tmp);
1123 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1124 tmp = readl(mmio + HOST_CTL);
1125 VPRINTK("HOST_CTL 0x%x\n", tmp);
1126
1127 pci_set_master(pdev);
1128
1129 return 0;
1130}
1131
1da177e4
LT
1132static void ahci_print_info(struct ata_probe_ent *probe_ent)
1133{
1134 struct ahci_host_priv *hpriv = probe_ent->private_data;
1135 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
ea6ba10b 1136 void __iomem *mmio = probe_ent->mmio_base;
1da177e4
LT
1137 u32 vers, cap, impl, speed;
1138 const char *speed_s;
1139 u16 cc;
1140 const char *scc_s;
1141
1142 vers = readl(mmio + HOST_VERSION);
1143 cap = hpriv->cap;
1144 impl = hpriv->port_map;
1145
1146 speed = (cap >> 20) & 0xf;
1147 if (speed == 1)
1148 speed_s = "1.5";
1149 else if (speed == 2)
1150 speed_s = "3";
1151 else
1152 speed_s = "?";
1153
1154 pci_read_config_word(pdev, 0x0a, &cc);
1155 if (cc == 0x0101)
1156 scc_s = "IDE";
1157 else if (cc == 0x0106)
1158 scc_s = "SATA";
1159 else if (cc == 0x0104)
1160 scc_s = "RAID";
1161 else
1162 scc_s = "unknown";
1163
a9524a76
JG
1164 dev_printk(KERN_INFO, &pdev->dev,
1165 "AHCI %02x%02x.%02x%02x "
1da177e4
LT
1166 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
1167 ,
1da177e4
LT
1168
1169 (vers >> 24) & 0xff,
1170 (vers >> 16) & 0xff,
1171 (vers >> 8) & 0xff,
1172 vers & 0xff,
1173
1174 ((cap >> 8) & 0x1f) + 1,
1175 (cap & 0x1f) + 1,
1176 speed_s,
1177 impl,
1178 scc_s);
1179
a9524a76
JG
1180 dev_printk(KERN_INFO, &pdev->dev,
1181 "flags: "
1da177e4
LT
1182 "%s%s%s%s%s%s"
1183 "%s%s%s%s%s%s%s\n"
1184 ,
1da177e4
LT
1185
1186 cap & (1 << 31) ? "64bit " : "",
1187 cap & (1 << 30) ? "ncq " : "",
1188 cap & (1 << 28) ? "ilck " : "",
1189 cap & (1 << 27) ? "stag " : "",
1190 cap & (1 << 26) ? "pm " : "",
1191 cap & (1 << 25) ? "led " : "",
1192
1193 cap & (1 << 24) ? "clo " : "",
1194 cap & (1 << 19) ? "nz " : "",
1195 cap & (1 << 18) ? "only " : "",
1196 cap & (1 << 17) ? "pmp " : "",
1197 cap & (1 << 15) ? "pio " : "",
1198 cap & (1 << 14) ? "slum " : "",
1199 cap & (1 << 13) ? "part " : ""
1200 );
1201}
1202
1203static int ahci_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1204{
1205 static int printed_version;
1206 struct ata_probe_ent *probe_ent = NULL;
1207 struct ahci_host_priv *hpriv;
1208 unsigned long base;
ea6ba10b 1209 void __iomem *mmio_base;
1da177e4 1210 unsigned int board_idx = (unsigned int) ent->driver_data;
907f4678 1211 int have_msi, pci_dev_busy = 0;
1da177e4
LT
1212 int rc;
1213
1214 VPRINTK("ENTER\n");
1215
1216 if (!printed_version++)
a9524a76 1217 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
1da177e4
LT
1218
1219 rc = pci_enable_device(pdev);
1220 if (rc)
1221 return rc;
1222
1223 rc = pci_request_regions(pdev, DRV_NAME);
1224 if (rc) {
1225 pci_dev_busy = 1;
1226 goto err_out;
1227 }
1228
907f4678
JG
1229 if (pci_enable_msi(pdev) == 0)
1230 have_msi = 1;
1231 else {
1232 pci_intx(pdev, 1);
1233 have_msi = 0;
1234 }
1da177e4
LT
1235
1236 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
1237 if (probe_ent == NULL) {
1238 rc = -ENOMEM;
907f4678 1239 goto err_out_msi;
1da177e4
LT
1240 }
1241
1242 memset(probe_ent, 0, sizeof(*probe_ent));
1243 probe_ent->dev = pci_dev_to_dev(pdev);
1244 INIT_LIST_HEAD(&probe_ent->node);
1245
374b1873 1246 mmio_base = pci_iomap(pdev, AHCI_PCI_BAR, 0);
1da177e4
LT
1247 if (mmio_base == NULL) {
1248 rc = -ENOMEM;
1249 goto err_out_free_ent;
1250 }
1251 base = (unsigned long) mmio_base;
1252
1253 hpriv = kmalloc(sizeof(*hpriv), GFP_KERNEL);
1254 if (!hpriv) {
1255 rc = -ENOMEM;
1256 goto err_out_iounmap;
1257 }
1258 memset(hpriv, 0, sizeof(*hpriv));
1259
1260 probe_ent->sht = ahci_port_info[board_idx].sht;
1261 probe_ent->host_flags = ahci_port_info[board_idx].host_flags;
1262 probe_ent->pio_mask = ahci_port_info[board_idx].pio_mask;
1263 probe_ent->udma_mask = ahci_port_info[board_idx].udma_mask;
1264 probe_ent->port_ops = ahci_port_info[board_idx].port_ops;
1265
1266 probe_ent->irq = pdev->irq;
1267 probe_ent->irq_flags = SA_SHIRQ;
1268 probe_ent->mmio_base = mmio_base;
1269 probe_ent->private_data = hpriv;
1270
4b0060f4
JG
1271 if (have_msi)
1272 hpriv->flags |= AHCI_FLAG_MSI;
907f4678 1273
bd12097c
JG
1274 /* JMicron-specific fixup: make sure we're in AHCI mode */
1275 if (pdev->vendor == 0x197b)
1276 pci_write_config_byte(pdev, 0x41, 0xa1);
1277
1da177e4
LT
1278 /* initialize adapter */
1279 rc = ahci_host_init(probe_ent);
1280 if (rc)
1281 goto err_out_hpriv;
1282
1283 ahci_print_info(probe_ent);
1284
1285 /* FIXME: check ata_device_add return value */
1286 ata_device_add(probe_ent);
1287 kfree(probe_ent);
1288
1289 return 0;
1290
1291err_out_hpriv:
1292 kfree(hpriv);
1293err_out_iounmap:
374b1873 1294 pci_iounmap(pdev, mmio_base);
1da177e4
LT
1295err_out_free_ent:
1296 kfree(probe_ent);
907f4678
JG
1297err_out_msi:
1298 if (have_msi)
1299 pci_disable_msi(pdev);
1300 else
1301 pci_intx(pdev, 0);
1da177e4
LT
1302 pci_release_regions(pdev);
1303err_out:
1304 if (!pci_dev_busy)
1305 pci_disable_device(pdev);
1306 return rc;
1307}
1308
907f4678
JG
1309static void ahci_remove_one (struct pci_dev *pdev)
1310{
1311 struct device *dev = pci_dev_to_dev(pdev);
1312 struct ata_host_set *host_set = dev_get_drvdata(dev);
1313 struct ahci_host_priv *hpriv = host_set->private_data;
1314 struct ata_port *ap;
1315 unsigned int i;
1316 int have_msi;
1317
1318 for (i = 0; i < host_set->n_ports; i++) {
1319 ap = host_set->ports[i];
1320
1321 scsi_remove_host(ap->host);
1322 }
1323
4b0060f4 1324 have_msi = hpriv->flags & AHCI_FLAG_MSI;
907f4678 1325 free_irq(host_set->irq, host_set);
907f4678
JG
1326
1327 for (i = 0; i < host_set->n_ports; i++) {
1328 ap = host_set->ports[i];
1329
1330 ata_scsi_release(ap->host);
1331 scsi_host_put(ap->host);
1332 }
1333
e005f01d 1334 kfree(hpriv);
374b1873 1335 pci_iounmap(pdev, host_set->mmio_base);
ead5de99
JG
1336 kfree(host_set);
1337
907f4678
JG
1338 if (have_msi)
1339 pci_disable_msi(pdev);
1340 else
1341 pci_intx(pdev, 0);
1342 pci_release_regions(pdev);
907f4678
JG
1343 pci_disable_device(pdev);
1344 dev_set_drvdata(dev, NULL);
1345}
1da177e4
LT
1346
1347static int __init ahci_init(void)
1348{
1349 return pci_module_init(&ahci_pci_driver);
1350}
1351
1da177e4
LT
1352static void __exit ahci_exit(void)
1353{
1354 pci_unregister_driver(&ahci_pci_driver);
1355}
1356
1357
1358MODULE_AUTHOR("Jeff Garzik");
1359MODULE_DESCRIPTION("AHCI SATA low-level driver");
1360MODULE_LICENSE("GPL");
1361MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
6885433c 1362MODULE_VERSION(DRV_VERSION);
1da177e4
LT
1363
1364module_init(ahci_init);
1365module_exit(ahci_exit);