blob: 249e67fab81f2567b32c367d8db0ccf94b75dcad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
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-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include <linux/config.h>
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/pci.h>
39#include <linux/init.h>
40#include <linux/list.h>
41#include <linux/mm.h>
42#include <linux/highmem.h>
43#include <linux/spinlock.h>
44#include <linux/blkdev.h>
45#include <linux/delay.h>
46#include <linux/timer.h>
47#include <linux/interrupt.h>
48#include <linux/completion.h>
49#include <linux/suspend.h>
50#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040051#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100052#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_host.h>
57#include <linux/libata.h>
58#include <asm/io.h>
59#include <asm/semaphore.h>
60#include <asm/byteorder.h>
61
62#include "libata.h"
63
Albert Lee59a10b12005-10-12 15:09:42 +080064static void ata_dev_reread_id(struct ata_port *ap, struct ata_device *dev);
Albert Lee8bf62ece2005-05-12 15:29:42 -040065static void ata_dev_init_params(struct ata_port *ap, struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void ata_set_mode(struct ata_port *ap);
67static void ata_dev_set_xfermode(struct ata_port *ap, struct ata_device *dev);
Jeff Garzik057ace52005-10-22 14:27:05 -040068static unsigned int ata_get_mode_mask(const struct ata_port *ap, int shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static int fgb(u32 bitmap);
Jeff Garzik057ace52005-10-22 14:27:05 -040070static int ata_choose_xfer_mode(const struct ata_port *ap,
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 u8 *xfer_mode_out,
72 unsigned int *xfer_shift_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74static unsigned int ata_unique_id = 1;
75static struct workqueue_struct *ata_wq;
76
Jeff Garzik1623c812005-08-30 03:37:42 -040077int atapi_enabled = 0;
78module_param(atapi_enabled, int, 0444);
79MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081MODULE_AUTHOR("Jeff Garzik");
82MODULE_DESCRIPTION("Library module for ATA devices");
83MODULE_LICENSE("GPL");
84MODULE_VERSION(DRV_VERSION);
85
86/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -040087 * ata_tf_load_pio - send taskfile registers to host controller
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * @ap: Port to which output is sent
89 * @tf: ATA taskfile register set
90 *
91 * Outputs ATA taskfile to standard ATA host controller.
92 *
93 * LOCKING:
94 * Inherited from caller.
95 */
96
Jeff Garzik057ace52005-10-22 14:27:05 -040097static void ata_tf_load_pio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 struct ata_ioports *ioaddr = &ap->ioaddr;
100 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
101
102 if (tf->ctl != ap->last_ctl) {
103 outb(tf->ctl, ioaddr->ctl_addr);
104 ap->last_ctl = tf->ctl;
105 ata_wait_idle(ap);
106 }
107
108 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
109 outb(tf->hob_feature, ioaddr->feature_addr);
110 outb(tf->hob_nsect, ioaddr->nsect_addr);
111 outb(tf->hob_lbal, ioaddr->lbal_addr);
112 outb(tf->hob_lbam, ioaddr->lbam_addr);
113 outb(tf->hob_lbah, ioaddr->lbah_addr);
114 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
115 tf->hob_feature,
116 tf->hob_nsect,
117 tf->hob_lbal,
118 tf->hob_lbam,
119 tf->hob_lbah);
120 }
121
122 if (is_addr) {
123 outb(tf->feature, ioaddr->feature_addr);
124 outb(tf->nsect, ioaddr->nsect_addr);
125 outb(tf->lbal, ioaddr->lbal_addr);
126 outb(tf->lbam, ioaddr->lbam_addr);
127 outb(tf->lbah, ioaddr->lbah_addr);
128 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
129 tf->feature,
130 tf->nsect,
131 tf->lbal,
132 tf->lbam,
133 tf->lbah);
134 }
135
136 if (tf->flags & ATA_TFLAG_DEVICE) {
137 outb(tf->device, ioaddr->device_addr);
138 VPRINTK("device 0x%X\n", tf->device);
139 }
140
141 ata_wait_idle(ap);
142}
143
144/**
145 * ata_tf_load_mmio - send taskfile registers to host controller
146 * @ap: Port to which output is sent
147 * @tf: ATA taskfile register set
148 *
149 * Outputs ATA taskfile to standard ATA host controller using MMIO.
150 *
151 * LOCKING:
152 * Inherited from caller.
153 */
154
Jeff Garzik057ace52005-10-22 14:27:05 -0400155static void ata_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 struct ata_ioports *ioaddr = &ap->ioaddr;
158 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
159
160 if (tf->ctl != ap->last_ctl) {
161 writeb(tf->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
162 ap->last_ctl = tf->ctl;
163 ata_wait_idle(ap);
164 }
165
166 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
167 writeb(tf->hob_feature, (void __iomem *) ioaddr->feature_addr);
168 writeb(tf->hob_nsect, (void __iomem *) ioaddr->nsect_addr);
169 writeb(tf->hob_lbal, (void __iomem *) ioaddr->lbal_addr);
170 writeb(tf->hob_lbam, (void __iomem *) ioaddr->lbam_addr);
171 writeb(tf->hob_lbah, (void __iomem *) ioaddr->lbah_addr);
172 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
173 tf->hob_feature,
174 tf->hob_nsect,
175 tf->hob_lbal,
176 tf->hob_lbam,
177 tf->hob_lbah);
178 }
179
180 if (is_addr) {
181 writeb(tf->feature, (void __iomem *) ioaddr->feature_addr);
182 writeb(tf->nsect, (void __iomem *) ioaddr->nsect_addr);
183 writeb(tf->lbal, (void __iomem *) ioaddr->lbal_addr);
184 writeb(tf->lbam, (void __iomem *) ioaddr->lbam_addr);
185 writeb(tf->lbah, (void __iomem *) ioaddr->lbah_addr);
186 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
187 tf->feature,
188 tf->nsect,
189 tf->lbal,
190 tf->lbam,
191 tf->lbah);
192 }
193
194 if (tf->flags & ATA_TFLAG_DEVICE) {
195 writeb(tf->device, (void __iomem *) ioaddr->device_addr);
196 VPRINTK("device 0x%X\n", tf->device);
197 }
198
199 ata_wait_idle(ap);
200}
201
Edward Falk0baab862005-06-02 18:17:13 -0400202
203/**
204 * ata_tf_load - send taskfile registers to host controller
205 * @ap: Port to which output is sent
206 * @tf: ATA taskfile register set
207 *
208 * Outputs ATA taskfile to standard ATA host controller using MMIO
209 * or PIO as indicated by the ATA_FLAG_MMIO flag.
210 * Writes the control, feature, nsect, lbal, lbam, and lbah registers.
211 * Optionally (ATA_TFLAG_LBA48) writes hob_feature, hob_nsect,
212 * hob_lbal, hob_lbam, and hob_lbah.
213 *
214 * This function waits for idle (!BUSY and !DRQ) after writing
215 * registers. If the control register has a new value, this
216 * function also waits for idle after writing control and before
217 * writing the remaining registers.
218 *
219 * May be used as the tf_load() entry in ata_port_operations.
220 *
221 * LOCKING:
222 * Inherited from caller.
223 */
Jeff Garzik057ace52005-10-22 14:27:05 -0400224void ata_tf_load(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 if (ap->flags & ATA_FLAG_MMIO)
227 ata_tf_load_mmio(ap, tf);
228 else
229 ata_tf_load_pio(ap, tf);
230}
231
232/**
Edward Falk0baab862005-06-02 18:17:13 -0400233 * ata_exec_command_pio - issue ATA command to host controller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * @ap: port to which command is being issued
235 * @tf: ATA taskfile register set
236 *
Edward Falk0baab862005-06-02 18:17:13 -0400237 * Issues PIO write to ATA command register, with proper
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 * synchronization with interrupt handler / other threads.
239 *
240 * LOCKING:
241 * spin_lock_irqsave(host_set lock)
242 */
243
Jeff Garzik057ace52005-10-22 14:27:05 -0400244static void ata_exec_command_pio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 DPRINTK("ata%u: cmd 0x%X\n", ap->id, tf->command);
247
248 outb(tf->command, ap->ioaddr.command_addr);
249 ata_pause(ap);
250}
251
252
253/**
254 * ata_exec_command_mmio - issue ATA command to host controller
255 * @ap: port to which command is being issued
256 * @tf: ATA taskfile register set
257 *
258 * Issues MMIO write to ATA command register, with proper
259 * synchronization with interrupt handler / other threads.
260 *
261 * LOCKING:
262 * spin_lock_irqsave(host_set lock)
263 */
264
Jeff Garzik057ace52005-10-22 14:27:05 -0400265static void ata_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 DPRINTK("ata%u: cmd 0x%X\n", ap->id, tf->command);
268
269 writeb(tf->command, (void __iomem *) ap->ioaddr.command_addr);
270 ata_pause(ap);
271}
272
Edward Falk0baab862005-06-02 18:17:13 -0400273
274/**
275 * ata_exec_command - issue ATA command to host controller
276 * @ap: port to which command is being issued
277 * @tf: ATA taskfile register set
278 *
279 * Issues PIO/MMIO write to ATA command register, with proper
280 * synchronization with interrupt handler / other threads.
281 *
282 * LOCKING:
283 * spin_lock_irqsave(host_set lock)
284 */
Jeff Garzik057ace52005-10-22 14:27:05 -0400285void ata_exec_command(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 if (ap->flags & ATA_FLAG_MMIO)
288 ata_exec_command_mmio(ap, tf);
289 else
290 ata_exec_command_pio(ap, tf);
291}
292
293/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * ata_tf_to_host - issue ATA taskfile to host controller
295 * @ap: port to which command is being issued
296 * @tf: ATA taskfile register set
297 *
298 * Issues ATA taskfile register set to ATA host controller,
299 * with proper synchronization with interrupt handler and
300 * other threads.
301 *
302 * LOCKING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * spin_lock_irqsave(host_set lock)
304 */
305
Jeff Garzike5338252005-10-30 21:37:17 -0500306static inline void ata_tf_to_host(struct ata_port *ap,
307 const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 ap->ops->tf_load(ap, tf);
310 ap->ops->exec_command(ap, tf);
311}
312
313/**
Edward Falk0baab862005-06-02 18:17:13 -0400314 * ata_tf_read_pio - input device's ATA taskfile shadow registers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * @ap: Port from which input is read
316 * @tf: ATA taskfile register set for storing input
317 *
318 * Reads ATA taskfile registers for currently-selected device
319 * into @tf.
320 *
321 * LOCKING:
322 * Inherited from caller.
323 */
324
325static void ata_tf_read_pio(struct ata_port *ap, struct ata_taskfile *tf)
326{
327 struct ata_ioports *ioaddr = &ap->ioaddr;
328
Jeff Garzikac19bff2005-10-29 13:58:21 -0400329 tf->command = ata_check_status(ap);
Jeff Garzik0169e282005-10-29 21:25:10 -0400330 tf->feature = inb(ioaddr->error_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 tf->nsect = inb(ioaddr->nsect_addr);
332 tf->lbal = inb(ioaddr->lbal_addr);
333 tf->lbam = inb(ioaddr->lbam_addr);
334 tf->lbah = inb(ioaddr->lbah_addr);
335 tf->device = inb(ioaddr->device_addr);
336
337 if (tf->flags & ATA_TFLAG_LBA48) {
338 outb(tf->ctl | ATA_HOB, ioaddr->ctl_addr);
339 tf->hob_feature = inb(ioaddr->error_addr);
340 tf->hob_nsect = inb(ioaddr->nsect_addr);
341 tf->hob_lbal = inb(ioaddr->lbal_addr);
342 tf->hob_lbam = inb(ioaddr->lbam_addr);
343 tf->hob_lbah = inb(ioaddr->lbah_addr);
344 }
345}
346
347/**
348 * ata_tf_read_mmio - input device's ATA taskfile shadow registers
349 * @ap: Port from which input is read
350 * @tf: ATA taskfile register set for storing input
351 *
352 * Reads ATA taskfile registers for currently-selected device
353 * into @tf via MMIO.
354 *
355 * LOCKING:
356 * Inherited from caller.
357 */
358
359static void ata_tf_read_mmio(struct ata_port *ap, struct ata_taskfile *tf)
360{
361 struct ata_ioports *ioaddr = &ap->ioaddr;
362
Jeff Garzikac19bff2005-10-29 13:58:21 -0400363 tf->command = ata_check_status(ap);
Jeff Garzik0169e282005-10-29 21:25:10 -0400364 tf->feature = readb((void __iomem *)ioaddr->error_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 tf->nsect = readb((void __iomem *)ioaddr->nsect_addr);
366 tf->lbal = readb((void __iomem *)ioaddr->lbal_addr);
367 tf->lbam = readb((void __iomem *)ioaddr->lbam_addr);
368 tf->lbah = readb((void __iomem *)ioaddr->lbah_addr);
369 tf->device = readb((void __iomem *)ioaddr->device_addr);
370
371 if (tf->flags & ATA_TFLAG_LBA48) {
372 writeb(tf->ctl | ATA_HOB, (void __iomem *) ap->ioaddr.ctl_addr);
373 tf->hob_feature = readb((void __iomem *)ioaddr->error_addr);
374 tf->hob_nsect = readb((void __iomem *)ioaddr->nsect_addr);
375 tf->hob_lbal = readb((void __iomem *)ioaddr->lbal_addr);
376 tf->hob_lbam = readb((void __iomem *)ioaddr->lbam_addr);
377 tf->hob_lbah = readb((void __iomem *)ioaddr->lbah_addr);
378 }
379}
380
Edward Falk0baab862005-06-02 18:17:13 -0400381
382/**
383 * ata_tf_read - input device's ATA taskfile shadow registers
384 * @ap: Port from which input is read
385 * @tf: ATA taskfile register set for storing input
386 *
387 * Reads ATA taskfile registers for currently-selected device
388 * into @tf.
389 *
390 * Reads nsect, lbal, lbam, lbah, and device. If ATA_TFLAG_LBA48
391 * is set, also reads the hob registers.
392 *
393 * May be used as the tf_read() entry in ata_port_operations.
394 *
395 * LOCKING:
396 * Inherited from caller.
397 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
399{
400 if (ap->flags & ATA_FLAG_MMIO)
401 ata_tf_read_mmio(ap, tf);
402 else
403 ata_tf_read_pio(ap, tf);
404}
405
406/**
407 * ata_check_status_pio - Read device status reg & clear interrupt
408 * @ap: port where the device is
409 *
410 * Reads ATA taskfile status register for currently-selected device
Edward Falk0baab862005-06-02 18:17:13 -0400411 * and return its value. This also clears pending interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * from this device
413 *
414 * LOCKING:
415 * Inherited from caller.
416 */
417static u8 ata_check_status_pio(struct ata_port *ap)
418{
419 return inb(ap->ioaddr.status_addr);
420}
421
422/**
423 * ata_check_status_mmio - Read device status reg & clear interrupt
424 * @ap: port where the device is
425 *
426 * Reads ATA taskfile status register for currently-selected device
Edward Falk0baab862005-06-02 18:17:13 -0400427 * via MMIO and return its value. This also clears pending interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * from this device
429 *
430 * LOCKING:
431 * Inherited from caller.
432 */
433static u8 ata_check_status_mmio(struct ata_port *ap)
434{
435 return readb((void __iomem *) ap->ioaddr.status_addr);
436}
437
Edward Falk0baab862005-06-02 18:17:13 -0400438
439/**
440 * ata_check_status - Read device status reg & clear interrupt
441 * @ap: port where the device is
442 *
443 * Reads ATA taskfile status register for currently-selected device
444 * and return its value. This also clears pending interrupts
445 * from this device
446 *
447 * May be used as the check_status() entry in ata_port_operations.
448 *
449 * LOCKING:
450 * Inherited from caller.
451 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452u8 ata_check_status(struct ata_port *ap)
453{
454 if (ap->flags & ATA_FLAG_MMIO)
455 return ata_check_status_mmio(ap);
456 return ata_check_status_pio(ap);
457}
458
Edward Falk0baab862005-06-02 18:17:13 -0400459
460/**
461 * ata_altstatus - Read device alternate status reg
462 * @ap: port where the device is
463 *
464 * Reads ATA taskfile alternate status register for
465 * currently-selected device and return its value.
466 *
467 * Note: may NOT be used as the check_altstatus() entry in
468 * ata_port_operations.
469 *
470 * LOCKING:
471 * Inherited from caller.
472 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473u8 ata_altstatus(struct ata_port *ap)
474{
475 if (ap->ops->check_altstatus)
476 return ap->ops->check_altstatus(ap);
477
478 if (ap->flags & ATA_FLAG_MMIO)
479 return readb((void __iomem *)ap->ioaddr.altstatus_addr);
480 return inb(ap->ioaddr.altstatus_addr);
481}
482
Edward Falk0baab862005-06-02 18:17:13 -0400483
484/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
486 * @tf: Taskfile to convert
487 * @fis: Buffer into which data will output
488 * @pmp: Port multiplier port
489 *
490 * Converts a standard ATA taskfile to a Serial ATA
491 * FIS structure (Register - Host to Device).
492 *
493 * LOCKING:
494 * Inherited from caller.
495 */
496
Jeff Garzik057ace52005-10-22 14:27:05 -0400497void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 fis[0] = 0x27; /* Register - Host to Device FIS */
500 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
501 bit 7 indicates Command FIS */
502 fis[2] = tf->command;
503 fis[3] = tf->feature;
504
505 fis[4] = tf->lbal;
506 fis[5] = tf->lbam;
507 fis[6] = tf->lbah;
508 fis[7] = tf->device;
509
510 fis[8] = tf->hob_lbal;
511 fis[9] = tf->hob_lbam;
512 fis[10] = tf->hob_lbah;
513 fis[11] = tf->hob_feature;
514
515 fis[12] = tf->nsect;
516 fis[13] = tf->hob_nsect;
517 fis[14] = 0;
518 fis[15] = tf->ctl;
519
520 fis[16] = 0;
521 fis[17] = 0;
522 fis[18] = 0;
523 fis[19] = 0;
524}
525
526/**
527 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
528 * @fis: Buffer from which data will be input
529 * @tf: Taskfile to output
530 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500531 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 *
533 * LOCKING:
534 * Inherited from caller.
535 */
536
Jeff Garzik057ace52005-10-22 14:27:05 -0400537void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 tf->command = fis[2]; /* status */
540 tf->feature = fis[3]; /* error */
541
542 tf->lbal = fis[4];
543 tf->lbam = fis[5];
544 tf->lbah = fis[6];
545 tf->device = fis[7];
546
547 tf->hob_lbal = fis[8];
548 tf->hob_lbam = fis[9];
549 tf->hob_lbah = fis[10];
550
551 tf->nsect = fis[12];
552 tf->hob_nsect = fis[13];
553}
554
Albert Lee8cbd6df2005-10-12 15:06:27 +0800555static const u8 ata_rw_cmds[] = {
556 /* pio multi */
557 ATA_CMD_READ_MULTI,
558 ATA_CMD_WRITE_MULTI,
559 ATA_CMD_READ_MULTI_EXT,
560 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100561 0,
562 0,
563 0,
564 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800565 /* pio */
566 ATA_CMD_PIO_READ,
567 ATA_CMD_PIO_WRITE,
568 ATA_CMD_PIO_READ_EXT,
569 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100570 0,
571 0,
572 0,
573 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800574 /* dma */
575 ATA_CMD_READ,
576 ATA_CMD_WRITE,
577 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100578 ATA_CMD_WRITE_EXT,
579 0,
580 0,
581 0,
582 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800583};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800586 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
587 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 *
Albert Lee8cbd6df2005-10-12 15:06:27 +0800589 * Examine the device configuration and tf->flags to calculate
590 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 *
592 * LOCKING:
593 * caller.
594 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100595int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800597 struct ata_taskfile *tf = &qc->tf;
598 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100599 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100601 int index, fua, lba48, write;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800602
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100603 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800604 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
605 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Albert Lee8cbd6df2005-10-12 15:06:27 +0800607 if (dev->flags & ATA_DFLAG_PIO) {
608 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100609 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000610 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
611 /* Unable to use DMA due to host limitation */
612 tf->protocol = ATA_PROT_PIO;
613 index = dev->multi_count ? 0 : 4;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800614 } else {
615 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100616 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100619 cmd = ata_rw_cmds[index + fua + lba48 + write];
620 if (cmd) {
621 tf->command = cmd;
622 return 0;
623 }
624 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100627static const char * const xfer_mode_str[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 "UDMA/16",
629 "UDMA/25",
630 "UDMA/33",
631 "UDMA/44",
632 "UDMA/66",
633 "UDMA/100",
634 "UDMA/133",
635 "UDMA7",
636 "MWDMA0",
637 "MWDMA1",
638 "MWDMA2",
639 "PIO0",
640 "PIO1",
641 "PIO2",
642 "PIO3",
643 "PIO4",
644};
645
646/**
647 * ata_udma_string - convert UDMA bit offset to string
648 * @mask: mask of bits supported; only highest bit counts.
649 *
650 * Determine string which represents the highest speed
651 * (highest bit in @udma_mask).
652 *
653 * LOCKING:
654 * None.
655 *
656 * RETURNS:
657 * Constant C string representing highest speed listed in
658 * @udma_mask, or the constant C string "<n/a>".
659 */
660
661static const char *ata_mode_string(unsigned int mask)
662{
663 int i;
664
665 for (i = 7; i >= 0; i--)
666 if (mask & (1 << i))
667 goto out;
668 for (i = ATA_SHIFT_MWDMA + 2; i >= ATA_SHIFT_MWDMA; i--)
669 if (mask & (1 << i))
670 goto out;
671 for (i = ATA_SHIFT_PIO + 4; i >= ATA_SHIFT_PIO; i--)
672 if (mask & (1 << i))
673 goto out;
674
675 return "<n/a>";
676
677out:
678 return xfer_mode_str[i];
679}
680
681/**
682 * ata_pio_devchk - PATA device presence detection
683 * @ap: ATA channel to examine
684 * @device: Device to examine (starting at zero)
685 *
686 * This technique was originally described in
687 * Hale Landis's ATADRVR (www.ata-atapi.com), and
688 * later found its way into the ATA/ATAPI spec.
689 *
690 * Write a pattern to the ATA shadow registers,
691 * and if a device is present, it will respond by
692 * correctly storing and echoing back the
693 * ATA shadow register contents.
694 *
695 * LOCKING:
696 * caller.
697 */
698
699static unsigned int ata_pio_devchk(struct ata_port *ap,
700 unsigned int device)
701{
702 struct ata_ioports *ioaddr = &ap->ioaddr;
703 u8 nsect, lbal;
704
705 ap->ops->dev_select(ap, device);
706
707 outb(0x55, ioaddr->nsect_addr);
708 outb(0xaa, ioaddr->lbal_addr);
709
710 outb(0xaa, ioaddr->nsect_addr);
711 outb(0x55, ioaddr->lbal_addr);
712
713 outb(0x55, ioaddr->nsect_addr);
714 outb(0xaa, ioaddr->lbal_addr);
715
716 nsect = inb(ioaddr->nsect_addr);
717 lbal = inb(ioaddr->lbal_addr);
718
719 if ((nsect == 0x55) && (lbal == 0xaa))
720 return 1; /* we found a device */
721
722 return 0; /* nothing found */
723}
724
725/**
726 * ata_mmio_devchk - PATA device presence detection
727 * @ap: ATA channel to examine
728 * @device: Device to examine (starting at zero)
729 *
730 * This technique was originally described in
731 * Hale Landis's ATADRVR (www.ata-atapi.com), and
732 * later found its way into the ATA/ATAPI spec.
733 *
734 * Write a pattern to the ATA shadow registers,
735 * and if a device is present, it will respond by
736 * correctly storing and echoing back the
737 * ATA shadow register contents.
738 *
739 * LOCKING:
740 * caller.
741 */
742
743static unsigned int ata_mmio_devchk(struct ata_port *ap,
744 unsigned int device)
745{
746 struct ata_ioports *ioaddr = &ap->ioaddr;
747 u8 nsect, lbal;
748
749 ap->ops->dev_select(ap, device);
750
751 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
752 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
753
754 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
755 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
756
757 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
758 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
759
760 nsect = readb((void __iomem *) ioaddr->nsect_addr);
761 lbal = readb((void __iomem *) ioaddr->lbal_addr);
762
763 if ((nsect == 0x55) && (lbal == 0xaa))
764 return 1; /* we found a device */
765
766 return 0; /* nothing found */
767}
768
769/**
770 * ata_devchk - PATA device presence detection
771 * @ap: ATA channel to examine
772 * @device: Device to examine (starting at zero)
773 *
774 * Dispatch ATA device presence detection, depending
775 * on whether we are using PIO or MMIO to talk to the
776 * ATA shadow registers.
777 *
778 * LOCKING:
779 * caller.
780 */
781
782static unsigned int ata_devchk(struct ata_port *ap,
783 unsigned int device)
784{
785 if (ap->flags & ATA_FLAG_MMIO)
786 return ata_mmio_devchk(ap, device);
787 return ata_pio_devchk(ap, device);
788}
789
790/**
791 * ata_dev_classify - determine device type based on ATA-spec signature
792 * @tf: ATA taskfile register set for device to be identified
793 *
794 * Determine from taskfile register contents whether a device is
795 * ATA or ATAPI, as per "Signature and persistence" section
796 * of ATA/PI spec (volume 1, sect 5.14).
797 *
798 * LOCKING:
799 * None.
800 *
801 * RETURNS:
802 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
803 * the event of failure.
804 */
805
Jeff Garzik057ace52005-10-22 14:27:05 -0400806unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 /* Apple's open source Darwin code hints that some devices only
809 * put a proper signature into the LBA mid/high registers,
810 * So, we only check those. It's sufficient for uniqueness.
811 */
812
813 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
814 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
815 DPRINTK("found ATA device by sig\n");
816 return ATA_DEV_ATA;
817 }
818
819 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
820 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
821 DPRINTK("found ATAPI device by sig\n");
822 return ATA_DEV_ATAPI;
823 }
824
825 DPRINTK("unknown device\n");
826 return ATA_DEV_UNKNOWN;
827}
828
829/**
830 * ata_dev_try_classify - Parse returned ATA device signature
831 * @ap: ATA channel to examine
832 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900833 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 *
835 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
836 * an ATA/ATAPI-defined set of values is placed in the ATA
837 * shadow registers, indicating the results of device detection
838 * and diagnostics.
839 *
840 * Select the ATA device, and read the values from the ATA shadow
841 * registers. Then parse according to the Error register value,
842 * and the spec-defined values examined by ata_dev_classify().
843 *
844 * LOCKING:
845 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900846 *
847 * RETURNS:
848 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 */
850
Tejun Heob4dc7622006-01-24 17:05:22 +0900851static unsigned int
852ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 struct ata_taskfile tf;
855 unsigned int class;
856 u8 err;
857
858 ap->ops->dev_select(ap, device);
859
860 memset(&tf, 0, sizeof(tf));
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400863 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900864 if (r_err)
865 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 /* see if device passed diags */
868 if (err == 1)
869 /* do nothing */ ;
870 else if ((device == 0) && (err == 0x81))
871 /* do nothing */ ;
872 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900873 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Tejun Heob4dc7622006-01-24 17:05:22 +0900875 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900879 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900881 return ATA_DEV_NONE;
882 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885/**
886 * ata_dev_id_string - Convert IDENTIFY DEVICE page into string
887 * @id: IDENTIFY DEVICE results we will examine
888 * @s: string into which data is output
889 * @ofs: offset into identify device page
890 * @len: length of string to return. must be an even number.
891 *
892 * The strings in the IDENTIFY DEVICE page are broken up into
893 * 16-bit chunks. Run through the string, and output each
894 * 8-bit chunk linearly, regardless of platform.
895 *
896 * LOCKING:
897 * caller.
898 */
899
Jeff Garzik057ace52005-10-22 14:27:05 -0400900void ata_dev_id_string(const u16 *id, unsigned char *s,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 unsigned int ofs, unsigned int len)
902{
903 unsigned int c;
904
905 while (len > 0) {
906 c = id[ofs] >> 8;
907 *s = c;
908 s++;
909
910 c = id[ofs] & 0xff;
911 *s = c;
912 s++;
913
914 ofs++;
915 len -= 2;
916 }
917}
918
Edward Falk0baab862005-06-02 18:17:13 -0400919
920/**
921 * ata_noop_dev_select - Select device 0/1 on ATA bus
922 * @ap: ATA channel to manipulate
923 * @device: ATA device (numbered from zero) to select
924 *
925 * This function performs no actual function.
926 *
927 * May be used as the dev_select() entry in ata_port_operations.
928 *
929 * LOCKING:
930 * caller.
931 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
933{
934}
935
Edward Falk0baab862005-06-02 18:17:13 -0400936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937/**
938 * ata_std_dev_select - Select device 0/1 on ATA bus
939 * @ap: ATA channel to manipulate
940 * @device: ATA device (numbered from zero) to select
941 *
942 * Use the method defined in the ATA specification to
943 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400944 * ATA channel. Works with both PIO and MMIO.
945 *
946 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 *
948 * LOCKING:
949 * caller.
950 */
951
952void ata_std_dev_select (struct ata_port *ap, unsigned int device)
953{
954 u8 tmp;
955
956 if (device == 0)
957 tmp = ATA_DEVICE_OBS;
958 else
959 tmp = ATA_DEVICE_OBS | ATA_DEV1;
960
961 if (ap->flags & ATA_FLAG_MMIO) {
962 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
963 } else {
964 outb(tmp, ap->ioaddr.device_addr);
965 }
966 ata_pause(ap); /* needed; also flushes, for mmio */
967}
968
969/**
970 * ata_dev_select - Select device 0/1 on ATA bus
971 * @ap: ATA channel to manipulate
972 * @device: ATA device (numbered from zero) to select
973 * @wait: non-zero to wait for Status register BSY bit to clear
974 * @can_sleep: non-zero if context allows sleeping
975 *
976 * Use the method defined in the ATA specification to
977 * make either device 0, or device 1, active on the
978 * ATA channel.
979 *
980 * This is a high-level version of ata_std_dev_select(),
981 * which additionally provides the services of inserting
982 * the proper pauses and status polling, where needed.
983 *
984 * LOCKING:
985 * caller.
986 */
987
988void ata_dev_select(struct ata_port *ap, unsigned int device,
989 unsigned int wait, unsigned int can_sleep)
990{
991 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
992 ap->id, device, wait);
993
994 if (wait)
995 ata_wait_idle(ap);
996
997 ap->ops->dev_select(ap, device);
998
999 if (wait) {
1000 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
1001 msleep(150);
1002 ata_wait_idle(ap);
1003 }
1004}
1005
1006/**
1007 * ata_dump_id - IDENTIFY DEVICE info debugging output
1008 * @dev: Device whose IDENTIFY DEVICE page we will dump
1009 *
1010 * Dump selected 16-bit words from a detected device's
1011 * IDENTIFY PAGE page.
1012 *
1013 * LOCKING:
1014 * caller.
1015 */
1016
Jeff Garzik057ace52005-10-22 14:27:05 -04001017static inline void ata_dump_id(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 DPRINTK("49==0x%04x "
1020 "53==0x%04x "
1021 "63==0x%04x "
1022 "64==0x%04x "
1023 "75==0x%04x \n",
1024 dev->id[49],
1025 dev->id[53],
1026 dev->id[63],
1027 dev->id[64],
1028 dev->id[75]);
1029 DPRINTK("80==0x%04x "
1030 "81==0x%04x "
1031 "82==0x%04x "
1032 "83==0x%04x "
1033 "84==0x%04x \n",
1034 dev->id[80],
1035 dev->id[81],
1036 dev->id[82],
1037 dev->id[83],
1038 dev->id[84]);
1039 DPRINTK("88==0x%04x "
1040 "93==0x%04x\n",
1041 dev->id[88],
1042 dev->id[93]);
1043}
1044
Alan Cox11e29e22005-10-21 18:46:32 -04001045/*
1046 * Compute the PIO modes available for this device. This is not as
1047 * trivial as it seems if we must consider early devices correctly.
1048 *
1049 * FIXME: pre IDE drive timing (do we care ?).
1050 */
1051
Jeff Garzik057ace52005-10-22 14:27:05 -04001052static unsigned int ata_pio_modes(const struct ata_device *adev)
Alan Cox11e29e22005-10-21 18:46:32 -04001053{
1054 u16 modes;
1055
Alan Coxffa29452006-01-09 17:14:40 +00001056 /* Usual case. Word 53 indicates word 64 is valid */
1057 if (adev->id[ATA_ID_FIELD_VALID] & (1 << 1)) {
Alan Cox11e29e22005-10-21 18:46:32 -04001058 modes = adev->id[ATA_ID_PIO_MODES] & 0x03;
1059 modes <<= 3;
1060 modes |= 0x7;
1061 return modes;
1062 }
1063
Alan Coxffa29452006-01-09 17:14:40 +00001064 /* If word 64 isn't valid then Word 51 high byte holds the PIO timing
1065 number for the maximum. Turn it into a mask and return it */
1066 modes = (2 << ((adev->id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF)) - 1 ;
Alan Cox11e29e22005-10-21 18:46:32 -04001067 return modes;
Alan Coxffa29452006-01-09 17:14:40 +00001068 /* But wait.. there's more. Design your standards by committee and
1069 you too can get a free iordy field to process. However its the
1070 speeds not the modes that are supported... Note drivers using the
1071 timing API will get this right anyway */
Alan Cox11e29e22005-10-21 18:46:32 -04001072}
1073
Tejun Heo95064372006-01-23 13:09:37 +09001074static inline void
1075ata_queue_packet_task(struct ata_port *ap)
1076{
1077 queue_work(ata_wq, &ap->packet_task);
1078}
1079
1080static inline void
1081ata_queue_pio_task(struct ata_port *ap)
1082{
1083 queue_work(ata_wq, &ap->pio_task);
1084}
1085
1086static inline void
1087ata_queue_delayed_pio_task(struct ata_port *ap, unsigned long delay)
1088{
1089 queue_delayed_work(ata_wq, &ap->pio_task, delay);
1090}
1091
Tejun Heo77853bf2006-01-23 13:09:36 +09001092void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001093{
Tejun Heo77853bf2006-01-23 13:09:36 +09001094 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001095
Tejun Heo77853bf2006-01-23 13:09:36 +09001096 qc->ap->ops->tf_read(qc->ap, &qc->tf);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001097 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001098}
1099
1100/**
1101 * ata_exec_internal - execute libata internal command
1102 * @ap: Port to which the command is sent
1103 * @dev: Device to which the command is sent
1104 * @tf: Taskfile registers for the command and the result
1105 * @dma_dir: Data tranfer direction of the command
1106 * @buf: Data buffer of the command
1107 * @buflen: Length of data buffer
1108 *
1109 * Executes libata internal command with timeout. @tf contains
1110 * command on entry and result on return. Timeout and error
1111 * conditions are reported via return value. No recovery action
1112 * is taken after a command times out. It's caller's duty to
1113 * clean up after timeout.
1114 *
1115 * LOCKING:
1116 * None. Should be called with kernel context, might sleep.
1117 */
1118
1119static unsigned
1120ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
1121 struct ata_taskfile *tf,
1122 int dma_dir, void *buf, unsigned int buflen)
1123{
1124 u8 command = tf->command;
1125 struct ata_queued_cmd *qc;
1126 DECLARE_COMPLETION(wait);
1127 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001128 unsigned int err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001129
1130 spin_lock_irqsave(&ap->host_set->lock, flags);
1131
1132 qc = ata_qc_new_init(ap, dev);
1133 BUG_ON(qc == NULL);
1134
1135 qc->tf = *tf;
1136 qc->dma_dir = dma_dir;
1137 if (dma_dir != DMA_NONE) {
1138 ata_sg_init_one(qc, buf, buflen);
1139 qc->nsect = buflen / ATA_SECT_SIZE;
1140 }
1141
Tejun Heo77853bf2006-01-23 13:09:36 +09001142 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001143 qc->complete_fn = ata_qc_complete_internal;
1144
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09001145 qc->err_mask = ata_qc_issue(qc);
1146 if (qc->err_mask)
Tejun Heo8e436af2006-01-23 13:09:36 +09001147 ata_qc_complete(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001148
1149 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1150
1151 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
1152 spin_lock_irqsave(&ap->host_set->lock, flags);
1153
1154 /* We're racing with irq here. If we lose, the
1155 * following test prevents us from completing the qc
1156 * again. If completion irq occurs after here but
1157 * before the caller cleans up, it will result in a
1158 * spurious interrupt. We can live with that.
1159 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001160 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heo11a56d22006-01-23 13:09:36 +09001161 qc->err_mask = AC_ERR_TIMEOUT;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001162 ata_qc_complete(qc);
1163 printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1164 ap->id, command);
1165 }
1166
1167 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1168 }
1169
Tejun Heo77853bf2006-01-23 13:09:36 +09001170 *tf = qc->tf;
1171 err_mask = qc->err_mask;
1172
1173 ata_qc_free(qc);
1174
1175 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001176}
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001179 * ata_pio_need_iordy - check if iordy needed
1180 * @adev: ATA device
1181 *
1182 * Check if the current speed of the device requires IORDY. Used
1183 * by various controllers for chip configuration.
1184 */
1185
1186unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1187{
1188 int pio;
1189 int speed = adev->pio_mode - XFER_PIO_0;
1190
1191 if (speed < 2)
1192 return 0;
1193 if (speed > 2)
1194 return 1;
1195
1196 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1197
1198 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1199 pio = adev->id[ATA_ID_EIDE_PIO];
1200 /* Is the speed faster than the drive allows non IORDY ? */
1201 if (pio) {
1202 /* This is cycle times not frequency - watch the logic! */
1203 if (pio > 240) /* PIO2 is 240nS per cycle */
1204 return 1;
1205 return 0;
1206 }
1207 }
1208 return 0;
1209}
1210
1211/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 * ata_dev_identify - obtain IDENTIFY x DEVICE page
1213 * @ap: port on which device we wish to probe resides
1214 * @device: device bus address, starting at zero
1215 *
1216 * Following bus reset, we issue the IDENTIFY [PACKET] DEVICE
1217 * command, and read back the 512-byte device information page.
1218 * The device information page is fed to us via the standard
1219 * PIO-IN protocol, but we hand-code it here. (TODO: investigate
1220 * using standard PIO-IN paths)
1221 *
1222 * After reading the device information page, we use several
1223 * bits of information from it to initialize data structures
1224 * that will be used during the lifetime of the ata_device.
1225 * Other data from the info page is used to disqualify certain
1226 * older ATA devices we do not wish to support.
1227 *
1228 * LOCKING:
1229 * Inherited from caller. Some functions called by this function
1230 * obtain the host_set lock.
1231 */
1232
1233static void ata_dev_identify(struct ata_port *ap, unsigned int device)
1234{
1235 struct ata_device *dev = &ap->device[device];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001236 unsigned int major_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 u16 tmp;
1238 unsigned long xfer_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 unsigned int using_edd;
Tejun Heoa0123702005-12-13 14:49:31 +09001240 struct ata_taskfile tf;
1241 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 int rc;
1243
1244 if (!ata_dev_present(dev)) {
1245 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
1246 ap->id, device);
1247 return;
1248 }
1249
1250 if (ap->flags & (ATA_FLAG_SRST | ATA_FLAG_SATA_RESET))
1251 using_edd = 0;
1252 else
1253 using_edd = 1;
1254
1255 DPRINTK("ENTER, host %u, dev %u\n", ap->id, device);
1256
1257 assert (dev->class == ATA_DEV_ATA || dev->class == ATA_DEV_ATAPI ||
1258 dev->class == ATA_DEV_NONE);
1259
1260 ata_dev_select(ap, device, 1, 1); /* select device 0/1 */
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262retry:
Tejun Heoa0123702005-12-13 14:49:31 +09001263 ata_tf_init(ap, &tf, device);
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (dev->class == ATA_DEV_ATA) {
Tejun Heoa0123702005-12-13 14:49:31 +09001266 tf.command = ATA_CMD_ID_ATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 DPRINTK("do ATA identify\n");
1268 } else {
Tejun Heoa0123702005-12-13 14:49:31 +09001269 tf.command = ATA_CMD_ID_ATAPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 DPRINTK("do ATAPI identify\n");
1271 }
1272
Tejun Heoa0123702005-12-13 14:49:31 +09001273 tf.protocol = ATA_PROT_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Tejun Heoa0123702005-12-13 14:49:31 +09001275 err_mask = ata_exec_internal(ap, dev, &tf, DMA_FROM_DEVICE,
1276 dev->id, sizeof(dev->id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Tejun Heoa0123702005-12-13 14:49:31 +09001278 if (err_mask) {
1279 if (err_mask & ~AC_ERR_DEV)
1280 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 /*
1283 * arg! EDD works for all test cases, but seems to return
1284 * the ATA signature for some ATAPI devices. Until the
1285 * reason for this is found and fixed, we fix up the mess
1286 * here. If IDENTIFY DEVICE returns command aborted
1287 * (as ATAPI devices do), then we issue an
1288 * IDENTIFY PACKET DEVICE.
1289 *
1290 * ATA software reset (SRST, the default) does not appear
1291 * to have this problem.
1292 */
Albert Lee7c398332005-11-09 13:03:30 +08001293 if ((using_edd) && (dev->class == ATA_DEV_ATA)) {
Tejun Heoa0123702005-12-13 14:49:31 +09001294 u8 err = tf.feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (err & ATA_ABORTED) {
1296 dev->class = ATA_DEV_ATAPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 goto retry;
1298 }
1299 }
1300 goto err_out;
1301 }
1302
1303 swap_buf_le16(dev->id, ATA_ID_WORDS);
1304
1305 /* print device capabilities */
1306 printk(KERN_DEBUG "ata%u: dev %u cfg "
1307 "49:%04x 82:%04x 83:%04x 84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1308 ap->id, device, dev->id[49],
1309 dev->id[82], dev->id[83], dev->id[84],
1310 dev->id[85], dev->id[86], dev->id[87],
1311 dev->id[88]);
1312
1313 /*
1314 * common ATA, ATAPI feature tests
1315 */
1316
Albert Lee8bf62ece2005-05-12 15:29:42 -04001317 /* we require DMA support (bits 8 of word 49) */
1318 if (!ata_id_has_dma(dev->id)) {
1319 printk(KERN_DEBUG "ata%u: no dma\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 goto err_out_nosup;
1321 }
1322
1323 /* quick-n-dirty find max transfer mode; for printk only */
1324 xfer_modes = dev->id[ATA_ID_UDMA_MODES];
1325 if (!xfer_modes)
1326 xfer_modes = (dev->id[ATA_ID_MWDMA_MODES]) << ATA_SHIFT_MWDMA;
Alan Cox11e29e22005-10-21 18:46:32 -04001327 if (!xfer_modes)
1328 xfer_modes = ata_pio_modes(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 ata_dump_id(dev);
1331
1332 /* ATA-specific feature tests */
1333 if (dev->class == ATA_DEV_ATA) {
1334 if (!ata_id_is_ata(dev->id)) /* sanity check */
1335 goto err_out_nosup;
1336
Albert Lee8bf62ece2005-05-12 15:29:42 -04001337 /* get major version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 tmp = dev->id[ATA_ID_MAJOR_VER];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001339 for (major_version = 14; major_version >= 1; major_version--)
1340 if (tmp & (1 << major_version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 break;
1342
Albert Lee8bf62ece2005-05-12 15:29:42 -04001343 /*
1344 * The exact sequence expected by certain pre-ATA4 drives is:
1345 * SRST RESET
1346 * IDENTIFY
1347 * INITIALIZE DEVICE PARAMETERS
1348 * anything else..
1349 * Some drives were very specific about that exact sequence.
1350 */
Albert Lee59a10b12005-10-12 15:09:42 +08001351 if (major_version < 4 || (!ata_id_has_lba(dev->id))) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001352 ata_dev_init_params(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Albert Lee59a10b12005-10-12 15:09:42 +08001354 /* current CHS translation info (id[53-58]) might be
1355 * changed. reread the identify device info.
1356 */
1357 ata_dev_reread_id(ap, dev);
1358 }
1359
Albert Lee8bf62ece2005-05-12 15:29:42 -04001360 if (ata_id_has_lba(dev->id)) {
1361 dev->flags |= ATA_DFLAG_LBA;
1362
1363 if (ata_id_has_lba48(dev->id)) {
1364 dev->flags |= ATA_DFLAG_LBA48;
1365 dev->n_sectors = ata_id_u64(dev->id, 100);
1366 } else {
1367 dev->n_sectors = ata_id_u32(dev->id, 60);
1368 }
1369
1370 /* print device info to dmesg */
1371 printk(KERN_INFO "ata%u: dev %u ATA-%d, max %s, %Lu sectors:%s\n",
1372 ap->id, device,
1373 major_version,
1374 ata_mode_string(xfer_modes),
1375 (unsigned long long)dev->n_sectors,
1376 dev->flags & ATA_DFLAG_LBA48 ? " LBA48" : " LBA");
1377 } else {
1378 /* CHS */
1379
1380 /* Default translation */
1381 dev->cylinders = dev->id[1];
1382 dev->heads = dev->id[3];
1383 dev->sectors = dev->id[6];
1384 dev->n_sectors = dev->cylinders * dev->heads * dev->sectors;
1385
1386 if (ata_id_current_chs_valid(dev->id)) {
1387 /* Current CHS translation is valid. */
1388 dev->cylinders = dev->id[54];
1389 dev->heads = dev->id[55];
1390 dev->sectors = dev->id[56];
1391
1392 dev->n_sectors = ata_id_u32(dev->id, 57);
1393 }
1394
1395 /* print device info to dmesg */
1396 printk(KERN_INFO "ata%u: dev %u ATA-%d, max %s, %Lu sectors: CHS %d/%d/%d\n",
1397 ap->id, device,
1398 major_version,
1399 ata_mode_string(xfer_modes),
1400 (unsigned long long)dev->n_sectors,
1401 (int)dev->cylinders, (int)dev->heads, (int)dev->sectors);
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
1405 ap->host->max_cmd_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407
1408 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001409 else if (dev->class == ATA_DEV_ATAPI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 if (ata_id_is_ata(dev->id)) /* sanity check */
1411 goto err_out_nosup;
1412
1413 rc = atapi_cdb_len(dev->id);
1414 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1415 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
1416 goto err_out_nosup;
1417 }
1418 ap->cdb_len = (unsigned int) rc;
1419 ap->host->max_cmd_len = (unsigned char) ap->cdb_len;
1420
1421 /* print device info to dmesg */
1422 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
1423 ap->id, device,
1424 ata_mode_string(xfer_modes));
1425 }
1426
1427 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
1428 return;
1429
1430err_out_nosup:
1431 printk(KERN_WARNING "ata%u: dev %u not supported, ignoring\n",
1432 ap->id, device);
1433err_out:
1434 dev->class++; /* converts ATA_DEV_xxx into ATA_DEV_xxx_UNSUP */
1435 DPRINTK("EXIT, err\n");
1436}
1437
Brad Campbell6f2f3812005-05-12 15:07:47 -04001438
Jeff Garzik057ace52005-10-22 14:27:05 -04001439static inline u8 ata_dev_knobble(const struct ata_port *ap)
Brad Campbell6f2f3812005-05-12 15:07:47 -04001440{
1441 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(ap->device->id)));
1442}
1443
1444/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001445 * ata_dev_config - Run device specific handlers & check for SATA->PATA bridges
1446 * @ap: Bus
1447 * @i: Device
Brad Campbell6f2f3812005-05-12 15:07:47 -04001448 *
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001449 * LOCKING:
Brad Campbell6f2f3812005-05-12 15:07:47 -04001450 */
Jeff Garzik8a60a072005-07-31 13:13:24 -04001451
Brad Campbell6f2f3812005-05-12 15:07:47 -04001452void ata_dev_config(struct ata_port *ap, unsigned int i)
1453{
1454 /* limit bridge transfers to udma5, 200 sectors */
1455 if (ata_dev_knobble(ap)) {
1456 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1457 ap->id, ap->device->devno);
1458 ap->udma_mask &= ATA_UDMA5;
1459 ap->host->max_sectors = ATA_MAX_SECTORS;
1460 ap->host->hostt->max_sectors = ATA_MAX_SECTORS;
Alan Cox9d824d02006-01-17 20:51:55 +00001461 ap->device[i].flags |= ATA_DFLAG_LOCK_SECTORS;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001462 }
1463
1464 if (ap->ops->dev_config)
1465 ap->ops->dev_config(ap, &ap->device[i]);
1466}
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468/**
1469 * ata_bus_probe - Reset and probe ATA bus
1470 * @ap: Bus to probe
1471 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001472 * Master ATA bus probing function. Initiates a hardware-dependent
1473 * bus reset, then attempts to identify any devices found on
1474 * the bus.
1475 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001477 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 *
1479 * RETURNS:
1480 * Zero on success, non-zero on error.
1481 */
1482
1483static int ata_bus_probe(struct ata_port *ap)
1484{
1485 unsigned int i, found = 0;
1486
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001487 if (ap->ops->probe_reset) {
1488 unsigned int classes[ATA_MAX_DEVICES];
1489 int rc;
1490
1491 ata_port_probe(ap);
1492
1493 rc = ap->ops->probe_reset(ap, classes);
1494 if (rc == 0) {
1495 for (i = 0; i < ATA_MAX_DEVICES; i++)
1496 ap->device[i].class = classes[i];
1497 } else {
1498 printk(KERN_ERR "ata%u: probe reset failed, "
1499 "disabling port\n", ap->id);
1500 ata_port_disable(ap);
1501 }
1502 } else
1503 ap->ops->phy_reset(ap);
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1506 goto err_out;
1507
1508 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1509 ata_dev_identify(ap, i);
1510 if (ata_dev_present(&ap->device[i])) {
1511 found = 1;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001512 ata_dev_config(ap,i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
1514 }
1515
1516 if ((!found) || (ap->flags & ATA_FLAG_PORT_DISABLED))
1517 goto err_out_disable;
1518
1519 ata_set_mode(ap);
1520 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1521 goto err_out_disable;
1522
1523 return 0;
1524
1525err_out_disable:
1526 ap->ops->port_disable(ap);
1527err_out:
1528 return -1;
1529}
1530
1531/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001532 * ata_port_probe - Mark port as enabled
1533 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001535 * Modify @ap data structure such that the system
1536 * thinks that the entire port is enabled.
1537 *
1538 * LOCKING: host_set lock, or some other form of
1539 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 */
1541
1542void ata_port_probe(struct ata_port *ap)
1543{
1544 ap->flags &= ~ATA_FLAG_PORT_DISABLED;
1545}
1546
1547/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001548 * sata_print_link_status - Print SATA link status
1549 * @ap: SATA port to printk link status about
1550 *
1551 * This function prints link speed and status of a SATA link.
1552 *
1553 * LOCKING:
1554 * None.
1555 */
1556static void sata_print_link_status(struct ata_port *ap)
1557{
1558 u32 sstatus, tmp;
1559 const char *speed;
1560
1561 if (!ap->ops->scr_read)
1562 return;
1563
1564 sstatus = scr_read(ap, SCR_STATUS);
1565
1566 if (sata_dev_present(ap)) {
1567 tmp = (sstatus >> 4) & 0xf;
1568 if (tmp & (1 << 0))
1569 speed = "1.5";
1570 else if (tmp & (1 << 1))
1571 speed = "3.0";
1572 else
1573 speed = "<unknown>";
1574 printk(KERN_INFO "ata%u: SATA link up %s Gbps (SStatus %X)\n",
1575 ap->id, speed, sstatus);
1576 } else {
1577 printk(KERN_INFO "ata%u: SATA link down (SStatus %X)\n",
1578 ap->id, sstatus);
1579 }
1580}
1581
1582/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001583 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1584 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001586 * This function issues commands to standard SATA Sxxx
1587 * PHY registers, to wake up the phy (and device), and
1588 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 *
1590 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001591 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 *
1593 */
1594void __sata_phy_reset(struct ata_port *ap)
1595{
1596 u32 sstatus;
1597 unsigned long timeout = jiffies + (HZ * 5);
1598
1599 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05001600 /* issue phy wake/reset */
1601 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001602 /* Couldn't find anything in SATA I/II specs, but
1603 * AHCI-1.1 10.4.2 says at least 1 ms. */
1604 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
Brett Russcdcca89e2005-03-28 15:10:27 -05001606 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 /* wait for phy to become ready, if necessary */
1609 do {
1610 msleep(200);
1611 sstatus = scr_read(ap, SCR_STATUS);
1612 if ((sstatus & 0xf) != 1)
1613 break;
1614 } while (time_before(jiffies, timeout));
1615
Tejun Heo3be680b2005-12-19 22:35:02 +09001616 /* print link status */
1617 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001618
Tejun Heo3be680b2005-12-19 22:35:02 +09001619 /* TODO: phy layer with polling, timeouts, etc. */
1620 if (sata_dev_present(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001622 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1626 return;
1627
1628 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1629 ata_port_disable(ap);
1630 return;
1631 }
1632
1633 ap->cbl = ATA_CBL_SATA;
1634}
1635
1636/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001637 * sata_phy_reset - Reset SATA bus.
1638 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001640 * This function resets the SATA bus, and then probes
1641 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 *
1643 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001644 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 *
1646 */
1647void sata_phy_reset(struct ata_port *ap)
1648{
1649 __sata_phy_reset(ap);
1650 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1651 return;
1652 ata_bus_reset(ap);
1653}
1654
1655/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001656 * ata_port_disable - Disable port.
1657 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001659 * Modify @ap data structure such that the system
1660 * thinks that the entire port is disabled, and should
1661 * never attempt to probe or communicate with devices
1662 * on this port.
1663 *
1664 * LOCKING: host_set lock, or some other form of
1665 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 */
1667
1668void ata_port_disable(struct ata_port *ap)
1669{
1670 ap->device[0].class = ATA_DEV_NONE;
1671 ap->device[1].class = ATA_DEV_NONE;
1672 ap->flags |= ATA_FLAG_PORT_DISABLED;
1673}
1674
Alan Cox452503f2005-10-21 19:01:32 -04001675/*
1676 * This mode timing computation functionality is ported over from
1677 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1678 */
1679/*
1680 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1681 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1682 * for PIO 5, which is a nonstandard extension and UDMA6, which
1683 * is currently supported only by Maxtor drives.
1684 */
1685
1686static const struct ata_timing ata_timing[] = {
1687
1688 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1689 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1690 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1691 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1692
1693 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1694 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1695 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1696
1697/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
1698
1699 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1700 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1701 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
1702
1703 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1704 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1705 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1706
1707/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1708 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1709 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1710
1711 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1712 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1713 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1714
1715/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1716
1717 { 0xFF }
1718};
1719
1720#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1721#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1722
1723static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1724{
1725 q->setup = EZ(t->setup * 1000, T);
1726 q->act8b = EZ(t->act8b * 1000, T);
1727 q->rec8b = EZ(t->rec8b * 1000, T);
1728 q->cyc8b = EZ(t->cyc8b * 1000, T);
1729 q->active = EZ(t->active * 1000, T);
1730 q->recover = EZ(t->recover * 1000, T);
1731 q->cycle = EZ(t->cycle * 1000, T);
1732 q->udma = EZ(t->udma * 1000, UT);
1733}
1734
1735void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1736 struct ata_timing *m, unsigned int what)
1737{
1738 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1739 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1740 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1741 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1742 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1743 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1744 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1745 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1746}
1747
1748static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1749{
1750 const struct ata_timing *t;
1751
1752 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001753 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001754 return NULL;
1755 return t;
1756}
1757
1758int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1759 struct ata_timing *t, int T, int UT)
1760{
1761 const struct ata_timing *s;
1762 struct ata_timing p;
1763
1764 /*
1765 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001766 */
Alan Cox452503f2005-10-21 19:01:32 -04001767
1768 if (!(s = ata_timing_find_mode(speed)))
1769 return -EINVAL;
1770
Albert Lee75b1f2f2005-11-16 17:06:18 +08001771 memcpy(t, s, sizeof(*s));
1772
Alan Cox452503f2005-10-21 19:01:32 -04001773 /*
1774 * If the drive is an EIDE drive, it can tell us it needs extended
1775 * PIO/MW_DMA cycle timing.
1776 */
1777
1778 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1779 memset(&p, 0, sizeof(p));
1780 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1781 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1782 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1783 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1784 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1785 }
1786 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1787 }
1788
1789 /*
1790 * Convert the timing to bus clock counts.
1791 */
1792
Albert Lee75b1f2f2005-11-16 17:06:18 +08001793 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001794
1795 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001796 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1797 * S.M.A.R.T * and some other commands. We have to ensure that the
1798 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001799 */
1800
1801 if (speed > XFER_PIO_4) {
1802 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1803 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1804 }
1805
1806 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001807 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001808 */
1809
1810 if (t->act8b + t->rec8b < t->cyc8b) {
1811 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1812 t->rec8b = t->cyc8b - t->act8b;
1813 }
1814
1815 if (t->active + t->recover < t->cycle) {
1816 t->active += (t->cycle - (t->active + t->recover)) / 2;
1817 t->recover = t->cycle - t->active;
1818 }
1819
1820 return 0;
1821}
1822
Jeff Garzik057ace52005-10-22 14:27:05 -04001823static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 unsigned int shift;
1825 u8 base;
1826} xfer_mode_classes[] = {
1827 { ATA_SHIFT_UDMA, XFER_UDMA_0 },
1828 { ATA_SHIFT_MWDMA, XFER_MW_DMA_0 },
1829 { ATA_SHIFT_PIO, XFER_PIO_0 },
1830};
1831
Arjan van de Ven858119e2006-01-14 13:20:43 -08001832static u8 base_from_shift(unsigned int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
1834 int i;
1835
1836 for (i = 0; i < ARRAY_SIZE(xfer_mode_classes); i++)
1837 if (xfer_mode_classes[i].shift == shift)
1838 return xfer_mode_classes[i].base;
1839
1840 return 0xff;
1841}
1842
1843static void ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
1844{
1845 int ofs, idx;
1846 u8 base;
1847
1848 if (!ata_dev_present(dev) || (ap->flags & ATA_FLAG_PORT_DISABLED))
1849 return;
1850
1851 if (dev->xfer_shift == ATA_SHIFT_PIO)
1852 dev->flags |= ATA_DFLAG_PIO;
1853
1854 ata_dev_set_xfermode(ap, dev);
1855
1856 base = base_from_shift(dev->xfer_shift);
1857 ofs = dev->xfer_mode - base;
1858 idx = ofs + dev->xfer_shift;
1859 WARN_ON(idx >= ARRAY_SIZE(xfer_mode_str));
1860
1861 DPRINTK("idx=%d xfer_shift=%u, xfer_mode=0x%x, base=0x%x, offset=%d\n",
1862 idx, dev->xfer_shift, (int)dev->xfer_mode, (int)base, ofs);
1863
1864 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
1865 ap->id, dev->devno, xfer_mode_str[idx]);
1866}
1867
1868static int ata_host_set_pio(struct ata_port *ap)
1869{
1870 unsigned int mask;
1871 int x, i;
1872 u8 base, xfer_mode;
1873
1874 mask = ata_get_mode_mask(ap, ATA_SHIFT_PIO);
1875 x = fgb(mask);
1876 if (x < 0) {
1877 printk(KERN_WARNING "ata%u: no PIO support\n", ap->id);
1878 return -1;
1879 }
1880
1881 base = base_from_shift(ATA_SHIFT_PIO);
1882 xfer_mode = base + x;
1883
1884 DPRINTK("base 0x%x xfer_mode 0x%x mask 0x%x x %d\n",
1885 (int)base, (int)xfer_mode, mask, x);
1886
1887 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1888 struct ata_device *dev = &ap->device[i];
1889 if (ata_dev_present(dev)) {
1890 dev->pio_mode = xfer_mode;
1891 dev->xfer_mode = xfer_mode;
1892 dev->xfer_shift = ATA_SHIFT_PIO;
1893 if (ap->ops->set_piomode)
1894 ap->ops->set_piomode(ap, dev);
1895 }
1896 }
1897
1898 return 0;
1899}
1900
1901static void ata_host_set_dma(struct ata_port *ap, u8 xfer_mode,
1902 unsigned int xfer_shift)
1903{
1904 int i;
1905
1906 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1907 struct ata_device *dev = &ap->device[i];
1908 if (ata_dev_present(dev)) {
1909 dev->dma_mode = xfer_mode;
1910 dev->xfer_mode = xfer_mode;
1911 dev->xfer_shift = xfer_shift;
1912 if (ap->ops->set_dmamode)
1913 ap->ops->set_dmamode(ap, dev);
1914 }
1915 }
1916}
1917
1918/**
1919 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1920 * @ap: port on which timings will be programmed
1921 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001922 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.).
1923 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001925 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 */
1927static void ata_set_mode(struct ata_port *ap)
1928{
Albert Lee8cbd6df2005-10-12 15:06:27 +08001929 unsigned int xfer_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 u8 xfer_mode;
1931 int rc;
1932
1933 /* step 1: always set host PIO timings */
1934 rc = ata_host_set_pio(ap);
1935 if (rc)
1936 goto err_out;
1937
1938 /* step 2: choose the best data xfer mode */
1939 xfer_mode = xfer_shift = 0;
1940 rc = ata_choose_xfer_mode(ap, &xfer_mode, &xfer_shift);
1941 if (rc)
1942 goto err_out;
1943
1944 /* step 3: if that xfer mode isn't PIO, set host DMA timings */
1945 if (xfer_shift != ATA_SHIFT_PIO)
1946 ata_host_set_dma(ap, xfer_mode, xfer_shift);
1947
1948 /* step 4: update devices' xfer mode */
1949 ata_dev_set_mode(ap, &ap->device[0]);
1950 ata_dev_set_mode(ap, &ap->device[1]);
1951
1952 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1953 return;
1954
1955 if (ap->ops->post_set_mode)
1956 ap->ops->post_set_mode(ap);
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return;
1959
1960err_out:
1961 ata_port_disable(ap);
1962}
1963
1964/**
1965 * ata_busy_sleep - sleep until BSY clears, or timeout
1966 * @ap: port containing status register to be polled
1967 * @tmout_pat: impatience timeout
1968 * @tmout: overall timeout
1969 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001970 * Sleep until ATA Status register bit BSY clears,
1971 * or a timeout occurs.
1972 *
1973 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 */
1975
Tejun Heo6f8b9952006-01-24 17:05:21 +09001976unsigned int ata_busy_sleep (struct ata_port *ap,
1977 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
1979 unsigned long timer_start, timeout;
1980 u8 status;
1981
1982 status = ata_busy_wait(ap, ATA_BUSY, 300);
1983 timer_start = jiffies;
1984 timeout = timer_start + tmout_pat;
1985 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1986 msleep(50);
1987 status = ata_busy_wait(ap, ATA_BUSY, 3);
1988 }
1989
1990 if (status & ATA_BUSY)
1991 printk(KERN_WARNING "ata%u is slow to respond, "
1992 "please be patient\n", ap->id);
1993
1994 timeout = timer_start + tmout;
1995 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1996 msleep(50);
1997 status = ata_chk_status(ap);
1998 }
1999
2000 if (status & ATA_BUSY) {
2001 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
2002 ap->id, tmout / HZ);
2003 return 1;
2004 }
2005
2006 return 0;
2007}
2008
2009static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2010{
2011 struct ata_ioports *ioaddr = &ap->ioaddr;
2012 unsigned int dev0 = devmask & (1 << 0);
2013 unsigned int dev1 = devmask & (1 << 1);
2014 unsigned long timeout;
2015
2016 /* if device 0 was found in ata_devchk, wait for its
2017 * BSY bit to clear
2018 */
2019 if (dev0)
2020 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2021
2022 /* if device 1 was found in ata_devchk, wait for
2023 * register access, then wait for BSY to clear
2024 */
2025 timeout = jiffies + ATA_TMOUT_BOOT;
2026 while (dev1) {
2027 u8 nsect, lbal;
2028
2029 ap->ops->dev_select(ap, 1);
2030 if (ap->flags & ATA_FLAG_MMIO) {
2031 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2032 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2033 } else {
2034 nsect = inb(ioaddr->nsect_addr);
2035 lbal = inb(ioaddr->lbal_addr);
2036 }
2037 if ((nsect == 1) && (lbal == 1))
2038 break;
2039 if (time_after(jiffies, timeout)) {
2040 dev1 = 0;
2041 break;
2042 }
2043 msleep(50); /* give drive a breather */
2044 }
2045 if (dev1)
2046 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2047
2048 /* is all this really necessary? */
2049 ap->ops->dev_select(ap, 0);
2050 if (dev1)
2051 ap->ops->dev_select(ap, 1);
2052 if (dev0)
2053 ap->ops->dev_select(ap, 0);
2054}
2055
2056/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002057 * ata_bus_edd - Issue EXECUTE DEVICE DIAGNOSTIC command.
2058 * @ap: Port to reset and probe
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002060 * Use the EXECUTE DEVICE DIAGNOSTIC command to reset and
2061 * probe the bus. Not often used these days.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 *
2063 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002064 * PCI/etc. bus probe sem.
Jeff Garzike5338252005-10-30 21:37:17 -05002065 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 *
2067 */
2068
2069static unsigned int ata_bus_edd(struct ata_port *ap)
2070{
2071 struct ata_taskfile tf;
Jeff Garzike5338252005-10-30 21:37:17 -05002072 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 /* set up execute-device-diag (bus reset) taskfile */
2075 /* also, take interrupts to a known state (disabled) */
2076 DPRINTK("execute-device-diag\n");
2077 ata_tf_init(ap, &tf, 0);
2078 tf.ctl |= ATA_NIEN;
2079 tf.command = ATA_CMD_EDD;
2080 tf.protocol = ATA_PROT_NODATA;
2081
2082 /* do bus reset */
Jeff Garzike5338252005-10-30 21:37:17 -05002083 spin_lock_irqsave(&ap->host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 ata_tf_to_host(ap, &tf);
Jeff Garzike5338252005-10-30 21:37:17 -05002085 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 /* spec says at least 2ms. but who knows with those
2088 * crazy ATAPI devices...
2089 */
2090 msleep(150);
2091
2092 return ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2093}
2094
2095static unsigned int ata_bus_softreset(struct ata_port *ap,
2096 unsigned int devmask)
2097{
2098 struct ata_ioports *ioaddr = &ap->ioaddr;
2099
2100 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2101
2102 /* software reset. causes dev0 to be selected */
2103 if (ap->flags & ATA_FLAG_MMIO) {
2104 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2105 udelay(20); /* FIXME: flush */
2106 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2107 udelay(20); /* FIXME: flush */
2108 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2109 } else {
2110 outb(ap->ctl, ioaddr->ctl_addr);
2111 udelay(10);
2112 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2113 udelay(10);
2114 outb(ap->ctl, ioaddr->ctl_addr);
2115 }
2116
2117 /* spec mandates ">= 2ms" before checking status.
2118 * We wait 150ms, because that was the magic delay used for
2119 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2120 * between when the ATA command register is written, and then
2121 * status is checked. Because waiting for "a while" before
2122 * checking status is fine, post SRST, we perform this magic
2123 * delay here as well.
2124 */
2125 msleep(150);
2126
2127 ata_bus_post_reset(ap, devmask);
2128
2129 return 0;
2130}
2131
2132/**
2133 * ata_bus_reset - reset host port and associated ATA channel
2134 * @ap: port to reset
2135 *
2136 * This is typically the first time we actually start issuing
2137 * commands to the ATA channel. We wait for BSY to clear, then
2138 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2139 * result. Determine what devices, if any, are on the channel
2140 * by looking at the device 0/1 error register. Look at the signature
2141 * stored in each device's taskfile registers, to determine if
2142 * the device is ATA or ATAPI.
2143 *
2144 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002145 * PCI/etc. bus probe sem.
2146 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 *
2148 * SIDE EFFECTS:
2149 * Sets ATA_FLAG_PORT_DISABLED if bus reset fails.
2150 */
2151
2152void ata_bus_reset(struct ata_port *ap)
2153{
2154 struct ata_ioports *ioaddr = &ap->ioaddr;
2155 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2156 u8 err;
2157 unsigned int dev0, dev1 = 0, rc = 0, devmask = 0;
2158
2159 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2160
2161 /* determine if device 0/1 are present */
2162 if (ap->flags & ATA_FLAG_SATA_RESET)
2163 dev0 = 1;
2164 else {
2165 dev0 = ata_devchk(ap, 0);
2166 if (slave_possible)
2167 dev1 = ata_devchk(ap, 1);
2168 }
2169
2170 if (dev0)
2171 devmask |= (1 << 0);
2172 if (dev1)
2173 devmask |= (1 << 1);
2174
2175 /* select device 0 again */
2176 ap->ops->dev_select(ap, 0);
2177
2178 /* issue bus reset */
2179 if (ap->flags & ATA_FLAG_SRST)
2180 rc = ata_bus_softreset(ap, devmask);
2181 else if ((ap->flags & ATA_FLAG_SATA_RESET) == 0) {
2182 /* set up device control */
2183 if (ap->flags & ATA_FLAG_MMIO)
2184 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2185 else
2186 outb(ap->ctl, ioaddr->ctl_addr);
2187 rc = ata_bus_edd(ap);
2188 }
2189
2190 if (rc)
2191 goto err_out;
2192
2193 /*
2194 * determine by signature whether we have ATA or ATAPI devices
2195 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002196 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002198 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200 /* re-enable interrupts */
2201 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2202 ata_irq_on(ap);
2203
2204 /* is double-select really necessary? */
2205 if (ap->device[1].class != ATA_DEV_NONE)
2206 ap->ops->dev_select(ap, 1);
2207 if (ap->device[0].class != ATA_DEV_NONE)
2208 ap->ops->dev_select(ap, 0);
2209
2210 /* if no devices were detected, disable this port */
2211 if ((ap->device[0].class == ATA_DEV_NONE) &&
2212 (ap->device[1].class == ATA_DEV_NONE))
2213 goto err_out;
2214
2215 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2216 /* set up device control for ATA_FLAG_SATA_RESET */
2217 if (ap->flags & ATA_FLAG_MMIO)
2218 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2219 else
2220 outb(ap->ctl, ioaddr->ctl_addr);
2221 }
2222
2223 DPRINTK("EXIT\n");
2224 return;
2225
2226err_out:
2227 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2228 ap->ops->port_disable(ap);
2229
2230 DPRINTK("EXIT\n");
2231}
2232
Tejun Heoc2bd5802006-01-24 17:05:22 +09002233/**
2234 * ata_std_softreset - reset host port via ATA SRST
2235 * @ap: port to reset
2236 * @verbose: fail verbosely
2237 * @classes: resulting classes of attached devices
2238 *
2239 * Reset host port using ATA SRST. This function is to be used
2240 * as standard callback for ata_drive_*_reset() functions.
2241 *
2242 * LOCKING:
2243 * Kernel thread context (may sleep)
2244 *
2245 * RETURNS:
2246 * 0 on success, -errno otherwise.
2247 */
2248int ata_std_softreset(struct ata_port *ap, int verbose, unsigned int *classes)
2249{
2250 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2251 unsigned int devmask = 0, err_mask;
2252 u8 err;
2253
2254 DPRINTK("ENTER\n");
2255
2256 /* determine if device 0/1 are present */
2257 if (ata_devchk(ap, 0))
2258 devmask |= (1 << 0);
2259 if (slave_possible && ata_devchk(ap, 1))
2260 devmask |= (1 << 1);
2261
2262 /* devchk reports device presence without actual device on
2263 * most SATA controllers. Check SStatus and turn devmask off
2264 * if link is offline. Note that we should continue resetting
2265 * even when it seems like there's no device.
2266 */
2267 if (ap->ops->scr_read && !sata_dev_present(ap))
2268 devmask = 0;
2269
2270 /* select device 0 again */
2271 ap->ops->dev_select(ap, 0);
2272
2273 /* issue bus reset */
2274 DPRINTK("about to softreset, devmask=%x\n", devmask);
2275 err_mask = ata_bus_softreset(ap, devmask);
2276 if (err_mask) {
2277 if (verbose)
2278 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2279 ap->id, err_mask);
2280 else
2281 DPRINTK("EXIT, softreset failed (err_mask=0x%x)\n",
2282 err_mask);
2283 return -EIO;
2284 }
2285
2286 /* determine by signature whether we have ATA or ATAPI devices */
2287 classes[0] = ata_dev_try_classify(ap, 0, &err);
2288 if (slave_possible && err != 0x81)
2289 classes[1] = ata_dev_try_classify(ap, 1, &err);
2290
2291 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2292 return 0;
2293}
2294
2295/**
2296 * sata_std_hardreset - reset host port via SATA phy reset
2297 * @ap: port to reset
2298 * @verbose: fail verbosely
2299 * @class: resulting class of attached device
2300 *
2301 * SATA phy-reset host port using DET bits of SControl register.
2302 * This function is to be used as standard callback for
2303 * ata_drive_*_reset().
2304 *
2305 * LOCKING:
2306 * Kernel thread context (may sleep)
2307 *
2308 * RETURNS:
2309 * 0 on success, -errno otherwise.
2310 */
2311int sata_std_hardreset(struct ata_port *ap, int verbose, unsigned int *class)
2312{
2313 u32 sstatus, serror;
2314 unsigned long timeout = jiffies + (HZ * 5);
2315
2316 DPRINTK("ENTER\n");
2317
2318 /* Issue phy wake/reset */
2319 scr_write_flush(ap, SCR_CONTROL, 0x301);
2320
2321 /*
2322 * Couldn't find anything in SATA I/II specs, but AHCI-1.1
2323 * 10.4.2 says at least 1 ms.
2324 */
2325 msleep(1);
2326
2327 scr_write_flush(ap, SCR_CONTROL, 0x300);
2328
2329 /* Wait for phy to become ready, if necessary. */
2330 do {
2331 msleep(200);
2332 sstatus = scr_read(ap, SCR_STATUS);
2333 if ((sstatus & 0xf) != 1)
2334 break;
2335 } while (time_before(jiffies, timeout));
2336
2337 /* Clear SError */
2338 serror = scr_read(ap, SCR_ERROR);
2339 scr_write(ap, SCR_ERROR, serror);
2340
2341 /* TODO: phy layer with polling, timeouts, etc. */
2342 if (!sata_dev_present(ap)) {
2343 *class = ATA_DEV_NONE;
2344 DPRINTK("EXIT, link offline\n");
2345 return 0;
2346 }
2347
2348 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2349 if (verbose)
2350 printk(KERN_ERR "ata%u: COMRESET failed "
2351 "(device not ready)\n", ap->id);
2352 else
2353 DPRINTK("EXIT, device not ready\n");
2354 return -EIO;
2355 }
2356
2357 *class = ata_dev_try_classify(ap, 0, NULL);
2358
2359 DPRINTK("EXIT, class=%u\n", *class);
2360 return 0;
2361}
2362
2363/**
2364 * ata_std_postreset - standard postreset callback
2365 * @ap: the target ata_port
2366 * @classes: classes of attached devices
2367 *
2368 * This function is invoked after a successful reset. Note that
2369 * the device might have been reset more than once using
2370 * different reset methods before postreset is invoked.
2371 * postreset is also reponsible for setting cable type.
2372 *
2373 * This function is to be used as standard callback for
2374 * ata_drive_*_reset().
2375 *
2376 * LOCKING:
2377 * Kernel thread context (may sleep)
2378 */
2379void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2380{
2381 DPRINTK("ENTER\n");
2382
2383 /* set cable type */
2384 if (ap->cbl == ATA_CBL_NONE && ap->flags & ATA_FLAG_SATA)
2385 ap->cbl = ATA_CBL_SATA;
2386
2387 /* print link status */
2388 if (ap->cbl == ATA_CBL_SATA)
2389 sata_print_link_status(ap);
2390
2391 /* bail out if no device is present */
2392 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2393 DPRINTK("EXIT, no device\n");
2394 return;
2395 }
2396
2397 /* is double-select really necessary? */
2398 if (classes[0] != ATA_DEV_NONE)
2399 ap->ops->dev_select(ap, 1);
2400 if (classes[1] != ATA_DEV_NONE)
2401 ap->ops->dev_select(ap, 0);
2402
2403 /* re-enable interrupts & set up device control */
2404 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2405 ata_irq_on(ap);
2406
2407 DPRINTK("EXIT\n");
2408}
2409
2410/**
2411 * ata_std_probe_reset - standard probe reset method
2412 * @ap: prot to perform probe-reset
2413 * @classes: resulting classes of attached devices
2414 *
2415 * The stock off-the-shelf ->probe_reset method.
2416 *
2417 * LOCKING:
2418 * Kernel thread context (may sleep)
2419 *
2420 * RETURNS:
2421 * 0 on success, -errno otherwise.
2422 */
2423int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2424{
2425 ata_reset_fn_t hardreset;
2426
2427 hardreset = NULL;
2428 if (ap->cbl == ATA_CBL_SATA && ap->ops->scr_read)
2429 hardreset = sata_std_hardreset;
2430
2431 return ata_drive_probe_reset(ap, ata_std_softreset, hardreset,
2432 ata_std_postreset, classes);
2433}
2434
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002435static int do_probe_reset(struct ata_port *ap, ata_reset_fn_t reset,
2436 ata_postreset_fn_t postreset,
2437 unsigned int *classes)
2438{
2439 int i, rc;
2440
2441 for (i = 0; i < ATA_MAX_DEVICES; i++)
2442 classes[i] = ATA_DEV_UNKNOWN;
2443
2444 rc = reset(ap, 0, classes);
2445 if (rc)
2446 return rc;
2447
2448 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2449 * is complete and convert all ATA_DEV_UNKNOWN to
2450 * ATA_DEV_NONE.
2451 */
2452 for (i = 0; i < ATA_MAX_DEVICES; i++)
2453 if (classes[i] != ATA_DEV_UNKNOWN)
2454 break;
2455
2456 if (i < ATA_MAX_DEVICES)
2457 for (i = 0; i < ATA_MAX_DEVICES; i++)
2458 if (classes[i] == ATA_DEV_UNKNOWN)
2459 classes[i] = ATA_DEV_NONE;
2460
2461 if (postreset)
2462 postreset(ap, classes);
2463
2464 return classes[0] != ATA_DEV_UNKNOWN ? 0 : -ENODEV;
2465}
2466
2467/**
2468 * ata_drive_probe_reset - Perform probe reset with given methods
2469 * @ap: port to reset
2470 * @softreset: softreset method (can be NULL)
2471 * @hardreset: hardreset method (can be NULL)
2472 * @postreset: postreset method (can be NULL)
2473 * @classes: resulting classes of attached devices
2474 *
2475 * Reset the specified port and classify attached devices using
2476 * given methods. This function prefers softreset but tries all
2477 * possible reset sequences to reset and classify devices. This
2478 * function is intended to be used for constructing ->probe_reset
2479 * callback by low level drivers.
2480 *
2481 * Reset methods should follow the following rules.
2482 *
2483 * - Return 0 on sucess, -errno on failure.
2484 * - If classification is supported, fill classes[] with
2485 * recognized class codes.
2486 * - If classification is not supported, leave classes[] alone.
2487 * - If verbose is non-zero, print error message on failure;
2488 * otherwise, shut up.
2489 *
2490 * LOCKING:
2491 * Kernel thread context (may sleep)
2492 *
2493 * RETURNS:
2494 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2495 * if classification fails, and any error code from reset
2496 * methods.
2497 */
2498int ata_drive_probe_reset(struct ata_port *ap,
2499 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2500 ata_postreset_fn_t postreset, unsigned int *classes)
2501{
2502 int rc = -EINVAL;
2503
2504 if (softreset) {
2505 rc = do_probe_reset(ap, softreset, postreset, classes);
2506 if (rc == 0)
2507 return 0;
2508 }
2509
2510 if (!hardreset)
2511 return rc;
2512
2513 rc = do_probe_reset(ap, hardreset, postreset, classes);
2514 if (rc == 0 || rc != -ENODEV)
2515 return rc;
2516
2517 if (softreset)
2518 rc = do_probe_reset(ap, softreset, postreset, classes);
2519
2520 return rc;
2521}
2522
Jeff Garzik057ace52005-10-22 14:27:05 -04002523static void ata_pr_blacklisted(const struct ata_port *ap,
2524 const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
2526 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, disabling DMA\n",
2527 ap->id, dev->devno);
2528}
2529
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002530static const char * const ata_dma_blacklist [] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 "WDC AC11000H",
2532 "WDC AC22100H",
2533 "WDC AC32500H",
2534 "WDC AC33100H",
2535 "WDC AC31600H",
2536 "WDC AC32100H",
2537 "WDC AC23200L",
2538 "Compaq CRD-8241B",
2539 "CRD-8400B",
2540 "CRD-8480B",
2541 "CRD-8482B",
2542 "CRD-84",
2543 "SanDisk SDP3B",
2544 "SanDisk SDP3B-64",
2545 "SANYO CD-ROM CRD",
2546 "HITACHI CDR-8",
2547 "HITACHI CDR-8335",
2548 "HITACHI CDR-8435",
2549 "Toshiba CD-ROM XM-6202B",
Jeff Garzike9222562005-06-28 00:03:37 -04002550 "TOSHIBA CD-ROM XM-1702BC",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 "CD-532E-A",
2552 "E-IDE CD-ROM CR-840",
2553 "CD-ROM Drive/F5A",
2554 "WPI CDD-820",
2555 "SAMSUNG CD-ROM SC-148C",
2556 "SAMSUNG CD-ROM SC",
2557 "SanDisk SDP3B-64",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 "ATAPI CD-ROM DRIVE 40X MAXIMUM",
2559 "_NEC DV5800A",
2560};
2561
Jeff Garzik057ace52005-10-22 14:27:05 -04002562static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
2564 unsigned char model_num[40];
2565 char *s;
2566 unsigned int len;
2567 int i;
2568
2569 ata_dev_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2570 sizeof(model_num));
2571 s = &model_num[0];
2572 len = strnlen(s, sizeof(model_num));
2573
2574 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2575 while ((len > 0) && (s[len - 1] == ' ')) {
2576 len--;
2577 s[len] = 0;
2578 }
2579
2580 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i++)
2581 if (!strncmp(ata_dma_blacklist[i], s, len))
2582 return 1;
2583
2584 return 0;
2585}
2586
Jeff Garzik057ace52005-10-22 14:27:05 -04002587static unsigned int ata_get_mode_mask(const struct ata_port *ap, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588{
Jeff Garzik057ace52005-10-22 14:27:05 -04002589 const struct ata_device *master, *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 unsigned int mask;
2591
2592 master = &ap->device[0];
2593 slave = &ap->device[1];
2594
2595 assert (ata_dev_present(master) || ata_dev_present(slave));
2596
2597 if (shift == ATA_SHIFT_UDMA) {
2598 mask = ap->udma_mask;
2599 if (ata_dev_present(master)) {
2600 mask &= (master->id[ATA_ID_UDMA_MODES] & 0xff);
Jeff Garzik057ace52005-10-22 14:27:05 -04002601 if (ata_dma_blacklisted(master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 mask = 0;
2603 ata_pr_blacklisted(ap, master);
2604 }
2605 }
2606 if (ata_dev_present(slave)) {
2607 mask &= (slave->id[ATA_ID_UDMA_MODES] & 0xff);
Jeff Garzik057ace52005-10-22 14:27:05 -04002608 if (ata_dma_blacklisted(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 mask = 0;
2610 ata_pr_blacklisted(ap, slave);
2611 }
2612 }
2613 }
2614 else if (shift == ATA_SHIFT_MWDMA) {
2615 mask = ap->mwdma_mask;
2616 if (ata_dev_present(master)) {
2617 mask &= (master->id[ATA_ID_MWDMA_MODES] & 0x07);
Jeff Garzik057ace52005-10-22 14:27:05 -04002618 if (ata_dma_blacklisted(master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 mask = 0;
2620 ata_pr_blacklisted(ap, master);
2621 }
2622 }
2623 if (ata_dev_present(slave)) {
2624 mask &= (slave->id[ATA_ID_MWDMA_MODES] & 0x07);
Jeff Garzik057ace52005-10-22 14:27:05 -04002625 if (ata_dma_blacklisted(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 mask = 0;
2627 ata_pr_blacklisted(ap, slave);
2628 }
2629 }
2630 }
2631 else if (shift == ATA_SHIFT_PIO) {
2632 mask = ap->pio_mask;
2633 if (ata_dev_present(master)) {
2634 /* spec doesn't return explicit support for
2635 * PIO0-2, so we fake it
2636 */
2637 u16 tmp_mode = master->id[ATA_ID_PIO_MODES] & 0x03;
2638 tmp_mode <<= 3;
2639 tmp_mode |= 0x7;
2640 mask &= tmp_mode;
2641 }
2642 if (ata_dev_present(slave)) {
2643 /* spec doesn't return explicit support for
2644 * PIO0-2, so we fake it
2645 */
2646 u16 tmp_mode = slave->id[ATA_ID_PIO_MODES] & 0x03;
2647 tmp_mode <<= 3;
2648 tmp_mode |= 0x7;
2649 mask &= tmp_mode;
2650 }
2651 }
2652 else {
2653 mask = 0xffffffff; /* shut up compiler warning */
2654 BUG();
2655 }
2656
2657 return mask;
2658}
2659
2660/* find greatest bit */
2661static int fgb(u32 bitmap)
2662{
2663 unsigned int i;
2664 int x = -1;
2665
2666 for (i = 0; i < 32; i++)
2667 if (bitmap & (1 << i))
2668 x = i;
2669
2670 return x;
2671}
2672
2673/**
2674 * ata_choose_xfer_mode - attempt to find best transfer mode
2675 * @ap: Port for which an xfer mode will be selected
2676 * @xfer_mode_out: (output) SET FEATURES - XFER MODE code
2677 * @xfer_shift_out: (output) bit shift that selects this mode
2678 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002679 * Based on host and device capabilities, determine the
2680 * maximum transfer mode that is amenable to all.
2681 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002683 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 *
2685 * RETURNS:
2686 * Zero on success, negative on error.
2687 */
2688
Jeff Garzik057ace52005-10-22 14:27:05 -04002689static int ata_choose_xfer_mode(const struct ata_port *ap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 u8 *xfer_mode_out,
2691 unsigned int *xfer_shift_out)
2692{
2693 unsigned int mask, shift;
2694 int x, i;
2695
2696 for (i = 0; i < ARRAY_SIZE(xfer_mode_classes); i++) {
2697 shift = xfer_mode_classes[i].shift;
2698 mask = ata_get_mode_mask(ap, shift);
2699
2700 x = fgb(mask);
2701 if (x >= 0) {
2702 *xfer_mode_out = xfer_mode_classes[i].base + x;
2703 *xfer_shift_out = shift;
2704 return 0;
2705 }
2706 }
2707
2708 return -1;
2709}
2710
2711/**
2712 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2713 * @ap: Port associated with device @dev
2714 * @dev: Device to which command will be sent
2715 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002716 * Issue SET FEATURES - XFER MODE command to device @dev
2717 * on port @ap.
2718 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002720 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 */
2722
2723static void ata_dev_set_xfermode(struct ata_port *ap, struct ata_device *dev)
2724{
Tejun Heoa0123702005-12-13 14:49:31 +09002725 struct ata_taskfile tf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
2727 /* set up set-features taskfile */
2728 DPRINTK("set features - xfer mode\n");
2729
Tejun Heoa0123702005-12-13 14:49:31 +09002730 ata_tf_init(ap, &tf, dev->devno);
2731 tf.command = ATA_CMD_SET_FEATURES;
2732 tf.feature = SETFEATURES_XFER;
2733 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2734 tf.protocol = ATA_PROT_NODATA;
2735 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Tejun Heoa0123702005-12-13 14:49:31 +09002737 if (ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0)) {
2738 printk(KERN_ERR "ata%u: failed to set xfermode, disabled\n",
2739 ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 ata_port_disable(ap);
Tejun Heoa0123702005-12-13 14:49:31 +09002741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743 DPRINTK("EXIT\n");
2744}
2745
2746/**
Albert Lee59a10b12005-10-12 15:09:42 +08002747 * ata_dev_reread_id - Reread the device identify device info
2748 * @ap: port where the device is
2749 * @dev: device to reread the identify device info
2750 *
2751 * LOCKING:
2752 */
2753
2754static void ata_dev_reread_id(struct ata_port *ap, struct ata_device *dev)
2755{
Tejun Heoa0123702005-12-13 14:49:31 +09002756 struct ata_taskfile tf;
Albert Lee59a10b12005-10-12 15:09:42 +08002757
Tejun Heoa0123702005-12-13 14:49:31 +09002758 ata_tf_init(ap, &tf, dev->devno);
Albert Lee59a10b12005-10-12 15:09:42 +08002759
2760 if (dev->class == ATA_DEV_ATA) {
Tejun Heoa0123702005-12-13 14:49:31 +09002761 tf.command = ATA_CMD_ID_ATA;
Albert Lee59a10b12005-10-12 15:09:42 +08002762 DPRINTK("do ATA identify\n");
2763 } else {
Tejun Heoa0123702005-12-13 14:49:31 +09002764 tf.command = ATA_CMD_ID_ATAPI;
Albert Lee59a10b12005-10-12 15:09:42 +08002765 DPRINTK("do ATAPI identify\n");
2766 }
2767
Tejun Heoa0123702005-12-13 14:49:31 +09002768 tf.flags |= ATA_TFLAG_DEVICE;
2769 tf.protocol = ATA_PROT_PIO;
Albert Lee59a10b12005-10-12 15:09:42 +08002770
Tejun Heoa0123702005-12-13 14:49:31 +09002771 if (ata_exec_internal(ap, dev, &tf, DMA_FROM_DEVICE,
2772 dev->id, sizeof(dev->id)))
Albert Lee59a10b12005-10-12 15:09:42 +08002773 goto err_out;
2774
Albert Lee59a10b12005-10-12 15:09:42 +08002775 swap_buf_le16(dev->id, ATA_ID_WORDS);
2776
2777 ata_dump_id(dev);
2778
2779 DPRINTK("EXIT\n");
2780
2781 return;
2782err_out:
Tejun Heoa0123702005-12-13 14:49:31 +09002783 printk(KERN_ERR "ata%u: failed to reread ID, disabled\n", ap->id);
Albert Lee59a10b12005-10-12 15:09:42 +08002784 ata_port_disable(ap);
2785}
2786
2787/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04002788 * ata_dev_init_params - Issue INIT DEV PARAMS command
2789 * @ap: Port associated with device @dev
2790 * @dev: Device to which command will be sent
2791 *
2792 * LOCKING:
2793 */
2794
2795static void ata_dev_init_params(struct ata_port *ap, struct ata_device *dev)
2796{
Tejun Heoa0123702005-12-13 14:49:31 +09002797 struct ata_taskfile tf;
Albert Lee8bf62ece2005-05-12 15:29:42 -04002798 u16 sectors = dev->id[6];
2799 u16 heads = dev->id[3];
2800
2801 /* Number of sectors per track 1-255. Number of heads 1-16 */
2802 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
2803 return;
2804
2805 /* set up init dev params taskfile */
2806 DPRINTK("init dev params \n");
2807
Tejun Heoa0123702005-12-13 14:49:31 +09002808 ata_tf_init(ap, &tf, dev->devno);
2809 tf.command = ATA_CMD_INIT_DEV_PARAMS;
2810 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2811 tf.protocol = ATA_PROT_NODATA;
2812 tf.nsect = sectors;
2813 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04002814
Tejun Heoa0123702005-12-13 14:49:31 +09002815 if (ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0)) {
2816 printk(KERN_ERR "ata%u: failed to init parameters, disabled\n",
2817 ap->id);
Albert Lee8bf62ece2005-05-12 15:29:42 -04002818 ata_port_disable(ap);
Tejun Heoa0123702005-12-13 14:49:31 +09002819 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002820
2821 DPRINTK("EXIT\n");
2822}
2823
2824/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002825 * ata_sg_clean - Unmap DMA memory associated with command
2826 * @qc: Command containing DMA memory to be released
2827 *
2828 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 *
2830 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002831 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 */
2833
2834static void ata_sg_clean(struct ata_queued_cmd *qc)
2835{
2836 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002837 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002839 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
2841 assert(qc->flags & ATA_QCFLAG_DMAMAP);
2842 assert(sg != NULL);
2843
2844 if (qc->flags & ATA_QCFLAG_SINGLE)
2845 assert(qc->n_elem == 1);
2846
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002847 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002849 /* if we padded the buffer out to 32-bit bound, and data
2850 * xfer direction is from-device, we must copy from the
2851 * pad buffer back into the supplied buffer
2852 */
2853 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
2854 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
2855
2856 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05002857 if (qc->n_elem)
2858 dma_unmap_sg(ap->host_set->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002859 /* restore last sg */
2860 sg[qc->orig_n_elem - 1].length += qc->pad_len;
2861 if (pad_buf) {
2862 struct scatterlist *psg = &qc->pad_sgent;
2863 void *addr = kmap_atomic(psg->page, KM_IRQ0);
2864 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05002865 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002866 }
2867 } else {
Jeff Garzike1410f22005-11-14 14:06:26 -05002868 if (sg_dma_len(&sg[0]) > 0)
2869 dma_unmap_single(ap->host_set->dev,
2870 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
2871 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002872 /* restore sg */
2873 sg->length += qc->pad_len;
2874 if (pad_buf)
2875 memcpy(qc->buf_virt + sg->length - qc->pad_len,
2876 pad_buf, qc->pad_len);
2877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
2879 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002880 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881}
2882
2883/**
2884 * ata_fill_sg - Fill PCI IDE PRD table
2885 * @qc: Metadata associated with taskfile to be transferred
2886 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002887 * Fill PCI IDE PRD (scatter-gather) table with segments
2888 * associated with the current disk command.
2889 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04002891 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 *
2893 */
2894static void ata_fill_sg(struct ata_queued_cmd *qc)
2895{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002897 struct scatterlist *sg;
2898 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002900 assert(qc->__sg != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 assert(qc->n_elem > 0);
2902
2903 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002904 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 u32 addr, offset;
2906 u32 sg_len, len;
2907
2908 /* determine if physical DMA addr spans 64K boundary.
2909 * Note h/w doesn't support 64-bit, so we unconditionally
2910 * truncate dma_addr_t to u32.
2911 */
2912 addr = (u32) sg_dma_address(sg);
2913 sg_len = sg_dma_len(sg);
2914
2915 while (sg_len) {
2916 offset = addr & 0xffff;
2917 len = sg_len;
2918 if ((offset + sg_len) > 0x10000)
2919 len = 0x10000 - offset;
2920
2921 ap->prd[idx].addr = cpu_to_le32(addr);
2922 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
2923 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
2924
2925 idx++;
2926 sg_len -= len;
2927 addr += len;
2928 }
2929 }
2930
2931 if (idx)
2932 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
2933}
2934/**
2935 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
2936 * @qc: Metadata associated with taskfile to check
2937 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002938 * Allow low-level driver to filter ATA PACKET commands, returning
2939 * a status indicating whether or not it is OK to use DMA for the
2940 * supplied PACKET command.
2941 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002943 * spin_lock_irqsave(host_set lock)
2944 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 * RETURNS: 0 when ATAPI DMA can be used
2946 * nonzero otherwise
2947 */
2948int ata_check_atapi_dma(struct ata_queued_cmd *qc)
2949{
2950 struct ata_port *ap = qc->ap;
2951 int rc = 0; /* Assume ATAPI DMA is OK by default */
2952
2953 if (ap->ops->check_atapi_dma)
2954 rc = ap->ops->check_atapi_dma(qc);
2955
2956 return rc;
2957}
2958/**
2959 * ata_qc_prep - Prepare taskfile for submission
2960 * @qc: Metadata associated with taskfile to be prepared
2961 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002962 * Prepare ATA taskfile for submission.
2963 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 * LOCKING:
2965 * spin_lock_irqsave(host_set lock)
2966 */
2967void ata_qc_prep(struct ata_queued_cmd *qc)
2968{
2969 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
2970 return;
2971
2972 ata_fill_sg(qc);
2973}
2974
Jeff Garzik0cba6322005-05-30 19:49:12 -04002975/**
2976 * ata_sg_init_one - Associate command with memory buffer
2977 * @qc: Command to be associated
2978 * @buf: Memory buffer
2979 * @buflen: Length of memory buffer, in bytes.
2980 *
2981 * Initialize the data-related elements of queued_cmd @qc
2982 * to point to a single memory buffer, @buf of byte length @buflen.
2983 *
2984 * LOCKING:
2985 * spin_lock_irqsave(host_set lock)
2986 */
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
2989{
2990 struct scatterlist *sg;
2991
2992 qc->flags |= ATA_QCFLAG_SINGLE;
2993
2994 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002995 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002997 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 qc->buf_virt = buf;
2999
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003000 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003001 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002}
3003
Jeff Garzik0cba6322005-05-30 19:49:12 -04003004/**
3005 * ata_sg_init - Associate command with scatter-gather table.
3006 * @qc: Command to be associated
3007 * @sg: Scatter-gather table.
3008 * @n_elem: Number of elements in s/g table.
3009 *
3010 * Initialize the data-related elements of queued_cmd @qc
3011 * to point to a scatter-gather table @sg, containing @n_elem
3012 * elements.
3013 *
3014 * LOCKING:
3015 * spin_lock_irqsave(host_set lock)
3016 */
3017
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3019 unsigned int n_elem)
3020{
3021 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003022 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003024 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
3026
3027/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003028 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3029 * @qc: Command with memory buffer to be mapped.
3030 *
3031 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 *
3033 * LOCKING:
3034 * spin_lock_irqsave(host_set lock)
3035 *
3036 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003037 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 */
3039
3040static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3041{
3042 struct ata_port *ap = qc->ap;
3043 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003044 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 dma_addr_t dma_address;
3046
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003047 /* we must lengthen transfers to end on a 32-bit boundary */
3048 qc->pad_len = sg->length & 3;
3049 if (qc->pad_len) {
3050 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3051 struct scatterlist *psg = &qc->pad_sgent;
3052
3053 assert(qc->dev->class == ATA_DEV_ATAPI);
3054
3055 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3056
3057 if (qc->tf.flags & ATA_TFLAG_WRITE)
3058 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3059 qc->pad_len);
3060
3061 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3062 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3063 /* trim sg */
3064 sg->length -= qc->pad_len;
3065
3066 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3067 sg->length, qc->pad_len);
3068 }
3069
Jeff Garzike1410f22005-11-14 14:06:26 -05003070 if (!sg->length) {
3071 sg_dma_address(sg) = 0;
3072 goto skip_map;
3073 }
3074
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 dma_address = dma_map_single(ap->host_set->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003076 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003077 if (dma_mapping_error(dma_address)) {
3078 /* restore sg */
3079 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
3083 sg_dma_address(sg) = dma_address;
Jeff Garzike1410f22005-11-14 14:06:26 -05003084skip_map:
Albert Lee32529e02005-05-26 03:49:42 -04003085 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
3087 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3088 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3089
3090 return 0;
3091}
3092
3093/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003094 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3095 * @qc: Command with scatter-gather table to be mapped.
3096 *
3097 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 *
3099 * LOCKING:
3100 * spin_lock_irqsave(host_set lock)
3101 *
3102 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003103 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 *
3105 */
3106
3107static int ata_sg_setup(struct ata_queued_cmd *qc)
3108{
3109 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003110 struct scatterlist *sg = qc->__sg;
3111 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003112 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
3114 VPRINTK("ENTER, ata%u\n", ap->id);
3115 assert(qc->flags & ATA_QCFLAG_SG);
3116
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003117 /* we must lengthen transfers to end on a 32-bit boundary */
3118 qc->pad_len = lsg->length & 3;
3119 if (qc->pad_len) {
3120 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3121 struct scatterlist *psg = &qc->pad_sgent;
3122 unsigned int offset;
3123
3124 assert(qc->dev->class == ATA_DEV_ATAPI);
3125
3126 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3127
3128 /*
3129 * psg->page/offset are used to copy to-be-written
3130 * data in this function or read data in ata_sg_clean.
3131 */
3132 offset = lsg->offset + lsg->length - qc->pad_len;
3133 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3134 psg->offset = offset_in_page(offset);
3135
3136 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3137 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3138 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003139 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003140 }
3141
3142 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3143 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3144 /* trim last sg */
3145 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003146 if (lsg->length == 0)
3147 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003148
3149 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3150 qc->n_elem - 1, lsg->length, qc->pad_len);
3151 }
3152
Jeff Garzike1410f22005-11-14 14:06:26 -05003153 pre_n_elem = qc->n_elem;
3154 if (trim_sg && pre_n_elem)
3155 pre_n_elem--;
3156
3157 if (!pre_n_elem) {
3158 n_elem = 0;
3159 goto skip_map;
3160 }
3161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 dir = qc->dma_dir;
Jeff Garzike1410f22005-11-14 14:06:26 -05003163 n_elem = dma_map_sg(ap->host_set->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003164 if (n_elem < 1) {
3165 /* restore last sg */
3166 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
3170 DPRINTK("%d sg elements mapped\n", n_elem);
3171
Jeff Garzike1410f22005-11-14 14:06:26 -05003172skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 qc->n_elem = n_elem;
3174
3175 return 0;
3176}
3177
3178/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003179 * ata_poll_qc_complete - turn irq back on and finish qc
3180 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003181 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003182 *
3183 * LOCKING:
3184 * None. (grabs host lock)
3185 */
3186
Albert Leea22e2eb2005-12-05 15:38:02 +08003187void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003188{
3189 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003190 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003191
Jeff Garzikb8f61532005-08-25 22:01:20 -04003192 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003193 ap->flags &= ~ATA_FLAG_NOINTR;
3194 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003195 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003196 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003197}
3198
3199/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003200 * ata_pio_poll - poll using PIO, depending on current state
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003201 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 *
3203 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003204 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 *
3206 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003207 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 */
3209
3210static unsigned long ata_pio_poll(struct ata_port *ap)
3211{
Albert Leec14b8332005-12-05 15:36:08 +08003212 struct ata_queued_cmd *qc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08003214 unsigned int poll_state = HSM_ST_UNKNOWN;
3215 unsigned int reg_state = HSM_ST_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Albert Leec14b8332005-12-05 15:36:08 +08003217 qc = ata_qc_from_tag(ap, ap->active_tag);
3218 assert(qc != NULL);
3219
Albert Lee14be71f2005-09-27 17:36:35 +08003220 switch (ap->hsm_task_state) {
3221 case HSM_ST:
3222 case HSM_ST_POLL:
3223 poll_state = HSM_ST_POLL;
3224 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 break;
Albert Lee14be71f2005-09-27 17:36:35 +08003226 case HSM_ST_LAST:
3227 case HSM_ST_LAST_POLL:
3228 poll_state = HSM_ST_LAST_POLL;
3229 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 break;
3231 default:
3232 BUG();
3233 break;
3234 }
3235
3236 status = ata_chk_status(ap);
3237 if (status & ATA_BUSY) {
3238 if (time_after(jiffies, ap->pio_task_timeout)) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003239 qc->err_mask |= AC_ERR_TIMEOUT;
Albert Lee7c398332005-11-09 13:03:30 +08003240 ap->hsm_task_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 return 0;
3242 }
Albert Lee14be71f2005-09-27 17:36:35 +08003243 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 return ATA_SHORT_PAUSE;
3245 }
3246
Albert Lee14be71f2005-09-27 17:36:35 +08003247 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 return 0;
3249}
3250
3251/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003252 * ata_pio_complete - check if drive is busy or idle
3253 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 *
3255 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003256 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003257 *
3258 * RETURNS:
3259 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 */
3261
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003262static int ata_pio_complete (struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263{
3264 struct ata_queued_cmd *qc;
3265 u8 drv_stat;
3266
3267 /*
Alan Cox31433ea2005-08-26 15:56:47 +01003268 * This is purely heuristic. This is a fast path. Sometimes when
3269 * we enter, BSY will be cleared in a chk-status or two. If not,
3270 * the drive is probably seeking or something. Snooze for a couple
3271 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003272 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 */
Albert Leefe79e682005-12-06 11:34:59 +08003274 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3275 if (drv_stat & ATA_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 msleep(2);
Albert Leefe79e682005-12-06 11:34:59 +08003277 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3278 if (drv_stat & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003279 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 }
3283 }
3284
Albert Leec14b8332005-12-05 15:36:08 +08003285 qc = ata_qc_from_tag(ap, ap->active_tag);
3286 assert(qc != NULL);
3287
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 drv_stat = ata_wait_idle(ap);
3289 if (!ata_ok(drv_stat)) {
Albert Lee1c848982005-12-05 15:40:15 +08003290 qc->err_mask |= __ac_err_mask(drv_stat);
Albert Lee14be71f2005-09-27 17:36:35 +08003291 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003292 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 }
3294
Albert Lee14be71f2005-09-27 17:36:35 +08003295 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
Albert Leea22e2eb2005-12-05 15:38:02 +08003297 assert(qc->err_mask == 0);
3298 ata_poll_qc_complete(qc);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003299
3300 /* another command may start at this point */
3301
3302 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303}
3304
Edward Falk0baab862005-06-02 18:17:13 -04003305
3306/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003307 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003308 * @buf: Buffer to swap
3309 * @buf_words: Number of 16-bit words in buffer.
3310 *
3311 * Swap halves of 16-bit words if needed to convert from
3312 * little-endian byte order to native cpu byte order, or
3313 * vice-versa.
3314 *
3315 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003316 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003317 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318void swap_buf_le16(u16 *buf, unsigned int buf_words)
3319{
3320#ifdef __BIG_ENDIAN
3321 unsigned int i;
3322
3323 for (i = 0; i < buf_words; i++)
3324 buf[i] = le16_to_cpu(buf[i]);
3325#endif /* __BIG_ENDIAN */
3326}
3327
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003328/**
3329 * ata_mmio_data_xfer - Transfer data by MMIO
3330 * @ap: port to read/write
3331 * @buf: data buffer
3332 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003333 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003334 *
3335 * Transfer data from/to the device data register by MMIO.
3336 *
3337 * LOCKING:
3338 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003339 */
3340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3342 unsigned int buflen, int write_data)
3343{
3344 unsigned int i;
3345 unsigned int words = buflen >> 1;
3346 u16 *buf16 = (u16 *) buf;
3347 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3348
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003349 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 if (write_data) {
3351 for (i = 0; i < words; i++)
3352 writew(le16_to_cpu(buf16[i]), mmio);
3353 } else {
3354 for (i = 0; i < words; i++)
3355 buf16[i] = cpu_to_le16(readw(mmio));
3356 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003357
3358 /* Transfer trailing 1 byte, if any. */
3359 if (unlikely(buflen & 0x01)) {
3360 u16 align_buf[1] = { 0 };
3361 unsigned char *trailing_buf = buf + buflen - 1;
3362
3363 if (write_data) {
3364 memcpy(align_buf, trailing_buf, 1);
3365 writew(le16_to_cpu(align_buf[0]), mmio);
3366 } else {
3367 align_buf[0] = cpu_to_le16(readw(mmio));
3368 memcpy(trailing_buf, align_buf, 1);
3369 }
3370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371}
3372
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003373/**
3374 * ata_pio_data_xfer - Transfer data by PIO
3375 * @ap: port to read/write
3376 * @buf: data buffer
3377 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003378 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003379 *
3380 * Transfer data from/to the device data register by PIO.
3381 *
3382 * LOCKING:
3383 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003384 */
3385
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3387 unsigned int buflen, int write_data)
3388{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003389 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003391 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003393 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003395 insw(ap->ioaddr.data_addr, buf, words);
3396
3397 /* Transfer trailing 1 byte, if any. */
3398 if (unlikely(buflen & 0x01)) {
3399 u16 align_buf[1] = { 0 };
3400 unsigned char *trailing_buf = buf + buflen - 1;
3401
3402 if (write_data) {
3403 memcpy(align_buf, trailing_buf, 1);
3404 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3405 } else {
3406 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3407 memcpy(trailing_buf, align_buf, 1);
3408 }
3409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410}
3411
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003412/**
3413 * ata_data_xfer - Transfer data from/to the data register.
3414 * @ap: port to read/write
3415 * @buf: data buffer
3416 * @buflen: buffer length
3417 * @do_write: read/write
3418 *
3419 * Transfer data from/to the device data register.
3420 *
3421 * LOCKING:
3422 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003423 */
3424
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3426 unsigned int buflen, int do_write)
3427{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003428 /* Make the crap hardware pay the costs not the good stuff */
3429 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3430 unsigned long flags;
3431 local_irq_save(flags);
3432 if (ap->flags & ATA_FLAG_MMIO)
3433 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3434 else
3435 ata_pio_data_xfer(ap, buf, buflen, do_write);
3436 local_irq_restore(flags);
3437 } else {
3438 if (ap->flags & ATA_FLAG_MMIO)
3439 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3440 else
3441 ata_pio_data_xfer(ap, buf, buflen, do_write);
3442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443}
3444
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003445/**
3446 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3447 * @qc: Command on going
3448 *
3449 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3450 *
3451 * LOCKING:
3452 * Inherited from caller.
3453 */
3454
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455static void ata_pio_sector(struct ata_queued_cmd *qc)
3456{
3457 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003458 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 struct ata_port *ap = qc->ap;
3460 struct page *page;
3461 unsigned int offset;
3462 unsigned char *buf;
3463
3464 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003465 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
3467 page = sg[qc->cursg].page;
3468 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3469
3470 /* get the current page and offset */
3471 page = nth_page(page, (offset >> PAGE_SHIFT));
3472 offset %= PAGE_SIZE;
3473
3474 buf = kmap(page) + offset;
3475
3476 qc->cursect++;
3477 qc->cursg_ofs++;
3478
Albert Lee32529e02005-05-26 03:49:42 -04003479 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 qc->cursg++;
3481 qc->cursg_ofs = 0;
3482 }
3483
3484 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3485
3486 /* do the actual data transfer */
3487 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3488 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3489
3490 kunmap(page);
3491}
3492
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003493/**
3494 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3495 * @qc: Command on going
3496 * @bytes: number of bytes
3497 *
3498 * Transfer Transfer data from/to the ATAPI device.
3499 *
3500 * LOCKING:
3501 * Inherited from caller.
3502 *
3503 */
3504
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3506{
3507 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003508 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 struct ata_port *ap = qc->ap;
3510 struct page *page;
3511 unsigned char *buf;
3512 unsigned int offset, count;
3513
Albert Lee563a6e12005-08-12 14:17:50 +08003514 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003515 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
3517next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003518 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003519 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003520 * The end of qc->sg is reached and the device expects
3521 * more data to transfer. In order not to overrun qc->sg
3522 * and fulfill length specified in the byte count register,
3523 * - for read case, discard trailing data from the device
3524 * - for write case, padding zero data to the device
3525 */
3526 u16 pad_buf[1] = { 0 };
3527 unsigned int words = bytes >> 1;
3528 unsigned int i;
3529
3530 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003531 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003532 ap->id, bytes);
3533
3534 for (i = 0; i < words; i++)
3535 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3536
Albert Lee14be71f2005-09-27 17:36:35 +08003537 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003538 return;
3539 }
3540
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003541 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 page = sg->page;
3544 offset = sg->offset + qc->cursg_ofs;
3545
3546 /* get the current page and offset */
3547 page = nth_page(page, (offset >> PAGE_SHIFT));
3548 offset %= PAGE_SIZE;
3549
Albert Lee6952df02005-06-06 15:56:03 +08003550 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003551 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
3553 /* don't cross page boundaries */
3554 count = min(count, (unsigned int)PAGE_SIZE - offset);
3555
3556 buf = kmap(page) + offset;
3557
3558 bytes -= count;
3559 qc->curbytes += count;
3560 qc->cursg_ofs += count;
3561
Albert Lee32529e02005-05-26 03:49:42 -04003562 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 qc->cursg++;
3564 qc->cursg_ofs = 0;
3565 }
3566
3567 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3568
3569 /* do the actual data transfer */
3570 ata_data_xfer(ap, buf, count, do_write);
3571
3572 kunmap(page);
3573
Albert Lee563a6e12005-08-12 14:17:50 +08003574 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576}
3577
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003578/**
3579 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3580 * @qc: Command on going
3581 *
3582 * Transfer Transfer data from/to the ATAPI device.
3583 *
3584 * LOCKING:
3585 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003586 */
3587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3589{
3590 struct ata_port *ap = qc->ap;
3591 struct ata_device *dev = qc->dev;
3592 unsigned int ireason, bc_lo, bc_hi, bytes;
3593 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3594
3595 ap->ops->tf_read(ap, &qc->tf);
3596 ireason = qc->tf.nsect;
3597 bc_lo = qc->tf.lbam;
3598 bc_hi = qc->tf.lbah;
3599 bytes = (bc_hi << 8) | bc_lo;
3600
3601 /* shall be cleared to zero, indicating xfer of data */
3602 if (ireason & (1 << 0))
3603 goto err_out;
3604
3605 /* make sure transfer direction matches expected */
3606 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3607 if (do_write != i_write)
3608 goto err_out;
3609
3610 __atapi_pio_bytes(qc, bytes);
3611
3612 return;
3613
3614err_out:
3615 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3616 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003617 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003618 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619}
3620
3621/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003622 * ata_pio_block - start PIO on a block
3623 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 *
3625 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003626 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 */
3628
3629static void ata_pio_block(struct ata_port *ap)
3630{
3631 struct ata_queued_cmd *qc;
3632 u8 status;
3633
3634 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003635 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 * Sometimes when we enter, BSY will be cleared in
3637 * a chk-status or two. If not, the drive is probably seeking
3638 * or something. Snooze for a couple msecs, then
3639 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003640 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 */
3642 status = ata_busy_wait(ap, ATA_BUSY, 5);
3643 if (status & ATA_BUSY) {
3644 msleep(2);
3645 status = ata_busy_wait(ap, ATA_BUSY, 10);
3646 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003647 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3649 return;
3650 }
3651 }
3652
3653 qc = ata_qc_from_tag(ap, ap->active_tag);
3654 assert(qc != NULL);
3655
Albert Leefe79e682005-12-06 11:34:59 +08003656 /* check error */
3657 if (status & (ATA_ERR | ATA_DF)) {
3658 qc->err_mask |= AC_ERR_DEV;
3659 ap->hsm_task_state = HSM_ST_ERR;
3660 return;
3661 }
3662
3663 /* transfer data if any */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 if (is_atapi_taskfile(&qc->tf)) {
Albert Leefe79e682005-12-06 11:34:59 +08003665 /* DRQ=0 means no more data to transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003667 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 return;
3669 }
3670
3671 atapi_pio_bytes(qc);
3672 } else {
3673 /* handle BSY=0, DRQ=0 as error */
3674 if ((status & ATA_DRQ) == 0) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003675 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003676 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 return;
3678 }
3679
3680 ata_pio_sector(qc);
3681 }
3682}
3683
3684static void ata_pio_error(struct ata_port *ap)
3685{
3686 struct ata_queued_cmd *qc;
Jeff Garzika7dac442005-10-30 04:44:42 -05003687
3688 printk(KERN_WARNING "ata%u: PIO error\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
3690 qc = ata_qc_from_tag(ap, ap->active_tag);
3691 assert(qc != NULL);
3692
Albert Lee1c848982005-12-05 15:40:15 +08003693 /* make sure qc->err_mask is available to
3694 * know what's wrong and recover
3695 */
3696 assert(qc->err_mask);
3697
Albert Lee14be71f2005-09-27 17:36:35 +08003698 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
Albert Leea22e2eb2005-12-05 15:38:02 +08003700 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701}
3702
3703static void ata_pio_task(void *_data)
3704{
3705 struct ata_port *ap = _data;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003706 unsigned long timeout;
3707 int qc_completed;
3708
3709fsm_start:
3710 timeout = 0;
3711 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
Albert Lee14be71f2005-09-27 17:36:35 +08003713 switch (ap->hsm_task_state) {
3714 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 return;
3716
Albert Lee14be71f2005-09-27 17:36:35 +08003717 case HSM_ST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 ata_pio_block(ap);
3719 break;
3720
Albert Lee14be71f2005-09-27 17:36:35 +08003721 case HSM_ST_LAST:
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003722 qc_completed = ata_pio_complete(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 break;
3724
Albert Lee14be71f2005-09-27 17:36:35 +08003725 case HSM_ST_POLL:
3726 case HSM_ST_LAST_POLL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 timeout = ata_pio_poll(ap);
3728 break;
3729
Albert Lee14be71f2005-09-27 17:36:35 +08003730 case HSM_ST_TMOUT:
3731 case HSM_ST_ERR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 ata_pio_error(ap);
3733 return;
3734 }
3735
3736 if (timeout)
Tejun Heo95064372006-01-23 13:09:37 +09003737 ata_queue_delayed_pio_task(ap, timeout);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003738 else if (!qc_completed)
3739 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740}
3741
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742/**
3743 * ata_qc_timeout - Handle timeout of queued command
3744 * @qc: Command that timed out
3745 *
3746 * Some part of the kernel (currently, only the SCSI layer)
3747 * has noticed that the active command on port @ap has not
3748 * completed after a specified length of time. Handle this
3749 * condition by disabling DMA (if necessary) and completing
3750 * transactions, with error if necessary.
3751 *
3752 * This also handles the case of the "lost interrupt", where
3753 * for some reason (possibly hardware bug, possibly driver bug)
3754 * an interrupt was not delivered to the driver, even though the
3755 * transaction completed successfully.
3756 *
3757 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003758 * Inherited from SCSI layer (none, can sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 */
3760
3761static void ata_qc_timeout(struct ata_queued_cmd *qc)
3762{
3763 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003764 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 u8 host_stat = 0, drv_stat;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003766 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
3768 DPRINTK("ENTER\n");
3769
Jeff Garzikb8f61532005-08-25 22:01:20 -04003770 spin_lock_irqsave(&host_set->lock, flags);
3771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 switch (qc->tf.protocol) {
3773
3774 case ATA_PROT_DMA:
3775 case ATA_PROT_ATAPI_DMA:
3776 host_stat = ap->ops->bmdma_status(ap);
3777
3778 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01003779 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
3781 /* fall through */
3782
3783 default:
3784 ata_altstatus(ap);
3785 drv_stat = ata_chk_status(ap);
3786
3787 /* ack bmdma irq events */
3788 ap->ops->irq_clear(ap);
3789
3790 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x\n",
3791 ap->id, qc->tf.command, drv_stat, host_stat);
3792
3793 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08003794 qc->err_mask |= ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 break;
3796 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04003797
3798 spin_unlock_irqrestore(&host_set->lock, flags);
3799
Tejun Heoa72ec4c2006-01-23 13:09:37 +09003800 ata_eh_qc_complete(qc);
3801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 DPRINTK("EXIT\n");
3803}
3804
3805/**
3806 * ata_eng_timeout - Handle timeout of queued command
3807 * @ap: Port on which timed-out command is active
3808 *
3809 * Some part of the kernel (currently, only the SCSI layer)
3810 * has noticed that the active command on port @ap has not
3811 * completed after a specified length of time. Handle this
3812 * condition by disabling DMA (if necessary) and completing
3813 * transactions, with error if necessary.
3814 *
3815 * This also handles the case of the "lost interrupt", where
3816 * for some reason (possibly hardware bug, possibly driver bug)
3817 * an interrupt was not delivered to the driver, even though the
3818 * transaction completed successfully.
3819 *
3820 * LOCKING:
3821 * Inherited from SCSI layer (none, can sleep)
3822 */
3823
3824void ata_eng_timeout(struct ata_port *ap)
3825{
3826 struct ata_queued_cmd *qc;
3827
3828 DPRINTK("ENTER\n");
3829
3830 qc = ata_qc_from_tag(ap, ap->active_tag);
Jeff Garzike12669e2005-10-05 18:39:23 -04003831 if (qc)
3832 ata_qc_timeout(qc);
3833 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
3835 ap->id);
3836 goto out;
3837 }
3838
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839out:
3840 DPRINTK("EXIT\n");
3841}
3842
3843/**
3844 * ata_qc_new - Request an available ATA command, for queueing
3845 * @ap: Port associated with device @dev
3846 * @dev: Device from whom we request an available command structure
3847 *
3848 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003849 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 */
3851
3852static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
3853{
3854 struct ata_queued_cmd *qc = NULL;
3855 unsigned int i;
3856
3857 for (i = 0; i < ATA_MAX_QUEUE; i++)
3858 if (!test_and_set_bit(i, &ap->qactive)) {
3859 qc = ata_qc_from_tag(ap, i);
3860 break;
3861 }
3862
3863 if (qc)
3864 qc->tag = i;
3865
3866 return qc;
3867}
3868
3869/**
3870 * ata_qc_new_init - Request an available ATA command, and initialize it
3871 * @ap: Port associated with device @dev
3872 * @dev: Device from whom we request an available command structure
3873 *
3874 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003875 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 */
3877
3878struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
3879 struct ata_device *dev)
3880{
3881 struct ata_queued_cmd *qc;
3882
3883 qc = ata_qc_new(ap);
3884 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 qc->scsicmd = NULL;
3886 qc->ap = ap;
3887 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003889 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 }
3891
3892 return qc;
3893}
3894
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895/**
3896 * ata_qc_free - free unused ata_queued_cmd
3897 * @qc: Command to complete
3898 *
3899 * Designed to free unused ata_queued_cmd object
3900 * in case something prevents using it.
3901 *
3902 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003903 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 */
3905void ata_qc_free(struct ata_queued_cmd *qc)
3906{
Tejun Heo4ba946e2006-01-23 13:09:36 +09003907 struct ata_port *ap = qc->ap;
3908 unsigned int tag;
3909
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 assert(qc != NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
Tejun Heo4ba946e2006-01-23 13:09:36 +09003912 qc->flags = 0;
3913 tag = qc->tag;
3914 if (likely(ata_tag_valid(tag))) {
3915 if (tag == ap->active_tag)
3916 ap->active_tag = ATA_TAG_POISON;
3917 qc->tag = ATA_TAG_POISON;
3918 clear_bit(tag, &ap->qactive);
3919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920}
3921
3922/**
3923 * ata_qc_complete - Complete an active ATA command
3924 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003925 * @err_mask: ATA Status register contents
Jeff Garzik0cba6322005-05-30 19:49:12 -04003926 *
3927 * Indicate to the mid and upper layers that an ATA
3928 * command has completed, with either an ok or not-ok status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 *
3930 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003931 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 */
3933
Albert Leea22e2eb2005-12-05 15:38:02 +08003934void ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 assert(qc != NULL); /* ata_qc_from_tag _might_ return NULL */
3937 assert(qc->flags & ATA_QCFLAG_ACTIVE);
3938
3939 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
3940 ata_sg_clean(qc);
3941
Albert Lee3f3791d2005-08-16 14:25:38 +08003942 /* atapi: mark qc as inactive to prevent the interrupt handler
3943 * from completing the command twice later, before the error handler
3944 * is called. (when rc != 0 and atapi request sense is needed)
3945 */
3946 qc->flags &= ~ATA_QCFLAG_ACTIVE;
3947
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09003949 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950}
3951
3952static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
3953{
3954 struct ata_port *ap = qc->ap;
3955
3956 switch (qc->tf.protocol) {
3957 case ATA_PROT_DMA:
3958 case ATA_PROT_ATAPI_DMA:
3959 return 1;
3960
3961 case ATA_PROT_ATAPI:
3962 case ATA_PROT_PIO:
3963 case ATA_PROT_PIO_MULT:
3964 if (ap->flags & ATA_FLAG_PIO_DMA)
3965 return 1;
3966
3967 /* fall through */
3968
3969 default:
3970 return 0;
3971 }
3972
3973 /* never reached */
3974}
3975
3976/**
3977 * ata_qc_issue - issue taskfile to device
3978 * @qc: command to issue to device
3979 *
3980 * Prepare an ATA command to submission to device.
3981 * This includes mapping the data into a DMA-able
3982 * area, filling in the S/G table, and finally
3983 * writing the taskfile to hardware, starting the command.
3984 *
3985 * LOCKING:
3986 * spin_lock_irqsave(host_set lock)
3987 *
3988 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09003989 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 */
3991
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09003992unsigned int ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993{
3994 struct ata_port *ap = qc->ap;
3995
3996 if (ata_should_dma_map(qc)) {
3997 if (qc->flags & ATA_QCFLAG_SG) {
3998 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09003999 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4001 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004002 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 }
4004 } else {
4005 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4006 }
4007
4008 ap->ops->qc_prep(qc);
4009
4010 qc->ap->active_tag = qc->tag;
4011 qc->flags |= ATA_QCFLAG_ACTIVE;
4012
4013 return ap->ops->qc_issue(qc);
4014
Tejun Heo8e436af2006-01-23 13:09:36 +09004015sg_err:
4016 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004017 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018}
4019
Edward Falk0baab862005-06-02 18:17:13 -04004020
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021/**
4022 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4023 * @qc: command to issue to device
4024 *
4025 * Using various libata functions and hooks, this function
4026 * starts an ATA command. ATA commands are grouped into
4027 * classes called "protocols", and issuing each type of protocol
4028 * is slightly different.
4029 *
Edward Falk0baab862005-06-02 18:17:13 -04004030 * May be used as the qc_issue() entry in ata_port_operations.
4031 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 * LOCKING:
4033 * spin_lock_irqsave(host_set lock)
4034 *
4035 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004036 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 */
4038
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004039unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040{
4041 struct ata_port *ap = qc->ap;
4042
4043 ata_dev_select(ap, qc->dev->devno, 1, 0);
4044
4045 switch (qc->tf.protocol) {
4046 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05004047 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 break;
4049
4050 case ATA_PROT_DMA:
4051 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4052 ap->ops->bmdma_setup(qc); /* set up bmdma */
4053 ap->ops->bmdma_start(qc); /* initiate bmdma */
4054 break;
4055
4056 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
4057 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004058 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08004059 ap->hsm_task_state = HSM_ST;
Tejun Heo95064372006-01-23 13:09:37 +09004060 ata_queue_pio_task(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 break;
4062
4063 case ATA_PROT_ATAPI:
4064 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004065 ata_tf_to_host(ap, &qc->tf);
Tejun Heo95064372006-01-23 13:09:37 +09004066 ata_queue_packet_task(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 break;
4068
4069 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09004070 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05004071 ata_tf_to_host(ap, &qc->tf);
Tejun Heo95064372006-01-23 13:09:37 +09004072 ata_queue_packet_task(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 break;
4074
4075 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09004076 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4078 ap->ops->bmdma_setup(qc); /* set up bmdma */
Tejun Heo95064372006-01-23 13:09:37 +09004079 ata_queue_packet_task(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 break;
4081
4082 default:
4083 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004084 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 }
4086
4087 return 0;
4088}
4089
4090/**
Edward Falk0baab862005-06-02 18:17:13 -04004091 * ata_bmdma_setup_mmio - Set up PCI IDE BMDMA transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 * @qc: Info associated with this ATA transaction.
4093 *
4094 * LOCKING:
4095 * spin_lock_irqsave(host_set lock)
4096 */
4097
4098static void ata_bmdma_setup_mmio (struct ata_queued_cmd *qc)
4099{
4100 struct ata_port *ap = qc->ap;
4101 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
4102 u8 dmactl;
4103 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
4104
4105 /* load PRD table addr. */
4106 mb(); /* make sure PRD table writes are visible to controller */
4107 writel(ap->prd_dma, mmio + ATA_DMA_TABLE_OFS);
4108
4109 /* specify data direction, triple-check start bit is clear */
4110 dmactl = readb(mmio + ATA_DMA_CMD);
4111 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
4112 if (!rw)
4113 dmactl |= ATA_DMA_WR;
4114 writeb(dmactl, mmio + ATA_DMA_CMD);
4115
4116 /* issue r/w command */
4117 ap->ops->exec_command(ap, &qc->tf);
4118}
4119
4120/**
Alan Coxb73fc892005-08-26 16:03:19 +01004121 * ata_bmdma_start_mmio - Start a PCI IDE BMDMA transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 * @qc: Info associated with this ATA transaction.
4123 *
4124 * LOCKING:
4125 * spin_lock_irqsave(host_set lock)
4126 */
4127
4128static void ata_bmdma_start_mmio (struct ata_queued_cmd *qc)
4129{
4130 struct ata_port *ap = qc->ap;
4131 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
4132 u8 dmactl;
4133
4134 /* start host DMA transaction */
4135 dmactl = readb(mmio + ATA_DMA_CMD);
4136 writeb(dmactl | ATA_DMA_START, mmio + ATA_DMA_CMD);
4137
4138 /* Strictly, one may wish to issue a readb() here, to
4139 * flush the mmio write. However, control also passes
4140 * to the hardware at this point, and it will interrupt
4141 * us when we are to resume control. So, in effect,
4142 * we don't care when the mmio write flushes.
4143 * Further, a read of the DMA status register _immediately_
4144 * following the write may not be what certain flaky hardware
4145 * is expected, so I think it is best to not add a readb()
4146 * without first all the MMIO ATA cards/mobos.
4147 * Or maybe I'm just being paranoid.
4148 */
4149}
4150
4151/**
4152 * ata_bmdma_setup_pio - Set up PCI IDE BMDMA transaction (PIO)
4153 * @qc: Info associated with this ATA transaction.
4154 *
4155 * LOCKING:
4156 * spin_lock_irqsave(host_set lock)
4157 */
4158
4159static void ata_bmdma_setup_pio (struct ata_queued_cmd *qc)
4160{
4161 struct ata_port *ap = qc->ap;
4162 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
4163 u8 dmactl;
4164
4165 /* load PRD table addr. */
4166 outl(ap->prd_dma, ap->ioaddr.bmdma_addr + ATA_DMA_TABLE_OFS);
4167
4168 /* specify data direction, triple-check start bit is clear */
4169 dmactl = inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
4170 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
4171 if (!rw)
4172 dmactl |= ATA_DMA_WR;
4173 outb(dmactl, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
4174
4175 /* issue r/w command */
4176 ap->ops->exec_command(ap, &qc->tf);
4177}
4178
4179/**
4180 * ata_bmdma_start_pio - Start a PCI IDE BMDMA transaction (PIO)
4181 * @qc: Info associated with this ATA transaction.
4182 *
4183 * LOCKING:
4184 * spin_lock_irqsave(host_set lock)
4185 */
4186
4187static void ata_bmdma_start_pio (struct ata_queued_cmd *qc)
4188{
4189 struct ata_port *ap = qc->ap;
4190 u8 dmactl;
4191
4192 /* start host DMA transaction */
4193 dmactl = inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
4194 outb(dmactl | ATA_DMA_START,
4195 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
4196}
4197
Edward Falk0baab862005-06-02 18:17:13 -04004198
4199/**
4200 * ata_bmdma_start - Start a PCI IDE BMDMA transaction
4201 * @qc: Info associated with this ATA transaction.
4202 *
4203 * Writes the ATA_DMA_START flag to the DMA command register.
4204 *
4205 * May be used as the bmdma_start() entry in ata_port_operations.
4206 *
4207 * LOCKING:
4208 * spin_lock_irqsave(host_set lock)
4209 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210void ata_bmdma_start(struct ata_queued_cmd *qc)
4211{
4212 if (qc->ap->flags & ATA_FLAG_MMIO)
4213 ata_bmdma_start_mmio(qc);
4214 else
4215 ata_bmdma_start_pio(qc);
4216}
4217
Edward Falk0baab862005-06-02 18:17:13 -04004218
4219/**
4220 * ata_bmdma_setup - Set up PCI IDE BMDMA transaction
4221 * @qc: Info associated with this ATA transaction.
4222 *
4223 * Writes address of PRD table to device's PRD Table Address
4224 * register, sets the DMA control register, and calls
4225 * ops->exec_command() to start the transfer.
4226 *
4227 * May be used as the bmdma_setup() entry in ata_port_operations.
4228 *
4229 * LOCKING:
4230 * spin_lock_irqsave(host_set lock)
4231 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232void ata_bmdma_setup(struct ata_queued_cmd *qc)
4233{
4234 if (qc->ap->flags & ATA_FLAG_MMIO)
4235 ata_bmdma_setup_mmio(qc);
4236 else
4237 ata_bmdma_setup_pio(qc);
4238}
4239
Edward Falk0baab862005-06-02 18:17:13 -04004240
4241/**
4242 * ata_bmdma_irq_clear - Clear PCI IDE BMDMA interrupt.
Jeff Garzikdecc6d02005-06-02 18:42:33 -04004243 * @ap: Port associated with this ATA transaction.
Edward Falk0baab862005-06-02 18:17:13 -04004244 *
4245 * Clear interrupt and error flags in DMA status register.
4246 *
4247 * May be used as the irq_clear() entry in ata_port_operations.
4248 *
4249 * LOCKING:
4250 * spin_lock_irqsave(host_set lock)
4251 */
4252
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253void ata_bmdma_irq_clear(struct ata_port *ap)
4254{
4255 if (ap->flags & ATA_FLAG_MMIO) {
4256 void __iomem *mmio = ((void __iomem *) ap->ioaddr.bmdma_addr) + ATA_DMA_STATUS;
4257 writeb(readb(mmio), mmio);
4258 } else {
4259 unsigned long addr = ap->ioaddr.bmdma_addr + ATA_DMA_STATUS;
4260 outb(inb(addr), addr);
4261 }
4262
4263}
4264
Edward Falk0baab862005-06-02 18:17:13 -04004265
4266/**
4267 * ata_bmdma_status - Read PCI IDE BMDMA status
Jeff Garzikdecc6d02005-06-02 18:42:33 -04004268 * @ap: Port associated with this ATA transaction.
Edward Falk0baab862005-06-02 18:17:13 -04004269 *
4270 * Read and return BMDMA status register.
4271 *
4272 * May be used as the bmdma_status() entry in ata_port_operations.
4273 *
4274 * LOCKING:
4275 * spin_lock_irqsave(host_set lock)
4276 */
4277
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278u8 ata_bmdma_status(struct ata_port *ap)
4279{
4280 u8 host_stat;
4281 if (ap->flags & ATA_FLAG_MMIO) {
4282 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
4283 host_stat = readb(mmio + ATA_DMA_STATUS);
4284 } else
Albert Leeee500aa2005-09-27 17:34:38 +08004285 host_stat = inb(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 return host_stat;
4287}
4288
Edward Falk0baab862005-06-02 18:17:13 -04004289
4290/**
4291 * ata_bmdma_stop - Stop PCI IDE BMDMA transfer
Alan Coxb73fc892005-08-26 16:03:19 +01004292 * @qc: Command we are ending DMA for
Edward Falk0baab862005-06-02 18:17:13 -04004293 *
4294 * Clears the ATA_DMA_START flag in the dma control register
4295 *
4296 * May be used as the bmdma_stop() entry in ata_port_operations.
4297 *
4298 * LOCKING:
4299 * spin_lock_irqsave(host_set lock)
4300 */
4301
Alan Coxb73fc892005-08-26 16:03:19 +01004302void ata_bmdma_stop(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303{
Alan Coxb73fc892005-08-26 16:03:19 +01004304 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 if (ap->flags & ATA_FLAG_MMIO) {
4306 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
4307
4308 /* clear start/stop bit */
4309 writeb(readb(mmio + ATA_DMA_CMD) & ~ATA_DMA_START,
4310 mmio + ATA_DMA_CMD);
4311 } else {
4312 /* clear start/stop bit */
4313 outb(inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD) & ~ATA_DMA_START,
4314 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
4315 }
4316
4317 /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
4318 ata_altstatus(ap); /* dummy read */
4319}
4320
4321/**
4322 * ata_host_intr - Handle host interrupt for given (port, task)
4323 * @ap: Port on which interrupt arrived (possibly...)
4324 * @qc: Taskfile currently active in engine
4325 *
4326 * Handle host interrupt for given queued command. Currently,
4327 * only DMA interrupts are handled. All other commands are
4328 * handled via polling with interrupts disabled (nIEN bit).
4329 *
4330 * LOCKING:
4331 * spin_lock_irqsave(host_set lock)
4332 *
4333 * RETURNS:
4334 * One if interrupt was handled, zero if not (shared irq).
4335 */
4336
4337inline unsigned int ata_host_intr (struct ata_port *ap,
4338 struct ata_queued_cmd *qc)
4339{
4340 u8 status, host_stat;
4341
4342 switch (qc->tf.protocol) {
4343
4344 case ATA_PROT_DMA:
4345 case ATA_PROT_ATAPI_DMA:
4346 case ATA_PROT_ATAPI:
4347 /* check status of DMA engine */
4348 host_stat = ap->ops->bmdma_status(ap);
4349 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4350
4351 /* if it's not our irq... */
4352 if (!(host_stat & ATA_DMA_INTR))
4353 goto idle_irq;
4354
4355 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004356 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357
4358 /* fall through */
4359
4360 case ATA_PROT_ATAPI_NODATA:
4361 case ATA_PROT_NODATA:
4362 /* check altstatus */
4363 status = ata_altstatus(ap);
4364 if (status & ATA_BUSY)
4365 goto idle_irq;
4366
4367 /* check main status, clearing INTRQ */
4368 status = ata_chk_status(ap);
4369 if (unlikely(status & ATA_BUSY))
4370 goto idle_irq;
4371 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4372 ap->id, qc->tf.protocol, status);
4373
4374 /* ack bmdma irq events */
4375 ap->ops->irq_clear(ap);
4376
4377 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004378 qc->err_mask |= ac_err_mask(status);
4379 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 break;
4381
4382 default:
4383 goto idle_irq;
4384 }
4385
4386 return 1; /* irq handled */
4387
4388idle_irq:
4389 ap->stats.idle_irq++;
4390
4391#ifdef ATA_IRQ_TRAP
4392 if ((ap->stats.idle_irq % 1000) == 0) {
4393 handled = 1;
4394 ata_irq_ack(ap, 0); /* debug trap */
4395 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
4396 }
4397#endif
4398 return 0; /* irq not handled */
4399}
4400
4401/**
4402 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004403 * @irq: irq line (unused)
4404 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405 * @regs: unused
4406 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004407 * Default interrupt handler for PCI IDE devices. Calls
4408 * ata_host_intr() for each port that is not disabled.
4409 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004411 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 *
4413 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004414 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415 */
4416
4417irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4418{
4419 struct ata_host_set *host_set = dev_instance;
4420 unsigned int i;
4421 unsigned int handled = 0;
4422 unsigned long flags;
4423
4424 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4425 spin_lock_irqsave(&host_set->lock, flags);
4426
4427 for (i = 0; i < host_set->n_ports; i++) {
4428 struct ata_port *ap;
4429
4430 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004431 if (ap &&
4432 !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 struct ata_queued_cmd *qc;
4434
4435 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08004436 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4437 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 handled |= ata_host_intr(ap, qc);
4439 }
4440 }
4441
4442 spin_unlock_irqrestore(&host_set->lock, flags);
4443
4444 return IRQ_RETVAL(handled);
4445}
4446
4447/**
4448 * atapi_packet_task - Write CDB bytes to hardware
4449 * @_data: Port to which ATAPI device is attached.
4450 *
4451 * When device has indicated its readiness to accept
4452 * a CDB, this function is called. Send the CDB.
4453 * If DMA is to be performed, exit immediately.
4454 * Otherwise, we are in polling mode, so poll
4455 * status under operation succeeds or fails.
4456 *
4457 * LOCKING:
4458 * Kernel thread context (may sleep)
4459 */
4460
4461static void atapi_packet_task(void *_data)
4462{
4463 struct ata_port *ap = _data;
4464 struct ata_queued_cmd *qc;
4465 u8 status;
4466
4467 qc = ata_qc_from_tag(ap, ap->active_tag);
4468 assert(qc != NULL);
4469 assert(qc->flags & ATA_QCFLAG_ACTIVE);
4470
4471 /* sleep-wait for BSY to clear */
4472 DPRINTK("busy wait\n");
Albert Leed8fe4522005-12-05 15:42:17 +08004473 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
Tejun Heo11a56d22006-01-23 13:09:36 +09004474 qc->err_mask |= AC_ERR_TIMEOUT;
Albert Leed8fe4522005-12-05 15:42:17 +08004475 goto err_out;
4476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
4478 /* make sure DRQ is set */
4479 status = ata_chk_status(ap);
Albert Leed8fe4522005-12-05 15:42:17 +08004480 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
Tejun Heo11a56d22006-01-23 13:09:36 +09004481 qc->err_mask |= AC_ERR_HSM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 goto err_out;
Albert Leed8fe4522005-12-05 15:42:17 +08004483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
4485 /* send SCSI cdb */
4486 DPRINTK("send cdb\n");
4487 assert(ap->cdb_len >= 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Tejun Heoc1389502005-08-22 14:59:24 +09004489 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
4490 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
4491 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
Tejun Heoc1389502005-08-22 14:59:24 +09004493 /* Once we're done issuing command and kicking bmdma,
4494 * irq handler takes over. To not lose irq, we need
4495 * to clear NOINTR flag before sending cdb, but
4496 * interrupt handler shouldn't be invoked before we're
4497 * finished. Hence, the following locking.
4498 */
4499 spin_lock_irqsave(&ap->host_set->lock, flags);
4500 ap->flags &= ~ATA_FLAG_NOINTR;
4501 ata_data_xfer(ap, qc->cdb, ap->cdb_len, 1);
4502 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
4503 ap->ops->bmdma_start(qc); /* initiate bmdma */
4504 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4505 } else {
4506 ata_data_xfer(ap, qc->cdb, ap->cdb_len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507
Tejun Heoc1389502005-08-22 14:59:24 +09004508 /* PIO commands are handled by polling */
Albert Lee14be71f2005-09-27 17:36:35 +08004509 ap->hsm_task_state = HSM_ST;
Tejun Heo95064372006-01-23 13:09:37 +09004510 ata_queue_pio_task(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 }
4512
4513 return;
4514
4515err_out:
Albert Leea22e2eb2005-12-05 15:38:02 +08004516 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517}
4518
Edward Falk0baab862005-06-02 18:17:13 -04004519
Jens Axboe9b847542006-01-06 09:28:07 +01004520/*
4521 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4522 * without filling any other registers
4523 */
4524static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4525 u8 cmd)
4526{
4527 struct ata_taskfile tf;
4528 int err;
4529
4530 ata_tf_init(ap, &tf, dev->devno);
4531
4532 tf.command = cmd;
4533 tf.flags |= ATA_TFLAG_DEVICE;
4534 tf.protocol = ATA_PROT_NODATA;
4535
4536 err = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
4537 if (err)
4538 printk(KERN_ERR "%s: ata command failed: %d\n",
4539 __FUNCTION__, err);
4540
4541 return err;
4542}
4543
4544static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4545{
4546 u8 cmd;
4547
4548 if (!ata_try_flush_cache(dev))
4549 return 0;
4550
4551 if (ata_id_has_flush_ext(dev->id))
4552 cmd = ATA_CMD_FLUSH_EXT;
4553 else
4554 cmd = ATA_CMD_FLUSH;
4555
4556 return ata_do_simple_cmd(ap, dev, cmd);
4557}
4558
4559static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4560{
4561 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4562}
4563
4564static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4565{
4566 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4567}
4568
4569/**
4570 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004571 * @ap: port the device is connected to
4572 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004573 *
4574 * Kick the drive back into action, by sending it an idle immediate
4575 * command and making sure its transfer mode matches between drive
4576 * and host.
4577 *
4578 */
4579int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4580{
4581 if (ap->flags & ATA_FLAG_SUSPENDED) {
4582 ap->flags &= ~ATA_FLAG_SUSPENDED;
4583 ata_set_mode(ap);
4584 }
4585 if (!ata_dev_present(dev))
4586 return 0;
4587 if (dev->class == ATA_DEV_ATA)
4588 ata_start_drive(ap, dev);
4589
4590 return 0;
4591}
4592
4593/**
4594 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004595 * @ap: port the device is connected to
4596 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004597 *
4598 * Flush the cache on the drive, if appropriate, then issue a
4599 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004600 */
4601int ata_device_suspend(struct ata_port *ap, struct ata_device *dev)
4602{
4603 if (!ata_dev_present(dev))
4604 return 0;
4605 if (dev->class == ATA_DEV_ATA)
4606 ata_flush_cache(ap, dev);
4607
4608 ata_standby_drive(ap, dev);
4609 ap->flags |= ATA_FLAG_SUSPENDED;
4610 return 0;
4611}
4612
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004613/**
4614 * ata_port_start - Set port up for dma.
4615 * @ap: Port to initialize
4616 *
4617 * Called just after data structures for each port are
4618 * initialized. Allocates space for PRD table.
4619 *
4620 * May be used as the port_start() entry in ata_port_operations.
4621 *
4622 * LOCKING:
4623 * Inherited from caller.
4624 */
4625
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626int ata_port_start (struct ata_port *ap)
4627{
4628 struct device *dev = ap->host_set->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004629 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630
4631 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4632 if (!ap->prd)
4633 return -ENOMEM;
4634
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004635 rc = ata_pad_alloc(ap, dev);
4636 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004637 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004638 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004639 }
4640
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4642
4643 return 0;
4644}
4645
Edward Falk0baab862005-06-02 18:17:13 -04004646
4647/**
4648 * ata_port_stop - Undo ata_port_start()
4649 * @ap: Port to shut down
4650 *
4651 * Frees the PRD table.
4652 *
4653 * May be used as the port_stop() entry in ata_port_operations.
4654 *
4655 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004656 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004657 */
4658
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659void ata_port_stop (struct ata_port *ap)
4660{
4661 struct device *dev = ap->host_set->dev;
4662
4663 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004664 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665}
4666
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004667void ata_host_stop (struct ata_host_set *host_set)
4668{
4669 if (host_set->mmio_base)
4670 iounmap(host_set->mmio_base);
4671}
4672
4673
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674/**
4675 * ata_host_remove - Unregister SCSI host structure with upper layers
4676 * @ap: Port to unregister
4677 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4678 *
4679 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004680 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 */
4682
4683static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4684{
4685 struct Scsi_Host *sh = ap->host;
4686
4687 DPRINTK("ENTER\n");
4688
4689 if (do_unregister)
4690 scsi_remove_host(sh);
4691
4692 ap->ops->port_stop(ap);
4693}
4694
4695/**
4696 * ata_host_init - Initialize an ata_port structure
4697 * @ap: Structure to initialize
4698 * @host: associated SCSI mid-layer structure
4699 * @host_set: Collection of hosts to which @ap belongs
4700 * @ent: Probe information provided by low-level driver
4701 * @port_no: Port number associated with this ata_port
4702 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004703 * Initialize a new ata_port structure, and its associated
4704 * scsi_host.
4705 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004707 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 */
4709
4710static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4711 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004712 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713{
4714 unsigned int i;
4715
4716 host->max_id = 16;
4717 host->max_lun = 1;
4718 host->max_channel = 1;
4719 host->unique_id = ata_unique_id++;
4720 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004721
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 ap->flags = ATA_FLAG_PORT_DISABLED;
4723 ap->id = host->unique_id;
4724 ap->host = host;
4725 ap->ctl = ATA_DEVCTL_OBS;
4726 ap->host_set = host_set;
4727 ap->port_no = port_no;
4728 ap->hard_port_no =
4729 ent->legacy_mode ? ent->hard_port_no : port_no;
4730 ap->pio_mask = ent->pio_mask;
4731 ap->mwdma_mask = ent->mwdma_mask;
4732 ap->udma_mask = ent->udma_mask;
4733 ap->flags |= ent->host_flags;
4734 ap->ops = ent->port_ops;
4735 ap->cbl = ATA_CBL_NONE;
4736 ap->active_tag = ATA_TAG_POISON;
4737 ap->last_ctl = 0xFF;
4738
4739 INIT_WORK(&ap->packet_task, atapi_packet_task, ap);
4740 INIT_WORK(&ap->pio_task, ata_pio_task, ap);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004741 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
4743 for (i = 0; i < ATA_MAX_DEVICES; i++)
4744 ap->device[i].devno = i;
4745
4746#ifdef ATA_IRQ_TRAP
4747 ap->stats.unhandled_irq = 1;
4748 ap->stats.idle_irq = 1;
4749#endif
4750
4751 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4752}
4753
4754/**
4755 * ata_host_add - Attach low-level ATA driver to system
4756 * @ent: Information provided by low-level driver
4757 * @host_set: Collections of ports to which we add
4758 * @port_no: Port number associated with this host
4759 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004760 * Attach low-level ATA driver to system.
4761 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004763 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 *
4765 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004766 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 */
4768
Jeff Garzik057ace52005-10-22 14:27:05 -04004769static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 struct ata_host_set *host_set,
4771 unsigned int port_no)
4772{
4773 struct Scsi_Host *host;
4774 struct ata_port *ap;
4775 int rc;
4776
4777 DPRINTK("ENTER\n");
4778 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4779 if (!host)
4780 return NULL;
4781
4782 ap = (struct ata_port *) &host->hostdata[0];
4783
4784 ata_host_init(ap, host, host_set, ent, port_no);
4785
4786 rc = ap->ops->port_start(ap);
4787 if (rc)
4788 goto err_out;
4789
4790 return ap;
4791
4792err_out:
4793 scsi_host_put(host);
4794 return NULL;
4795}
4796
4797/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004798 * ata_device_add - Register hardware device with ATA and SCSI layers
4799 * @ent: Probe information describing hardware device to be registered
4800 *
4801 * This function processes the information provided in the probe
4802 * information struct @ent, allocates the necessary ATA and SCSI
4803 * host information structures, initializes them, and registers
4804 * everything with requisite kernel subsystems.
4805 *
4806 * This function requests irqs, probes the ATA bus, and probes
4807 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 *
4809 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004810 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 *
4812 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004813 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 */
4815
Jeff Garzik057ace52005-10-22 14:27:05 -04004816int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817{
4818 unsigned int count = 0, i;
4819 struct device *dev = ent->dev;
4820 struct ata_host_set *host_set;
4821
4822 DPRINTK("ENTER\n");
4823 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004824 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4826 if (!host_set)
4827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 spin_lock_init(&host_set->lock);
4829
4830 host_set->dev = dev;
4831 host_set->n_ports = ent->n_ports;
4832 host_set->irq = ent->irq;
4833 host_set->mmio_base = ent->mmio_base;
4834 host_set->private_data = ent->private_data;
4835 host_set->ops = ent->port_ops;
4836
4837 /* register each port bound to this device */
4838 for (i = 0; i < ent->n_ports; i++) {
4839 struct ata_port *ap;
4840 unsigned long xfer_mode_mask;
4841
4842 ap = ata_host_add(ent, host_set, i);
4843 if (!ap)
4844 goto err_out;
4845
4846 host_set->ports[i] = ap;
4847 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4848 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4849 (ap->pio_mask << ATA_SHIFT_PIO);
4850
4851 /* print per-port info to dmesg */
4852 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4853 "bmdma 0x%lX irq %lu\n",
4854 ap->id,
4855 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4856 ata_mode_string(xfer_mode_mask),
4857 ap->ioaddr.cmd_addr,
4858 ap->ioaddr.ctl_addr,
4859 ap->ioaddr.bmdma_addr,
4860 ent->irq);
4861
4862 ata_chk_status(ap);
4863 host_set->ops->irq_clear(ap);
4864 count++;
4865 }
4866
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004867 if (!count)
4868 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869
4870 /* obtain irq, that is shared between channels */
4871 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4872 DRV_NAME, host_set))
4873 goto err_out;
4874
4875 /* perform each probe synchronously */
4876 DPRINTK("probe begin\n");
4877 for (i = 0; i < count; i++) {
4878 struct ata_port *ap;
4879 int rc;
4880
4881 ap = host_set->ports[i];
4882
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004883 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004885 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
4887 if (rc) {
4888 /* FIXME: do something useful here?
4889 * Current libata behavior will
4890 * tear down everything when
4891 * the module is removed
4892 * or the h/w is unplugged.
4893 */
4894 }
4895
4896 rc = scsi_add_host(ap->host, dev);
4897 if (rc) {
4898 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4899 ap->id);
4900 /* FIXME: do something useful here */
4901 /* FIXME: handle unconditional calls to
4902 * scsi_scan_host and ata_host_remove, below,
4903 * at the very least
4904 */
4905 }
4906 }
4907
4908 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004909 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 for (i = 0; i < count; i++) {
4911 struct ata_port *ap = host_set->ports[i];
4912
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004913 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 }
4915
4916 dev_set_drvdata(dev, host_set);
4917
4918 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4919 return ent->n_ports; /* success */
4920
4921err_out:
4922 for (i = 0; i < count; i++) {
4923 ata_host_remove(host_set->ports[i], 1);
4924 scsi_host_put(host_set->ports[i]->host);
4925 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004926err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 kfree(host_set);
4928 VPRINTK("EXIT, returning 0\n");
4929 return 0;
4930}
4931
4932/**
Alan Cox17b14452005-09-15 15:44:00 +01004933 * ata_host_set_remove - PCI layer callback for device removal
4934 * @host_set: ATA host set that was removed
4935 *
4936 * Unregister all objects associated with this host set. Free those
4937 * objects.
4938 *
4939 * LOCKING:
4940 * Inherited from calling layer (may sleep).
4941 */
4942
Alan Cox17b14452005-09-15 15:44:00 +01004943void ata_host_set_remove(struct ata_host_set *host_set)
4944{
4945 struct ata_port *ap;
4946 unsigned int i;
4947
4948 for (i = 0; i < host_set->n_ports; i++) {
4949 ap = host_set->ports[i];
4950 scsi_remove_host(ap->host);
4951 }
4952
4953 free_irq(host_set->irq, host_set);
4954
4955 for (i = 0; i < host_set->n_ports; i++) {
4956 ap = host_set->ports[i];
4957
4958 ata_scsi_release(ap->host);
4959
4960 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4961 struct ata_ioports *ioaddr = &ap->ioaddr;
4962
4963 if (ioaddr->cmd_addr == 0x1f0)
4964 release_region(0x1f0, 8);
4965 else if (ioaddr->cmd_addr == 0x170)
4966 release_region(0x170, 8);
4967 }
4968
4969 scsi_host_put(ap->host);
4970 }
4971
4972 if (host_set->ops->host_stop)
4973 host_set->ops->host_stop(host_set);
4974
4975 kfree(host_set);
4976}
4977
4978/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 * ata_scsi_release - SCSI layer callback hook for host unload
4980 * @host: libata host to be unloaded
4981 *
4982 * Performs all duties necessary to shut down a libata port...
4983 * Kill port kthread, disable port, and release resources.
4984 *
4985 * LOCKING:
4986 * Inherited from SCSI layer.
4987 *
4988 * RETURNS:
4989 * One.
4990 */
4991
4992int ata_scsi_release(struct Scsi_Host *host)
4993{
4994 struct ata_port *ap = (struct ata_port *) &host->hostdata[0];
4995
4996 DPRINTK("ENTER\n");
4997
4998 ap->ops->port_disable(ap);
4999 ata_host_remove(ap, 0);
5000
5001 DPRINTK("EXIT\n");
5002 return 1;
5003}
5004
5005/**
5006 * ata_std_ports - initialize ioaddr with standard port offsets.
5007 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005008 *
5009 * Utility function which initializes data_addr, error_addr,
5010 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5011 * device_addr, status_addr, and command_addr to standard offsets
5012 * relative to cmd_addr.
5013 *
5014 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 */
Edward Falk0baab862005-06-02 18:17:13 -04005016
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017void ata_std_ports(struct ata_ioports *ioaddr)
5018{
5019 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5020 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5021 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5022 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5023 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5024 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5025 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5026 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5027 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5028 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5029}
5030
5031static struct ata_probe_ent *
Jeff Garzik057ace52005-10-22 14:27:05 -04005032ata_probe_ent_alloc(struct device *dev, const struct ata_port_info *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033{
5034 struct ata_probe_ent *probe_ent;
5035
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005036 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 if (!probe_ent) {
5038 printk(KERN_ERR DRV_NAME "(%s): out of memory\n",
5039 kobject_name(&(dev->kobj)));
5040 return NULL;
5041 }
5042
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 INIT_LIST_HEAD(&probe_ent->node);
5044 probe_ent->dev = dev;
5045
5046 probe_ent->sht = port->sht;
5047 probe_ent->host_flags = port->host_flags;
5048 probe_ent->pio_mask = port->pio_mask;
5049 probe_ent->mwdma_mask = port->mwdma_mask;
5050 probe_ent->udma_mask = port->udma_mask;
5051 probe_ent->port_ops = port->port_ops;
5052
5053 return probe_ent;
5054}
5055
Edward Falk0baab862005-06-02 18:17:13 -04005056
5057
Jeff Garzik374b1872005-08-30 05:42:52 -04005058#ifdef CONFIG_PCI
5059
5060void ata_pci_host_stop (struct ata_host_set *host_set)
5061{
5062 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5063
5064 pci_iounmap(pdev, host_set->mmio_base);
5065}
5066
Edward Falk0baab862005-06-02 18:17:13 -04005067/**
5068 * ata_pci_init_native_mode - Initialize native-mode driver
5069 * @pdev: pci device to be initialized
5070 * @port: array[2] of pointers to port info structures.
Alan Cox47a86592005-10-04 08:09:19 -04005071 * @ports: bitmap of ports present
Edward Falk0baab862005-06-02 18:17:13 -04005072 *
5073 * Utility function which allocates and initializes an
5074 * ata_probe_ent structure for a standard dual-port
5075 * PIO-based IDE controller. The returned ata_probe_ent
5076 * structure can be passed to ata_device_add(). The returned
5077 * ata_probe_ent structure should then be freed with kfree().
Alan Cox47a86592005-10-04 08:09:19 -04005078 *
5079 * The caller need only pass the address of the primary port, the
5080 * secondary will be deduced automatically. If the device has non
5081 * standard secondary port mappings this function can be called twice,
5082 * once for each interface.
Edward Falk0baab862005-06-02 18:17:13 -04005083 */
5084
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085struct ata_probe_ent *
Alan Cox47a86592005-10-04 08:09:19 -04005086ata_pci_init_native_mode(struct pci_dev *pdev, struct ata_port_info **port, int ports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087{
5088 struct ata_probe_ent *probe_ent =
5089 ata_probe_ent_alloc(pci_dev_to_dev(pdev), port[0]);
Alan Cox47a86592005-10-04 08:09:19 -04005090 int p = 0;
5091
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 if (!probe_ent)
5093 return NULL;
5094
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 probe_ent->irq = pdev->irq;
5096 probe_ent->irq_flags = SA_SHIRQ;
Alan Coxe99f8b52005-11-08 14:09:44 +00005097 probe_ent->private_data = port[0]->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098
Alan Cox47a86592005-10-04 08:09:19 -04005099 if (ports & ATA_PORT_PRIMARY) {
5100 probe_ent->port[p].cmd_addr = pci_resource_start(pdev, 0);
5101 probe_ent->port[p].altstatus_addr =
5102 probe_ent->port[p].ctl_addr =
5103 pci_resource_start(pdev, 1) | ATA_PCI_CTL_OFS;
5104 probe_ent->port[p].bmdma_addr = pci_resource_start(pdev, 4);
5105 ata_std_ports(&probe_ent->port[p]);
5106 p++;
5107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
Alan Cox47a86592005-10-04 08:09:19 -04005109 if (ports & ATA_PORT_SECONDARY) {
5110 probe_ent->port[p].cmd_addr = pci_resource_start(pdev, 2);
5111 probe_ent->port[p].altstatus_addr =
5112 probe_ent->port[p].ctl_addr =
5113 pci_resource_start(pdev, 3) | ATA_PCI_CTL_OFS;
5114 probe_ent->port[p].bmdma_addr = pci_resource_start(pdev, 4) + 8;
5115 ata_std_ports(&probe_ent->port[p]);
5116 p++;
5117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118
Alan Cox47a86592005-10-04 08:09:19 -04005119 probe_ent->n_ports = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120 return probe_ent;
5121}
5122
Jeff Garzik0f0d5192005-10-30 06:41:29 -05005123static struct ata_probe_ent *ata_pci_init_legacy_port(struct pci_dev *pdev, struct ata_port_info *port, int port_num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124{
Alan Cox47a86592005-10-04 08:09:19 -04005125 struct ata_probe_ent *probe_ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126
Jeff Garzik0f0d5192005-10-30 06:41:29 -05005127 probe_ent = ata_probe_ent_alloc(pci_dev_to_dev(pdev), port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 if (!probe_ent)
5129 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131 probe_ent->legacy_mode = 1;
Alan Cox47a86592005-10-04 08:09:19 -04005132 probe_ent->n_ports = 1;
5133 probe_ent->hard_port_no = port_num;
Alan Coxe99f8b52005-11-08 14:09:44 +00005134 probe_ent->private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135
Alan Cox47a86592005-10-04 08:09:19 -04005136 switch(port_num)
5137 {
5138 case 0:
5139 probe_ent->irq = 14;
5140 probe_ent->port[0].cmd_addr = 0x1f0;
5141 probe_ent->port[0].altstatus_addr =
5142 probe_ent->port[0].ctl_addr = 0x3f6;
5143 break;
5144 case 1:
5145 probe_ent->irq = 15;
5146 probe_ent->port[0].cmd_addr = 0x170;
5147 probe_ent->port[0].altstatus_addr =
5148 probe_ent->port[0].ctl_addr = 0x376;
5149 break;
5150 }
5151 probe_ent->port[0].bmdma_addr = pci_resource_start(pdev, 4) + 8 * port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 ata_std_ports(&probe_ent->port[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 return probe_ent;
5154}
5155
5156/**
5157 * ata_pci_init_one - Initialize/register PCI IDE host controller
5158 * @pdev: Controller to be initialized
5159 * @port_info: Information from low-level host driver
5160 * @n_ports: Number of ports attached to host controller
5161 *
Edward Falk0baab862005-06-02 18:17:13 -04005162 * This is a helper function which can be called from a driver's
5163 * xxx_init_one() probe function if the hardware uses traditional
5164 * IDE taskfile registers.
5165 *
5166 * This function calls pci_enable_device(), reserves its register
5167 * regions, sets the dma mask, enables bus master mode, and calls
5168 * ata_device_add()
5169 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 * LOCKING:
5171 * Inherited from PCI layer (may sleep).
5172 *
5173 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005174 * Zero on success, negative on errno-based value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175 */
5176
5177int ata_pci_init_one (struct pci_dev *pdev, struct ata_port_info **port_info,
5178 unsigned int n_ports)
5179{
Alan Cox47a86592005-10-04 08:09:19 -04005180 struct ata_probe_ent *probe_ent = NULL, *probe_ent2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 struct ata_port_info *port[2];
5182 u8 tmp8, mask;
5183 unsigned int legacy_mode = 0;
5184 int disable_dev_on_err = 1;
5185 int rc;
5186
5187 DPRINTK("ENTER\n");
5188
5189 port[0] = port_info[0];
5190 if (n_ports > 1)
5191 port[1] = port_info[1];
5192 else
5193 port[1] = port[0];
5194
5195 if ((port[0]->host_flags & ATA_FLAG_NO_LEGACY) == 0
5196 && (pdev->class >> 8) == PCI_CLASS_STORAGE_IDE) {
Alan Cox47a86592005-10-04 08:09:19 -04005197 /* TODO: What if one channel is in native mode ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 pci_read_config_byte(pdev, PCI_CLASS_PROG, &tmp8);
5199 mask = (1 << 2) | (1 << 0);
5200 if ((tmp8 & mask) != mask)
5201 legacy_mode = (1 << 3);
5202 }
5203
5204 /* FIXME... */
Alan Cox47a86592005-10-04 08:09:19 -04005205 if ((!legacy_mode) && (n_ports > 2)) {
5206 printk(KERN_ERR "ata: BUG: native mode, n_ports > 2\n");
5207 n_ports = 2;
5208 /* For now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 }
5210
Alan Cox47a86592005-10-04 08:09:19 -04005211 /* FIXME: Really for ATA it isn't safe because the device may be
5212 multi-purpose and we want to leave it alone if it was already
5213 enabled. Secondly for shared use as Arjan says we want refcounting
5214
5215 Checking dev->is_enabled is insufficient as this is not set at
5216 boot for the primary video which is BIOS enabled
5217 */
5218
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 rc = pci_enable_device(pdev);
5220 if (rc)
5221 return rc;
5222
5223 rc = pci_request_regions(pdev, DRV_NAME);
5224 if (rc) {
5225 disable_dev_on_err = 0;
5226 goto err_out;
5227 }
5228
Alan Cox47a86592005-10-04 08:09:19 -04005229 /* FIXME: Should use platform specific mappers for legacy port ranges */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230 if (legacy_mode) {
5231 if (!request_region(0x1f0, 8, "libata")) {
5232 struct resource *conflict, res;
5233 res.start = 0x1f0;
5234 res.end = 0x1f0 + 8 - 1;
5235 conflict = ____request_resource(&ioport_resource, &res);
5236 if (!strcmp(conflict->name, "libata"))
5237 legacy_mode |= (1 << 0);
5238 else {
5239 disable_dev_on_err = 0;
5240 printk(KERN_WARNING "ata: 0x1f0 IDE port busy\n");
5241 }
5242 } else
5243 legacy_mode |= (1 << 0);
5244
5245 if (!request_region(0x170, 8, "libata")) {
5246 struct resource *conflict, res;
5247 res.start = 0x170;
5248 res.end = 0x170 + 8 - 1;
5249 conflict = ____request_resource(&ioport_resource, &res);
5250 if (!strcmp(conflict->name, "libata"))
5251 legacy_mode |= (1 << 1);
5252 else {
5253 disable_dev_on_err = 0;
5254 printk(KERN_WARNING "ata: 0x170 IDE port busy\n");
5255 }
5256 } else
5257 legacy_mode |= (1 << 1);
5258 }
5259
5260 /* we have legacy mode, but all ports are unavailable */
5261 if (legacy_mode == (1 << 3)) {
5262 rc = -EBUSY;
5263 goto err_out_regions;
5264 }
5265
5266 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
5267 if (rc)
5268 goto err_out_regions;
5269 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
5270 if (rc)
5271 goto err_out_regions;
5272
5273 if (legacy_mode) {
Alan Cox47a86592005-10-04 08:09:19 -04005274 if (legacy_mode & (1 << 0))
Jeff Garzik0f0d5192005-10-30 06:41:29 -05005275 probe_ent = ata_pci_init_legacy_port(pdev, port[0], 0);
Alan Cox47a86592005-10-04 08:09:19 -04005276 if (legacy_mode & (1 << 1))
Jeff Garzik0f0d5192005-10-30 06:41:29 -05005277 probe_ent2 = ata_pci_init_legacy_port(pdev, port[1], 1);
Alan Cox47a86592005-10-04 08:09:19 -04005278 } else {
5279 if (n_ports == 2)
5280 probe_ent = ata_pci_init_native_mode(pdev, port, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
5281 else
5282 probe_ent = ata_pci_init_native_mode(pdev, port, ATA_PORT_PRIMARY);
5283 }
5284 if (!probe_ent && !probe_ent2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 rc = -ENOMEM;
5286 goto err_out_regions;
5287 }
5288
5289 pci_set_master(pdev);
5290
5291 /* FIXME: check ata_device_add return */
5292 if (legacy_mode) {
5293 if (legacy_mode & (1 << 0))
5294 ata_device_add(probe_ent);
5295 if (legacy_mode & (1 << 1))
5296 ata_device_add(probe_ent2);
5297 } else
5298 ata_device_add(probe_ent);
5299
5300 kfree(probe_ent);
5301 kfree(probe_ent2);
5302
5303 return 0;
5304
5305err_out_regions:
5306 if (legacy_mode & (1 << 0))
5307 release_region(0x1f0, 8);
5308 if (legacy_mode & (1 << 1))
5309 release_region(0x170, 8);
5310 pci_release_regions(pdev);
5311err_out:
5312 if (disable_dev_on_err)
5313 pci_disable_device(pdev);
5314 return rc;
5315}
5316
5317/**
5318 * ata_pci_remove_one - PCI layer callback for device removal
5319 * @pdev: PCI device that was removed
5320 *
5321 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005322 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 * Handle this by unregistering all objects associated
5324 * with this PCI device. Free those objects. Then finally
5325 * release PCI resources and disable device.
5326 *
5327 * LOCKING:
5328 * Inherited from PCI layer (may sleep).
5329 */
5330
5331void ata_pci_remove_one (struct pci_dev *pdev)
5332{
5333 struct device *dev = pci_dev_to_dev(pdev);
5334 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
Alan Cox17b14452005-09-15 15:44:00 +01005336 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337 pci_release_regions(pdev);
5338 pci_disable_device(pdev);
5339 dev_set_drvdata(dev, NULL);
5340}
5341
5342/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005343int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344{
5345 unsigned long tmp = 0;
5346
5347 switch (bits->width) {
5348 case 1: {
5349 u8 tmp8 = 0;
5350 pci_read_config_byte(pdev, bits->reg, &tmp8);
5351 tmp = tmp8;
5352 break;
5353 }
5354 case 2: {
5355 u16 tmp16 = 0;
5356 pci_read_config_word(pdev, bits->reg, &tmp16);
5357 tmp = tmp16;
5358 break;
5359 }
5360 case 4: {
5361 u32 tmp32 = 0;
5362 pci_read_config_dword(pdev, bits->reg, &tmp32);
5363 tmp = tmp32;
5364 break;
5365 }
5366
5367 default:
5368 return -EINVAL;
5369 }
5370
5371 tmp &= bits->mask;
5372
5373 return (tmp == bits->val) ? 1 : 0;
5374}
Jens Axboe9b847542006-01-06 09:28:07 +01005375
5376int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5377{
5378 pci_save_state(pdev);
5379 pci_disable_device(pdev);
5380 pci_set_power_state(pdev, PCI_D3hot);
5381 return 0;
5382}
5383
5384int ata_pci_device_resume(struct pci_dev *pdev)
5385{
5386 pci_set_power_state(pdev, PCI_D0);
5387 pci_restore_state(pdev);
5388 pci_enable_device(pdev);
5389 pci_set_master(pdev);
5390 return 0;
5391}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392#endif /* CONFIG_PCI */
5393
5394
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395static int __init ata_init(void)
5396{
5397 ata_wq = create_workqueue("ata");
5398 if (!ata_wq)
5399 return -ENOMEM;
5400
5401 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5402 return 0;
5403}
5404
5405static void __exit ata_exit(void)
5406{
5407 destroy_workqueue(ata_wq);
5408}
5409
5410module_init(ata_init);
5411module_exit(ata_exit);
5412
Jeff Garzik67846b32005-10-05 02:58:32 -04005413static unsigned long ratelimit_time;
5414static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5415
5416int ata_ratelimit(void)
5417{
5418 int rc;
5419 unsigned long flags;
5420
5421 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5422
5423 if (time_after(jiffies, ratelimit_time)) {
5424 rc = 1;
5425 ratelimit_time = jiffies + (HZ/5);
5426 } else
5427 rc = 0;
5428
5429 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5430
5431 return rc;
5432}
5433
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434/*
5435 * libata is essentially a library of internal helper functions for
5436 * low-level ATA host controller drivers. As such, the API/ABI is
5437 * likely to change as new drivers are added and updated.
5438 * Do not depend on ABI/API stability.
5439 */
5440
5441EXPORT_SYMBOL_GPL(ata_std_bios_param);
5442EXPORT_SYMBOL_GPL(ata_std_ports);
5443EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005444EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445EXPORT_SYMBOL_GPL(ata_sg_init);
5446EXPORT_SYMBOL_GPL(ata_sg_init_one);
5447EXPORT_SYMBOL_GPL(ata_qc_complete);
5448EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
5449EXPORT_SYMBOL_GPL(ata_eng_timeout);
5450EXPORT_SYMBOL_GPL(ata_tf_load);
5451EXPORT_SYMBOL_GPL(ata_tf_read);
5452EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5453EXPORT_SYMBOL_GPL(ata_std_dev_select);
5454EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5455EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5456EXPORT_SYMBOL_GPL(ata_check_status);
5457EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458EXPORT_SYMBOL_GPL(ata_exec_command);
5459EXPORT_SYMBOL_GPL(ata_port_start);
5460EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005461EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462EXPORT_SYMBOL_GPL(ata_interrupt);
5463EXPORT_SYMBOL_GPL(ata_qc_prep);
5464EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5465EXPORT_SYMBOL_GPL(ata_bmdma_start);
5466EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5467EXPORT_SYMBOL_GPL(ata_bmdma_status);
5468EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5469EXPORT_SYMBOL_GPL(ata_port_probe);
5470EXPORT_SYMBOL_GPL(sata_phy_reset);
5471EXPORT_SYMBOL_GPL(__sata_phy_reset);
5472EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005473EXPORT_SYMBOL_GPL(ata_std_softreset);
5474EXPORT_SYMBOL_GPL(sata_std_hardreset);
5475EXPORT_SYMBOL_GPL(ata_std_postreset);
5476EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005477EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005479EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005480EXPORT_SYMBOL_GPL(ata_busy_sleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5482EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
5483EXPORT_SYMBOL_GPL(ata_scsi_error);
5484EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5485EXPORT_SYMBOL_GPL(ata_scsi_release);
5486EXPORT_SYMBOL_GPL(ata_host_intr);
5487EXPORT_SYMBOL_GPL(ata_dev_classify);
5488EXPORT_SYMBOL_GPL(ata_dev_id_string);
Brad Campbell6f2f3812005-05-12 15:07:47 -04005489EXPORT_SYMBOL_GPL(ata_dev_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490EXPORT_SYMBOL_GPL(ata_scsi_simulate);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005491EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5492EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005494EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005495EXPORT_SYMBOL_GPL(ata_timing_compute);
5496EXPORT_SYMBOL_GPL(ata_timing_merge);
5497
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498#ifdef CONFIG_PCI
5499EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005500EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5502EXPORT_SYMBOL_GPL(ata_pci_init_one);
5503EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005504EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5505EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005507
5508EXPORT_SYMBOL_GPL(ata_device_suspend);
5509EXPORT_SYMBOL_GPL(ata_device_resume);
5510EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5511EXPORT_SYMBOL_GPL(ata_scsi_device_resume);