libata: simplify PCI legacy SFF host handling
[deliverable/linux.git] / drivers / ata / libata-sff.c
CommitLineData
1fdffbce
JG
1/*
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
1fdffbce
JG
35#include <linux/kernel.h>
36#include <linux/pci.h>
37#include <linux/libata.h>
38
39#include "libata.h"
40
90088bb4
TH
41/**
42 * 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
0d5ff566 59 iowrite8(ap->ctl, ioaddr->ctl_addr);
90088bb4
TH
60 tmp = ata_wait_idle(ap);
61
62 ap->ops->irq_clear(ap);
63
64 return tmp;
65}
66
83625006
AI
67u8 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;
d92e74d3 83 u8 host_stat = 0, post_stat = 0, status;
83625006
AI
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
d92e74d3
AC
90 if (ap->ioaddr.bmdma_addr) {
91 /* get controller status; clear intr, err bits */
92 host_stat = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
93 iowrite8(host_stat | ATA_DMA_INTR | ATA_DMA_ERR,
94 ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
83625006 95
d92e74d3
AC
96 post_stat = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
97 }
83625006
AI
98 if (ata_msg_intr(ap))
99 printk(KERN_INFO "%s: irq ack: host_stat 0x%X, new host_stat 0x%X, drv_stat 0x%X\n",
100 __FUNCTION__,
101 host_stat, post_stat, status);
83625006
AI
102 return status;
103}
104
105u8 ata_dummy_irq_ack(struct ata_port *ap, unsigned int chk_drq) { return 0; }
106
1fdffbce 107/**
0d5ff566 108 * ata_tf_load - send taskfile registers to host controller
1fdffbce
JG
109 * @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
0d5ff566 118void ata_tf_load(struct ata_port *ap, const struct ata_taskfile *tf)
1fdffbce
JG
119{
120 struct ata_ioports *ioaddr = &ap->ioaddr;
121 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
122
123 if (tf->ctl != ap->last_ctl) {
0d5ff566 124 iowrite8(tf->ctl, ioaddr->ctl_addr);
1fdffbce
JG
125 ap->last_ctl = tf->ctl;
126 ata_wait_idle(ap);
127 }
128
129 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
0d5ff566
TH
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);
1fdffbce
JG
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) {
0d5ff566
TH
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);
1fdffbce
JG
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) {
0d5ff566 158 iowrite8(tf->device, ioaddr->device_addr);
1fdffbce
JG
159 VPRINTK("device 0x%X\n", tf->device);
160 }
161
162 ata_wait_idle(ap);
163}
164
1fdffbce 165/**
0d5ff566 166 * ata_exec_command - issue ATA command to host controller
1fdffbce
JG
167 * @ap: port to which command is being issued
168 * @tf: ATA taskfile register set
169 *
0d5ff566
TH
170 * Issues ATA command, with proper synchronization with interrupt
171 * handler / other threads.
7c74ffd0 172 *
1fdffbce 173 * LOCKING:
cca3974e 174 * spin_lock_irqsave(host lock)
1fdffbce 175 */
0d5ff566 176void ata_exec_command(struct ata_port *ap, const struct ata_taskfile *tf)
1fdffbce 177{
44877b4e 178 DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
1fdffbce 179
0d5ff566 180 iowrite8(tf->command, ap->ioaddr.command_addr);
1fdffbce
JG
181 ata_pause(ap);
182}
183
1fdffbce 184/**
0d5ff566 185 * ata_tf_read - input device's ATA taskfile shadow registers
1fdffbce
JG
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 *
192 * LOCKING:
193 * Inherited from caller.
194 */
0d5ff566 195void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
1fdffbce
JG
196{
197 struct ata_ioports *ioaddr = &ap->ioaddr;
198
199 tf->command = ata_check_status(ap);
0d5ff566
TH
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);
1fdffbce
JG
206
207 if (tf->flags & ATA_TFLAG_LBA48) {
0d5ff566
TH
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);
1fdffbce
JG
214 }
215}
216
1fdffbce
JG
217/**
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 *
1fdffbce
JG
225 * LOCKING:
226 * Inherited from caller.
227 */
228u8 ata_check_status(struct ata_port *ap)
229{
0d5ff566 230 return ioread8(ap->ioaddr.status_addr);
1fdffbce
JG
231}
232
1fdffbce
JG
233/**
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
0d5ff566 251 return ioread8(ap->ioaddr.altstatus_addr);
1fdffbce
JG
252}
253
2cc432ee 254/**
0d5ff566 255 * ata_bmdma_setup - Set up PCI IDE BMDMA transaction
2cc432ee
JG
256 * @qc: Info associated with this ATA transaction.
257 *
258 * LOCKING:
cca3974e 259 * spin_lock_irqsave(host lock)
2cc432ee 260 */
0d5ff566 261void ata_bmdma_setup(struct ata_queued_cmd *qc)
2cc432ee
JG
262{
263 struct ata_port *ap = qc->ap;
264 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
265 u8 dmactl;
2cc432ee
JG
266
267 /* load PRD table addr. */
268 mb(); /* make sure PRD table writes are visible to controller */
0d5ff566 269 iowrite32(ap->prd_dma, ap->ioaddr.bmdma_addr + ATA_DMA_TABLE_OFS);
2cc432ee
JG
270
271 /* specify data direction, triple-check start bit is clear */
0d5ff566 272 dmactl = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
2cc432ee
JG
273 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
274 if (!rw)
275 dmactl |= ATA_DMA_WR;
0d5ff566 276 iowrite8(dmactl, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
2cc432ee
JG
277
278 /* issue r/w command */
279 ap->ops->exec_command(ap, &qc->tf);
280}
281
282/**
0d5ff566 283 * ata_bmdma_start - Start a PCI IDE BMDMA transaction
2cc432ee
JG
284 * @qc: Info associated with this ATA transaction.
285 *
286 * LOCKING:
cca3974e 287 * spin_lock_irqsave(host lock)
2cc432ee 288 */
0d5ff566 289void ata_bmdma_start (struct ata_queued_cmd *qc)
2cc432ee
JG
290{
291 struct ata_port *ap = qc->ap;
2cc432ee
JG
292 u8 dmactl;
293
294 /* start host DMA transaction */
0d5ff566
TH
295 dmactl = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
296 iowrite8(dmactl | ATA_DMA_START, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
2cc432ee
JG
297
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
2cc432ee
JG
311/**
312 * 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:
cca3974e 320 * spin_lock_irqsave(host lock)
2cc432ee 321 */
2cc432ee
JG
322void ata_bmdma_irq_clear(struct ata_port *ap)
323{
0d5ff566
TH
324 void __iomem *mmio = ap->ioaddr.bmdma_addr;
325
326 if (!mmio)
2cc432ee
JG
327 return;
328
0d5ff566 329 iowrite8(ioread8(mmio + ATA_DMA_STATUS), mmio + ATA_DMA_STATUS);
2cc432ee
JG
330}
331
2cc432ee
JG
332/**
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:
cca3974e 341 * spin_lock_irqsave(host lock)
2cc432ee 342 */
2cc432ee
JG
343u8 ata_bmdma_status(struct ata_port *ap)
344{
0d5ff566 345 return ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
2cc432ee
JG
346}
347
2cc432ee
JG
348/**
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:
cca3974e 357 * spin_lock_irqsave(host lock)
2cc432ee 358 */
2cc432ee
JG
359void ata_bmdma_stop(struct ata_queued_cmd *qc)
360{
361 struct ata_port *ap = qc->ap;
0d5ff566
TH
362 void __iomem *mmio = ap->ioaddr.bmdma_addr;
363
364 /* clear start/stop bit */
365 iowrite8(ioread8(mmio + ATA_DMA_CMD) & ~ATA_DMA_START,
366 mmio + ATA_DMA_CMD);
2cc432ee
JG
367
368 /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
369 ata_altstatus(ap); /* dummy read */
370}
371
6d97dbd7
TH
372/**
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
0d5ff566 388 iowrite8(ap->ctl, ioaddr->ctl_addr);
0f0a3ad3
TH
389
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);
6d97dbd7
TH
397}
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);
83625006 413 ap->ops->irq_on(ap);
6d97dbd7
TH
414}
415
416/**
417 * ata_bmdma_drive_eh - Perform EH with given methods for BMDMA controller
418 * @ap: port to handle error for
f5914a46 419 * @prereset: prereset method (can be NULL)
6d97dbd7
TH
420 * @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 */
f5914a46
TH
435void 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)
6d97dbd7 438{
6d97dbd7
TH
439 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 */
ba6a1308 448 spin_lock_irqsave(ap->lock, flags);
6d97dbd7 449
6d97dbd7
TH
450 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
fbbb262d 456 host_stat = ap->ops->bmdma_status(ap);
6d97dbd7 457
6d97dbd7
TH
458 /* 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 */
18d90deb 463 if (qc->err_mask == AC_ERR_TIMEOUT && (host_stat & ATA_DMA_ERR)) {
6d97dbd7
TH
464 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
ba6a1308 475 spin_unlock_irqrestore(ap->lock, flags);
6d97dbd7
TH
476
477 if (thaw)
478 ata_eh_thaw_port(ap);
479
480 /* PIO and DMA engines have been stopped, perform recovery */
f5914a46 481 ata_do_eh(ap, prereset, softreset, hardreset, postreset);
6d97dbd7
TH
482}
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
f5914a46
TH
501 ata_bmdma_drive_eh(ap, ata_std_prereset, ata_std_softreset, hardreset,
502 ata_std_postreset);
6d97dbd7
TH
503}
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{
61dd08c6
A
515 if (qc->ap->ioaddr.bmdma_addr)
516 ata_bmdma_stop(qc);
6d97dbd7
TH
517}
518
d92e74d3
AC
519/**
520 * ata_sff_port_start - Set port up for dma.
521 * @ap: Port to initialize
522 *
523 * Called just after data structures for each port are
524 * initialized. Allocates space for PRD table if the device
525 * is DMA capable SFF.
526 *
527 * May be used as the port_start() entry in ata_port_operations.
528 *
529 * LOCKING:
530 * Inherited from caller.
531 */
532
533int ata_sff_port_start(struct ata_port *ap)
534{
535 if (ap->ioaddr.bmdma_addr)
536 return ata_port_start(ap);
537 return 0;
538}
539
1fdffbce 540#ifdef CONFIG_PCI
4112e16a
A
541
542static int ata_resources_present(struct pci_dev *pdev, int port)
543{
544 int i;
a84471fe 545
4112e16a
A
546 /* Check the PCI resources for this channel are enabled */
547 port = port * 2;
548 for (i = 0; i < 2; i ++) {
549 if (pci_resource_start(pdev, port + i) == 0 ||
55a6adee
TH
550 pci_resource_len(pdev, port + i) == 0)
551 return 0;
4112e16a
A
552 }
553 return 1;
554}
a84471fe 555
0f834de3
TH
556/**
557 * ata_pci_init_bmdma - acquire PCI BMDMA resources and init ATA host
558 * @host: target ATA host
559 *
560 * Acquire PCI BMDMA resources and initialize @host accordingly.
561 *
562 * LOCKING:
563 * Inherited from calling layer (may sleep).
564 *
565 * RETURNS:
566 * 0 on success, -errno otherwise.
567 */
1626aeb8 568int ata_pci_init_bmdma(struct ata_host *host)
1fdffbce 569{
0f834de3
TH
570 struct device *gdev = host->dev;
571 struct pci_dev *pdev = to_pci_dev(gdev);
572 int i, rc;
0d5ff566 573
0f834de3
TH
574 /* TODO: If we get no DMA mask we should fall back to PIO */
575 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
576 if (rc)
577 return rc;
578 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
579 if (rc)
580 return rc;
581
582 /* request and iomap DMA region */
583 rc = pcim_iomap_regions(pdev, 1 << 4, DRV_NAME);
584 if (rc) {
585 dev_printk(KERN_ERR, gdev, "failed to request/iomap BAR4\n");
586 return -ENOMEM;
0d5ff566 587 }
0f834de3 588 host->iomap = pcim_iomap_table(pdev);
0d5ff566 589
1626aeb8 590 for (i = 0; i < 2; i++) {
0f834de3 591 struct ata_port *ap = host->ports[i];
0f834de3
TH
592 void __iomem *bmdma = host->iomap[4] + 8 * i;
593
594 if (ata_port_is_dummy(ap))
595 continue;
596
21b0ad4f 597 ap->ioaddr.bmdma_addr = bmdma;
0f834de3
TH
598 if ((!(ap->flags & ATA_FLAG_IGN_SIMPLEX)) &&
599 (ioread8(bmdma + 2) & 0x80))
600 host->flags |= ATA_HOST_SIMPLEX;
0d5ff566
TH
601 }
602
0f834de3
TH
603 return 0;
604}
2ec7df04 605
d491b27b 606/**
d583bc18 607 * ata_pci_init_sff_host - acquire native PCI ATA resources and init host
d491b27b 608 * @host: target ATA host
d491b27b 609 *
1626aeb8
TH
610 * Acquire native PCI ATA resources for @host and initialize the
611 * first two ports of @host accordingly. Ports marked dummy are
612 * skipped and allocation failure makes the port dummy.
d491b27b 613 *
d583bc18
TH
614 * Note that native PCI resources are valid even for legacy hosts
615 * as we fix up pdev resources array early in boot, so this
616 * function can be used for both native and legacy SFF hosts.
617 *
d491b27b
TH
618 * LOCKING:
619 * Inherited from calling layer (may sleep).
620 *
621 * RETURNS:
1626aeb8
TH
622 * 0 if at least one port is initialized, -ENODEV if no port is
623 * available.
d491b27b 624 */
d583bc18 625int ata_pci_init_sff_host(struct ata_host *host)
d491b27b
TH
626{
627 struct device *gdev = host->dev;
628 struct pci_dev *pdev = to_pci_dev(gdev);
1626aeb8 629 unsigned int mask = 0;
d491b27b
TH
630 int i, rc;
631
d491b27b
TH
632 /* request, iomap BARs and init port addresses accordingly */
633 for (i = 0; i < 2; i++) {
634 struct ata_port *ap = host->ports[i];
635 int base = i * 2;
636 void __iomem * const *iomap;
637
1626aeb8
TH
638 if (ata_port_is_dummy(ap))
639 continue;
640
641 /* Discard disabled ports. Some controllers show
642 * their unused channels this way. Disabled ports are
643 * made dummy.
644 */
645 if (!ata_resources_present(pdev, i)) {
646 ap->ops = &ata_dummy_port_ops;
d491b27b 647 continue;
1626aeb8 648 }
d491b27b
TH
649
650 rc = pcim_iomap_regions(pdev, 0x3 << base, DRV_NAME);
651 if (rc) {
1626aeb8
TH
652 dev_printk(KERN_WARNING, gdev,
653 "failed to request/iomap BARs for port %d "
654 "(errno=%d)\n", i, rc);
d491b27b
TH
655 if (rc == -EBUSY)
656 pcim_pin_device(pdev);
1626aeb8
TH
657 ap->ops = &ata_dummy_port_ops;
658 continue;
d491b27b
TH
659 }
660 host->iomap = iomap = pcim_iomap_table(pdev);
661
662 ap->ioaddr.cmd_addr = iomap[base];
663 ap->ioaddr.altstatus_addr =
664 ap->ioaddr.ctl_addr = (void __iomem *)
665 ((unsigned long)iomap[base + 1] | ATA_PCI_CTL_OFS);
666 ata_std_ports(&ap->ioaddr);
1626aeb8
TH
667
668 mask |= 1 << i;
669 }
670
671 if (!mask) {
672 dev_printk(KERN_ERR, gdev, "no available native port\n");
673 return -ENODEV;
d491b27b
TH
674 }
675
676 return 0;
677}
678
21b0ad4f 679/**
d583bc18 680 * ata_pci_prepare_sff_host - helper to prepare native PCI ATA host
21b0ad4f 681 * @pdev: target PCI device
1626aeb8 682 * @ppi: array of port_info, must be enough for two ports
21b0ad4f
TH
683 * @r_host: out argument for the initialized ATA host
684 *
685 * Helper to allocate ATA host for @pdev, acquire all native PCI
686 * resources and initialize it accordingly in one go.
687 *
688 * LOCKING:
689 * Inherited from calling layer (may sleep).
690 *
691 * RETURNS:
692 * 0 on success, -errno otherwise.
693 */
d583bc18
TH
694int ata_pci_prepare_sff_host(struct pci_dev *pdev,
695 const struct ata_port_info * const * ppi,
696 struct ata_host **r_host)
21b0ad4f
TH
697{
698 struct ata_host *host;
21b0ad4f
TH
699 int rc;
700
701 if (!devres_open_group(&pdev->dev, NULL, GFP_KERNEL))
702 return -ENOMEM;
703
704 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
705 if (!host) {
706 dev_printk(KERN_ERR, &pdev->dev,
707 "failed to allocate ATA host\n");
708 rc = -ENOMEM;
709 goto err_out;
710 }
711
d583bc18 712 rc = ata_pci_init_sff_host(host);
21b0ad4f
TH
713 if (rc)
714 goto err_out;
715
716 /* init DMA related stuff */
717 rc = ata_pci_init_bmdma(host);
718 if (rc)
719 goto err_bmdma;
720
721 devres_remove_group(&pdev->dev, NULL);
722 *r_host = host;
723 return 0;
724
725 err_bmdma:
726 /* This is necessary because PCI and iomap resources are
727 * merged and releasing the top group won't release the
728 * acquired resources if some of those have been acquired
729 * before entering this function.
730 */
731 pcim_iounmap_regions(pdev, 0xf);
732 err_out:
733 devres_release_group(&pdev->dev, NULL);
734 return rc;
735}
736
1fdffbce
JG
737/**
738 * ata_pci_init_one - Initialize/register PCI IDE host controller
739 * @pdev: Controller to be initialized
1626aeb8 740 * @ppi: array of port_info, must be enough for two ports
1fdffbce
JG
741 *
742 * This is a helper function which can be called from a driver's
743 * xxx_init_one() probe function if the hardware uses traditional
744 * IDE taskfile registers.
745 *
746 * This function calls pci_enable_device(), reserves its register
747 * regions, sets the dma mask, enables bus master mode, and calls
748 * ata_device_add()
749 *
2ec7df04
AC
750 * ASSUMPTION:
751 * Nobody makes a single channel controller that appears solely as
752 * the secondary legacy port on PCI.
753 *
1fdffbce
JG
754 * LOCKING:
755 * Inherited from PCI layer (may sleep).
756 *
757 * RETURNS:
758 * Zero on success, negative on errno-based value on error.
759 */
1626aeb8
TH
760int ata_pci_init_one(struct pci_dev *pdev,
761 const struct ata_port_info * const * ppi)
1fdffbce 762{
f0d36efd 763 struct device *dev = &pdev->dev;
1626aeb8 764 const struct ata_port_info *pi = NULL;
0f834de3 765 struct ata_host *host = NULL;
c791c306 766 u8 mask;
1626aeb8
TH
767 int legacy_mode = 0;
768 int i, rc;
1fdffbce
JG
769
770 DPRINTK("ENTER\n");
771
1626aeb8
TH
772 /* look up the first valid port_info */
773 for (i = 0; i < 2 && ppi[i]; i++) {
774 if (ppi[i]->port_ops != &ata_dummy_port_ops) {
775 pi = ppi[i];
776 break;
777 }
778 }
f0d36efd 779
1626aeb8
TH
780 if (!pi) {
781 dev_printk(KERN_ERR, &pdev->dev,
782 "no valid port_info specified\n");
783 return -EINVAL;
784 }
c791c306 785
1626aeb8
TH
786 if (!devres_open_group(dev, NULL, GFP_KERNEL))
787 return -ENOMEM;
1fdffbce 788
1fdffbce
JG
789 /* FIXME: Really for ATA it isn't safe because the device may be
790 multi-purpose and we want to leave it alone if it was already
791 enabled. Secondly for shared use as Arjan says we want refcounting
792
793 Checking dev->is_enabled is insufficient as this is not set at
794 boot for the primary video which is BIOS enabled
d491b27b 795 */
1fdffbce 796
f0d36efd 797 rc = pcim_enable_device(pdev);
1fdffbce 798 if (rc)
f0d36efd 799 goto err_out;
1fdffbce 800
c791c306
JG
801 if ((pdev->class >> 8) == PCI_CLASS_STORAGE_IDE) {
802 u8 tmp8;
803
804 /* TODO: What if one channel is in native mode ... */
805 pci_read_config_byte(pdev, PCI_CLASS_PROG, &tmp8);
806 mask = (1 << 2) | (1 << 0);
807 if ((tmp8 & mask) != mask)
1626aeb8 808 legacy_mode = 1;
8eb166bf
AC
809#if defined(CONFIG_NO_ATA_LEGACY)
810 /* Some platforms with PCI limits cannot address compat
811 port space. In that case we punt if their firmware has
812 left a device in compatibility mode */
813 if (legacy_mode) {
814 printk(KERN_ERR "ata: Compatibility mode ATA is not supported on this platform, skipping.\n");
f0d36efd
TH
815 rc = -EOPNOTSUPP;
816 goto err_out;
8eb166bf
AC
817 }
818#endif
c791c306
JG
819 }
820
d583bc18
TH
821 /* prepare host */
822 rc = ata_pci_prepare_sff_host(pdev, ppi, &host);
823 if (rc)
d491b27b 824 goto err_out;
d491b27b 825
d491b27b
TH
826 pci_set_master(pdev);
827
828 /* start host and request IRQ */
829 rc = ata_host_start(host);
830 if (rc)
831 goto err_out;
832
4031826b 833 if (!legacy_mode) {
1626aeb8 834 rc = devm_request_irq(dev, pdev->irq, pi->port_ops->irq_handler,
d491b27b 835 IRQF_SHARED, DRV_NAME, host);
d583bc18
TH
836 if (rc)
837 goto err_out;
4031826b
TH
838 host->irq = pdev->irq;
839 } else {
d583bc18
TH
840 if (!ata_port_is_dummy(host->ports[0])) {
841 host->irq = ATA_PRIMARY_IRQ(pdev);
842 rc = devm_request_irq(dev, host->irq,
843 pi->port_ops->irq_handler,
844 IRQF_SHARED, DRV_NAME, host);
845 if (rc)
846 goto err_out;
847 }
0f834de3 848
d583bc18
TH
849 if (!ata_port_is_dummy(host->ports[1])) {
850 host->irq2 = ATA_SECONDARY_IRQ(pdev);
851 rc = devm_request_irq(dev, host->irq2,
852 pi->port_ops->irq_handler,
853 IRQF_SHARED, DRV_NAME, host);
854 if (rc)
855 goto err_out;
856 }
d491b27b 857 }
1fdffbce 858
d491b27b 859 /* register */
1626aeb8 860 rc = ata_host_register(host, pi->sht);
d491b27b
TH
861 if (rc)
862 goto err_out;
1fdffbce 863
f0d36efd 864 devres_remove_group(dev, NULL);
1fdffbce
JG
865 return 0;
866
1fdffbce 867err_out:
f0d36efd 868 devres_release_group(dev, NULL);
1fdffbce
JG
869 return rc;
870}
871
d33d44fa
AC
872/**
873 * ata_pci_clear_simplex - attempt to kick device out of simplex
874 * @pdev: PCI device
875 *
876 * Some PCI ATA devices report simplex mode but in fact can be told to
2e9edbf8 877 * enter non simplex mode. This implements the neccessary logic to
d33d44fa
AC
878 * perform the task on such devices. Calling it on other devices will
879 * have -undefined- behaviour.
880 */
881
882int ata_pci_clear_simplex(struct pci_dev *pdev)
883{
884 unsigned long bmdma = pci_resource_start(pdev, 4);
885 u8 simplex;
886
887 if (bmdma == 0)
888 return -ENOENT;
889
890 simplex = inb(bmdma + 0x02);
891 outb(simplex & 0x60, bmdma + 0x02);
892 simplex = inb(bmdma + 0x02);
893 if (simplex & 0x80)
894 return -EOPNOTSUPP;
895 return 0;
896}
897
a76b62ca 898unsigned long ata_pci_default_filter(struct ata_device *adev, unsigned long xfer_mask)
d33d44fa
AC
899{
900 /* Filter out DMA modes if the device has been configured by
901 the BIOS as PIO only */
2e9edbf8 902
a76b62ca 903 if (adev->ap->ioaddr.bmdma_addr == 0)
d33d44fa
AC
904 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
905 return xfer_mask;
906}
907
1fdffbce
JG
908#endif /* CONFIG_PCI */
909
This page took 0.305502 seconds and 5 git commands to generate.