blob: d211db6b35a2588bbf4521b884ec2329795ccd69 [file] [log] [blame]
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001/*
2 * libata-bmdma.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
Jeff Garzik1fdffbc2006-02-09 05:15:27 -050035#include <linux/kernel.h>
36#include <linux/pci.h>
37#include <linux/libata.h>
38
39#include "libata.h"
40
41/**
Tejun Heo90088bb2006-10-09 11:10:26 +090042 * ata_irq_on - Enable interrupts on a port.
43 * @ap: Port on which interrupts are enabled.
44 *
45 * Enable interrupts on a legacy IDE device using MMIO or PIO,
46 * wait for idle, clear any pending interrupts.
47 *
48 * LOCKING:
49 * Inherited from caller.
50 */
51u8 ata_irq_on(struct ata_port *ap)
52{
53 struct ata_ioports *ioaddr = &ap->ioaddr;
54 u8 tmp;
55
56 ap->ctl &= ~ATA_NIEN;
57 ap->last_ctl = ap->ctl;
58
Tejun Heo0d5ff562007-02-01 15:06:36 +090059 iowrite8(ap->ctl, ioaddr->ctl_addr);
Tejun Heo90088bb2006-10-09 11:10:26 +090060 tmp = ata_wait_idle(ap);
61
62 ap->ops->irq_clear(ap);
63
64 return tmp;
65}
66
Akira Iguchi83625002007-01-26 16:27:32 +090067u8 ata_dummy_irq_on (struct ata_port *ap) { return 0; }
68
69/**
70 * ata_irq_ack - Acknowledge a device interrupt.
71 * @ap: Port on which interrupts are enabled.
72 *
73 * Wait up to 10 ms for legacy IDE device to become idle (BUSY
74 * or BUSY+DRQ clear). Obtain dma status and port status from
75 * device. Clear the interrupt. Return port status.
76 *
77 * LOCKING:
78 */
79
80u8 ata_irq_ack(struct ata_port *ap, unsigned int chk_drq)
81{
82 unsigned int bits = chk_drq ? ATA_BUSY | ATA_DRQ : ATA_BUSY;
83 u8 host_stat, post_stat, status;
84
85 status = ata_busy_wait(ap, bits, 1000);
86 if (status & bits)
87 if (ata_msg_err(ap))
88 printk(KERN_ERR "abnormal status 0x%X\n", status);
89
90 /* get controller status; clear intr, err bits */
91 host_stat = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
92 iowrite8(host_stat | ATA_DMA_INTR | ATA_DMA_ERR,
93 ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
94
95 post_stat = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
96
97 if (ata_msg_intr(ap))
98 printk(KERN_INFO "%s: irq ack: host_stat 0x%X, new host_stat 0x%X, drv_stat 0x%X\n",
99 __FUNCTION__,
100 host_stat, post_stat, status);
101
102 return status;
103}
104
105u8 ata_dummy_irq_ack(struct ata_port *ap, unsigned int chk_drq) { return 0; }
106
Tejun Heo90088bb2006-10-09 11:10:26 +0900107/**
Tejun Heo0d5ff562007-02-01 15:06:36 +0900108 * ata_tf_load - send taskfile registers to host controller
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500109 * @ap: Port to which output is sent
110 * @tf: ATA taskfile register set
111 *
112 * Outputs ATA taskfile to standard ATA host controller.
113 *
114 * LOCKING:
115 * Inherited from caller.
116 */
117
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500118void ata_tf_load(struct ata_port *ap, const struct ata_taskfile *tf)
119{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900120 struct ata_ioports *ioaddr = &ap->ioaddr;
121 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
122
123 if (tf->ctl != ap->last_ctl) {
124 iowrite8(tf->ctl, ioaddr->ctl_addr);
125 ap->last_ctl = tf->ctl;
126 ata_wait_idle(ap);
127 }
128
129 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
130 iowrite8(tf->hob_feature, ioaddr->feature_addr);
131 iowrite8(tf->hob_nsect, ioaddr->nsect_addr);
132 iowrite8(tf->hob_lbal, ioaddr->lbal_addr);
133 iowrite8(tf->hob_lbam, ioaddr->lbam_addr);
134 iowrite8(tf->hob_lbah, ioaddr->lbah_addr);
135 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
136 tf->hob_feature,
137 tf->hob_nsect,
138 tf->hob_lbal,
139 tf->hob_lbam,
140 tf->hob_lbah);
141 }
142
143 if (is_addr) {
144 iowrite8(tf->feature, ioaddr->feature_addr);
145 iowrite8(tf->nsect, ioaddr->nsect_addr);
146 iowrite8(tf->lbal, ioaddr->lbal_addr);
147 iowrite8(tf->lbam, ioaddr->lbam_addr);
148 iowrite8(tf->lbah, ioaddr->lbah_addr);
149 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
150 tf->feature,
151 tf->nsect,
152 tf->lbal,
153 tf->lbam,
154 tf->lbah);
155 }
156
157 if (tf->flags & ATA_TFLAG_DEVICE) {
158 iowrite8(tf->device, ioaddr->device_addr);
159 VPRINTK("device 0x%X\n", tf->device);
160 }
161
162 ata_wait_idle(ap);
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500163}
164
165/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500166 * ata_exec_command - issue ATA command to host controller
167 * @ap: port to which command is being issued
168 * @tf: ATA taskfile register set
169 *
Tejun Heo0d5ff562007-02-01 15:06:36 +0900170 * Issues ATA command, with proper synchronization with interrupt
171 * handler / other threads.
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500172 *
173 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400174 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500175 */
176void ata_exec_command(struct ata_port *ap, const struct ata_taskfile *tf)
177{
Tejun Heo44877b42007-02-21 01:06:51 +0900178 DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
Tejun Heo0d5ff562007-02-01 15:06:36 +0900179
180 iowrite8(tf->command, ap->ioaddr.command_addr);
181 ata_pause(ap);
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500182}
183
184/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500185 * ata_tf_read - input device's ATA taskfile shadow registers
186 * @ap: Port from which input is read
187 * @tf: ATA taskfile register set for storing input
188 *
189 * Reads ATA taskfile registers for currently-selected device
190 * into @tf.
191 *
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500192 * LOCKING:
193 * Inherited from caller.
194 */
195void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
196{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900197 struct ata_ioports *ioaddr = &ap->ioaddr;
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500198
Tejun Heo0d5ff562007-02-01 15:06:36 +0900199 tf->command = ata_check_status(ap);
200 tf->feature = ioread8(ioaddr->error_addr);
201 tf->nsect = ioread8(ioaddr->nsect_addr);
202 tf->lbal = ioread8(ioaddr->lbal_addr);
203 tf->lbam = ioread8(ioaddr->lbam_addr);
204 tf->lbah = ioread8(ioaddr->lbah_addr);
205 tf->device = ioread8(ioaddr->device_addr);
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500206
Tejun Heo0d5ff562007-02-01 15:06:36 +0900207 if (tf->flags & ATA_TFLAG_LBA48) {
208 iowrite8(tf->ctl | ATA_HOB, ioaddr->ctl_addr);
209 tf->hob_feature = ioread8(ioaddr->error_addr);
210 tf->hob_nsect = ioread8(ioaddr->nsect_addr);
211 tf->hob_lbal = ioread8(ioaddr->lbal_addr);
212 tf->hob_lbam = ioread8(ioaddr->lbam_addr);
213 tf->hob_lbah = ioread8(ioaddr->lbah_addr);
214 }
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500215}
216
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500217/**
218 * ata_check_status - Read device status reg & clear interrupt
219 * @ap: port where the device is
220 *
221 * Reads ATA taskfile status register for currently-selected device
222 * and return its value. This also clears pending interrupts
223 * from this device
224 *
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500225 * LOCKING:
226 * Inherited from caller.
227 */
228u8 ata_check_status(struct ata_port *ap)
229{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900230 return ioread8(ap->ioaddr.status_addr);
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500231}
232
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500233/**
234 * ata_altstatus - Read device alternate status reg
235 * @ap: port where the device is
236 *
237 * Reads ATA taskfile alternate status register for
238 * currently-selected device and return its value.
239 *
240 * Note: may NOT be used as the check_altstatus() entry in
241 * ata_port_operations.
242 *
243 * LOCKING:
244 * Inherited from caller.
245 */
246u8 ata_altstatus(struct ata_port *ap)
247{
248 if (ap->ops->check_altstatus)
249 return ap->ops->check_altstatus(ap);
250
Tejun Heo0d5ff562007-02-01 15:06:36 +0900251 return ioread8(ap->ioaddr.altstatus_addr);
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500252}
253
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500254/**
Tejun Heo0d5ff562007-02-01 15:06:36 +0900255 * ata_bmdma_setup - Set up PCI IDE BMDMA transaction
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500256 * @qc: Info associated with this ATA transaction.
257 *
258 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400259 * spin_lock_irqsave(host lock)
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500260 */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900261void ata_bmdma_setup(struct ata_queued_cmd *qc)
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500262{
263 struct ata_port *ap = qc->ap;
264 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
265 u8 dmactl;
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500266
267 /* load PRD table addr. */
268 mb(); /* make sure PRD table writes are visible to controller */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900269 iowrite32(ap->prd_dma, ap->ioaddr.bmdma_addr + ATA_DMA_TABLE_OFS);
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500270
271 /* specify data direction, triple-check start bit is clear */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900272 dmactl = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500273 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
274 if (!rw)
275 dmactl |= ATA_DMA_WR;
Tejun Heo0d5ff562007-02-01 15:06:36 +0900276 iowrite8(dmactl, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500277
278 /* issue r/w command */
279 ap->ops->exec_command(ap, &qc->tf);
280}
281
282/**
Tejun Heo0d5ff562007-02-01 15:06:36 +0900283 * ata_bmdma_start - Start a PCI IDE BMDMA transaction
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500284 * @qc: Info associated with this ATA transaction.
285 *
286 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400287 * spin_lock_irqsave(host lock)
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500288 */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900289void ata_bmdma_start (struct ata_queued_cmd *qc)
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500290{
291 struct ata_port *ap = qc->ap;
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500292 u8 dmactl;
293
294 /* start host DMA transaction */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900295 dmactl = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
296 iowrite8(dmactl | ATA_DMA_START, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500297
298 /* Strictly, one may wish to issue a readb() here, to
299 * flush the mmio write. However, control also passes
300 * to the hardware at this point, and it will interrupt
301 * us when we are to resume control. So, in effect,
302 * we don't care when the mmio write flushes.
303 * Further, a read of the DMA status register _immediately_
304 * following the write may not be what certain flaky hardware
305 * is expected, so I think it is best to not add a readb()
306 * without first all the MMIO ATA cards/mobos.
307 * Or maybe I'm just being paranoid.
308 */
309}
310
311/**
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500312 * ata_bmdma_irq_clear - Clear PCI IDE BMDMA interrupt.
313 * @ap: Port associated with this ATA transaction.
314 *
315 * Clear interrupt and error flags in DMA status register.
316 *
317 * May be used as the irq_clear() entry in ata_port_operations.
318 *
319 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400320 * spin_lock_irqsave(host lock)
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500321 */
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500322void ata_bmdma_irq_clear(struct ata_port *ap)
323{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900324 void __iomem *mmio = ap->ioaddr.bmdma_addr;
325
326 if (!mmio)
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500327 return;
328
Tejun Heo0d5ff562007-02-01 15:06:36 +0900329 iowrite8(ioread8(mmio + ATA_DMA_STATUS), mmio + ATA_DMA_STATUS);
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500330}
331
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500332/**
333 * ata_bmdma_status - Read PCI IDE BMDMA status
334 * @ap: Port associated with this ATA transaction.
335 *
336 * Read and return BMDMA status register.
337 *
338 * May be used as the bmdma_status() entry in ata_port_operations.
339 *
340 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400341 * spin_lock_irqsave(host lock)
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500342 */
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500343u8 ata_bmdma_status(struct ata_port *ap)
344{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900345 return ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500346}
347
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500348/**
349 * ata_bmdma_stop - Stop PCI IDE BMDMA transfer
350 * @qc: Command we are ending DMA for
351 *
352 * Clears the ATA_DMA_START flag in the dma control register
353 *
354 * May be used as the bmdma_stop() entry in ata_port_operations.
355 *
356 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400357 * spin_lock_irqsave(host lock)
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500358 */
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500359void ata_bmdma_stop(struct ata_queued_cmd *qc)
360{
361 struct ata_port *ap = qc->ap;
Tejun Heo0d5ff562007-02-01 15:06:36 +0900362 void __iomem *mmio = ap->ioaddr.bmdma_addr;
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500363
Tejun Heo0d5ff562007-02-01 15:06:36 +0900364 /* clear start/stop bit */
365 iowrite8(ioread8(mmio + ATA_DMA_CMD) & ~ATA_DMA_START,
366 mmio + ATA_DMA_CMD);
Jeff Garzik2cc432e2006-03-23 00:32:03 -0500367
368 /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
369 ata_altstatus(ap); /* dummy read */
370}
371
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900372/**
373 * ata_bmdma_freeze - Freeze BMDMA controller port
374 * @ap: port to freeze
375 *
376 * Freeze BMDMA controller port.
377 *
378 * LOCKING:
379 * Inherited from caller.
380 */
381void ata_bmdma_freeze(struct ata_port *ap)
382{
383 struct ata_ioports *ioaddr = &ap->ioaddr;
384
385 ap->ctl |= ATA_NIEN;
386 ap->last_ctl = ap->ctl;
387
Tejun Heo0d5ff562007-02-01 15:06:36 +0900388 iowrite8(ap->ctl, ioaddr->ctl_addr);
Tejun Heo0f0a3ad2006-11-17 12:24:22 +0900389
390 /* Under certain circumstances, some controllers raise IRQ on
391 * ATA_NIEN manipulation. Also, many controllers fail to mask
392 * previously pending IRQ on ATA_NIEN assertion. Clear it.
393 */
394 ata_chk_status(ap);
395
396 ap->ops->irq_clear(ap);
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900397}
398
399/**
400 * ata_bmdma_thaw - Thaw BMDMA controller port
401 * @ap: port to thaw
402 *
403 * Thaw BMDMA controller port.
404 *
405 * LOCKING:
406 * Inherited from caller.
407 */
408void ata_bmdma_thaw(struct ata_port *ap)
409{
410 /* clear & re-enable interrupts */
411 ata_chk_status(ap);
412 ap->ops->irq_clear(ap);
Akira Iguchi83625002007-01-26 16:27:32 +0900413 ap->ops->irq_on(ap);
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900414}
415
416/**
417 * ata_bmdma_drive_eh - Perform EH with given methods for BMDMA controller
418 * @ap: port to handle error for
Tejun Heof5914a42006-05-31 18:27:48 +0900419 * @prereset: prereset method (can be NULL)
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900420 * @softreset: softreset method (can be NULL)
421 * @hardreset: hardreset method (can be NULL)
422 * @postreset: postreset method (can be NULL)
423 *
424 * Handle error for ATA BMDMA controller. It can handle both
425 * PATA and SATA controllers. Many controllers should be able to
426 * use this EH as-is or with some added handling before and
427 * after.
428 *
429 * This function is intended to be used for constructing
430 * ->error_handler callback by low level drivers.
431 *
432 * LOCKING:
433 * Kernel thread context (may sleep)
434 */
Tejun Heof5914a42006-05-31 18:27:48 +0900435void ata_bmdma_drive_eh(struct ata_port *ap, ata_prereset_fn_t prereset,
436 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
437 ata_postreset_fn_t postreset)
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900438{
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900439 struct ata_queued_cmd *qc;
440 unsigned long flags;
441 int thaw = 0;
442
443 qc = __ata_qc_from_tag(ap, ap->active_tag);
444 if (qc && !(qc->flags & ATA_QCFLAG_FAILED))
445 qc = NULL;
446
447 /* reset PIO HSM and stop DMA engine */
Jeff Garzikba6a1302006-06-22 23:46:10 -0400448 spin_lock_irqsave(ap->lock, flags);
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900449
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900450 ap->hsm_task_state = HSM_ST_IDLE;
451
452 if (qc && (qc->tf.protocol == ATA_PROT_DMA ||
453 qc->tf.protocol == ATA_PROT_ATAPI_DMA)) {
454 u8 host_stat;
455
Robert Hancockfbbb2622006-10-27 19:08:41 -0700456 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900457
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900458 /* BMDMA controllers indicate host bus error by
459 * setting DMA_ERR bit and timing out. As it wasn't
460 * really a timeout event, adjust error mask and
461 * cancel frozen state.
462 */
Alan18d90de2007-01-24 11:42:38 +0000463 if (qc->err_mask == AC_ERR_TIMEOUT && (host_stat & ATA_DMA_ERR)) {
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900464 qc->err_mask = AC_ERR_HOST_BUS;
465 thaw = 1;
466 }
467
468 ap->ops->bmdma_stop(qc);
469 }
470
471 ata_altstatus(ap);
472 ata_chk_status(ap);
473 ap->ops->irq_clear(ap);
474
Jeff Garzikba6a1302006-06-22 23:46:10 -0400475 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900476
477 if (thaw)
478 ata_eh_thaw_port(ap);
479
480 /* PIO and DMA engines have been stopped, perform recovery */
Tejun Heof5914a42006-05-31 18:27:48 +0900481 ata_do_eh(ap, prereset, softreset, hardreset, postreset);
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900482}
483
484/**
485 * ata_bmdma_error_handler - Stock error handler for BMDMA controller
486 * @ap: port to handle error for
487 *
488 * Stock error handler for BMDMA controller.
489 *
490 * LOCKING:
491 * Kernel thread context (may sleep)
492 */
493void ata_bmdma_error_handler(struct ata_port *ap)
494{
495 ata_reset_fn_t hardreset;
496
497 hardreset = NULL;
498 if (sata_scr_valid(ap))
499 hardreset = sata_std_hardreset;
500
Tejun Heof5914a42006-05-31 18:27:48 +0900501 ata_bmdma_drive_eh(ap, ata_std_prereset, ata_std_softreset, hardreset,
502 ata_std_postreset);
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900503}
504
505/**
506 * ata_bmdma_post_internal_cmd - Stock post_internal_cmd for
507 * BMDMA controller
508 * @qc: internal command to clean up
509 *
510 * LOCKING:
511 * Kernel thread context (may sleep)
512 */
513void ata_bmdma_post_internal_cmd(struct ata_queued_cmd *qc)
514{
Alan61dd08c2007-01-25 15:09:05 +0000515 if (qc->ap->ioaddr.bmdma_addr)
516 ata_bmdma_stop(qc);
Tejun Heo6d97dbd2006-05-15 20:58:24 +0900517}
518
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500519#ifdef CONFIG_PCI
Alan4112e162007-01-08 12:10:05 +0000520
521static int ata_resources_present(struct pci_dev *pdev, int port)
522{
523 int i;
Jeff Garzika84471f2007-02-26 05:51:33 -0500524
Alan4112e162007-01-08 12:10:05 +0000525 /* Check the PCI resources for this channel are enabled */
526 port = port * 2;
527 for (i = 0; i < 2; i ++) {
528 if (pci_resource_start(pdev, port + i) == 0 ||
Tejun Heo55a6ade2007-03-09 19:43:35 +0900529 pci_resource_len(pdev, port + i) == 0)
530 return 0;
Alan4112e162007-01-08 12:10:05 +0000531 }
532 return 1;
533}
Jeff Garzika84471f2007-02-26 05:51:33 -0500534
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500535/**
Tejun Heo0f834de2007-04-17 23:44:07 +0900536 * ata_pci_init_bmdma - acquire PCI BMDMA resources and init ATA host
537 * @host: target ATA host
538 *
539 * Acquire PCI BMDMA resources and initialize @host accordingly.
540 *
541 * LOCKING:
542 * Inherited from calling layer (may sleep).
543 *
544 * RETURNS:
545 * 0 on success, -errno otherwise.
546 */
547static int ata_pci_init_bmdma(struct ata_host *host)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500548{
Tejun Heo0f834de2007-04-17 23:44:07 +0900549 struct device *gdev = host->dev;
550 struct pci_dev *pdev = to_pci_dev(gdev);
551 int i, rc;
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500552
Tejun Heo0f834de2007-04-17 23:44:07 +0900553 /* TODO: If we get no DMA mask we should fall back to PIO */
554 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
555 if (rc)
556 return rc;
557 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
558 if (rc)
559 return rc;
560
561 /* request and iomap DMA region */
562 rc = pcim_iomap_regions(pdev, 1 << 4, DRV_NAME);
563 if (rc) {
564 dev_printk(KERN_ERR, gdev, "failed to request/iomap BAR4\n");
565 return -ENOMEM;
566 }
567 host->iomap = pcim_iomap_table(pdev);
568
Linus Torvaldsdc87c392007-04-30 17:43:48 -0700569 for (i = 0; i < host->n_ports; i++) {
Tejun Heo0f834de2007-04-17 23:44:07 +0900570 struct ata_port *ap = host->ports[i];
Tejun Heo0f834de2007-04-17 23:44:07 +0900571 void __iomem *bmdma = host->iomap[4] + 8 * i;
572
573 if (ata_port_is_dummy(ap))
574 continue;
575
Tejun Heo21b0ad42007-04-17 23:44:07 +0900576 ap->ioaddr.bmdma_addr = bmdma;
Tejun Heo0f834de2007-04-17 23:44:07 +0900577 if ((!(ap->flags & ATA_FLAG_IGN_SIMPLEX)) &&
578 (ioread8(bmdma + 2) & 0x80))
579 host->flags |= ATA_HOST_SIMPLEX;
Tejun Heo0d5ff562007-02-01 15:06:36 +0900580 }
581
Tejun Heo0f834de2007-04-17 23:44:07 +0900582 return 0;
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500583}
584
Tejun Heod491b272007-04-17 23:44:07 +0900585/**
586 * ata_pci_init_native_host - acquire native ATA resources and init host
587 * @host: target ATA host
588 * @port_mask: ports to consider
589 *
590 * Acquire native PCI ATA resources for @host and initialize
591 * @host accordoingly.
592 *
593 * LOCKING:
594 * Inherited from calling layer (may sleep).
595 *
596 * RETURNS:
597 * 0 on success, -errno otherwise.
598 */
599int ata_pci_init_native_host(struct ata_host *host, unsigned int port_mask)
600{
601 struct device *gdev = host->dev;
602 struct pci_dev *pdev = to_pci_dev(gdev);
603 int i, rc;
604
605 /* Discard disabled ports. Some controllers show their unused
606 * channels this way. Disabled ports are made dummy.
607 */
608 for (i = 0; i < 2; i++) {
609 if ((port_mask & (1 << i)) && !ata_resources_present(pdev, i)) {
610 host->ports[i]->ops = &ata_dummy_port_ops;
611 port_mask &= ~(1 << i);
612 }
613 }
614
615 if (!port_mask) {
616 dev_printk(KERN_ERR, gdev, "no available port\n");
617 return -ENODEV;
618 }
619
620 /* request, iomap BARs and init port addresses accordingly */
621 for (i = 0; i < 2; i++) {
622 struct ata_port *ap = host->ports[i];
623 int base = i * 2;
624 void __iomem * const *iomap;
625
626 if (!(port_mask & (1 << i)))
627 continue;
628
629 rc = pcim_iomap_regions(pdev, 0x3 << base, DRV_NAME);
630 if (rc) {
631 dev_printk(KERN_ERR, gdev, "failed to request/iomap "
632 "BARs for port %d (errno=%d)\n", i, rc);
633 if (rc == -EBUSY)
634 pcim_pin_device(pdev);
635 return rc;
636 }
637 host->iomap = iomap = pcim_iomap_table(pdev);
638
639 ap->ioaddr.cmd_addr = iomap[base];
640 ap->ioaddr.altstatus_addr =
641 ap->ioaddr.ctl_addr = (void __iomem *)
642 ((unsigned long)iomap[base + 1] | ATA_PCI_CTL_OFS);
643 ata_std_ports(&ap->ioaddr);
644 }
645
646 return 0;
647}
648
Tejun Heo21b0ad42007-04-17 23:44:07 +0900649/**
650 * ata_pci_prepare_native_host - helper to prepare native PCI ATA host
651 * @pdev: target PCI device
652 * @ppi: array of port_info
653 * @n_ports: number of ports to allocate
654 * @r_host: out argument for the initialized ATA host
655 *
656 * Helper to allocate ATA host for @pdev, acquire all native PCI
657 * resources and initialize it accordingly in one go.
658 *
659 * LOCKING:
660 * Inherited from calling layer (may sleep).
661 *
662 * RETURNS:
663 * 0 on success, -errno otherwise.
664 */
665int ata_pci_prepare_native_host(struct pci_dev *pdev,
666 const struct ata_port_info * const * ppi,
667 int n_ports, struct ata_host **r_host)
668{
669 struct ata_host *host;
670 unsigned int port_mask;
671 int rc;
672
673 if (!devres_open_group(&pdev->dev, NULL, GFP_KERNEL))
674 return -ENOMEM;
675
676 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
677 if (!host) {
678 dev_printk(KERN_ERR, &pdev->dev,
679 "failed to allocate ATA host\n");
680 rc = -ENOMEM;
681 goto err_out;
682 }
683
684 port_mask = ATA_PORT_PRIMARY;
685 if (n_ports > 1)
686 port_mask |= ATA_PORT_SECONDARY;
687
688 rc = ata_pci_init_native_host(host, port_mask);
689 if (rc)
690 goto err_out;
691
692 /* init DMA related stuff */
693 rc = ata_pci_init_bmdma(host);
694 if (rc)
695 goto err_bmdma;
696
697 devres_remove_group(&pdev->dev, NULL);
698 *r_host = host;
699 return 0;
700
701 err_bmdma:
702 /* This is necessary because PCI and iomap resources are
703 * merged and releasing the top group won't release the
704 * acquired resources if some of those have been acquired
705 * before entering this function.
706 */
707 pcim_iounmap_regions(pdev, 0xf);
708 err_out:
709 devres_release_group(&pdev->dev, NULL);
710 return rc;
711}
712
Tejun Heo0f834de2007-04-17 23:44:07 +0900713struct ata_legacy_devres {
714 unsigned int mask;
715 unsigned long cmd_port[2];
716 void __iomem * cmd_addr[2];
717 void __iomem * ctl_addr[2];
718 unsigned int irq[2];
719 void * irq_dev_id[2];
720};
721
722static void ata_legacy_free_irqs(struct ata_legacy_devres *legacy_dr)
723{
724 int i;
725
726 for (i = 0; i < 2; i++) {
727 if (!legacy_dr->irq[i])
728 continue;
729
730 free_irq(legacy_dr->irq[i], legacy_dr->irq_dev_id[i]);
731 legacy_dr->irq[i] = 0;
732 legacy_dr->irq_dev_id[i] = NULL;
733 }
734}
735
736static void ata_legacy_release(struct device *gdev, void *res)
737{
738 struct ata_legacy_devres *this = res;
739 int i;
740
741 ata_legacy_free_irqs(this);
742
743 for (i = 0; i < 2; i++) {
744 if (this->cmd_addr[i])
745 ioport_unmap(this->cmd_addr[i]);
746 if (this->ctl_addr[i])
747 ioport_unmap(this->ctl_addr[i]);
748 if (this->cmd_port[i])
749 release_region(this->cmd_port[i], 8);
750 }
751}
752
753static int ata_init_legacy_port(struct ata_port *ap,
754 struct ata_legacy_devres *legacy_dr)
755{
756 struct ata_host *host = ap->host;
757 int port_no = ap->port_no;
758 unsigned long cmd_port, ctl_port;
759
760 if (port_no == 0) {
761 cmd_port = ATA_PRIMARY_CMD;
762 ctl_port = ATA_PRIMARY_CTL;
763 } else {
764 cmd_port = ATA_SECONDARY_CMD;
765 ctl_port = ATA_SECONDARY_CTL;
766 }
767
768 /* request cmd_port */
769 if (request_region(cmd_port, 8, "libata"))
770 legacy_dr->cmd_port[port_no] = cmd_port;
771 else {
772 dev_printk(KERN_WARNING, host->dev,
773 "0x%0lX IDE port busy\n", cmd_port);
774 return -EBUSY;
775 }
776
777 /* iomap cmd and ctl ports */
778 legacy_dr->cmd_addr[port_no] = ioport_map(cmd_port, 8);
779 legacy_dr->ctl_addr[port_no] = ioport_map(ctl_port, 1);
780 if (!legacy_dr->cmd_addr[port_no] || !legacy_dr->ctl_addr[port_no])
781 return -ENOMEM;
782
783 /* init IO addresses */
784 ap->ioaddr.cmd_addr = legacy_dr->cmd_addr[port_no];
785 ap->ioaddr.altstatus_addr = legacy_dr->ctl_addr[port_no];
786 ap->ioaddr.ctl_addr = legacy_dr->ctl_addr[port_no];
787 ata_std_ports(&ap->ioaddr);
788
789 return 0;
790}
791
792/**
793 * ata_init_legacy_host - acquire legacy ATA resources and init ATA host
794 * @host: target ATA host
795 * @legacy_mask: out parameter, mask indicating ports is in legacy mode
796 * @was_busy: out parameter, indicates whether any port was busy
797 *
798 * Acquire legacy ATA resources for ports.
799 *
800 * LOCKING:
801 * Inherited from calling layer (may sleep).
802 *
803 * RETURNS:
804 * 0 on success, -errno otherwise.
805 */
806static int ata_init_legacy_host(struct ata_host *host,
807 unsigned int *legacy_mask, int *was_busy)
808{
809 struct device *gdev = host->dev;
810 struct ata_legacy_devres *legacy_dr;
811 int i, rc;
812
813 if (!devres_open_group(gdev, NULL, GFP_KERNEL))
814 return -ENOMEM;
815
816 rc = -ENOMEM;
817 legacy_dr = devres_alloc(ata_legacy_release, sizeof(*legacy_dr),
818 GFP_KERNEL);
819 if (!legacy_dr)
820 goto err_out;
821 devres_add(gdev, legacy_dr);
822
823 for (i = 0; i < 2; i++) {
824 *legacy_mask &= ~(1 << i);
825 rc = ata_init_legacy_port(host->ports[i], legacy_dr);
826 if (rc == 0)
827 legacy_dr->mask |= 1 << i;
828 else if (rc == -EBUSY)
829 (*was_busy)++;
830 }
831
832 if (!legacy_dr->mask)
833 return -EBUSY;
834
835 for (i = 0; i < 2; i++)
836 if (!(legacy_dr->mask & (1 << i)))
837 host->ports[i]->ops = &ata_dummy_port_ops;
838
839 *legacy_mask |= legacy_dr->mask;
840
841 devres_remove_group(gdev, NULL);
842 return 0;
843
844 err_out:
845 devres_release_group(gdev, NULL);
846 return rc;
847}
848
849/**
850 * ata_request_legacy_irqs - request legacy ATA IRQs
851 * @host: target ATA host
852 * @handler: array of IRQ handlers
853 * @irq_flags: array of IRQ flags
854 * @dev_id: array of IRQ dev_ids
855 *
856 * Request legacy IRQs for non-dummy legacy ports in @host. All
857 * IRQ parameters are passed as array to allow ports to have
858 * separate IRQ handlers.
859 *
860 * LOCKING:
861 * Inherited from calling layer (may sleep).
862 *
863 * RETURNS:
864 * 0 on success, -errno otherwise.
865 */
866static int ata_request_legacy_irqs(struct ata_host *host,
867 irq_handler_t const *handler,
868 const unsigned int *irq_flags,
869 void * const *dev_id)
870{
871 struct device *gdev = host->dev;
872 struct ata_legacy_devres *legacy_dr;
873 int i, rc;
874
875 legacy_dr = devres_find(host->dev, ata_legacy_release, NULL, NULL);
876 BUG_ON(!legacy_dr);
877
Linus Torvaldsdc87c392007-04-30 17:43:48 -0700878 for (i = 0; i < host->n_ports; i++) {
Tejun Heo0f834de2007-04-17 23:44:07 +0900879 unsigned int irq;
880
881 /* FIXME: ATA_*_IRQ() should take generic device not pci_dev */
882 if (i == 0)
883 irq = ATA_PRIMARY_IRQ(to_pci_dev(gdev));
884 else
885 irq = ATA_SECONDARY_IRQ(to_pci_dev(gdev));
886
887 if (!(legacy_dr->mask & (1 << i)))
888 continue;
889
890 if (!handler[i]) {
891 dev_printk(KERN_ERR, gdev,
892 "NULL handler specified for port %d\n", i);
893 rc = -EINVAL;
894 goto err_out;
895 }
896
897 rc = request_irq(irq, handler[i], irq_flags[i], DRV_NAME,
898 dev_id[i]);
899 if (rc) {
900 dev_printk(KERN_ERR, gdev,
901 "irq %u request failed (errno=%d)\n", irq, rc);
902 goto err_out;
903 }
904
905 /* record irq allocation in legacy_dr */
906 legacy_dr->irq[i] = irq;
907 legacy_dr->irq_dev_id[i] = dev_id[i];
908
909 /* only used to print info */
910 if (i == 0)
911 host->irq = irq;
912 else
913 host->irq2 = irq;
914 }
915
916 return 0;
917
918 err_out:
919 ata_legacy_free_irqs(legacy_dr);
920 return rc;
921}
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500922
923/**
924 * ata_pci_init_one - Initialize/register PCI IDE host controller
925 * @pdev: Controller to be initialized
926 * @port_info: Information from low-level host driver
927 * @n_ports: Number of ports attached to host controller
928 *
929 * This is a helper function which can be called from a driver's
930 * xxx_init_one() probe function if the hardware uses traditional
931 * IDE taskfile registers.
932 *
933 * This function calls pci_enable_device(), reserves its register
934 * regions, sets the dma mask, enables bus master mode, and calls
935 * ata_device_add()
936 *
Alan Cox2ec7df02006-08-10 16:59:10 +0900937 * ASSUMPTION:
938 * Nobody makes a single channel controller that appears solely as
939 * the secondary legacy port on PCI.
940 *
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500941 * LOCKING:
942 * Inherited from PCI layer (may sleep).
943 *
944 * RETURNS:
945 * Zero on success, negative on errno-based value on error.
946 */
947
948int ata_pci_init_one (struct pci_dev *pdev, struct ata_port_info **port_info,
949 unsigned int n_ports)
950{
Tejun Heof0d36ef2007-01-20 16:00:28 +0900951 struct device *dev = &pdev->dev;
Tejun Heo0f834de2007-04-17 23:44:07 +0900952 struct ata_host *host = NULL;
953 const struct ata_port_info *port[2];
Jeff Garzikc791c302006-09-28 03:40:11 -0400954 u8 mask;
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500955 unsigned int legacy_mode = 0;
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500956 int rc;
957
958 DPRINTK("ENTER\n");
959
Tejun Heof0d36ef2007-01-20 16:00:28 +0900960 if (!devres_open_group(dev, NULL, GFP_KERNEL))
961 return -ENOMEM;
962
Jeff Garzikc791c302006-09-28 03:40:11 -0400963 BUG_ON(n_ports < 1 || n_ports > 2);
964
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500965 port[0] = port_info[0];
Linus Torvaldsdc87c392007-04-30 17:43:48 -0700966 port[1] = (n_ports > 1) ? port_info[1] : NULL;
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500967
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500968 /* FIXME: Really for ATA it isn't safe because the device may be
969 multi-purpose and we want to leave it alone if it was already
970 enabled. Secondly for shared use as Arjan says we want refcounting
971
972 Checking dev->is_enabled is insufficient as this is not set at
973 boot for the primary video which is BIOS enabled
Tejun Heod491b272007-04-17 23:44:07 +0900974 */
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500975
Tejun Heof0d36ef2007-01-20 16:00:28 +0900976 rc = pcim_enable_device(pdev);
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500977 if (rc)
Tejun Heof0d36ef2007-01-20 16:00:28 +0900978 goto err_out;
Jeff Garzik1fdffbc2006-02-09 05:15:27 -0500979
Jeff Garzikc791c302006-09-28 03:40:11 -0400980 if ((pdev->class >> 8) == PCI_CLASS_STORAGE_IDE) {
981 u8 tmp8;
982
983 /* TODO: What if one channel is in native mode ... */
984 pci_read_config_byte(pdev, PCI_CLASS_PROG, &tmp8);
985 mask = (1 << 2) | (1 << 0);
986 if ((tmp8 & mask) != mask)
987 legacy_mode = (1 << 3);
Alan Cox8eb166b2006-10-16 16:24:50 +0100988#if defined(CONFIG_NO_ATA_LEGACY)
989 /* Some platforms with PCI limits cannot address compat
990 port space. In that case we punt if their firmware has
991 left a device in compatibility mode */
992 if (legacy_mode) {
993 printk(KERN_ERR "ata: Compatibility mode ATA is not supported on this platform, skipping.\n");
Tejun Heof0d36ef2007-01-20 16:00:28 +0900994 rc = -EOPNOTSUPP;
995 goto err_out;
Alan Cox8eb166b2006-10-16 16:24:50 +0100996 }
997#endif
Jeff Garzikc791c302006-09-28 03:40:11 -0400998 }
999
Tejun Heod491b272007-04-17 23:44:07 +09001000 /* alloc and init host */
Linus Torvaldsdc87c392007-04-30 17:43:48 -07001001 host = ata_host_alloc_pinfo(dev, port, n_ports);
Tejun Heod491b272007-04-17 23:44:07 +09001002 if (!host) {
1003 dev_printk(KERN_ERR, &pdev->dev,
1004 "failed to allocate ATA host\n");
1005 rc = -ENOMEM;
1006 goto err_out;
1007 }
1008
Alandc3c3372007-01-02 11:58:34 +00001009 if (!legacy_mode) {
Tejun Heod491b272007-04-17 23:44:07 +09001010 unsigned int port_mask;
Tejun Heo0f834de2007-04-17 23:44:07 +09001011
Tejun Heod491b272007-04-17 23:44:07 +09001012 port_mask = ATA_PORT_PRIMARY;
1013 if (n_ports > 1)
1014 port_mask |= ATA_PORT_SECONDARY;
1015
1016 rc = ata_pci_init_native_host(host, port_mask);
Tejun Heo0f834de2007-04-17 23:44:07 +09001017 if (rc)
1018 goto err_out;
Alandc3c3372007-01-02 11:58:34 +00001019 } else {
Tejun Heo0f834de2007-04-17 23:44:07 +09001020 int was_busy = 0;
1021
Tejun Heo0f834de2007-04-17 23:44:07 +09001022 rc = ata_init_legacy_host(host, &legacy_mode, &was_busy);
1023 if (was_busy)
Jeff Garzik8cdfb292007-03-09 10:54:42 -05001024 pcim_pin_device(pdev);
Tejun Heo0f834de2007-04-17 23:44:07 +09001025 if (rc)
1026 goto err_out;
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001027
Tejun Heo0f834de2007-04-17 23:44:07 +09001028 /* request respective PCI regions, may fail */
1029 rc = pci_request_region(pdev, 1, DRV_NAME);
1030 rc = pci_request_region(pdev, 3, DRV_NAME);
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001031 }
1032
Tejun Heod491b272007-04-17 23:44:07 +09001033 /* init BMDMA, may fail */
1034 ata_pci_init_bmdma(host);
1035 pci_set_master(pdev);
1036
1037 /* start host and request IRQ */
1038 rc = ata_host_start(host);
1039 if (rc)
1040 goto err_out;
1041
1042 if (!legacy_mode)
1043 rc = devm_request_irq(dev, pdev->irq,
1044 port_info[0]->port_ops->irq_handler,
1045 IRQF_SHARED, DRV_NAME, host);
1046 else {
Tejun Heo0f834de2007-04-17 23:44:07 +09001047 irq_handler_t handler[2] = { host->ops->irq_handler,
1048 host->ops->irq_handler };
1049 unsigned int irq_flags[2] = { IRQF_SHARED, IRQF_SHARED };
1050 void *dev_id[2] = { host, host };
1051
Tejun Heo0f834de2007-04-17 23:44:07 +09001052 rc = ata_request_legacy_irqs(host, handler, irq_flags, dev_id);
Jeff Garzikc791c302006-09-28 03:40:11 -04001053 }
Tejun Heod491b272007-04-17 23:44:07 +09001054 if (rc)
1055 goto err_out;
1056
1057 /* register */
1058 rc = ata_host_register(host, port_info[0]->sht);
1059 if (rc)
1060 goto err_out;
1061
Tejun Heof0d36ef2007-01-20 16:00:28 +09001062 devres_remove_group(dev, NULL);
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001063 return 0;
1064
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001065err_out:
Tejun Heof0d36ef2007-01-20 16:00:28 +09001066 devres_release_group(dev, NULL);
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001067 return rc;
1068}
1069
Alan Coxd33d44f2006-03-21 15:59:57 +00001070/**
1071 * ata_pci_clear_simplex - attempt to kick device out of simplex
1072 * @pdev: PCI device
1073 *
1074 * Some PCI ATA devices report simplex mode but in fact can be told to
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001075 * enter non simplex mode. This implements the neccessary logic to
Alan Coxd33d44f2006-03-21 15:59:57 +00001076 * perform the task on such devices. Calling it on other devices will
1077 * have -undefined- behaviour.
1078 */
1079
1080int ata_pci_clear_simplex(struct pci_dev *pdev)
1081{
1082 unsigned long bmdma = pci_resource_start(pdev, 4);
1083 u8 simplex;
1084
1085 if (bmdma == 0)
1086 return -ENOENT;
1087
1088 simplex = inb(bmdma + 0x02);
1089 outb(simplex & 0x60, bmdma + 0x02);
1090 simplex = inb(bmdma + 0x02);
1091 if (simplex & 0x80)
1092 return -EOPNOTSUPP;
1093 return 0;
1094}
1095
Alan Coxa76b62c2007-03-09 09:34:07 -05001096unsigned long ata_pci_default_filter(struct ata_device *adev, unsigned long xfer_mask)
Alan Coxd33d44f2006-03-21 15:59:57 +00001097{
1098 /* Filter out DMA modes if the device has been configured by
1099 the BIOS as PIO only */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001100
Alan Coxa76b62c2007-03-09 09:34:07 -05001101 if (adev->ap->ioaddr.bmdma_addr == 0)
Alan Coxd33d44f2006-03-21 15:59:57 +00001102 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
1103 return xfer_mask;
1104}
1105
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05001106#endif /* CONFIG_PCI */
1107