blob: d55f12dacfcb28e31306d7b08bf58eff955cf5ee [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <scsi/scsi.h>
53#include "scsi.h"
54#include "scsi_priv.h"
55#include <scsi/scsi_host.h>
56#include <linux/libata.h>
57#include <asm/io.h>
58#include <asm/semaphore.h>
59#include <asm/byteorder.h>
60
61#include "libata.h"
62
63static unsigned int ata_busy_sleep (struct ata_port *ap,
64 unsigned long tmout_pat,
65 unsigned long tmout);
Albert Lee59a10b12005-10-12 15:09:42 +080066static void ata_dev_reread_id(struct ata_port *ap, struct ata_device *dev);
Albert Lee8bf62ec2005-05-12 15:29:42 -040067static void ata_dev_init_params(struct ata_port *ap, struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static void ata_set_mode(struct ata_port *ap);
69static void ata_dev_set_xfermode(struct ata_port *ap, struct ata_device *dev);
Jeff Garzik057ace52005-10-22 14:27:05 -040070static unsigned int ata_get_mode_mask(const struct ata_port *ap, int shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static int fgb(u32 bitmap);
Jeff Garzik057ace52005-10-22 14:27:05 -040072static int ata_choose_xfer_mode(const struct ata_port *ap,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 u8 *xfer_mode_out,
74 unsigned int *xfer_shift_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static void __ata_qc_complete(struct ata_queued_cmd *qc);
76
77static unsigned int ata_unique_id = 1;
78static struct workqueue_struct *ata_wq;
79
Jeff Garzik1623c812005-08-30 03:37:42 -040080int atapi_enabled = 0;
81module_param(atapi_enabled, int, 0444);
82MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084MODULE_AUTHOR("Jeff Garzik");
85MODULE_DESCRIPTION("Library module for ATA devices");
86MODULE_LICENSE("GPL");
87MODULE_VERSION(DRV_VERSION);
88
89/**
90 * ata_tf_load - send taskfile registers to host controller
91 * @ap: Port to which output is sent
92 * @tf: ATA taskfile register set
93 *
94 * Outputs ATA taskfile to standard ATA host controller.
95 *
96 * LOCKING:
97 * Inherited from caller.
98 */
99
Jeff Garzik057ace52005-10-22 14:27:05 -0400100static void ata_tf_load_pio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 struct ata_ioports *ioaddr = &ap->ioaddr;
103 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
104
105 if (tf->ctl != ap->last_ctl) {
106 outb(tf->ctl, ioaddr->ctl_addr);
107 ap->last_ctl = tf->ctl;
108 ata_wait_idle(ap);
109 }
110
111 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
112 outb(tf->hob_feature, ioaddr->feature_addr);
113 outb(tf->hob_nsect, ioaddr->nsect_addr);
114 outb(tf->hob_lbal, ioaddr->lbal_addr);
115 outb(tf->hob_lbam, ioaddr->lbam_addr);
116 outb(tf->hob_lbah, ioaddr->lbah_addr);
117 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
118 tf->hob_feature,
119 tf->hob_nsect,
120 tf->hob_lbal,
121 tf->hob_lbam,
122 tf->hob_lbah);
123 }
124
125 if (is_addr) {
126 outb(tf->feature, ioaddr->feature_addr);
127 outb(tf->nsect, ioaddr->nsect_addr);
128 outb(tf->lbal, ioaddr->lbal_addr);
129 outb(tf->lbam, ioaddr->lbam_addr);
130 outb(tf->lbah, ioaddr->lbah_addr);
131 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
132 tf->feature,
133 tf->nsect,
134 tf->lbal,
135 tf->lbam,
136 tf->lbah);
137 }
138
139 if (tf->flags & ATA_TFLAG_DEVICE) {
140 outb(tf->device, ioaddr->device_addr);
141 VPRINTK("device 0x%X\n", tf->device);
142 }
143
144 ata_wait_idle(ap);
145}
146
147/**
148 * ata_tf_load_mmio - send taskfile registers to host controller
149 * @ap: Port to which output is sent
150 * @tf: ATA taskfile register set
151 *
152 * Outputs ATA taskfile to standard ATA host controller using MMIO.
153 *
154 * LOCKING:
155 * Inherited from caller.
156 */
157
Jeff Garzik057ace52005-10-22 14:27:05 -0400158static void ata_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 struct ata_ioports *ioaddr = &ap->ioaddr;
161 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
162
163 if (tf->ctl != ap->last_ctl) {
164 writeb(tf->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
165 ap->last_ctl = tf->ctl;
166 ata_wait_idle(ap);
167 }
168
169 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
170 writeb(tf->hob_feature, (void __iomem *) ioaddr->feature_addr);
171 writeb(tf->hob_nsect, (void __iomem *) ioaddr->nsect_addr);
172 writeb(tf->hob_lbal, (void __iomem *) ioaddr->lbal_addr);
173 writeb(tf->hob_lbam, (void __iomem *) ioaddr->lbam_addr);
174 writeb(tf->hob_lbah, (void __iomem *) ioaddr->lbah_addr);
175 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
176 tf->hob_feature,
177 tf->hob_nsect,
178 tf->hob_lbal,
179 tf->hob_lbam,
180 tf->hob_lbah);
181 }
182
183 if (is_addr) {
184 writeb(tf->feature, (void __iomem *) ioaddr->feature_addr);
185 writeb(tf->nsect, (void __iomem *) ioaddr->nsect_addr);
186 writeb(tf->lbal, (void __iomem *) ioaddr->lbal_addr);
187 writeb(tf->lbam, (void __iomem *) ioaddr->lbam_addr);
188 writeb(tf->lbah, (void __iomem *) ioaddr->lbah_addr);
189 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
190 tf->feature,
191 tf->nsect,
192 tf->lbal,
193 tf->lbam,
194 tf->lbah);
195 }
196
197 if (tf->flags & ATA_TFLAG_DEVICE) {
198 writeb(tf->device, (void __iomem *) ioaddr->device_addr);
199 VPRINTK("device 0x%X\n", tf->device);
200 }
201
202 ata_wait_idle(ap);
203}
204
Edward Falk0baab862005-06-02 18:17:13 -0400205
206/**
207 * ata_tf_load - send taskfile registers to host controller
208 * @ap: Port to which output is sent
209 * @tf: ATA taskfile register set
210 *
211 * Outputs ATA taskfile to standard ATA host controller using MMIO
212 * or PIO as indicated by the ATA_FLAG_MMIO flag.
213 * Writes the control, feature, nsect, lbal, lbam, and lbah registers.
214 * Optionally (ATA_TFLAG_LBA48) writes hob_feature, hob_nsect,
215 * hob_lbal, hob_lbam, and hob_lbah.
216 *
217 * This function waits for idle (!BUSY and !DRQ) after writing
218 * registers. If the control register has a new value, this
219 * function also waits for idle after writing control and before
220 * writing the remaining registers.
221 *
222 * May be used as the tf_load() entry in ata_port_operations.
223 *
224 * LOCKING:
225 * Inherited from caller.
226 */
Jeff Garzik057ace52005-10-22 14:27:05 -0400227void ata_tf_load(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 if (ap->flags & ATA_FLAG_MMIO)
230 ata_tf_load_mmio(ap, tf);
231 else
232 ata_tf_load_pio(ap, tf);
233}
234
235/**
Edward Falk0baab862005-06-02 18:17:13 -0400236 * ata_exec_command_pio - issue ATA command to host controller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 * @ap: port to which command is being issued
238 * @tf: ATA taskfile register set
239 *
Edward Falk0baab862005-06-02 18:17:13 -0400240 * Issues PIO write to ATA command register, with proper
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 * synchronization with interrupt handler / other threads.
242 *
243 * LOCKING:
244 * spin_lock_irqsave(host_set lock)
245 */
246
Jeff Garzik057ace52005-10-22 14:27:05 -0400247static void ata_exec_command_pio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 DPRINTK("ata%u: cmd 0x%X\n", ap->id, tf->command);
250
251 outb(tf->command, ap->ioaddr.command_addr);
252 ata_pause(ap);
253}
254
255
256/**
257 * ata_exec_command_mmio - issue ATA command to host controller
258 * @ap: port to which command is being issued
259 * @tf: ATA taskfile register set
260 *
261 * Issues MMIO write to ATA command register, with proper
262 * synchronization with interrupt handler / other threads.
263 *
264 * LOCKING:
265 * spin_lock_irqsave(host_set lock)
266 */
267
Jeff Garzik057ace52005-10-22 14:27:05 -0400268static void ata_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 DPRINTK("ata%u: cmd 0x%X\n", ap->id, tf->command);
271
272 writeb(tf->command, (void __iomem *) ap->ioaddr.command_addr);
273 ata_pause(ap);
274}
275
Edward Falk0baab862005-06-02 18:17:13 -0400276
277/**
278 * ata_exec_command - issue ATA command to host controller
279 * @ap: port to which command is being issued
280 * @tf: ATA taskfile register set
281 *
282 * Issues PIO/MMIO write to ATA command register, with proper
283 * synchronization with interrupt handler / other threads.
284 *
285 * LOCKING:
286 * spin_lock_irqsave(host_set lock)
287 */
Jeff Garzik057ace52005-10-22 14:27:05 -0400288void ata_exec_command(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 if (ap->flags & ATA_FLAG_MMIO)
291 ata_exec_command_mmio(ap, tf);
292 else
293 ata_exec_command_pio(ap, tf);
294}
295
296/**
297 * ata_exec - issue ATA command to host controller
298 * @ap: port to which command is being issued
299 * @tf: ATA taskfile register set
300 *
301 * Issues PIO/MMIO write to ATA command register, with proper
302 * synchronization with interrupt handler / other threads.
303 *
304 * LOCKING:
305 * Obtains host_set lock.
306 */
307
Jeff Garzik057ace52005-10-22 14:27:05 -0400308static inline void ata_exec(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 unsigned long flags;
311
312 DPRINTK("ata%u: cmd 0x%X\n", ap->id, tf->command);
313 spin_lock_irqsave(&ap->host_set->lock, flags);
314 ap->ops->exec_command(ap, tf);
315 spin_unlock_irqrestore(&ap->host_set->lock, flags);
316}
317
318/**
319 * ata_tf_to_host - issue ATA taskfile to host controller
320 * @ap: port to which command is being issued
321 * @tf: ATA taskfile register set
322 *
323 * Issues ATA taskfile register set to ATA host controller,
324 * with proper synchronization with interrupt handler and
325 * other threads.
326 *
327 * LOCKING:
328 * Obtains host_set lock.
329 */
330
Jeff Garzik057ace52005-10-22 14:27:05 -0400331static void ata_tf_to_host(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 ap->ops->tf_load(ap, tf);
334
335 ata_exec(ap, tf);
336}
337
338/**
339 * ata_tf_to_host_nolock - issue ATA taskfile to host controller
340 * @ap: port to which command is being issued
341 * @tf: ATA taskfile register set
342 *
343 * Issues ATA taskfile register set to ATA host controller,
344 * with proper synchronization with interrupt handler and
345 * other threads.
346 *
347 * LOCKING:
348 * spin_lock_irqsave(host_set lock)
349 */
350
Jeff Garzik057ace52005-10-22 14:27:05 -0400351void ata_tf_to_host_nolock(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 ap->ops->tf_load(ap, tf);
354 ap->ops->exec_command(ap, tf);
355}
356
357/**
Edward Falk0baab862005-06-02 18:17:13 -0400358 * ata_tf_read_pio - input device's ATA taskfile shadow registers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * @ap: Port from which input is read
360 * @tf: ATA taskfile register set for storing input
361 *
362 * Reads ATA taskfile registers for currently-selected device
363 * into @tf.
364 *
365 * LOCKING:
366 * Inherited from caller.
367 */
368
369static void ata_tf_read_pio(struct ata_port *ap, struct ata_taskfile *tf)
370{
371 struct ata_ioports *ioaddr = &ap->ioaddr;
372
373 tf->nsect = inb(ioaddr->nsect_addr);
374 tf->lbal = inb(ioaddr->lbal_addr);
375 tf->lbam = inb(ioaddr->lbam_addr);
376 tf->lbah = inb(ioaddr->lbah_addr);
377 tf->device = inb(ioaddr->device_addr);
378
379 if (tf->flags & ATA_TFLAG_LBA48) {
380 outb(tf->ctl | ATA_HOB, ioaddr->ctl_addr);
381 tf->hob_feature = inb(ioaddr->error_addr);
382 tf->hob_nsect = inb(ioaddr->nsect_addr);
383 tf->hob_lbal = inb(ioaddr->lbal_addr);
384 tf->hob_lbam = inb(ioaddr->lbam_addr);
385 tf->hob_lbah = inb(ioaddr->lbah_addr);
386 }
387}
388
389/**
390 * ata_tf_read_mmio - input device's ATA taskfile shadow registers
391 * @ap: Port from which input is read
392 * @tf: ATA taskfile register set for storing input
393 *
394 * Reads ATA taskfile registers for currently-selected device
395 * into @tf via MMIO.
396 *
397 * LOCKING:
398 * Inherited from caller.
399 */
400
401static void ata_tf_read_mmio(struct ata_port *ap, struct ata_taskfile *tf)
402{
403 struct ata_ioports *ioaddr = &ap->ioaddr;
404
405 tf->nsect = readb((void __iomem *)ioaddr->nsect_addr);
406 tf->lbal = readb((void __iomem *)ioaddr->lbal_addr);
407 tf->lbam = readb((void __iomem *)ioaddr->lbam_addr);
408 tf->lbah = readb((void __iomem *)ioaddr->lbah_addr);
409 tf->device = readb((void __iomem *)ioaddr->device_addr);
410
411 if (tf->flags & ATA_TFLAG_LBA48) {
412 writeb(tf->ctl | ATA_HOB, (void __iomem *) ap->ioaddr.ctl_addr);
413 tf->hob_feature = readb((void __iomem *)ioaddr->error_addr);
414 tf->hob_nsect = readb((void __iomem *)ioaddr->nsect_addr);
415 tf->hob_lbal = readb((void __iomem *)ioaddr->lbal_addr);
416 tf->hob_lbam = readb((void __iomem *)ioaddr->lbam_addr);
417 tf->hob_lbah = readb((void __iomem *)ioaddr->lbah_addr);
418 }
419}
420
Edward Falk0baab862005-06-02 18:17:13 -0400421
422/**
423 * ata_tf_read - input device's ATA taskfile shadow registers
424 * @ap: Port from which input is read
425 * @tf: ATA taskfile register set for storing input
426 *
427 * Reads ATA taskfile registers for currently-selected device
428 * into @tf.
429 *
430 * Reads nsect, lbal, lbam, lbah, and device. If ATA_TFLAG_LBA48
431 * is set, also reads the hob registers.
432 *
433 * May be used as the tf_read() entry in ata_port_operations.
434 *
435 * LOCKING:
436 * Inherited from caller.
437 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
439{
440 if (ap->flags & ATA_FLAG_MMIO)
441 ata_tf_read_mmio(ap, tf);
442 else
443 ata_tf_read_pio(ap, tf);
444}
445
446/**
447 * ata_check_status_pio - Read device status reg & clear interrupt
448 * @ap: port where the device is
449 *
450 * Reads ATA taskfile status register for currently-selected device
Edward Falk0baab862005-06-02 18:17:13 -0400451 * and return its value. This also clears pending interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * from this device
453 *
454 * LOCKING:
455 * Inherited from caller.
456 */
457static u8 ata_check_status_pio(struct ata_port *ap)
458{
459 return inb(ap->ioaddr.status_addr);
460}
461
462/**
463 * ata_check_status_mmio - Read device status reg & clear interrupt
464 * @ap: port where the device is
465 *
466 * Reads ATA taskfile status register for currently-selected device
Edward Falk0baab862005-06-02 18:17:13 -0400467 * via MMIO and return its value. This also clears pending interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * from this device
469 *
470 * LOCKING:
471 * Inherited from caller.
472 */
473static u8 ata_check_status_mmio(struct ata_port *ap)
474{
475 return readb((void __iomem *) ap->ioaddr.status_addr);
476}
477
Edward Falk0baab862005-06-02 18:17:13 -0400478
479/**
480 * ata_check_status - Read device status reg & clear interrupt
481 * @ap: port where the device is
482 *
483 * Reads ATA taskfile status register for currently-selected device
484 * and return its value. This also clears pending interrupts
485 * from this device
486 *
487 * May be used as the check_status() entry in ata_port_operations.
488 *
489 * LOCKING:
490 * Inherited from caller.
491 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492u8 ata_check_status(struct ata_port *ap)
493{
494 if (ap->flags & ATA_FLAG_MMIO)
495 return ata_check_status_mmio(ap);
496 return ata_check_status_pio(ap);
497}
498
Edward Falk0baab862005-06-02 18:17:13 -0400499
500/**
501 * ata_altstatus - Read device alternate status reg
502 * @ap: port where the device is
503 *
504 * Reads ATA taskfile alternate status register for
505 * currently-selected device and return its value.
506 *
507 * Note: may NOT be used as the check_altstatus() entry in
508 * ata_port_operations.
509 *
510 * LOCKING:
511 * Inherited from caller.
512 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513u8 ata_altstatus(struct ata_port *ap)
514{
515 if (ap->ops->check_altstatus)
516 return ap->ops->check_altstatus(ap);
517
518 if (ap->flags & ATA_FLAG_MMIO)
519 return readb((void __iomem *)ap->ioaddr.altstatus_addr);
520 return inb(ap->ioaddr.altstatus_addr);
521}
522
Edward Falk0baab862005-06-02 18:17:13 -0400523
524/**
525 * ata_chk_err - Read device error reg
526 * @ap: port where the device is
527 *
528 * Reads ATA taskfile error register for
529 * currently-selected device and return its value.
530 *
531 * Note: may NOT be used as the check_err() entry in
532 * ata_port_operations.
533 *
534 * LOCKING:
535 * Inherited from caller.
536 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537u8 ata_chk_err(struct ata_port *ap)
538{
539 if (ap->ops->check_err)
540 return ap->ops->check_err(ap);
541
542 if (ap->flags & ATA_FLAG_MMIO) {
543 return readb((void __iomem *) ap->ioaddr.error_addr);
544 }
545 return inb(ap->ioaddr.error_addr);
546}
547
548/**
549 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
550 * @tf: Taskfile to convert
551 * @fis: Buffer into which data will output
552 * @pmp: Port multiplier port
553 *
554 * Converts a standard ATA taskfile to a Serial ATA
555 * FIS structure (Register - Host to Device).
556 *
557 * LOCKING:
558 * Inherited from caller.
559 */
560
Jeff Garzik057ace52005-10-22 14:27:05 -0400561void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 fis[0] = 0x27; /* Register - Host to Device FIS */
564 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
565 bit 7 indicates Command FIS */
566 fis[2] = tf->command;
567 fis[3] = tf->feature;
568
569 fis[4] = tf->lbal;
570 fis[5] = tf->lbam;
571 fis[6] = tf->lbah;
572 fis[7] = tf->device;
573
574 fis[8] = tf->hob_lbal;
575 fis[9] = tf->hob_lbam;
576 fis[10] = tf->hob_lbah;
577 fis[11] = tf->hob_feature;
578
579 fis[12] = tf->nsect;
580 fis[13] = tf->hob_nsect;
581 fis[14] = 0;
582 fis[15] = tf->ctl;
583
584 fis[16] = 0;
585 fis[17] = 0;
586 fis[18] = 0;
587 fis[19] = 0;
588}
589
590/**
591 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
592 * @fis: Buffer from which data will be input
593 * @tf: Taskfile to output
594 *
595 * Converts a standard ATA taskfile to a Serial ATA
596 * FIS structure (Register - Host to Device).
597 *
598 * LOCKING:
599 * Inherited from caller.
600 */
601
Jeff Garzik057ace52005-10-22 14:27:05 -0400602void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 tf->command = fis[2]; /* status */
605 tf->feature = fis[3]; /* error */
606
607 tf->lbal = fis[4];
608 tf->lbam = fis[5];
609 tf->lbah = fis[6];
610 tf->device = fis[7];
611
612 tf->hob_lbal = fis[8];
613 tf->hob_lbam = fis[9];
614 tf->hob_lbah = fis[10];
615
616 tf->nsect = fis[12];
617 tf->hob_nsect = fis[13];
618}
619
Albert Lee8cbd6df2005-10-12 15:06:27 +0800620static const u8 ata_rw_cmds[] = {
621 /* pio multi */
622 ATA_CMD_READ_MULTI,
623 ATA_CMD_WRITE_MULTI,
624 ATA_CMD_READ_MULTI_EXT,
625 ATA_CMD_WRITE_MULTI_EXT,
626 /* pio */
627 ATA_CMD_PIO_READ,
628 ATA_CMD_PIO_WRITE,
629 ATA_CMD_PIO_READ_EXT,
630 ATA_CMD_PIO_WRITE_EXT,
631 /* dma */
632 ATA_CMD_READ,
633 ATA_CMD_WRITE,
634 ATA_CMD_READ_EXT,
635 ATA_CMD_WRITE_EXT
636};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800639 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
640 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 *
Albert Lee8cbd6df2005-10-12 15:06:27 +0800642 * Examine the device configuration and tf->flags to calculate
643 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 *
645 * LOCKING:
646 * caller.
647 */
Albert Lee8cbd6df2005-10-12 15:06:27 +0800648void ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800650 struct ata_taskfile *tf = &qc->tf;
651 struct ata_device *dev = qc->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Albert Lee8cbd6df2005-10-12 15:06:27 +0800653 int index, lba48, write;
654
655 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
656 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Albert Lee8cbd6df2005-10-12 15:06:27 +0800658 if (dev->flags & ATA_DFLAG_PIO) {
659 tf->protocol = ATA_PROT_PIO;
660 index = dev->multi_count ? 0 : 4;
661 } else {
662 tf->protocol = ATA_PROT_DMA;
663 index = 8;
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Albert Lee8cbd6df2005-10-12 15:06:27 +0800666 tf->command = ata_rw_cmds[index + lba48 + write];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669static const char * xfer_mode_str[] = {
670 "UDMA/16",
671 "UDMA/25",
672 "UDMA/33",
673 "UDMA/44",
674 "UDMA/66",
675 "UDMA/100",
676 "UDMA/133",
677 "UDMA7",
678 "MWDMA0",
679 "MWDMA1",
680 "MWDMA2",
681 "PIO0",
682 "PIO1",
683 "PIO2",
684 "PIO3",
685 "PIO4",
686};
687
688/**
689 * ata_udma_string - convert UDMA bit offset to string
690 * @mask: mask of bits supported; only highest bit counts.
691 *
692 * Determine string which represents the highest speed
693 * (highest bit in @udma_mask).
694 *
695 * LOCKING:
696 * None.
697 *
698 * RETURNS:
699 * Constant C string representing highest speed listed in
700 * @udma_mask, or the constant C string "<n/a>".
701 */
702
703static const char *ata_mode_string(unsigned int mask)
704{
705 int i;
706
707 for (i = 7; i >= 0; i--)
708 if (mask & (1 << i))
709 goto out;
710 for (i = ATA_SHIFT_MWDMA + 2; i >= ATA_SHIFT_MWDMA; i--)
711 if (mask & (1 << i))
712 goto out;
713 for (i = ATA_SHIFT_PIO + 4; i >= ATA_SHIFT_PIO; i--)
714 if (mask & (1 << i))
715 goto out;
716
717 return "<n/a>";
718
719out:
720 return xfer_mode_str[i];
721}
722
723/**
724 * ata_pio_devchk - PATA device presence detection
725 * @ap: ATA channel to examine
726 * @device: Device to examine (starting at zero)
727 *
728 * This technique was originally described in
729 * Hale Landis's ATADRVR (www.ata-atapi.com), and
730 * later found its way into the ATA/ATAPI spec.
731 *
732 * Write a pattern to the ATA shadow registers,
733 * and if a device is present, it will respond by
734 * correctly storing and echoing back the
735 * ATA shadow register contents.
736 *
737 * LOCKING:
738 * caller.
739 */
740
741static unsigned int ata_pio_devchk(struct ata_port *ap,
742 unsigned int device)
743{
744 struct ata_ioports *ioaddr = &ap->ioaddr;
745 u8 nsect, lbal;
746
747 ap->ops->dev_select(ap, device);
748
749 outb(0x55, ioaddr->nsect_addr);
750 outb(0xaa, ioaddr->lbal_addr);
751
752 outb(0xaa, ioaddr->nsect_addr);
753 outb(0x55, ioaddr->lbal_addr);
754
755 outb(0x55, ioaddr->nsect_addr);
756 outb(0xaa, ioaddr->lbal_addr);
757
758 nsect = inb(ioaddr->nsect_addr);
759 lbal = inb(ioaddr->lbal_addr);
760
761 if ((nsect == 0x55) && (lbal == 0xaa))
762 return 1; /* we found a device */
763
764 return 0; /* nothing found */
765}
766
767/**
768 * ata_mmio_devchk - PATA device presence detection
769 * @ap: ATA channel to examine
770 * @device: Device to examine (starting at zero)
771 *
772 * This technique was originally described in
773 * Hale Landis's ATADRVR (www.ata-atapi.com), and
774 * later found its way into the ATA/ATAPI spec.
775 *
776 * Write a pattern to the ATA shadow registers,
777 * and if a device is present, it will respond by
778 * correctly storing and echoing back the
779 * ATA shadow register contents.
780 *
781 * LOCKING:
782 * caller.
783 */
784
785static unsigned int ata_mmio_devchk(struct ata_port *ap,
786 unsigned int device)
787{
788 struct ata_ioports *ioaddr = &ap->ioaddr;
789 u8 nsect, lbal;
790
791 ap->ops->dev_select(ap, device);
792
793 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
794 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
795
796 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
797 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
798
799 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
800 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
801
802 nsect = readb((void __iomem *) ioaddr->nsect_addr);
803 lbal = readb((void __iomem *) ioaddr->lbal_addr);
804
805 if ((nsect == 0x55) && (lbal == 0xaa))
806 return 1; /* we found a device */
807
808 return 0; /* nothing found */
809}
810
811/**
812 * ata_devchk - PATA device presence detection
813 * @ap: ATA channel to examine
814 * @device: Device to examine (starting at zero)
815 *
816 * Dispatch ATA device presence detection, depending
817 * on whether we are using PIO or MMIO to talk to the
818 * ATA shadow registers.
819 *
820 * LOCKING:
821 * caller.
822 */
823
824static unsigned int ata_devchk(struct ata_port *ap,
825 unsigned int device)
826{
827 if (ap->flags & ATA_FLAG_MMIO)
828 return ata_mmio_devchk(ap, device);
829 return ata_pio_devchk(ap, device);
830}
831
832/**
833 * ata_dev_classify - determine device type based on ATA-spec signature
834 * @tf: ATA taskfile register set for device to be identified
835 *
836 * Determine from taskfile register contents whether a device is
837 * ATA or ATAPI, as per "Signature and persistence" section
838 * of ATA/PI spec (volume 1, sect 5.14).
839 *
840 * LOCKING:
841 * None.
842 *
843 * RETURNS:
844 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
845 * the event of failure.
846 */
847
Jeff Garzik057ace52005-10-22 14:27:05 -0400848unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
850 /* Apple's open source Darwin code hints that some devices only
851 * put a proper signature into the LBA mid/high registers,
852 * So, we only check those. It's sufficient for uniqueness.
853 */
854
855 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
856 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
857 DPRINTK("found ATA device by sig\n");
858 return ATA_DEV_ATA;
859 }
860
861 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
862 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
863 DPRINTK("found ATAPI device by sig\n");
864 return ATA_DEV_ATAPI;
865 }
866
867 DPRINTK("unknown device\n");
868 return ATA_DEV_UNKNOWN;
869}
870
871/**
872 * ata_dev_try_classify - Parse returned ATA device signature
873 * @ap: ATA channel to examine
874 * @device: Device to examine (starting at zero)
875 *
876 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
877 * an ATA/ATAPI-defined set of values is placed in the ATA
878 * shadow registers, indicating the results of device detection
879 * and diagnostics.
880 *
881 * Select the ATA device, and read the values from the ATA shadow
882 * registers. Then parse according to the Error register value,
883 * and the spec-defined values examined by ata_dev_classify().
884 *
885 * LOCKING:
886 * caller.
887 */
888
889static u8 ata_dev_try_classify(struct ata_port *ap, unsigned int device)
890{
891 struct ata_device *dev = &ap->device[device];
892 struct ata_taskfile tf;
893 unsigned int class;
894 u8 err;
895
896 ap->ops->dev_select(ap, device);
897
898 memset(&tf, 0, sizeof(tf));
899
900 err = ata_chk_err(ap);
901 ap->ops->tf_read(ap, &tf);
902
903 dev->class = ATA_DEV_NONE;
904
905 /* see if device passed diags */
906 if (err == 1)
907 /* do nothing */ ;
908 else if ((device == 0) && (err == 0x81))
909 /* do nothing */ ;
910 else
911 return err;
912
913 /* determine if device if ATA or ATAPI */
914 class = ata_dev_classify(&tf);
915 if (class == ATA_DEV_UNKNOWN)
916 return err;
917 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
918 return err;
919
920 dev->class = class;
921
922 return err;
923}
924
925/**
926 * ata_dev_id_string - Convert IDENTIFY DEVICE page into string
927 * @id: IDENTIFY DEVICE results we will examine
928 * @s: string into which data is output
929 * @ofs: offset into identify device page
930 * @len: length of string to return. must be an even number.
931 *
932 * The strings in the IDENTIFY DEVICE page are broken up into
933 * 16-bit chunks. Run through the string, and output each
934 * 8-bit chunk linearly, regardless of platform.
935 *
936 * LOCKING:
937 * caller.
938 */
939
Jeff Garzik057ace52005-10-22 14:27:05 -0400940void ata_dev_id_string(const u16 *id, unsigned char *s,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 unsigned int ofs, unsigned int len)
942{
943 unsigned int c;
944
945 while (len > 0) {
946 c = id[ofs] >> 8;
947 *s = c;
948 s++;
949
950 c = id[ofs] & 0xff;
951 *s = c;
952 s++;
953
954 ofs++;
955 len -= 2;
956 }
957}
958
Edward Falk0baab862005-06-02 18:17:13 -0400959
960/**
961 * ata_noop_dev_select - Select device 0/1 on ATA bus
962 * @ap: ATA channel to manipulate
963 * @device: ATA device (numbered from zero) to select
964 *
965 * This function performs no actual function.
966 *
967 * May be used as the dev_select() entry in ata_port_operations.
968 *
969 * LOCKING:
970 * caller.
971 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
973{
974}
975
Edward Falk0baab862005-06-02 18:17:13 -0400976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/**
978 * ata_std_dev_select - Select device 0/1 on ATA bus
979 * @ap: ATA channel to manipulate
980 * @device: ATA device (numbered from zero) to select
981 *
982 * Use the method defined in the ATA specification to
983 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400984 * ATA channel. Works with both PIO and MMIO.
985 *
986 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 *
988 * LOCKING:
989 * caller.
990 */
991
992void ata_std_dev_select (struct ata_port *ap, unsigned int device)
993{
994 u8 tmp;
995
996 if (device == 0)
997 tmp = ATA_DEVICE_OBS;
998 else
999 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1000
1001 if (ap->flags & ATA_FLAG_MMIO) {
1002 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
1003 } else {
1004 outb(tmp, ap->ioaddr.device_addr);
1005 }
1006 ata_pause(ap); /* needed; also flushes, for mmio */
1007}
1008
1009/**
1010 * ata_dev_select - Select device 0/1 on ATA bus
1011 * @ap: ATA channel to manipulate
1012 * @device: ATA device (numbered from zero) to select
1013 * @wait: non-zero to wait for Status register BSY bit to clear
1014 * @can_sleep: non-zero if context allows sleeping
1015 *
1016 * Use the method defined in the ATA specification to
1017 * make either device 0, or device 1, active on the
1018 * ATA channel.
1019 *
1020 * This is a high-level version of ata_std_dev_select(),
1021 * which additionally provides the services of inserting
1022 * the proper pauses and status polling, where needed.
1023 *
1024 * LOCKING:
1025 * caller.
1026 */
1027
1028void ata_dev_select(struct ata_port *ap, unsigned int device,
1029 unsigned int wait, unsigned int can_sleep)
1030{
1031 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
1032 ap->id, device, wait);
1033
1034 if (wait)
1035 ata_wait_idle(ap);
1036
1037 ap->ops->dev_select(ap, device);
1038
1039 if (wait) {
1040 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
1041 msleep(150);
1042 ata_wait_idle(ap);
1043 }
1044}
1045
1046/**
1047 * ata_dump_id - IDENTIFY DEVICE info debugging output
1048 * @dev: Device whose IDENTIFY DEVICE page we will dump
1049 *
1050 * Dump selected 16-bit words from a detected device's
1051 * IDENTIFY PAGE page.
1052 *
1053 * LOCKING:
1054 * caller.
1055 */
1056
Jeff Garzik057ace52005-10-22 14:27:05 -04001057static inline void ata_dump_id(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 DPRINTK("49==0x%04x "
1060 "53==0x%04x "
1061 "63==0x%04x "
1062 "64==0x%04x "
1063 "75==0x%04x \n",
1064 dev->id[49],
1065 dev->id[53],
1066 dev->id[63],
1067 dev->id[64],
1068 dev->id[75]);
1069 DPRINTK("80==0x%04x "
1070 "81==0x%04x "
1071 "82==0x%04x "
1072 "83==0x%04x "
1073 "84==0x%04x \n",
1074 dev->id[80],
1075 dev->id[81],
1076 dev->id[82],
1077 dev->id[83],
1078 dev->id[84]);
1079 DPRINTK("88==0x%04x "
1080 "93==0x%04x\n",
1081 dev->id[88],
1082 dev->id[93]);
1083}
1084
Alan Cox11e29e22005-10-21 18:46:32 -04001085/*
1086 * Compute the PIO modes available for this device. This is not as
1087 * trivial as it seems if we must consider early devices correctly.
1088 *
1089 * FIXME: pre IDE drive timing (do we care ?).
1090 */
1091
Jeff Garzik057ace52005-10-22 14:27:05 -04001092static unsigned int ata_pio_modes(const struct ata_device *adev)
Alan Cox11e29e22005-10-21 18:46:32 -04001093{
1094 u16 modes;
1095
1096 /* Usual case. Word 53 indicates word 88 is valid */
1097 if (adev->id[ATA_ID_FIELD_VALID] & (1 << 2)) {
1098 modes = adev->id[ATA_ID_PIO_MODES] & 0x03;
1099 modes <<= 3;
1100 modes |= 0x7;
1101 return modes;
1102 }
1103
1104 /* If word 88 isn't valid then Word 51 holds the PIO timing number
1105 for the maximum. Turn it into a mask and return it */
1106 modes = (2 << (adev->id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
1107 return modes;
1108}
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110/**
1111 * ata_dev_identify - obtain IDENTIFY x DEVICE page
1112 * @ap: port on which device we wish to probe resides
1113 * @device: device bus address, starting at zero
1114 *
1115 * Following bus reset, we issue the IDENTIFY [PACKET] DEVICE
1116 * command, and read back the 512-byte device information page.
1117 * The device information page is fed to us via the standard
1118 * PIO-IN protocol, but we hand-code it here. (TODO: investigate
1119 * using standard PIO-IN paths)
1120 *
1121 * After reading the device information page, we use several
1122 * bits of information from it to initialize data structures
1123 * that will be used during the lifetime of the ata_device.
1124 * Other data from the info page is used to disqualify certain
1125 * older ATA devices we do not wish to support.
1126 *
1127 * LOCKING:
1128 * Inherited from caller. Some functions called by this function
1129 * obtain the host_set lock.
1130 */
1131
1132static void ata_dev_identify(struct ata_port *ap, unsigned int device)
1133{
1134 struct ata_device *dev = &ap->device[device];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001135 unsigned int major_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 u16 tmp;
1137 unsigned long xfer_modes;
1138 u8 status;
1139 unsigned int using_edd;
1140 DECLARE_COMPLETION(wait);
1141 struct ata_queued_cmd *qc;
1142 unsigned long flags;
1143 int rc;
1144
1145 if (!ata_dev_present(dev)) {
1146 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
1147 ap->id, device);
1148 return;
1149 }
1150
1151 if (ap->flags & (ATA_FLAG_SRST | ATA_FLAG_SATA_RESET))
1152 using_edd = 0;
1153 else
1154 using_edd = 1;
1155
1156 DPRINTK("ENTER, host %u, dev %u\n", ap->id, device);
1157
1158 assert (dev->class == ATA_DEV_ATA || dev->class == ATA_DEV_ATAPI ||
1159 dev->class == ATA_DEV_NONE);
1160
1161 ata_dev_select(ap, device, 1, 1); /* select device 0/1 */
1162
1163 qc = ata_qc_new_init(ap, dev);
1164 BUG_ON(qc == NULL);
1165
1166 ata_sg_init_one(qc, dev->id, sizeof(dev->id));
1167 qc->dma_dir = DMA_FROM_DEVICE;
1168 qc->tf.protocol = ATA_PROT_PIO;
1169 qc->nsect = 1;
1170
1171retry:
1172 if (dev->class == ATA_DEV_ATA) {
1173 qc->tf.command = ATA_CMD_ID_ATA;
1174 DPRINTK("do ATA identify\n");
1175 } else {
1176 qc->tf.command = ATA_CMD_ID_ATAPI;
1177 DPRINTK("do ATAPI identify\n");
1178 }
1179
1180 qc->waiting = &wait;
1181 qc->complete_fn = ata_qc_complete_noop;
1182
1183 spin_lock_irqsave(&ap->host_set->lock, flags);
1184 rc = ata_qc_issue(qc);
1185 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1186
1187 if (rc)
1188 goto err_out;
1189 else
1190 wait_for_completion(&wait);
1191
1192 status = ata_chk_status(ap);
1193 if (status & ATA_ERR) {
1194 /*
1195 * arg! EDD works for all test cases, but seems to return
1196 * the ATA signature for some ATAPI devices. Until the
1197 * reason for this is found and fixed, we fix up the mess
1198 * here. If IDENTIFY DEVICE returns command aborted
1199 * (as ATAPI devices do), then we issue an
1200 * IDENTIFY PACKET DEVICE.
1201 *
1202 * ATA software reset (SRST, the default) does not appear
1203 * to have this problem.
1204 */
1205 if ((using_edd) && (qc->tf.command == ATA_CMD_ID_ATA)) {
1206 u8 err = ata_chk_err(ap);
1207 if (err & ATA_ABORTED) {
1208 dev->class = ATA_DEV_ATAPI;
1209 qc->cursg = 0;
1210 qc->cursg_ofs = 0;
1211 qc->cursect = 0;
1212 qc->nsect = 1;
1213 goto retry;
1214 }
1215 }
1216 goto err_out;
1217 }
1218
1219 swap_buf_le16(dev->id, ATA_ID_WORDS);
1220
1221 /* print device capabilities */
1222 printk(KERN_DEBUG "ata%u: dev %u cfg "
1223 "49:%04x 82:%04x 83:%04x 84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1224 ap->id, device, dev->id[49],
1225 dev->id[82], dev->id[83], dev->id[84],
1226 dev->id[85], dev->id[86], dev->id[87],
1227 dev->id[88]);
1228
1229 /*
1230 * common ATA, ATAPI feature tests
1231 */
1232
Albert Lee8bf62ec2005-05-12 15:29:42 -04001233 /* we require DMA support (bits 8 of word 49) */
1234 if (!ata_id_has_dma(dev->id)) {
1235 printk(KERN_DEBUG "ata%u: no dma\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 goto err_out_nosup;
1237 }
1238
1239 /* quick-n-dirty find max transfer mode; for printk only */
1240 xfer_modes = dev->id[ATA_ID_UDMA_MODES];
1241 if (!xfer_modes)
1242 xfer_modes = (dev->id[ATA_ID_MWDMA_MODES]) << ATA_SHIFT_MWDMA;
Alan Cox11e29e22005-10-21 18:46:32 -04001243 if (!xfer_modes)
1244 xfer_modes = ata_pio_modes(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 ata_dump_id(dev);
1247
1248 /* ATA-specific feature tests */
1249 if (dev->class == ATA_DEV_ATA) {
1250 if (!ata_id_is_ata(dev->id)) /* sanity check */
1251 goto err_out_nosup;
1252
Albert Lee8bf62ec2005-05-12 15:29:42 -04001253 /* get major version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 tmp = dev->id[ATA_ID_MAJOR_VER];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001255 for (major_version = 14; major_version >= 1; major_version--)
1256 if (tmp & (1 << major_version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 break;
1258
Albert Lee8bf62ec2005-05-12 15:29:42 -04001259 /*
1260 * The exact sequence expected by certain pre-ATA4 drives is:
1261 * SRST RESET
1262 * IDENTIFY
1263 * INITIALIZE DEVICE PARAMETERS
1264 * anything else..
1265 * Some drives were very specific about that exact sequence.
1266 */
Albert Lee59a10b12005-10-12 15:09:42 +08001267 if (major_version < 4 || (!ata_id_has_lba(dev->id))) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001268 ata_dev_init_params(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Albert Lee59a10b12005-10-12 15:09:42 +08001270 /* current CHS translation info (id[53-58]) might be
1271 * changed. reread the identify device info.
1272 */
1273 ata_dev_reread_id(ap, dev);
1274 }
1275
Albert Lee8bf62ec2005-05-12 15:29:42 -04001276 if (ata_id_has_lba(dev->id)) {
1277 dev->flags |= ATA_DFLAG_LBA;
1278
1279 if (ata_id_has_lba48(dev->id)) {
1280 dev->flags |= ATA_DFLAG_LBA48;
1281 dev->n_sectors = ata_id_u64(dev->id, 100);
1282 } else {
1283 dev->n_sectors = ata_id_u32(dev->id, 60);
1284 }
1285
1286 /* print device info to dmesg */
1287 printk(KERN_INFO "ata%u: dev %u ATA-%d, max %s, %Lu sectors:%s\n",
1288 ap->id, device,
1289 major_version,
1290 ata_mode_string(xfer_modes),
1291 (unsigned long long)dev->n_sectors,
1292 dev->flags & ATA_DFLAG_LBA48 ? " LBA48" : " LBA");
1293 } else {
1294 /* CHS */
1295
1296 /* Default translation */
1297 dev->cylinders = dev->id[1];
1298 dev->heads = dev->id[3];
1299 dev->sectors = dev->id[6];
1300 dev->n_sectors = dev->cylinders * dev->heads * dev->sectors;
1301
1302 if (ata_id_current_chs_valid(dev->id)) {
1303 /* Current CHS translation is valid. */
1304 dev->cylinders = dev->id[54];
1305 dev->heads = dev->id[55];
1306 dev->sectors = dev->id[56];
1307
1308 dev->n_sectors = ata_id_u32(dev->id, 57);
1309 }
1310
1311 /* print device info to dmesg */
1312 printk(KERN_INFO "ata%u: dev %u ATA-%d, max %s, %Lu sectors: CHS %d/%d/%d\n",
1313 ap->id, device,
1314 major_version,
1315 ata_mode_string(xfer_modes),
1316 (unsigned long long)dev->n_sectors,
1317 (int)dev->cylinders, (int)dev->heads, (int)dev->sectors);
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320
1321 ap->host->max_cmd_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 }
1323
1324 /* ATAPI-specific feature tests */
1325 else {
1326 if (ata_id_is_ata(dev->id)) /* sanity check */
1327 goto err_out_nosup;
1328
1329 rc = atapi_cdb_len(dev->id);
1330 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1331 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
1332 goto err_out_nosup;
1333 }
1334 ap->cdb_len = (unsigned int) rc;
1335 ap->host->max_cmd_len = (unsigned char) ap->cdb_len;
1336
1337 /* print device info to dmesg */
1338 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
1339 ap->id, device,
1340 ata_mode_string(xfer_modes));
1341 }
1342
1343 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
1344 return;
1345
1346err_out_nosup:
1347 printk(KERN_WARNING "ata%u: dev %u not supported, ignoring\n",
1348 ap->id, device);
1349err_out:
1350 dev->class++; /* converts ATA_DEV_xxx into ATA_DEV_xxx_UNSUP */
1351 DPRINTK("EXIT, err\n");
1352}
1353
Brad Campbell6f2f3812005-05-12 15:07:47 -04001354
Jeff Garzik057ace52005-10-22 14:27:05 -04001355static inline u8 ata_dev_knobble(const struct ata_port *ap)
Brad Campbell6f2f3812005-05-12 15:07:47 -04001356{
1357 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(ap->device->id)));
1358}
1359
1360/**
1361 * ata_dev_config - Run device specific handlers and check for
1362 * SATA->PATA bridges
Jeff Garzik8a60a072005-07-31 13:13:24 -04001363 * @ap: Bus
Brad Campbell6f2f3812005-05-12 15:07:47 -04001364 * @i: Device
1365 *
1366 * LOCKING:
1367 */
Jeff Garzik8a60a072005-07-31 13:13:24 -04001368
Brad Campbell6f2f3812005-05-12 15:07:47 -04001369void ata_dev_config(struct ata_port *ap, unsigned int i)
1370{
1371 /* limit bridge transfers to udma5, 200 sectors */
1372 if (ata_dev_knobble(ap)) {
1373 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1374 ap->id, ap->device->devno);
1375 ap->udma_mask &= ATA_UDMA5;
1376 ap->host->max_sectors = ATA_MAX_SECTORS;
1377 ap->host->hostt->max_sectors = ATA_MAX_SECTORS;
1378 ap->device->flags |= ATA_DFLAG_LOCK_SECTORS;
1379 }
1380
1381 if (ap->ops->dev_config)
1382 ap->ops->dev_config(ap, &ap->device[i]);
1383}
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385/**
1386 * ata_bus_probe - Reset and probe ATA bus
1387 * @ap: Bus to probe
1388 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001389 * Master ATA bus probing function. Initiates a hardware-dependent
1390 * bus reset, then attempts to identify any devices found on
1391 * the bus.
1392 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001394 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 *
1396 * RETURNS:
1397 * Zero on success, non-zero on error.
1398 */
1399
1400static int ata_bus_probe(struct ata_port *ap)
1401{
1402 unsigned int i, found = 0;
1403
1404 ap->ops->phy_reset(ap);
1405 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1406 goto err_out;
1407
1408 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1409 ata_dev_identify(ap, i);
1410 if (ata_dev_present(&ap->device[i])) {
1411 found = 1;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001412 ata_dev_config(ap,i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
1414 }
1415
1416 if ((!found) || (ap->flags & ATA_FLAG_PORT_DISABLED))
1417 goto err_out_disable;
1418
1419 ata_set_mode(ap);
1420 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1421 goto err_out_disable;
1422
1423 return 0;
1424
1425err_out_disable:
1426 ap->ops->port_disable(ap);
1427err_out:
1428 return -1;
1429}
1430
1431/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001432 * ata_port_probe - Mark port as enabled
1433 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001435 * Modify @ap data structure such that the system
1436 * thinks that the entire port is enabled.
1437 *
1438 * LOCKING: host_set lock, or some other form of
1439 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 */
1441
1442void ata_port_probe(struct ata_port *ap)
1443{
1444 ap->flags &= ~ATA_FLAG_PORT_DISABLED;
1445}
1446
1447/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001448 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1449 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001451 * This function issues commands to standard SATA Sxxx
1452 * PHY registers, to wake up the phy (and device), and
1453 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 *
1455 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001456 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 *
1458 */
1459void __sata_phy_reset(struct ata_port *ap)
1460{
1461 u32 sstatus;
1462 unsigned long timeout = jiffies + (HZ * 5);
1463
1464 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001465 /* issue phy wake/reset */
1466 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001467 /* Couldn't find anything in SATA I/II specs, but
1468 * AHCI-1.1 10.4.2 says at least 1 ms. */
1469 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
Brett Russcdcca892005-03-28 15:10:27 -05001471 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 /* wait for phy to become ready, if necessary */
1474 do {
1475 msleep(200);
1476 sstatus = scr_read(ap, SCR_STATUS);
1477 if ((sstatus & 0xf) != 1)
1478 break;
1479 } while (time_before(jiffies, timeout));
1480
1481 /* TODO: phy layer with polling, timeouts, etc. */
1482 if (sata_dev_present(ap))
1483 ata_port_probe(ap);
1484 else {
1485 sstatus = scr_read(ap, SCR_STATUS);
1486 printk(KERN_INFO "ata%u: no device found (phy stat %08x)\n",
1487 ap->id, sstatus);
1488 ata_port_disable(ap);
1489 }
1490
1491 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1492 return;
1493
1494 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1495 ata_port_disable(ap);
1496 return;
1497 }
1498
1499 ap->cbl = ATA_CBL_SATA;
1500}
1501
1502/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001503 * sata_phy_reset - Reset SATA bus.
1504 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001506 * This function resets the SATA bus, and then probes
1507 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 *
1509 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001510 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *
1512 */
1513void sata_phy_reset(struct ata_port *ap)
1514{
1515 __sata_phy_reset(ap);
1516 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1517 return;
1518 ata_bus_reset(ap);
1519}
1520
1521/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001522 * ata_port_disable - Disable port.
1523 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001525 * Modify @ap data structure such that the system
1526 * thinks that the entire port is disabled, and should
1527 * never attempt to probe or communicate with devices
1528 * on this port.
1529 *
1530 * LOCKING: host_set lock, or some other form of
1531 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 */
1533
1534void ata_port_disable(struct ata_port *ap)
1535{
1536 ap->device[0].class = ATA_DEV_NONE;
1537 ap->device[1].class = ATA_DEV_NONE;
1538 ap->flags |= ATA_FLAG_PORT_DISABLED;
1539}
1540
Alan Cox452503f2005-10-21 19:01:32 -04001541/*
1542 * This mode timing computation functionality is ported over from
1543 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1544 */
1545/*
1546 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1547 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1548 * for PIO 5, which is a nonstandard extension and UDMA6, which
1549 * is currently supported only by Maxtor drives.
1550 */
1551
1552static const struct ata_timing ata_timing[] = {
1553
1554 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1555 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1556 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1557 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1558
1559 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1560 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1561 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1562
1563/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
1564
1565 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1566 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1567 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
1568
1569 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1570 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1571 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1572
1573/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1574 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1575 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1576
1577 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1578 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1579 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1580
1581/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1582
1583 { 0xFF }
1584};
1585
1586#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1587#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1588
1589static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1590{
1591 q->setup = EZ(t->setup * 1000, T);
1592 q->act8b = EZ(t->act8b * 1000, T);
1593 q->rec8b = EZ(t->rec8b * 1000, T);
1594 q->cyc8b = EZ(t->cyc8b * 1000, T);
1595 q->active = EZ(t->active * 1000, T);
1596 q->recover = EZ(t->recover * 1000, T);
1597 q->cycle = EZ(t->cycle * 1000, T);
1598 q->udma = EZ(t->udma * 1000, UT);
1599}
1600
1601void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1602 struct ata_timing *m, unsigned int what)
1603{
1604 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1605 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1606 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1607 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1608 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1609 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1610 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1611 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1612}
1613
1614static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1615{
1616 const struct ata_timing *t;
1617
1618 for (t = ata_timing; t->mode != speed; t++)
1619 if (t->mode != 0xFF)
1620 return NULL;
1621 return t;
1622}
1623
1624int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1625 struct ata_timing *t, int T, int UT)
1626{
1627 const struct ata_timing *s;
1628 struct ata_timing p;
1629
1630 /*
1631 * Find the mode.
1632 */
1633
1634 if (!(s = ata_timing_find_mode(speed)))
1635 return -EINVAL;
1636
1637 /*
1638 * If the drive is an EIDE drive, it can tell us it needs extended
1639 * PIO/MW_DMA cycle timing.
1640 */
1641
1642 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1643 memset(&p, 0, sizeof(p));
1644 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1645 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1646 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1647 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1648 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1649 }
1650 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1651 }
1652
1653 /*
1654 * Convert the timing to bus clock counts.
1655 */
1656
1657 ata_timing_quantize(s, t, T, UT);
1658
1659 /*
1660 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY, S.M.A.R.T
1661 * and some other commands. We have to ensure that the DMA cycle timing is
1662 * slower/equal than the fastest PIO timing.
1663 */
1664
1665 if (speed > XFER_PIO_4) {
1666 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1667 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1668 }
1669
1670 /*
1671 * Lenghten active & recovery time so that cycle time is correct.
1672 */
1673
1674 if (t->act8b + t->rec8b < t->cyc8b) {
1675 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1676 t->rec8b = t->cyc8b - t->act8b;
1677 }
1678
1679 if (t->active + t->recover < t->cycle) {
1680 t->active += (t->cycle - (t->active + t->recover)) / 2;
1681 t->recover = t->cycle - t->active;
1682 }
1683
1684 return 0;
1685}
1686
Jeff Garzik057ace52005-10-22 14:27:05 -04001687static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 unsigned int shift;
1689 u8 base;
1690} xfer_mode_classes[] = {
1691 { ATA_SHIFT_UDMA, XFER_UDMA_0 },
1692 { ATA_SHIFT_MWDMA, XFER_MW_DMA_0 },
1693 { ATA_SHIFT_PIO, XFER_PIO_0 },
1694};
1695
1696static inline u8 base_from_shift(unsigned int shift)
1697{
1698 int i;
1699
1700 for (i = 0; i < ARRAY_SIZE(xfer_mode_classes); i++)
1701 if (xfer_mode_classes[i].shift == shift)
1702 return xfer_mode_classes[i].base;
1703
1704 return 0xff;
1705}
1706
1707static void ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
1708{
1709 int ofs, idx;
1710 u8 base;
1711
1712 if (!ata_dev_present(dev) || (ap->flags & ATA_FLAG_PORT_DISABLED))
1713 return;
1714
1715 if (dev->xfer_shift == ATA_SHIFT_PIO)
1716 dev->flags |= ATA_DFLAG_PIO;
1717
1718 ata_dev_set_xfermode(ap, dev);
1719
1720 base = base_from_shift(dev->xfer_shift);
1721 ofs = dev->xfer_mode - base;
1722 idx = ofs + dev->xfer_shift;
1723 WARN_ON(idx >= ARRAY_SIZE(xfer_mode_str));
1724
1725 DPRINTK("idx=%d xfer_shift=%u, xfer_mode=0x%x, base=0x%x, offset=%d\n",
1726 idx, dev->xfer_shift, (int)dev->xfer_mode, (int)base, ofs);
1727
1728 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
1729 ap->id, dev->devno, xfer_mode_str[idx]);
1730}
1731
1732static int ata_host_set_pio(struct ata_port *ap)
1733{
1734 unsigned int mask;
1735 int x, i;
1736 u8 base, xfer_mode;
1737
1738 mask = ata_get_mode_mask(ap, ATA_SHIFT_PIO);
1739 x = fgb(mask);
1740 if (x < 0) {
1741 printk(KERN_WARNING "ata%u: no PIO support\n", ap->id);
1742 return -1;
1743 }
1744
1745 base = base_from_shift(ATA_SHIFT_PIO);
1746 xfer_mode = base + x;
1747
1748 DPRINTK("base 0x%x xfer_mode 0x%x mask 0x%x x %d\n",
1749 (int)base, (int)xfer_mode, mask, x);
1750
1751 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1752 struct ata_device *dev = &ap->device[i];
1753 if (ata_dev_present(dev)) {
1754 dev->pio_mode = xfer_mode;
1755 dev->xfer_mode = xfer_mode;
1756 dev->xfer_shift = ATA_SHIFT_PIO;
1757 if (ap->ops->set_piomode)
1758 ap->ops->set_piomode(ap, dev);
1759 }
1760 }
1761
1762 return 0;
1763}
1764
1765static void ata_host_set_dma(struct ata_port *ap, u8 xfer_mode,
1766 unsigned int xfer_shift)
1767{
1768 int i;
1769
1770 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1771 struct ata_device *dev = &ap->device[i];
1772 if (ata_dev_present(dev)) {
1773 dev->dma_mode = xfer_mode;
1774 dev->xfer_mode = xfer_mode;
1775 dev->xfer_shift = xfer_shift;
1776 if (ap->ops->set_dmamode)
1777 ap->ops->set_dmamode(ap, dev);
1778 }
1779 }
1780}
1781
1782/**
1783 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1784 * @ap: port on which timings will be programmed
1785 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001786 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.).
1787 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001789 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 *
1791 */
1792static void ata_set_mode(struct ata_port *ap)
1793{
Albert Lee8cbd6df2005-10-12 15:06:27 +08001794 unsigned int xfer_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 u8 xfer_mode;
1796 int rc;
1797
1798 /* step 1: always set host PIO timings */
1799 rc = ata_host_set_pio(ap);
1800 if (rc)
1801 goto err_out;
1802
1803 /* step 2: choose the best data xfer mode */
1804 xfer_mode = xfer_shift = 0;
1805 rc = ata_choose_xfer_mode(ap, &xfer_mode, &xfer_shift);
1806 if (rc)
1807 goto err_out;
1808
1809 /* step 3: if that xfer mode isn't PIO, set host DMA timings */
1810 if (xfer_shift != ATA_SHIFT_PIO)
1811 ata_host_set_dma(ap, xfer_mode, xfer_shift);
1812
1813 /* step 4: update devices' xfer mode */
1814 ata_dev_set_mode(ap, &ap->device[0]);
1815 ata_dev_set_mode(ap, &ap->device[1]);
1816
1817 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1818 return;
1819
1820 if (ap->ops->post_set_mode)
1821 ap->ops->post_set_mode(ap);
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return;
1824
1825err_out:
1826 ata_port_disable(ap);
1827}
1828
1829/**
1830 * ata_busy_sleep - sleep until BSY clears, or timeout
1831 * @ap: port containing status register to be polled
1832 * @tmout_pat: impatience timeout
1833 * @tmout: overall timeout
1834 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001835 * Sleep until ATA Status register bit BSY clears,
1836 * or a timeout occurs.
1837 *
1838 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 *
1840 */
1841
1842static unsigned int ata_busy_sleep (struct ata_port *ap,
1843 unsigned long tmout_pat,
1844 unsigned long tmout)
1845{
1846 unsigned long timer_start, timeout;
1847 u8 status;
1848
1849 status = ata_busy_wait(ap, ATA_BUSY, 300);
1850 timer_start = jiffies;
1851 timeout = timer_start + tmout_pat;
1852 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1853 msleep(50);
1854 status = ata_busy_wait(ap, ATA_BUSY, 3);
1855 }
1856
1857 if (status & ATA_BUSY)
1858 printk(KERN_WARNING "ata%u is slow to respond, "
1859 "please be patient\n", ap->id);
1860
1861 timeout = timer_start + tmout;
1862 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1863 msleep(50);
1864 status = ata_chk_status(ap);
1865 }
1866
1867 if (status & ATA_BUSY) {
1868 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
1869 ap->id, tmout / HZ);
1870 return 1;
1871 }
1872
1873 return 0;
1874}
1875
1876static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
1877{
1878 struct ata_ioports *ioaddr = &ap->ioaddr;
1879 unsigned int dev0 = devmask & (1 << 0);
1880 unsigned int dev1 = devmask & (1 << 1);
1881 unsigned long timeout;
1882
1883 /* if device 0 was found in ata_devchk, wait for its
1884 * BSY bit to clear
1885 */
1886 if (dev0)
1887 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1888
1889 /* if device 1 was found in ata_devchk, wait for
1890 * register access, then wait for BSY to clear
1891 */
1892 timeout = jiffies + ATA_TMOUT_BOOT;
1893 while (dev1) {
1894 u8 nsect, lbal;
1895
1896 ap->ops->dev_select(ap, 1);
1897 if (ap->flags & ATA_FLAG_MMIO) {
1898 nsect = readb((void __iomem *) ioaddr->nsect_addr);
1899 lbal = readb((void __iomem *) ioaddr->lbal_addr);
1900 } else {
1901 nsect = inb(ioaddr->nsect_addr);
1902 lbal = inb(ioaddr->lbal_addr);
1903 }
1904 if ((nsect == 1) && (lbal == 1))
1905 break;
1906 if (time_after(jiffies, timeout)) {
1907 dev1 = 0;
1908 break;
1909 }
1910 msleep(50); /* give drive a breather */
1911 }
1912 if (dev1)
1913 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1914
1915 /* is all this really necessary? */
1916 ap->ops->dev_select(ap, 0);
1917 if (dev1)
1918 ap->ops->dev_select(ap, 1);
1919 if (dev0)
1920 ap->ops->dev_select(ap, 0);
1921}
1922
1923/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001924 * ata_bus_edd - Issue EXECUTE DEVICE DIAGNOSTIC command.
1925 * @ap: Port to reset and probe
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001927 * Use the EXECUTE DEVICE DIAGNOSTIC command to reset and
1928 * probe the bus. Not often used these days.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 *
1930 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001931 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 *
1933 */
1934
1935static unsigned int ata_bus_edd(struct ata_port *ap)
1936{
1937 struct ata_taskfile tf;
1938
1939 /* set up execute-device-diag (bus reset) taskfile */
1940 /* also, take interrupts to a known state (disabled) */
1941 DPRINTK("execute-device-diag\n");
1942 ata_tf_init(ap, &tf, 0);
1943 tf.ctl |= ATA_NIEN;
1944 tf.command = ATA_CMD_EDD;
1945 tf.protocol = ATA_PROT_NODATA;
1946
1947 /* do bus reset */
1948 ata_tf_to_host(ap, &tf);
1949
1950 /* spec says at least 2ms. but who knows with those
1951 * crazy ATAPI devices...
1952 */
1953 msleep(150);
1954
1955 return ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1956}
1957
1958static unsigned int ata_bus_softreset(struct ata_port *ap,
1959 unsigned int devmask)
1960{
1961 struct ata_ioports *ioaddr = &ap->ioaddr;
1962
1963 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
1964
1965 /* software reset. causes dev0 to be selected */
1966 if (ap->flags & ATA_FLAG_MMIO) {
1967 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
1968 udelay(20); /* FIXME: flush */
1969 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
1970 udelay(20); /* FIXME: flush */
1971 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
1972 } else {
1973 outb(ap->ctl, ioaddr->ctl_addr);
1974 udelay(10);
1975 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
1976 udelay(10);
1977 outb(ap->ctl, ioaddr->ctl_addr);
1978 }
1979
1980 /* spec mandates ">= 2ms" before checking status.
1981 * We wait 150ms, because that was the magic delay used for
1982 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
1983 * between when the ATA command register is written, and then
1984 * status is checked. Because waiting for "a while" before
1985 * checking status is fine, post SRST, we perform this magic
1986 * delay here as well.
1987 */
1988 msleep(150);
1989
1990 ata_bus_post_reset(ap, devmask);
1991
1992 return 0;
1993}
1994
1995/**
1996 * ata_bus_reset - reset host port and associated ATA channel
1997 * @ap: port to reset
1998 *
1999 * This is typically the first time we actually start issuing
2000 * commands to the ATA channel. We wait for BSY to clear, then
2001 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2002 * result. Determine what devices, if any, are on the channel
2003 * by looking at the device 0/1 error register. Look at the signature
2004 * stored in each device's taskfile registers, to determine if
2005 * the device is ATA or ATAPI.
2006 *
2007 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002008 * PCI/etc. bus probe sem.
2009 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 *
2011 * SIDE EFFECTS:
2012 * Sets ATA_FLAG_PORT_DISABLED if bus reset fails.
2013 */
2014
2015void ata_bus_reset(struct ata_port *ap)
2016{
2017 struct ata_ioports *ioaddr = &ap->ioaddr;
2018 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2019 u8 err;
2020 unsigned int dev0, dev1 = 0, rc = 0, devmask = 0;
2021
2022 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2023
2024 /* determine if device 0/1 are present */
2025 if (ap->flags & ATA_FLAG_SATA_RESET)
2026 dev0 = 1;
2027 else {
2028 dev0 = ata_devchk(ap, 0);
2029 if (slave_possible)
2030 dev1 = ata_devchk(ap, 1);
2031 }
2032
2033 if (dev0)
2034 devmask |= (1 << 0);
2035 if (dev1)
2036 devmask |= (1 << 1);
2037
2038 /* select device 0 again */
2039 ap->ops->dev_select(ap, 0);
2040
2041 /* issue bus reset */
2042 if (ap->flags & ATA_FLAG_SRST)
2043 rc = ata_bus_softreset(ap, devmask);
2044 else if ((ap->flags & ATA_FLAG_SATA_RESET) == 0) {
2045 /* set up device control */
2046 if (ap->flags & ATA_FLAG_MMIO)
2047 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2048 else
2049 outb(ap->ctl, ioaddr->ctl_addr);
2050 rc = ata_bus_edd(ap);
2051 }
2052
2053 if (rc)
2054 goto err_out;
2055
2056 /*
2057 * determine by signature whether we have ATA or ATAPI devices
2058 */
2059 err = ata_dev_try_classify(ap, 0);
2060 if ((slave_possible) && (err != 0x81))
2061 ata_dev_try_classify(ap, 1);
2062
2063 /* re-enable interrupts */
2064 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2065 ata_irq_on(ap);
2066
2067 /* is double-select really necessary? */
2068 if (ap->device[1].class != ATA_DEV_NONE)
2069 ap->ops->dev_select(ap, 1);
2070 if (ap->device[0].class != ATA_DEV_NONE)
2071 ap->ops->dev_select(ap, 0);
2072
2073 /* if no devices were detected, disable this port */
2074 if ((ap->device[0].class == ATA_DEV_NONE) &&
2075 (ap->device[1].class == ATA_DEV_NONE))
2076 goto err_out;
2077
2078 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2079 /* set up device control for ATA_FLAG_SATA_RESET */
2080 if (ap->flags & ATA_FLAG_MMIO)
2081 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2082 else
2083 outb(ap->ctl, ioaddr->ctl_addr);
2084 }
2085
2086 DPRINTK("EXIT\n");
2087 return;
2088
2089err_out:
2090 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2091 ap->ops->port_disable(ap);
2092
2093 DPRINTK("EXIT\n");
2094}
2095
Jeff Garzik057ace52005-10-22 14:27:05 -04002096static void ata_pr_blacklisted(const struct ata_port *ap,
2097 const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
2099 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, disabling DMA\n",
2100 ap->id, dev->devno);
2101}
2102
2103static const char * ata_dma_blacklist [] = {
2104 "WDC AC11000H",
2105 "WDC AC22100H",
2106 "WDC AC32500H",
2107 "WDC AC33100H",
2108 "WDC AC31600H",
2109 "WDC AC32100H",
2110 "WDC AC23200L",
2111 "Compaq CRD-8241B",
2112 "CRD-8400B",
2113 "CRD-8480B",
2114 "CRD-8482B",
2115 "CRD-84",
2116 "SanDisk SDP3B",
2117 "SanDisk SDP3B-64",
2118 "SANYO CD-ROM CRD",
2119 "HITACHI CDR-8",
2120 "HITACHI CDR-8335",
2121 "HITACHI CDR-8435",
2122 "Toshiba CD-ROM XM-6202B",
Jeff Garzike9222562005-06-28 00:03:37 -04002123 "TOSHIBA CD-ROM XM-1702BC",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 "CD-532E-A",
2125 "E-IDE CD-ROM CR-840",
2126 "CD-ROM Drive/F5A",
2127 "WPI CDD-820",
2128 "SAMSUNG CD-ROM SC-148C",
2129 "SAMSUNG CD-ROM SC",
2130 "SanDisk SDP3B-64",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 "ATAPI CD-ROM DRIVE 40X MAXIMUM",
2132 "_NEC DV5800A",
2133};
2134
Jeff Garzik057ace52005-10-22 14:27:05 -04002135static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
2137 unsigned char model_num[40];
2138 char *s;
2139 unsigned int len;
2140 int i;
2141
2142 ata_dev_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2143 sizeof(model_num));
2144 s = &model_num[0];
2145 len = strnlen(s, sizeof(model_num));
2146
2147 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2148 while ((len > 0) && (s[len - 1] == ' ')) {
2149 len--;
2150 s[len] = 0;
2151 }
2152
2153 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i++)
2154 if (!strncmp(ata_dma_blacklist[i], s, len))
2155 return 1;
2156
2157 return 0;
2158}
2159
Jeff Garzik057ace52005-10-22 14:27:05 -04002160static unsigned int ata_get_mode_mask(const struct ata_port *ap, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
Jeff Garzik057ace52005-10-22 14:27:05 -04002162 const struct ata_device *master, *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 unsigned int mask;
2164
2165 master = &ap->device[0];
2166 slave = &ap->device[1];
2167
2168 assert (ata_dev_present(master) || ata_dev_present(slave));
2169
2170 if (shift == ATA_SHIFT_UDMA) {
2171 mask = ap->udma_mask;
2172 if (ata_dev_present(master)) {
2173 mask &= (master->id[ATA_ID_UDMA_MODES] & 0xff);
Jeff Garzik057ace52005-10-22 14:27:05 -04002174 if (ata_dma_blacklisted(master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 mask = 0;
2176 ata_pr_blacklisted(ap, master);
2177 }
2178 }
2179 if (ata_dev_present(slave)) {
2180 mask &= (slave->id[ATA_ID_UDMA_MODES] & 0xff);
Jeff Garzik057ace52005-10-22 14:27:05 -04002181 if (ata_dma_blacklisted(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 mask = 0;
2183 ata_pr_blacklisted(ap, slave);
2184 }
2185 }
2186 }
2187 else if (shift == ATA_SHIFT_MWDMA) {
2188 mask = ap->mwdma_mask;
2189 if (ata_dev_present(master)) {
2190 mask &= (master->id[ATA_ID_MWDMA_MODES] & 0x07);
Jeff Garzik057ace52005-10-22 14:27:05 -04002191 if (ata_dma_blacklisted(master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 mask = 0;
2193 ata_pr_blacklisted(ap, master);
2194 }
2195 }
2196 if (ata_dev_present(slave)) {
2197 mask &= (slave->id[ATA_ID_MWDMA_MODES] & 0x07);
Jeff Garzik057ace52005-10-22 14:27:05 -04002198 if (ata_dma_blacklisted(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 mask = 0;
2200 ata_pr_blacklisted(ap, slave);
2201 }
2202 }
2203 }
2204 else if (shift == ATA_SHIFT_PIO) {
2205 mask = ap->pio_mask;
2206 if (ata_dev_present(master)) {
2207 /* spec doesn't return explicit support for
2208 * PIO0-2, so we fake it
2209 */
2210 u16 tmp_mode = master->id[ATA_ID_PIO_MODES] & 0x03;
2211 tmp_mode <<= 3;
2212 tmp_mode |= 0x7;
2213 mask &= tmp_mode;
2214 }
2215 if (ata_dev_present(slave)) {
2216 /* spec doesn't return explicit support for
2217 * PIO0-2, so we fake it
2218 */
2219 u16 tmp_mode = slave->id[ATA_ID_PIO_MODES] & 0x03;
2220 tmp_mode <<= 3;
2221 tmp_mode |= 0x7;
2222 mask &= tmp_mode;
2223 }
2224 }
2225 else {
2226 mask = 0xffffffff; /* shut up compiler warning */
2227 BUG();
2228 }
2229
2230 return mask;
2231}
2232
2233/* find greatest bit */
2234static int fgb(u32 bitmap)
2235{
2236 unsigned int i;
2237 int x = -1;
2238
2239 for (i = 0; i < 32; i++)
2240 if (bitmap & (1 << i))
2241 x = i;
2242
2243 return x;
2244}
2245
2246/**
2247 * ata_choose_xfer_mode - attempt to find best transfer mode
2248 * @ap: Port for which an xfer mode will be selected
2249 * @xfer_mode_out: (output) SET FEATURES - XFER MODE code
2250 * @xfer_shift_out: (output) bit shift that selects this mode
2251 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002252 * Based on host and device capabilities, determine the
2253 * maximum transfer mode that is amenable to all.
2254 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002256 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 *
2258 * RETURNS:
2259 * Zero on success, negative on error.
2260 */
2261
Jeff Garzik057ace52005-10-22 14:27:05 -04002262static int ata_choose_xfer_mode(const struct ata_port *ap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 u8 *xfer_mode_out,
2264 unsigned int *xfer_shift_out)
2265{
2266 unsigned int mask, shift;
2267 int x, i;
2268
2269 for (i = 0; i < ARRAY_SIZE(xfer_mode_classes); i++) {
2270 shift = xfer_mode_classes[i].shift;
2271 mask = ata_get_mode_mask(ap, shift);
2272
2273 x = fgb(mask);
2274 if (x >= 0) {
2275 *xfer_mode_out = xfer_mode_classes[i].base + x;
2276 *xfer_shift_out = shift;
2277 return 0;
2278 }
2279 }
2280
2281 return -1;
2282}
2283
2284/**
2285 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2286 * @ap: Port associated with device @dev
2287 * @dev: Device to which command will be sent
2288 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002289 * Issue SET FEATURES - XFER MODE command to device @dev
2290 * on port @ap.
2291 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002293 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 */
2295
2296static void ata_dev_set_xfermode(struct ata_port *ap, struct ata_device *dev)
2297{
2298 DECLARE_COMPLETION(wait);
2299 struct ata_queued_cmd *qc;
2300 int rc;
2301 unsigned long flags;
2302
2303 /* set up set-features taskfile */
2304 DPRINTK("set features - xfer mode\n");
2305
2306 qc = ata_qc_new_init(ap, dev);
2307 BUG_ON(qc == NULL);
2308
2309 qc->tf.command = ATA_CMD_SET_FEATURES;
2310 qc->tf.feature = SETFEATURES_XFER;
2311 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2312 qc->tf.protocol = ATA_PROT_NODATA;
2313 qc->tf.nsect = dev->xfer_mode;
2314
2315 qc->waiting = &wait;
2316 qc->complete_fn = ata_qc_complete_noop;
2317
2318 spin_lock_irqsave(&ap->host_set->lock, flags);
2319 rc = ata_qc_issue(qc);
2320 spin_unlock_irqrestore(&ap->host_set->lock, flags);
2321
2322 if (rc)
2323 ata_port_disable(ap);
2324 else
2325 wait_for_completion(&wait);
2326
2327 DPRINTK("EXIT\n");
2328}
2329
2330/**
Albert Lee59a10b12005-10-12 15:09:42 +08002331 * ata_dev_reread_id - Reread the device identify device info
2332 * @ap: port where the device is
2333 * @dev: device to reread the identify device info
2334 *
2335 * LOCKING:
2336 */
2337
2338static void ata_dev_reread_id(struct ata_port *ap, struct ata_device *dev)
2339{
2340 DECLARE_COMPLETION(wait);
2341 struct ata_queued_cmd *qc;
2342 unsigned long flags;
2343 int rc;
2344
2345 qc = ata_qc_new_init(ap, dev);
2346 BUG_ON(qc == NULL);
2347
2348 ata_sg_init_one(qc, dev->id, sizeof(dev->id));
2349 qc->dma_dir = DMA_FROM_DEVICE;
2350
2351 if (dev->class == ATA_DEV_ATA) {
2352 qc->tf.command = ATA_CMD_ID_ATA;
2353 DPRINTK("do ATA identify\n");
2354 } else {
2355 qc->tf.command = ATA_CMD_ID_ATAPI;
2356 DPRINTK("do ATAPI identify\n");
2357 }
2358
2359 qc->tf.flags |= ATA_TFLAG_DEVICE;
2360 qc->tf.protocol = ATA_PROT_PIO;
2361 qc->nsect = 1;
2362
2363 qc->waiting = &wait;
2364 qc->complete_fn = ata_qc_complete_noop;
2365
2366 spin_lock_irqsave(&ap->host_set->lock, flags);
2367 rc = ata_qc_issue(qc);
2368 spin_unlock_irqrestore(&ap->host_set->lock, flags);
2369
2370 if (rc)
2371 goto err_out;
2372
2373 wait_for_completion(&wait);
2374
2375 swap_buf_le16(dev->id, ATA_ID_WORDS);
2376
2377 ata_dump_id(dev);
2378
2379 DPRINTK("EXIT\n");
2380
2381 return;
2382err_out:
2383 ata_port_disable(ap);
2384}
2385
2386/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04002387 * ata_dev_init_params - Issue INIT DEV PARAMS command
2388 * @ap: Port associated with device @dev
2389 * @dev: Device to which command will be sent
2390 *
2391 * LOCKING:
2392 */
2393
2394static void ata_dev_init_params(struct ata_port *ap, struct ata_device *dev)
2395{
2396 DECLARE_COMPLETION(wait);
2397 struct ata_queued_cmd *qc;
2398 int rc;
2399 unsigned long flags;
2400 u16 sectors = dev->id[6];
2401 u16 heads = dev->id[3];
2402
2403 /* Number of sectors per track 1-255. Number of heads 1-16 */
2404 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
2405 return;
2406
2407 /* set up init dev params taskfile */
2408 DPRINTK("init dev params \n");
2409
2410 qc = ata_qc_new_init(ap, dev);
2411 BUG_ON(qc == NULL);
2412
2413 qc->tf.command = ATA_CMD_INIT_DEV_PARAMS;
2414 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2415 qc->tf.protocol = ATA_PROT_NODATA;
2416 qc->tf.nsect = sectors;
2417 qc->tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
2418
2419 qc->waiting = &wait;
2420 qc->complete_fn = ata_qc_complete_noop;
2421
2422 spin_lock_irqsave(&ap->host_set->lock, flags);
2423 rc = ata_qc_issue(qc);
2424 spin_unlock_irqrestore(&ap->host_set->lock, flags);
2425
2426 if (rc)
2427 ata_port_disable(ap);
2428 else
2429 wait_for_completion(&wait);
2430
2431 DPRINTK("EXIT\n");
2432}
2433
2434/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002435 * ata_sg_clean - Unmap DMA memory associated with command
2436 * @qc: Command containing DMA memory to be released
2437 *
2438 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 *
2440 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002441 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 */
2443
2444static void ata_sg_clean(struct ata_queued_cmd *qc)
2445{
2446 struct ata_port *ap = qc->ap;
2447 struct scatterlist *sg = qc->sg;
2448 int dir = qc->dma_dir;
2449
2450 assert(qc->flags & ATA_QCFLAG_DMAMAP);
2451 assert(sg != NULL);
2452
2453 if (qc->flags & ATA_QCFLAG_SINGLE)
2454 assert(qc->n_elem == 1);
2455
2456 DPRINTK("unmapping %u sg elements\n", qc->n_elem);
2457
2458 if (qc->flags & ATA_QCFLAG_SG)
2459 dma_unmap_sg(ap->host_set->dev, sg, qc->n_elem, dir);
2460 else
2461 dma_unmap_single(ap->host_set->dev, sg_dma_address(&sg[0]),
2462 sg_dma_len(&sg[0]), dir);
2463
2464 qc->flags &= ~ATA_QCFLAG_DMAMAP;
2465 qc->sg = NULL;
2466}
2467
2468/**
2469 * ata_fill_sg - Fill PCI IDE PRD table
2470 * @qc: Metadata associated with taskfile to be transferred
2471 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002472 * Fill PCI IDE PRD (scatter-gather) table with segments
2473 * associated with the current disk command.
2474 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04002476 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 *
2478 */
2479static void ata_fill_sg(struct ata_queued_cmd *qc)
2480{
2481 struct scatterlist *sg = qc->sg;
2482 struct ata_port *ap = qc->ap;
2483 unsigned int idx, nelem;
2484
2485 assert(sg != NULL);
2486 assert(qc->n_elem > 0);
2487
2488 idx = 0;
2489 for (nelem = qc->n_elem; nelem; nelem--,sg++) {
2490 u32 addr, offset;
2491 u32 sg_len, len;
2492
2493 /* determine if physical DMA addr spans 64K boundary.
2494 * Note h/w doesn't support 64-bit, so we unconditionally
2495 * truncate dma_addr_t to u32.
2496 */
2497 addr = (u32) sg_dma_address(sg);
2498 sg_len = sg_dma_len(sg);
2499
2500 while (sg_len) {
2501 offset = addr & 0xffff;
2502 len = sg_len;
2503 if ((offset + sg_len) > 0x10000)
2504 len = 0x10000 - offset;
2505
2506 ap->prd[idx].addr = cpu_to_le32(addr);
2507 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
2508 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
2509
2510 idx++;
2511 sg_len -= len;
2512 addr += len;
2513 }
2514 }
2515
2516 if (idx)
2517 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
2518}
2519/**
2520 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
2521 * @qc: Metadata associated with taskfile to check
2522 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002523 * Allow low-level driver to filter ATA PACKET commands, returning
2524 * a status indicating whether or not it is OK to use DMA for the
2525 * supplied PACKET command.
2526 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002528 * spin_lock_irqsave(host_set lock)
2529 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 * RETURNS: 0 when ATAPI DMA can be used
2531 * nonzero otherwise
2532 */
2533int ata_check_atapi_dma(struct ata_queued_cmd *qc)
2534{
2535 struct ata_port *ap = qc->ap;
2536 int rc = 0; /* Assume ATAPI DMA is OK by default */
2537
2538 if (ap->ops->check_atapi_dma)
2539 rc = ap->ops->check_atapi_dma(qc);
2540
2541 return rc;
2542}
2543/**
2544 * ata_qc_prep - Prepare taskfile for submission
2545 * @qc: Metadata associated with taskfile to be prepared
2546 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002547 * Prepare ATA taskfile for submission.
2548 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 * LOCKING:
2550 * spin_lock_irqsave(host_set lock)
2551 */
2552void ata_qc_prep(struct ata_queued_cmd *qc)
2553{
2554 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
2555 return;
2556
2557 ata_fill_sg(qc);
2558}
2559
Jeff Garzik0cba6322005-05-30 19:49:12 -04002560/**
2561 * ata_sg_init_one - Associate command with memory buffer
2562 * @qc: Command to be associated
2563 * @buf: Memory buffer
2564 * @buflen: Length of memory buffer, in bytes.
2565 *
2566 * Initialize the data-related elements of queued_cmd @qc
2567 * to point to a single memory buffer, @buf of byte length @buflen.
2568 *
2569 * LOCKING:
2570 * spin_lock_irqsave(host_set lock)
2571 */
2572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
2574{
2575 struct scatterlist *sg;
2576
2577 qc->flags |= ATA_QCFLAG_SINGLE;
2578
2579 memset(&qc->sgent, 0, sizeof(qc->sgent));
2580 qc->sg = &qc->sgent;
2581 qc->n_elem = 1;
2582 qc->buf_virt = buf;
2583
2584 sg = qc->sg;
2585 sg->page = virt_to_page(buf);
2586 sg->offset = (unsigned long) buf & ~PAGE_MASK;
Albert Lee32529e02005-05-26 03:49:42 -04002587 sg->length = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588}
2589
Jeff Garzik0cba6322005-05-30 19:49:12 -04002590/**
2591 * ata_sg_init - Associate command with scatter-gather table.
2592 * @qc: Command to be associated
2593 * @sg: Scatter-gather table.
2594 * @n_elem: Number of elements in s/g table.
2595 *
2596 * Initialize the data-related elements of queued_cmd @qc
2597 * to point to a scatter-gather table @sg, containing @n_elem
2598 * elements.
2599 *
2600 * LOCKING:
2601 * spin_lock_irqsave(host_set lock)
2602 */
2603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
2605 unsigned int n_elem)
2606{
2607 qc->flags |= ATA_QCFLAG_SG;
2608 qc->sg = sg;
2609 qc->n_elem = n_elem;
2610}
2611
2612/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002613 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
2614 * @qc: Command with memory buffer to be mapped.
2615 *
2616 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 *
2618 * LOCKING:
2619 * spin_lock_irqsave(host_set lock)
2620 *
2621 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002622 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 */
2624
2625static int ata_sg_setup_one(struct ata_queued_cmd *qc)
2626{
2627 struct ata_port *ap = qc->ap;
2628 int dir = qc->dma_dir;
2629 struct scatterlist *sg = qc->sg;
2630 dma_addr_t dma_address;
2631
2632 dma_address = dma_map_single(ap->host_set->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04002633 sg->length, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 if (dma_mapping_error(dma_address))
2635 return -1;
2636
2637 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04002638 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
2640 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
2641 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
2642
2643 return 0;
2644}
2645
2646/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002647 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
2648 * @qc: Command with scatter-gather table to be mapped.
2649 *
2650 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 *
2652 * LOCKING:
2653 * spin_lock_irqsave(host_set lock)
2654 *
2655 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002656 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 *
2658 */
2659
2660static int ata_sg_setup(struct ata_queued_cmd *qc)
2661{
2662 struct ata_port *ap = qc->ap;
2663 struct scatterlist *sg = qc->sg;
2664 int n_elem, dir;
2665
2666 VPRINTK("ENTER, ata%u\n", ap->id);
2667 assert(qc->flags & ATA_QCFLAG_SG);
2668
2669 dir = qc->dma_dir;
2670 n_elem = dma_map_sg(ap->host_set->dev, sg, qc->n_elem, dir);
2671 if (n_elem < 1)
2672 return -1;
2673
2674 DPRINTK("%d sg elements mapped\n", n_elem);
2675
2676 qc->n_elem = n_elem;
2677
2678 return 0;
2679}
2680
2681/**
Tejun Heo40e8c822005-08-22 17:12:45 +09002682 * ata_poll_qc_complete - turn irq back on and finish qc
2683 * @qc: Command to complete
2684 * @drv_stat: ATA status register content
2685 *
2686 * LOCKING:
2687 * None. (grabs host lock)
2688 */
2689
2690void ata_poll_qc_complete(struct ata_queued_cmd *qc, u8 drv_stat)
2691{
2692 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04002693 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09002694
Jeff Garzikb8f61532005-08-25 22:01:20 -04002695 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09002696 ap->flags &= ~ATA_FLAG_NOINTR;
2697 ata_irq_on(ap);
2698 ata_qc_complete(qc, drv_stat);
Jeff Garzikb8f61532005-08-25 22:01:20 -04002699 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09002700}
2701
2702/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 * ata_pio_poll -
2704 * @ap:
2705 *
2706 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002707 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 *
2709 * RETURNS:
2710 *
2711 */
2712
2713static unsigned long ata_pio_poll(struct ata_port *ap)
2714{
2715 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08002716 unsigned int poll_state = HSM_ST_UNKNOWN;
2717 unsigned int reg_state = HSM_ST_UNKNOWN;
2718 const unsigned int tmout_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Albert Lee14be71f2005-09-27 17:36:35 +08002720 switch (ap->hsm_task_state) {
2721 case HSM_ST:
2722 case HSM_ST_POLL:
2723 poll_state = HSM_ST_POLL;
2724 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 break;
Albert Lee14be71f2005-09-27 17:36:35 +08002726 case HSM_ST_LAST:
2727 case HSM_ST_LAST_POLL:
2728 poll_state = HSM_ST_LAST_POLL;
2729 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 break;
2731 default:
2732 BUG();
2733 break;
2734 }
2735
2736 status = ata_chk_status(ap);
2737 if (status & ATA_BUSY) {
2738 if (time_after(jiffies, ap->pio_task_timeout)) {
Albert Lee14be71f2005-09-27 17:36:35 +08002739 ap->hsm_task_state = tmout_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 return 0;
2741 }
Albert Lee14be71f2005-09-27 17:36:35 +08002742 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 return ATA_SHORT_PAUSE;
2744 }
2745
Albert Lee14be71f2005-09-27 17:36:35 +08002746 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 return 0;
2748}
2749
2750/**
2751 * ata_pio_complete -
2752 * @ap:
2753 *
2754 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002755 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002756 *
2757 * RETURNS:
2758 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 */
2760
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002761static int ata_pio_complete (struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762{
2763 struct ata_queued_cmd *qc;
2764 u8 drv_stat;
2765
2766 /*
Alan Cox31433ea2005-08-26 15:56:47 +01002767 * This is purely heuristic. This is a fast path. Sometimes when
2768 * we enter, BSY will be cleared in a chk-status or two. If not,
2769 * the drive is probably seeking or something. Snooze for a couple
2770 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08002771 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 */
2773 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 10);
2774 if (drv_stat & (ATA_BUSY | ATA_DRQ)) {
2775 msleep(2);
2776 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 10);
2777 if (drv_stat & (ATA_BUSY | ATA_DRQ)) {
Albert Lee14be71f2005-09-27 17:36:35 +08002778 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002780 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 }
2782 }
2783
2784 drv_stat = ata_wait_idle(ap);
2785 if (!ata_ok(drv_stat)) {
Albert Lee14be71f2005-09-27 17:36:35 +08002786 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002787 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 }
2789
2790 qc = ata_qc_from_tag(ap, ap->active_tag);
2791 assert(qc != NULL);
2792
Albert Lee14be71f2005-09-27 17:36:35 +08002793 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Tejun Heo40e8c822005-08-22 17:12:45 +09002795 ata_poll_qc_complete(qc, drv_stat);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002796
2797 /* another command may start at this point */
2798
2799 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800}
2801
Edward Falk0baab862005-06-02 18:17:13 -04002802
2803/**
2804 * swap_buf_le16 -
2805 * @buf: Buffer to swap
2806 * @buf_words: Number of 16-bit words in buffer.
2807 *
2808 * Swap halves of 16-bit words if needed to convert from
2809 * little-endian byte order to native cpu byte order, or
2810 * vice-versa.
2811 *
2812 * LOCKING:
2813 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814void swap_buf_le16(u16 *buf, unsigned int buf_words)
2815{
2816#ifdef __BIG_ENDIAN
2817 unsigned int i;
2818
2819 for (i = 0; i < buf_words; i++)
2820 buf[i] = le16_to_cpu(buf[i]);
2821#endif /* __BIG_ENDIAN */
2822}
2823
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002824/**
2825 * ata_mmio_data_xfer - Transfer data by MMIO
2826 * @ap: port to read/write
2827 * @buf: data buffer
2828 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04002829 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002830 *
2831 * Transfer data from/to the device data register by MMIO.
2832 *
2833 * LOCKING:
2834 * Inherited from caller.
2835 *
2836 */
2837
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
2839 unsigned int buflen, int write_data)
2840{
2841 unsigned int i;
2842 unsigned int words = buflen >> 1;
2843 u16 *buf16 = (u16 *) buf;
2844 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
2845
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002846 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 if (write_data) {
2848 for (i = 0; i < words; i++)
2849 writew(le16_to_cpu(buf16[i]), mmio);
2850 } else {
2851 for (i = 0; i < words; i++)
2852 buf16[i] = cpu_to_le16(readw(mmio));
2853 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002854
2855 /* Transfer trailing 1 byte, if any. */
2856 if (unlikely(buflen & 0x01)) {
2857 u16 align_buf[1] = { 0 };
2858 unsigned char *trailing_buf = buf + buflen - 1;
2859
2860 if (write_data) {
2861 memcpy(align_buf, trailing_buf, 1);
2862 writew(le16_to_cpu(align_buf[0]), mmio);
2863 } else {
2864 align_buf[0] = cpu_to_le16(readw(mmio));
2865 memcpy(trailing_buf, align_buf, 1);
2866 }
2867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868}
2869
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002870/**
2871 * ata_pio_data_xfer - Transfer data by PIO
2872 * @ap: port to read/write
2873 * @buf: data buffer
2874 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04002875 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002876 *
2877 * Transfer data from/to the device data register by PIO.
2878 *
2879 * LOCKING:
2880 * Inherited from caller.
2881 *
2882 */
2883
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
2885 unsigned int buflen, int write_data)
2886{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002887 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002889 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002891 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002893 insw(ap->ioaddr.data_addr, buf, words);
2894
2895 /* Transfer trailing 1 byte, if any. */
2896 if (unlikely(buflen & 0x01)) {
2897 u16 align_buf[1] = { 0 };
2898 unsigned char *trailing_buf = buf + buflen - 1;
2899
2900 if (write_data) {
2901 memcpy(align_buf, trailing_buf, 1);
2902 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
2903 } else {
2904 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
2905 memcpy(trailing_buf, align_buf, 1);
2906 }
2907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908}
2909
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002910/**
2911 * ata_data_xfer - Transfer data from/to the data register.
2912 * @ap: port to read/write
2913 * @buf: data buffer
2914 * @buflen: buffer length
2915 * @do_write: read/write
2916 *
2917 * Transfer data from/to the device data register.
2918 *
2919 * LOCKING:
2920 * Inherited from caller.
2921 *
2922 */
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
2925 unsigned int buflen, int do_write)
2926{
2927 if (ap->flags & ATA_FLAG_MMIO)
2928 ata_mmio_data_xfer(ap, buf, buflen, do_write);
2929 else
2930 ata_pio_data_xfer(ap, buf, buflen, do_write);
2931}
2932
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002933/**
2934 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
2935 * @qc: Command on going
2936 *
2937 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
2938 *
2939 * LOCKING:
2940 * Inherited from caller.
2941 */
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943static void ata_pio_sector(struct ata_queued_cmd *qc)
2944{
2945 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
2946 struct scatterlist *sg = qc->sg;
2947 struct ata_port *ap = qc->ap;
2948 struct page *page;
2949 unsigned int offset;
2950 unsigned char *buf;
2951
2952 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08002953 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
2955 page = sg[qc->cursg].page;
2956 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
2957
2958 /* get the current page and offset */
2959 page = nth_page(page, (offset >> PAGE_SHIFT));
2960 offset %= PAGE_SIZE;
2961
2962 buf = kmap(page) + offset;
2963
2964 qc->cursect++;
2965 qc->cursg_ofs++;
2966
Albert Lee32529e02005-05-26 03:49:42 -04002967 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 qc->cursg++;
2969 qc->cursg_ofs = 0;
2970 }
2971
2972 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
2973
2974 /* do the actual data transfer */
2975 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
2976 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
2977
2978 kunmap(page);
2979}
2980
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002981/**
2982 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
2983 * @qc: Command on going
2984 * @bytes: number of bytes
2985 *
2986 * Transfer Transfer data from/to the ATAPI device.
2987 *
2988 * LOCKING:
2989 * Inherited from caller.
2990 *
2991 */
2992
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
2994{
2995 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
2996 struct scatterlist *sg = qc->sg;
2997 struct ata_port *ap = qc->ap;
2998 struct page *page;
2999 unsigned char *buf;
3000 unsigned int offset, count;
3001
Albert Lee563a6e12005-08-12 14:17:50 +08003002 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003003 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
3005next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003006 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003007 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003008 * The end of qc->sg is reached and the device expects
3009 * more data to transfer. In order not to overrun qc->sg
3010 * and fulfill length specified in the byte count register,
3011 * - for read case, discard trailing data from the device
3012 * - for write case, padding zero data to the device
3013 */
3014 u16 pad_buf[1] = { 0 };
3015 unsigned int words = bytes >> 1;
3016 unsigned int i;
3017
3018 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003019 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003020 ap->id, bytes);
3021
3022 for (i = 0; i < words; i++)
3023 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3024
Albert Lee14be71f2005-09-27 17:36:35 +08003025 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003026 return;
3027 }
3028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 sg = &qc->sg[qc->cursg];
3030
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 page = sg->page;
3032 offset = sg->offset + qc->cursg_ofs;
3033
3034 /* get the current page and offset */
3035 page = nth_page(page, (offset >> PAGE_SHIFT));
3036 offset %= PAGE_SIZE;
3037
Albert Lee6952df02005-06-06 15:56:03 +08003038 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003039 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
3041 /* don't cross page boundaries */
3042 count = min(count, (unsigned int)PAGE_SIZE - offset);
3043
3044 buf = kmap(page) + offset;
3045
3046 bytes -= count;
3047 qc->curbytes += count;
3048 qc->cursg_ofs += count;
3049
Albert Lee32529e02005-05-26 03:49:42 -04003050 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 qc->cursg++;
3052 qc->cursg_ofs = 0;
3053 }
3054
3055 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3056
3057 /* do the actual data transfer */
3058 ata_data_xfer(ap, buf, count, do_write);
3059
3060 kunmap(page);
3061
Albert Lee563a6e12005-08-12 14:17:50 +08003062 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064}
3065
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003066/**
3067 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3068 * @qc: Command on going
3069 *
3070 * Transfer Transfer data from/to the ATAPI device.
3071 *
3072 * LOCKING:
3073 * Inherited from caller.
3074 *
3075 */
3076
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3078{
3079 struct ata_port *ap = qc->ap;
3080 struct ata_device *dev = qc->dev;
3081 unsigned int ireason, bc_lo, bc_hi, bytes;
3082 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3083
3084 ap->ops->tf_read(ap, &qc->tf);
3085 ireason = qc->tf.nsect;
3086 bc_lo = qc->tf.lbam;
3087 bc_hi = qc->tf.lbah;
3088 bytes = (bc_hi << 8) | bc_lo;
3089
3090 /* shall be cleared to zero, indicating xfer of data */
3091 if (ireason & (1 << 0))
3092 goto err_out;
3093
3094 /* make sure transfer direction matches expected */
3095 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3096 if (do_write != i_write)
3097 goto err_out;
3098
3099 __atapi_pio_bytes(qc, bytes);
3100
3101 return;
3102
3103err_out:
3104 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3105 ap->id, dev->devno);
Albert Lee14be71f2005-09-27 17:36:35 +08003106 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107}
3108
3109/**
3110 * ata_pio_sector -
3111 * @ap:
3112 *
3113 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003114 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 */
3116
3117static void ata_pio_block(struct ata_port *ap)
3118{
3119 struct ata_queued_cmd *qc;
3120 u8 status;
3121
3122 /*
3123 * This is purely hueristic. This is a fast path.
3124 * Sometimes when we enter, BSY will be cleared in
3125 * a chk-status or two. If not, the drive is probably seeking
3126 * or something. Snooze for a couple msecs, then
3127 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003128 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 */
3130 status = ata_busy_wait(ap, ATA_BUSY, 5);
3131 if (status & ATA_BUSY) {
3132 msleep(2);
3133 status = ata_busy_wait(ap, ATA_BUSY, 10);
3134 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003135 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3137 return;
3138 }
3139 }
3140
3141 qc = ata_qc_from_tag(ap, ap->active_tag);
3142 assert(qc != NULL);
3143
3144 if (is_atapi_taskfile(&qc->tf)) {
3145 /* no more data to transfer or unsupported ATAPI command */
3146 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003147 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 return;
3149 }
3150
3151 atapi_pio_bytes(qc);
3152 } else {
3153 /* handle BSY=0, DRQ=0 as error */
3154 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003155 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 return;
3157 }
3158
3159 ata_pio_sector(qc);
3160 }
3161}
3162
3163static void ata_pio_error(struct ata_port *ap)
3164{
3165 struct ata_queued_cmd *qc;
3166 u8 drv_stat;
3167
3168 qc = ata_qc_from_tag(ap, ap->active_tag);
3169 assert(qc != NULL);
3170
3171 drv_stat = ata_chk_status(ap);
3172 printk(KERN_WARNING "ata%u: PIO error, drv_stat 0x%x\n",
3173 ap->id, drv_stat);
3174
Albert Lee14be71f2005-09-27 17:36:35 +08003175 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Tejun Heo40e8c822005-08-22 17:12:45 +09003177 ata_poll_qc_complete(qc, drv_stat | ATA_ERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178}
3179
3180static void ata_pio_task(void *_data)
3181{
3182 struct ata_port *ap = _data;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003183 unsigned long timeout;
3184 int qc_completed;
3185
3186fsm_start:
3187 timeout = 0;
3188 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Albert Lee14be71f2005-09-27 17:36:35 +08003190 switch (ap->hsm_task_state) {
3191 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 return;
3193
Albert Lee14be71f2005-09-27 17:36:35 +08003194 case HSM_ST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 ata_pio_block(ap);
3196 break;
3197
Albert Lee14be71f2005-09-27 17:36:35 +08003198 case HSM_ST_LAST:
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003199 qc_completed = ata_pio_complete(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 break;
3201
Albert Lee14be71f2005-09-27 17:36:35 +08003202 case HSM_ST_POLL:
3203 case HSM_ST_LAST_POLL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 timeout = ata_pio_poll(ap);
3205 break;
3206
Albert Lee14be71f2005-09-27 17:36:35 +08003207 case HSM_ST_TMOUT:
3208 case HSM_ST_ERR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 ata_pio_error(ap);
3210 return;
3211 }
3212
3213 if (timeout)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003214 queue_delayed_work(ata_wq, &ap->pio_task, timeout);
3215 else if (!qc_completed)
3216 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217}
3218
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219/**
3220 * ata_qc_timeout - Handle timeout of queued command
3221 * @qc: Command that timed out
3222 *
3223 * Some part of the kernel (currently, only the SCSI layer)
3224 * has noticed that the active command on port @ap has not
3225 * completed after a specified length of time. Handle this
3226 * condition by disabling DMA (if necessary) and completing
3227 * transactions, with error if necessary.
3228 *
3229 * This also handles the case of the "lost interrupt", where
3230 * for some reason (possibly hardware bug, possibly driver bug)
3231 * an interrupt was not delivered to the driver, even though the
3232 * transaction completed successfully.
3233 *
3234 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003235 * Inherited from SCSI layer (none, can sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 */
3237
3238static void ata_qc_timeout(struct ata_queued_cmd *qc)
3239{
3240 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003241 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 struct ata_device *dev = qc->dev;
3243 u8 host_stat = 0, drv_stat;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003244 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
3246 DPRINTK("ENTER\n");
3247
3248 /* FIXME: doesn't this conflict with timeout handling? */
3249 if (qc->dev->class == ATA_DEV_ATAPI && qc->scsicmd) {
3250 struct scsi_cmnd *cmd = qc->scsicmd;
3251
Christoph Hellwig3111b0d2005-06-19 13:43:26 +02003252 if (!(cmd->eh_eflags & SCSI_EH_CANCEL_CMD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
3254 /* finish completing original command */
Jeff Garzikb8f61532005-08-25 22:01:20 -04003255 spin_lock_irqsave(&host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 __ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003257 spin_unlock_irqrestore(&host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
3259 atapi_request_sense(ap, dev, cmd);
3260
3261 cmd->result = (CHECK_CONDITION << 1) | (DID_OK << 16);
3262 scsi_finish_command(cmd);
3263
3264 goto out;
3265 }
3266 }
3267
Jeff Garzikb8f61532005-08-25 22:01:20 -04003268 spin_lock_irqsave(&host_set->lock, flags);
3269
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 /* hack alert! We cannot use the supplied completion
3271 * function from inside the ->eh_strategy_handler() thread.
3272 * libata is the only user of ->eh_strategy_handler() in
3273 * any kernel, so the default scsi_done() assumes it is
3274 * not being called from the SCSI EH.
3275 */
3276 qc->scsidone = scsi_finish_command;
3277
3278 switch (qc->tf.protocol) {
3279
3280 case ATA_PROT_DMA:
3281 case ATA_PROT_ATAPI_DMA:
3282 host_stat = ap->ops->bmdma_status(ap);
3283
3284 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01003285 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286
3287 /* fall through */
3288
3289 default:
3290 ata_altstatus(ap);
3291 drv_stat = ata_chk_status(ap);
3292
3293 /* ack bmdma irq events */
3294 ap->ops->irq_clear(ap);
3295
3296 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x\n",
3297 ap->id, qc->tf.command, drv_stat, host_stat);
3298
3299 /* complete taskfile transaction */
3300 ata_qc_complete(qc, drv_stat);
3301 break;
3302 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04003303
3304 spin_unlock_irqrestore(&host_set->lock, flags);
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306out:
3307 DPRINTK("EXIT\n");
3308}
3309
3310/**
3311 * ata_eng_timeout - Handle timeout of queued command
3312 * @ap: Port on which timed-out command is active
3313 *
3314 * Some part of the kernel (currently, only the SCSI layer)
3315 * has noticed that the active command on port @ap has not
3316 * completed after a specified length of time. Handle this
3317 * condition by disabling DMA (if necessary) and completing
3318 * transactions, with error if necessary.
3319 *
3320 * This also handles the case of the "lost interrupt", where
3321 * for some reason (possibly hardware bug, possibly driver bug)
3322 * an interrupt was not delivered to the driver, even though the
3323 * transaction completed successfully.
3324 *
3325 * LOCKING:
3326 * Inherited from SCSI layer (none, can sleep)
3327 */
3328
3329void ata_eng_timeout(struct ata_port *ap)
3330{
3331 struct ata_queued_cmd *qc;
3332
3333 DPRINTK("ENTER\n");
3334
3335 qc = ata_qc_from_tag(ap, ap->active_tag);
Jeff Garzike12669e2005-10-05 18:39:23 -04003336 if (qc)
3337 ata_qc_timeout(qc);
3338 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
3340 ap->id);
3341 goto out;
3342 }
3343
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344out:
3345 DPRINTK("EXIT\n");
3346}
3347
3348/**
3349 * ata_qc_new - Request an available ATA command, for queueing
3350 * @ap: Port associated with device @dev
3351 * @dev: Device from whom we request an available command structure
3352 *
3353 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003354 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 */
3356
3357static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
3358{
3359 struct ata_queued_cmd *qc = NULL;
3360 unsigned int i;
3361
3362 for (i = 0; i < ATA_MAX_QUEUE; i++)
3363 if (!test_and_set_bit(i, &ap->qactive)) {
3364 qc = ata_qc_from_tag(ap, i);
3365 break;
3366 }
3367
3368 if (qc)
3369 qc->tag = i;
3370
3371 return qc;
3372}
3373
3374/**
3375 * ata_qc_new_init - Request an available ATA command, and initialize it
3376 * @ap: Port associated with device @dev
3377 * @dev: Device from whom we request an available command structure
3378 *
3379 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003380 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 */
3382
3383struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
3384 struct ata_device *dev)
3385{
3386 struct ata_queued_cmd *qc;
3387
3388 qc = ata_qc_new(ap);
3389 if (qc) {
3390 qc->sg = NULL;
3391 qc->flags = 0;
3392 qc->scsicmd = NULL;
3393 qc->ap = ap;
3394 qc->dev = dev;
3395 qc->cursect = qc->cursg = qc->cursg_ofs = 0;
3396 qc->nsect = 0;
3397 qc->nbytes = qc->curbytes = 0;
3398
3399 ata_tf_init(ap, &qc->tf, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 }
3401
3402 return qc;
3403}
3404
Jeff Garzika939c962005-10-05 17:09:16 -04003405int ata_qc_complete_noop(struct ata_queued_cmd *qc, u8 drv_stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
3407 return 0;
3408}
3409
3410static void __ata_qc_complete(struct ata_queued_cmd *qc)
3411{
3412 struct ata_port *ap = qc->ap;
3413 unsigned int tag, do_clear = 0;
3414
3415 qc->flags = 0;
3416 tag = qc->tag;
3417 if (likely(ata_tag_valid(tag))) {
3418 if (tag == ap->active_tag)
3419 ap->active_tag = ATA_TAG_POISON;
3420 qc->tag = ATA_TAG_POISON;
3421 do_clear = 1;
3422 }
3423
3424 if (qc->waiting) {
3425 struct completion *waiting = qc->waiting;
3426 qc->waiting = NULL;
3427 complete(waiting);
3428 }
3429
3430 if (likely(do_clear))
3431 clear_bit(tag, &ap->qactive);
3432}
3433
3434/**
3435 * ata_qc_free - free unused ata_queued_cmd
3436 * @qc: Command to complete
3437 *
3438 * Designed to free unused ata_queued_cmd object
3439 * in case something prevents using it.
3440 *
3441 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003442 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 *
3444 */
3445void ata_qc_free(struct ata_queued_cmd *qc)
3446{
3447 assert(qc != NULL); /* ata_qc_from_tag _might_ return NULL */
3448 assert(qc->waiting == NULL); /* nothing should be waiting */
3449
3450 __ata_qc_complete(qc);
3451}
3452
3453/**
3454 * ata_qc_complete - Complete an active ATA command
3455 * @qc: Command to complete
Jeff Garzik0cba6322005-05-30 19:49:12 -04003456 * @drv_stat: ATA Status register contents
3457 *
3458 * Indicate to the mid and upper layers that an ATA
3459 * command has completed, with either an ok or not-ok status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 *
3461 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003462 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 *
3464 */
3465
3466void ata_qc_complete(struct ata_queued_cmd *qc, u8 drv_stat)
3467{
3468 int rc;
3469
3470 assert(qc != NULL); /* ata_qc_from_tag _might_ return NULL */
3471 assert(qc->flags & ATA_QCFLAG_ACTIVE);
3472
3473 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
3474 ata_sg_clean(qc);
3475
Albert Lee3f3791d2005-08-16 14:25:38 +08003476 /* atapi: mark qc as inactive to prevent the interrupt handler
3477 * from completing the command twice later, before the error handler
3478 * is called. (when rc != 0 and atapi request sense is needed)
3479 */
3480 qc->flags &= ~ATA_QCFLAG_ACTIVE;
3481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 /* call completion callback */
3483 rc = qc->complete_fn(qc, drv_stat);
3484
3485 /* if callback indicates not to complete command (non-zero),
3486 * return immediately
3487 */
3488 if (rc != 0)
3489 return;
3490
3491 __ata_qc_complete(qc);
3492
3493 VPRINTK("EXIT\n");
3494}
3495
3496static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
3497{
3498 struct ata_port *ap = qc->ap;
3499
3500 switch (qc->tf.protocol) {
3501 case ATA_PROT_DMA:
3502 case ATA_PROT_ATAPI_DMA:
3503 return 1;
3504
3505 case ATA_PROT_ATAPI:
3506 case ATA_PROT_PIO:
3507 case ATA_PROT_PIO_MULT:
3508 if (ap->flags & ATA_FLAG_PIO_DMA)
3509 return 1;
3510
3511 /* fall through */
3512
3513 default:
3514 return 0;
3515 }
3516
3517 /* never reached */
3518}
3519
3520/**
3521 * ata_qc_issue - issue taskfile to device
3522 * @qc: command to issue to device
3523 *
3524 * Prepare an ATA command to submission to device.
3525 * This includes mapping the data into a DMA-able
3526 * area, filling in the S/G table, and finally
3527 * writing the taskfile to hardware, starting the command.
3528 *
3529 * LOCKING:
3530 * spin_lock_irqsave(host_set lock)
3531 *
3532 * RETURNS:
3533 * Zero on success, negative on error.
3534 */
3535
3536int ata_qc_issue(struct ata_queued_cmd *qc)
3537{
3538 struct ata_port *ap = qc->ap;
3539
3540 if (ata_should_dma_map(qc)) {
3541 if (qc->flags & ATA_QCFLAG_SG) {
3542 if (ata_sg_setup(qc))
3543 goto err_out;
3544 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
3545 if (ata_sg_setup_one(qc))
3546 goto err_out;
3547 }
3548 } else {
3549 qc->flags &= ~ATA_QCFLAG_DMAMAP;
3550 }
3551
3552 ap->ops->qc_prep(qc);
3553
3554 qc->ap->active_tag = qc->tag;
3555 qc->flags |= ATA_QCFLAG_ACTIVE;
3556
3557 return ap->ops->qc_issue(qc);
3558
3559err_out:
3560 return -1;
3561}
3562
Edward Falk0baab862005-06-02 18:17:13 -04003563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564/**
3565 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
3566 * @qc: command to issue to device
3567 *
3568 * Using various libata functions and hooks, this function
3569 * starts an ATA command. ATA commands are grouped into
3570 * classes called "protocols", and issuing each type of protocol
3571 * is slightly different.
3572 *
Edward Falk0baab862005-06-02 18:17:13 -04003573 * May be used as the qc_issue() entry in ata_port_operations.
3574 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 * LOCKING:
3576 * spin_lock_irqsave(host_set lock)
3577 *
3578 * RETURNS:
3579 * Zero on success, negative on error.
3580 */
3581
3582int ata_qc_issue_prot(struct ata_queued_cmd *qc)
3583{
3584 struct ata_port *ap = qc->ap;
3585
3586 ata_dev_select(ap, qc->dev->devno, 1, 0);
3587
3588 switch (qc->tf.protocol) {
3589 case ATA_PROT_NODATA:
3590 ata_tf_to_host_nolock(ap, &qc->tf);
3591 break;
3592
3593 case ATA_PROT_DMA:
3594 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
3595 ap->ops->bmdma_setup(qc); /* set up bmdma */
3596 ap->ops->bmdma_start(qc); /* initiate bmdma */
3597 break;
3598
3599 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
3600 ata_qc_set_polling(qc);
3601 ata_tf_to_host_nolock(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08003602 ap->hsm_task_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 queue_work(ata_wq, &ap->pio_task);
3604 break;
3605
3606 case ATA_PROT_ATAPI:
3607 ata_qc_set_polling(qc);
3608 ata_tf_to_host_nolock(ap, &qc->tf);
3609 queue_work(ata_wq, &ap->packet_task);
3610 break;
3611
3612 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09003613 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 ata_tf_to_host_nolock(ap, &qc->tf);
3615 queue_work(ata_wq, &ap->packet_task);
3616 break;
3617
3618 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09003619 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
3621 ap->ops->bmdma_setup(qc); /* set up bmdma */
3622 queue_work(ata_wq, &ap->packet_task);
3623 break;
3624
3625 default:
3626 WARN_ON(1);
3627 return -1;
3628 }
3629
3630 return 0;
3631}
3632
3633/**
Edward Falk0baab862005-06-02 18:17:13 -04003634 * ata_bmdma_setup_mmio - Set up PCI IDE BMDMA transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 * @qc: Info associated with this ATA transaction.
3636 *
3637 * LOCKING:
3638 * spin_lock_irqsave(host_set lock)
3639 */
3640
3641static void ata_bmdma_setup_mmio (struct ata_queued_cmd *qc)
3642{
3643 struct ata_port *ap = qc->ap;
3644 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
3645 u8 dmactl;
3646 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3647
3648 /* load PRD table addr. */
3649 mb(); /* make sure PRD table writes are visible to controller */
3650 writel(ap->prd_dma, mmio + ATA_DMA_TABLE_OFS);
3651
3652 /* specify data direction, triple-check start bit is clear */
3653 dmactl = readb(mmio + ATA_DMA_CMD);
3654 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
3655 if (!rw)
3656 dmactl |= ATA_DMA_WR;
3657 writeb(dmactl, mmio + ATA_DMA_CMD);
3658
3659 /* issue r/w command */
3660 ap->ops->exec_command(ap, &qc->tf);
3661}
3662
3663/**
Alan Coxb73fc892005-08-26 16:03:19 +01003664 * ata_bmdma_start_mmio - Start a PCI IDE BMDMA transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 * @qc: Info associated with this ATA transaction.
3666 *
3667 * LOCKING:
3668 * spin_lock_irqsave(host_set lock)
3669 */
3670
3671static void ata_bmdma_start_mmio (struct ata_queued_cmd *qc)
3672{
3673 struct ata_port *ap = qc->ap;
3674 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3675 u8 dmactl;
3676
3677 /* start host DMA transaction */
3678 dmactl = readb(mmio + ATA_DMA_CMD);
3679 writeb(dmactl | ATA_DMA_START, mmio + ATA_DMA_CMD);
3680
3681 /* Strictly, one may wish to issue a readb() here, to
3682 * flush the mmio write. However, control also passes
3683 * to the hardware at this point, and it will interrupt
3684 * us when we are to resume control. So, in effect,
3685 * we don't care when the mmio write flushes.
3686 * Further, a read of the DMA status register _immediately_
3687 * following the write may not be what certain flaky hardware
3688 * is expected, so I think it is best to not add a readb()
3689 * without first all the MMIO ATA cards/mobos.
3690 * Or maybe I'm just being paranoid.
3691 */
3692}
3693
3694/**
3695 * ata_bmdma_setup_pio - Set up PCI IDE BMDMA transaction (PIO)
3696 * @qc: Info associated with this ATA transaction.
3697 *
3698 * LOCKING:
3699 * spin_lock_irqsave(host_set lock)
3700 */
3701
3702static void ata_bmdma_setup_pio (struct ata_queued_cmd *qc)
3703{
3704 struct ata_port *ap = qc->ap;
3705 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
3706 u8 dmactl;
3707
3708 /* load PRD table addr. */
3709 outl(ap->prd_dma, ap->ioaddr.bmdma_addr + ATA_DMA_TABLE_OFS);
3710
3711 /* specify data direction, triple-check start bit is clear */
3712 dmactl = inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3713 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
3714 if (!rw)
3715 dmactl |= ATA_DMA_WR;
3716 outb(dmactl, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3717
3718 /* issue r/w command */
3719 ap->ops->exec_command(ap, &qc->tf);
3720}
3721
3722/**
3723 * ata_bmdma_start_pio - Start a PCI IDE BMDMA transaction (PIO)
3724 * @qc: Info associated with this ATA transaction.
3725 *
3726 * LOCKING:
3727 * spin_lock_irqsave(host_set lock)
3728 */
3729
3730static void ata_bmdma_start_pio (struct ata_queued_cmd *qc)
3731{
3732 struct ata_port *ap = qc->ap;
3733 u8 dmactl;
3734
3735 /* start host DMA transaction */
3736 dmactl = inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3737 outb(dmactl | ATA_DMA_START,
3738 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3739}
3740
Edward Falk0baab862005-06-02 18:17:13 -04003741
3742/**
3743 * ata_bmdma_start - Start a PCI IDE BMDMA transaction
3744 * @qc: Info associated with this ATA transaction.
3745 *
3746 * Writes the ATA_DMA_START flag to the DMA command register.
3747 *
3748 * May be used as the bmdma_start() entry in ata_port_operations.
3749 *
3750 * LOCKING:
3751 * spin_lock_irqsave(host_set lock)
3752 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753void ata_bmdma_start(struct ata_queued_cmd *qc)
3754{
3755 if (qc->ap->flags & ATA_FLAG_MMIO)
3756 ata_bmdma_start_mmio(qc);
3757 else
3758 ata_bmdma_start_pio(qc);
3759}
3760
Edward Falk0baab862005-06-02 18:17:13 -04003761
3762/**
3763 * ata_bmdma_setup - Set up PCI IDE BMDMA transaction
3764 * @qc: Info associated with this ATA transaction.
3765 *
3766 * Writes address of PRD table to device's PRD Table Address
3767 * register, sets the DMA control register, and calls
3768 * ops->exec_command() to start the transfer.
3769 *
3770 * May be used as the bmdma_setup() entry in ata_port_operations.
3771 *
3772 * LOCKING:
3773 * spin_lock_irqsave(host_set lock)
3774 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775void ata_bmdma_setup(struct ata_queued_cmd *qc)
3776{
3777 if (qc->ap->flags & ATA_FLAG_MMIO)
3778 ata_bmdma_setup_mmio(qc);
3779 else
3780 ata_bmdma_setup_pio(qc);
3781}
3782
Edward Falk0baab862005-06-02 18:17:13 -04003783
3784/**
3785 * ata_bmdma_irq_clear - Clear PCI IDE BMDMA interrupt.
Jeff Garzikdecc6d02005-06-02 18:42:33 -04003786 * @ap: Port associated with this ATA transaction.
Edward Falk0baab862005-06-02 18:17:13 -04003787 *
3788 * Clear interrupt and error flags in DMA status register.
3789 *
3790 * May be used as the irq_clear() entry in ata_port_operations.
3791 *
3792 * LOCKING:
3793 * spin_lock_irqsave(host_set lock)
3794 */
3795
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796void ata_bmdma_irq_clear(struct ata_port *ap)
3797{
3798 if (ap->flags & ATA_FLAG_MMIO) {
3799 void __iomem *mmio = ((void __iomem *) ap->ioaddr.bmdma_addr) + ATA_DMA_STATUS;
3800 writeb(readb(mmio), mmio);
3801 } else {
3802 unsigned long addr = ap->ioaddr.bmdma_addr + ATA_DMA_STATUS;
3803 outb(inb(addr), addr);
3804 }
3805
3806}
3807
Edward Falk0baab862005-06-02 18:17:13 -04003808
3809/**
3810 * ata_bmdma_status - Read PCI IDE BMDMA status
Jeff Garzikdecc6d02005-06-02 18:42:33 -04003811 * @ap: Port associated with this ATA transaction.
Edward Falk0baab862005-06-02 18:17:13 -04003812 *
3813 * Read and return BMDMA status register.
3814 *
3815 * May be used as the bmdma_status() entry in ata_port_operations.
3816 *
3817 * LOCKING:
3818 * spin_lock_irqsave(host_set lock)
3819 */
3820
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821u8 ata_bmdma_status(struct ata_port *ap)
3822{
3823 u8 host_stat;
3824 if (ap->flags & ATA_FLAG_MMIO) {
3825 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3826 host_stat = readb(mmio + ATA_DMA_STATUS);
3827 } else
Albert Leeee500aa2005-09-27 17:34:38 +08003828 host_stat = inb(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 return host_stat;
3830}
3831
Edward Falk0baab862005-06-02 18:17:13 -04003832
3833/**
3834 * ata_bmdma_stop - Stop PCI IDE BMDMA transfer
Alan Coxb73fc892005-08-26 16:03:19 +01003835 * @qc: Command we are ending DMA for
Edward Falk0baab862005-06-02 18:17:13 -04003836 *
3837 * Clears the ATA_DMA_START flag in the dma control register
3838 *
3839 * May be used as the bmdma_stop() entry in ata_port_operations.
3840 *
3841 * LOCKING:
3842 * spin_lock_irqsave(host_set lock)
3843 */
3844
Alan Coxb73fc892005-08-26 16:03:19 +01003845void ata_bmdma_stop(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846{
Alan Coxb73fc892005-08-26 16:03:19 +01003847 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 if (ap->flags & ATA_FLAG_MMIO) {
3849 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3850
3851 /* clear start/stop bit */
3852 writeb(readb(mmio + ATA_DMA_CMD) & ~ATA_DMA_START,
3853 mmio + ATA_DMA_CMD);
3854 } else {
3855 /* clear start/stop bit */
3856 outb(inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD) & ~ATA_DMA_START,
3857 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3858 }
3859
3860 /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
3861 ata_altstatus(ap); /* dummy read */
3862}
3863
3864/**
3865 * ata_host_intr - Handle host interrupt for given (port, task)
3866 * @ap: Port on which interrupt arrived (possibly...)
3867 * @qc: Taskfile currently active in engine
3868 *
3869 * Handle host interrupt for given queued command. Currently,
3870 * only DMA interrupts are handled. All other commands are
3871 * handled via polling with interrupts disabled (nIEN bit).
3872 *
3873 * LOCKING:
3874 * spin_lock_irqsave(host_set lock)
3875 *
3876 * RETURNS:
3877 * One if interrupt was handled, zero if not (shared irq).
3878 */
3879
3880inline unsigned int ata_host_intr (struct ata_port *ap,
3881 struct ata_queued_cmd *qc)
3882{
3883 u8 status, host_stat;
3884
3885 switch (qc->tf.protocol) {
3886
3887 case ATA_PROT_DMA:
3888 case ATA_PROT_ATAPI_DMA:
3889 case ATA_PROT_ATAPI:
3890 /* check status of DMA engine */
3891 host_stat = ap->ops->bmdma_status(ap);
3892 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
3893
3894 /* if it's not our irq... */
3895 if (!(host_stat & ATA_DMA_INTR))
3896 goto idle_irq;
3897
3898 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01003899 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
3901 /* fall through */
3902
3903 case ATA_PROT_ATAPI_NODATA:
3904 case ATA_PROT_NODATA:
3905 /* check altstatus */
3906 status = ata_altstatus(ap);
3907 if (status & ATA_BUSY)
3908 goto idle_irq;
3909
3910 /* check main status, clearing INTRQ */
3911 status = ata_chk_status(ap);
3912 if (unlikely(status & ATA_BUSY))
3913 goto idle_irq;
3914 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
3915 ap->id, qc->tf.protocol, status);
3916
3917 /* ack bmdma irq events */
3918 ap->ops->irq_clear(ap);
3919
3920 /* complete taskfile transaction */
3921 ata_qc_complete(qc, status);
3922 break;
3923
3924 default:
3925 goto idle_irq;
3926 }
3927
3928 return 1; /* irq handled */
3929
3930idle_irq:
3931 ap->stats.idle_irq++;
3932
3933#ifdef ATA_IRQ_TRAP
3934 if ((ap->stats.idle_irq % 1000) == 0) {
3935 handled = 1;
3936 ata_irq_ack(ap, 0); /* debug trap */
3937 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
3938 }
3939#endif
3940 return 0; /* irq not handled */
3941}
3942
3943/**
3944 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04003945 * @irq: irq line (unused)
3946 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 * @regs: unused
3948 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04003949 * Default interrupt handler for PCI IDE devices. Calls
3950 * ata_host_intr() for each port that is not disabled.
3951 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003953 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 *
3955 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003956 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 *
3958 */
3959
3960irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
3961{
3962 struct ata_host_set *host_set = dev_instance;
3963 unsigned int i;
3964 unsigned int handled = 0;
3965 unsigned long flags;
3966
3967 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
3968 spin_lock_irqsave(&host_set->lock, flags);
3969
3970 for (i = 0; i < host_set->n_ports; i++) {
3971 struct ata_port *ap;
3972
3973 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09003974 if (ap &&
3975 !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 struct ata_queued_cmd *qc;
3977
3978 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08003979 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
3980 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 handled |= ata_host_intr(ap, qc);
3982 }
3983 }
3984
3985 spin_unlock_irqrestore(&host_set->lock, flags);
3986
3987 return IRQ_RETVAL(handled);
3988}
3989
3990/**
3991 * atapi_packet_task - Write CDB bytes to hardware
3992 * @_data: Port to which ATAPI device is attached.
3993 *
3994 * When device has indicated its readiness to accept
3995 * a CDB, this function is called. Send the CDB.
3996 * If DMA is to be performed, exit immediately.
3997 * Otherwise, we are in polling mode, so poll
3998 * status under operation succeeds or fails.
3999 *
4000 * LOCKING:
4001 * Kernel thread context (may sleep)
4002 */
4003
4004static void atapi_packet_task(void *_data)
4005{
4006 struct ata_port *ap = _data;
4007 struct ata_queued_cmd *qc;
4008 u8 status;
4009
4010 qc = ata_qc_from_tag(ap, ap->active_tag);
4011 assert(qc != NULL);
4012 assert(qc->flags & ATA_QCFLAG_ACTIVE);
4013
4014 /* sleep-wait for BSY to clear */
4015 DPRINTK("busy wait\n");
4016 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB))
4017 goto err_out;
4018
4019 /* make sure DRQ is set */
4020 status = ata_chk_status(ap);
4021 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ)
4022 goto err_out;
4023
4024 /* send SCSI cdb */
4025 DPRINTK("send cdb\n");
4026 assert(ap->cdb_len >= 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Tejun Heoc1389502005-08-22 14:59:24 +09004028 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
4029 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
4030 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Tejun Heoc1389502005-08-22 14:59:24 +09004032 /* Once we're done issuing command and kicking bmdma,
4033 * irq handler takes over. To not lose irq, we need
4034 * to clear NOINTR flag before sending cdb, but
4035 * interrupt handler shouldn't be invoked before we're
4036 * finished. Hence, the following locking.
4037 */
4038 spin_lock_irqsave(&ap->host_set->lock, flags);
4039 ap->flags &= ~ATA_FLAG_NOINTR;
4040 ata_data_xfer(ap, qc->cdb, ap->cdb_len, 1);
4041 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
4042 ap->ops->bmdma_start(qc); /* initiate bmdma */
4043 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4044 } else {
4045 ata_data_xfer(ap, qc->cdb, ap->cdb_len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046
Tejun Heoc1389502005-08-22 14:59:24 +09004047 /* PIO commands are handled by polling */
Albert Lee14be71f2005-09-27 17:36:35 +08004048 ap->hsm_task_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 queue_work(ata_wq, &ap->pio_task);
4050 }
4051
4052 return;
4053
4054err_out:
Tejun Heo40e8c822005-08-22 17:12:45 +09004055 ata_poll_qc_complete(qc, ATA_ERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056}
4057
Edward Falk0baab862005-06-02 18:17:13 -04004058
4059/**
4060 * ata_port_start - Set port up for dma.
4061 * @ap: Port to initialize
4062 *
4063 * Called just after data structures for each port are
4064 * initialized. Allocates space for PRD table.
4065 *
4066 * May be used as the port_start() entry in ata_port_operations.
4067 *
4068 * LOCKING:
4069 */
4070
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071int ata_port_start (struct ata_port *ap)
4072{
4073 struct device *dev = ap->host_set->dev;
4074
4075 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4076 if (!ap->prd)
4077 return -ENOMEM;
4078
4079 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4080
4081 return 0;
4082}
4083
Edward Falk0baab862005-06-02 18:17:13 -04004084
4085/**
4086 * ata_port_stop - Undo ata_port_start()
4087 * @ap: Port to shut down
4088 *
4089 * Frees the PRD table.
4090 *
4091 * May be used as the port_stop() entry in ata_port_operations.
4092 *
4093 * LOCKING:
4094 */
4095
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096void ata_port_stop (struct ata_port *ap)
4097{
4098 struct device *dev = ap->host_set->dev;
4099
4100 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
4101}
4102
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004103void ata_host_stop (struct ata_host_set *host_set)
4104{
4105 if (host_set->mmio_base)
4106 iounmap(host_set->mmio_base);
4107}
4108
4109
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110/**
4111 * ata_host_remove - Unregister SCSI host structure with upper layers
4112 * @ap: Port to unregister
4113 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4114 *
4115 * LOCKING:
4116 */
4117
4118static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4119{
4120 struct Scsi_Host *sh = ap->host;
4121
4122 DPRINTK("ENTER\n");
4123
4124 if (do_unregister)
4125 scsi_remove_host(sh);
4126
4127 ap->ops->port_stop(ap);
4128}
4129
4130/**
4131 * ata_host_init - Initialize an ata_port structure
4132 * @ap: Structure to initialize
4133 * @host: associated SCSI mid-layer structure
4134 * @host_set: Collection of hosts to which @ap belongs
4135 * @ent: Probe information provided by low-level driver
4136 * @port_no: Port number associated with this ata_port
4137 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004138 * Initialize a new ata_port structure, and its associated
4139 * scsi_host.
4140 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004142 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 *
4144 */
4145
4146static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4147 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004148 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149{
4150 unsigned int i;
4151
4152 host->max_id = 16;
4153 host->max_lun = 1;
4154 host->max_channel = 1;
4155 host->unique_id = ata_unique_id++;
4156 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004157
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 scsi_assign_lock(host, &host_set->lock);
4159
4160 ap->flags = ATA_FLAG_PORT_DISABLED;
4161 ap->id = host->unique_id;
4162 ap->host = host;
4163 ap->ctl = ATA_DEVCTL_OBS;
4164 ap->host_set = host_set;
4165 ap->port_no = port_no;
4166 ap->hard_port_no =
4167 ent->legacy_mode ? ent->hard_port_no : port_no;
4168 ap->pio_mask = ent->pio_mask;
4169 ap->mwdma_mask = ent->mwdma_mask;
4170 ap->udma_mask = ent->udma_mask;
4171 ap->flags |= ent->host_flags;
4172 ap->ops = ent->port_ops;
4173 ap->cbl = ATA_CBL_NONE;
4174 ap->active_tag = ATA_TAG_POISON;
4175 ap->last_ctl = 0xFF;
4176
4177 INIT_WORK(&ap->packet_task, atapi_packet_task, ap);
4178 INIT_WORK(&ap->pio_task, ata_pio_task, ap);
4179
4180 for (i = 0; i < ATA_MAX_DEVICES; i++)
4181 ap->device[i].devno = i;
4182
4183#ifdef ATA_IRQ_TRAP
4184 ap->stats.unhandled_irq = 1;
4185 ap->stats.idle_irq = 1;
4186#endif
4187
4188 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4189}
4190
4191/**
4192 * ata_host_add - Attach low-level ATA driver to system
4193 * @ent: Information provided by low-level driver
4194 * @host_set: Collections of ports to which we add
4195 * @port_no: Port number associated with this host
4196 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004197 * Attach low-level ATA driver to system.
4198 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004200 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 *
4202 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004203 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 *
4205 */
4206
Jeff Garzik057ace52005-10-22 14:27:05 -04004207static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 struct ata_host_set *host_set,
4209 unsigned int port_no)
4210{
4211 struct Scsi_Host *host;
4212 struct ata_port *ap;
4213 int rc;
4214
4215 DPRINTK("ENTER\n");
4216 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4217 if (!host)
4218 return NULL;
4219
4220 ap = (struct ata_port *) &host->hostdata[0];
4221
4222 ata_host_init(ap, host, host_set, ent, port_no);
4223
4224 rc = ap->ops->port_start(ap);
4225 if (rc)
4226 goto err_out;
4227
4228 return ap;
4229
4230err_out:
4231 scsi_host_put(host);
4232 return NULL;
4233}
4234
4235/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004236 * ata_device_add - Register hardware device with ATA and SCSI layers
4237 * @ent: Probe information describing hardware device to be registered
4238 *
4239 * This function processes the information provided in the probe
4240 * information struct @ent, allocates the necessary ATA and SCSI
4241 * host information structures, initializes them, and registers
4242 * everything with requisite kernel subsystems.
4243 *
4244 * This function requests irqs, probes the ATA bus, and probes
4245 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 *
4247 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004248 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 *
4250 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004251 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 *
4253 */
4254
Jeff Garzik057ace52005-10-22 14:27:05 -04004255int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256{
4257 unsigned int count = 0, i;
4258 struct device *dev = ent->dev;
4259 struct ata_host_set *host_set;
4260
4261 DPRINTK("ENTER\n");
4262 /* alloc a container for our list of ATA ports (buses) */
4263 host_set = kmalloc(sizeof(struct ata_host_set) +
4264 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4265 if (!host_set)
4266 return 0;
4267 memset(host_set, 0, sizeof(struct ata_host_set) + (ent->n_ports * sizeof(void *)));
4268 spin_lock_init(&host_set->lock);
4269
4270 host_set->dev = dev;
4271 host_set->n_ports = ent->n_ports;
4272 host_set->irq = ent->irq;
4273 host_set->mmio_base = ent->mmio_base;
4274 host_set->private_data = ent->private_data;
4275 host_set->ops = ent->port_ops;
4276
4277 /* register each port bound to this device */
4278 for (i = 0; i < ent->n_ports; i++) {
4279 struct ata_port *ap;
4280 unsigned long xfer_mode_mask;
4281
4282 ap = ata_host_add(ent, host_set, i);
4283 if (!ap)
4284 goto err_out;
4285
4286 host_set->ports[i] = ap;
4287 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4288 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4289 (ap->pio_mask << ATA_SHIFT_PIO);
4290
4291 /* print per-port info to dmesg */
4292 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4293 "bmdma 0x%lX irq %lu\n",
4294 ap->id,
4295 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4296 ata_mode_string(xfer_mode_mask),
4297 ap->ioaddr.cmd_addr,
4298 ap->ioaddr.ctl_addr,
4299 ap->ioaddr.bmdma_addr,
4300 ent->irq);
4301
4302 ata_chk_status(ap);
4303 host_set->ops->irq_clear(ap);
4304 count++;
4305 }
4306
4307 if (!count) {
4308 kfree(host_set);
4309 return 0;
4310 }
4311
4312 /* obtain irq, that is shared between channels */
4313 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4314 DRV_NAME, host_set))
4315 goto err_out;
4316
4317 /* perform each probe synchronously */
4318 DPRINTK("probe begin\n");
4319 for (i = 0; i < count; i++) {
4320 struct ata_port *ap;
4321 int rc;
4322
4323 ap = host_set->ports[i];
4324
4325 DPRINTK("ata%u: probe begin\n", ap->id);
4326 rc = ata_bus_probe(ap);
4327 DPRINTK("ata%u: probe end\n", ap->id);
4328
4329 if (rc) {
4330 /* FIXME: do something useful here?
4331 * Current libata behavior will
4332 * tear down everything when
4333 * the module is removed
4334 * or the h/w is unplugged.
4335 */
4336 }
4337
4338 rc = scsi_add_host(ap->host, dev);
4339 if (rc) {
4340 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4341 ap->id);
4342 /* FIXME: do something useful here */
4343 /* FIXME: handle unconditional calls to
4344 * scsi_scan_host and ata_host_remove, below,
4345 * at the very least
4346 */
4347 }
4348 }
4349
4350 /* probes are done, now scan each port's disk(s) */
4351 DPRINTK("probe begin\n");
4352 for (i = 0; i < count; i++) {
4353 struct ata_port *ap = host_set->ports[i];
4354
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004355 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 }
4357
4358 dev_set_drvdata(dev, host_set);
4359
4360 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4361 return ent->n_ports; /* success */
4362
4363err_out:
4364 for (i = 0; i < count; i++) {
4365 ata_host_remove(host_set->ports[i], 1);
4366 scsi_host_put(host_set->ports[i]->host);
4367 }
4368 kfree(host_set);
4369 VPRINTK("EXIT, returning 0\n");
4370 return 0;
4371}
4372
4373/**
Alan Cox17b14452005-09-15 15:44:00 +01004374 * ata_host_set_remove - PCI layer callback for device removal
4375 * @host_set: ATA host set that was removed
4376 *
4377 * Unregister all objects associated with this host set. Free those
4378 * objects.
4379 *
4380 * LOCKING:
4381 * Inherited from calling layer (may sleep).
4382 */
4383
4384
4385void ata_host_set_remove(struct ata_host_set *host_set)
4386{
4387 struct ata_port *ap;
4388 unsigned int i;
4389
4390 for (i = 0; i < host_set->n_ports; i++) {
4391 ap = host_set->ports[i];
4392 scsi_remove_host(ap->host);
4393 }
4394
4395 free_irq(host_set->irq, host_set);
4396
4397 for (i = 0; i < host_set->n_ports; i++) {
4398 ap = host_set->ports[i];
4399
4400 ata_scsi_release(ap->host);
4401
4402 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4403 struct ata_ioports *ioaddr = &ap->ioaddr;
4404
4405 if (ioaddr->cmd_addr == 0x1f0)
4406 release_region(0x1f0, 8);
4407 else if (ioaddr->cmd_addr == 0x170)
4408 release_region(0x170, 8);
4409 }
4410
4411 scsi_host_put(ap->host);
4412 }
4413
4414 if (host_set->ops->host_stop)
4415 host_set->ops->host_stop(host_set);
4416
4417 kfree(host_set);
4418}
4419
4420/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 * ata_scsi_release - SCSI layer callback hook for host unload
4422 * @host: libata host to be unloaded
4423 *
4424 * Performs all duties necessary to shut down a libata port...
4425 * Kill port kthread, disable port, and release resources.
4426 *
4427 * LOCKING:
4428 * Inherited from SCSI layer.
4429 *
4430 * RETURNS:
4431 * One.
4432 */
4433
4434int ata_scsi_release(struct Scsi_Host *host)
4435{
4436 struct ata_port *ap = (struct ata_port *) &host->hostdata[0];
4437
4438 DPRINTK("ENTER\n");
4439
4440 ap->ops->port_disable(ap);
4441 ata_host_remove(ap, 0);
4442
4443 DPRINTK("EXIT\n");
4444 return 1;
4445}
4446
4447/**
4448 * ata_std_ports - initialize ioaddr with standard port offsets.
4449 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04004450 *
4451 * Utility function which initializes data_addr, error_addr,
4452 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4453 * device_addr, status_addr, and command_addr to standard offsets
4454 * relative to cmd_addr.
4455 *
4456 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 */
Edward Falk0baab862005-06-02 18:17:13 -04004458
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459void ata_std_ports(struct ata_ioports *ioaddr)
4460{
4461 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4462 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4463 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4464 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4465 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4466 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4467 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4468 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4469 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
4470 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
4471}
4472
4473static struct ata_probe_ent *
Jeff Garzik057ace52005-10-22 14:27:05 -04004474ata_probe_ent_alloc(struct device *dev, const struct ata_port_info *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475{
4476 struct ata_probe_ent *probe_ent;
4477
4478 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
4479 if (!probe_ent) {
4480 printk(KERN_ERR DRV_NAME "(%s): out of memory\n",
4481 kobject_name(&(dev->kobj)));
4482 return NULL;
4483 }
4484
4485 memset(probe_ent, 0, sizeof(*probe_ent));
4486
4487 INIT_LIST_HEAD(&probe_ent->node);
4488 probe_ent->dev = dev;
4489
4490 probe_ent->sht = port->sht;
4491 probe_ent->host_flags = port->host_flags;
4492 probe_ent->pio_mask = port->pio_mask;
4493 probe_ent->mwdma_mask = port->mwdma_mask;
4494 probe_ent->udma_mask = port->udma_mask;
4495 probe_ent->port_ops = port->port_ops;
4496
4497 return probe_ent;
4498}
4499
Edward Falk0baab862005-06-02 18:17:13 -04004500
4501
Jeff Garzik374b1872005-08-30 05:42:52 -04004502#ifdef CONFIG_PCI
4503
4504void ata_pci_host_stop (struct ata_host_set *host_set)
4505{
4506 struct pci_dev *pdev = to_pci_dev(host_set->dev);
4507
4508 pci_iounmap(pdev, host_set->mmio_base);
4509}
4510
Edward Falk0baab862005-06-02 18:17:13 -04004511/**
4512 * ata_pci_init_native_mode - Initialize native-mode driver
4513 * @pdev: pci device to be initialized
4514 * @port: array[2] of pointers to port info structures.
Alan Cox47a86592005-10-04 08:09:19 -04004515 * @ports: bitmap of ports present
Edward Falk0baab862005-06-02 18:17:13 -04004516 *
4517 * Utility function which allocates and initializes an
4518 * ata_probe_ent structure for a standard dual-port
4519 * PIO-based IDE controller. The returned ata_probe_ent
4520 * structure can be passed to ata_device_add(). The returned
4521 * ata_probe_ent structure should then be freed with kfree().
Alan Cox47a86592005-10-04 08:09:19 -04004522 *
4523 * The caller need only pass the address of the primary port, the
4524 * secondary will be deduced automatically. If the device has non
4525 * standard secondary port mappings this function can be called twice,
4526 * once for each interface.
Edward Falk0baab862005-06-02 18:17:13 -04004527 */
4528
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529struct ata_probe_ent *
Alan Cox47a86592005-10-04 08:09:19 -04004530ata_pci_init_native_mode(struct pci_dev *pdev, struct ata_port_info **port, int ports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531{
4532 struct ata_probe_ent *probe_ent =
4533 ata_probe_ent_alloc(pci_dev_to_dev(pdev), port[0]);
Alan Cox47a86592005-10-04 08:09:19 -04004534 int p = 0;
4535
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 if (!probe_ent)
4537 return NULL;
4538
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 probe_ent->irq = pdev->irq;
4540 probe_ent->irq_flags = SA_SHIRQ;
4541
Alan Cox47a86592005-10-04 08:09:19 -04004542 if (ports & ATA_PORT_PRIMARY) {
4543 probe_ent->port[p].cmd_addr = pci_resource_start(pdev, 0);
4544 probe_ent->port[p].altstatus_addr =
4545 probe_ent->port[p].ctl_addr =
4546 pci_resource_start(pdev, 1) | ATA_PCI_CTL_OFS;
4547 probe_ent->port[p].bmdma_addr = pci_resource_start(pdev, 4);
4548 ata_std_ports(&probe_ent->port[p]);
4549 p++;
4550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551
Alan Cox47a86592005-10-04 08:09:19 -04004552 if (ports & ATA_PORT_SECONDARY) {
4553 probe_ent->port[p].cmd_addr = pci_resource_start(pdev, 2);
4554 probe_ent->port[p].altstatus_addr =
4555 probe_ent->port[p].ctl_addr =
4556 pci_resource_start(pdev, 3) | ATA_PCI_CTL_OFS;
4557 probe_ent->port[p].bmdma_addr = pci_resource_start(pdev, 4) + 8;
4558 ata_std_ports(&probe_ent->port[p]);
4559 p++;
4560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
Alan Cox47a86592005-10-04 08:09:19 -04004562 probe_ent->n_ports = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 return probe_ent;
4564}
4565
Alan Cox47a86592005-10-04 08:09:19 -04004566static 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 -07004567{
Alan Cox47a86592005-10-04 08:09:19 -04004568 struct ata_probe_ent *probe_ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
4570 probe_ent = ata_probe_ent_alloc(pci_dev_to_dev(pdev), port[0]);
4571 if (!probe_ent)
4572 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 probe_ent->legacy_mode = 1;
Alan Cox47a86592005-10-04 08:09:19 -04004575 probe_ent->n_ports = 1;
4576 probe_ent->hard_port_no = port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
Alan Cox47a86592005-10-04 08:09:19 -04004578 switch(port_num)
4579 {
4580 case 0:
4581 probe_ent->irq = 14;
4582 probe_ent->port[0].cmd_addr = 0x1f0;
4583 probe_ent->port[0].altstatus_addr =
4584 probe_ent->port[0].ctl_addr = 0x3f6;
4585 break;
4586 case 1:
4587 probe_ent->irq = 15;
4588 probe_ent->port[0].cmd_addr = 0x170;
4589 probe_ent->port[0].altstatus_addr =
4590 probe_ent->port[0].ctl_addr = 0x376;
4591 break;
4592 }
4593 probe_ent->port[0].bmdma_addr = pci_resource_start(pdev, 4) + 8 * port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 ata_std_ports(&probe_ent->port[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 return probe_ent;
4596}
4597
4598/**
4599 * ata_pci_init_one - Initialize/register PCI IDE host controller
4600 * @pdev: Controller to be initialized
4601 * @port_info: Information from low-level host driver
4602 * @n_ports: Number of ports attached to host controller
4603 *
Edward Falk0baab862005-06-02 18:17:13 -04004604 * This is a helper function which can be called from a driver's
4605 * xxx_init_one() probe function if the hardware uses traditional
4606 * IDE taskfile registers.
4607 *
4608 * This function calls pci_enable_device(), reserves its register
4609 * regions, sets the dma mask, enables bus master mode, and calls
4610 * ata_device_add()
4611 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 * LOCKING:
4613 * Inherited from PCI layer (may sleep).
4614 *
4615 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004616 * Zero on success, negative on errno-based value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 *
4618 */
4619
4620int ata_pci_init_one (struct pci_dev *pdev, struct ata_port_info **port_info,
4621 unsigned int n_ports)
4622{
Alan Cox47a86592005-10-04 08:09:19 -04004623 struct ata_probe_ent *probe_ent = NULL, *probe_ent2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 struct ata_port_info *port[2];
4625 u8 tmp8, mask;
4626 unsigned int legacy_mode = 0;
4627 int disable_dev_on_err = 1;
4628 int rc;
4629
4630 DPRINTK("ENTER\n");
4631
4632 port[0] = port_info[0];
4633 if (n_ports > 1)
4634 port[1] = port_info[1];
4635 else
4636 port[1] = port[0];
4637
4638 if ((port[0]->host_flags & ATA_FLAG_NO_LEGACY) == 0
4639 && (pdev->class >> 8) == PCI_CLASS_STORAGE_IDE) {
Alan Cox47a86592005-10-04 08:09:19 -04004640 /* TODO: What if one channel is in native mode ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 pci_read_config_byte(pdev, PCI_CLASS_PROG, &tmp8);
4642 mask = (1 << 2) | (1 << 0);
4643 if ((tmp8 & mask) != mask)
4644 legacy_mode = (1 << 3);
4645 }
4646
4647 /* FIXME... */
Alan Cox47a86592005-10-04 08:09:19 -04004648 if ((!legacy_mode) && (n_ports > 2)) {
4649 printk(KERN_ERR "ata: BUG: native mode, n_ports > 2\n");
4650 n_ports = 2;
4651 /* For now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 }
4653
Alan Cox47a86592005-10-04 08:09:19 -04004654 /* FIXME: Really for ATA it isn't safe because the device may be
4655 multi-purpose and we want to leave it alone if it was already
4656 enabled. Secondly for shared use as Arjan says we want refcounting
4657
4658 Checking dev->is_enabled is insufficient as this is not set at
4659 boot for the primary video which is BIOS enabled
4660 */
4661
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 rc = pci_enable_device(pdev);
4663 if (rc)
4664 return rc;
4665
4666 rc = pci_request_regions(pdev, DRV_NAME);
4667 if (rc) {
4668 disable_dev_on_err = 0;
4669 goto err_out;
4670 }
4671
Alan Cox47a86592005-10-04 08:09:19 -04004672 /* FIXME: Should use platform specific mappers for legacy port ranges */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 if (legacy_mode) {
4674 if (!request_region(0x1f0, 8, "libata")) {
4675 struct resource *conflict, res;
4676 res.start = 0x1f0;
4677 res.end = 0x1f0 + 8 - 1;
4678 conflict = ____request_resource(&ioport_resource, &res);
4679 if (!strcmp(conflict->name, "libata"))
4680 legacy_mode |= (1 << 0);
4681 else {
4682 disable_dev_on_err = 0;
4683 printk(KERN_WARNING "ata: 0x1f0 IDE port busy\n");
4684 }
4685 } else
4686 legacy_mode |= (1 << 0);
4687
4688 if (!request_region(0x170, 8, "libata")) {
4689 struct resource *conflict, res;
4690 res.start = 0x170;
4691 res.end = 0x170 + 8 - 1;
4692 conflict = ____request_resource(&ioport_resource, &res);
4693 if (!strcmp(conflict->name, "libata"))
4694 legacy_mode |= (1 << 1);
4695 else {
4696 disable_dev_on_err = 0;
4697 printk(KERN_WARNING "ata: 0x170 IDE port busy\n");
4698 }
4699 } else
4700 legacy_mode |= (1 << 1);
4701 }
4702
4703 /* we have legacy mode, but all ports are unavailable */
4704 if (legacy_mode == (1 << 3)) {
4705 rc = -EBUSY;
4706 goto err_out_regions;
4707 }
4708
4709 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
4710 if (rc)
4711 goto err_out_regions;
4712 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
4713 if (rc)
4714 goto err_out_regions;
4715
4716 if (legacy_mode) {
Alan Cox47a86592005-10-04 08:09:19 -04004717 if (legacy_mode & (1 << 0))
4718 probe_ent = ata_pci_init_legacy_port(pdev, port, 0);
4719 if (legacy_mode & (1 << 1))
4720 probe_ent2 = ata_pci_init_legacy_port(pdev, port, 1);
4721 } else {
4722 if (n_ports == 2)
4723 probe_ent = ata_pci_init_native_mode(pdev, port, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
4724 else
4725 probe_ent = ata_pci_init_native_mode(pdev, port, ATA_PORT_PRIMARY);
4726 }
4727 if (!probe_ent && !probe_ent2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 rc = -ENOMEM;
4729 goto err_out_regions;
4730 }
4731
4732 pci_set_master(pdev);
4733
4734 /* FIXME: check ata_device_add return */
4735 if (legacy_mode) {
4736 if (legacy_mode & (1 << 0))
4737 ata_device_add(probe_ent);
4738 if (legacy_mode & (1 << 1))
4739 ata_device_add(probe_ent2);
4740 } else
4741 ata_device_add(probe_ent);
4742
4743 kfree(probe_ent);
4744 kfree(probe_ent2);
4745
4746 return 0;
4747
4748err_out_regions:
4749 if (legacy_mode & (1 << 0))
4750 release_region(0x1f0, 8);
4751 if (legacy_mode & (1 << 1))
4752 release_region(0x170, 8);
4753 pci_release_regions(pdev);
4754err_out:
4755 if (disable_dev_on_err)
4756 pci_disable_device(pdev);
4757 return rc;
4758}
4759
4760/**
4761 * ata_pci_remove_one - PCI layer callback for device removal
4762 * @pdev: PCI device that was removed
4763 *
4764 * PCI layer indicates to libata via this hook that
4765 * hot-unplug or module unload event has occured.
4766 * Handle this by unregistering all objects associated
4767 * with this PCI device. Free those objects. Then finally
4768 * release PCI resources and disable device.
4769 *
4770 * LOCKING:
4771 * Inherited from PCI layer (may sleep).
4772 */
4773
4774void ata_pci_remove_one (struct pci_dev *pdev)
4775{
4776 struct device *dev = pci_dev_to_dev(pdev);
4777 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
Alan Cox17b14452005-09-15 15:44:00 +01004779 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 pci_release_regions(pdev);
4781 pci_disable_device(pdev);
4782 dev_set_drvdata(dev, NULL);
4783}
4784
4785/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04004786int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787{
4788 unsigned long tmp = 0;
4789
4790 switch (bits->width) {
4791 case 1: {
4792 u8 tmp8 = 0;
4793 pci_read_config_byte(pdev, bits->reg, &tmp8);
4794 tmp = tmp8;
4795 break;
4796 }
4797 case 2: {
4798 u16 tmp16 = 0;
4799 pci_read_config_word(pdev, bits->reg, &tmp16);
4800 tmp = tmp16;
4801 break;
4802 }
4803 case 4: {
4804 u32 tmp32 = 0;
4805 pci_read_config_dword(pdev, bits->reg, &tmp32);
4806 tmp = tmp32;
4807 break;
4808 }
4809
4810 default:
4811 return -EINVAL;
4812 }
4813
4814 tmp &= bits->mask;
4815
4816 return (tmp == bits->val) ? 1 : 0;
4817}
4818#endif /* CONFIG_PCI */
4819
4820
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821static int __init ata_init(void)
4822{
4823 ata_wq = create_workqueue("ata");
4824 if (!ata_wq)
4825 return -ENOMEM;
4826
4827 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
4828 return 0;
4829}
4830
4831static void __exit ata_exit(void)
4832{
4833 destroy_workqueue(ata_wq);
4834}
4835
4836module_init(ata_init);
4837module_exit(ata_exit);
4838
Jeff Garzik67846b32005-10-05 02:58:32 -04004839static unsigned long ratelimit_time;
4840static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
4841
4842int ata_ratelimit(void)
4843{
4844 int rc;
4845 unsigned long flags;
4846
4847 spin_lock_irqsave(&ata_ratelimit_lock, flags);
4848
4849 if (time_after(jiffies, ratelimit_time)) {
4850 rc = 1;
4851 ratelimit_time = jiffies + (HZ/5);
4852 } else
4853 rc = 0;
4854
4855 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
4856
4857 return rc;
4858}
4859
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860/*
4861 * libata is essentially a library of internal helper functions for
4862 * low-level ATA host controller drivers. As such, the API/ABI is
4863 * likely to change as new drivers are added and updated.
4864 * Do not depend on ABI/API stability.
4865 */
4866
4867EXPORT_SYMBOL_GPL(ata_std_bios_param);
4868EXPORT_SYMBOL_GPL(ata_std_ports);
4869EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01004870EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871EXPORT_SYMBOL_GPL(ata_sg_init);
4872EXPORT_SYMBOL_GPL(ata_sg_init_one);
4873EXPORT_SYMBOL_GPL(ata_qc_complete);
4874EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
4875EXPORT_SYMBOL_GPL(ata_eng_timeout);
4876EXPORT_SYMBOL_GPL(ata_tf_load);
4877EXPORT_SYMBOL_GPL(ata_tf_read);
4878EXPORT_SYMBOL_GPL(ata_noop_dev_select);
4879EXPORT_SYMBOL_GPL(ata_std_dev_select);
4880EXPORT_SYMBOL_GPL(ata_tf_to_fis);
4881EXPORT_SYMBOL_GPL(ata_tf_from_fis);
4882EXPORT_SYMBOL_GPL(ata_check_status);
4883EXPORT_SYMBOL_GPL(ata_altstatus);
4884EXPORT_SYMBOL_GPL(ata_chk_err);
4885EXPORT_SYMBOL_GPL(ata_exec_command);
4886EXPORT_SYMBOL_GPL(ata_port_start);
4887EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004888EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889EXPORT_SYMBOL_GPL(ata_interrupt);
4890EXPORT_SYMBOL_GPL(ata_qc_prep);
4891EXPORT_SYMBOL_GPL(ata_bmdma_setup);
4892EXPORT_SYMBOL_GPL(ata_bmdma_start);
4893EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
4894EXPORT_SYMBOL_GPL(ata_bmdma_status);
4895EXPORT_SYMBOL_GPL(ata_bmdma_stop);
4896EXPORT_SYMBOL_GPL(ata_port_probe);
4897EXPORT_SYMBOL_GPL(sata_phy_reset);
4898EXPORT_SYMBOL_GPL(__sata_phy_reset);
4899EXPORT_SYMBOL_GPL(ata_bus_reset);
4900EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04004901EXPORT_SYMBOL_GPL(ata_ratelimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
4903EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
4904EXPORT_SYMBOL_GPL(ata_scsi_error);
4905EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
4906EXPORT_SYMBOL_GPL(ata_scsi_release);
4907EXPORT_SYMBOL_GPL(ata_host_intr);
4908EXPORT_SYMBOL_GPL(ata_dev_classify);
4909EXPORT_SYMBOL_GPL(ata_dev_id_string);
Brad Campbell6f2f3812005-05-12 15:07:47 -04004910EXPORT_SYMBOL_GPL(ata_dev_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911EXPORT_SYMBOL_GPL(ata_scsi_simulate);
4912
Alan Cox452503f2005-10-21 19:01:32 -04004913EXPORT_SYMBOL_GPL(ata_timing_compute);
4914EXPORT_SYMBOL_GPL(ata_timing_merge);
4915
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916#ifdef CONFIG_PCI
4917EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04004918EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
4920EXPORT_SYMBOL_GPL(ata_pci_init_one);
4921EXPORT_SYMBOL_GPL(ata_pci_remove_one);
4922#endif /* CONFIG_PCI */