]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/ata/libata-sff.c
libata: move generic hardreset code from sata_sff_hardreset() to sata_link_hardreset()
[karo-tx-linux.git] / drivers / ata / libata-sff.c
1 /*
2  *  libata-sff.c - helper library for PCI IDE BMDMA
3  *
4  *  Maintained by:  Jeff Garzik <jgarzik@pobox.com>
5  *                  Please ALWAYS copy linux-ide@vger.kernel.org
6  *                  on emails.
7  *
8  *  Copyright 2003-2006 Red Hat, Inc.  All rights reserved.
9  *  Copyright 2003-2006 Jeff Garzik
10  *
11  *
12  *  This program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 2, or (at your option)
15  *  any later version.
16  *
17  *  This program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *  GNU General Public License for more details.
21  *
22  *  You should have received a copy of the GNU General Public License
23  *  along with this program; see the file COPYING.  If not, write to
24  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25  *
26  *
27  *  libata documentation is available via 'make {ps|pdf}docs',
28  *  as Documentation/DocBook/libata.*
29  *
30  *  Hardware documentation available from http://www.t13.org/ and
31  *  http://www.sata-io.org/
32  *
33  */
34
35 #include <linux/kernel.h>
36 #include <linux/pci.h>
37 #include <linux/libata.h>
38 #include <linux/highmem.h>
39
40 #include "libata.h"
41
42 const struct ata_port_operations ata_sff_port_ops = {
43         .inherits               = &ata_base_port_ops,
44
45         .qc_prep                = ata_sff_qc_prep,
46         .qc_issue               = ata_sff_qc_issue,
47
48         .freeze                 = ata_sff_freeze,
49         .thaw                   = ata_sff_thaw,
50         .prereset               = ata_sff_prereset,
51         .softreset              = ata_sff_softreset,
52         .postreset              = ata_sff_postreset,
53         .error_handler          = ata_sff_error_handler,
54         .post_internal_cmd      = ata_sff_post_internal_cmd,
55
56         .sff_dev_select         = ata_sff_dev_select,
57         .sff_check_status       = ata_sff_check_status,
58         .sff_tf_load            = ata_sff_tf_load,
59         .sff_tf_read            = ata_sff_tf_read,
60         .sff_exec_command       = ata_sff_exec_command,
61         .sff_data_xfer          = ata_sff_data_xfer,
62         .sff_irq_on             = ata_sff_irq_on,
63         .sff_irq_clear          = ata_sff_irq_clear,
64
65         .port_start             = ata_sff_port_start,
66 };
67
68 const struct ata_port_operations ata_bmdma_port_ops = {
69         .inherits               = &ata_sff_port_ops,
70
71         .mode_filter            = ata_bmdma_mode_filter,
72
73         .bmdma_setup            = ata_bmdma_setup,
74         .bmdma_start            = ata_bmdma_start,
75         .bmdma_stop             = ata_bmdma_stop,
76         .bmdma_status           = ata_bmdma_status,
77 };
78
79 /**
80  *      ata_fill_sg - Fill PCI IDE PRD table
81  *      @qc: Metadata associated with taskfile to be transferred
82  *
83  *      Fill PCI IDE PRD (scatter-gather) table with segments
84  *      associated with the current disk command.
85  *
86  *      LOCKING:
87  *      spin_lock_irqsave(host lock)
88  *
89  */
90 static void ata_fill_sg(struct ata_queued_cmd *qc)
91 {
92         struct ata_port *ap = qc->ap;
93         struct scatterlist *sg;
94         unsigned int si, pi;
95
96         pi = 0;
97         for_each_sg(qc->sg, sg, qc->n_elem, si) {
98                 u32 addr, offset;
99                 u32 sg_len, len;
100
101                 /* determine if physical DMA addr spans 64K boundary.
102                  * Note h/w doesn't support 64-bit, so we unconditionally
103                  * truncate dma_addr_t to u32.
104                  */
105                 addr = (u32) sg_dma_address(sg);
106                 sg_len = sg_dma_len(sg);
107
108                 while (sg_len) {
109                         offset = addr & 0xffff;
110                         len = sg_len;
111                         if ((offset + sg_len) > 0x10000)
112                                 len = 0x10000 - offset;
113
114                         ap->prd[pi].addr = cpu_to_le32(addr);
115                         ap->prd[pi].flags_len = cpu_to_le32(len & 0xffff);
116                         VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", pi, addr, len);
117
118                         pi++;
119                         sg_len -= len;
120                         addr += len;
121                 }
122         }
123
124         ap->prd[pi - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
125 }
126
127 /**
128  *      ata_fill_sg_dumb - Fill PCI IDE PRD table
129  *      @qc: Metadata associated with taskfile to be transferred
130  *
131  *      Fill PCI IDE PRD (scatter-gather) table with segments
132  *      associated with the current disk command. Perform the fill
133  *      so that we avoid writing any length 64K records for
134  *      controllers that don't follow the spec.
135  *
136  *      LOCKING:
137  *      spin_lock_irqsave(host lock)
138  *
139  */
140 static void ata_fill_sg_dumb(struct ata_queued_cmd *qc)
141 {
142         struct ata_port *ap = qc->ap;
143         struct scatterlist *sg;
144         unsigned int si, pi;
145
146         pi = 0;
147         for_each_sg(qc->sg, sg, qc->n_elem, si) {
148                 u32 addr, offset;
149                 u32 sg_len, len, blen;
150
151                 /* determine if physical DMA addr spans 64K boundary.
152                  * Note h/w doesn't support 64-bit, so we unconditionally
153                  * truncate dma_addr_t to u32.
154                  */
155                 addr = (u32) sg_dma_address(sg);
156                 sg_len = sg_dma_len(sg);
157
158                 while (sg_len) {
159                         offset = addr & 0xffff;
160                         len = sg_len;
161                         if ((offset + sg_len) > 0x10000)
162                                 len = 0x10000 - offset;
163
164                         blen = len & 0xffff;
165                         ap->prd[pi].addr = cpu_to_le32(addr);
166                         if (blen == 0) {
167                            /* Some PATA chipsets like the CS5530 can't
168                               cope with 0x0000 meaning 64K as the spec says */
169                                 ap->prd[pi].flags_len = cpu_to_le32(0x8000);
170                                 blen = 0x8000;
171                                 ap->prd[++pi].addr = cpu_to_le32(addr + 0x8000);
172                         }
173                         ap->prd[pi].flags_len = cpu_to_le32(blen);
174                         VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", pi, addr, len);
175
176                         pi++;
177                         sg_len -= len;
178                         addr += len;
179                 }
180         }
181
182         ap->prd[pi - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
183 }
184
185 /**
186  *      ata_sff_qc_prep - Prepare taskfile for submission
187  *      @qc: Metadata associated with taskfile to be prepared
188  *
189  *      Prepare ATA taskfile for submission.
190  *
191  *      LOCKING:
192  *      spin_lock_irqsave(host lock)
193  */
194 void ata_sff_qc_prep(struct ata_queued_cmd *qc)
195 {
196         if (!(qc->flags & ATA_QCFLAG_DMAMAP))
197                 return;
198
199         ata_fill_sg(qc);
200 }
201
202 /**
203  *      ata_sff_dumb_qc_prep - Prepare taskfile for submission
204  *      @qc: Metadata associated with taskfile to be prepared
205  *
206  *      Prepare ATA taskfile for submission.
207  *
208  *      LOCKING:
209  *      spin_lock_irqsave(host lock)
210  */
211 void ata_sff_dumb_qc_prep(struct ata_queued_cmd *qc)
212 {
213         if (!(qc->flags & ATA_QCFLAG_DMAMAP))
214                 return;
215
216         ata_fill_sg_dumb(qc);
217 }
218
219 /**
220  *      ata_sff_check_status - Read device status reg & clear interrupt
221  *      @ap: port where the device is
222  *
223  *      Reads ATA taskfile status register for currently-selected device
224  *      and return its value. This also clears pending interrupts
225  *      from this device
226  *
227  *      LOCKING:
228  *      Inherited from caller.
229  */
230 u8 ata_sff_check_status(struct ata_port *ap)
231 {
232         return ioread8(ap->ioaddr.status_addr);
233 }
234
235 /**
236  *      ata_sff_altstatus - Read device alternate status reg
237  *      @ap: port where the device is
238  *
239  *      Reads ATA taskfile alternate status register for
240  *      currently-selected device and return its value.
241  *
242  *      Note: may NOT be used as the check_altstatus() entry in
243  *      ata_port_operations.
244  *
245  *      LOCKING:
246  *      Inherited from caller.
247  */
248 u8 ata_sff_altstatus(struct ata_port *ap)
249 {
250         if (ap->ops->sff_check_altstatus)
251                 return ap->ops->sff_check_altstatus(ap);
252
253         return ioread8(ap->ioaddr.altstatus_addr);
254 }
255
256 /**
257  *      ata_sff_busy_sleep - sleep until BSY clears, or timeout
258  *      @ap: port containing status register to be polled
259  *      @tmout_pat: impatience timeout
260  *      @tmout: overall timeout
261  *
262  *      Sleep until ATA Status register bit BSY clears,
263  *      or a timeout occurs.
264  *
265  *      LOCKING:
266  *      Kernel thread context (may sleep).
267  *
268  *      RETURNS:
269  *      0 on success, -errno otherwise.
270  */
271 int ata_sff_busy_sleep(struct ata_port *ap,
272                        unsigned long tmout_pat, unsigned long tmout)
273 {
274         unsigned long timer_start, timeout;
275         u8 status;
276
277         status = ata_sff_busy_wait(ap, ATA_BUSY, 300);
278         timer_start = jiffies;
279         timeout = timer_start + tmout_pat;
280         while (status != 0xff && (status & ATA_BUSY) &&
281                time_before(jiffies, timeout)) {
282                 msleep(50);
283                 status = ata_sff_busy_wait(ap, ATA_BUSY, 3);
284         }
285
286         if (status != 0xff && (status & ATA_BUSY))
287                 ata_port_printk(ap, KERN_WARNING,
288                                 "port is slow to respond, please be patient "
289                                 "(Status 0x%x)\n", status);
290
291         timeout = timer_start + tmout;
292         while (status != 0xff && (status & ATA_BUSY) &&
293                time_before(jiffies, timeout)) {
294                 msleep(50);
295                 status = ap->ops->sff_check_status(ap);
296         }
297
298         if (status == 0xff)
299                 return -ENODEV;
300
301         if (status & ATA_BUSY) {
302                 ata_port_printk(ap, KERN_ERR, "port failed to respond "
303                                 "(%lu secs, Status 0x%x)\n",
304                                 tmout / HZ, status);
305                 return -EBUSY;
306         }
307
308         return 0;
309 }
310
311 static int ata_sff_check_ready(struct ata_link *link)
312 {
313         u8 status = link->ap->ops->sff_check_status(link->ap);
314
315         if (!(status & ATA_BUSY))
316                 return 1;
317         if (status == 0xff)
318                 return -ENODEV;
319         return 0;
320 }
321
322 /**
323  *      ata_sff_wait_ready - sleep until BSY clears, or timeout
324  *      @link: SFF link to wait ready status for
325  *      @deadline: deadline jiffies for the operation
326  *
327  *      Sleep until ATA Status register bit BSY clears, or timeout
328  *      occurs.
329  *
330  *      LOCKING:
331  *      Kernel thread context (may sleep).
332  *
333  *      RETURNS:
334  *      0 on success, -errno otherwise.
335  */
336 int ata_sff_wait_ready(struct ata_link *link, unsigned long deadline)
337 {
338         return ata_wait_ready(link, deadline, ata_sff_check_ready);
339 }
340
341 /**
342  *      ata_sff_dev_select - Select device 0/1 on ATA bus
343  *      @ap: ATA channel to manipulate
344  *      @device: ATA device (numbered from zero) to select
345  *
346  *      Use the method defined in the ATA specification to
347  *      make either device 0, or device 1, active on the
348  *      ATA channel.  Works with both PIO and MMIO.
349  *
350  *      May be used as the dev_select() entry in ata_port_operations.
351  *
352  *      LOCKING:
353  *      caller.
354  */
355 void ata_sff_dev_select(struct ata_port *ap, unsigned int device)
356 {
357         u8 tmp;
358
359         if (device == 0)
360                 tmp = ATA_DEVICE_OBS;
361         else
362                 tmp = ATA_DEVICE_OBS | ATA_DEV1;
363
364         iowrite8(tmp, ap->ioaddr.device_addr);
365         ata_sff_pause(ap);      /* needed; also flushes, for mmio */
366 }
367
368 /**
369  *      ata_dev_select - Select device 0/1 on ATA bus
370  *      @ap: ATA channel to manipulate
371  *      @device: ATA device (numbered from zero) to select
372  *      @wait: non-zero to wait for Status register BSY bit to clear
373  *      @can_sleep: non-zero if context allows sleeping
374  *
375  *      Use the method defined in the ATA specification to
376  *      make either device 0, or device 1, active on the
377  *      ATA channel.
378  *
379  *      This is a high-level version of ata_sff_dev_select(), which
380  *      additionally provides the services of inserting the proper
381  *      pauses and status polling, where needed.
382  *
383  *      LOCKING:
384  *      caller.
385  */
386 void ata_dev_select(struct ata_port *ap, unsigned int device,
387                            unsigned int wait, unsigned int can_sleep)
388 {
389         if (ata_msg_probe(ap))
390                 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
391                                 "device %u, wait %u\n", device, wait);
392
393         if (wait)
394                 ata_wait_idle(ap);
395
396         ap->ops->sff_dev_select(ap, device);
397
398         if (wait) {
399                 if (can_sleep && ap->link.device[device].class == ATA_DEV_ATAPI)
400                         msleep(150);
401                 ata_wait_idle(ap);
402         }
403 }
404
405 /**
406  *      ata_sff_irq_on - Enable interrupts on a port.
407  *      @ap: Port on which interrupts are enabled.
408  *
409  *      Enable interrupts on a legacy IDE device using MMIO or PIO,
410  *      wait for idle, clear any pending interrupts.
411  *
412  *      LOCKING:
413  *      Inherited from caller.
414  */
415 u8 ata_sff_irq_on(struct ata_port *ap)
416 {
417         struct ata_ioports *ioaddr = &ap->ioaddr;
418         u8 tmp;
419
420         ap->ctl &= ~ATA_NIEN;
421         ap->last_ctl = ap->ctl;
422
423         if (ioaddr->ctl_addr)
424                 iowrite8(ap->ctl, ioaddr->ctl_addr);
425         tmp = ata_wait_idle(ap);
426
427         ap->ops->sff_irq_clear(ap);
428
429         return tmp;
430 }
431
432 /**
433  *      ata_sff_irq_clear - Clear PCI IDE BMDMA interrupt.
434  *      @ap: Port associated with this ATA transaction.
435  *
436  *      Clear interrupt and error flags in DMA status register.
437  *
438  *      May be used as the irq_clear() entry in ata_port_operations.
439  *
440  *      LOCKING:
441  *      spin_lock_irqsave(host lock)
442  */
443 void ata_sff_irq_clear(struct ata_port *ap)
444 {
445         void __iomem *mmio = ap->ioaddr.bmdma_addr;
446
447         if (!mmio)
448                 return;
449
450         iowrite8(ioread8(mmio + ATA_DMA_STATUS), mmio + ATA_DMA_STATUS);
451 }
452
453 /**
454  *      ata_sff_tf_load - send taskfile registers to host controller
455  *      @ap: Port to which output is sent
456  *      @tf: ATA taskfile register set
457  *
458  *      Outputs ATA taskfile to standard ATA host controller.
459  *
460  *      LOCKING:
461  *      Inherited from caller.
462  */
463 void ata_sff_tf_load(struct ata_port *ap, const struct ata_taskfile *tf)
464 {
465         struct ata_ioports *ioaddr = &ap->ioaddr;
466         unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
467
468         if (tf->ctl != ap->last_ctl) {
469                 if (ioaddr->ctl_addr)
470                         iowrite8(tf->ctl, ioaddr->ctl_addr);
471                 ap->last_ctl = tf->ctl;
472                 ata_wait_idle(ap);
473         }
474
475         if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
476                 WARN_ON(!ioaddr->ctl_addr);
477                 iowrite8(tf->hob_feature, ioaddr->feature_addr);
478                 iowrite8(tf->hob_nsect, ioaddr->nsect_addr);
479                 iowrite8(tf->hob_lbal, ioaddr->lbal_addr);
480                 iowrite8(tf->hob_lbam, ioaddr->lbam_addr);
481                 iowrite8(tf->hob_lbah, ioaddr->lbah_addr);
482                 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
483                         tf->hob_feature,
484                         tf->hob_nsect,
485                         tf->hob_lbal,
486                         tf->hob_lbam,
487                         tf->hob_lbah);
488         }
489
490         if (is_addr) {
491                 iowrite8(tf->feature, ioaddr->feature_addr);
492                 iowrite8(tf->nsect, ioaddr->nsect_addr);
493                 iowrite8(tf->lbal, ioaddr->lbal_addr);
494                 iowrite8(tf->lbam, ioaddr->lbam_addr);
495                 iowrite8(tf->lbah, ioaddr->lbah_addr);
496                 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
497                         tf->feature,
498                         tf->nsect,
499                         tf->lbal,
500                         tf->lbam,
501                         tf->lbah);
502         }
503
504         if (tf->flags & ATA_TFLAG_DEVICE) {
505                 iowrite8(tf->device, ioaddr->device_addr);
506                 VPRINTK("device 0x%X\n", tf->device);
507         }
508
509         ata_wait_idle(ap);
510 }
511
512 /**
513  *      ata_sff_tf_read - input device's ATA taskfile shadow registers
514  *      @ap: Port from which input is read
515  *      @tf: ATA taskfile register set for storing input
516  *
517  *      Reads ATA taskfile registers for currently-selected device
518  *      into @tf. Assumes the device has a fully SFF compliant task file
519  *      layout and behaviour. If you device does not (eg has a different
520  *      status method) then you will need to provide a replacement tf_read
521  *
522  *      LOCKING:
523  *      Inherited from caller.
524  */
525 void ata_sff_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
526 {
527         struct ata_ioports *ioaddr = &ap->ioaddr;
528
529         tf->command = ata_sff_check_status(ap);
530         tf->feature = ioread8(ioaddr->error_addr);
531         tf->nsect = ioread8(ioaddr->nsect_addr);
532         tf->lbal = ioread8(ioaddr->lbal_addr);
533         tf->lbam = ioread8(ioaddr->lbam_addr);
534         tf->lbah = ioread8(ioaddr->lbah_addr);
535         tf->device = ioread8(ioaddr->device_addr);
536
537         if (tf->flags & ATA_TFLAG_LBA48) {
538                 if (likely(ioaddr->ctl_addr)) {
539                         iowrite8(tf->ctl | ATA_HOB, ioaddr->ctl_addr);
540                         tf->hob_feature = ioread8(ioaddr->error_addr);
541                         tf->hob_nsect = ioread8(ioaddr->nsect_addr);
542                         tf->hob_lbal = ioread8(ioaddr->lbal_addr);
543                         tf->hob_lbam = ioread8(ioaddr->lbam_addr);
544                         tf->hob_lbah = ioread8(ioaddr->lbah_addr);
545                         iowrite8(tf->ctl, ioaddr->ctl_addr);
546                         ap->last_ctl = tf->ctl;
547                 } else
548                         WARN_ON(1);
549         }
550 }
551
552 /**
553  *      ata_sff_exec_command - issue ATA command to host controller
554  *      @ap: port to which command is being issued
555  *      @tf: ATA taskfile register set
556  *
557  *      Issues ATA command, with proper synchronization with interrupt
558  *      handler / other threads.
559  *
560  *      LOCKING:
561  *      spin_lock_irqsave(host lock)
562  */
563 void ata_sff_exec_command(struct ata_port *ap, const struct ata_taskfile *tf)
564 {
565         DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
566
567         iowrite8(tf->command, ap->ioaddr.command_addr);
568         ata_sff_pause(ap);
569 }
570
571 /**
572  *      ata_tf_to_host - issue ATA taskfile to host controller
573  *      @ap: port to which command is being issued
574  *      @tf: ATA taskfile register set
575  *
576  *      Issues ATA taskfile register set to ATA host controller,
577  *      with proper synchronization with interrupt handler and
578  *      other threads.
579  *
580  *      LOCKING:
581  *      spin_lock_irqsave(host lock)
582  */
583 static inline void ata_tf_to_host(struct ata_port *ap,
584                                   const struct ata_taskfile *tf)
585 {
586         ap->ops->sff_tf_load(ap, tf);
587         ap->ops->sff_exec_command(ap, tf);
588 }
589
590 /**
591  *      ata_sff_data_xfer - Transfer data by PIO
592  *      @dev: device to target
593  *      @buf: data buffer
594  *      @buflen: buffer length
595  *      @rw: read/write
596  *
597  *      Transfer data from/to the device data register by PIO.
598  *
599  *      LOCKING:
600  *      Inherited from caller.
601  *
602  *      RETURNS:
603  *      Bytes consumed.
604  */
605 unsigned int ata_sff_data_xfer(struct ata_device *dev, unsigned char *buf,
606                                unsigned int buflen, int rw)
607 {
608         struct ata_port *ap = dev->link->ap;
609         void __iomem *data_addr = ap->ioaddr.data_addr;
610         unsigned int words = buflen >> 1;
611
612         /* Transfer multiple of 2 bytes */
613         if (rw == READ)
614                 ioread16_rep(data_addr, buf, words);
615         else
616                 iowrite16_rep(data_addr, buf, words);
617
618         /* Transfer trailing 1 byte, if any. */
619         if (unlikely(buflen & 0x01)) {
620                 __le16 align_buf[1] = { 0 };
621                 unsigned char *trailing_buf = buf + buflen - 1;
622
623                 if (rw == READ) {
624                         align_buf[0] = cpu_to_le16(ioread16(data_addr));
625                         memcpy(trailing_buf, align_buf, 1);
626                 } else {
627                         memcpy(align_buf, trailing_buf, 1);
628                         iowrite16(le16_to_cpu(align_buf[0]), data_addr);
629                 }
630                 words++;
631         }
632
633         return words << 1;
634 }
635
636 /**
637  *      ata_sff_data_xfer_noirq - Transfer data by PIO
638  *      @dev: device to target
639  *      @buf: data buffer
640  *      @buflen: buffer length
641  *      @rw: read/write
642  *
643  *      Transfer data from/to the device data register by PIO. Do the
644  *      transfer with interrupts disabled.
645  *
646  *      LOCKING:
647  *      Inherited from caller.
648  *
649  *      RETURNS:
650  *      Bytes consumed.
651  */
652 unsigned int ata_sff_data_xfer_noirq(struct ata_device *dev, unsigned char *buf,
653                                      unsigned int buflen, int rw)
654 {
655         unsigned long flags;
656         unsigned int consumed;
657
658         local_irq_save(flags);
659         consumed = ata_sff_data_xfer(dev, buf, buflen, rw);
660         local_irq_restore(flags);
661
662         return consumed;
663 }
664
665 /**
666  *      ata_pio_sector - Transfer a sector of data.
667  *      @qc: Command on going
668  *
669  *      Transfer qc->sect_size bytes of data from/to the ATA device.
670  *
671  *      LOCKING:
672  *      Inherited from caller.
673  */
674 static void ata_pio_sector(struct ata_queued_cmd *qc)
675 {
676         int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
677         struct ata_port *ap = qc->ap;
678         struct page *page;
679         unsigned int offset;
680         unsigned char *buf;
681
682         if (qc->curbytes == qc->nbytes - qc->sect_size)
683                 ap->hsm_task_state = HSM_ST_LAST;
684
685         page = sg_page(qc->cursg);
686         offset = qc->cursg->offset + qc->cursg_ofs;
687
688         /* get the current page and offset */
689         page = nth_page(page, (offset >> PAGE_SHIFT));
690         offset %= PAGE_SIZE;
691
692         DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
693
694         if (PageHighMem(page)) {
695                 unsigned long flags;
696
697                 /* FIXME: use a bounce buffer */
698                 local_irq_save(flags);
699                 buf = kmap_atomic(page, KM_IRQ0);
700
701                 /* do the actual data transfer */
702                 ap->ops->sff_data_xfer(qc->dev, buf + offset, qc->sect_size,
703                                        do_write);
704
705                 kunmap_atomic(buf, KM_IRQ0);
706                 local_irq_restore(flags);
707         } else {
708                 buf = page_address(page);
709                 ap->ops->sff_data_xfer(qc->dev, buf + offset, qc->sect_size,
710                                        do_write);
711         }
712
713         qc->curbytes += qc->sect_size;
714         qc->cursg_ofs += qc->sect_size;
715
716         if (qc->cursg_ofs == qc->cursg->length) {
717                 qc->cursg = sg_next(qc->cursg);
718                 qc->cursg_ofs = 0;
719         }
720 }
721
722 /**
723  *      ata_pio_sectors - Transfer one or many sectors.
724  *      @qc: Command on going
725  *
726  *      Transfer one or many sectors of data from/to the
727  *      ATA device for the DRQ request.
728  *
729  *      LOCKING:
730  *      Inherited from caller.
731  */
732 static void ata_pio_sectors(struct ata_queued_cmd *qc)
733 {
734         if (is_multi_taskfile(&qc->tf)) {
735                 /* READ/WRITE MULTIPLE */
736                 unsigned int nsect;
737
738                 WARN_ON(qc->dev->multi_count == 0);
739
740                 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
741                             qc->dev->multi_count);
742                 while (nsect--)
743                         ata_pio_sector(qc);
744         } else
745                 ata_pio_sector(qc);
746
747         ata_sff_altstatus(qc->ap); /* flush */
748 }
749
750 /**
751  *      atapi_send_cdb - Write CDB bytes to hardware
752  *      @ap: Port to which ATAPI device is attached.
753  *      @qc: Taskfile currently active
754  *
755  *      When device has indicated its readiness to accept
756  *      a CDB, this function is called.  Send the CDB.
757  *
758  *      LOCKING:
759  *      caller.
760  */
761 static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
762 {
763         /* send SCSI cdb */
764         DPRINTK("send cdb\n");
765         WARN_ON(qc->dev->cdb_len < 12);
766
767         ap->ops->sff_data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
768         ata_sff_altstatus(ap); /* flush */
769
770         switch (qc->tf.protocol) {
771         case ATAPI_PROT_PIO:
772                 ap->hsm_task_state = HSM_ST;
773                 break;
774         case ATAPI_PROT_NODATA:
775                 ap->hsm_task_state = HSM_ST_LAST;
776                 break;
777         case ATAPI_PROT_DMA:
778                 ap->hsm_task_state = HSM_ST_LAST;
779                 /* initiate bmdma */
780                 ap->ops->bmdma_start(qc);
781                 break;
782         }
783 }
784
785 /**
786  *      __atapi_pio_bytes - Transfer data from/to the ATAPI device.
787  *      @qc: Command on going
788  *      @bytes: number of bytes
789  *
790  *      Transfer Transfer data from/to the ATAPI device.
791  *
792  *      LOCKING:
793  *      Inherited from caller.
794  *
795  */
796 static int __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
797 {
798         int rw = (qc->tf.flags & ATA_TFLAG_WRITE) ? WRITE : READ;
799         struct ata_port *ap = qc->ap;
800         struct ata_device *dev = qc->dev;
801         struct ata_eh_info *ehi = &dev->link->eh_info;
802         struct scatterlist *sg;
803         struct page *page;
804         unsigned char *buf;
805         unsigned int offset, count, consumed;
806
807 next_sg:
808         sg = qc->cursg;
809         if (unlikely(!sg)) {
810                 ata_ehi_push_desc(ehi, "unexpected or too much trailing data "
811                                   "buf=%u cur=%u bytes=%u",
812                                   qc->nbytes, qc->curbytes, bytes);
813                 return -1;
814         }
815
816         page = sg_page(sg);
817         offset = sg->offset + qc->cursg_ofs;
818
819         /* get the current page and offset */
820         page = nth_page(page, (offset >> PAGE_SHIFT));
821         offset %= PAGE_SIZE;
822
823         /* don't overrun current sg */
824         count = min(sg->length - qc->cursg_ofs, bytes);
825
826         /* don't cross page boundaries */
827         count = min(count, (unsigned int)PAGE_SIZE - offset);
828
829         DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
830
831         if (PageHighMem(page)) {
832                 unsigned long flags;
833
834                 /* FIXME: use bounce buffer */
835                 local_irq_save(flags);
836                 buf = kmap_atomic(page, KM_IRQ0);
837
838                 /* do the actual data transfer */
839                 consumed = ap->ops->sff_data_xfer(dev,  buf + offset, count, rw);
840
841                 kunmap_atomic(buf, KM_IRQ0);
842                 local_irq_restore(flags);
843         } else {
844                 buf = page_address(page);
845                 consumed = ap->ops->sff_data_xfer(dev,  buf + offset, count, rw);
846         }
847
848         bytes -= min(bytes, consumed);
849         qc->curbytes += count;
850         qc->cursg_ofs += count;
851
852         if (qc->cursg_ofs == sg->length) {
853                 qc->cursg = sg_next(qc->cursg);
854                 qc->cursg_ofs = 0;
855         }
856
857         /* consumed can be larger than count only for the last transfer */
858         WARN_ON(qc->cursg && count != consumed);
859
860         if (bytes)
861                 goto next_sg;
862         return 0;
863 }
864
865 /**
866  *      atapi_pio_bytes - Transfer data from/to the ATAPI device.
867  *      @qc: Command on going
868  *
869  *      Transfer Transfer data from/to the ATAPI device.
870  *
871  *      LOCKING:
872  *      Inherited from caller.
873  */
874 static void atapi_pio_bytes(struct ata_queued_cmd *qc)
875 {
876         struct ata_port *ap = qc->ap;
877         struct ata_device *dev = qc->dev;
878         struct ata_eh_info *ehi = &dev->link->eh_info;
879         unsigned int ireason, bc_lo, bc_hi, bytes;
880         int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
881
882         /* Abuse qc->result_tf for temp storage of intermediate TF
883          * here to save some kernel stack usage.
884          * For normal completion, qc->result_tf is not relevant. For
885          * error, qc->result_tf is later overwritten by ata_qc_complete().
886          * So, the correctness of qc->result_tf is not affected.
887          */
888         ap->ops->sff_tf_read(ap, &qc->result_tf);
889         ireason = qc->result_tf.nsect;
890         bc_lo = qc->result_tf.lbam;
891         bc_hi = qc->result_tf.lbah;
892         bytes = (bc_hi << 8) | bc_lo;
893
894         /* shall be cleared to zero, indicating xfer of data */
895         if (unlikely(ireason & (1 << 0)))
896                 goto atapi_check;
897
898         /* make sure transfer direction matches expected */
899         i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
900         if (unlikely(do_write != i_write))
901                 goto atapi_check;
902
903         if (unlikely(!bytes))
904                 goto atapi_check;
905
906         VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
907
908         if (unlikely(__atapi_pio_bytes(qc, bytes)))
909                 goto err_out;
910         ata_sff_altstatus(ap); /* flush */
911
912         return;
913
914  atapi_check:
915         ata_ehi_push_desc(ehi, "ATAPI check failed (ireason=0x%x bytes=%u)",
916                           ireason, bytes);
917  err_out:
918         qc->err_mask |= AC_ERR_HSM;
919         ap->hsm_task_state = HSM_ST_ERR;
920 }
921
922 /**
923  *      ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
924  *      @ap: the target ata_port
925  *      @qc: qc on going
926  *
927  *      RETURNS:
928  *      1 if ok in workqueue, 0 otherwise.
929  */
930 static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
931 {
932         if (qc->tf.flags & ATA_TFLAG_POLLING)
933                 return 1;
934
935         if (ap->hsm_task_state == HSM_ST_FIRST) {
936                 if (qc->tf.protocol == ATA_PROT_PIO &&
937                     (qc->tf.flags & ATA_TFLAG_WRITE))
938                     return 1;
939
940                 if (ata_is_atapi(qc->tf.protocol) &&
941                     !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
942                         return 1;
943         }
944
945         return 0;
946 }
947
948 /**
949  *      ata_hsm_qc_complete - finish a qc running on standard HSM
950  *      @qc: Command to complete
951  *      @in_wq: 1 if called from workqueue, 0 otherwise
952  *
953  *      Finish @qc which is running on standard HSM.
954  *
955  *      LOCKING:
956  *      If @in_wq is zero, spin_lock_irqsave(host lock).
957  *      Otherwise, none on entry and grabs host lock.
958  */
959 static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
960 {
961         struct ata_port *ap = qc->ap;
962         unsigned long flags;
963
964         if (ap->ops->error_handler) {
965                 if (in_wq) {
966                         spin_lock_irqsave(ap->lock, flags);
967
968                         /* EH might have kicked in while host lock is
969                          * released.
970                          */
971                         qc = ata_qc_from_tag(ap, qc->tag);
972                         if (qc) {
973                                 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
974                                         ap->ops->sff_irq_on(ap);
975                                         ata_qc_complete(qc);
976                                 } else
977                                         ata_port_freeze(ap);
978                         }
979
980                         spin_unlock_irqrestore(ap->lock, flags);
981                 } else {
982                         if (likely(!(qc->err_mask & AC_ERR_HSM)))
983                                 ata_qc_complete(qc);
984                         else
985                                 ata_port_freeze(ap);
986                 }
987         } else {
988                 if (in_wq) {
989                         spin_lock_irqsave(ap->lock, flags);
990                         ap->ops->sff_irq_on(ap);
991                         ata_qc_complete(qc);
992                         spin_unlock_irqrestore(ap->lock, flags);
993                 } else
994                         ata_qc_complete(qc);
995         }
996 }
997
998 /**
999  *      ata_sff_hsm_move - move the HSM to the next state.
1000  *      @ap: the target ata_port
1001  *      @qc: qc on going
1002  *      @status: current device status
1003  *      @in_wq: 1 if called from workqueue, 0 otherwise
1004  *
1005  *      RETURNS:
1006  *      1 when poll next status needed, 0 otherwise.
1007  */
1008 int ata_sff_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
1009                      u8 status, int in_wq)
1010 {
1011         unsigned long flags = 0;
1012         int poll_next;
1013
1014         WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
1015
1016         /* Make sure ata_sff_qc_issue() does not throw things
1017          * like DMA polling into the workqueue. Notice that
1018          * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
1019          */
1020         WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
1021
1022 fsm_start:
1023         DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
1024                 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
1025
1026         switch (ap->hsm_task_state) {
1027         case HSM_ST_FIRST:
1028                 /* Send first data block or PACKET CDB */
1029
1030                 /* If polling, we will stay in the work queue after
1031                  * sending the data. Otherwise, interrupt handler
1032                  * takes over after sending the data.
1033                  */
1034                 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
1035
1036                 /* check device status */
1037                 if (unlikely((status & ATA_DRQ) == 0)) {
1038                         /* handle BSY=0, DRQ=0 as error */
1039                         if (likely(status & (ATA_ERR | ATA_DF)))
1040                                 /* device stops HSM for abort/error */
1041                                 qc->err_mask |= AC_ERR_DEV;
1042                         else
1043                                 /* HSM violation. Let EH handle this */
1044                                 qc->err_mask |= AC_ERR_HSM;
1045
1046                         ap->hsm_task_state = HSM_ST_ERR;
1047                         goto fsm_start;
1048                 }
1049
1050                 /* Device should not ask for data transfer (DRQ=1)
1051                  * when it finds something wrong.
1052                  * We ignore DRQ here and stop the HSM by
1053                  * changing hsm_task_state to HSM_ST_ERR and
1054                  * let the EH abort the command or reset the device.
1055                  */
1056                 if (unlikely(status & (ATA_ERR | ATA_DF))) {
1057                         /* Some ATAPI tape drives forget to clear the ERR bit
1058                          * when doing the next command (mostly request sense).
1059                          * We ignore ERR here to workaround and proceed sending
1060                          * the CDB.
1061                          */
1062                         if (!(qc->dev->horkage & ATA_HORKAGE_STUCK_ERR)) {
1063                                 ata_port_printk(ap, KERN_WARNING,
1064                                                 "DRQ=1 with device error, "
1065                                                 "dev_stat 0x%X\n", status);
1066                                 qc->err_mask |= AC_ERR_HSM;
1067                                 ap->hsm_task_state = HSM_ST_ERR;
1068                                 goto fsm_start;
1069                         }
1070                 }
1071
1072                 /* Send the CDB (atapi) or the first data block (ata pio out).
1073                  * During the state transition, interrupt handler shouldn't
1074                  * be invoked before the data transfer is complete and
1075                  * hsm_task_state is changed. Hence, the following locking.
1076                  */
1077                 if (in_wq)
1078                         spin_lock_irqsave(ap->lock, flags);
1079
1080                 if (qc->tf.protocol == ATA_PROT_PIO) {
1081                         /* PIO data out protocol.
1082                          * send first data block.
1083                          */
1084
1085                         /* ata_pio_sectors() might change the state
1086                          * to HSM_ST_LAST. so, the state is changed here
1087                          * before ata_pio_sectors().
1088                          */
1089                         ap->hsm_task_state = HSM_ST;
1090                         ata_pio_sectors(qc);
1091                 } else
1092                         /* send CDB */
1093                         atapi_send_cdb(ap, qc);
1094
1095                 if (in_wq)
1096                         spin_unlock_irqrestore(ap->lock, flags);
1097
1098                 /* if polling, ata_pio_task() handles the rest.
1099                  * otherwise, interrupt handler takes over from here.
1100                  */
1101                 break;
1102
1103         case HSM_ST:
1104                 /* complete command or read/write the data register */
1105                 if (qc->tf.protocol == ATAPI_PROT_PIO) {
1106                         /* ATAPI PIO protocol */
1107                         if ((status & ATA_DRQ) == 0) {
1108                                 /* No more data to transfer or device error.
1109                                  * Device error will be tagged in HSM_ST_LAST.
1110                                  */
1111                                 ap->hsm_task_state = HSM_ST_LAST;
1112                                 goto fsm_start;
1113                         }
1114
1115                         /* Device should not ask for data transfer (DRQ=1)
1116                          * when it finds something wrong.
1117                          * We ignore DRQ here and stop the HSM by
1118                          * changing hsm_task_state to HSM_ST_ERR and
1119                          * let the EH abort the command or reset the device.
1120                          */
1121                         if (unlikely(status & (ATA_ERR | ATA_DF))) {
1122                                 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
1123                                                 "device error, dev_stat 0x%X\n",
1124                                                 status);
1125                                 qc->err_mask |= AC_ERR_HSM;
1126                                 ap->hsm_task_state = HSM_ST_ERR;
1127                                 goto fsm_start;
1128                         }
1129
1130                         atapi_pio_bytes(qc);
1131
1132                         if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
1133                                 /* bad ireason reported by device */
1134                                 goto fsm_start;
1135
1136                 } else {
1137                         /* ATA PIO protocol */
1138                         if (unlikely((status & ATA_DRQ) == 0)) {
1139                                 /* handle BSY=0, DRQ=0 as error */
1140                                 if (likely(status & (ATA_ERR | ATA_DF)))
1141                                         /* device stops HSM for abort/error */
1142                                         qc->err_mask |= AC_ERR_DEV;
1143                                 else
1144                                         /* HSM violation. Let EH handle this.
1145                                          * Phantom devices also trigger this
1146                                          * condition.  Mark hint.
1147                                          */
1148                                         qc->err_mask |= AC_ERR_HSM |
1149                                                         AC_ERR_NODEV_HINT;
1150
1151                                 ap->hsm_task_state = HSM_ST_ERR;
1152                                 goto fsm_start;
1153                         }
1154
1155                         /* For PIO reads, some devices may ask for
1156                          * data transfer (DRQ=1) alone with ERR=1.
1157                          * We respect DRQ here and transfer one
1158                          * block of junk data before changing the
1159                          * hsm_task_state to HSM_ST_ERR.
1160                          *
1161                          * For PIO writes, ERR=1 DRQ=1 doesn't make
1162                          * sense since the data block has been
1163                          * transferred to the device.
1164                          */
1165                         if (unlikely(status & (ATA_ERR | ATA_DF))) {
1166                                 /* data might be corrputed */
1167                                 qc->err_mask |= AC_ERR_DEV;
1168
1169                                 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
1170                                         ata_pio_sectors(qc);
1171                                         status = ata_wait_idle(ap);
1172                                 }
1173
1174                                 if (status & (ATA_BUSY | ATA_DRQ))
1175                                         qc->err_mask |= AC_ERR_HSM;
1176
1177                                 /* ata_pio_sectors() might change the
1178                                  * state to HSM_ST_LAST. so, the state
1179                                  * is changed after ata_pio_sectors().
1180                                  */
1181                                 ap->hsm_task_state = HSM_ST_ERR;
1182                                 goto fsm_start;
1183                         }
1184
1185                         ata_pio_sectors(qc);
1186
1187                         if (ap->hsm_task_state == HSM_ST_LAST &&
1188                             (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
1189                                 /* all data read */
1190                                 status = ata_wait_idle(ap);
1191                                 goto fsm_start;
1192                         }
1193                 }
1194
1195                 poll_next = 1;
1196                 break;
1197
1198         case HSM_ST_LAST:
1199                 if (unlikely(!ata_ok(status))) {
1200                         qc->err_mask |= __ac_err_mask(status);
1201                         ap->hsm_task_state = HSM_ST_ERR;
1202                         goto fsm_start;
1203                 }
1204
1205                 /* no more data to transfer */
1206                 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
1207                         ap->print_id, qc->dev->devno, status);
1208
1209                 WARN_ON(qc->err_mask);
1210
1211                 ap->hsm_task_state = HSM_ST_IDLE;
1212
1213                 /* complete taskfile transaction */
1214                 ata_hsm_qc_complete(qc, in_wq);
1215
1216                 poll_next = 0;
1217                 break;
1218
1219         case HSM_ST_ERR:
1220                 /* make sure qc->err_mask is available to
1221                  * know what's wrong and recover
1222                  */
1223                 WARN_ON(qc->err_mask == 0);
1224
1225                 ap->hsm_task_state = HSM_ST_IDLE;
1226
1227                 /* complete taskfile transaction */
1228                 ata_hsm_qc_complete(qc, in_wq);
1229
1230                 poll_next = 0;
1231                 break;
1232         default:
1233                 poll_next = 0;
1234                 BUG();
1235         }
1236
1237         return poll_next;
1238 }
1239
1240 void ata_pio_task(struct work_struct *work)
1241 {
1242         struct ata_port *ap =
1243                 container_of(work, struct ata_port, port_task.work);
1244         struct ata_queued_cmd *qc = ap->port_task_data;
1245         u8 status;
1246         int poll_next;
1247
1248 fsm_start:
1249         WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
1250
1251         /*
1252          * This is purely heuristic.  This is a fast path.
1253          * Sometimes when we enter, BSY will be cleared in
1254          * a chk-status or two.  If not, the drive is probably seeking
1255          * or something.  Snooze for a couple msecs, then
1256          * chk-status again.  If still busy, queue delayed work.
1257          */
1258         status = ata_sff_busy_wait(ap, ATA_BUSY, 5);
1259         if (status & ATA_BUSY) {
1260                 msleep(2);
1261                 status = ata_sff_busy_wait(ap, ATA_BUSY, 10);
1262                 if (status & ATA_BUSY) {
1263                         ata_pio_queue_task(ap, qc, ATA_SHORT_PAUSE);
1264                         return;
1265                 }
1266         }
1267
1268         /* move the HSM */
1269         poll_next = ata_sff_hsm_move(ap, qc, status, 1);
1270
1271         /* another command or interrupt handler
1272          * may be running at this point.
1273          */
1274         if (poll_next)
1275                 goto fsm_start;
1276 }
1277
1278 /**
1279  *      ata_sff_qc_issue - issue taskfile to device in proto-dependent manner
1280  *      @qc: command to issue to device
1281  *
1282  *      Using various libata functions and hooks, this function
1283  *      starts an ATA command.  ATA commands are grouped into
1284  *      classes called "protocols", and issuing each type of protocol
1285  *      is slightly different.
1286  *
1287  *      May be used as the qc_issue() entry in ata_port_operations.
1288  *
1289  *      LOCKING:
1290  *      spin_lock_irqsave(host lock)
1291  *
1292  *      RETURNS:
1293  *      Zero on success, AC_ERR_* mask on failure
1294  */
1295 unsigned int ata_sff_qc_issue(struct ata_queued_cmd *qc)
1296 {
1297         struct ata_port *ap = qc->ap;
1298
1299         /* Use polling pio if the LLD doesn't handle
1300          * interrupt driven pio and atapi CDB interrupt.
1301          */
1302         if (ap->flags & ATA_FLAG_PIO_POLLING) {
1303                 switch (qc->tf.protocol) {
1304                 case ATA_PROT_PIO:
1305                 case ATA_PROT_NODATA:
1306                 case ATAPI_PROT_PIO:
1307                 case ATAPI_PROT_NODATA:
1308                         qc->tf.flags |= ATA_TFLAG_POLLING;
1309                         break;
1310                 case ATAPI_PROT_DMA:
1311                         if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
1312                                 /* see ata_dma_blacklisted() */
1313                                 BUG();
1314                         break;
1315                 default:
1316                         break;
1317                 }
1318         }
1319
1320         /* select the device */
1321         ata_dev_select(ap, qc->dev->devno, 1, 0);
1322
1323         /* start the command */
1324         switch (qc->tf.protocol) {
1325         case ATA_PROT_NODATA:
1326                 if (qc->tf.flags & ATA_TFLAG_POLLING)
1327                         ata_qc_set_polling(qc);
1328
1329                 ata_tf_to_host(ap, &qc->tf);
1330                 ap->hsm_task_state = HSM_ST_LAST;
1331
1332                 if (qc->tf.flags & ATA_TFLAG_POLLING)
1333                         ata_pio_queue_task(ap, qc, 0);
1334
1335                 break;
1336
1337         case ATA_PROT_DMA:
1338                 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
1339
1340                 ap->ops->sff_tf_load(ap, &qc->tf);  /* load tf registers */
1341                 ap->ops->bmdma_setup(qc);           /* set up bmdma */
1342                 ap->ops->bmdma_start(qc);           /* initiate bmdma */
1343                 ap->hsm_task_state = HSM_ST_LAST;
1344                 break;
1345
1346         case ATA_PROT_PIO:
1347                 if (qc->tf.flags & ATA_TFLAG_POLLING)
1348                         ata_qc_set_polling(qc);
1349
1350                 ata_tf_to_host(ap, &qc->tf);
1351
1352                 if (qc->tf.flags & ATA_TFLAG_WRITE) {
1353                         /* PIO data out protocol */
1354                         ap->hsm_task_state = HSM_ST_FIRST;
1355                         ata_pio_queue_task(ap, qc, 0);
1356
1357                         /* always send first data block using
1358                          * the ata_pio_task() codepath.
1359                          */
1360                 } else {
1361                         /* PIO data in protocol */
1362                         ap->hsm_task_state = HSM_ST;
1363
1364                         if (qc->tf.flags & ATA_TFLAG_POLLING)
1365                                 ata_pio_queue_task(ap, qc, 0);
1366
1367                         /* if polling, ata_pio_task() handles the rest.
1368                          * otherwise, interrupt handler takes over from here.
1369                          */
1370                 }
1371
1372                 break;
1373
1374         case ATAPI_PROT_PIO:
1375         case ATAPI_PROT_NODATA:
1376                 if (qc->tf.flags & ATA_TFLAG_POLLING)
1377                         ata_qc_set_polling(qc);
1378
1379                 ata_tf_to_host(ap, &qc->tf);
1380
1381                 ap->hsm_task_state = HSM_ST_FIRST;
1382
1383                 /* send cdb by polling if no cdb interrupt */
1384                 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
1385                     (qc->tf.flags & ATA_TFLAG_POLLING))
1386                         ata_pio_queue_task(ap, qc, 0);
1387                 break;
1388
1389         case ATAPI_PROT_DMA:
1390                 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
1391
1392                 ap->ops->sff_tf_load(ap, &qc->tf);  /* load tf registers */
1393                 ap->ops->bmdma_setup(qc);           /* set up bmdma */
1394                 ap->hsm_task_state = HSM_ST_FIRST;
1395
1396                 /* send cdb by polling if no cdb interrupt */
1397                 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
1398                         ata_pio_queue_task(ap, qc, 0);
1399                 break;
1400
1401         default:
1402                 WARN_ON(1);
1403                 return AC_ERR_SYSTEM;
1404         }
1405
1406         return 0;
1407 }
1408
1409 /**
1410  *      ata_sff_host_intr - Handle host interrupt for given (port, task)
1411  *      @ap: Port on which interrupt arrived (possibly...)
1412  *      @qc: Taskfile currently active in engine
1413  *
1414  *      Handle host interrupt for given queued command.  Currently,
1415  *      only DMA interrupts are handled.  All other commands are
1416  *      handled via polling with interrupts disabled (nIEN bit).
1417  *
1418  *      LOCKING:
1419  *      spin_lock_irqsave(host lock)
1420  *
1421  *      RETURNS:
1422  *      One if interrupt was handled, zero if not (shared irq).
1423  */
1424 inline unsigned int ata_sff_host_intr(struct ata_port *ap,
1425                                       struct ata_queued_cmd *qc)
1426 {
1427         struct ata_eh_info *ehi = &ap->link.eh_info;
1428         u8 status, host_stat = 0;
1429
1430         VPRINTK("ata%u: protocol %d task_state %d\n",
1431                 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
1432
1433         /* Check whether we are expecting interrupt in this state */
1434         switch (ap->hsm_task_state) {
1435         case HSM_ST_FIRST:
1436                 /* Some pre-ATAPI-4 devices assert INTRQ
1437                  * at this state when ready to receive CDB.
1438                  */
1439
1440                 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
1441                  * The flag was turned on only for atapi devices.  No
1442                  * need to check ata_is_atapi(qc->tf.protocol) again.
1443                  */
1444                 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
1445                         goto idle_irq;
1446                 break;
1447         case HSM_ST_LAST:
1448                 if (qc->tf.protocol == ATA_PROT_DMA ||
1449                     qc->tf.protocol == ATAPI_PROT_DMA) {
1450                         /* check status of DMA engine */
1451                         host_stat = ap->ops->bmdma_status(ap);
1452                         VPRINTK("ata%u: host_stat 0x%X\n",
1453                                 ap->print_id, host_stat);
1454
1455                         /* if it's not our irq... */
1456                         if (!(host_stat & ATA_DMA_INTR))
1457                                 goto idle_irq;
1458
1459                         /* before we do anything else, clear DMA-Start bit */
1460                         ap->ops->bmdma_stop(qc);
1461
1462                         if (unlikely(host_stat & ATA_DMA_ERR)) {
1463                                 /* error when transfering data to/from memory */
1464                                 qc->err_mask |= AC_ERR_HOST_BUS;
1465                                 ap->hsm_task_state = HSM_ST_ERR;
1466                         }
1467                 }
1468                 break;
1469         case HSM_ST:
1470                 break;
1471         default:
1472                 goto idle_irq;
1473         }
1474
1475         /* check altstatus */
1476         status = ata_sff_altstatus(ap);
1477         if (status & ATA_BUSY)
1478                 goto idle_irq;
1479
1480         /* check main status, clearing INTRQ */
1481         status = ap->ops->sff_check_status(ap);
1482         if (unlikely(status & ATA_BUSY))
1483                 goto idle_irq;
1484
1485         /* ack bmdma irq events */
1486         ap->ops->sff_irq_clear(ap);
1487
1488         ata_sff_hsm_move(ap, qc, status, 0);
1489
1490         if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
1491                                        qc->tf.protocol == ATAPI_PROT_DMA))
1492                 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
1493
1494         return 1;       /* irq handled */
1495
1496 idle_irq:
1497         ap->stats.idle_irq++;
1498
1499 #ifdef ATA_IRQ_TRAP
1500         if ((ap->stats.idle_irq % 1000) == 0) {
1501                 ap->ops->sff_check_status(ap);
1502                 ap->ops->sff_irq_clear(ap);
1503                 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
1504                 return 1;
1505         }
1506 #endif
1507         return 0;       /* irq not handled */
1508 }
1509
1510 /**
1511  *      ata_sff_interrupt - Default ATA host interrupt handler
1512  *      @irq: irq line (unused)
1513  *      @dev_instance: pointer to our ata_host information structure
1514  *
1515  *      Default interrupt handler for PCI IDE devices.  Calls
1516  *      ata_sff_host_intr() for each port that is not disabled.
1517  *
1518  *      LOCKING:
1519  *      Obtains host lock during operation.
1520  *
1521  *      RETURNS:
1522  *      IRQ_NONE or IRQ_HANDLED.
1523  */
1524 irqreturn_t ata_sff_interrupt(int irq, void *dev_instance)
1525 {
1526         struct ata_host *host = dev_instance;
1527         unsigned int i;
1528         unsigned int handled = 0;
1529         unsigned long flags;
1530
1531         /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
1532         spin_lock_irqsave(&host->lock, flags);
1533
1534         for (i = 0; i < host->n_ports; i++) {
1535                 struct ata_port *ap;
1536
1537                 ap = host->ports[i];
1538                 if (ap &&
1539                     !(ap->flags & ATA_FLAG_DISABLED)) {
1540                         struct ata_queued_cmd *qc;
1541
1542                         qc = ata_qc_from_tag(ap, ap->link.active_tag);
1543                         if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
1544                             (qc->flags & ATA_QCFLAG_ACTIVE))
1545                                 handled |= ata_sff_host_intr(ap, qc);
1546                 }
1547         }
1548
1549         spin_unlock_irqrestore(&host->lock, flags);
1550
1551         return IRQ_RETVAL(handled);
1552 }
1553
1554 /**
1555  *      ata_sff_freeze - Freeze SFF controller port
1556  *      @ap: port to freeze
1557  *
1558  *      Freeze BMDMA controller port.
1559  *
1560  *      LOCKING:
1561  *      Inherited from caller.
1562  */
1563 void ata_sff_freeze(struct ata_port *ap)
1564 {
1565         struct ata_ioports *ioaddr = &ap->ioaddr;
1566
1567         ap->ctl |= ATA_NIEN;
1568         ap->last_ctl = ap->ctl;
1569
1570         if (ioaddr->ctl_addr)
1571                 iowrite8(ap->ctl, ioaddr->ctl_addr);
1572
1573         /* Under certain circumstances, some controllers raise IRQ on
1574          * ATA_NIEN manipulation.  Also, many controllers fail to mask
1575          * previously pending IRQ on ATA_NIEN assertion.  Clear it.
1576          */
1577         ap->ops->sff_check_status(ap);
1578
1579         ap->ops->sff_irq_clear(ap);
1580 }
1581
1582 /**
1583  *      ata_sff_thaw - Thaw SFF controller port
1584  *      @ap: port to thaw
1585  *
1586  *      Thaw SFF controller port.
1587  *
1588  *      LOCKING:
1589  *      Inherited from caller.
1590  */
1591 void ata_sff_thaw(struct ata_port *ap)
1592 {
1593         /* clear & re-enable interrupts */
1594         ap->ops->sff_check_status(ap);
1595         ap->ops->sff_irq_clear(ap);
1596         ap->ops->sff_irq_on(ap);
1597 }
1598
1599 /**
1600  *      ata_sff_prereset - prepare SFF link for reset
1601  *      @link: SFF link to be reset
1602  *      @deadline: deadline jiffies for the operation
1603  *
1604  *      SFF link @link is about to be reset.  Initialize it.  It first
1605  *      calls ata_std_prereset() and wait for !BSY if the port is
1606  *      being softreset.
1607  *
1608  *      LOCKING:
1609  *      Kernel thread context (may sleep)
1610  *
1611  *      RETURNS:
1612  *      0 on success, -errno otherwise.
1613  */
1614 int ata_sff_prereset(struct ata_link *link, unsigned long deadline)
1615 {
1616         struct ata_eh_context *ehc = &link->eh_context;
1617         int rc;
1618
1619         rc = ata_std_prereset(link, deadline);
1620         if (rc)
1621                 return rc;
1622
1623         /* if we're about to do hardreset, nothing more to do */
1624         if (ehc->i.action & ATA_EH_HARDRESET)
1625                 return 0;
1626
1627         /* wait for !BSY if we don't know that no device is attached */
1628         if (!ata_link_offline(link)) {
1629                 rc = ata_sff_wait_ready(link, deadline);
1630                 if (rc && rc != -ENODEV) {
1631                         ata_link_printk(link, KERN_WARNING, "device not ready "
1632                                         "(errno=%d), forcing hardreset\n", rc);
1633                         ehc->i.action |= ATA_EH_HARDRESET;
1634                 }
1635         }
1636
1637         return 0;
1638 }
1639
1640 /**
1641  *      ata_devchk - PATA device presence detection
1642  *      @ap: ATA channel to examine
1643  *      @device: Device to examine (starting at zero)
1644  *
1645  *      This technique was originally described in
1646  *      Hale Landis's ATADRVR (www.ata-atapi.com), and
1647  *      later found its way into the ATA/ATAPI spec.
1648  *
1649  *      Write a pattern to the ATA shadow registers,
1650  *      and if a device is present, it will respond by
1651  *      correctly storing and echoing back the
1652  *      ATA shadow register contents.
1653  *
1654  *      LOCKING:
1655  *      caller.
1656  */
1657 static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
1658 {
1659         struct ata_ioports *ioaddr = &ap->ioaddr;
1660         u8 nsect, lbal;
1661
1662         ap->ops->sff_dev_select(ap, device);
1663
1664         iowrite8(0x55, ioaddr->nsect_addr);
1665         iowrite8(0xaa, ioaddr->lbal_addr);
1666
1667         iowrite8(0xaa, ioaddr->nsect_addr);
1668         iowrite8(0x55, ioaddr->lbal_addr);
1669
1670         iowrite8(0x55, ioaddr->nsect_addr);
1671         iowrite8(0xaa, ioaddr->lbal_addr);
1672
1673         nsect = ioread8(ioaddr->nsect_addr);
1674         lbal = ioread8(ioaddr->lbal_addr);
1675
1676         if ((nsect == 0x55) && (lbal == 0xaa))
1677                 return 1;       /* we found a device */
1678
1679         return 0;               /* nothing found */
1680 }
1681
1682 /**
1683  *      ata_sff_dev_classify - Parse returned ATA device signature
1684  *      @dev: ATA device to classify (starting at zero)
1685  *      @present: device seems present
1686  *      @r_err: Value of error register on completion
1687  *
1688  *      After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
1689  *      an ATA/ATAPI-defined set of values is placed in the ATA
1690  *      shadow registers, indicating the results of device detection
1691  *      and diagnostics.
1692  *
1693  *      Select the ATA device, and read the values from the ATA shadow
1694  *      registers.  Then parse according to the Error register value,
1695  *      and the spec-defined values examined by ata_dev_classify().
1696  *
1697  *      LOCKING:
1698  *      caller.
1699  *
1700  *      RETURNS:
1701  *      Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
1702  */
1703 unsigned int ata_sff_dev_classify(struct ata_device *dev, int present,
1704                                   u8 *r_err)
1705 {
1706         struct ata_port *ap = dev->link->ap;
1707         struct ata_taskfile tf;
1708         unsigned int class;
1709         u8 err;
1710
1711         ap->ops->sff_dev_select(ap, dev->devno);
1712
1713         memset(&tf, 0, sizeof(tf));
1714
1715         ap->ops->sff_tf_read(ap, &tf);
1716         err = tf.feature;
1717         if (r_err)
1718                 *r_err = err;
1719
1720         /* see if device passed diags: continue and warn later */
1721         if (err == 0)
1722                 /* diagnostic fail : do nothing _YET_ */
1723                 dev->horkage |= ATA_HORKAGE_DIAGNOSTIC;
1724         else if (err == 1)
1725                 /* do nothing */ ;
1726         else if ((dev->devno == 0) && (err == 0x81))
1727                 /* do nothing */ ;
1728         else
1729                 return ATA_DEV_NONE;
1730
1731         /* determine if device is ATA or ATAPI */
1732         class = ata_dev_classify(&tf);
1733
1734         if (class == ATA_DEV_UNKNOWN) {
1735                 /* If the device failed diagnostic, it's likely to
1736                  * have reported incorrect device signature too.
1737                  * Assume ATA device if the device seems present but
1738                  * device signature is invalid with diagnostic
1739                  * failure.
1740                  */
1741                 if (present && (dev->horkage & ATA_HORKAGE_DIAGNOSTIC))
1742                         class = ATA_DEV_ATA;
1743                 else
1744                         class = ATA_DEV_NONE;
1745         } else if ((class == ATA_DEV_ATA) &&
1746                    (ap->ops->sff_check_status(ap) == 0))
1747                 class = ATA_DEV_NONE;
1748
1749         return class;
1750 }
1751
1752 /**
1753  *      ata_sff_wait_after_reset - wait for devices to become ready after reset
1754  *      @link: SFF link which is just reset
1755  *      @devmask: mask of present devices
1756  *      @deadline: deadline jiffies for the operation
1757  *
1758  *      Wait devices attached to SFF @link to become ready after
1759  *      reset.  It contains preceding 150ms wait to avoid accessing TF
1760  *      status register too early.
1761  *
1762  *      LOCKING:
1763  *      Kernel thread context (may sleep).
1764  *
1765  *      RETURNS:
1766  *      0 on success, -ENODEV if some or all of devices in @devmask
1767  *      don't seem to exist.  -errno on other errors.
1768  */
1769 int ata_sff_wait_after_reset(struct ata_link *link, unsigned int devmask,
1770                              unsigned long deadline)
1771 {
1772         struct ata_port *ap = link->ap;
1773         struct ata_ioports *ioaddr = &ap->ioaddr;
1774         unsigned int dev0 = devmask & (1 << 0);
1775         unsigned int dev1 = devmask & (1 << 1);
1776         int rc, ret = 0;
1777
1778         msleep(ATA_WAIT_AFTER_RESET_MSECS);
1779
1780         /* always check readiness of the master device */
1781         rc = ata_sff_wait_ready(link, deadline);
1782         /* -ENODEV means the odd clown forgot the D7 pulldown resistor
1783          * and TF status is 0xff, bail out on it too.
1784          */
1785         if (rc)
1786                 return rc;
1787
1788         /* if device 1 was found in ata_devchk, wait for register
1789          * access briefly, then wait for BSY to clear.
1790          */
1791         if (dev1) {
1792                 int i;
1793
1794                 ap->ops->sff_dev_select(ap, 1);
1795
1796                 /* Wait for register access.  Some ATAPI devices fail
1797                  * to set nsect/lbal after reset, so don't waste too
1798                  * much time on it.  We're gonna wait for !BSY anyway.
1799                  */
1800                 for (i = 0; i < 2; i++) {
1801                         u8 nsect, lbal;
1802
1803                         nsect = ioread8(ioaddr->nsect_addr);
1804                         lbal = ioread8(ioaddr->lbal_addr);
1805                         if ((nsect == 1) && (lbal == 1))
1806                                 break;
1807                         msleep(50);     /* give drive a breather */
1808                 }
1809
1810                 rc = ata_sff_wait_ready(link, deadline);
1811                 if (rc) {
1812                         if (rc != -ENODEV)
1813                                 return rc;
1814                         ret = rc;
1815                 }
1816         }
1817
1818         /* is all this really necessary? */
1819         ap->ops->sff_dev_select(ap, 0);
1820         if (dev1)
1821                 ap->ops->sff_dev_select(ap, 1);
1822         if (dev0)
1823                 ap->ops->sff_dev_select(ap, 0);
1824
1825         return ret;
1826 }
1827
1828 static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
1829                              unsigned long deadline)
1830 {
1831         struct ata_ioports *ioaddr = &ap->ioaddr;
1832
1833         DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
1834
1835         /* software reset.  causes dev0 to be selected */
1836         iowrite8(ap->ctl, ioaddr->ctl_addr);
1837         udelay(20);     /* FIXME: flush */
1838         iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
1839         udelay(20);     /* FIXME: flush */
1840         iowrite8(ap->ctl, ioaddr->ctl_addr);
1841
1842         /* wait the port to become ready */
1843         return ata_sff_wait_after_reset(&ap->link, devmask, deadline);
1844 }
1845
1846 /**
1847  *      ata_sff_softreset - reset host port via ATA SRST
1848  *      @link: ATA link to reset
1849  *      @classes: resulting classes of attached devices
1850  *      @deadline: deadline jiffies for the operation
1851  *
1852  *      Reset host port using ATA SRST.
1853  *
1854  *      LOCKING:
1855  *      Kernel thread context (may sleep)
1856  *
1857  *      RETURNS:
1858  *      0 on success, -errno otherwise.
1859  */
1860 int ata_sff_softreset(struct ata_link *link, unsigned int *classes,
1861                       unsigned long deadline)
1862 {
1863         struct ata_port *ap = link->ap;
1864         unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
1865         unsigned int devmask = 0;
1866         int rc;
1867         u8 err;
1868
1869         DPRINTK("ENTER\n");
1870
1871         if (ata_link_offline(link)) {
1872                 classes[0] = ATA_DEV_NONE;
1873                 goto out;
1874         }
1875
1876         /* determine if device 0/1 are present */
1877         if (ata_devchk(ap, 0))
1878                 devmask |= (1 << 0);
1879         if (slave_possible && ata_devchk(ap, 1))
1880                 devmask |= (1 << 1);
1881
1882         /* select device 0 again */
1883         ap->ops->sff_dev_select(ap, 0);
1884
1885         /* issue bus reset */
1886         DPRINTK("about to softreset, devmask=%x\n", devmask);
1887         rc = ata_bus_softreset(ap, devmask, deadline);
1888         /* if link is occupied, -ENODEV too is an error */
1889         if (rc && (rc != -ENODEV || sata_scr_valid(link))) {
1890                 ata_link_printk(link, KERN_ERR, "SRST failed (errno=%d)\n", rc);
1891                 return rc;
1892         }
1893
1894         /* determine by signature whether we have ATA or ATAPI devices */
1895         classes[0] = ata_sff_dev_classify(&link->device[0],
1896                                           devmask & (1 << 0), &err);
1897         if (slave_possible && err != 0x81)
1898                 classes[1] = ata_sff_dev_classify(&link->device[1],
1899                                                   devmask & (1 << 1), &err);
1900
1901  out:
1902         DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
1903         return 0;
1904 }
1905
1906 /**
1907  *      sata_sff_hardreset - reset host port via SATA phy reset
1908  *      @link: link to reset
1909  *      @class: resulting class of attached device
1910  *      @deadline: deadline jiffies for the operation
1911  *
1912  *      SATA phy-reset host port using DET bits of SControl register,
1913  *      wait for !BSY and classify the attached device.
1914  *
1915  *      LOCKING:
1916  *      Kernel thread context (may sleep)
1917  *
1918  *      RETURNS:
1919  *      0 on success, -errno otherwise.
1920  */
1921 int sata_sff_hardreset(struct ata_link *link, unsigned int *class,
1922                        unsigned long deadline)
1923 {
1924         struct ata_eh_context *ehc = &link->eh_context;
1925         const unsigned long *timing = sata_ehc_deb_timing(ehc);
1926         bool online;
1927         int rc;
1928
1929         rc = sata_link_hardreset(link, timing, deadline, &online,
1930                                  ata_sff_check_ready);
1931         *class = ATA_DEV_NONE;
1932         if (online)
1933                 *class = ata_sff_dev_classify(link->device, 1, NULL);
1934
1935         DPRINTK("EXIT, class=%u\n", *class);
1936         return rc;
1937 }
1938
1939 /**
1940  *      ata_sff_postreset - SFF postreset callback
1941  *      @link: the target SFF ata_link
1942  *      @classes: classes of attached devices
1943  *
1944  *      This function is invoked after a successful reset.  It first
1945  *      calls ata_std_postreset() and performs SFF specific postreset
1946  *      processing.
1947  *
1948  *      LOCKING:
1949  *      Kernel thread context (may sleep)
1950  */
1951 void ata_sff_postreset(struct ata_link *link, unsigned int *classes)
1952 {
1953         struct ata_port *ap = link->ap;
1954
1955         ata_std_postreset(link, classes);
1956
1957         /* is double-select really necessary? */
1958         if (classes[0] != ATA_DEV_NONE)
1959                 ap->ops->sff_dev_select(ap, 1);
1960         if (classes[1] != ATA_DEV_NONE)
1961                 ap->ops->sff_dev_select(ap, 0);
1962
1963         /* bail out if no device is present */
1964         if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
1965                 DPRINTK("EXIT, no device\n");
1966                 return;
1967         }
1968
1969         /* set up device control */
1970         if (ap->ioaddr.ctl_addr)
1971                 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
1972 }
1973
1974 /**
1975  *      ata_sff_error_handler - Stock error handler for BMDMA controller
1976  *      @ap: port to handle error for
1977  *
1978  *      Stock error handler for SFF controller.  It can handle both
1979  *      PATA and SATA controllers.  Many controllers should be able to
1980  *      use this EH as-is or with some added handling before and
1981  *      after.
1982  *
1983  *      LOCKING:
1984  *      Kernel thread context (may sleep)
1985  */
1986 void ata_sff_error_handler(struct ata_port *ap)
1987 {
1988         ata_reset_fn_t softreset = ap->ops->softreset;
1989         ata_reset_fn_t hardreset = ap->ops->hardreset;
1990         struct ata_queued_cmd *qc;
1991         unsigned long flags;
1992         int thaw = 0;
1993
1994         qc = __ata_qc_from_tag(ap, ap->link.active_tag);
1995         if (qc && !(qc->flags & ATA_QCFLAG_FAILED))
1996                 qc = NULL;
1997
1998         /* reset PIO HSM and stop DMA engine */
1999         spin_lock_irqsave(ap->lock, flags);
2000
2001         ap->hsm_task_state = HSM_ST_IDLE;
2002
2003         if (ap->ioaddr.bmdma_addr &&
2004             qc && (qc->tf.protocol == ATA_PROT_DMA ||
2005                    qc->tf.protocol == ATAPI_PROT_DMA)) {
2006                 u8 host_stat;
2007
2008                 host_stat = ap->ops->bmdma_status(ap);
2009
2010                 /* BMDMA controllers indicate host bus error by
2011                  * setting DMA_ERR bit and timing out.  As it wasn't
2012                  * really a timeout event, adjust error mask and
2013                  * cancel frozen state.
2014                  */
2015                 if (qc->err_mask == AC_ERR_TIMEOUT && (host_stat & ATA_DMA_ERR)) {
2016                         qc->err_mask = AC_ERR_HOST_BUS;
2017                         thaw = 1;
2018                 }
2019
2020                 ap->ops->bmdma_stop(qc);
2021         }
2022
2023         ata_sff_altstatus(ap);
2024         ap->ops->sff_check_status(ap);
2025         ap->ops->sff_irq_clear(ap);
2026
2027         spin_unlock_irqrestore(ap->lock, flags);
2028
2029         if (thaw)
2030                 ata_eh_thaw_port(ap);
2031
2032         /* PIO and DMA engines have been stopped, perform recovery */
2033
2034         /* ata_sff_softreset and sata_sff_hardreset are inherited to
2035          * all SFF drivers from ata_sff_port_ops.  Ignore softreset if
2036          * ctl isn't accessible.  Ignore hardreset if SCR access isn't
2037          * available.
2038          */
2039         if (softreset == ata_sff_softreset && !ap->ioaddr.ctl_addr)
2040                 softreset = NULL;
2041         if (hardreset == sata_sff_hardreset && !sata_scr_valid(&ap->link))
2042                 hardreset = NULL;
2043
2044         ata_do_eh(ap, ap->ops->prereset, softreset, hardreset,
2045                   ap->ops->postreset);
2046 }
2047
2048 /**
2049  *      ata_sff_post_internal_cmd - Stock post_internal_cmd for SFF controller
2050  *      @qc: internal command to clean up
2051  *
2052  *      LOCKING:
2053  *      Kernel thread context (may sleep)
2054  */
2055 void ata_sff_post_internal_cmd(struct ata_queued_cmd *qc)
2056 {
2057         if (qc->ap->ioaddr.bmdma_addr)
2058                 ata_bmdma_stop(qc);
2059 }
2060
2061 /**
2062  *      ata_sff_port_start - Set port up for dma.
2063  *      @ap: Port to initialize
2064  *
2065  *      Called just after data structures for each port are
2066  *      initialized.  Allocates space for PRD table if the device
2067  *      is DMA capable SFF.
2068  *
2069  *      May be used as the port_start() entry in ata_port_operations.
2070  *
2071  *      LOCKING:
2072  *      Inherited from caller.
2073  */
2074 int ata_sff_port_start(struct ata_port *ap)
2075 {
2076         if (ap->ioaddr.bmdma_addr)
2077                 return ata_port_start(ap);
2078         return 0;
2079 }
2080
2081 /**
2082  *      ata_sff_std_ports - initialize ioaddr with standard port offsets.
2083  *      @ioaddr: IO address structure to be initialized
2084  *
2085  *      Utility function which initializes data_addr, error_addr,
2086  *      feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
2087  *      device_addr, status_addr, and command_addr to standard offsets
2088  *      relative to cmd_addr.
2089  *
2090  *      Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
2091  */
2092 void ata_sff_std_ports(struct ata_ioports *ioaddr)
2093 {
2094         ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
2095         ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
2096         ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
2097         ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
2098         ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
2099         ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
2100         ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
2101         ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
2102         ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
2103         ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
2104 }
2105
2106 unsigned long ata_bmdma_mode_filter(struct ata_device *adev,
2107                                     unsigned long xfer_mask)
2108 {
2109         /* Filter out DMA modes if the device has been configured by
2110            the BIOS as PIO only */
2111
2112         if (adev->link->ap->ioaddr.bmdma_addr == NULL)
2113                 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2114         return xfer_mask;
2115 }
2116
2117 /**
2118  *      ata_bmdma_setup - Set up PCI IDE BMDMA transaction
2119  *      @qc: Info associated with this ATA transaction.
2120  *
2121  *      LOCKING:
2122  *      spin_lock_irqsave(host lock)
2123  */
2124 void ata_bmdma_setup(struct ata_queued_cmd *qc)
2125 {
2126         struct ata_port *ap = qc->ap;
2127         unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
2128         u8 dmactl;
2129
2130         /* load PRD table addr. */
2131         mb();   /* make sure PRD table writes are visible to controller */
2132         iowrite32(ap->prd_dma, ap->ioaddr.bmdma_addr + ATA_DMA_TABLE_OFS);
2133
2134         /* specify data direction, triple-check start bit is clear */
2135         dmactl = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
2136         dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
2137         if (!rw)
2138                 dmactl |= ATA_DMA_WR;
2139         iowrite8(dmactl, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
2140
2141         /* issue r/w command */
2142         ap->ops->sff_exec_command(ap, &qc->tf);
2143 }
2144
2145 /**
2146  *      ata_bmdma_start - Start a PCI IDE BMDMA transaction
2147  *      @qc: Info associated with this ATA transaction.
2148  *
2149  *      LOCKING:
2150  *      spin_lock_irqsave(host lock)
2151  */
2152 void ata_bmdma_start(struct ata_queued_cmd *qc)
2153 {
2154         struct ata_port *ap = qc->ap;
2155         u8 dmactl;
2156
2157         /* start host DMA transaction */
2158         dmactl = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
2159         iowrite8(dmactl | ATA_DMA_START, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
2160
2161         /* Strictly, one may wish to issue an ioread8() here, to
2162          * flush the mmio write.  However, control also passes
2163          * to the hardware at this point, and it will interrupt
2164          * us when we are to resume control.  So, in effect,
2165          * we don't care when the mmio write flushes.
2166          * Further, a read of the DMA status register _immediately_
2167          * following the write may not be what certain flaky hardware
2168          * is expected, so I think it is best to not add a readb()
2169          * without first all the MMIO ATA cards/mobos.
2170          * Or maybe I'm just being paranoid.
2171          *
2172          * FIXME: The posting of this write means I/O starts are
2173          * unneccessarily delayed for MMIO
2174          */
2175 }
2176
2177 /**
2178  *      ata_bmdma_stop - Stop PCI IDE BMDMA transfer
2179  *      @qc: Command we are ending DMA for
2180  *
2181  *      Clears the ATA_DMA_START flag in the dma control register
2182  *
2183  *      May be used as the bmdma_stop() entry in ata_port_operations.
2184  *
2185  *      LOCKING:
2186  *      spin_lock_irqsave(host lock)
2187  */
2188 void ata_bmdma_stop(struct ata_queued_cmd *qc)
2189 {
2190         struct ata_port *ap = qc->ap;
2191         void __iomem *mmio = ap->ioaddr.bmdma_addr;
2192
2193         /* clear start/stop bit */
2194         iowrite8(ioread8(mmio + ATA_DMA_CMD) & ~ATA_DMA_START,
2195                  mmio + ATA_DMA_CMD);
2196
2197         /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
2198         ata_sff_altstatus(ap);        /* dummy read */
2199 }
2200
2201 /**
2202  *      ata_bmdma_status - Read PCI IDE BMDMA status
2203  *      @ap: Port associated with this ATA transaction.
2204  *
2205  *      Read and return BMDMA status register.
2206  *
2207  *      May be used as the bmdma_status() entry in ata_port_operations.
2208  *
2209  *      LOCKING:
2210  *      spin_lock_irqsave(host lock)
2211  */
2212 u8 ata_bmdma_status(struct ata_port *ap)
2213 {
2214         return ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
2215 }
2216
2217 /**
2218  *      ata_bus_reset - reset host port and associated ATA channel
2219  *      @ap: port to reset
2220  *
2221  *      This is typically the first time we actually start issuing
2222  *      commands to the ATA channel.  We wait for BSY to clear, then
2223  *      issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2224  *      result.  Determine what devices, if any, are on the channel
2225  *      by looking at the device 0/1 error register.  Look at the signature
2226  *      stored in each device's taskfile registers, to determine if
2227  *      the device is ATA or ATAPI.
2228  *
2229  *      LOCKING:
2230  *      PCI/etc. bus probe sem.
2231  *      Obtains host lock.
2232  *
2233  *      SIDE EFFECTS:
2234  *      Sets ATA_FLAG_DISABLED if bus reset fails.
2235  *
2236  *      DEPRECATED:
2237  *      This function is only for drivers which still use old EH and
2238  *      will be removed soon.
2239  */
2240 void ata_bus_reset(struct ata_port *ap)
2241 {
2242         struct ata_device *device = ap->link.device;
2243         struct ata_ioports *ioaddr = &ap->ioaddr;
2244         unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2245         u8 err;
2246         unsigned int dev0, dev1 = 0, devmask = 0;
2247         int rc;
2248
2249         DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
2250
2251         /* determine if device 0/1 are present */
2252         if (ap->flags & ATA_FLAG_SATA_RESET)
2253                 dev0 = 1;
2254         else {
2255                 dev0 = ata_devchk(ap, 0);
2256                 if (slave_possible)
2257                         dev1 = ata_devchk(ap, 1);
2258         }
2259
2260         if (dev0)
2261                 devmask |= (1 << 0);
2262         if (dev1)
2263                 devmask |= (1 << 1);
2264
2265         /* select device 0 again */
2266         ap->ops->sff_dev_select(ap, 0);
2267
2268         /* issue bus reset */
2269         if (ap->flags & ATA_FLAG_SRST) {
2270                 rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ);
2271                 if (rc && rc != -ENODEV)
2272                         goto err_out;
2273         }
2274
2275         /*
2276          * determine by signature whether we have ATA or ATAPI devices
2277          */
2278         device[0].class = ata_sff_dev_classify(&device[0], dev0, &err);
2279         if ((slave_possible) && (err != 0x81))
2280                 device[1].class = ata_sff_dev_classify(&device[1], dev1, &err);
2281
2282         /* is double-select really necessary? */
2283         if (device[1].class != ATA_DEV_NONE)
2284                 ap->ops->sff_dev_select(ap, 1);
2285         if (device[0].class != ATA_DEV_NONE)
2286                 ap->ops->sff_dev_select(ap, 0);
2287
2288         /* if no devices were detected, disable this port */
2289         if ((device[0].class == ATA_DEV_NONE) &&
2290             (device[1].class == ATA_DEV_NONE))
2291                 goto err_out;
2292
2293         if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2294                 /* set up device control for ATA_FLAG_SATA_RESET */
2295                 iowrite8(ap->ctl, ioaddr->ctl_addr);
2296         }
2297
2298         DPRINTK("EXIT\n");
2299         return;
2300
2301 err_out:
2302         ata_port_printk(ap, KERN_ERR, "disabling port\n");
2303         ata_port_disable(ap);
2304
2305         DPRINTK("EXIT\n");
2306 }
2307
2308 #ifdef CONFIG_PCI
2309
2310 /**
2311  *      ata_pci_bmdma_clear_simplex -   attempt to kick device out of simplex
2312  *      @pdev: PCI device
2313  *
2314  *      Some PCI ATA devices report simplex mode but in fact can be told to
2315  *      enter non simplex mode. This implements the necessary logic to
2316  *      perform the task on such devices. Calling it on other devices will
2317  *      have -undefined- behaviour.
2318  */
2319 int ata_pci_bmdma_clear_simplex(struct pci_dev *pdev)
2320 {
2321         unsigned long bmdma = pci_resource_start(pdev, 4);
2322         u8 simplex;
2323
2324         if (bmdma == 0)
2325                 return -ENOENT;
2326
2327         simplex = inb(bmdma + 0x02);
2328         outb(simplex & 0x60, bmdma + 0x02);
2329         simplex = inb(bmdma + 0x02);
2330         if (simplex & 0x80)
2331                 return -EOPNOTSUPP;
2332         return 0;
2333 }
2334
2335 /**
2336  *      ata_pci_bmdma_init - acquire PCI BMDMA resources and init ATA host
2337  *      @host: target ATA host
2338  *
2339  *      Acquire PCI BMDMA resources and initialize @host accordingly.
2340  *
2341  *      LOCKING:
2342  *      Inherited from calling layer (may sleep).
2343  *
2344  *      RETURNS:
2345  *      0 on success, -errno otherwise.
2346  */
2347 int ata_pci_bmdma_init(struct ata_host *host)
2348 {
2349         struct device *gdev = host->dev;
2350         struct pci_dev *pdev = to_pci_dev(gdev);
2351         int i, rc;
2352
2353         /* No BAR4 allocation: No DMA */
2354         if (pci_resource_start(pdev, 4) == 0)
2355                 return 0;
2356
2357         /* TODO: If we get no DMA mask we should fall back to PIO */
2358         rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
2359         if (rc)
2360                 return rc;
2361         rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
2362         if (rc)
2363                 return rc;
2364
2365         /* request and iomap DMA region */
2366         rc = pcim_iomap_regions(pdev, 1 << 4, dev_driver_string(gdev));
2367         if (rc) {
2368                 dev_printk(KERN_ERR, gdev, "failed to request/iomap BAR4\n");
2369                 return -ENOMEM;
2370         }
2371         host->iomap = pcim_iomap_table(pdev);
2372
2373         for (i = 0; i < 2; i++) {
2374                 struct ata_port *ap = host->ports[i];
2375                 void __iomem *bmdma = host->iomap[4] + 8 * i;
2376
2377                 if (ata_port_is_dummy(ap))
2378                         continue;
2379
2380                 ap->ioaddr.bmdma_addr = bmdma;
2381                 if ((!(ap->flags & ATA_FLAG_IGN_SIMPLEX)) &&
2382                     (ioread8(bmdma + 2) & 0x80))
2383                         host->flags |= ATA_HOST_SIMPLEX;
2384
2385                 ata_port_desc(ap, "bmdma 0x%llx",
2386                         (unsigned long long)pci_resource_start(pdev, 4) + 8 * i);
2387         }
2388
2389         return 0;
2390 }
2391
2392 static int ata_resources_present(struct pci_dev *pdev, int port)
2393 {
2394         int i;
2395
2396         /* Check the PCI resources for this channel are enabled */
2397         port = port * 2;
2398         for (i = 0; i < 2; i ++) {
2399                 if (pci_resource_start(pdev, port + i) == 0 ||
2400                     pci_resource_len(pdev, port + i) == 0)
2401                         return 0;
2402         }
2403         return 1;
2404 }
2405
2406 /**
2407  *      ata_pci_sff_init_host - acquire native PCI ATA resources and init host
2408  *      @host: target ATA host
2409  *
2410  *      Acquire native PCI ATA resources for @host and initialize the
2411  *      first two ports of @host accordingly.  Ports marked dummy are
2412  *      skipped and allocation failure makes the port dummy.
2413  *
2414  *      Note that native PCI resources are valid even for legacy hosts
2415  *      as we fix up pdev resources array early in boot, so this
2416  *      function can be used for both native and legacy SFF hosts.
2417  *
2418  *      LOCKING:
2419  *      Inherited from calling layer (may sleep).
2420  *
2421  *      RETURNS:
2422  *      0 if at least one port is initialized, -ENODEV if no port is
2423  *      available.
2424  */
2425 int ata_pci_sff_init_host(struct ata_host *host)
2426 {
2427         struct device *gdev = host->dev;
2428         struct pci_dev *pdev = to_pci_dev(gdev);
2429         unsigned int mask = 0;
2430         int i, rc;
2431
2432         /* request, iomap BARs and init port addresses accordingly */
2433         for (i = 0; i < 2; i++) {
2434                 struct ata_port *ap = host->ports[i];
2435                 int base = i * 2;
2436                 void __iomem * const *iomap;
2437
2438                 if (ata_port_is_dummy(ap))
2439                         continue;
2440
2441                 /* Discard disabled ports.  Some controllers show
2442                  * their unused channels this way.  Disabled ports are
2443                  * made dummy.
2444                  */
2445                 if (!ata_resources_present(pdev, i)) {
2446                         ap->ops = &ata_dummy_port_ops;
2447                         continue;
2448                 }
2449
2450                 rc = pcim_iomap_regions(pdev, 0x3 << base,
2451                                         dev_driver_string(gdev));
2452                 if (rc) {
2453                         dev_printk(KERN_WARNING, gdev,
2454                                    "failed to request/iomap BARs for port %d "
2455                                    "(errno=%d)\n", i, rc);
2456                         if (rc == -EBUSY)
2457                                 pcim_pin_device(pdev);
2458                         ap->ops = &ata_dummy_port_ops;
2459                         continue;
2460                 }
2461                 host->iomap = iomap = pcim_iomap_table(pdev);
2462
2463                 ap->ioaddr.cmd_addr = iomap[base];
2464                 ap->ioaddr.altstatus_addr =
2465                 ap->ioaddr.ctl_addr = (void __iomem *)
2466                         ((unsigned long)iomap[base + 1] | ATA_PCI_CTL_OFS);
2467                 ata_sff_std_ports(&ap->ioaddr);
2468
2469                 ata_port_desc(ap, "cmd 0x%llx ctl 0x%llx",
2470                         (unsigned long long)pci_resource_start(pdev, base),
2471                         (unsigned long long)pci_resource_start(pdev, base + 1));
2472
2473                 mask |= 1 << i;
2474         }
2475
2476         if (!mask) {
2477                 dev_printk(KERN_ERR, gdev, "no available native port\n");
2478                 return -ENODEV;
2479         }
2480
2481         return 0;
2482 }
2483
2484 /**
2485  *      ata_pci_sff_prepare_host - helper to prepare native PCI ATA host
2486  *      @pdev: target PCI device
2487  *      @ppi: array of port_info, must be enough for two ports
2488  *      @r_host: out argument for the initialized ATA host
2489  *
2490  *      Helper to allocate ATA host for @pdev, acquire all native PCI
2491  *      resources and initialize it accordingly in one go.
2492  *
2493  *      LOCKING:
2494  *      Inherited from calling layer (may sleep).
2495  *
2496  *      RETURNS:
2497  *      0 on success, -errno otherwise.
2498  */
2499 int ata_pci_sff_prepare_host(struct pci_dev *pdev,
2500                              const struct ata_port_info * const * ppi,
2501                              struct ata_host **r_host)
2502 {
2503         struct ata_host *host;
2504         int rc;
2505
2506         if (!devres_open_group(&pdev->dev, NULL, GFP_KERNEL))
2507                 return -ENOMEM;
2508
2509         host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
2510         if (!host) {
2511                 dev_printk(KERN_ERR, &pdev->dev,
2512                            "failed to allocate ATA host\n");
2513                 rc = -ENOMEM;
2514                 goto err_out;
2515         }
2516
2517         rc = ata_pci_sff_init_host(host);
2518         if (rc)
2519                 goto err_out;
2520
2521         /* init DMA related stuff */
2522         rc = ata_pci_bmdma_init(host);
2523         if (rc)
2524                 goto err_bmdma;
2525
2526         devres_remove_group(&pdev->dev, NULL);
2527         *r_host = host;
2528         return 0;
2529
2530  err_bmdma:
2531         /* This is necessary because PCI and iomap resources are
2532          * merged and releasing the top group won't release the
2533          * acquired resources if some of those have been acquired
2534          * before entering this function.
2535          */
2536         pcim_iounmap_regions(pdev, 0xf);
2537  err_out:
2538         devres_release_group(&pdev->dev, NULL);
2539         return rc;
2540 }
2541
2542 /**
2543  *      ata_pci_sff_activate_host - start SFF host, request IRQ and register it
2544  *      @host: target SFF ATA host
2545  *      @irq_handler: irq_handler used when requesting IRQ(s)
2546  *      @sht: scsi_host_template to use when registering the host
2547  *
2548  *      This is the counterpart of ata_host_activate() for SFF ATA
2549  *      hosts.  This separate helper is necessary because SFF hosts
2550  *      use two separate interrupts in legacy mode.
2551  *
2552  *      LOCKING:
2553  *      Inherited from calling layer (may sleep).
2554  *
2555  *      RETURNS:
2556  *      0 on success, -errno otherwise.
2557  */
2558 int ata_pci_sff_activate_host(struct ata_host *host,
2559                               irq_handler_t irq_handler,
2560                               struct scsi_host_template *sht)
2561 {
2562         struct device *dev = host->dev;
2563         struct pci_dev *pdev = to_pci_dev(dev);
2564         const char *drv_name = dev_driver_string(host->dev);
2565         int legacy_mode = 0, rc;
2566
2567         rc = ata_host_start(host);
2568         if (rc)
2569                 return rc;
2570
2571         if ((pdev->class >> 8) == PCI_CLASS_STORAGE_IDE) {
2572                 u8 tmp8, mask;
2573
2574                 /* TODO: What if one channel is in native mode ... */
2575                 pci_read_config_byte(pdev, PCI_CLASS_PROG, &tmp8);
2576                 mask = (1 << 2) | (1 << 0);
2577                 if ((tmp8 & mask) != mask)
2578                         legacy_mode = 1;
2579 #if defined(CONFIG_NO_ATA_LEGACY)
2580                 /* Some platforms with PCI limits cannot address compat
2581                    port space. In that case we punt if their firmware has
2582                    left a device in compatibility mode */
2583                 if (legacy_mode) {
2584                         printk(KERN_ERR "ata: Compatibility mode ATA is not supported on this platform, skipping.\n");
2585                         return -EOPNOTSUPP;
2586                 }
2587 #endif
2588         }
2589
2590         if (!devres_open_group(dev, NULL, GFP_KERNEL))
2591                 return -ENOMEM;
2592
2593         if (!legacy_mode && pdev->irq) {
2594                 rc = devm_request_irq(dev, pdev->irq, irq_handler,
2595                                       IRQF_SHARED, drv_name, host);
2596                 if (rc)
2597                         goto out;
2598
2599                 ata_port_desc(host->ports[0], "irq %d", pdev->irq);
2600                 ata_port_desc(host->ports[1], "irq %d", pdev->irq);
2601         } else if (legacy_mode) {
2602                 if (!ata_port_is_dummy(host->ports[0])) {
2603                         rc = devm_request_irq(dev, ATA_PRIMARY_IRQ(pdev),
2604                                               irq_handler, IRQF_SHARED,
2605                                               drv_name, host);
2606                         if (rc)
2607                                 goto out;
2608
2609                         ata_port_desc(host->ports[0], "irq %d",
2610                                       ATA_PRIMARY_IRQ(pdev));
2611                 }
2612
2613                 if (!ata_port_is_dummy(host->ports[1])) {
2614                         rc = devm_request_irq(dev, ATA_SECONDARY_IRQ(pdev),
2615                                               irq_handler, IRQF_SHARED,
2616                                               drv_name, host);
2617                         if (rc)
2618                                 goto out;
2619
2620                         ata_port_desc(host->ports[1], "irq %d",
2621                                       ATA_SECONDARY_IRQ(pdev));
2622                 }
2623         }
2624
2625         rc = ata_host_register(host, sht);
2626  out:
2627         if (rc == 0)
2628                 devres_remove_group(dev, NULL);
2629         else
2630                 devres_release_group(dev, NULL);
2631
2632         return rc;
2633 }
2634
2635 /**
2636  *      ata_pci_sff_init_one - Initialize/register PCI IDE host controller
2637  *      @pdev: Controller to be initialized
2638  *      @ppi: array of port_info, must be enough for two ports
2639  *      @sht: scsi_host_template to use when registering the host
2640  *      @host_priv: host private_data
2641  *
2642  *      This is a helper function which can be called from a driver's
2643  *      xxx_init_one() probe function if the hardware uses traditional
2644  *      IDE taskfile registers.
2645  *
2646  *      This function calls pci_enable_device(), reserves its register
2647  *      regions, sets the dma mask, enables bus master mode, and calls
2648  *      ata_device_add()
2649  *
2650  *      ASSUMPTION:
2651  *      Nobody makes a single channel controller that appears solely as
2652  *      the secondary legacy port on PCI.
2653  *
2654  *      LOCKING:
2655  *      Inherited from PCI layer (may sleep).
2656  *
2657  *      RETURNS:
2658  *      Zero on success, negative on errno-based value on error.
2659  */
2660 int ata_pci_sff_init_one(struct pci_dev *pdev,
2661                          const struct ata_port_info * const * ppi,
2662                          struct scsi_host_template *sht, void *host_priv)
2663 {
2664         struct device *dev = &pdev->dev;
2665         const struct ata_port_info *pi = NULL;
2666         struct ata_host *host = NULL;
2667         int i, rc;
2668
2669         DPRINTK("ENTER\n");
2670
2671         /* look up the first valid port_info */
2672         for (i = 0; i < 2 && ppi[i]; i++) {
2673                 if (ppi[i]->port_ops != &ata_dummy_port_ops) {
2674                         pi = ppi[i];
2675                         break;
2676                 }
2677         }
2678
2679         if (!pi) {
2680                 dev_printk(KERN_ERR, &pdev->dev,
2681                            "no valid port_info specified\n");
2682                 return -EINVAL;
2683         }
2684
2685         if (!devres_open_group(dev, NULL, GFP_KERNEL))
2686                 return -ENOMEM;
2687
2688         rc = pcim_enable_device(pdev);
2689         if (rc)
2690                 goto out;
2691
2692         /* prepare and activate SFF host */
2693         rc = ata_pci_sff_prepare_host(pdev, ppi, &host);
2694         if (rc)
2695                 goto out;
2696         host->private_data = host_priv;
2697
2698         pci_set_master(pdev);
2699         rc = ata_pci_sff_activate_host(host, ata_sff_interrupt, sht);
2700  out:
2701         if (rc == 0)
2702                 devres_remove_group(&pdev->dev, NULL);
2703         else
2704                 devres_release_group(&pdev->dev, NULL);
2705
2706         return rc;
2707 }
2708
2709 #endif /* CONFIG_PCI */
2710
2711 EXPORT_SYMBOL_GPL(ata_sff_port_ops);
2712 EXPORT_SYMBOL_GPL(ata_bmdma_port_ops);
2713 EXPORT_SYMBOL_GPL(ata_sff_qc_prep);
2714 EXPORT_SYMBOL_GPL(ata_sff_dumb_qc_prep);
2715 EXPORT_SYMBOL_GPL(ata_sff_dev_select);
2716 EXPORT_SYMBOL_GPL(ata_sff_check_status);
2717 EXPORT_SYMBOL_GPL(ata_sff_altstatus);
2718 EXPORT_SYMBOL_GPL(ata_sff_busy_sleep);
2719 EXPORT_SYMBOL_GPL(ata_sff_wait_ready);
2720 EXPORT_SYMBOL_GPL(ata_sff_tf_load);
2721 EXPORT_SYMBOL_GPL(ata_sff_tf_read);
2722 EXPORT_SYMBOL_GPL(ata_sff_exec_command);
2723 EXPORT_SYMBOL_GPL(ata_sff_data_xfer);
2724 EXPORT_SYMBOL_GPL(ata_sff_data_xfer_noirq);
2725 EXPORT_SYMBOL_GPL(ata_sff_irq_on);
2726 EXPORT_SYMBOL_GPL(ata_sff_irq_clear);
2727 EXPORT_SYMBOL_GPL(ata_sff_hsm_move);
2728 EXPORT_SYMBOL_GPL(ata_sff_qc_issue);
2729 EXPORT_SYMBOL_GPL(ata_sff_host_intr);
2730 EXPORT_SYMBOL_GPL(ata_sff_interrupt);
2731 EXPORT_SYMBOL_GPL(ata_sff_freeze);
2732 EXPORT_SYMBOL_GPL(ata_sff_thaw);
2733 EXPORT_SYMBOL_GPL(ata_sff_prereset);
2734 EXPORT_SYMBOL_GPL(ata_sff_dev_classify);
2735 EXPORT_SYMBOL_GPL(ata_sff_wait_after_reset);
2736 EXPORT_SYMBOL_GPL(ata_sff_softreset);
2737 EXPORT_SYMBOL_GPL(sata_sff_hardreset);
2738 EXPORT_SYMBOL_GPL(ata_sff_postreset);
2739 EXPORT_SYMBOL_GPL(ata_sff_error_handler);
2740 EXPORT_SYMBOL_GPL(ata_sff_post_internal_cmd);
2741 EXPORT_SYMBOL_GPL(ata_sff_port_start);
2742 EXPORT_SYMBOL_GPL(ata_sff_std_ports);
2743 EXPORT_SYMBOL_GPL(ata_bmdma_mode_filter);
2744 EXPORT_SYMBOL_GPL(ata_bmdma_setup);
2745 EXPORT_SYMBOL_GPL(ata_bmdma_start);
2746 EXPORT_SYMBOL_GPL(ata_bmdma_stop);
2747 EXPORT_SYMBOL_GPL(ata_bmdma_status);
2748 EXPORT_SYMBOL_GPL(ata_bus_reset);
2749 #ifdef CONFIG_PCI
2750 EXPORT_SYMBOL_GPL(ata_pci_bmdma_clear_simplex);
2751 EXPORT_SYMBOL_GPL(ata_pci_bmdma_init);
2752 EXPORT_SYMBOL_GPL(ata_pci_sff_init_host);
2753 EXPORT_SYMBOL_GPL(ata_pci_sff_prepare_host);
2754 EXPORT_SYMBOL_GPL(ata_pci_sff_activate_host);
2755 EXPORT_SYMBOL_GPL(ata_pci_sff_init_one);
2756 #endif /* CONFIG_PCI */