blob: a07bd35da912afa385eb8e555cde07b6eddfac3e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include <linux/config.h>
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/pci.h>
39#include <linux/init.h>
40#include <linux/list.h>
41#include <linux/mm.h>
42#include <linux/highmem.h>
43#include <linux/spinlock.h>
44#include <linux/blkdev.h>
45#include <linux/delay.h>
46#include <linux/timer.h>
47#include <linux/interrupt.h>
48#include <linux/completion.h>
49#include <linux/suspend.h>
50#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040051#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100052#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_host.h>
57#include <linux/libata.h>
58#include <asm/io.h>
59#include <asm/semaphore.h>
60#include <asm/byteorder.h>
61
62#include "libata.h"
63
64static unsigned int ata_busy_sleep (struct ata_port *ap,
65 unsigned long tmout_pat,
66 unsigned long tmout);
Albert Lee59a10b12005-10-12 15:09:42 +080067static void ata_dev_reread_id(struct ata_port *ap, struct ata_device *dev);
Albert Lee8bf62ec2005-05-12 15:29:42 -040068static void ata_dev_init_params(struct ata_port *ap, struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static void ata_set_mode(struct ata_port *ap);
70static void ata_dev_set_xfermode(struct ata_port *ap, struct ata_device *dev);
Jeff Garzik057ace52005-10-22 14:27:05 -040071static unsigned int ata_get_mode_mask(const struct ata_port *ap, int shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static int fgb(u32 bitmap);
Jeff Garzik057ace52005-10-22 14:27:05 -040073static int ata_choose_xfer_mode(const struct ata_port *ap,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 u8 *xfer_mode_out,
75 unsigned int *xfer_shift_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static void __ata_qc_complete(struct ata_queued_cmd *qc);
77
78static unsigned int ata_unique_id = 1;
79static struct workqueue_struct *ata_wq;
80
Jeff Garzik1623c812005-08-30 03:37:42 -040081int atapi_enabled = 0;
82module_param(atapi_enabled, int, 0444);
83MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085MODULE_AUTHOR("Jeff Garzik");
86MODULE_DESCRIPTION("Library module for ATA devices");
87MODULE_LICENSE("GPL");
88MODULE_VERSION(DRV_VERSION);
89
90/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -040091 * ata_tf_load_pio - send taskfile registers to host controller
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 * @ap: Port to which output is sent
93 * @tf: ATA taskfile register set
94 *
95 * Outputs ATA taskfile to standard ATA host controller.
96 *
97 * LOCKING:
98 * Inherited from caller.
99 */
100
Jeff Garzik057ace52005-10-22 14:27:05 -0400101static void ata_tf_load_pio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 struct ata_ioports *ioaddr = &ap->ioaddr;
104 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
105
106 if (tf->ctl != ap->last_ctl) {
107 outb(tf->ctl, ioaddr->ctl_addr);
108 ap->last_ctl = tf->ctl;
109 ata_wait_idle(ap);
110 }
111
112 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
113 outb(tf->hob_feature, ioaddr->feature_addr);
114 outb(tf->hob_nsect, ioaddr->nsect_addr);
115 outb(tf->hob_lbal, ioaddr->lbal_addr);
116 outb(tf->hob_lbam, ioaddr->lbam_addr);
117 outb(tf->hob_lbah, ioaddr->lbah_addr);
118 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
119 tf->hob_feature,
120 tf->hob_nsect,
121 tf->hob_lbal,
122 tf->hob_lbam,
123 tf->hob_lbah);
124 }
125
126 if (is_addr) {
127 outb(tf->feature, ioaddr->feature_addr);
128 outb(tf->nsect, ioaddr->nsect_addr);
129 outb(tf->lbal, ioaddr->lbal_addr);
130 outb(tf->lbam, ioaddr->lbam_addr);
131 outb(tf->lbah, ioaddr->lbah_addr);
132 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
133 tf->feature,
134 tf->nsect,
135 tf->lbal,
136 tf->lbam,
137 tf->lbah);
138 }
139
140 if (tf->flags & ATA_TFLAG_DEVICE) {
141 outb(tf->device, ioaddr->device_addr);
142 VPRINTK("device 0x%X\n", tf->device);
143 }
144
145 ata_wait_idle(ap);
146}
147
148/**
149 * ata_tf_load_mmio - send taskfile registers to host controller
150 * @ap: Port to which output is sent
151 * @tf: ATA taskfile register set
152 *
153 * Outputs ATA taskfile to standard ATA host controller using MMIO.
154 *
155 * LOCKING:
156 * Inherited from caller.
157 */
158
Jeff Garzik057ace52005-10-22 14:27:05 -0400159static void ata_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 struct ata_ioports *ioaddr = &ap->ioaddr;
162 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
163
164 if (tf->ctl != ap->last_ctl) {
165 writeb(tf->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
166 ap->last_ctl = tf->ctl;
167 ata_wait_idle(ap);
168 }
169
170 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
171 writeb(tf->hob_feature, (void __iomem *) ioaddr->feature_addr);
172 writeb(tf->hob_nsect, (void __iomem *) ioaddr->nsect_addr);
173 writeb(tf->hob_lbal, (void __iomem *) ioaddr->lbal_addr);
174 writeb(tf->hob_lbam, (void __iomem *) ioaddr->lbam_addr);
175 writeb(tf->hob_lbah, (void __iomem *) ioaddr->lbah_addr);
176 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
177 tf->hob_feature,
178 tf->hob_nsect,
179 tf->hob_lbal,
180 tf->hob_lbam,
181 tf->hob_lbah);
182 }
183
184 if (is_addr) {
185 writeb(tf->feature, (void __iomem *) ioaddr->feature_addr);
186 writeb(tf->nsect, (void __iomem *) ioaddr->nsect_addr);
187 writeb(tf->lbal, (void __iomem *) ioaddr->lbal_addr);
188 writeb(tf->lbam, (void __iomem *) ioaddr->lbam_addr);
189 writeb(tf->lbah, (void __iomem *) ioaddr->lbah_addr);
190 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
191 tf->feature,
192 tf->nsect,
193 tf->lbal,
194 tf->lbam,
195 tf->lbah);
196 }
197
198 if (tf->flags & ATA_TFLAG_DEVICE) {
199 writeb(tf->device, (void __iomem *) ioaddr->device_addr);
200 VPRINTK("device 0x%X\n", tf->device);
201 }
202
203 ata_wait_idle(ap);
204}
205
Edward Falk0baab862005-06-02 18:17:13 -0400206
207/**
208 * ata_tf_load - send taskfile registers to host controller
209 * @ap: Port to which output is sent
210 * @tf: ATA taskfile register set
211 *
212 * Outputs ATA taskfile to standard ATA host controller using MMIO
213 * or PIO as indicated by the ATA_FLAG_MMIO flag.
214 * Writes the control, feature, nsect, lbal, lbam, and lbah registers.
215 * Optionally (ATA_TFLAG_LBA48) writes hob_feature, hob_nsect,
216 * hob_lbal, hob_lbam, and hob_lbah.
217 *
218 * This function waits for idle (!BUSY and !DRQ) after writing
219 * registers. If the control register has a new value, this
220 * function also waits for idle after writing control and before
221 * writing the remaining registers.
222 *
223 * May be used as the tf_load() entry in ata_port_operations.
224 *
225 * LOCKING:
226 * Inherited from caller.
227 */
Jeff Garzik057ace52005-10-22 14:27:05 -0400228void ata_tf_load(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 if (ap->flags & ATA_FLAG_MMIO)
231 ata_tf_load_mmio(ap, tf);
232 else
233 ata_tf_load_pio(ap, tf);
234}
235
236/**
Edward Falk0baab862005-06-02 18:17:13 -0400237 * ata_exec_command_pio - issue ATA command to host controller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 * @ap: port to which command is being issued
239 * @tf: ATA taskfile register set
240 *
Edward Falk0baab862005-06-02 18:17:13 -0400241 * Issues PIO write to ATA command register, with proper
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 * synchronization with interrupt handler / other threads.
243 *
244 * LOCKING:
245 * spin_lock_irqsave(host_set lock)
246 */
247
Jeff Garzik057ace52005-10-22 14:27:05 -0400248static void ata_exec_command_pio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 DPRINTK("ata%u: cmd 0x%X\n", ap->id, tf->command);
251
252 outb(tf->command, ap->ioaddr.command_addr);
253 ata_pause(ap);
254}
255
256
257/**
258 * ata_exec_command_mmio - issue ATA command to host controller
259 * @ap: port to which command is being issued
260 * @tf: ATA taskfile register set
261 *
262 * Issues MMIO write to ATA command register, with proper
263 * synchronization with interrupt handler / other threads.
264 *
265 * LOCKING:
266 * spin_lock_irqsave(host_set lock)
267 */
268
Jeff Garzik057ace52005-10-22 14:27:05 -0400269static void ata_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 DPRINTK("ata%u: cmd 0x%X\n", ap->id, tf->command);
272
273 writeb(tf->command, (void __iomem *) ap->ioaddr.command_addr);
274 ata_pause(ap);
275}
276
Edward Falk0baab862005-06-02 18:17:13 -0400277
278/**
279 * ata_exec_command - issue ATA command to host controller
280 * @ap: port to which command is being issued
281 * @tf: ATA taskfile register set
282 *
283 * Issues PIO/MMIO write to ATA command register, with proper
284 * synchronization with interrupt handler / other threads.
285 *
286 * LOCKING:
287 * spin_lock_irqsave(host_set lock)
288 */
Jeff Garzik057ace52005-10-22 14:27:05 -0400289void ata_exec_command(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 if (ap->flags & ATA_FLAG_MMIO)
292 ata_exec_command_mmio(ap, tf);
293 else
294 ata_exec_command_pio(ap, tf);
295}
296
297/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * ata_tf_to_host - issue ATA taskfile to host controller
299 * @ap: port to which command is being issued
300 * @tf: ATA taskfile register set
301 *
302 * Issues ATA taskfile register set to ATA host controller,
303 * with proper synchronization with interrupt handler and
304 * other threads.
305 *
306 * LOCKING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * spin_lock_irqsave(host_set lock)
308 */
309
Jeff Garzike5338252005-10-30 21:37:17 -0500310static inline void ata_tf_to_host(struct ata_port *ap,
311 const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 ap->ops->tf_load(ap, tf);
314 ap->ops->exec_command(ap, tf);
315}
316
317/**
Edward Falk0baab862005-06-02 18:17:13 -0400318 * ata_tf_read_pio - input device's ATA taskfile shadow registers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * @ap: Port from which input is read
320 * @tf: ATA taskfile register set for storing input
321 *
322 * Reads ATA taskfile registers for currently-selected device
323 * into @tf.
324 *
325 * LOCKING:
326 * Inherited from caller.
327 */
328
329static void ata_tf_read_pio(struct ata_port *ap, struct ata_taskfile *tf)
330{
331 struct ata_ioports *ioaddr = &ap->ioaddr;
332
Jeff Garzikac19bff2005-10-29 13:58:21 -0400333 tf->command = ata_check_status(ap);
Jeff Garzik0169e282005-10-29 21:25:10 -0400334 tf->feature = inb(ioaddr->error_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 tf->nsect = inb(ioaddr->nsect_addr);
336 tf->lbal = inb(ioaddr->lbal_addr);
337 tf->lbam = inb(ioaddr->lbam_addr);
338 tf->lbah = inb(ioaddr->lbah_addr);
339 tf->device = inb(ioaddr->device_addr);
340
341 if (tf->flags & ATA_TFLAG_LBA48) {
342 outb(tf->ctl | ATA_HOB, ioaddr->ctl_addr);
343 tf->hob_feature = inb(ioaddr->error_addr);
344 tf->hob_nsect = inb(ioaddr->nsect_addr);
345 tf->hob_lbal = inb(ioaddr->lbal_addr);
346 tf->hob_lbam = inb(ioaddr->lbam_addr);
347 tf->hob_lbah = inb(ioaddr->lbah_addr);
348 }
349}
350
351/**
352 * ata_tf_read_mmio - input device's ATA taskfile shadow registers
353 * @ap: Port from which input is read
354 * @tf: ATA taskfile register set for storing input
355 *
356 * Reads ATA taskfile registers for currently-selected device
357 * into @tf via MMIO.
358 *
359 * LOCKING:
360 * Inherited from caller.
361 */
362
363static void ata_tf_read_mmio(struct ata_port *ap, struct ata_taskfile *tf)
364{
365 struct ata_ioports *ioaddr = &ap->ioaddr;
366
Jeff Garzikac19bff2005-10-29 13:58:21 -0400367 tf->command = ata_check_status(ap);
Jeff Garzik0169e282005-10-29 21:25:10 -0400368 tf->feature = readb((void __iomem *)ioaddr->error_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 tf->nsect = readb((void __iomem *)ioaddr->nsect_addr);
370 tf->lbal = readb((void __iomem *)ioaddr->lbal_addr);
371 tf->lbam = readb((void __iomem *)ioaddr->lbam_addr);
372 tf->lbah = readb((void __iomem *)ioaddr->lbah_addr);
373 tf->device = readb((void __iomem *)ioaddr->device_addr);
374
375 if (tf->flags & ATA_TFLAG_LBA48) {
376 writeb(tf->ctl | ATA_HOB, (void __iomem *) ap->ioaddr.ctl_addr);
377 tf->hob_feature = readb((void __iomem *)ioaddr->error_addr);
378 tf->hob_nsect = readb((void __iomem *)ioaddr->nsect_addr);
379 tf->hob_lbal = readb((void __iomem *)ioaddr->lbal_addr);
380 tf->hob_lbam = readb((void __iomem *)ioaddr->lbam_addr);
381 tf->hob_lbah = readb((void __iomem *)ioaddr->lbah_addr);
382 }
383}
384
Edward Falk0baab862005-06-02 18:17:13 -0400385
386/**
387 * ata_tf_read - input device's ATA taskfile shadow registers
388 * @ap: Port from which input is read
389 * @tf: ATA taskfile register set for storing input
390 *
391 * Reads ATA taskfile registers for currently-selected device
392 * into @tf.
393 *
394 * Reads nsect, lbal, lbam, lbah, and device. If ATA_TFLAG_LBA48
395 * is set, also reads the hob registers.
396 *
397 * May be used as the tf_read() entry in ata_port_operations.
398 *
399 * LOCKING:
400 * Inherited from caller.
401 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
403{
404 if (ap->flags & ATA_FLAG_MMIO)
405 ata_tf_read_mmio(ap, tf);
406 else
407 ata_tf_read_pio(ap, tf);
408}
409
410/**
411 * ata_check_status_pio - Read device status reg & clear interrupt
412 * @ap: port where the device is
413 *
414 * Reads ATA taskfile status register for currently-selected device
Edward Falk0baab862005-06-02 18:17:13 -0400415 * and return its value. This also clears pending interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * from this device
417 *
418 * LOCKING:
419 * Inherited from caller.
420 */
421static u8 ata_check_status_pio(struct ata_port *ap)
422{
423 return inb(ap->ioaddr.status_addr);
424}
425
426/**
427 * ata_check_status_mmio - Read device status reg & clear interrupt
428 * @ap: port where the device is
429 *
430 * Reads ATA taskfile status register for currently-selected device
Edward Falk0baab862005-06-02 18:17:13 -0400431 * via MMIO and return its value. This also clears pending interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * from this device
433 *
434 * LOCKING:
435 * Inherited from caller.
436 */
437static u8 ata_check_status_mmio(struct ata_port *ap)
438{
439 return readb((void __iomem *) ap->ioaddr.status_addr);
440}
441
Edward Falk0baab862005-06-02 18:17:13 -0400442
443/**
444 * ata_check_status - Read device status reg & clear interrupt
445 * @ap: port where the device is
446 *
447 * Reads ATA taskfile status register for currently-selected device
448 * and return its value. This also clears pending interrupts
449 * from this device
450 *
451 * May be used as the check_status() entry in ata_port_operations.
452 *
453 * LOCKING:
454 * Inherited from caller.
455 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456u8 ata_check_status(struct ata_port *ap)
457{
458 if (ap->flags & ATA_FLAG_MMIO)
459 return ata_check_status_mmio(ap);
460 return ata_check_status_pio(ap);
461}
462
Edward Falk0baab862005-06-02 18:17:13 -0400463
464/**
465 * ata_altstatus - Read device alternate status reg
466 * @ap: port where the device is
467 *
468 * Reads ATA taskfile alternate status register for
469 * currently-selected device and return its value.
470 *
471 * Note: may NOT be used as the check_altstatus() entry in
472 * ata_port_operations.
473 *
474 * LOCKING:
475 * Inherited from caller.
476 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477u8 ata_altstatus(struct ata_port *ap)
478{
479 if (ap->ops->check_altstatus)
480 return ap->ops->check_altstatus(ap);
481
482 if (ap->flags & ATA_FLAG_MMIO)
483 return readb((void __iomem *)ap->ioaddr.altstatus_addr);
484 return inb(ap->ioaddr.altstatus_addr);
485}
486
Edward Falk0baab862005-06-02 18:17:13 -0400487
488/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
490 * @tf: Taskfile to convert
491 * @fis: Buffer into which data will output
492 * @pmp: Port multiplier port
493 *
494 * Converts a standard ATA taskfile to a Serial ATA
495 * FIS structure (Register - Host to Device).
496 *
497 * LOCKING:
498 * Inherited from caller.
499 */
500
Jeff Garzik057ace52005-10-22 14:27:05 -0400501void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 fis[0] = 0x27; /* Register - Host to Device FIS */
504 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
505 bit 7 indicates Command FIS */
506 fis[2] = tf->command;
507 fis[3] = tf->feature;
508
509 fis[4] = tf->lbal;
510 fis[5] = tf->lbam;
511 fis[6] = tf->lbah;
512 fis[7] = tf->device;
513
514 fis[8] = tf->hob_lbal;
515 fis[9] = tf->hob_lbam;
516 fis[10] = tf->hob_lbah;
517 fis[11] = tf->hob_feature;
518
519 fis[12] = tf->nsect;
520 fis[13] = tf->hob_nsect;
521 fis[14] = 0;
522 fis[15] = tf->ctl;
523
524 fis[16] = 0;
525 fis[17] = 0;
526 fis[18] = 0;
527 fis[19] = 0;
528}
529
530/**
531 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
532 * @fis: Buffer from which data will be input
533 * @tf: Taskfile to output
534 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500535 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 *
537 * LOCKING:
538 * Inherited from caller.
539 */
540
Jeff Garzik057ace52005-10-22 14:27:05 -0400541void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 tf->command = fis[2]; /* status */
544 tf->feature = fis[3]; /* error */
545
546 tf->lbal = fis[4];
547 tf->lbam = fis[5];
548 tf->lbah = fis[6];
549 tf->device = fis[7];
550
551 tf->hob_lbal = fis[8];
552 tf->hob_lbam = fis[9];
553 tf->hob_lbah = fis[10];
554
555 tf->nsect = fis[12];
556 tf->hob_nsect = fis[13];
557}
558
Albert Lee8cbd6df2005-10-12 15:06:27 +0800559static const u8 ata_rw_cmds[] = {
560 /* pio multi */
561 ATA_CMD_READ_MULTI,
562 ATA_CMD_WRITE_MULTI,
563 ATA_CMD_READ_MULTI_EXT,
564 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100565 0,
566 0,
567 0,
568 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800569 /* pio */
570 ATA_CMD_PIO_READ,
571 ATA_CMD_PIO_WRITE,
572 ATA_CMD_PIO_READ_EXT,
573 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100574 0,
575 0,
576 0,
577 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800578 /* dma */
579 ATA_CMD_READ,
580 ATA_CMD_WRITE,
581 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100582 ATA_CMD_WRITE_EXT,
583 0,
584 0,
585 0,
586 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800587};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800590 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
591 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 *
Albert Lee8cbd6df2005-10-12 15:06:27 +0800593 * Examine the device configuration and tf->flags to calculate
594 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 *
596 * LOCKING:
597 * caller.
598 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100599int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800601 struct ata_taskfile *tf = &qc->tf;
602 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100603 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100605 int index, fua, lba48, write;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800606
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100607 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800608 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
609 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Albert Lee8cbd6df2005-10-12 15:06:27 +0800611 if (dev->flags & ATA_DFLAG_PIO) {
612 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100613 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000614 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
615 /* Unable to use DMA due to host limitation */
616 tf->protocol = ATA_PROT_PIO;
617 index = dev->multi_count ? 0 : 4;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800618 } else {
619 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100620 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100623 cmd = ata_rw_cmds[index + fua + lba48 + write];
624 if (cmd) {
625 tf->command = cmd;
626 return 0;
627 }
628 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100631static const char * const xfer_mode_str[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 "UDMA/16",
633 "UDMA/25",
634 "UDMA/33",
635 "UDMA/44",
636 "UDMA/66",
637 "UDMA/100",
638 "UDMA/133",
639 "UDMA7",
640 "MWDMA0",
641 "MWDMA1",
642 "MWDMA2",
643 "PIO0",
644 "PIO1",
645 "PIO2",
646 "PIO3",
647 "PIO4",
648};
649
650/**
651 * ata_udma_string - convert UDMA bit offset to string
652 * @mask: mask of bits supported; only highest bit counts.
653 *
654 * Determine string which represents the highest speed
655 * (highest bit in @udma_mask).
656 *
657 * LOCKING:
658 * None.
659 *
660 * RETURNS:
661 * Constant C string representing highest speed listed in
662 * @udma_mask, or the constant C string "<n/a>".
663 */
664
665static const char *ata_mode_string(unsigned int mask)
666{
667 int i;
668
669 for (i = 7; i >= 0; i--)
670 if (mask & (1 << i))
671 goto out;
672 for (i = ATA_SHIFT_MWDMA + 2; i >= ATA_SHIFT_MWDMA; i--)
673 if (mask & (1 << i))
674 goto out;
675 for (i = ATA_SHIFT_PIO + 4; i >= ATA_SHIFT_PIO; i--)
676 if (mask & (1 << i))
677 goto out;
678
679 return "<n/a>";
680
681out:
682 return xfer_mode_str[i];
683}
684
685/**
686 * ata_pio_devchk - PATA device presence detection
687 * @ap: ATA channel to examine
688 * @device: Device to examine (starting at zero)
689 *
690 * This technique was originally described in
691 * Hale Landis's ATADRVR (www.ata-atapi.com), and
692 * later found its way into the ATA/ATAPI spec.
693 *
694 * Write a pattern to the ATA shadow registers,
695 * and if a device is present, it will respond by
696 * correctly storing and echoing back the
697 * ATA shadow register contents.
698 *
699 * LOCKING:
700 * caller.
701 */
702
703static unsigned int ata_pio_devchk(struct ata_port *ap,
704 unsigned int device)
705{
706 struct ata_ioports *ioaddr = &ap->ioaddr;
707 u8 nsect, lbal;
708
709 ap->ops->dev_select(ap, device);
710
711 outb(0x55, ioaddr->nsect_addr);
712 outb(0xaa, ioaddr->lbal_addr);
713
714 outb(0xaa, ioaddr->nsect_addr);
715 outb(0x55, ioaddr->lbal_addr);
716
717 outb(0x55, ioaddr->nsect_addr);
718 outb(0xaa, ioaddr->lbal_addr);
719
720 nsect = inb(ioaddr->nsect_addr);
721 lbal = inb(ioaddr->lbal_addr);
722
723 if ((nsect == 0x55) && (lbal == 0xaa))
724 return 1; /* we found a device */
725
726 return 0; /* nothing found */
727}
728
729/**
730 * ata_mmio_devchk - PATA device presence detection
731 * @ap: ATA channel to examine
732 * @device: Device to examine (starting at zero)
733 *
734 * This technique was originally described in
735 * Hale Landis's ATADRVR (www.ata-atapi.com), and
736 * later found its way into the ATA/ATAPI spec.
737 *
738 * Write a pattern to the ATA shadow registers,
739 * and if a device is present, it will respond by
740 * correctly storing and echoing back the
741 * ATA shadow register contents.
742 *
743 * LOCKING:
744 * caller.
745 */
746
747static unsigned int ata_mmio_devchk(struct ata_port *ap,
748 unsigned int device)
749{
750 struct ata_ioports *ioaddr = &ap->ioaddr;
751 u8 nsect, lbal;
752
753 ap->ops->dev_select(ap, device);
754
755 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
756 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
757
758 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
759 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
760
761 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
762 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
763
764 nsect = readb((void __iomem *) ioaddr->nsect_addr);
765 lbal = readb((void __iomem *) ioaddr->lbal_addr);
766
767 if ((nsect == 0x55) && (lbal == 0xaa))
768 return 1; /* we found a device */
769
770 return 0; /* nothing found */
771}
772
773/**
774 * ata_devchk - PATA device presence detection
775 * @ap: ATA channel to examine
776 * @device: Device to examine (starting at zero)
777 *
778 * Dispatch ATA device presence detection, depending
779 * on whether we are using PIO or MMIO to talk to the
780 * ATA shadow registers.
781 *
782 * LOCKING:
783 * caller.
784 */
785
786static unsigned int ata_devchk(struct ata_port *ap,
787 unsigned int device)
788{
789 if (ap->flags & ATA_FLAG_MMIO)
790 return ata_mmio_devchk(ap, device);
791 return ata_pio_devchk(ap, device);
792}
793
794/**
795 * ata_dev_classify - determine device type based on ATA-spec signature
796 * @tf: ATA taskfile register set for device to be identified
797 *
798 * Determine from taskfile register contents whether a device is
799 * ATA or ATAPI, as per "Signature and persistence" section
800 * of ATA/PI spec (volume 1, sect 5.14).
801 *
802 * LOCKING:
803 * None.
804 *
805 * RETURNS:
806 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
807 * the event of failure.
808 */
809
Jeff Garzik057ace52005-10-22 14:27:05 -0400810unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 /* Apple's open source Darwin code hints that some devices only
813 * put a proper signature into the LBA mid/high registers,
814 * So, we only check those. It's sufficient for uniqueness.
815 */
816
817 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
818 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
819 DPRINTK("found ATA device by sig\n");
820 return ATA_DEV_ATA;
821 }
822
823 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
824 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
825 DPRINTK("found ATAPI device by sig\n");
826 return ATA_DEV_ATAPI;
827 }
828
829 DPRINTK("unknown device\n");
830 return ATA_DEV_UNKNOWN;
831}
832
833/**
834 * ata_dev_try_classify - Parse returned ATA device signature
835 * @ap: ATA channel to examine
836 * @device: Device to examine (starting at zero)
837 *
838 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
839 * an ATA/ATAPI-defined set of values is placed in the ATA
840 * shadow registers, indicating the results of device detection
841 * and diagnostics.
842 *
843 * Select the ATA device, and read the values from the ATA shadow
844 * registers. Then parse according to the Error register value,
845 * and the spec-defined values examined by ata_dev_classify().
846 *
847 * LOCKING:
848 * caller.
849 */
850
851static u8 ata_dev_try_classify(struct ata_port *ap, unsigned int device)
852{
853 struct ata_device *dev = &ap->device[device];
854 struct ata_taskfile tf;
855 unsigned int class;
856 u8 err;
857
858 ap->ops->dev_select(ap, device);
859
860 memset(&tf, 0, sizeof(tf));
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400863 err = tf.feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 dev->class = ATA_DEV_NONE;
866
867 /* see if device passed diags */
868 if (err == 1)
869 /* do nothing */ ;
870 else if ((device == 0) && (err == 0x81))
871 /* do nothing */ ;
872 else
873 return err;
874
875 /* determine if device if ATA or ATAPI */
876 class = ata_dev_classify(&tf);
877 if (class == ATA_DEV_UNKNOWN)
878 return err;
879 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
880 return err;
881
882 dev->class = class;
883
884 return err;
885}
886
887/**
888 * ata_dev_id_string - Convert IDENTIFY DEVICE page into string
889 * @id: IDENTIFY DEVICE results we will examine
890 * @s: string into which data is output
891 * @ofs: offset into identify device page
892 * @len: length of string to return. must be an even number.
893 *
894 * The strings in the IDENTIFY DEVICE page are broken up into
895 * 16-bit chunks. Run through the string, and output each
896 * 8-bit chunk linearly, regardless of platform.
897 *
898 * LOCKING:
899 * caller.
900 */
901
Jeff Garzik057ace52005-10-22 14:27:05 -0400902void ata_dev_id_string(const u16 *id, unsigned char *s,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 unsigned int ofs, unsigned int len)
904{
905 unsigned int c;
906
907 while (len > 0) {
908 c = id[ofs] >> 8;
909 *s = c;
910 s++;
911
912 c = id[ofs] & 0xff;
913 *s = c;
914 s++;
915
916 ofs++;
917 len -= 2;
918 }
919}
920
Edward Falk0baab862005-06-02 18:17:13 -0400921
922/**
923 * ata_noop_dev_select - Select device 0/1 on ATA bus
924 * @ap: ATA channel to manipulate
925 * @device: ATA device (numbered from zero) to select
926 *
927 * This function performs no actual function.
928 *
929 * May be used as the dev_select() entry in ata_port_operations.
930 *
931 * LOCKING:
932 * caller.
933 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
935{
936}
937
Edward Falk0baab862005-06-02 18:17:13 -0400938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/**
940 * ata_std_dev_select - Select device 0/1 on ATA bus
941 * @ap: ATA channel to manipulate
942 * @device: ATA device (numbered from zero) to select
943 *
944 * Use the method defined in the ATA specification to
945 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400946 * ATA channel. Works with both PIO and MMIO.
947 *
948 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 *
950 * LOCKING:
951 * caller.
952 */
953
954void ata_std_dev_select (struct ata_port *ap, unsigned int device)
955{
956 u8 tmp;
957
958 if (device == 0)
959 tmp = ATA_DEVICE_OBS;
960 else
961 tmp = ATA_DEVICE_OBS | ATA_DEV1;
962
963 if (ap->flags & ATA_FLAG_MMIO) {
964 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
965 } else {
966 outb(tmp, ap->ioaddr.device_addr);
967 }
968 ata_pause(ap); /* needed; also flushes, for mmio */
969}
970
971/**
972 * ata_dev_select - Select device 0/1 on ATA bus
973 * @ap: ATA channel to manipulate
974 * @device: ATA device (numbered from zero) to select
975 * @wait: non-zero to wait for Status register BSY bit to clear
976 * @can_sleep: non-zero if context allows sleeping
977 *
978 * Use the method defined in the ATA specification to
979 * make either device 0, or device 1, active on the
980 * ATA channel.
981 *
982 * This is a high-level version of ata_std_dev_select(),
983 * which additionally provides the services of inserting
984 * the proper pauses and status polling, where needed.
985 *
986 * LOCKING:
987 * caller.
988 */
989
990void ata_dev_select(struct ata_port *ap, unsigned int device,
991 unsigned int wait, unsigned int can_sleep)
992{
993 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
994 ap->id, device, wait);
995
996 if (wait)
997 ata_wait_idle(ap);
998
999 ap->ops->dev_select(ap, device);
1000
1001 if (wait) {
1002 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
1003 msleep(150);
1004 ata_wait_idle(ap);
1005 }
1006}
1007
1008/**
1009 * ata_dump_id - IDENTIFY DEVICE info debugging output
1010 * @dev: Device whose IDENTIFY DEVICE page we will dump
1011 *
1012 * Dump selected 16-bit words from a detected device's
1013 * IDENTIFY PAGE page.
1014 *
1015 * LOCKING:
1016 * caller.
1017 */
1018
Jeff Garzik057ace52005-10-22 14:27:05 -04001019static inline void ata_dump_id(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 DPRINTK("49==0x%04x "
1022 "53==0x%04x "
1023 "63==0x%04x "
1024 "64==0x%04x "
1025 "75==0x%04x \n",
1026 dev->id[49],
1027 dev->id[53],
1028 dev->id[63],
1029 dev->id[64],
1030 dev->id[75]);
1031 DPRINTK("80==0x%04x "
1032 "81==0x%04x "
1033 "82==0x%04x "
1034 "83==0x%04x "
1035 "84==0x%04x \n",
1036 dev->id[80],
1037 dev->id[81],
1038 dev->id[82],
1039 dev->id[83],
1040 dev->id[84]);
1041 DPRINTK("88==0x%04x "
1042 "93==0x%04x\n",
1043 dev->id[88],
1044 dev->id[93]);
1045}
1046
Alan Cox11e29e22005-10-21 18:46:32 -04001047/*
1048 * Compute the PIO modes available for this device. This is not as
1049 * trivial as it seems if we must consider early devices correctly.
1050 *
1051 * FIXME: pre IDE drive timing (do we care ?).
1052 */
1053
Jeff Garzik057ace52005-10-22 14:27:05 -04001054static unsigned int ata_pio_modes(const struct ata_device *adev)
Alan Cox11e29e22005-10-21 18:46:32 -04001055{
1056 u16 modes;
1057
Alan Coxffa29452006-01-09 17:14:40 +00001058 /* Usual case. Word 53 indicates word 64 is valid */
1059 if (adev->id[ATA_ID_FIELD_VALID] & (1 << 1)) {
Alan Cox11e29e22005-10-21 18:46:32 -04001060 modes = adev->id[ATA_ID_PIO_MODES] & 0x03;
1061 modes <<= 3;
1062 modes |= 0x7;
1063 return modes;
1064 }
1065
Alan Coxffa29452006-01-09 17:14:40 +00001066 /* If word 64 isn't valid then Word 51 high byte holds the PIO timing
1067 number for the maximum. Turn it into a mask and return it */
1068 modes = (2 << ((adev->id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF)) - 1 ;
Alan Cox11e29e22005-10-21 18:46:32 -04001069 return modes;
Alan Coxffa29452006-01-09 17:14:40 +00001070 /* But wait.. there's more. Design your standards by committee and
1071 you too can get a free iordy field to process. However its the
1072 speeds not the modes that are supported... Note drivers using the
1073 timing API will get this right anyway */
Alan Cox11e29e22005-10-21 18:46:32 -04001074}
1075
Tejun Heoa2a7a662005-12-13 14:48:31 +09001076struct ata_exec_internal_arg {
1077 unsigned int err_mask;
1078 struct ata_taskfile *tf;
1079 struct completion *waiting;
1080};
1081
1082int ata_qc_complete_internal(struct ata_queued_cmd *qc)
1083{
1084 struct ata_exec_internal_arg *arg = qc->private_data;
1085 struct completion *waiting = arg->waiting;
1086
1087 if (!(qc->err_mask & ~AC_ERR_DEV))
1088 qc->ap->ops->tf_read(qc->ap, arg->tf);
1089 arg->err_mask = qc->err_mask;
1090 arg->waiting = NULL;
1091 complete(waiting);
1092
1093 return 0;
1094}
1095
1096/**
1097 * ata_exec_internal - execute libata internal command
1098 * @ap: Port to which the command is sent
1099 * @dev: Device to which the command is sent
1100 * @tf: Taskfile registers for the command and the result
1101 * @dma_dir: Data tranfer direction of the command
1102 * @buf: Data buffer of the command
1103 * @buflen: Length of data buffer
1104 *
1105 * Executes libata internal command with timeout. @tf contains
1106 * command on entry and result on return. Timeout and error
1107 * conditions are reported via return value. No recovery action
1108 * is taken after a command times out. It's caller's duty to
1109 * clean up after timeout.
1110 *
1111 * LOCKING:
1112 * None. Should be called with kernel context, might sleep.
1113 */
1114
1115static unsigned
1116ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
1117 struct ata_taskfile *tf,
1118 int dma_dir, void *buf, unsigned int buflen)
1119{
1120 u8 command = tf->command;
1121 struct ata_queued_cmd *qc;
1122 DECLARE_COMPLETION(wait);
1123 unsigned long flags;
1124 struct ata_exec_internal_arg arg;
1125
1126 spin_lock_irqsave(&ap->host_set->lock, flags);
1127
1128 qc = ata_qc_new_init(ap, dev);
1129 BUG_ON(qc == NULL);
1130
1131 qc->tf = *tf;
1132 qc->dma_dir = dma_dir;
1133 if (dma_dir != DMA_NONE) {
1134 ata_sg_init_one(qc, buf, buflen);
1135 qc->nsect = buflen / ATA_SECT_SIZE;
1136 }
1137
1138 arg.waiting = &wait;
1139 arg.tf = tf;
1140 qc->private_data = &arg;
1141 qc->complete_fn = ata_qc_complete_internal;
1142
1143 if (ata_qc_issue(qc))
1144 goto issue_fail;
1145
1146 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1147
1148 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
1149 spin_lock_irqsave(&ap->host_set->lock, flags);
1150
1151 /* We're racing with irq here. If we lose, the
1152 * following test prevents us from completing the qc
1153 * again. If completion irq occurs after here but
1154 * before the caller cleans up, it will result in a
1155 * spurious interrupt. We can live with that.
1156 */
1157 if (arg.waiting) {
1158 qc->err_mask = AC_ERR_OTHER;
1159 ata_qc_complete(qc);
1160 printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1161 ap->id, command);
1162 }
1163
1164 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1165 }
1166
1167 return arg.err_mask;
1168
1169 issue_fail:
1170 ata_qc_free(qc);
1171 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1172 return AC_ERR_OTHER;
1173}
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001176 * ata_pio_need_iordy - check if iordy needed
1177 * @adev: ATA device
1178 *
1179 * Check if the current speed of the device requires IORDY. Used
1180 * by various controllers for chip configuration.
1181 */
1182
1183unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1184{
1185 int pio;
1186 int speed = adev->pio_mode - XFER_PIO_0;
1187
1188 if (speed < 2)
1189 return 0;
1190 if (speed > 2)
1191 return 1;
1192
1193 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1194
1195 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1196 pio = adev->id[ATA_ID_EIDE_PIO];
1197 /* Is the speed faster than the drive allows non IORDY ? */
1198 if (pio) {
1199 /* This is cycle times not frequency - watch the logic! */
1200 if (pio > 240) /* PIO2 is 240nS per cycle */
1201 return 1;
1202 return 0;
1203 }
1204 }
1205 return 0;
1206}
1207
1208/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 * ata_dev_identify - obtain IDENTIFY x DEVICE page
1210 * @ap: port on which device we wish to probe resides
1211 * @device: device bus address, starting at zero
1212 *
1213 * Following bus reset, we issue the IDENTIFY [PACKET] DEVICE
1214 * command, and read back the 512-byte device information page.
1215 * The device information page is fed to us via the standard
1216 * PIO-IN protocol, but we hand-code it here. (TODO: investigate
1217 * using standard PIO-IN paths)
1218 *
1219 * After reading the device information page, we use several
1220 * bits of information from it to initialize data structures
1221 * that will be used during the lifetime of the ata_device.
1222 * Other data from the info page is used to disqualify certain
1223 * older ATA devices we do not wish to support.
1224 *
1225 * LOCKING:
1226 * Inherited from caller. Some functions called by this function
1227 * obtain the host_set lock.
1228 */
1229
1230static void ata_dev_identify(struct ata_port *ap, unsigned int device)
1231{
1232 struct ata_device *dev = &ap->device[device];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001233 unsigned int major_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 u16 tmp;
1235 unsigned long xfer_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 unsigned int using_edd;
Tejun Heoa0123702005-12-13 14:49:31 +09001237 struct ata_taskfile tf;
1238 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 int rc;
1240
1241 if (!ata_dev_present(dev)) {
1242 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
1243 ap->id, device);
1244 return;
1245 }
1246
1247 if (ap->flags & (ATA_FLAG_SRST | ATA_FLAG_SATA_RESET))
1248 using_edd = 0;
1249 else
1250 using_edd = 1;
1251
1252 DPRINTK("ENTER, host %u, dev %u\n", ap->id, device);
1253
1254 assert (dev->class == ATA_DEV_ATA || dev->class == ATA_DEV_ATAPI ||
1255 dev->class == ATA_DEV_NONE);
1256
1257 ata_dev_select(ap, device, 1, 1); /* select device 0/1 */
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259retry:
Tejun Heoa0123702005-12-13 14:49:31 +09001260 ata_tf_init(ap, &tf, device);
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (dev->class == ATA_DEV_ATA) {
Tejun Heoa0123702005-12-13 14:49:31 +09001263 tf.command = ATA_CMD_ID_ATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 DPRINTK("do ATA identify\n");
1265 } else {
Tejun Heoa0123702005-12-13 14:49:31 +09001266 tf.command = ATA_CMD_ID_ATAPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 DPRINTK("do ATAPI identify\n");
1268 }
1269
Tejun Heoa0123702005-12-13 14:49:31 +09001270 tf.protocol = ATA_PROT_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Tejun Heoa0123702005-12-13 14:49:31 +09001272 err_mask = ata_exec_internal(ap, dev, &tf, DMA_FROM_DEVICE,
1273 dev->id, sizeof(dev->id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Tejun Heoa0123702005-12-13 14:49:31 +09001275 if (err_mask) {
1276 if (err_mask & ~AC_ERR_DEV)
1277 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 /*
1280 * arg! EDD works for all test cases, but seems to return
1281 * the ATA signature for some ATAPI devices. Until the
1282 * reason for this is found and fixed, we fix up the mess
1283 * here. If IDENTIFY DEVICE returns command aborted
1284 * (as ATAPI devices do), then we issue an
1285 * IDENTIFY PACKET DEVICE.
1286 *
1287 * ATA software reset (SRST, the default) does not appear
1288 * to have this problem.
1289 */
Albert Lee7c398332005-11-09 13:03:30 +08001290 if ((using_edd) && (dev->class == ATA_DEV_ATA)) {
Tejun Heoa0123702005-12-13 14:49:31 +09001291 u8 err = tf.feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (err & ATA_ABORTED) {
1293 dev->class = ATA_DEV_ATAPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 goto retry;
1295 }
1296 }
1297 goto err_out;
1298 }
1299
1300 swap_buf_le16(dev->id, ATA_ID_WORDS);
1301
1302 /* print device capabilities */
1303 printk(KERN_DEBUG "ata%u: dev %u cfg "
1304 "49:%04x 82:%04x 83:%04x 84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1305 ap->id, device, dev->id[49],
1306 dev->id[82], dev->id[83], dev->id[84],
1307 dev->id[85], dev->id[86], dev->id[87],
1308 dev->id[88]);
1309
1310 /*
1311 * common ATA, ATAPI feature tests
1312 */
1313
Albert Lee8bf62ec2005-05-12 15:29:42 -04001314 /* we require DMA support (bits 8 of word 49) */
1315 if (!ata_id_has_dma(dev->id)) {
1316 printk(KERN_DEBUG "ata%u: no dma\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 goto err_out_nosup;
1318 }
1319
1320 /* quick-n-dirty find max transfer mode; for printk only */
1321 xfer_modes = dev->id[ATA_ID_UDMA_MODES];
1322 if (!xfer_modes)
1323 xfer_modes = (dev->id[ATA_ID_MWDMA_MODES]) << ATA_SHIFT_MWDMA;
Alan Cox11e29e22005-10-21 18:46:32 -04001324 if (!xfer_modes)
1325 xfer_modes = ata_pio_modes(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 ata_dump_id(dev);
1328
1329 /* ATA-specific feature tests */
1330 if (dev->class == ATA_DEV_ATA) {
1331 if (!ata_id_is_ata(dev->id)) /* sanity check */
1332 goto err_out_nosup;
1333
Albert Lee8bf62ec2005-05-12 15:29:42 -04001334 /* get major version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 tmp = dev->id[ATA_ID_MAJOR_VER];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001336 for (major_version = 14; major_version >= 1; major_version--)
1337 if (tmp & (1 << major_version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 break;
1339
Albert Lee8bf62ec2005-05-12 15:29:42 -04001340 /*
1341 * The exact sequence expected by certain pre-ATA4 drives is:
1342 * SRST RESET
1343 * IDENTIFY
1344 * INITIALIZE DEVICE PARAMETERS
1345 * anything else..
1346 * Some drives were very specific about that exact sequence.
1347 */
Albert Lee59a10b12005-10-12 15:09:42 +08001348 if (major_version < 4 || (!ata_id_has_lba(dev->id))) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001349 ata_dev_init_params(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Albert Lee59a10b12005-10-12 15:09:42 +08001351 /* current CHS translation info (id[53-58]) might be
1352 * changed. reread the identify device info.
1353 */
1354 ata_dev_reread_id(ap, dev);
1355 }
1356
Albert Lee8bf62ec2005-05-12 15:29:42 -04001357 if (ata_id_has_lba(dev->id)) {
1358 dev->flags |= ATA_DFLAG_LBA;
1359
1360 if (ata_id_has_lba48(dev->id)) {
1361 dev->flags |= ATA_DFLAG_LBA48;
1362 dev->n_sectors = ata_id_u64(dev->id, 100);
1363 } else {
1364 dev->n_sectors = ata_id_u32(dev->id, 60);
1365 }
1366
1367 /* print device info to dmesg */
1368 printk(KERN_INFO "ata%u: dev %u ATA-%d, max %s, %Lu sectors:%s\n",
1369 ap->id, device,
1370 major_version,
1371 ata_mode_string(xfer_modes),
1372 (unsigned long long)dev->n_sectors,
1373 dev->flags & ATA_DFLAG_LBA48 ? " LBA48" : " LBA");
1374 } else {
1375 /* CHS */
1376
1377 /* Default translation */
1378 dev->cylinders = dev->id[1];
1379 dev->heads = dev->id[3];
1380 dev->sectors = dev->id[6];
1381 dev->n_sectors = dev->cylinders * dev->heads * dev->sectors;
1382
1383 if (ata_id_current_chs_valid(dev->id)) {
1384 /* Current CHS translation is valid. */
1385 dev->cylinders = dev->id[54];
1386 dev->heads = dev->id[55];
1387 dev->sectors = dev->id[56];
1388
1389 dev->n_sectors = ata_id_u32(dev->id, 57);
1390 }
1391
1392 /* print device info to dmesg */
1393 printk(KERN_INFO "ata%u: dev %u ATA-%d, max %s, %Lu sectors: CHS %d/%d/%d\n",
1394 ap->id, device,
1395 major_version,
1396 ata_mode_string(xfer_modes),
1397 (unsigned long long)dev->n_sectors,
1398 (int)dev->cylinders, (int)dev->heads, (int)dev->sectors);
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401
1402 ap->host->max_cmd_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
1405 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001406 else if (dev->class == ATA_DEV_ATAPI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (ata_id_is_ata(dev->id)) /* sanity check */
1408 goto err_out_nosup;
1409
1410 rc = atapi_cdb_len(dev->id);
1411 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1412 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
1413 goto err_out_nosup;
1414 }
1415 ap->cdb_len = (unsigned int) rc;
1416 ap->host->max_cmd_len = (unsigned char) ap->cdb_len;
1417
1418 /* print device info to dmesg */
1419 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
1420 ap->id, device,
1421 ata_mode_string(xfer_modes));
1422 }
1423
1424 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
1425 return;
1426
1427err_out_nosup:
1428 printk(KERN_WARNING "ata%u: dev %u not supported, ignoring\n",
1429 ap->id, device);
1430err_out:
1431 dev->class++; /* converts ATA_DEV_xxx into ATA_DEV_xxx_UNSUP */
1432 DPRINTK("EXIT, err\n");
1433}
1434
Brad Campbell6f2f3812005-05-12 15:07:47 -04001435
Jeff Garzik057ace52005-10-22 14:27:05 -04001436static inline u8 ata_dev_knobble(const struct ata_port *ap)
Brad Campbell6f2f3812005-05-12 15:07:47 -04001437{
1438 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(ap->device->id)));
1439}
1440
1441/**
1442 * ata_dev_config - Run device specific handlers and check for
1443 * SATA->PATA bridges
Jeff Garzik8a60a072005-07-31 13:13:24 -04001444 * @ap: Bus
Brad Campbell6f2f3812005-05-12 15:07:47 -04001445 * @i: Device
1446 *
1447 * LOCKING:
1448 */
Jeff Garzik8a60a072005-07-31 13:13:24 -04001449
Brad Campbell6f2f3812005-05-12 15:07:47 -04001450void ata_dev_config(struct ata_port *ap, unsigned int i)
1451{
1452 /* limit bridge transfers to udma5, 200 sectors */
1453 if (ata_dev_knobble(ap)) {
1454 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1455 ap->id, ap->device->devno);
1456 ap->udma_mask &= ATA_UDMA5;
1457 ap->host->max_sectors = ATA_MAX_SECTORS;
1458 ap->host->hostt->max_sectors = ATA_MAX_SECTORS;
Alan Cox9d824d02006-01-17 20:51:55 +00001459 ap->device[i].flags |= ATA_DFLAG_LOCK_SECTORS;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001460 }
1461
1462 if (ap->ops->dev_config)
1463 ap->ops->dev_config(ap, &ap->device[i]);
1464}
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466/**
1467 * ata_bus_probe - Reset and probe ATA bus
1468 * @ap: Bus to probe
1469 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001470 * Master ATA bus probing function. Initiates a hardware-dependent
1471 * bus reset, then attempts to identify any devices found on
1472 * the bus.
1473 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001475 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 *
1477 * RETURNS:
1478 * Zero on success, non-zero on error.
1479 */
1480
1481static int ata_bus_probe(struct ata_port *ap)
1482{
1483 unsigned int i, found = 0;
1484
1485 ap->ops->phy_reset(ap);
1486 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1487 goto err_out;
1488
1489 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1490 ata_dev_identify(ap, i);
1491 if (ata_dev_present(&ap->device[i])) {
1492 found = 1;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001493 ata_dev_config(ap,i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
1495 }
1496
1497 if ((!found) || (ap->flags & ATA_FLAG_PORT_DISABLED))
1498 goto err_out_disable;
1499
1500 ata_set_mode(ap);
1501 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1502 goto err_out_disable;
1503
1504 return 0;
1505
1506err_out_disable:
1507 ap->ops->port_disable(ap);
1508err_out:
1509 return -1;
1510}
1511
1512/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001513 * ata_port_probe - Mark port as enabled
1514 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001516 * Modify @ap data structure such that the system
1517 * thinks that the entire port is enabled.
1518 *
1519 * LOCKING: host_set lock, or some other form of
1520 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 */
1522
1523void ata_port_probe(struct ata_port *ap)
1524{
1525 ap->flags &= ~ATA_FLAG_PORT_DISABLED;
1526}
1527
1528/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001529 * sata_print_link_status - Print SATA link status
1530 * @ap: SATA port to printk link status about
1531 *
1532 * This function prints link speed and status of a SATA link.
1533 *
1534 * LOCKING:
1535 * None.
1536 */
1537static void sata_print_link_status(struct ata_port *ap)
1538{
1539 u32 sstatus, tmp;
1540 const char *speed;
1541
1542 if (!ap->ops->scr_read)
1543 return;
1544
1545 sstatus = scr_read(ap, SCR_STATUS);
1546
1547 if (sata_dev_present(ap)) {
1548 tmp = (sstatus >> 4) & 0xf;
1549 if (tmp & (1 << 0))
1550 speed = "1.5";
1551 else if (tmp & (1 << 1))
1552 speed = "3.0";
1553 else
1554 speed = "<unknown>";
1555 printk(KERN_INFO "ata%u: SATA link up %s Gbps (SStatus %X)\n",
1556 ap->id, speed, sstatus);
1557 } else {
1558 printk(KERN_INFO "ata%u: SATA link down (SStatus %X)\n",
1559 ap->id, sstatus);
1560 }
1561}
1562
1563/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001564 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1565 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001567 * This function issues commands to standard SATA Sxxx
1568 * PHY registers, to wake up the phy (and device), and
1569 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 *
1571 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001572 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 *
1574 */
1575void __sata_phy_reset(struct ata_port *ap)
1576{
1577 u32 sstatus;
1578 unsigned long timeout = jiffies + (HZ * 5);
1579
1580 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001581 /* issue phy wake/reset */
1582 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001583 /* Couldn't find anything in SATA I/II specs, but
1584 * AHCI-1.1 10.4.2 says at least 1 ms. */
1585 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
Brett Russcdcca892005-03-28 15:10:27 -05001587 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 /* wait for phy to become ready, if necessary */
1590 do {
1591 msleep(200);
1592 sstatus = scr_read(ap, SCR_STATUS);
1593 if ((sstatus & 0xf) != 1)
1594 break;
1595 } while (time_before(jiffies, timeout));
1596
Tejun Heo3be680b2005-12-19 22:35:02 +09001597 /* print link status */
1598 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001599
Tejun Heo3be680b2005-12-19 22:35:02 +09001600 /* TODO: phy layer with polling, timeouts, etc. */
1601 if (sata_dev_present(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001603 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1607 return;
1608
1609 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1610 ata_port_disable(ap);
1611 return;
1612 }
1613
1614 ap->cbl = ATA_CBL_SATA;
1615}
1616
1617/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001618 * sata_phy_reset - Reset SATA bus.
1619 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001621 * This function resets the SATA bus, and then probes
1622 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 *
1624 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001625 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 *
1627 */
1628void sata_phy_reset(struct ata_port *ap)
1629{
1630 __sata_phy_reset(ap);
1631 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1632 return;
1633 ata_bus_reset(ap);
1634}
1635
1636/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001637 * ata_port_disable - Disable port.
1638 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001640 * Modify @ap data structure such that the system
1641 * thinks that the entire port is disabled, and should
1642 * never attempt to probe or communicate with devices
1643 * on this port.
1644 *
1645 * LOCKING: host_set lock, or some other form of
1646 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 */
1648
1649void ata_port_disable(struct ata_port *ap)
1650{
1651 ap->device[0].class = ATA_DEV_NONE;
1652 ap->device[1].class = ATA_DEV_NONE;
1653 ap->flags |= ATA_FLAG_PORT_DISABLED;
1654}
1655
Alan Cox452503f2005-10-21 19:01:32 -04001656/*
1657 * This mode timing computation functionality is ported over from
1658 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1659 */
1660/*
1661 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1662 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1663 * for PIO 5, which is a nonstandard extension and UDMA6, which
1664 * is currently supported only by Maxtor drives.
1665 */
1666
1667static const struct ata_timing ata_timing[] = {
1668
1669 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1670 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1671 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1672 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1673
1674 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1675 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1676 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1677
1678/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
1679
1680 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1681 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1682 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
1683
1684 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1685 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1686 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1687
1688/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1689 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1690 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1691
1692 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1693 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1694 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1695
1696/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1697
1698 { 0xFF }
1699};
1700
1701#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1702#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1703
1704static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1705{
1706 q->setup = EZ(t->setup * 1000, T);
1707 q->act8b = EZ(t->act8b * 1000, T);
1708 q->rec8b = EZ(t->rec8b * 1000, T);
1709 q->cyc8b = EZ(t->cyc8b * 1000, T);
1710 q->active = EZ(t->active * 1000, T);
1711 q->recover = EZ(t->recover * 1000, T);
1712 q->cycle = EZ(t->cycle * 1000, T);
1713 q->udma = EZ(t->udma * 1000, UT);
1714}
1715
1716void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1717 struct ata_timing *m, unsigned int what)
1718{
1719 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1720 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1721 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1722 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1723 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1724 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1725 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1726 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1727}
1728
1729static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1730{
1731 const struct ata_timing *t;
1732
1733 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001734 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001735 return NULL;
1736 return t;
1737}
1738
1739int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1740 struct ata_timing *t, int T, int UT)
1741{
1742 const struct ata_timing *s;
1743 struct ata_timing p;
1744
1745 /*
1746 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001747 */
Alan Cox452503f2005-10-21 19:01:32 -04001748
1749 if (!(s = ata_timing_find_mode(speed)))
1750 return -EINVAL;
1751
Albert Lee75b1f2f2005-11-16 17:06:18 +08001752 memcpy(t, s, sizeof(*s));
1753
Alan Cox452503f2005-10-21 19:01:32 -04001754 /*
1755 * If the drive is an EIDE drive, it can tell us it needs extended
1756 * PIO/MW_DMA cycle timing.
1757 */
1758
1759 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1760 memset(&p, 0, sizeof(p));
1761 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1762 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1763 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1764 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1765 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1766 }
1767 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1768 }
1769
1770 /*
1771 * Convert the timing to bus clock counts.
1772 */
1773
Albert Lee75b1f2f2005-11-16 17:06:18 +08001774 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001775
1776 /*
1777 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY, S.M.A.R.T
1778 * and some other commands. We have to ensure that the DMA cycle timing is
1779 * slower/equal than the fastest PIO timing.
1780 */
1781
1782 if (speed > XFER_PIO_4) {
1783 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1784 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1785 }
1786
1787 /*
1788 * Lenghten active & recovery time so that cycle time is correct.
1789 */
1790
1791 if (t->act8b + t->rec8b < t->cyc8b) {
1792 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1793 t->rec8b = t->cyc8b - t->act8b;
1794 }
1795
1796 if (t->active + t->recover < t->cycle) {
1797 t->active += (t->cycle - (t->active + t->recover)) / 2;
1798 t->recover = t->cycle - t->active;
1799 }
1800
1801 return 0;
1802}
1803
Jeff Garzik057ace52005-10-22 14:27:05 -04001804static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 unsigned int shift;
1806 u8 base;
1807} xfer_mode_classes[] = {
1808 { ATA_SHIFT_UDMA, XFER_UDMA_0 },
1809 { ATA_SHIFT_MWDMA, XFER_MW_DMA_0 },
1810 { ATA_SHIFT_PIO, XFER_PIO_0 },
1811};
1812
Arjan van de Ven858119e2006-01-14 13:20:43 -08001813static u8 base_from_shift(unsigned int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
1815 int i;
1816
1817 for (i = 0; i < ARRAY_SIZE(xfer_mode_classes); i++)
1818 if (xfer_mode_classes[i].shift == shift)
1819 return xfer_mode_classes[i].base;
1820
1821 return 0xff;
1822}
1823
1824static void ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
1825{
1826 int ofs, idx;
1827 u8 base;
1828
1829 if (!ata_dev_present(dev) || (ap->flags & ATA_FLAG_PORT_DISABLED))
1830 return;
1831
1832 if (dev->xfer_shift == ATA_SHIFT_PIO)
1833 dev->flags |= ATA_DFLAG_PIO;
1834
1835 ata_dev_set_xfermode(ap, dev);
1836
1837 base = base_from_shift(dev->xfer_shift);
1838 ofs = dev->xfer_mode - base;
1839 idx = ofs + dev->xfer_shift;
1840 WARN_ON(idx >= ARRAY_SIZE(xfer_mode_str));
1841
1842 DPRINTK("idx=%d xfer_shift=%u, xfer_mode=0x%x, base=0x%x, offset=%d\n",
1843 idx, dev->xfer_shift, (int)dev->xfer_mode, (int)base, ofs);
1844
1845 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
1846 ap->id, dev->devno, xfer_mode_str[idx]);
1847}
1848
1849static int ata_host_set_pio(struct ata_port *ap)
1850{
1851 unsigned int mask;
1852 int x, i;
1853 u8 base, xfer_mode;
1854
1855 mask = ata_get_mode_mask(ap, ATA_SHIFT_PIO);
1856 x = fgb(mask);
1857 if (x < 0) {
1858 printk(KERN_WARNING "ata%u: no PIO support\n", ap->id);
1859 return -1;
1860 }
1861
1862 base = base_from_shift(ATA_SHIFT_PIO);
1863 xfer_mode = base + x;
1864
1865 DPRINTK("base 0x%x xfer_mode 0x%x mask 0x%x x %d\n",
1866 (int)base, (int)xfer_mode, mask, x);
1867
1868 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1869 struct ata_device *dev = &ap->device[i];
1870 if (ata_dev_present(dev)) {
1871 dev->pio_mode = xfer_mode;
1872 dev->xfer_mode = xfer_mode;
1873 dev->xfer_shift = ATA_SHIFT_PIO;
1874 if (ap->ops->set_piomode)
1875 ap->ops->set_piomode(ap, dev);
1876 }
1877 }
1878
1879 return 0;
1880}
1881
1882static void ata_host_set_dma(struct ata_port *ap, u8 xfer_mode,
1883 unsigned int xfer_shift)
1884{
1885 int i;
1886
1887 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1888 struct ata_device *dev = &ap->device[i];
1889 if (ata_dev_present(dev)) {
1890 dev->dma_mode = xfer_mode;
1891 dev->xfer_mode = xfer_mode;
1892 dev->xfer_shift = xfer_shift;
1893 if (ap->ops->set_dmamode)
1894 ap->ops->set_dmamode(ap, dev);
1895 }
1896 }
1897}
1898
1899/**
1900 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1901 * @ap: port on which timings will be programmed
1902 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001903 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.).
1904 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001906 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 *
1908 */
1909static void ata_set_mode(struct ata_port *ap)
1910{
Albert Lee8cbd6df2005-10-12 15:06:27 +08001911 unsigned int xfer_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 u8 xfer_mode;
1913 int rc;
1914
1915 /* step 1: always set host PIO timings */
1916 rc = ata_host_set_pio(ap);
1917 if (rc)
1918 goto err_out;
1919
1920 /* step 2: choose the best data xfer mode */
1921 xfer_mode = xfer_shift = 0;
1922 rc = ata_choose_xfer_mode(ap, &xfer_mode, &xfer_shift);
1923 if (rc)
1924 goto err_out;
1925
1926 /* step 3: if that xfer mode isn't PIO, set host DMA timings */
1927 if (xfer_shift != ATA_SHIFT_PIO)
1928 ata_host_set_dma(ap, xfer_mode, xfer_shift);
1929
1930 /* step 4: update devices' xfer mode */
1931 ata_dev_set_mode(ap, &ap->device[0]);
1932 ata_dev_set_mode(ap, &ap->device[1]);
1933
1934 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1935 return;
1936
1937 if (ap->ops->post_set_mode)
1938 ap->ops->post_set_mode(ap);
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 return;
1941
1942err_out:
1943 ata_port_disable(ap);
1944}
1945
1946/**
1947 * ata_busy_sleep - sleep until BSY clears, or timeout
1948 * @ap: port containing status register to be polled
1949 * @tmout_pat: impatience timeout
1950 * @tmout: overall timeout
1951 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001952 * Sleep until ATA Status register bit BSY clears,
1953 * or a timeout occurs.
1954 *
1955 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 *
1957 */
1958
1959static unsigned int ata_busy_sleep (struct ata_port *ap,
1960 unsigned long tmout_pat,
1961 unsigned long tmout)
1962{
1963 unsigned long timer_start, timeout;
1964 u8 status;
1965
1966 status = ata_busy_wait(ap, ATA_BUSY, 300);
1967 timer_start = jiffies;
1968 timeout = timer_start + tmout_pat;
1969 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1970 msleep(50);
1971 status = ata_busy_wait(ap, ATA_BUSY, 3);
1972 }
1973
1974 if (status & ATA_BUSY)
1975 printk(KERN_WARNING "ata%u is slow to respond, "
1976 "please be patient\n", ap->id);
1977
1978 timeout = timer_start + tmout;
1979 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1980 msleep(50);
1981 status = ata_chk_status(ap);
1982 }
1983
1984 if (status & ATA_BUSY) {
1985 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
1986 ap->id, tmout / HZ);
1987 return 1;
1988 }
1989
1990 return 0;
1991}
1992
1993static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
1994{
1995 struct ata_ioports *ioaddr = &ap->ioaddr;
1996 unsigned int dev0 = devmask & (1 << 0);
1997 unsigned int dev1 = devmask & (1 << 1);
1998 unsigned long timeout;
1999
2000 /* if device 0 was found in ata_devchk, wait for its
2001 * BSY bit to clear
2002 */
2003 if (dev0)
2004 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2005
2006 /* if device 1 was found in ata_devchk, wait for
2007 * register access, then wait for BSY to clear
2008 */
2009 timeout = jiffies + ATA_TMOUT_BOOT;
2010 while (dev1) {
2011 u8 nsect, lbal;
2012
2013 ap->ops->dev_select(ap, 1);
2014 if (ap->flags & ATA_FLAG_MMIO) {
2015 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2016 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2017 } else {
2018 nsect = inb(ioaddr->nsect_addr);
2019 lbal = inb(ioaddr->lbal_addr);
2020 }
2021 if ((nsect == 1) && (lbal == 1))
2022 break;
2023 if (time_after(jiffies, timeout)) {
2024 dev1 = 0;
2025 break;
2026 }
2027 msleep(50); /* give drive a breather */
2028 }
2029 if (dev1)
2030 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2031
2032 /* is all this really necessary? */
2033 ap->ops->dev_select(ap, 0);
2034 if (dev1)
2035 ap->ops->dev_select(ap, 1);
2036 if (dev0)
2037 ap->ops->dev_select(ap, 0);
2038}
2039
2040/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002041 * ata_bus_edd - Issue EXECUTE DEVICE DIAGNOSTIC command.
2042 * @ap: Port to reset and probe
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002044 * Use the EXECUTE DEVICE DIAGNOSTIC command to reset and
2045 * probe the bus. Not often used these days.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 *
2047 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002048 * PCI/etc. bus probe sem.
Jeff Garzike5338252005-10-30 21:37:17 -05002049 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 *
2051 */
2052
2053static unsigned int ata_bus_edd(struct ata_port *ap)
2054{
2055 struct ata_taskfile tf;
Jeff Garzike5338252005-10-30 21:37:17 -05002056 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058 /* set up execute-device-diag (bus reset) taskfile */
2059 /* also, take interrupts to a known state (disabled) */
2060 DPRINTK("execute-device-diag\n");
2061 ata_tf_init(ap, &tf, 0);
2062 tf.ctl |= ATA_NIEN;
2063 tf.command = ATA_CMD_EDD;
2064 tf.protocol = ATA_PROT_NODATA;
2065
2066 /* do bus reset */
Jeff Garzike5338252005-10-30 21:37:17 -05002067 spin_lock_irqsave(&ap->host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 ata_tf_to_host(ap, &tf);
Jeff Garzike5338252005-10-30 21:37:17 -05002069 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 /* spec says at least 2ms. but who knows with those
2072 * crazy ATAPI devices...
2073 */
2074 msleep(150);
2075
2076 return ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2077}
2078
2079static unsigned int ata_bus_softreset(struct ata_port *ap,
2080 unsigned int devmask)
2081{
2082 struct ata_ioports *ioaddr = &ap->ioaddr;
2083
2084 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2085
2086 /* software reset. causes dev0 to be selected */
2087 if (ap->flags & ATA_FLAG_MMIO) {
2088 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2089 udelay(20); /* FIXME: flush */
2090 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2091 udelay(20); /* FIXME: flush */
2092 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2093 } else {
2094 outb(ap->ctl, ioaddr->ctl_addr);
2095 udelay(10);
2096 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2097 udelay(10);
2098 outb(ap->ctl, ioaddr->ctl_addr);
2099 }
2100
2101 /* spec mandates ">= 2ms" before checking status.
2102 * We wait 150ms, because that was the magic delay used for
2103 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2104 * between when the ATA command register is written, and then
2105 * status is checked. Because waiting for "a while" before
2106 * checking status is fine, post SRST, we perform this magic
2107 * delay here as well.
2108 */
2109 msleep(150);
2110
2111 ata_bus_post_reset(ap, devmask);
2112
2113 return 0;
2114}
2115
2116/**
2117 * ata_bus_reset - reset host port and associated ATA channel
2118 * @ap: port to reset
2119 *
2120 * This is typically the first time we actually start issuing
2121 * commands to the ATA channel. We wait for BSY to clear, then
2122 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2123 * result. Determine what devices, if any, are on the channel
2124 * by looking at the device 0/1 error register. Look at the signature
2125 * stored in each device's taskfile registers, to determine if
2126 * the device is ATA or ATAPI.
2127 *
2128 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002129 * PCI/etc. bus probe sem.
2130 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 *
2132 * SIDE EFFECTS:
2133 * Sets ATA_FLAG_PORT_DISABLED if bus reset fails.
2134 */
2135
2136void ata_bus_reset(struct ata_port *ap)
2137{
2138 struct ata_ioports *ioaddr = &ap->ioaddr;
2139 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2140 u8 err;
2141 unsigned int dev0, dev1 = 0, rc = 0, devmask = 0;
2142
2143 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2144
2145 /* determine if device 0/1 are present */
2146 if (ap->flags & ATA_FLAG_SATA_RESET)
2147 dev0 = 1;
2148 else {
2149 dev0 = ata_devchk(ap, 0);
2150 if (slave_possible)
2151 dev1 = ata_devchk(ap, 1);
2152 }
2153
2154 if (dev0)
2155 devmask |= (1 << 0);
2156 if (dev1)
2157 devmask |= (1 << 1);
2158
2159 /* select device 0 again */
2160 ap->ops->dev_select(ap, 0);
2161
2162 /* issue bus reset */
2163 if (ap->flags & ATA_FLAG_SRST)
2164 rc = ata_bus_softreset(ap, devmask);
2165 else if ((ap->flags & ATA_FLAG_SATA_RESET) == 0) {
2166 /* set up device control */
2167 if (ap->flags & ATA_FLAG_MMIO)
2168 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2169 else
2170 outb(ap->ctl, ioaddr->ctl_addr);
2171 rc = ata_bus_edd(ap);
2172 }
2173
2174 if (rc)
2175 goto err_out;
2176
2177 /*
2178 * determine by signature whether we have ATA or ATAPI devices
2179 */
2180 err = ata_dev_try_classify(ap, 0);
2181 if ((slave_possible) && (err != 0x81))
2182 ata_dev_try_classify(ap, 1);
2183
2184 /* re-enable interrupts */
2185 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2186 ata_irq_on(ap);
2187
2188 /* is double-select really necessary? */
2189 if (ap->device[1].class != ATA_DEV_NONE)
2190 ap->ops->dev_select(ap, 1);
2191 if (ap->device[0].class != ATA_DEV_NONE)
2192 ap->ops->dev_select(ap, 0);
2193
2194 /* if no devices were detected, disable this port */
2195 if ((ap->device[0].class == ATA_DEV_NONE) &&
2196 (ap->device[1].class == ATA_DEV_NONE))
2197 goto err_out;
2198
2199 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2200 /* set up device control for ATA_FLAG_SATA_RESET */
2201 if (ap->flags & ATA_FLAG_MMIO)
2202 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2203 else
2204 outb(ap->ctl, ioaddr->ctl_addr);
2205 }
2206
2207 DPRINTK("EXIT\n");
2208 return;
2209
2210err_out:
2211 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2212 ap->ops->port_disable(ap);
2213
2214 DPRINTK("EXIT\n");
2215}
2216
Jeff Garzik057ace52005-10-22 14:27:05 -04002217static void ata_pr_blacklisted(const struct ata_port *ap,
2218 const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
2220 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, disabling DMA\n",
2221 ap->id, dev->devno);
2222}
2223
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002224static const char * const ata_dma_blacklist [] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 "WDC AC11000H",
2226 "WDC AC22100H",
2227 "WDC AC32500H",
2228 "WDC AC33100H",
2229 "WDC AC31600H",
2230 "WDC AC32100H",
2231 "WDC AC23200L",
2232 "Compaq CRD-8241B",
2233 "CRD-8400B",
2234 "CRD-8480B",
2235 "CRD-8482B",
2236 "CRD-84",
2237 "SanDisk SDP3B",
2238 "SanDisk SDP3B-64",
2239 "SANYO CD-ROM CRD",
2240 "HITACHI CDR-8",
2241 "HITACHI CDR-8335",
2242 "HITACHI CDR-8435",
2243 "Toshiba CD-ROM XM-6202B",
Jeff Garzike9222562005-06-28 00:03:37 -04002244 "TOSHIBA CD-ROM XM-1702BC",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 "CD-532E-A",
2246 "E-IDE CD-ROM CR-840",
2247 "CD-ROM Drive/F5A",
2248 "WPI CDD-820",
2249 "SAMSUNG CD-ROM SC-148C",
2250 "SAMSUNG CD-ROM SC",
2251 "SanDisk SDP3B-64",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 "ATAPI CD-ROM DRIVE 40X MAXIMUM",
2253 "_NEC DV5800A",
2254};
2255
Jeff Garzik057ace52005-10-22 14:27:05 -04002256static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
2258 unsigned char model_num[40];
2259 char *s;
2260 unsigned int len;
2261 int i;
2262
2263 ata_dev_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2264 sizeof(model_num));
2265 s = &model_num[0];
2266 len = strnlen(s, sizeof(model_num));
2267
2268 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2269 while ((len > 0) && (s[len - 1] == ' ')) {
2270 len--;
2271 s[len] = 0;
2272 }
2273
2274 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i++)
2275 if (!strncmp(ata_dma_blacklist[i], s, len))
2276 return 1;
2277
2278 return 0;
2279}
2280
Jeff Garzik057ace52005-10-22 14:27:05 -04002281static unsigned int ata_get_mode_mask(const struct ata_port *ap, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282{
Jeff Garzik057ace52005-10-22 14:27:05 -04002283 const struct ata_device *master, *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 unsigned int mask;
2285
2286 master = &ap->device[0];
2287 slave = &ap->device[1];
2288
2289 assert (ata_dev_present(master) || ata_dev_present(slave));
2290
2291 if (shift == ATA_SHIFT_UDMA) {
2292 mask = ap->udma_mask;
2293 if (ata_dev_present(master)) {
2294 mask &= (master->id[ATA_ID_UDMA_MODES] & 0xff);
Jeff Garzik057ace52005-10-22 14:27:05 -04002295 if (ata_dma_blacklisted(master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 mask = 0;
2297 ata_pr_blacklisted(ap, master);
2298 }
2299 }
2300 if (ata_dev_present(slave)) {
2301 mask &= (slave->id[ATA_ID_UDMA_MODES] & 0xff);
Jeff Garzik057ace52005-10-22 14:27:05 -04002302 if (ata_dma_blacklisted(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 mask = 0;
2304 ata_pr_blacklisted(ap, slave);
2305 }
2306 }
2307 }
2308 else if (shift == ATA_SHIFT_MWDMA) {
2309 mask = ap->mwdma_mask;
2310 if (ata_dev_present(master)) {
2311 mask &= (master->id[ATA_ID_MWDMA_MODES] & 0x07);
Jeff Garzik057ace52005-10-22 14:27:05 -04002312 if (ata_dma_blacklisted(master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 mask = 0;
2314 ata_pr_blacklisted(ap, master);
2315 }
2316 }
2317 if (ata_dev_present(slave)) {
2318 mask &= (slave->id[ATA_ID_MWDMA_MODES] & 0x07);
Jeff Garzik057ace52005-10-22 14:27:05 -04002319 if (ata_dma_blacklisted(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 mask = 0;
2321 ata_pr_blacklisted(ap, slave);
2322 }
2323 }
2324 }
2325 else if (shift == ATA_SHIFT_PIO) {
2326 mask = ap->pio_mask;
2327 if (ata_dev_present(master)) {
2328 /* spec doesn't return explicit support for
2329 * PIO0-2, so we fake it
2330 */
2331 u16 tmp_mode = master->id[ATA_ID_PIO_MODES] & 0x03;
2332 tmp_mode <<= 3;
2333 tmp_mode |= 0x7;
2334 mask &= tmp_mode;
2335 }
2336 if (ata_dev_present(slave)) {
2337 /* spec doesn't return explicit support for
2338 * PIO0-2, so we fake it
2339 */
2340 u16 tmp_mode = slave->id[ATA_ID_PIO_MODES] & 0x03;
2341 tmp_mode <<= 3;
2342 tmp_mode |= 0x7;
2343 mask &= tmp_mode;
2344 }
2345 }
2346 else {
2347 mask = 0xffffffff; /* shut up compiler warning */
2348 BUG();
2349 }
2350
2351 return mask;
2352}
2353
2354/* find greatest bit */
2355static int fgb(u32 bitmap)
2356{
2357 unsigned int i;
2358 int x = -1;
2359
2360 for (i = 0; i < 32; i++)
2361 if (bitmap & (1 << i))
2362 x = i;
2363
2364 return x;
2365}
2366
2367/**
2368 * ata_choose_xfer_mode - attempt to find best transfer mode
2369 * @ap: Port for which an xfer mode will be selected
2370 * @xfer_mode_out: (output) SET FEATURES - XFER MODE code
2371 * @xfer_shift_out: (output) bit shift that selects this mode
2372 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002373 * Based on host and device capabilities, determine the
2374 * maximum transfer mode that is amenable to all.
2375 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002377 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 *
2379 * RETURNS:
2380 * Zero on success, negative on error.
2381 */
2382
Jeff Garzik057ace52005-10-22 14:27:05 -04002383static int ata_choose_xfer_mode(const struct ata_port *ap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 u8 *xfer_mode_out,
2385 unsigned int *xfer_shift_out)
2386{
2387 unsigned int mask, shift;
2388 int x, i;
2389
2390 for (i = 0; i < ARRAY_SIZE(xfer_mode_classes); i++) {
2391 shift = xfer_mode_classes[i].shift;
2392 mask = ata_get_mode_mask(ap, shift);
2393
2394 x = fgb(mask);
2395 if (x >= 0) {
2396 *xfer_mode_out = xfer_mode_classes[i].base + x;
2397 *xfer_shift_out = shift;
2398 return 0;
2399 }
2400 }
2401
2402 return -1;
2403}
2404
2405/**
2406 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2407 * @ap: Port associated with device @dev
2408 * @dev: Device to which command will be sent
2409 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002410 * Issue SET FEATURES - XFER MODE command to device @dev
2411 * on port @ap.
2412 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002414 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 */
2416
2417static void ata_dev_set_xfermode(struct ata_port *ap, struct ata_device *dev)
2418{
Tejun Heoa0123702005-12-13 14:49:31 +09002419 struct ata_taskfile tf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421 /* set up set-features taskfile */
2422 DPRINTK("set features - xfer mode\n");
2423
Tejun Heoa0123702005-12-13 14:49:31 +09002424 ata_tf_init(ap, &tf, dev->devno);
2425 tf.command = ATA_CMD_SET_FEATURES;
2426 tf.feature = SETFEATURES_XFER;
2427 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2428 tf.protocol = ATA_PROT_NODATA;
2429 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Tejun Heoa0123702005-12-13 14:49:31 +09002431 if (ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0)) {
2432 printk(KERN_ERR "ata%u: failed to set xfermode, disabled\n",
2433 ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 ata_port_disable(ap);
Tejun Heoa0123702005-12-13 14:49:31 +09002435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437 DPRINTK("EXIT\n");
2438}
2439
2440/**
Albert Lee59a10b12005-10-12 15:09:42 +08002441 * ata_dev_reread_id - Reread the device identify device info
2442 * @ap: port where the device is
2443 * @dev: device to reread the identify device info
2444 *
2445 * LOCKING:
2446 */
2447
2448static void ata_dev_reread_id(struct ata_port *ap, struct ata_device *dev)
2449{
Tejun Heoa0123702005-12-13 14:49:31 +09002450 struct ata_taskfile tf;
Albert Lee59a10b12005-10-12 15:09:42 +08002451
Tejun Heoa0123702005-12-13 14:49:31 +09002452 ata_tf_init(ap, &tf, dev->devno);
Albert Lee59a10b12005-10-12 15:09:42 +08002453
2454 if (dev->class == ATA_DEV_ATA) {
Tejun Heoa0123702005-12-13 14:49:31 +09002455 tf.command = ATA_CMD_ID_ATA;
Albert Lee59a10b12005-10-12 15:09:42 +08002456 DPRINTK("do ATA identify\n");
2457 } else {
Tejun Heoa0123702005-12-13 14:49:31 +09002458 tf.command = ATA_CMD_ID_ATAPI;
Albert Lee59a10b12005-10-12 15:09:42 +08002459 DPRINTK("do ATAPI identify\n");
2460 }
2461
Tejun Heoa0123702005-12-13 14:49:31 +09002462 tf.flags |= ATA_TFLAG_DEVICE;
2463 tf.protocol = ATA_PROT_PIO;
Albert Lee59a10b12005-10-12 15:09:42 +08002464
Tejun Heoa0123702005-12-13 14:49:31 +09002465 if (ata_exec_internal(ap, dev, &tf, DMA_FROM_DEVICE,
2466 dev->id, sizeof(dev->id)))
Albert Lee59a10b12005-10-12 15:09:42 +08002467 goto err_out;
2468
Albert Lee59a10b12005-10-12 15:09:42 +08002469 swap_buf_le16(dev->id, ATA_ID_WORDS);
2470
2471 ata_dump_id(dev);
2472
2473 DPRINTK("EXIT\n");
2474
2475 return;
2476err_out:
Tejun Heoa0123702005-12-13 14:49:31 +09002477 printk(KERN_ERR "ata%u: failed to reread ID, disabled\n", ap->id);
Albert Lee59a10b12005-10-12 15:09:42 +08002478 ata_port_disable(ap);
2479}
2480
2481/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04002482 * ata_dev_init_params - Issue INIT DEV PARAMS command
2483 * @ap: Port associated with device @dev
2484 * @dev: Device to which command will be sent
2485 *
2486 * LOCKING:
2487 */
2488
2489static void ata_dev_init_params(struct ata_port *ap, struct ata_device *dev)
2490{
Tejun Heoa0123702005-12-13 14:49:31 +09002491 struct ata_taskfile tf;
Albert Lee8bf62ec2005-05-12 15:29:42 -04002492 u16 sectors = dev->id[6];
2493 u16 heads = dev->id[3];
2494
2495 /* Number of sectors per track 1-255. Number of heads 1-16 */
2496 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
2497 return;
2498
2499 /* set up init dev params taskfile */
2500 DPRINTK("init dev params \n");
2501
Tejun Heoa0123702005-12-13 14:49:31 +09002502 ata_tf_init(ap, &tf, dev->devno);
2503 tf.command = ATA_CMD_INIT_DEV_PARAMS;
2504 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2505 tf.protocol = ATA_PROT_NODATA;
2506 tf.nsect = sectors;
2507 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04002508
Tejun Heoa0123702005-12-13 14:49:31 +09002509 if (ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0)) {
2510 printk(KERN_ERR "ata%u: failed to init parameters, disabled\n",
2511 ap->id);
Albert Lee8bf62ec2005-05-12 15:29:42 -04002512 ata_port_disable(ap);
Tejun Heoa0123702005-12-13 14:49:31 +09002513 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04002514
2515 DPRINTK("EXIT\n");
2516}
2517
2518/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002519 * ata_sg_clean - Unmap DMA memory associated with command
2520 * @qc: Command containing DMA memory to be released
2521 *
2522 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 *
2524 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002525 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 */
2527
2528static void ata_sg_clean(struct ata_queued_cmd *qc)
2529{
2530 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002531 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002533 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
2535 assert(qc->flags & ATA_QCFLAG_DMAMAP);
2536 assert(sg != NULL);
2537
2538 if (qc->flags & ATA_QCFLAG_SINGLE)
2539 assert(qc->n_elem == 1);
2540
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002541 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002543 /* if we padded the buffer out to 32-bit bound, and data
2544 * xfer direction is from-device, we must copy from the
2545 * pad buffer back into the supplied buffer
2546 */
2547 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
2548 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
2549
2550 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05002551 if (qc->n_elem)
2552 dma_unmap_sg(ap->host_set->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002553 /* restore last sg */
2554 sg[qc->orig_n_elem - 1].length += qc->pad_len;
2555 if (pad_buf) {
2556 struct scatterlist *psg = &qc->pad_sgent;
2557 void *addr = kmap_atomic(psg->page, KM_IRQ0);
2558 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05002559 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002560 }
2561 } else {
Jeff Garzike1410f22005-11-14 14:06:26 -05002562 if (sg_dma_len(&sg[0]) > 0)
2563 dma_unmap_single(ap->host_set->dev,
2564 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
2565 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002566 /* restore sg */
2567 sg->length += qc->pad_len;
2568 if (pad_buf)
2569 memcpy(qc->buf_virt + sg->length - qc->pad_len,
2570 pad_buf, qc->pad_len);
2571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002574 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575}
2576
2577/**
2578 * ata_fill_sg - Fill PCI IDE PRD table
2579 * @qc: Metadata associated with taskfile to be transferred
2580 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002581 * Fill PCI IDE PRD (scatter-gather) table with segments
2582 * associated with the current disk command.
2583 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04002585 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 *
2587 */
2588static void ata_fill_sg(struct ata_queued_cmd *qc)
2589{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002591 struct scatterlist *sg;
2592 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002594 assert(qc->__sg != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 assert(qc->n_elem > 0);
2596
2597 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002598 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 u32 addr, offset;
2600 u32 sg_len, len;
2601
2602 /* determine if physical DMA addr spans 64K boundary.
2603 * Note h/w doesn't support 64-bit, so we unconditionally
2604 * truncate dma_addr_t to u32.
2605 */
2606 addr = (u32) sg_dma_address(sg);
2607 sg_len = sg_dma_len(sg);
2608
2609 while (sg_len) {
2610 offset = addr & 0xffff;
2611 len = sg_len;
2612 if ((offset + sg_len) > 0x10000)
2613 len = 0x10000 - offset;
2614
2615 ap->prd[idx].addr = cpu_to_le32(addr);
2616 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
2617 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
2618
2619 idx++;
2620 sg_len -= len;
2621 addr += len;
2622 }
2623 }
2624
2625 if (idx)
2626 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
2627}
2628/**
2629 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
2630 * @qc: Metadata associated with taskfile to check
2631 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002632 * Allow low-level driver to filter ATA PACKET commands, returning
2633 * a status indicating whether or not it is OK to use DMA for the
2634 * supplied PACKET command.
2635 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002637 * spin_lock_irqsave(host_set lock)
2638 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 * RETURNS: 0 when ATAPI DMA can be used
2640 * nonzero otherwise
2641 */
2642int ata_check_atapi_dma(struct ata_queued_cmd *qc)
2643{
2644 struct ata_port *ap = qc->ap;
2645 int rc = 0; /* Assume ATAPI DMA is OK by default */
2646
2647 if (ap->ops->check_atapi_dma)
2648 rc = ap->ops->check_atapi_dma(qc);
2649
2650 return rc;
2651}
2652/**
2653 * ata_qc_prep - Prepare taskfile for submission
2654 * @qc: Metadata associated with taskfile to be prepared
2655 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002656 * Prepare ATA taskfile for submission.
2657 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 * LOCKING:
2659 * spin_lock_irqsave(host_set lock)
2660 */
2661void ata_qc_prep(struct ata_queued_cmd *qc)
2662{
2663 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
2664 return;
2665
2666 ata_fill_sg(qc);
2667}
2668
Jeff Garzik0cba6322005-05-30 19:49:12 -04002669/**
2670 * ata_sg_init_one - Associate command with memory buffer
2671 * @qc: Command to be associated
2672 * @buf: Memory buffer
2673 * @buflen: Length of memory buffer, in bytes.
2674 *
2675 * Initialize the data-related elements of queued_cmd @qc
2676 * to point to a single memory buffer, @buf of byte length @buflen.
2677 *
2678 * LOCKING:
2679 * spin_lock_irqsave(host_set lock)
2680 */
2681
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
2683{
2684 struct scatterlist *sg;
2685
2686 qc->flags |= ATA_QCFLAG_SINGLE;
2687
2688 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002689 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002691 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 qc->buf_virt = buf;
2693
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002694 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05002695 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
Jeff Garzik0cba6322005-05-30 19:49:12 -04002698/**
2699 * ata_sg_init - Associate command with scatter-gather table.
2700 * @qc: Command to be associated
2701 * @sg: Scatter-gather table.
2702 * @n_elem: Number of elements in s/g table.
2703 *
2704 * Initialize the data-related elements of queued_cmd @qc
2705 * to point to a scatter-gather table @sg, containing @n_elem
2706 * elements.
2707 *
2708 * LOCKING:
2709 * spin_lock_irqsave(host_set lock)
2710 */
2711
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
2713 unsigned int n_elem)
2714{
2715 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002716 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002718 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719}
2720
2721/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002722 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
2723 * @qc: Command with memory buffer to be mapped.
2724 *
2725 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 *
2727 * LOCKING:
2728 * spin_lock_irqsave(host_set lock)
2729 *
2730 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002731 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 */
2733
2734static int ata_sg_setup_one(struct ata_queued_cmd *qc)
2735{
2736 struct ata_port *ap = qc->ap;
2737 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002738 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 dma_addr_t dma_address;
2740
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002741 /* we must lengthen transfers to end on a 32-bit boundary */
2742 qc->pad_len = sg->length & 3;
2743 if (qc->pad_len) {
2744 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
2745 struct scatterlist *psg = &qc->pad_sgent;
2746
2747 assert(qc->dev->class == ATA_DEV_ATAPI);
2748
2749 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
2750
2751 if (qc->tf.flags & ATA_TFLAG_WRITE)
2752 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
2753 qc->pad_len);
2754
2755 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
2756 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
2757 /* trim sg */
2758 sg->length -= qc->pad_len;
2759
2760 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
2761 sg->length, qc->pad_len);
2762 }
2763
Jeff Garzike1410f22005-11-14 14:06:26 -05002764 if (!sg->length) {
2765 sg_dma_address(sg) = 0;
2766 goto skip_map;
2767 }
2768
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 dma_address = dma_map_single(ap->host_set->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04002770 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05002771 if (dma_mapping_error(dma_address)) {
2772 /* restore sg */
2773 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05002775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
2777 sg_dma_address(sg) = dma_address;
Jeff Garzike1410f22005-11-14 14:06:26 -05002778skip_map:
Albert Lee32529e02005-05-26 03:49:42 -04002779 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
2781 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
2782 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
2783
2784 return 0;
2785}
2786
2787/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002788 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
2789 * @qc: Command with scatter-gather table to be mapped.
2790 *
2791 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 *
2793 * LOCKING:
2794 * spin_lock_irqsave(host_set lock)
2795 *
2796 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002797 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 *
2799 */
2800
2801static int ata_sg_setup(struct ata_queued_cmd *qc)
2802{
2803 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002804 struct scatterlist *sg = qc->__sg;
2805 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05002806 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808 VPRINTK("ENTER, ata%u\n", ap->id);
2809 assert(qc->flags & ATA_QCFLAG_SG);
2810
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002811 /* we must lengthen transfers to end on a 32-bit boundary */
2812 qc->pad_len = lsg->length & 3;
2813 if (qc->pad_len) {
2814 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
2815 struct scatterlist *psg = &qc->pad_sgent;
2816 unsigned int offset;
2817
2818 assert(qc->dev->class == ATA_DEV_ATAPI);
2819
2820 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
2821
2822 /*
2823 * psg->page/offset are used to copy to-be-written
2824 * data in this function or read data in ata_sg_clean.
2825 */
2826 offset = lsg->offset + lsg->length - qc->pad_len;
2827 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
2828 psg->offset = offset_in_page(offset);
2829
2830 if (qc->tf.flags & ATA_TFLAG_WRITE) {
2831 void *addr = kmap_atomic(psg->page, KM_IRQ0);
2832 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05002833 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002834 }
2835
2836 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
2837 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
2838 /* trim last sg */
2839 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05002840 if (lsg->length == 0)
2841 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04002842
2843 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
2844 qc->n_elem - 1, lsg->length, qc->pad_len);
2845 }
2846
Jeff Garzike1410f22005-11-14 14:06:26 -05002847 pre_n_elem = qc->n_elem;
2848 if (trim_sg && pre_n_elem)
2849 pre_n_elem--;
2850
2851 if (!pre_n_elem) {
2852 n_elem = 0;
2853 goto skip_map;
2854 }
2855
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 dir = qc->dma_dir;
Jeff Garzike1410f22005-11-14 14:06:26 -05002857 n_elem = dma_map_sg(ap->host_set->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05002858 if (n_elem < 1) {
2859 /* restore last sg */
2860 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05002862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864 DPRINTK("%d sg elements mapped\n", n_elem);
2865
Jeff Garzike1410f22005-11-14 14:06:26 -05002866skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 qc->n_elem = n_elem;
2868
2869 return 0;
2870}
2871
2872/**
Tejun Heo40e8c822005-08-22 17:12:45 +09002873 * ata_poll_qc_complete - turn irq back on and finish qc
2874 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08002875 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09002876 *
2877 * LOCKING:
2878 * None. (grabs host lock)
2879 */
2880
Albert Leea22e2eb2005-12-05 15:38:02 +08002881void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09002882{
2883 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04002884 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09002885
Jeff Garzikb8f61532005-08-25 22:01:20 -04002886 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09002887 ap->flags &= ~ATA_FLAG_NOINTR;
2888 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08002889 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04002890 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09002891}
2892
2893/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 * ata_pio_poll -
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04002895 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 *
2897 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002898 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 *
2900 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04002901 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 */
2903
2904static unsigned long ata_pio_poll(struct ata_port *ap)
2905{
Albert Leec14b8332005-12-05 15:36:08 +08002906 struct ata_queued_cmd *qc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08002908 unsigned int poll_state = HSM_ST_UNKNOWN;
2909 unsigned int reg_state = HSM_ST_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Albert Leec14b8332005-12-05 15:36:08 +08002911 qc = ata_qc_from_tag(ap, ap->active_tag);
2912 assert(qc != NULL);
2913
Albert Lee14be71f2005-09-27 17:36:35 +08002914 switch (ap->hsm_task_state) {
2915 case HSM_ST:
2916 case HSM_ST_POLL:
2917 poll_state = HSM_ST_POLL;
2918 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 break;
Albert Lee14be71f2005-09-27 17:36:35 +08002920 case HSM_ST_LAST:
2921 case HSM_ST_LAST_POLL:
2922 poll_state = HSM_ST_LAST_POLL;
2923 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 break;
2925 default:
2926 BUG();
2927 break;
2928 }
2929
2930 status = ata_chk_status(ap);
2931 if (status & ATA_BUSY) {
2932 if (time_after(jiffies, ap->pio_task_timeout)) {
Albert Lee1c848982005-12-05 15:40:15 +08002933 qc->err_mask |= AC_ERR_ATA_BUS;
Albert Lee7c398332005-11-09 13:03:30 +08002934 ap->hsm_task_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 return 0;
2936 }
Albert Lee14be71f2005-09-27 17:36:35 +08002937 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 return ATA_SHORT_PAUSE;
2939 }
2940
Albert Lee14be71f2005-09-27 17:36:35 +08002941 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return 0;
2943}
2944
2945/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04002946 * ata_pio_complete - check if drive is busy or idle
2947 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 *
2949 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002950 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002951 *
2952 * RETURNS:
2953 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 */
2955
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002956static int ata_pio_complete (struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957{
2958 struct ata_queued_cmd *qc;
2959 u8 drv_stat;
2960
2961 /*
Alan Cox31433ea2005-08-26 15:56:47 +01002962 * This is purely heuristic. This is a fast path. Sometimes when
2963 * we enter, BSY will be cleared in a chk-status or two. If not,
2964 * the drive is probably seeking or something. Snooze for a couple
2965 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08002966 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 */
Albert Leefe79e682005-12-06 11:34:59 +08002968 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
2969 if (drv_stat & ATA_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 msleep(2);
Albert Leefe79e682005-12-06 11:34:59 +08002971 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
2972 if (drv_stat & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08002973 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002975 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 }
2977 }
2978
Albert Leec14b8332005-12-05 15:36:08 +08002979 qc = ata_qc_from_tag(ap, ap->active_tag);
2980 assert(qc != NULL);
2981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 drv_stat = ata_wait_idle(ap);
2983 if (!ata_ok(drv_stat)) {
Albert Lee1c848982005-12-05 15:40:15 +08002984 qc->err_mask |= __ac_err_mask(drv_stat);
Albert Lee14be71f2005-09-27 17:36:35 +08002985 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002986 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 }
2988
Albert Lee14be71f2005-09-27 17:36:35 +08002989 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Albert Leea22e2eb2005-12-05 15:38:02 +08002991 assert(qc->err_mask == 0);
2992 ata_poll_qc_complete(qc);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002993
2994 /* another command may start at this point */
2995
2996 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997}
2998
Edward Falk0baab862005-06-02 18:17:13 -04002999
3000/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003001 * swap_buf_le16 - swap halves of 16-words in place
Edward Falk0baab862005-06-02 18:17:13 -04003002 * @buf: Buffer to swap
3003 * @buf_words: Number of 16-bit words in buffer.
3004 *
3005 * Swap halves of 16-bit words if needed to convert from
3006 * little-endian byte order to native cpu byte order, or
3007 * vice-versa.
3008 *
3009 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003010 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012void swap_buf_le16(u16 *buf, unsigned int buf_words)
3013{
3014#ifdef __BIG_ENDIAN
3015 unsigned int i;
3016
3017 for (i = 0; i < buf_words; i++)
3018 buf[i] = le16_to_cpu(buf[i]);
3019#endif /* __BIG_ENDIAN */
3020}
3021
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003022/**
3023 * ata_mmio_data_xfer - Transfer data by MMIO
3024 * @ap: port to read/write
3025 * @buf: data buffer
3026 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003027 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003028 *
3029 * Transfer data from/to the device data register by MMIO.
3030 *
3031 * LOCKING:
3032 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003033 */
3034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3036 unsigned int buflen, int write_data)
3037{
3038 unsigned int i;
3039 unsigned int words = buflen >> 1;
3040 u16 *buf16 = (u16 *) buf;
3041 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3042
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003043 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 if (write_data) {
3045 for (i = 0; i < words; i++)
3046 writew(le16_to_cpu(buf16[i]), mmio);
3047 } else {
3048 for (i = 0; i < words; i++)
3049 buf16[i] = cpu_to_le16(readw(mmio));
3050 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003051
3052 /* Transfer trailing 1 byte, if any. */
3053 if (unlikely(buflen & 0x01)) {
3054 u16 align_buf[1] = { 0 };
3055 unsigned char *trailing_buf = buf + buflen - 1;
3056
3057 if (write_data) {
3058 memcpy(align_buf, trailing_buf, 1);
3059 writew(le16_to_cpu(align_buf[0]), mmio);
3060 } else {
3061 align_buf[0] = cpu_to_le16(readw(mmio));
3062 memcpy(trailing_buf, align_buf, 1);
3063 }
3064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065}
3066
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003067/**
3068 * ata_pio_data_xfer - Transfer data by PIO
3069 * @ap: port to read/write
3070 * @buf: data buffer
3071 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003072 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003073 *
3074 * Transfer data from/to the device data register by PIO.
3075 *
3076 * LOCKING:
3077 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003078 */
3079
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3081 unsigned int buflen, int write_data)
3082{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003083 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003085 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003087 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003089 insw(ap->ioaddr.data_addr, buf, words);
3090
3091 /* Transfer trailing 1 byte, if any. */
3092 if (unlikely(buflen & 0x01)) {
3093 u16 align_buf[1] = { 0 };
3094 unsigned char *trailing_buf = buf + buflen - 1;
3095
3096 if (write_data) {
3097 memcpy(align_buf, trailing_buf, 1);
3098 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3099 } else {
3100 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3101 memcpy(trailing_buf, align_buf, 1);
3102 }
3103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104}
3105
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003106/**
3107 * ata_data_xfer - Transfer data from/to the data register.
3108 * @ap: port to read/write
3109 * @buf: data buffer
3110 * @buflen: buffer length
3111 * @do_write: read/write
3112 *
3113 * Transfer data from/to the device data register.
3114 *
3115 * LOCKING:
3116 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003117 */
3118
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3120 unsigned int buflen, int do_write)
3121{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003122 /* Make the crap hardware pay the costs not the good stuff */
3123 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3124 unsigned long flags;
3125 local_irq_save(flags);
3126 if (ap->flags & ATA_FLAG_MMIO)
3127 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3128 else
3129 ata_pio_data_xfer(ap, buf, buflen, do_write);
3130 local_irq_restore(flags);
3131 } else {
3132 if (ap->flags & ATA_FLAG_MMIO)
3133 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3134 else
3135 ata_pio_data_xfer(ap, buf, buflen, do_write);
3136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137}
3138
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003139/**
3140 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3141 * @qc: Command on going
3142 *
3143 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3144 *
3145 * LOCKING:
3146 * Inherited from caller.
3147 */
3148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149static void ata_pio_sector(struct ata_queued_cmd *qc)
3150{
3151 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003152 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 struct ata_port *ap = qc->ap;
3154 struct page *page;
3155 unsigned int offset;
3156 unsigned char *buf;
3157
3158 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003159 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
3161 page = sg[qc->cursg].page;
3162 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3163
3164 /* get the current page and offset */
3165 page = nth_page(page, (offset >> PAGE_SHIFT));
3166 offset %= PAGE_SIZE;
3167
3168 buf = kmap(page) + offset;
3169
3170 qc->cursect++;
3171 qc->cursg_ofs++;
3172
Albert Lee32529e02005-05-26 03:49:42 -04003173 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 qc->cursg++;
3175 qc->cursg_ofs = 0;
3176 }
3177
3178 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3179
3180 /* do the actual data transfer */
3181 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3182 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3183
3184 kunmap(page);
3185}
3186
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003187/**
3188 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3189 * @qc: Command on going
3190 * @bytes: number of bytes
3191 *
3192 * Transfer Transfer data from/to the ATAPI device.
3193 *
3194 * LOCKING:
3195 * Inherited from caller.
3196 *
3197 */
3198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3200{
3201 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003202 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 struct ata_port *ap = qc->ap;
3204 struct page *page;
3205 unsigned char *buf;
3206 unsigned int offset, count;
3207
Albert Lee563a6e12005-08-12 14:17:50 +08003208 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003209 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
3211next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003212 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003213 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003214 * The end of qc->sg is reached and the device expects
3215 * more data to transfer. In order not to overrun qc->sg
3216 * and fulfill length specified in the byte count register,
3217 * - for read case, discard trailing data from the device
3218 * - for write case, padding zero data to the device
3219 */
3220 u16 pad_buf[1] = { 0 };
3221 unsigned int words = bytes >> 1;
3222 unsigned int i;
3223
3224 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003225 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003226 ap->id, bytes);
3227
3228 for (i = 0; i < words; i++)
3229 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3230
Albert Lee14be71f2005-09-27 17:36:35 +08003231 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003232 return;
3233 }
3234
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003235 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 page = sg->page;
3238 offset = sg->offset + qc->cursg_ofs;
3239
3240 /* get the current page and offset */
3241 page = nth_page(page, (offset >> PAGE_SHIFT));
3242 offset %= PAGE_SIZE;
3243
Albert Lee6952df02005-06-06 15:56:03 +08003244 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003245 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247 /* don't cross page boundaries */
3248 count = min(count, (unsigned int)PAGE_SIZE - offset);
3249
3250 buf = kmap(page) + offset;
3251
3252 bytes -= count;
3253 qc->curbytes += count;
3254 qc->cursg_ofs += count;
3255
Albert Lee32529e02005-05-26 03:49:42 -04003256 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 qc->cursg++;
3258 qc->cursg_ofs = 0;
3259 }
3260
3261 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3262
3263 /* do the actual data transfer */
3264 ata_data_xfer(ap, buf, count, do_write);
3265
3266 kunmap(page);
3267
Albert Lee563a6e12005-08-12 14:17:50 +08003268 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270}
3271
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003272/**
3273 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3274 * @qc: Command on going
3275 *
3276 * Transfer Transfer data from/to the ATAPI device.
3277 *
3278 * LOCKING:
3279 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003280 */
3281
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3283{
3284 struct ata_port *ap = qc->ap;
3285 struct ata_device *dev = qc->dev;
3286 unsigned int ireason, bc_lo, bc_hi, bytes;
3287 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3288
3289 ap->ops->tf_read(ap, &qc->tf);
3290 ireason = qc->tf.nsect;
3291 bc_lo = qc->tf.lbam;
3292 bc_hi = qc->tf.lbah;
3293 bytes = (bc_hi << 8) | bc_lo;
3294
3295 /* shall be cleared to zero, indicating xfer of data */
3296 if (ireason & (1 << 0))
3297 goto err_out;
3298
3299 /* make sure transfer direction matches expected */
3300 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3301 if (do_write != i_write)
3302 goto err_out;
3303
3304 __atapi_pio_bytes(qc, bytes);
3305
3306 return;
3307
3308err_out:
3309 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3310 ap->id, dev->devno);
Albert Lee1c848982005-12-05 15:40:15 +08003311 qc->err_mask |= AC_ERR_ATA_BUS;
Albert Lee14be71f2005-09-27 17:36:35 +08003312 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313}
3314
3315/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003316 * ata_pio_block - start PIO on a block
3317 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 *
3319 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003320 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 */
3322
3323static void ata_pio_block(struct ata_port *ap)
3324{
3325 struct ata_queued_cmd *qc;
3326 u8 status;
3327
3328 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003329 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 * Sometimes when we enter, BSY will be cleared in
3331 * a chk-status or two. If not, the drive is probably seeking
3332 * or something. Snooze for a couple msecs, then
3333 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003334 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 */
3336 status = ata_busy_wait(ap, ATA_BUSY, 5);
3337 if (status & ATA_BUSY) {
3338 msleep(2);
3339 status = ata_busy_wait(ap, ATA_BUSY, 10);
3340 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003341 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3343 return;
3344 }
3345 }
3346
3347 qc = ata_qc_from_tag(ap, ap->active_tag);
3348 assert(qc != NULL);
3349
Albert Leefe79e682005-12-06 11:34:59 +08003350 /* check error */
3351 if (status & (ATA_ERR | ATA_DF)) {
3352 qc->err_mask |= AC_ERR_DEV;
3353 ap->hsm_task_state = HSM_ST_ERR;
3354 return;
3355 }
3356
3357 /* transfer data if any */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 if (is_atapi_taskfile(&qc->tf)) {
Albert Leefe79e682005-12-06 11:34:59 +08003359 /* DRQ=0 means no more data to transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003361 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 return;
3363 }
3364
3365 atapi_pio_bytes(qc);
3366 } else {
3367 /* handle BSY=0, DRQ=0 as error */
3368 if ((status & ATA_DRQ) == 0) {
Albert Lee1c848982005-12-05 15:40:15 +08003369 qc->err_mask |= AC_ERR_ATA_BUS;
Albert Lee14be71f2005-09-27 17:36:35 +08003370 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return;
3372 }
3373
3374 ata_pio_sector(qc);
3375 }
3376}
3377
3378static void ata_pio_error(struct ata_port *ap)
3379{
3380 struct ata_queued_cmd *qc;
Jeff Garzika7dac442005-10-30 04:44:42 -05003381
3382 printk(KERN_WARNING "ata%u: PIO error\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
3384 qc = ata_qc_from_tag(ap, ap->active_tag);
3385 assert(qc != NULL);
3386
Albert Lee1c848982005-12-05 15:40:15 +08003387 /* make sure qc->err_mask is available to
3388 * know what's wrong and recover
3389 */
3390 assert(qc->err_mask);
3391
Albert Lee14be71f2005-09-27 17:36:35 +08003392 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
Albert Leea22e2eb2005-12-05 15:38:02 +08003394 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395}
3396
3397static void ata_pio_task(void *_data)
3398{
3399 struct ata_port *ap = _data;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003400 unsigned long timeout;
3401 int qc_completed;
3402
3403fsm_start:
3404 timeout = 0;
3405 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Albert Lee14be71f2005-09-27 17:36:35 +08003407 switch (ap->hsm_task_state) {
3408 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 return;
3410
Albert Lee14be71f2005-09-27 17:36:35 +08003411 case HSM_ST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 ata_pio_block(ap);
3413 break;
3414
Albert Lee14be71f2005-09-27 17:36:35 +08003415 case HSM_ST_LAST:
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003416 qc_completed = ata_pio_complete(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 break;
3418
Albert Lee14be71f2005-09-27 17:36:35 +08003419 case HSM_ST_POLL:
3420 case HSM_ST_LAST_POLL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 timeout = ata_pio_poll(ap);
3422 break;
3423
Albert Lee14be71f2005-09-27 17:36:35 +08003424 case HSM_ST_TMOUT:
3425 case HSM_ST_ERR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 ata_pio_error(ap);
3427 return;
3428 }
3429
3430 if (timeout)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003431 queue_delayed_work(ata_wq, &ap->pio_task, timeout);
3432 else if (!qc_completed)
3433 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434}
3435
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436/**
3437 * ata_qc_timeout - Handle timeout of queued command
3438 * @qc: Command that timed out
3439 *
3440 * Some part of the kernel (currently, only the SCSI layer)
3441 * has noticed that the active command on port @ap has not
3442 * completed after a specified length of time. Handle this
3443 * condition by disabling DMA (if necessary) and completing
3444 * transactions, with error if necessary.
3445 *
3446 * This also handles the case of the "lost interrupt", where
3447 * for some reason (possibly hardware bug, possibly driver bug)
3448 * an interrupt was not delivered to the driver, even though the
3449 * transaction completed successfully.
3450 *
3451 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003452 * Inherited from SCSI layer (none, can sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 */
3454
3455static void ata_qc_timeout(struct ata_queued_cmd *qc)
3456{
3457 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003458 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 u8 host_stat = 0, drv_stat;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003460 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
3462 DPRINTK("ENTER\n");
3463
Jeff Garzikb8f61532005-08-25 22:01:20 -04003464 spin_lock_irqsave(&host_set->lock, flags);
3465
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 /* hack alert! We cannot use the supplied completion
3467 * function from inside the ->eh_strategy_handler() thread.
3468 * libata is the only user of ->eh_strategy_handler() in
3469 * any kernel, so the default scsi_done() assumes it is
3470 * not being called from the SCSI EH.
3471 */
3472 qc->scsidone = scsi_finish_command;
3473
3474 switch (qc->tf.protocol) {
3475
3476 case ATA_PROT_DMA:
3477 case ATA_PROT_ATAPI_DMA:
3478 host_stat = ap->ops->bmdma_status(ap);
3479
3480 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01003481 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
3483 /* fall through */
3484
3485 default:
3486 ata_altstatus(ap);
3487 drv_stat = ata_chk_status(ap);
3488
3489 /* ack bmdma irq events */
3490 ap->ops->irq_clear(ap);
3491
3492 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x\n",
3493 ap->id, qc->tf.command, drv_stat, host_stat);
3494
3495 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08003496 qc->err_mask |= ac_err_mask(drv_stat);
3497 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 break;
3499 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04003500
3501 spin_unlock_irqrestore(&host_set->lock, flags);
3502
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 DPRINTK("EXIT\n");
3504}
3505
3506/**
3507 * ata_eng_timeout - Handle timeout of queued command
3508 * @ap: Port on which timed-out command is active
3509 *
3510 * Some part of the kernel (currently, only the SCSI layer)
3511 * has noticed that the active command on port @ap has not
3512 * completed after a specified length of time. Handle this
3513 * condition by disabling DMA (if necessary) and completing
3514 * transactions, with error if necessary.
3515 *
3516 * This also handles the case of the "lost interrupt", where
3517 * for some reason (possibly hardware bug, possibly driver bug)
3518 * an interrupt was not delivered to the driver, even though the
3519 * transaction completed successfully.
3520 *
3521 * LOCKING:
3522 * Inherited from SCSI layer (none, can sleep)
3523 */
3524
3525void ata_eng_timeout(struct ata_port *ap)
3526{
3527 struct ata_queued_cmd *qc;
3528
3529 DPRINTK("ENTER\n");
3530
3531 qc = ata_qc_from_tag(ap, ap->active_tag);
Jeff Garzike12669e2005-10-05 18:39:23 -04003532 if (qc)
3533 ata_qc_timeout(qc);
3534 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
3536 ap->id);
3537 goto out;
3538 }
3539
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540out:
3541 DPRINTK("EXIT\n");
3542}
3543
3544/**
3545 * ata_qc_new - Request an available ATA command, for queueing
3546 * @ap: Port associated with device @dev
3547 * @dev: Device from whom we request an available command structure
3548 *
3549 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003550 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 */
3552
3553static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
3554{
3555 struct ata_queued_cmd *qc = NULL;
3556 unsigned int i;
3557
3558 for (i = 0; i < ATA_MAX_QUEUE; i++)
3559 if (!test_and_set_bit(i, &ap->qactive)) {
3560 qc = ata_qc_from_tag(ap, i);
3561 break;
3562 }
3563
3564 if (qc)
3565 qc->tag = i;
3566
3567 return qc;
3568}
3569
3570/**
3571 * ata_qc_new_init - Request an available ATA command, and initialize it
3572 * @ap: Port associated with device @dev
3573 * @dev: Device from whom we request an available command structure
3574 *
3575 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003576 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 */
3578
3579struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
3580 struct ata_device *dev)
3581{
3582 struct ata_queued_cmd *qc;
3583
3584 qc = ata_qc_new(ap);
3585 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 qc->scsicmd = NULL;
3587 qc->ap = ap;
3588 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003590 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 }
3592
3593 return qc;
3594}
3595
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596static void __ata_qc_complete(struct ata_queued_cmd *qc)
3597{
3598 struct ata_port *ap = qc->ap;
Tejun Heob5632302005-12-13 14:51:25 +09003599 unsigned int tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
3601 qc->flags = 0;
3602 tag = qc->tag;
3603 if (likely(ata_tag_valid(tag))) {
3604 if (tag == ap->active_tag)
3605 ap->active_tag = ATA_TAG_POISON;
3606 qc->tag = ATA_TAG_POISON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 clear_bit(tag, &ap->qactive);
Tejun Heob5632302005-12-13 14:51:25 +09003608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609}
3610
3611/**
3612 * ata_qc_free - free unused ata_queued_cmd
3613 * @qc: Command to complete
3614 *
3615 * Designed to free unused ata_queued_cmd object
3616 * in case something prevents using it.
3617 *
3618 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003619 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 */
3621void ata_qc_free(struct ata_queued_cmd *qc)
3622{
3623 assert(qc != NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
3625 __ata_qc_complete(qc);
3626}
3627
3628/**
3629 * ata_qc_complete - Complete an active ATA command
3630 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003631 * @err_mask: ATA Status register contents
Jeff Garzik0cba6322005-05-30 19:49:12 -04003632 *
3633 * Indicate to the mid and upper layers that an ATA
3634 * command has completed, with either an ok or not-ok status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 *
3636 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003637 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 */
3639
Albert Leea22e2eb2005-12-05 15:38:02 +08003640void ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641{
3642 int rc;
3643
3644 assert(qc != NULL); /* ata_qc_from_tag _might_ return NULL */
3645 assert(qc->flags & ATA_QCFLAG_ACTIVE);
3646
3647 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
3648 ata_sg_clean(qc);
3649
Albert Lee3f3791d2005-08-16 14:25:38 +08003650 /* atapi: mark qc as inactive to prevent the interrupt handler
3651 * from completing the command twice later, before the error handler
3652 * is called. (when rc != 0 and atapi request sense is needed)
3653 */
3654 qc->flags &= ~ATA_QCFLAG_ACTIVE;
3655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 /* call completion callback */
Albert Leea22e2eb2005-12-05 15:38:02 +08003657 rc = qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
3659 /* if callback indicates not to complete command (non-zero),
3660 * return immediately
3661 */
3662 if (rc != 0)
3663 return;
3664
3665 __ata_qc_complete(qc);
3666
3667 VPRINTK("EXIT\n");
3668}
3669
3670static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
3671{
3672 struct ata_port *ap = qc->ap;
3673
3674 switch (qc->tf.protocol) {
3675 case ATA_PROT_DMA:
3676 case ATA_PROT_ATAPI_DMA:
3677 return 1;
3678
3679 case ATA_PROT_ATAPI:
3680 case ATA_PROT_PIO:
3681 case ATA_PROT_PIO_MULT:
3682 if (ap->flags & ATA_FLAG_PIO_DMA)
3683 return 1;
3684
3685 /* fall through */
3686
3687 default:
3688 return 0;
3689 }
3690
3691 /* never reached */
3692}
3693
3694/**
3695 * ata_qc_issue - issue taskfile to device
3696 * @qc: command to issue to device
3697 *
3698 * Prepare an ATA command to submission to device.
3699 * This includes mapping the data into a DMA-able
3700 * area, filling in the S/G table, and finally
3701 * writing the taskfile to hardware, starting the command.
3702 *
3703 * LOCKING:
3704 * spin_lock_irqsave(host_set lock)
3705 *
3706 * RETURNS:
3707 * Zero on success, negative on error.
3708 */
3709
3710int ata_qc_issue(struct ata_queued_cmd *qc)
3711{
3712 struct ata_port *ap = qc->ap;
3713
3714 if (ata_should_dma_map(qc)) {
3715 if (qc->flags & ATA_QCFLAG_SG) {
3716 if (ata_sg_setup(qc))
3717 goto err_out;
3718 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
3719 if (ata_sg_setup_one(qc))
3720 goto err_out;
3721 }
3722 } else {
3723 qc->flags &= ~ATA_QCFLAG_DMAMAP;
3724 }
3725
3726 ap->ops->qc_prep(qc);
3727
3728 qc->ap->active_tag = qc->tag;
3729 qc->flags |= ATA_QCFLAG_ACTIVE;
3730
3731 return ap->ops->qc_issue(qc);
3732
3733err_out:
3734 return -1;
3735}
3736
Edward Falk0baab862005-06-02 18:17:13 -04003737
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738/**
3739 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
3740 * @qc: command to issue to device
3741 *
3742 * Using various libata functions and hooks, this function
3743 * starts an ATA command. ATA commands are grouped into
3744 * classes called "protocols", and issuing each type of protocol
3745 * is slightly different.
3746 *
Edward Falk0baab862005-06-02 18:17:13 -04003747 * May be used as the qc_issue() entry in ata_port_operations.
3748 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 * LOCKING:
3750 * spin_lock_irqsave(host_set lock)
3751 *
3752 * RETURNS:
3753 * Zero on success, negative on error.
3754 */
3755
3756int ata_qc_issue_prot(struct ata_queued_cmd *qc)
3757{
3758 struct ata_port *ap = qc->ap;
3759
3760 ata_dev_select(ap, qc->dev->devno, 1, 0);
3761
3762 switch (qc->tf.protocol) {
3763 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05003764 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 break;
3766
3767 case ATA_PROT_DMA:
3768 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
3769 ap->ops->bmdma_setup(qc); /* set up bmdma */
3770 ap->ops->bmdma_start(qc); /* initiate bmdma */
3771 break;
3772
3773 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
3774 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05003775 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08003776 ap->hsm_task_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 queue_work(ata_wq, &ap->pio_task);
3778 break;
3779
3780 case ATA_PROT_ATAPI:
3781 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05003782 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 queue_work(ata_wq, &ap->packet_task);
3784 break;
3785
3786 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09003787 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05003788 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 queue_work(ata_wq, &ap->packet_task);
3790 break;
3791
3792 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09003793 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
3795 ap->ops->bmdma_setup(qc); /* set up bmdma */
3796 queue_work(ata_wq, &ap->packet_task);
3797 break;
3798
3799 default:
3800 WARN_ON(1);
3801 return -1;
3802 }
3803
3804 return 0;
3805}
3806
3807/**
Edward Falk0baab862005-06-02 18:17:13 -04003808 * ata_bmdma_setup_mmio - Set up PCI IDE BMDMA transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 * @qc: Info associated with this ATA transaction.
3810 *
3811 * LOCKING:
3812 * spin_lock_irqsave(host_set lock)
3813 */
3814
3815static void ata_bmdma_setup_mmio (struct ata_queued_cmd *qc)
3816{
3817 struct ata_port *ap = qc->ap;
3818 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
3819 u8 dmactl;
3820 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3821
3822 /* load PRD table addr. */
3823 mb(); /* make sure PRD table writes are visible to controller */
3824 writel(ap->prd_dma, mmio + ATA_DMA_TABLE_OFS);
3825
3826 /* specify data direction, triple-check start bit is clear */
3827 dmactl = readb(mmio + ATA_DMA_CMD);
3828 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
3829 if (!rw)
3830 dmactl |= ATA_DMA_WR;
3831 writeb(dmactl, mmio + ATA_DMA_CMD);
3832
3833 /* issue r/w command */
3834 ap->ops->exec_command(ap, &qc->tf);
3835}
3836
3837/**
Alan Coxb73fc892005-08-26 16:03:19 +01003838 * ata_bmdma_start_mmio - Start a PCI IDE BMDMA transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 * @qc: Info associated with this ATA transaction.
3840 *
3841 * LOCKING:
3842 * spin_lock_irqsave(host_set lock)
3843 */
3844
3845static void ata_bmdma_start_mmio (struct ata_queued_cmd *qc)
3846{
3847 struct ata_port *ap = qc->ap;
3848 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3849 u8 dmactl;
3850
3851 /* start host DMA transaction */
3852 dmactl = readb(mmio + ATA_DMA_CMD);
3853 writeb(dmactl | ATA_DMA_START, mmio + ATA_DMA_CMD);
3854
3855 /* Strictly, one may wish to issue a readb() here, to
3856 * flush the mmio write. However, control also passes
3857 * to the hardware at this point, and it will interrupt
3858 * us when we are to resume control. So, in effect,
3859 * we don't care when the mmio write flushes.
3860 * Further, a read of the DMA status register _immediately_
3861 * following the write may not be what certain flaky hardware
3862 * is expected, so I think it is best to not add a readb()
3863 * without first all the MMIO ATA cards/mobos.
3864 * Or maybe I'm just being paranoid.
3865 */
3866}
3867
3868/**
3869 * ata_bmdma_setup_pio - Set up PCI IDE BMDMA transaction (PIO)
3870 * @qc: Info associated with this ATA transaction.
3871 *
3872 * LOCKING:
3873 * spin_lock_irqsave(host_set lock)
3874 */
3875
3876static void ata_bmdma_setup_pio (struct ata_queued_cmd *qc)
3877{
3878 struct ata_port *ap = qc->ap;
3879 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
3880 u8 dmactl;
3881
3882 /* load PRD table addr. */
3883 outl(ap->prd_dma, ap->ioaddr.bmdma_addr + ATA_DMA_TABLE_OFS);
3884
3885 /* specify data direction, triple-check start bit is clear */
3886 dmactl = inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3887 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
3888 if (!rw)
3889 dmactl |= ATA_DMA_WR;
3890 outb(dmactl, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3891
3892 /* issue r/w command */
3893 ap->ops->exec_command(ap, &qc->tf);
3894}
3895
3896/**
3897 * ata_bmdma_start_pio - Start a PCI IDE BMDMA transaction (PIO)
3898 * @qc: Info associated with this ATA transaction.
3899 *
3900 * LOCKING:
3901 * spin_lock_irqsave(host_set lock)
3902 */
3903
3904static void ata_bmdma_start_pio (struct ata_queued_cmd *qc)
3905{
3906 struct ata_port *ap = qc->ap;
3907 u8 dmactl;
3908
3909 /* start host DMA transaction */
3910 dmactl = inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3911 outb(dmactl | ATA_DMA_START,
3912 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3913}
3914
Edward Falk0baab862005-06-02 18:17:13 -04003915
3916/**
3917 * ata_bmdma_start - Start a PCI IDE BMDMA transaction
3918 * @qc: Info associated with this ATA transaction.
3919 *
3920 * Writes the ATA_DMA_START flag to the DMA command register.
3921 *
3922 * May be used as the bmdma_start() entry in ata_port_operations.
3923 *
3924 * LOCKING:
3925 * spin_lock_irqsave(host_set lock)
3926 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927void ata_bmdma_start(struct ata_queued_cmd *qc)
3928{
3929 if (qc->ap->flags & ATA_FLAG_MMIO)
3930 ata_bmdma_start_mmio(qc);
3931 else
3932 ata_bmdma_start_pio(qc);
3933}
3934
Edward Falk0baab862005-06-02 18:17:13 -04003935
3936/**
3937 * ata_bmdma_setup - Set up PCI IDE BMDMA transaction
3938 * @qc: Info associated with this ATA transaction.
3939 *
3940 * Writes address of PRD table to device's PRD Table Address
3941 * register, sets the DMA control register, and calls
3942 * ops->exec_command() to start the transfer.
3943 *
3944 * May be used as the bmdma_setup() entry in ata_port_operations.
3945 *
3946 * LOCKING:
3947 * spin_lock_irqsave(host_set lock)
3948 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949void ata_bmdma_setup(struct ata_queued_cmd *qc)
3950{
3951 if (qc->ap->flags & ATA_FLAG_MMIO)
3952 ata_bmdma_setup_mmio(qc);
3953 else
3954 ata_bmdma_setup_pio(qc);
3955}
3956
Edward Falk0baab862005-06-02 18:17:13 -04003957
3958/**
3959 * ata_bmdma_irq_clear - Clear PCI IDE BMDMA interrupt.
Jeff Garzikdecc6d02005-06-02 18:42:33 -04003960 * @ap: Port associated with this ATA transaction.
Edward Falk0baab862005-06-02 18:17:13 -04003961 *
3962 * Clear interrupt and error flags in DMA status register.
3963 *
3964 * May be used as the irq_clear() entry in ata_port_operations.
3965 *
3966 * LOCKING:
3967 * spin_lock_irqsave(host_set lock)
3968 */
3969
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970void ata_bmdma_irq_clear(struct ata_port *ap)
3971{
3972 if (ap->flags & ATA_FLAG_MMIO) {
3973 void __iomem *mmio = ((void __iomem *) ap->ioaddr.bmdma_addr) + ATA_DMA_STATUS;
3974 writeb(readb(mmio), mmio);
3975 } else {
3976 unsigned long addr = ap->ioaddr.bmdma_addr + ATA_DMA_STATUS;
3977 outb(inb(addr), addr);
3978 }
3979
3980}
3981
Edward Falk0baab862005-06-02 18:17:13 -04003982
3983/**
3984 * ata_bmdma_status - Read PCI IDE BMDMA status
Jeff Garzikdecc6d02005-06-02 18:42:33 -04003985 * @ap: Port associated with this ATA transaction.
Edward Falk0baab862005-06-02 18:17:13 -04003986 *
3987 * Read and return BMDMA status register.
3988 *
3989 * May be used as the bmdma_status() entry in ata_port_operations.
3990 *
3991 * LOCKING:
3992 * spin_lock_irqsave(host_set lock)
3993 */
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995u8 ata_bmdma_status(struct ata_port *ap)
3996{
3997 u8 host_stat;
3998 if (ap->flags & ATA_FLAG_MMIO) {
3999 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
4000 host_stat = readb(mmio + ATA_DMA_STATUS);
4001 } else
Albert Leeee500aa2005-09-27 17:34:38 +08004002 host_stat = inb(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 return host_stat;
4004}
4005
Edward Falk0baab862005-06-02 18:17:13 -04004006
4007/**
4008 * ata_bmdma_stop - Stop PCI IDE BMDMA transfer
Alan Coxb73fc892005-08-26 16:03:19 +01004009 * @qc: Command we are ending DMA for
Edward Falk0baab862005-06-02 18:17:13 -04004010 *
4011 * Clears the ATA_DMA_START flag in the dma control register
4012 *
4013 * May be used as the bmdma_stop() entry in ata_port_operations.
4014 *
4015 * LOCKING:
4016 * spin_lock_irqsave(host_set lock)
4017 */
4018
Alan Coxb73fc892005-08-26 16:03:19 +01004019void ata_bmdma_stop(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020{
Alan Coxb73fc892005-08-26 16:03:19 +01004021 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 if (ap->flags & ATA_FLAG_MMIO) {
4023 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
4024
4025 /* clear start/stop bit */
4026 writeb(readb(mmio + ATA_DMA_CMD) & ~ATA_DMA_START,
4027 mmio + ATA_DMA_CMD);
4028 } else {
4029 /* clear start/stop bit */
4030 outb(inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD) & ~ATA_DMA_START,
4031 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
4032 }
4033
4034 /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
4035 ata_altstatus(ap); /* dummy read */
4036}
4037
4038/**
4039 * ata_host_intr - Handle host interrupt for given (port, task)
4040 * @ap: Port on which interrupt arrived (possibly...)
4041 * @qc: Taskfile currently active in engine
4042 *
4043 * Handle host interrupt for given queued command. Currently,
4044 * only DMA interrupts are handled. All other commands are
4045 * handled via polling with interrupts disabled (nIEN bit).
4046 *
4047 * LOCKING:
4048 * spin_lock_irqsave(host_set lock)
4049 *
4050 * RETURNS:
4051 * One if interrupt was handled, zero if not (shared irq).
4052 */
4053
4054inline unsigned int ata_host_intr (struct ata_port *ap,
4055 struct ata_queued_cmd *qc)
4056{
4057 u8 status, host_stat;
4058
4059 switch (qc->tf.protocol) {
4060
4061 case ATA_PROT_DMA:
4062 case ATA_PROT_ATAPI_DMA:
4063 case ATA_PROT_ATAPI:
4064 /* check status of DMA engine */
4065 host_stat = ap->ops->bmdma_status(ap);
4066 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4067
4068 /* if it's not our irq... */
4069 if (!(host_stat & ATA_DMA_INTR))
4070 goto idle_irq;
4071
4072 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004073 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
4075 /* fall through */
4076
4077 case ATA_PROT_ATAPI_NODATA:
4078 case ATA_PROT_NODATA:
4079 /* check altstatus */
4080 status = ata_altstatus(ap);
4081 if (status & ATA_BUSY)
4082 goto idle_irq;
4083
4084 /* check main status, clearing INTRQ */
4085 status = ata_chk_status(ap);
4086 if (unlikely(status & ATA_BUSY))
4087 goto idle_irq;
4088 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4089 ap->id, qc->tf.protocol, status);
4090
4091 /* ack bmdma irq events */
4092 ap->ops->irq_clear(ap);
4093
4094 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004095 qc->err_mask |= ac_err_mask(status);
4096 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 break;
4098
4099 default:
4100 goto idle_irq;
4101 }
4102
4103 return 1; /* irq handled */
4104
4105idle_irq:
4106 ap->stats.idle_irq++;
4107
4108#ifdef ATA_IRQ_TRAP
4109 if ((ap->stats.idle_irq % 1000) == 0) {
4110 handled = 1;
4111 ata_irq_ack(ap, 0); /* debug trap */
4112 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
4113 }
4114#endif
4115 return 0; /* irq not handled */
4116}
4117
4118/**
4119 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004120 * @irq: irq line (unused)
4121 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 * @regs: unused
4123 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004124 * Default interrupt handler for PCI IDE devices. Calls
4125 * ata_host_intr() for each port that is not disabled.
4126 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004128 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 *
4130 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004131 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 */
4133
4134irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4135{
4136 struct ata_host_set *host_set = dev_instance;
4137 unsigned int i;
4138 unsigned int handled = 0;
4139 unsigned long flags;
4140
4141 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4142 spin_lock_irqsave(&host_set->lock, flags);
4143
4144 for (i = 0; i < host_set->n_ports; i++) {
4145 struct ata_port *ap;
4146
4147 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004148 if (ap &&
4149 !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 struct ata_queued_cmd *qc;
4151
4152 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08004153 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4154 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 handled |= ata_host_intr(ap, qc);
4156 }
4157 }
4158
4159 spin_unlock_irqrestore(&host_set->lock, flags);
4160
4161 return IRQ_RETVAL(handled);
4162}
4163
4164/**
4165 * atapi_packet_task - Write CDB bytes to hardware
4166 * @_data: Port to which ATAPI device is attached.
4167 *
4168 * When device has indicated its readiness to accept
4169 * a CDB, this function is called. Send the CDB.
4170 * If DMA is to be performed, exit immediately.
4171 * Otherwise, we are in polling mode, so poll
4172 * status under operation succeeds or fails.
4173 *
4174 * LOCKING:
4175 * Kernel thread context (may sleep)
4176 */
4177
4178static void atapi_packet_task(void *_data)
4179{
4180 struct ata_port *ap = _data;
4181 struct ata_queued_cmd *qc;
4182 u8 status;
4183
4184 qc = ata_qc_from_tag(ap, ap->active_tag);
4185 assert(qc != NULL);
4186 assert(qc->flags & ATA_QCFLAG_ACTIVE);
4187
4188 /* sleep-wait for BSY to clear */
4189 DPRINTK("busy wait\n");
Albert Leed8fe4522005-12-05 15:42:17 +08004190 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
4191 qc->err_mask |= AC_ERR_ATA_BUS;
4192 goto err_out;
4193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194
4195 /* make sure DRQ is set */
4196 status = ata_chk_status(ap);
Albert Leed8fe4522005-12-05 15:42:17 +08004197 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
4198 qc->err_mask |= AC_ERR_ATA_BUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 goto err_out;
Albert Leed8fe4522005-12-05 15:42:17 +08004200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201
4202 /* send SCSI cdb */
4203 DPRINTK("send cdb\n");
4204 assert(ap->cdb_len >= 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205
Tejun Heoc1389502005-08-22 14:59:24 +09004206 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
4207 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
4208 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Tejun Heoc1389502005-08-22 14:59:24 +09004210 /* Once we're done issuing command and kicking bmdma,
4211 * irq handler takes over. To not lose irq, we need
4212 * to clear NOINTR flag before sending cdb, but
4213 * interrupt handler shouldn't be invoked before we're
4214 * finished. Hence, the following locking.
4215 */
4216 spin_lock_irqsave(&ap->host_set->lock, flags);
4217 ap->flags &= ~ATA_FLAG_NOINTR;
4218 ata_data_xfer(ap, qc->cdb, ap->cdb_len, 1);
4219 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
4220 ap->ops->bmdma_start(qc); /* initiate bmdma */
4221 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4222 } else {
4223 ata_data_xfer(ap, qc->cdb, ap->cdb_len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
Tejun Heoc1389502005-08-22 14:59:24 +09004225 /* PIO commands are handled by polling */
Albert Lee14be71f2005-09-27 17:36:35 +08004226 ap->hsm_task_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 queue_work(ata_wq, &ap->pio_task);
4228 }
4229
4230 return;
4231
4232err_out:
Albert Leea22e2eb2005-12-05 15:38:02 +08004233 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234}
4235
Edward Falk0baab862005-06-02 18:17:13 -04004236
4237/**
4238 * ata_port_start - Set port up for dma.
4239 * @ap: Port to initialize
4240 *
4241 * Called just after data structures for each port are
4242 * initialized. Allocates space for PRD table.
4243 *
4244 * May be used as the port_start() entry in ata_port_operations.
4245 *
4246 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004247 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004248 */
4249
Jens Axboe9b847542006-01-06 09:28:07 +01004250/*
4251 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4252 * without filling any other registers
4253 */
4254static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4255 u8 cmd)
4256{
4257 struct ata_taskfile tf;
4258 int err;
4259
4260 ata_tf_init(ap, &tf, dev->devno);
4261
4262 tf.command = cmd;
4263 tf.flags |= ATA_TFLAG_DEVICE;
4264 tf.protocol = ATA_PROT_NODATA;
4265
4266 err = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
4267 if (err)
4268 printk(KERN_ERR "%s: ata command failed: %d\n",
4269 __FUNCTION__, err);
4270
4271 return err;
4272}
4273
4274static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4275{
4276 u8 cmd;
4277
4278 if (!ata_try_flush_cache(dev))
4279 return 0;
4280
4281 if (ata_id_has_flush_ext(dev->id))
4282 cmd = ATA_CMD_FLUSH_EXT;
4283 else
4284 cmd = ATA_CMD_FLUSH;
4285
4286 return ata_do_simple_cmd(ap, dev, cmd);
4287}
4288
4289static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4290{
4291 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4292}
4293
4294static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4295{
4296 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4297}
4298
4299/**
4300 * ata_device_resume - wakeup a previously suspended devices
4301 *
4302 * Kick the drive back into action, by sending it an idle immediate
4303 * command and making sure its transfer mode matches between drive
4304 * and host.
4305 *
4306 */
4307int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4308{
4309 if (ap->flags & ATA_FLAG_SUSPENDED) {
4310 ap->flags &= ~ATA_FLAG_SUSPENDED;
4311 ata_set_mode(ap);
4312 }
4313 if (!ata_dev_present(dev))
4314 return 0;
4315 if (dev->class == ATA_DEV_ATA)
4316 ata_start_drive(ap, dev);
4317
4318 return 0;
4319}
4320
4321/**
4322 * ata_device_suspend - prepare a device for suspend
4323 *
4324 * Flush the cache on the drive, if appropriate, then issue a
4325 * standbynow command.
4326 *
4327 */
4328int ata_device_suspend(struct ata_port *ap, struct ata_device *dev)
4329{
4330 if (!ata_dev_present(dev))
4331 return 0;
4332 if (dev->class == ATA_DEV_ATA)
4333 ata_flush_cache(ap, dev);
4334
4335 ata_standby_drive(ap, dev);
4336 ap->flags |= ATA_FLAG_SUSPENDED;
4337 return 0;
4338}
4339
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340int ata_port_start (struct ata_port *ap)
4341{
4342 struct device *dev = ap->host_set->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004343 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
4345 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4346 if (!ap->prd)
4347 return -ENOMEM;
4348
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004349 rc = ata_pad_alloc(ap, dev);
4350 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004351 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004352 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004353 }
4354
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4356
4357 return 0;
4358}
4359
Edward Falk0baab862005-06-02 18:17:13 -04004360
4361/**
4362 * ata_port_stop - Undo ata_port_start()
4363 * @ap: Port to shut down
4364 *
4365 * Frees the PRD table.
4366 *
4367 * May be used as the port_stop() entry in ata_port_operations.
4368 *
4369 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004370 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004371 */
4372
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373void ata_port_stop (struct ata_port *ap)
4374{
4375 struct device *dev = ap->host_set->dev;
4376
4377 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004378 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379}
4380
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004381void ata_host_stop (struct ata_host_set *host_set)
4382{
4383 if (host_set->mmio_base)
4384 iounmap(host_set->mmio_base);
4385}
4386
4387
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388/**
4389 * ata_host_remove - Unregister SCSI host structure with upper layers
4390 * @ap: Port to unregister
4391 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4392 *
4393 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004394 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 */
4396
4397static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4398{
4399 struct Scsi_Host *sh = ap->host;
4400
4401 DPRINTK("ENTER\n");
4402
4403 if (do_unregister)
4404 scsi_remove_host(sh);
4405
4406 ap->ops->port_stop(ap);
4407}
4408
4409/**
4410 * ata_host_init - Initialize an ata_port structure
4411 * @ap: Structure to initialize
4412 * @host: associated SCSI mid-layer structure
4413 * @host_set: Collection of hosts to which @ap belongs
4414 * @ent: Probe information provided by low-level driver
4415 * @port_no: Port number associated with this ata_port
4416 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004417 * Initialize a new ata_port structure, and its associated
4418 * scsi_host.
4419 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004421 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 */
4423
4424static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4425 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004426 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427{
4428 unsigned int i;
4429
4430 host->max_id = 16;
4431 host->max_lun = 1;
4432 host->max_channel = 1;
4433 host->unique_id = ata_unique_id++;
4434 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004435
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 ap->flags = ATA_FLAG_PORT_DISABLED;
4437 ap->id = host->unique_id;
4438 ap->host = host;
4439 ap->ctl = ATA_DEVCTL_OBS;
4440 ap->host_set = host_set;
4441 ap->port_no = port_no;
4442 ap->hard_port_no =
4443 ent->legacy_mode ? ent->hard_port_no : port_no;
4444 ap->pio_mask = ent->pio_mask;
4445 ap->mwdma_mask = ent->mwdma_mask;
4446 ap->udma_mask = ent->udma_mask;
4447 ap->flags |= ent->host_flags;
4448 ap->ops = ent->port_ops;
4449 ap->cbl = ATA_CBL_NONE;
4450 ap->active_tag = ATA_TAG_POISON;
4451 ap->last_ctl = 0xFF;
4452
4453 INIT_WORK(&ap->packet_task, atapi_packet_task, ap);
4454 INIT_WORK(&ap->pio_task, ata_pio_task, ap);
4455
4456 for (i = 0; i < ATA_MAX_DEVICES; i++)
4457 ap->device[i].devno = i;
4458
4459#ifdef ATA_IRQ_TRAP
4460 ap->stats.unhandled_irq = 1;
4461 ap->stats.idle_irq = 1;
4462#endif
4463
4464 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4465}
4466
4467/**
4468 * ata_host_add - Attach low-level ATA driver to system
4469 * @ent: Information provided by low-level driver
4470 * @host_set: Collections of ports to which we add
4471 * @port_no: Port number associated with this host
4472 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004473 * Attach low-level ATA driver to system.
4474 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004476 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477 *
4478 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004479 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 */
4481
Jeff Garzik057ace52005-10-22 14:27:05 -04004482static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 struct ata_host_set *host_set,
4484 unsigned int port_no)
4485{
4486 struct Scsi_Host *host;
4487 struct ata_port *ap;
4488 int rc;
4489
4490 DPRINTK("ENTER\n");
4491 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4492 if (!host)
4493 return NULL;
4494
4495 ap = (struct ata_port *) &host->hostdata[0];
4496
4497 ata_host_init(ap, host, host_set, ent, port_no);
4498
4499 rc = ap->ops->port_start(ap);
4500 if (rc)
4501 goto err_out;
4502
4503 return ap;
4504
4505err_out:
4506 scsi_host_put(host);
4507 return NULL;
4508}
4509
4510/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004511 * ata_device_add - Register hardware device with ATA and SCSI layers
4512 * @ent: Probe information describing hardware device to be registered
4513 *
4514 * This function processes the information provided in the probe
4515 * information struct @ent, allocates the necessary ATA and SCSI
4516 * host information structures, initializes them, and registers
4517 * everything with requisite kernel subsystems.
4518 *
4519 * This function requests irqs, probes the ATA bus, and probes
4520 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 *
4522 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004523 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 *
4525 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004526 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 */
4528
Jeff Garzik057ace52005-10-22 14:27:05 -04004529int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530{
4531 unsigned int count = 0, i;
4532 struct device *dev = ent->dev;
4533 struct ata_host_set *host_set;
4534
4535 DPRINTK("ENTER\n");
4536 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004537 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4539 if (!host_set)
4540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 spin_lock_init(&host_set->lock);
4542
4543 host_set->dev = dev;
4544 host_set->n_ports = ent->n_ports;
4545 host_set->irq = ent->irq;
4546 host_set->mmio_base = ent->mmio_base;
4547 host_set->private_data = ent->private_data;
4548 host_set->ops = ent->port_ops;
4549
4550 /* register each port bound to this device */
4551 for (i = 0; i < ent->n_ports; i++) {
4552 struct ata_port *ap;
4553 unsigned long xfer_mode_mask;
4554
4555 ap = ata_host_add(ent, host_set, i);
4556 if (!ap)
4557 goto err_out;
4558
4559 host_set->ports[i] = ap;
4560 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4561 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4562 (ap->pio_mask << ATA_SHIFT_PIO);
4563
4564 /* print per-port info to dmesg */
4565 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4566 "bmdma 0x%lX irq %lu\n",
4567 ap->id,
4568 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4569 ata_mode_string(xfer_mode_mask),
4570 ap->ioaddr.cmd_addr,
4571 ap->ioaddr.ctl_addr,
4572 ap->ioaddr.bmdma_addr,
4573 ent->irq);
4574
4575 ata_chk_status(ap);
4576 host_set->ops->irq_clear(ap);
4577 count++;
4578 }
4579
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004580 if (!count)
4581 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
4583 /* obtain irq, that is shared between channels */
4584 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4585 DRV_NAME, host_set))
4586 goto err_out;
4587
4588 /* perform each probe synchronously */
4589 DPRINTK("probe begin\n");
4590 for (i = 0; i < count; i++) {
4591 struct ata_port *ap;
4592 int rc;
4593
4594 ap = host_set->ports[i];
4595
4596 DPRINTK("ata%u: probe begin\n", ap->id);
4597 rc = ata_bus_probe(ap);
4598 DPRINTK("ata%u: probe end\n", ap->id);
4599
4600 if (rc) {
4601 /* FIXME: do something useful here?
4602 * Current libata behavior will
4603 * tear down everything when
4604 * the module is removed
4605 * or the h/w is unplugged.
4606 */
4607 }
4608
4609 rc = scsi_add_host(ap->host, dev);
4610 if (rc) {
4611 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4612 ap->id);
4613 /* FIXME: do something useful here */
4614 /* FIXME: handle unconditional calls to
4615 * scsi_scan_host and ata_host_remove, below,
4616 * at the very least
4617 */
4618 }
4619 }
4620
4621 /* probes are done, now scan each port's disk(s) */
4622 DPRINTK("probe begin\n");
4623 for (i = 0; i < count; i++) {
4624 struct ata_port *ap = host_set->ports[i];
4625
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004626 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 }
4628
4629 dev_set_drvdata(dev, host_set);
4630
4631 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4632 return ent->n_ports; /* success */
4633
4634err_out:
4635 for (i = 0; i < count; i++) {
4636 ata_host_remove(host_set->ports[i], 1);
4637 scsi_host_put(host_set->ports[i]->host);
4638 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004639err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 kfree(host_set);
4641 VPRINTK("EXIT, returning 0\n");
4642 return 0;
4643}
4644
4645/**
Alan Cox17b14452005-09-15 15:44:00 +01004646 * ata_host_set_remove - PCI layer callback for device removal
4647 * @host_set: ATA host set that was removed
4648 *
4649 * Unregister all objects associated with this host set. Free those
4650 * objects.
4651 *
4652 * LOCKING:
4653 * Inherited from calling layer (may sleep).
4654 */
4655
Alan Cox17b14452005-09-15 15:44:00 +01004656void ata_host_set_remove(struct ata_host_set *host_set)
4657{
4658 struct ata_port *ap;
4659 unsigned int i;
4660
4661 for (i = 0; i < host_set->n_ports; i++) {
4662 ap = host_set->ports[i];
4663 scsi_remove_host(ap->host);
4664 }
4665
4666 free_irq(host_set->irq, host_set);
4667
4668 for (i = 0; i < host_set->n_ports; i++) {
4669 ap = host_set->ports[i];
4670
4671 ata_scsi_release(ap->host);
4672
4673 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4674 struct ata_ioports *ioaddr = &ap->ioaddr;
4675
4676 if (ioaddr->cmd_addr == 0x1f0)
4677 release_region(0x1f0, 8);
4678 else if (ioaddr->cmd_addr == 0x170)
4679 release_region(0x170, 8);
4680 }
4681
4682 scsi_host_put(ap->host);
4683 }
4684
4685 if (host_set->ops->host_stop)
4686 host_set->ops->host_stop(host_set);
4687
4688 kfree(host_set);
4689}
4690
4691/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 * ata_scsi_release - SCSI layer callback hook for host unload
4693 * @host: libata host to be unloaded
4694 *
4695 * Performs all duties necessary to shut down a libata port...
4696 * Kill port kthread, disable port, and release resources.
4697 *
4698 * LOCKING:
4699 * Inherited from SCSI layer.
4700 *
4701 * RETURNS:
4702 * One.
4703 */
4704
4705int ata_scsi_release(struct Scsi_Host *host)
4706{
4707 struct ata_port *ap = (struct ata_port *) &host->hostdata[0];
4708
4709 DPRINTK("ENTER\n");
4710
4711 ap->ops->port_disable(ap);
4712 ata_host_remove(ap, 0);
4713
4714 DPRINTK("EXIT\n");
4715 return 1;
4716}
4717
4718/**
4719 * ata_std_ports - initialize ioaddr with standard port offsets.
4720 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04004721 *
4722 * Utility function which initializes data_addr, error_addr,
4723 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4724 * device_addr, status_addr, and command_addr to standard offsets
4725 * relative to cmd_addr.
4726 *
4727 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 */
Edward Falk0baab862005-06-02 18:17:13 -04004729
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730void ata_std_ports(struct ata_ioports *ioaddr)
4731{
4732 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4733 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4734 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4735 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4736 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4737 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4738 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4739 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4740 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
4741 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
4742}
4743
4744static struct ata_probe_ent *
Jeff Garzik057ace52005-10-22 14:27:05 -04004745ata_probe_ent_alloc(struct device *dev, const struct ata_port_info *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746{
4747 struct ata_probe_ent *probe_ent;
4748
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004749 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 if (!probe_ent) {
4751 printk(KERN_ERR DRV_NAME "(%s): out of memory\n",
4752 kobject_name(&(dev->kobj)));
4753 return NULL;
4754 }
4755
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 INIT_LIST_HEAD(&probe_ent->node);
4757 probe_ent->dev = dev;
4758
4759 probe_ent->sht = port->sht;
4760 probe_ent->host_flags = port->host_flags;
4761 probe_ent->pio_mask = port->pio_mask;
4762 probe_ent->mwdma_mask = port->mwdma_mask;
4763 probe_ent->udma_mask = port->udma_mask;
4764 probe_ent->port_ops = port->port_ops;
4765
4766 return probe_ent;
4767}
4768
Edward Falk0baab862005-06-02 18:17:13 -04004769
4770
Jeff Garzik374b1872005-08-30 05:42:52 -04004771#ifdef CONFIG_PCI
4772
4773void ata_pci_host_stop (struct ata_host_set *host_set)
4774{
4775 struct pci_dev *pdev = to_pci_dev(host_set->dev);
4776
4777 pci_iounmap(pdev, host_set->mmio_base);
4778}
4779
Edward Falk0baab862005-06-02 18:17:13 -04004780/**
4781 * ata_pci_init_native_mode - Initialize native-mode driver
4782 * @pdev: pci device to be initialized
4783 * @port: array[2] of pointers to port info structures.
Alan Cox47a86592005-10-04 08:09:19 -04004784 * @ports: bitmap of ports present
Edward Falk0baab862005-06-02 18:17:13 -04004785 *
4786 * Utility function which allocates and initializes an
4787 * ata_probe_ent structure for a standard dual-port
4788 * PIO-based IDE controller. The returned ata_probe_ent
4789 * structure can be passed to ata_device_add(). The returned
4790 * ata_probe_ent structure should then be freed with kfree().
Alan Cox47a86592005-10-04 08:09:19 -04004791 *
4792 * The caller need only pass the address of the primary port, the
4793 * secondary will be deduced automatically. If the device has non
4794 * standard secondary port mappings this function can be called twice,
4795 * once for each interface.
Edward Falk0baab862005-06-02 18:17:13 -04004796 */
4797
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798struct ata_probe_ent *
Alan Cox47a86592005-10-04 08:09:19 -04004799ata_pci_init_native_mode(struct pci_dev *pdev, struct ata_port_info **port, int ports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800{
4801 struct ata_probe_ent *probe_ent =
4802 ata_probe_ent_alloc(pci_dev_to_dev(pdev), port[0]);
Alan Cox47a86592005-10-04 08:09:19 -04004803 int p = 0;
4804
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 if (!probe_ent)
4806 return NULL;
4807
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 probe_ent->irq = pdev->irq;
4809 probe_ent->irq_flags = SA_SHIRQ;
Alan Coxe99f8b52005-11-08 14:09:44 +00004810 probe_ent->private_data = port[0]->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Alan Cox47a86592005-10-04 08:09:19 -04004812 if (ports & ATA_PORT_PRIMARY) {
4813 probe_ent->port[p].cmd_addr = pci_resource_start(pdev, 0);
4814 probe_ent->port[p].altstatus_addr =
4815 probe_ent->port[p].ctl_addr =
4816 pci_resource_start(pdev, 1) | ATA_PCI_CTL_OFS;
4817 probe_ent->port[p].bmdma_addr = pci_resource_start(pdev, 4);
4818 ata_std_ports(&probe_ent->port[p]);
4819 p++;
4820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
Alan Cox47a86592005-10-04 08:09:19 -04004822 if (ports & ATA_PORT_SECONDARY) {
4823 probe_ent->port[p].cmd_addr = pci_resource_start(pdev, 2);
4824 probe_ent->port[p].altstatus_addr =
4825 probe_ent->port[p].ctl_addr =
4826 pci_resource_start(pdev, 3) | ATA_PCI_CTL_OFS;
4827 probe_ent->port[p].bmdma_addr = pci_resource_start(pdev, 4) + 8;
4828 ata_std_ports(&probe_ent->port[p]);
4829 p++;
4830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
Alan Cox47a86592005-10-04 08:09:19 -04004832 probe_ent->n_ports = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 return probe_ent;
4834}
4835
Jeff Garzik0f0d5192005-10-30 06:41:29 -05004836static 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 -07004837{
Alan Cox47a86592005-10-04 08:09:19 -04004838 struct ata_probe_ent *probe_ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839
Jeff Garzik0f0d5192005-10-30 06:41:29 -05004840 probe_ent = ata_probe_ent_alloc(pci_dev_to_dev(pdev), port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 if (!probe_ent)
4842 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 probe_ent->legacy_mode = 1;
Alan Cox47a86592005-10-04 08:09:19 -04004845 probe_ent->n_ports = 1;
4846 probe_ent->hard_port_no = port_num;
Alan Coxe99f8b52005-11-08 14:09:44 +00004847 probe_ent->private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Alan Cox47a86592005-10-04 08:09:19 -04004849 switch(port_num)
4850 {
4851 case 0:
4852 probe_ent->irq = 14;
4853 probe_ent->port[0].cmd_addr = 0x1f0;
4854 probe_ent->port[0].altstatus_addr =
4855 probe_ent->port[0].ctl_addr = 0x3f6;
4856 break;
4857 case 1:
4858 probe_ent->irq = 15;
4859 probe_ent->port[0].cmd_addr = 0x170;
4860 probe_ent->port[0].altstatus_addr =
4861 probe_ent->port[0].ctl_addr = 0x376;
4862 break;
4863 }
4864 probe_ent->port[0].bmdma_addr = pci_resource_start(pdev, 4) + 8 * port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865 ata_std_ports(&probe_ent->port[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 return probe_ent;
4867}
4868
4869/**
4870 * ata_pci_init_one - Initialize/register PCI IDE host controller
4871 * @pdev: Controller to be initialized
4872 * @port_info: Information from low-level host driver
4873 * @n_ports: Number of ports attached to host controller
4874 *
Edward Falk0baab862005-06-02 18:17:13 -04004875 * This is a helper function which can be called from a driver's
4876 * xxx_init_one() probe function if the hardware uses traditional
4877 * IDE taskfile registers.
4878 *
4879 * This function calls pci_enable_device(), reserves its register
4880 * regions, sets the dma mask, enables bus master mode, and calls
4881 * ata_device_add()
4882 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 * LOCKING:
4884 * Inherited from PCI layer (may sleep).
4885 *
4886 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004887 * Zero on success, negative on errno-based value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 */
4889
4890int ata_pci_init_one (struct pci_dev *pdev, struct ata_port_info **port_info,
4891 unsigned int n_ports)
4892{
Alan Cox47a86592005-10-04 08:09:19 -04004893 struct ata_probe_ent *probe_ent = NULL, *probe_ent2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894 struct ata_port_info *port[2];
4895 u8 tmp8, mask;
4896 unsigned int legacy_mode = 0;
4897 int disable_dev_on_err = 1;
4898 int rc;
4899
4900 DPRINTK("ENTER\n");
4901
4902 port[0] = port_info[0];
4903 if (n_ports > 1)
4904 port[1] = port_info[1];
4905 else
4906 port[1] = port[0];
4907
4908 if ((port[0]->host_flags & ATA_FLAG_NO_LEGACY) == 0
4909 && (pdev->class >> 8) == PCI_CLASS_STORAGE_IDE) {
Alan Cox47a86592005-10-04 08:09:19 -04004910 /* TODO: What if one channel is in native mode ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 pci_read_config_byte(pdev, PCI_CLASS_PROG, &tmp8);
4912 mask = (1 << 2) | (1 << 0);
4913 if ((tmp8 & mask) != mask)
4914 legacy_mode = (1 << 3);
4915 }
4916
4917 /* FIXME... */
Alan Cox47a86592005-10-04 08:09:19 -04004918 if ((!legacy_mode) && (n_ports > 2)) {
4919 printk(KERN_ERR "ata: BUG: native mode, n_ports > 2\n");
4920 n_ports = 2;
4921 /* For now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 }
4923
Alan Cox47a86592005-10-04 08:09:19 -04004924 /* FIXME: Really for ATA it isn't safe because the device may be
4925 multi-purpose and we want to leave it alone if it was already
4926 enabled. Secondly for shared use as Arjan says we want refcounting
4927
4928 Checking dev->is_enabled is insufficient as this is not set at
4929 boot for the primary video which is BIOS enabled
4930 */
4931
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 rc = pci_enable_device(pdev);
4933 if (rc)
4934 return rc;
4935
4936 rc = pci_request_regions(pdev, DRV_NAME);
4937 if (rc) {
4938 disable_dev_on_err = 0;
4939 goto err_out;
4940 }
4941
Alan Cox47a86592005-10-04 08:09:19 -04004942 /* FIXME: Should use platform specific mappers for legacy port ranges */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 if (legacy_mode) {
4944 if (!request_region(0x1f0, 8, "libata")) {
4945 struct resource *conflict, res;
4946 res.start = 0x1f0;
4947 res.end = 0x1f0 + 8 - 1;
4948 conflict = ____request_resource(&ioport_resource, &res);
4949 if (!strcmp(conflict->name, "libata"))
4950 legacy_mode |= (1 << 0);
4951 else {
4952 disable_dev_on_err = 0;
4953 printk(KERN_WARNING "ata: 0x1f0 IDE port busy\n");
4954 }
4955 } else
4956 legacy_mode |= (1 << 0);
4957
4958 if (!request_region(0x170, 8, "libata")) {
4959 struct resource *conflict, res;
4960 res.start = 0x170;
4961 res.end = 0x170 + 8 - 1;
4962 conflict = ____request_resource(&ioport_resource, &res);
4963 if (!strcmp(conflict->name, "libata"))
4964 legacy_mode |= (1 << 1);
4965 else {
4966 disable_dev_on_err = 0;
4967 printk(KERN_WARNING "ata: 0x170 IDE port busy\n");
4968 }
4969 } else
4970 legacy_mode |= (1 << 1);
4971 }
4972
4973 /* we have legacy mode, but all ports are unavailable */
4974 if (legacy_mode == (1 << 3)) {
4975 rc = -EBUSY;
4976 goto err_out_regions;
4977 }
4978
4979 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
4980 if (rc)
4981 goto err_out_regions;
4982 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
4983 if (rc)
4984 goto err_out_regions;
4985
4986 if (legacy_mode) {
Alan Cox47a86592005-10-04 08:09:19 -04004987 if (legacy_mode & (1 << 0))
Jeff Garzik0f0d5192005-10-30 06:41:29 -05004988 probe_ent = ata_pci_init_legacy_port(pdev, port[0], 0);
Alan Cox47a86592005-10-04 08:09:19 -04004989 if (legacy_mode & (1 << 1))
Jeff Garzik0f0d5192005-10-30 06:41:29 -05004990 probe_ent2 = ata_pci_init_legacy_port(pdev, port[1], 1);
Alan Cox47a86592005-10-04 08:09:19 -04004991 } else {
4992 if (n_ports == 2)
4993 probe_ent = ata_pci_init_native_mode(pdev, port, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
4994 else
4995 probe_ent = ata_pci_init_native_mode(pdev, port, ATA_PORT_PRIMARY);
4996 }
4997 if (!probe_ent && !probe_ent2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 rc = -ENOMEM;
4999 goto err_out_regions;
5000 }
5001
5002 pci_set_master(pdev);
5003
5004 /* FIXME: check ata_device_add return */
5005 if (legacy_mode) {
5006 if (legacy_mode & (1 << 0))
5007 ata_device_add(probe_ent);
5008 if (legacy_mode & (1 << 1))
5009 ata_device_add(probe_ent2);
5010 } else
5011 ata_device_add(probe_ent);
5012
5013 kfree(probe_ent);
5014 kfree(probe_ent2);
5015
5016 return 0;
5017
5018err_out_regions:
5019 if (legacy_mode & (1 << 0))
5020 release_region(0x1f0, 8);
5021 if (legacy_mode & (1 << 1))
5022 release_region(0x170, 8);
5023 pci_release_regions(pdev);
5024err_out:
5025 if (disable_dev_on_err)
5026 pci_disable_device(pdev);
5027 return rc;
5028}
5029
5030/**
5031 * ata_pci_remove_one - PCI layer callback for device removal
5032 * @pdev: PCI device that was removed
5033 *
5034 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005035 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 * Handle this by unregistering all objects associated
5037 * with this PCI device. Free those objects. Then finally
5038 * release PCI resources and disable device.
5039 *
5040 * LOCKING:
5041 * Inherited from PCI layer (may sleep).
5042 */
5043
5044void ata_pci_remove_one (struct pci_dev *pdev)
5045{
5046 struct device *dev = pci_dev_to_dev(pdev);
5047 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048
Alan Cox17b14452005-09-15 15:44:00 +01005049 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050 pci_release_regions(pdev);
5051 pci_disable_device(pdev);
5052 dev_set_drvdata(dev, NULL);
5053}
5054
5055/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005056int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057{
5058 unsigned long tmp = 0;
5059
5060 switch (bits->width) {
5061 case 1: {
5062 u8 tmp8 = 0;
5063 pci_read_config_byte(pdev, bits->reg, &tmp8);
5064 tmp = tmp8;
5065 break;
5066 }
5067 case 2: {
5068 u16 tmp16 = 0;
5069 pci_read_config_word(pdev, bits->reg, &tmp16);
5070 tmp = tmp16;
5071 break;
5072 }
5073 case 4: {
5074 u32 tmp32 = 0;
5075 pci_read_config_dword(pdev, bits->reg, &tmp32);
5076 tmp = tmp32;
5077 break;
5078 }
5079
5080 default:
5081 return -EINVAL;
5082 }
5083
5084 tmp &= bits->mask;
5085
5086 return (tmp == bits->val) ? 1 : 0;
5087}
Jens Axboe9b847542006-01-06 09:28:07 +01005088
5089int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5090{
5091 pci_save_state(pdev);
5092 pci_disable_device(pdev);
5093 pci_set_power_state(pdev, PCI_D3hot);
5094 return 0;
5095}
5096
5097int ata_pci_device_resume(struct pci_dev *pdev)
5098{
5099 pci_set_power_state(pdev, PCI_D0);
5100 pci_restore_state(pdev);
5101 pci_enable_device(pdev);
5102 pci_set_master(pdev);
5103 return 0;
5104}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105#endif /* CONFIG_PCI */
5106
5107
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108static int __init ata_init(void)
5109{
5110 ata_wq = create_workqueue("ata");
5111 if (!ata_wq)
5112 return -ENOMEM;
5113
5114 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5115 return 0;
5116}
5117
5118static void __exit ata_exit(void)
5119{
5120 destroy_workqueue(ata_wq);
5121}
5122
5123module_init(ata_init);
5124module_exit(ata_exit);
5125
Jeff Garzik67846b32005-10-05 02:58:32 -04005126static unsigned long ratelimit_time;
5127static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5128
5129int ata_ratelimit(void)
5130{
5131 int rc;
5132 unsigned long flags;
5133
5134 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5135
5136 if (time_after(jiffies, ratelimit_time)) {
5137 rc = 1;
5138 ratelimit_time = jiffies + (HZ/5);
5139 } else
5140 rc = 0;
5141
5142 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5143
5144 return rc;
5145}
5146
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147/*
5148 * libata is essentially a library of internal helper functions for
5149 * low-level ATA host controller drivers. As such, the API/ABI is
5150 * likely to change as new drivers are added and updated.
5151 * Do not depend on ABI/API stability.
5152 */
5153
5154EXPORT_SYMBOL_GPL(ata_std_bios_param);
5155EXPORT_SYMBOL_GPL(ata_std_ports);
5156EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005157EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158EXPORT_SYMBOL_GPL(ata_sg_init);
5159EXPORT_SYMBOL_GPL(ata_sg_init_one);
5160EXPORT_SYMBOL_GPL(ata_qc_complete);
5161EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
5162EXPORT_SYMBOL_GPL(ata_eng_timeout);
5163EXPORT_SYMBOL_GPL(ata_tf_load);
5164EXPORT_SYMBOL_GPL(ata_tf_read);
5165EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5166EXPORT_SYMBOL_GPL(ata_std_dev_select);
5167EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5168EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5169EXPORT_SYMBOL_GPL(ata_check_status);
5170EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171EXPORT_SYMBOL_GPL(ata_exec_command);
5172EXPORT_SYMBOL_GPL(ata_port_start);
5173EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005174EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175EXPORT_SYMBOL_GPL(ata_interrupt);
5176EXPORT_SYMBOL_GPL(ata_qc_prep);
5177EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5178EXPORT_SYMBOL_GPL(ata_bmdma_start);
5179EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5180EXPORT_SYMBOL_GPL(ata_bmdma_status);
5181EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5182EXPORT_SYMBOL_GPL(ata_port_probe);
5183EXPORT_SYMBOL_GPL(sata_phy_reset);
5184EXPORT_SYMBOL_GPL(__sata_phy_reset);
5185EXPORT_SYMBOL_GPL(ata_bus_reset);
5186EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005187EXPORT_SYMBOL_GPL(ata_ratelimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5189EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
5190EXPORT_SYMBOL_GPL(ata_scsi_error);
5191EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5192EXPORT_SYMBOL_GPL(ata_scsi_release);
5193EXPORT_SYMBOL_GPL(ata_host_intr);
5194EXPORT_SYMBOL_GPL(ata_dev_classify);
5195EXPORT_SYMBOL_GPL(ata_dev_id_string);
Brad Campbell6f2f3812005-05-12 15:07:47 -04005196EXPORT_SYMBOL_GPL(ata_dev_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5198
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005199EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005200EXPORT_SYMBOL_GPL(ata_timing_compute);
5201EXPORT_SYMBOL_GPL(ata_timing_merge);
5202
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203#ifdef CONFIG_PCI
5204EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005205EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5207EXPORT_SYMBOL_GPL(ata_pci_init_one);
5208EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005209EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5210EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005212
5213EXPORT_SYMBOL_GPL(ata_device_suspend);
5214EXPORT_SYMBOL_GPL(ata_device_resume);
5215EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5216EXPORT_SYMBOL_GPL(ata_scsi_device_resume);