]> err.no Git - linux-2.6/blob - drivers/scsi/ahci.c
[PATCH] sata_sil: convert to new EH
[linux-2.6] / drivers / scsi / ahci.c
1 /*
2  *  ahci.c - AHCI SATA support
3  *
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:
30  * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf
31  * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf
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>
43 #include <linux/dma-mapping.h>
44 #include <linux/device.h>
45 #include <scsi/scsi_host.h>
46 #include <scsi/scsi_cmnd.h>
47 #include <linux/libata.h>
48 #include <asm/io.h>
49
50 #define DRV_NAME        "ahci"
51 #define DRV_VERSION     "1.3"
52
53
54 enum {
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,
62         AHCI_CMD_TBL_CDB        = 0x40,
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),
69         AHCI_CMD_PREFETCH       = (1 << 7),
70         AHCI_CMD_RESET          = (1 << 8),
71         AHCI_CMD_CLR_BUSY       = (1 << 10),
72
73         RX_FIS_D2H_REG          = 0x40, /* offset of D2H Register FIS data */
74
75         board_ahci              = 0,
76         board_ahci_vt8251       = 1,
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 */
92         HOST_CAP_CLO            = (1 << 24), /* Command List Override support */
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 */
142         PORT_CMD_ATAPI          = (1 << 24), /* Device is ATAPI */
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 */
146         PORT_CMD_CLO            = (1 << 3), /* Command list override */
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 */
154
155         /* hpriv->flags bits */
156         AHCI_FLAG_MSI           = (1 << 0),
157
158         /* ap->flags bits */
159         AHCI_FLAG_RESET_NEEDS_CLO       = (1 << 24),
160 };
161
162 struct ahci_cmd_hdr {
163         u32                     opts;
164         u32                     status;
165         u32                     tbl_addr;
166         u32                     tbl_addr_hi;
167         u32                     reserved[4];
168 };
169
170 struct ahci_sg {
171         u32                     addr;
172         u32                     addr_hi;
173         u32                     reserved;
174         u32                     flags_size;
175 };
176
177 struct 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
183 struct 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
193 static u32 ahci_scr_read (struct ata_port *ap, unsigned int sc_reg);
194 static void ahci_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
195 static int ahci_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
196 static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
197 static irqreturn_t ahci_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
198 static int ahci_probe_reset(struct ata_port *ap, unsigned int *classes);
199 static void ahci_irq_clear(struct ata_port *ap);
200 static void ahci_eng_timeout(struct ata_port *ap);
201 static int ahci_port_start(struct ata_port *ap);
202 static void ahci_port_stop(struct ata_port *ap);
203 static void ahci_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
204 static void ahci_qc_prep(struct ata_queued_cmd *qc);
205 static u8 ahci_check_status(struct ata_port *ap);
206 static inline int ahci_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc);
207 static void ahci_remove_one (struct pci_dev *pdev);
208
209 static struct scsi_host_template ahci_sht = {
210         .module                 = THIS_MODULE,
211         .name                   = DRV_NAME,
212         .ioctl                  = ata_scsi_ioctl,
213         .queuecommand           = ata_scsi_queuecmd,
214         .can_queue              = ATA_DEF_QUEUE,
215         .this_id                = ATA_SHT_THIS_ID,
216         .sg_tablesize           = AHCI_MAX_SG,
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,
224 };
225
226 static const struct ata_port_operations ahci_ops = {
227         .port_disable           = ata_port_disable,
228
229         .check_status           = ahci_check_status,
230         .check_altstatus        = ahci_check_status,
231         .dev_select             = ata_noop_dev_select,
232
233         .tf_read                = ahci_tf_read,
234
235         .probe_reset            = ahci_probe_reset,
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,
250 };
251
252 static const struct ata_port_info ahci_port_info[] = {
253         /* board_ahci */
254         {
255                 .sht            = &ahci_sht,
256                 .host_flags     = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
257                                   ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
258                 .pio_mask       = 0x1f, /* pio0-4 */
259                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
260                 .port_ops       = &ahci_ops,
261         },
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         },
272 };
273
274 static const struct pci_device_id ahci_pci_tbl[] = {
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 */
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 */
293         { PCI_VENDOR_ID_INTEL, 0x27c6, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
294           board_ahci }, /* ICH7-M DH */
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 */
305         { 0x197b, 0x2360, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
306           board_ahci }, /* JMicron JMB360 */
307         { 0x197b, 0x2363, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
308           board_ahci }, /* JMicron JMB363 */
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 */
313         { PCI_VENDOR_ID_VIA, 0x3349, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
314           board_ahci_vt8251 }, /* VIA VT8251 */
315         { }     /* terminate list */
316 };
317
318
319 static struct pci_driver ahci_pci_driver = {
320         .name                   = DRV_NAME,
321         .id_table               = ahci_pci_tbl,
322         .probe                  = ahci_init_one,
323         .remove                 = ahci_remove_one,
324 };
325
326
327 static inline unsigned long ahci_port_base_ul (unsigned long base, unsigned int port)
328 {
329         return base + 0x100 + (port * 0x80);
330 }
331
332 static inline void __iomem *ahci_port_base (void __iomem *base, unsigned int port)
333 {
334         return (void __iomem *) ahci_port_base_ul((unsigned long)base, port);
335 }
336
337 static 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;
342         void __iomem *mmio = ap->host_set->mmio_base;
343         void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
344         void *mem;
345         dma_addr_t mem_dma;
346         int rc;
347
348         pp = kmalloc(sizeof(*pp), GFP_KERNEL);
349         if (!pp)
350                 return -ENOMEM;
351         memset(pp, 0, sizeof(*pp));
352
353         rc = ata_pad_alloc(ap, dev);
354         if (rc) {
355                 kfree(pp);
356                 return rc;
357         }
358
359         mem = dma_alloc_coherent(dev, AHCI_PORT_PRIV_DMA_SZ, &mem_dma, GFP_KERNEL);
360         if (!mem) {
361                 ata_pad_free(ap, dev);
362                 kfree(pp);
363                 return -ENOMEM;
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;
413 }
414
415
416 static 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;
420         void __iomem *mmio = ap->host_set->mmio_base;
421         void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
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);
437         ata_pad_free(ap, dev);
438         kfree(pp);
439 }
440
441 static 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
454         return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
455 }
456
457
458 static 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
472         writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
473 }
474
475 static 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
500 static 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
512 static unsigned int ahci_dev_classify(struct ata_port *ap)
513 {
514         void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
515         struct ata_taskfile tf;
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
527 static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, u32 opts)
528 {
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
535 static int ahci_clo(struct ata_port *ap)
536 {
537         void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
538         struct ahci_host_priv *hpriv = ap->host_set->private_data;
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
556 static int ahci_softreset(struct ata_port *ap, unsigned int *class)
557 {
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;
564         u32 tmp;
565         u8 *fis;
566         int rc;
567
568         DPRINTK("ENTER\n");
569
570         if (ata_port_offline(ap)) {
571                 DPRINTK("PHY reports no device\n");
572                 *class = ATA_DEV_NONE;
573                 return 0;
574         }
575
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)) {
586                 rc = ahci_clo(ap);
587
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";
593                         goto fail_restart;
594                 }
595         }
596
597         /* restart engine */
598         ahci_start_engine(ap);
599
600         ata_tf_init(ap->device, &tf);
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);
611
612         tmp = ata_wait_register(port_mmio + PORT_CMD_ISSUE, 0x1, 0x1, 1, 500);
613         if (tmp & 0x1) {
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;
643         if (ata_port_online(ap)) {
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:
658         ata_port_printk(ap, KERN_ERR, "softreset failed (%s)\n", reason);
659         return rc;
660 }
661
662 static int ahci_hardreset(struct ata_port *ap, unsigned int *class)
663 {
664         int rc;
665
666         DPRINTK("ENTER\n");
667
668         ahci_stop_engine(ap);
669         rc = sata_std_hardreset(ap, class);
670         ahci_start_engine(ap);
671
672         if (rc == 0 && ata_port_online(ap))
673                 *class = ahci_dev_classify(ap);
674         if (*class == ATA_DEV_UNKNOWN)
675                 *class = ATA_DEV_NONE;
676
677         DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
678         return rc;
679 }
680
681 static 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);
687
688         /* Make sure port's ATAPI bit is set appropriately */
689         new_tmp = tmp = readl(port_mmio + PORT_CMD);
690         if (*class == ATA_DEV_ATAPI)
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         }
698 }
699
700 static int ahci_probe_reset(struct ata_port *ap, unsigned int *classes)
701 {
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
708         return ata_drive_probe_reset(ap, ata_std_probeinit,
709                                      ahci_softreset, ahci_hardreset,
710                                      ahci_postreset, classes);
711 }
712
713 static u8 ahci_check_status(struct ata_port *ap)
714 {
715         void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
716
717         return readl(mmio + PORT_TFDATA) & 0xFF;
718 }
719
720 static 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
728 static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc)
729 {
730         struct ahci_port_priv *pp = qc->ap->private_data;
731         struct scatterlist *sg;
732         struct ahci_sg *ahci_sg;
733         unsigned int n_sg = 0;
734
735         VPRINTK("ENTER\n");
736
737         /*
738          * Next, the S/G list.
739          */
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);
748
749                 ahci_sg++;
750                 n_sg++;
751         }
752
753         return n_sg;
754 }
755
756 static void ahci_qc_prep(struct ata_queued_cmd *qc)
757 {
758         struct ata_port *ap = qc->ap;
759         struct ahci_port_priv *pp = ap->private_data;
760         int is_atapi = is_atapi_taskfile(&qc->tf);
761         u32 opts;
762         const u32 cmd_fis_len = 5; /* five dwords */
763         unsigned int n_elem;
764
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);
770         if (is_atapi) {
771                 memset(pp->cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
772                 memcpy(pp->cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb,
773                        qc->dev->cdb_len);
774         }
775
776         n_elem = 0;
777         if (qc->flags & ATA_QCFLAG_DMAMAP)
778                 n_elem = ahci_fill_sg(qc);
779
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)
787                 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
788
789         ahci_fill_cmd_slot(pp, opts);
790 }
791
792 static void ahci_restart_port(struct ata_port *ap, u32 irq_stat)
793 {
794         void __iomem *mmio = ap->host_set->mmio_base;
795         void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
796         u32 tmp;
797
798         if ((ap->device[0].class != ATA_DEV_ATAPI) ||
799             ((irq_stat & PORT_IRQ_TF_ERR) == 0))
800                 ata_port_printk(ap, KERN_WARNING, "port reset, "
801                        "p_is %x is %x pis %x cmd %x tf %x ss %x se %x\n",
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));
809
810         /* stop DMA */
811         ahci_stop_engine(ap);
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 */
830         ahci_start_engine(ap);
831 }
832
833 static void ahci_eng_timeout(struct ata_port *ap)
834 {
835         struct ata_host_set *host_set = ap->host_set;
836         void __iomem *mmio = host_set->mmio_base;
837         void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
838         struct ata_queued_cmd *qc;
839         unsigned long flags;
840
841         ata_port_printk(ap, KERN_WARNING, "handling error/timeout\n");
842
843         spin_lock_irqsave(&host_set->lock, flags);
844
845         ahci_restart_port(ap, readl(port_mmio + PORT_IRQ_STAT));
846         qc = ata_qc_from_tag(ap, ap->active_tag);
847         qc->err_mask |= AC_ERR_TIMEOUT;
848
849         spin_unlock_irqrestore(&host_set->lock, flags);
850
851         ata_eh_qc_complete(qc);
852 }
853
854 static inline int ahci_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc)
855 {
856         void __iomem *mmio = ap->host_set->mmio_base;
857         void __iomem *port_mmio = ahci_port_base(mmio, ap->port_no);
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) {
869                         WARN_ON(qc->err_mask);
870                         ata_qc_complete(qc);
871                         qc = NULL;
872                 }
873         }
874
875         if (status & PORT_IRQ_FATAL) {
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
884                 /* command processing has stopped due to error; restart */
885                 ahci_restart_port(ap, status);
886
887                 if (qc) {
888                         qc->err_mask |= err_mask;
889                         ata_qc_complete(qc);
890                 }
891         }
892
893         return 1;
894 }
895
896 static void ahci_irq_clear(struct ata_port *ap)
897 {
898         /* TODO */
899 }
900
901 static 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;
906         void __iomem *mmio;
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;
924
925                 if (!(irq_stat & (1 << i)))
926                         continue;
927
928                 ap = host_set->ports[i];
929                 if (ap) {
930                         struct ata_queued_cmd *qc;
931                         qc = ata_qc_from_tag(ap, ap->active_tag);
932                         if (!ahci_host_intr(ap, qc))
933                                 if (ata_ratelimit())
934                                         dev_printk(KERN_WARNING, host_set->dev,
935                                           "unhandled interrupt on port %u\n",
936                                           i);
937
938                         VPRINTK("port %u\n", i);
939                 } else {
940                         VPRINTK("port %u (no irq)\n", i);
941                         if (ata_ratelimit())
942                                 dev_printk(KERN_WARNING, host_set->dev,
943                                         "interrupt on disabled port %u\n", i);
944                 }
945
946                 irq_ack |= (1 << i);
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
961 static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
962 {
963         struct ata_port *ap = qc->ap;
964         void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
965
966         writel(1, port_mmio + PORT_CMD_ISSUE);
967         readl(port_mmio + PORT_CMD_ISSUE);      /* flush */
968
969         return 0;
970 }
971
972 static 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
985 static 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;
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) {
1013                 dev_printk(KERN_ERR, &pdev->dev,
1014                            "controller reset failed (0x%x)\n", tmp);
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
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         }
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) {
1046                                 dev_printk(KERN_ERR, &pdev->dev,
1047                                            "64-bit DMA enable failed\n");
1048                                 return rc;
1049                         }
1050                 }
1051         } else {
1052                 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1053                 if (rc) {
1054                         dev_printk(KERN_ERR, &pdev->dev,
1055                                    "32-bit DMA enable failed\n");
1056                         return rc;
1057                 }
1058                 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1059                 if (rc) {
1060                         dev_printk(KERN_ERR, &pdev->dev,
1061                                    "32-bit consistent DMA enable failed\n");
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
1132 static 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);
1136         void __iomem *mmio = probe_ent->mmio_base;
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
1164         dev_printk(KERN_INFO, &pdev->dev,
1165                 "AHCI %02x%02x.%02x%02x "
1166                 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
1167                 ,
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
1180         dev_printk(KERN_INFO, &pdev->dev,
1181                 "flags: "
1182                 "%s%s%s%s%s%s"
1183                 "%s%s%s%s%s%s%s\n"
1184                 ,
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
1203 static 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;
1209         void __iomem *mmio_base;
1210         unsigned int board_idx = (unsigned int) ent->driver_data;
1211         int have_msi, pci_dev_busy = 0;
1212         int rc;
1213
1214         VPRINTK("ENTER\n");
1215
1216         if (!printed_version++)
1217                 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
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
1229         if (pci_enable_msi(pdev) == 0)
1230                 have_msi = 1;
1231         else {
1232                 pci_intx(pdev, 1);
1233                 have_msi = 0;
1234         }
1235
1236         probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
1237         if (probe_ent == NULL) {
1238                 rc = -ENOMEM;
1239                 goto err_out_msi;
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
1246         mmio_base = pci_iomap(pdev, AHCI_PCI_BAR, 0);
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
1271         if (have_msi)
1272                 hpriv->flags |= AHCI_FLAG_MSI;
1273
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
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
1291 err_out_hpriv:
1292         kfree(hpriv);
1293 err_out_iounmap:
1294         pci_iounmap(pdev, mmio_base);
1295 err_out_free_ent:
1296         kfree(probe_ent);
1297 err_out_msi:
1298         if (have_msi)
1299                 pci_disable_msi(pdev);
1300         else
1301                 pci_intx(pdev, 0);
1302         pci_release_regions(pdev);
1303 err_out:
1304         if (!pci_dev_busy)
1305                 pci_disable_device(pdev);
1306         return rc;
1307 }
1308
1309 static 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
1324         have_msi = hpriv->flags & AHCI_FLAG_MSI;
1325         free_irq(host_set->irq, host_set);
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
1334         kfree(hpriv);
1335         pci_iounmap(pdev, host_set->mmio_base);
1336         kfree(host_set);
1337
1338         if (have_msi)
1339                 pci_disable_msi(pdev);
1340         else
1341                 pci_intx(pdev, 0);
1342         pci_release_regions(pdev);
1343         pci_disable_device(pdev);
1344         dev_set_drvdata(dev, NULL);
1345 }
1346
1347 static int __init ahci_init(void)
1348 {
1349         return pci_module_init(&ahci_pci_driver);
1350 }
1351
1352 static void __exit ahci_exit(void)
1353 {
1354         pci_unregister_driver(&ahci_pci_driver);
1355 }
1356
1357
1358 MODULE_AUTHOR("Jeff Garzik");
1359 MODULE_DESCRIPTION("AHCI SATA low-level driver");
1360 MODULE_LICENSE("GPL");
1361 MODULE_DEVICE_TABLE(pci, ahci_pci_tbl);
1362 MODULE_VERSION(DRV_VERSION);
1363
1364 module_init(ahci_init);
1365 module_exit(ahci_exit);