blob: a17e12032f65133d704f461fee3cfa9b1a1fda9a [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>
54#include "scsi.h"
55#include "scsi_priv.h"
56#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 *
535 * Converts a standard ATA taskfile to a Serial ATA
536 * FIS structure (Register - Host to Device).
537 *
538 * LOCKING:
539 * Inherited from caller.
540 */
541
Jeff Garzik057ace52005-10-22 14:27:05 -0400542void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 tf->command = fis[2]; /* status */
545 tf->feature = fis[3]; /* error */
546
547 tf->lbal = fis[4];
548 tf->lbam = fis[5];
549 tf->lbah = fis[6];
550 tf->device = fis[7];
551
552 tf->hob_lbal = fis[8];
553 tf->hob_lbam = fis[9];
554 tf->hob_lbah = fis[10];
555
556 tf->nsect = fis[12];
557 tf->hob_nsect = fis[13];
558}
559
Albert Lee8cbd6df2005-10-12 15:06:27 +0800560static const u8 ata_rw_cmds[] = {
561 /* pio multi */
562 ATA_CMD_READ_MULTI,
563 ATA_CMD_WRITE_MULTI,
564 ATA_CMD_READ_MULTI_EXT,
565 ATA_CMD_WRITE_MULTI_EXT,
566 /* pio */
567 ATA_CMD_PIO_READ,
568 ATA_CMD_PIO_WRITE,
569 ATA_CMD_PIO_READ_EXT,
570 ATA_CMD_PIO_WRITE_EXT,
571 /* dma */
572 ATA_CMD_READ,
573 ATA_CMD_WRITE,
574 ATA_CMD_READ_EXT,
575 ATA_CMD_WRITE_EXT
576};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800579 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
580 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 *
Albert Lee8cbd6df2005-10-12 15:06:27 +0800582 * Examine the device configuration and tf->flags to calculate
583 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 *
585 * LOCKING:
586 * caller.
587 */
Albert Lee8cbd6df2005-10-12 15:06:27 +0800588void ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800590 struct ata_taskfile *tf = &qc->tf;
591 struct ata_device *dev = qc->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Albert Lee8cbd6df2005-10-12 15:06:27 +0800593 int index, lba48, write;
594
595 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
596 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Albert Lee8cbd6df2005-10-12 15:06:27 +0800598 if (dev->flags & ATA_DFLAG_PIO) {
599 tf->protocol = ATA_PROT_PIO;
600 index = dev->multi_count ? 0 : 4;
601 } else {
602 tf->protocol = ATA_PROT_DMA;
603 index = 8;
604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Albert Lee8cbd6df2005-10-12 15:06:27 +0800606 tf->command = ata_rw_cmds[index + lba48 + write];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609static const char * xfer_mode_str[] = {
610 "UDMA/16",
611 "UDMA/25",
612 "UDMA/33",
613 "UDMA/44",
614 "UDMA/66",
615 "UDMA/100",
616 "UDMA/133",
617 "UDMA7",
618 "MWDMA0",
619 "MWDMA1",
620 "MWDMA2",
621 "PIO0",
622 "PIO1",
623 "PIO2",
624 "PIO3",
625 "PIO4",
626};
627
628/**
629 * ata_udma_string - convert UDMA bit offset to string
630 * @mask: mask of bits supported; only highest bit counts.
631 *
632 * Determine string which represents the highest speed
633 * (highest bit in @udma_mask).
634 *
635 * LOCKING:
636 * None.
637 *
638 * RETURNS:
639 * Constant C string representing highest speed listed in
640 * @udma_mask, or the constant C string "<n/a>".
641 */
642
643static const char *ata_mode_string(unsigned int mask)
644{
645 int i;
646
647 for (i = 7; i >= 0; i--)
648 if (mask & (1 << i))
649 goto out;
650 for (i = ATA_SHIFT_MWDMA + 2; i >= ATA_SHIFT_MWDMA; i--)
651 if (mask & (1 << i))
652 goto out;
653 for (i = ATA_SHIFT_PIO + 4; i >= ATA_SHIFT_PIO; i--)
654 if (mask & (1 << i))
655 goto out;
656
657 return "<n/a>";
658
659out:
660 return xfer_mode_str[i];
661}
662
663/**
664 * ata_pio_devchk - PATA device presence detection
665 * @ap: ATA channel to examine
666 * @device: Device to examine (starting at zero)
667 *
668 * This technique was originally described in
669 * Hale Landis's ATADRVR (www.ata-atapi.com), and
670 * later found its way into the ATA/ATAPI spec.
671 *
672 * Write a pattern to the ATA shadow registers,
673 * and if a device is present, it will respond by
674 * correctly storing and echoing back the
675 * ATA shadow register contents.
676 *
677 * LOCKING:
678 * caller.
679 */
680
681static unsigned int ata_pio_devchk(struct ata_port *ap,
682 unsigned int device)
683{
684 struct ata_ioports *ioaddr = &ap->ioaddr;
685 u8 nsect, lbal;
686
687 ap->ops->dev_select(ap, device);
688
689 outb(0x55, ioaddr->nsect_addr);
690 outb(0xaa, ioaddr->lbal_addr);
691
692 outb(0xaa, ioaddr->nsect_addr);
693 outb(0x55, ioaddr->lbal_addr);
694
695 outb(0x55, ioaddr->nsect_addr);
696 outb(0xaa, ioaddr->lbal_addr);
697
698 nsect = inb(ioaddr->nsect_addr);
699 lbal = inb(ioaddr->lbal_addr);
700
701 if ((nsect == 0x55) && (lbal == 0xaa))
702 return 1; /* we found a device */
703
704 return 0; /* nothing found */
705}
706
707/**
708 * ata_mmio_devchk - PATA device presence detection
709 * @ap: ATA channel to examine
710 * @device: Device to examine (starting at zero)
711 *
712 * This technique was originally described in
713 * Hale Landis's ATADRVR (www.ata-atapi.com), and
714 * later found its way into the ATA/ATAPI spec.
715 *
716 * Write a pattern to the ATA shadow registers,
717 * and if a device is present, it will respond by
718 * correctly storing and echoing back the
719 * ATA shadow register contents.
720 *
721 * LOCKING:
722 * caller.
723 */
724
725static unsigned int ata_mmio_devchk(struct ata_port *ap,
726 unsigned int device)
727{
728 struct ata_ioports *ioaddr = &ap->ioaddr;
729 u8 nsect, lbal;
730
731 ap->ops->dev_select(ap, device);
732
733 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
734 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
735
736 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
737 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
738
739 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
740 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
741
742 nsect = readb((void __iomem *) ioaddr->nsect_addr);
743 lbal = readb((void __iomem *) ioaddr->lbal_addr);
744
745 if ((nsect == 0x55) && (lbal == 0xaa))
746 return 1; /* we found a device */
747
748 return 0; /* nothing found */
749}
750
751/**
752 * ata_devchk - PATA device presence detection
753 * @ap: ATA channel to examine
754 * @device: Device to examine (starting at zero)
755 *
756 * Dispatch ATA device presence detection, depending
757 * on whether we are using PIO or MMIO to talk to the
758 * ATA shadow registers.
759 *
760 * LOCKING:
761 * caller.
762 */
763
764static unsigned int ata_devchk(struct ata_port *ap,
765 unsigned int device)
766{
767 if (ap->flags & ATA_FLAG_MMIO)
768 return ata_mmio_devchk(ap, device);
769 return ata_pio_devchk(ap, device);
770}
771
772/**
773 * ata_dev_classify - determine device type based on ATA-spec signature
774 * @tf: ATA taskfile register set for device to be identified
775 *
776 * Determine from taskfile register contents whether a device is
777 * ATA or ATAPI, as per "Signature and persistence" section
778 * of ATA/PI spec (volume 1, sect 5.14).
779 *
780 * LOCKING:
781 * None.
782 *
783 * RETURNS:
784 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
785 * the event of failure.
786 */
787
Jeff Garzik057ace52005-10-22 14:27:05 -0400788unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 /* Apple's open source Darwin code hints that some devices only
791 * put a proper signature into the LBA mid/high registers,
792 * So, we only check those. It's sufficient for uniqueness.
793 */
794
795 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
796 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
797 DPRINTK("found ATA device by sig\n");
798 return ATA_DEV_ATA;
799 }
800
801 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
802 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
803 DPRINTK("found ATAPI device by sig\n");
804 return ATA_DEV_ATAPI;
805 }
806
807 DPRINTK("unknown device\n");
808 return ATA_DEV_UNKNOWN;
809}
810
811/**
812 * ata_dev_try_classify - Parse returned ATA device signature
813 * @ap: ATA channel to examine
814 * @device: Device to examine (starting at zero)
815 *
816 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
817 * an ATA/ATAPI-defined set of values is placed in the ATA
818 * shadow registers, indicating the results of device detection
819 * and diagnostics.
820 *
821 * Select the ATA device, and read the values from the ATA shadow
822 * registers. Then parse according to the Error register value,
823 * and the spec-defined values examined by ata_dev_classify().
824 *
825 * LOCKING:
826 * caller.
827 */
828
829static u8 ata_dev_try_classify(struct ata_port *ap, unsigned int device)
830{
831 struct ata_device *dev = &ap->device[device];
832 struct ata_taskfile tf;
833 unsigned int class;
834 u8 err;
835
836 ap->ops->dev_select(ap, device);
837
838 memset(&tf, 0, sizeof(tf));
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400841 err = tf.feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 dev->class = ATA_DEV_NONE;
844
845 /* see if device passed diags */
846 if (err == 1)
847 /* do nothing */ ;
848 else if ((device == 0) && (err == 0x81))
849 /* do nothing */ ;
850 else
851 return err;
852
853 /* determine if device if ATA or ATAPI */
854 class = ata_dev_classify(&tf);
855 if (class == ATA_DEV_UNKNOWN)
856 return err;
857 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
858 return err;
859
860 dev->class = class;
861
862 return err;
863}
864
865/**
866 * ata_dev_id_string - Convert IDENTIFY DEVICE page into string
867 * @id: IDENTIFY DEVICE results we will examine
868 * @s: string into which data is output
869 * @ofs: offset into identify device page
870 * @len: length of string to return. must be an even number.
871 *
872 * The strings in the IDENTIFY DEVICE page are broken up into
873 * 16-bit chunks. Run through the string, and output each
874 * 8-bit chunk linearly, regardless of platform.
875 *
876 * LOCKING:
877 * caller.
878 */
879
Jeff Garzik057ace52005-10-22 14:27:05 -0400880void ata_dev_id_string(const u16 *id, unsigned char *s,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 unsigned int ofs, unsigned int len)
882{
883 unsigned int c;
884
885 while (len > 0) {
886 c = id[ofs] >> 8;
887 *s = c;
888 s++;
889
890 c = id[ofs] & 0xff;
891 *s = c;
892 s++;
893
894 ofs++;
895 len -= 2;
896 }
897}
898
Edward Falk0baab862005-06-02 18:17:13 -0400899
900/**
901 * ata_noop_dev_select - Select device 0/1 on ATA bus
902 * @ap: ATA channel to manipulate
903 * @device: ATA device (numbered from zero) to select
904 *
905 * This function performs no actual function.
906 *
907 * May be used as the dev_select() entry in ata_port_operations.
908 *
909 * LOCKING:
910 * caller.
911 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
913{
914}
915
Edward Falk0baab862005-06-02 18:17:13 -0400916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917/**
918 * ata_std_dev_select - Select device 0/1 on ATA bus
919 * @ap: ATA channel to manipulate
920 * @device: ATA device (numbered from zero) to select
921 *
922 * Use the method defined in the ATA specification to
923 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400924 * ATA channel. Works with both PIO and MMIO.
925 *
926 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 *
928 * LOCKING:
929 * caller.
930 */
931
932void ata_std_dev_select (struct ata_port *ap, unsigned int device)
933{
934 u8 tmp;
935
936 if (device == 0)
937 tmp = ATA_DEVICE_OBS;
938 else
939 tmp = ATA_DEVICE_OBS | ATA_DEV1;
940
941 if (ap->flags & ATA_FLAG_MMIO) {
942 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
943 } else {
944 outb(tmp, ap->ioaddr.device_addr);
945 }
946 ata_pause(ap); /* needed; also flushes, for mmio */
947}
948
949/**
950 * ata_dev_select - Select device 0/1 on ATA bus
951 * @ap: ATA channel to manipulate
952 * @device: ATA device (numbered from zero) to select
953 * @wait: non-zero to wait for Status register BSY bit to clear
954 * @can_sleep: non-zero if context allows sleeping
955 *
956 * Use the method defined in the ATA specification to
957 * make either device 0, or device 1, active on the
958 * ATA channel.
959 *
960 * This is a high-level version of ata_std_dev_select(),
961 * which additionally provides the services of inserting
962 * the proper pauses and status polling, where needed.
963 *
964 * LOCKING:
965 * caller.
966 */
967
968void ata_dev_select(struct ata_port *ap, unsigned int device,
969 unsigned int wait, unsigned int can_sleep)
970{
971 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
972 ap->id, device, wait);
973
974 if (wait)
975 ata_wait_idle(ap);
976
977 ap->ops->dev_select(ap, device);
978
979 if (wait) {
980 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
981 msleep(150);
982 ata_wait_idle(ap);
983 }
984}
985
986/**
987 * ata_dump_id - IDENTIFY DEVICE info debugging output
988 * @dev: Device whose IDENTIFY DEVICE page we will dump
989 *
990 * Dump selected 16-bit words from a detected device's
991 * IDENTIFY PAGE page.
992 *
993 * LOCKING:
994 * caller.
995 */
996
Jeff Garzik057ace52005-10-22 14:27:05 -0400997static inline void ata_dump_id(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
999 DPRINTK("49==0x%04x "
1000 "53==0x%04x "
1001 "63==0x%04x "
1002 "64==0x%04x "
1003 "75==0x%04x \n",
1004 dev->id[49],
1005 dev->id[53],
1006 dev->id[63],
1007 dev->id[64],
1008 dev->id[75]);
1009 DPRINTK("80==0x%04x "
1010 "81==0x%04x "
1011 "82==0x%04x "
1012 "83==0x%04x "
1013 "84==0x%04x \n",
1014 dev->id[80],
1015 dev->id[81],
1016 dev->id[82],
1017 dev->id[83],
1018 dev->id[84]);
1019 DPRINTK("88==0x%04x "
1020 "93==0x%04x\n",
1021 dev->id[88],
1022 dev->id[93]);
1023}
1024
Alan Cox11e29e22005-10-21 18:46:32 -04001025/*
1026 * Compute the PIO modes available for this device. This is not as
1027 * trivial as it seems if we must consider early devices correctly.
1028 *
1029 * FIXME: pre IDE drive timing (do we care ?).
1030 */
1031
Jeff Garzik057ace52005-10-22 14:27:05 -04001032static unsigned int ata_pio_modes(const struct ata_device *adev)
Alan Cox11e29e22005-10-21 18:46:32 -04001033{
1034 u16 modes;
1035
1036 /* Usual case. Word 53 indicates word 88 is valid */
1037 if (adev->id[ATA_ID_FIELD_VALID] & (1 << 2)) {
1038 modes = adev->id[ATA_ID_PIO_MODES] & 0x03;
1039 modes <<= 3;
1040 modes |= 0x7;
1041 return modes;
1042 }
1043
1044 /* If word 88 isn't valid then Word 51 holds the PIO timing number
1045 for the maximum. Turn it into a mask and return it */
1046 modes = (2 << (adev->id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
1047 return modes;
1048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050/**
1051 * ata_dev_identify - obtain IDENTIFY x DEVICE page
1052 * @ap: port on which device we wish to probe resides
1053 * @device: device bus address, starting at zero
1054 *
1055 * Following bus reset, we issue the IDENTIFY [PACKET] DEVICE
1056 * command, and read back the 512-byte device information page.
1057 * The device information page is fed to us via the standard
1058 * PIO-IN protocol, but we hand-code it here. (TODO: investigate
1059 * using standard PIO-IN paths)
1060 *
1061 * After reading the device information page, we use several
1062 * bits of information from it to initialize data structures
1063 * that will be used during the lifetime of the ata_device.
1064 * Other data from the info page is used to disqualify certain
1065 * older ATA devices we do not wish to support.
1066 *
1067 * LOCKING:
1068 * Inherited from caller. Some functions called by this function
1069 * obtain the host_set lock.
1070 */
1071
1072static void ata_dev_identify(struct ata_port *ap, unsigned int device)
1073{
1074 struct ata_device *dev = &ap->device[device];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001075 unsigned int major_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 u16 tmp;
1077 unsigned long xfer_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 unsigned int using_edd;
1079 DECLARE_COMPLETION(wait);
1080 struct ata_queued_cmd *qc;
1081 unsigned long flags;
1082 int rc;
1083
1084 if (!ata_dev_present(dev)) {
1085 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
1086 ap->id, device);
1087 return;
1088 }
1089
1090 if (ap->flags & (ATA_FLAG_SRST | ATA_FLAG_SATA_RESET))
1091 using_edd = 0;
1092 else
1093 using_edd = 1;
1094
1095 DPRINTK("ENTER, host %u, dev %u\n", ap->id, device);
1096
1097 assert (dev->class == ATA_DEV_ATA || dev->class == ATA_DEV_ATAPI ||
1098 dev->class == ATA_DEV_NONE);
1099
1100 ata_dev_select(ap, device, 1, 1); /* select device 0/1 */
1101
1102 qc = ata_qc_new_init(ap, dev);
1103 BUG_ON(qc == NULL);
1104
1105 ata_sg_init_one(qc, dev->id, sizeof(dev->id));
1106 qc->dma_dir = DMA_FROM_DEVICE;
1107 qc->tf.protocol = ATA_PROT_PIO;
1108 qc->nsect = 1;
1109
1110retry:
1111 if (dev->class == ATA_DEV_ATA) {
1112 qc->tf.command = ATA_CMD_ID_ATA;
1113 DPRINTK("do ATA identify\n");
1114 } else {
1115 qc->tf.command = ATA_CMD_ID_ATAPI;
1116 DPRINTK("do ATAPI identify\n");
1117 }
1118
1119 qc->waiting = &wait;
1120 qc->complete_fn = ata_qc_complete_noop;
1121
1122 spin_lock_irqsave(&ap->host_set->lock, flags);
1123 rc = ata_qc_issue(qc);
1124 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1125
1126 if (rc)
1127 goto err_out;
1128 else
1129 wait_for_completion(&wait);
1130
Jeff Garzik0169e282005-10-29 21:25:10 -04001131 spin_lock_irqsave(&ap->host_set->lock, flags);
1132 ap->ops->tf_read(ap, &qc->tf);
1133 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1134
1135 if (qc->tf.command & ATA_ERR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 /*
1137 * arg! EDD works for all test cases, but seems to return
1138 * the ATA signature for some ATAPI devices. Until the
1139 * reason for this is found and fixed, we fix up the mess
1140 * here. If IDENTIFY DEVICE returns command aborted
1141 * (as ATAPI devices do), then we issue an
1142 * IDENTIFY PACKET DEVICE.
1143 *
1144 * ATA software reset (SRST, the default) does not appear
1145 * to have this problem.
1146 */
1147 if ((using_edd) && (qc->tf.command == ATA_CMD_ID_ATA)) {
Jeff Garzik0169e282005-10-29 21:25:10 -04001148 u8 err = qc->tf.feature;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (err & ATA_ABORTED) {
1150 dev->class = ATA_DEV_ATAPI;
1151 qc->cursg = 0;
1152 qc->cursg_ofs = 0;
1153 qc->cursect = 0;
1154 qc->nsect = 1;
1155 goto retry;
1156 }
1157 }
1158 goto err_out;
1159 }
1160
1161 swap_buf_le16(dev->id, ATA_ID_WORDS);
1162
1163 /* print device capabilities */
1164 printk(KERN_DEBUG "ata%u: dev %u cfg "
1165 "49:%04x 82:%04x 83:%04x 84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1166 ap->id, device, dev->id[49],
1167 dev->id[82], dev->id[83], dev->id[84],
1168 dev->id[85], dev->id[86], dev->id[87],
1169 dev->id[88]);
1170
1171 /*
1172 * common ATA, ATAPI feature tests
1173 */
1174
Albert Lee8bf62ec2005-05-12 15:29:42 -04001175 /* we require DMA support (bits 8 of word 49) */
1176 if (!ata_id_has_dma(dev->id)) {
1177 printk(KERN_DEBUG "ata%u: no dma\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 goto err_out_nosup;
1179 }
1180
1181 /* quick-n-dirty find max transfer mode; for printk only */
1182 xfer_modes = dev->id[ATA_ID_UDMA_MODES];
1183 if (!xfer_modes)
1184 xfer_modes = (dev->id[ATA_ID_MWDMA_MODES]) << ATA_SHIFT_MWDMA;
Alan Cox11e29e22005-10-21 18:46:32 -04001185 if (!xfer_modes)
1186 xfer_modes = ata_pio_modes(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 ata_dump_id(dev);
1189
1190 /* ATA-specific feature tests */
1191 if (dev->class == ATA_DEV_ATA) {
1192 if (!ata_id_is_ata(dev->id)) /* sanity check */
1193 goto err_out_nosup;
1194
Albert Lee8bf62ec2005-05-12 15:29:42 -04001195 /* get major version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 tmp = dev->id[ATA_ID_MAJOR_VER];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001197 for (major_version = 14; major_version >= 1; major_version--)
1198 if (tmp & (1 << major_version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 break;
1200
Albert Lee8bf62ec2005-05-12 15:29:42 -04001201 /*
1202 * The exact sequence expected by certain pre-ATA4 drives is:
1203 * SRST RESET
1204 * IDENTIFY
1205 * INITIALIZE DEVICE PARAMETERS
1206 * anything else..
1207 * Some drives were very specific about that exact sequence.
1208 */
Albert Lee59a10b12005-10-12 15:09:42 +08001209 if (major_version < 4 || (!ata_id_has_lba(dev->id))) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001210 ata_dev_init_params(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Albert Lee59a10b12005-10-12 15:09:42 +08001212 /* current CHS translation info (id[53-58]) might be
1213 * changed. reread the identify device info.
1214 */
1215 ata_dev_reread_id(ap, dev);
1216 }
1217
Albert Lee8bf62ec2005-05-12 15:29:42 -04001218 if (ata_id_has_lba(dev->id)) {
1219 dev->flags |= ATA_DFLAG_LBA;
1220
1221 if (ata_id_has_lba48(dev->id)) {
1222 dev->flags |= ATA_DFLAG_LBA48;
1223 dev->n_sectors = ata_id_u64(dev->id, 100);
1224 } else {
1225 dev->n_sectors = ata_id_u32(dev->id, 60);
1226 }
1227
1228 /* print device info to dmesg */
1229 printk(KERN_INFO "ata%u: dev %u ATA-%d, max %s, %Lu sectors:%s\n",
1230 ap->id, device,
1231 major_version,
1232 ata_mode_string(xfer_modes),
1233 (unsigned long long)dev->n_sectors,
1234 dev->flags & ATA_DFLAG_LBA48 ? " LBA48" : " LBA");
1235 } else {
1236 /* CHS */
1237
1238 /* Default translation */
1239 dev->cylinders = dev->id[1];
1240 dev->heads = dev->id[3];
1241 dev->sectors = dev->id[6];
1242 dev->n_sectors = dev->cylinders * dev->heads * dev->sectors;
1243
1244 if (ata_id_current_chs_valid(dev->id)) {
1245 /* Current CHS translation is valid. */
1246 dev->cylinders = dev->id[54];
1247 dev->heads = dev->id[55];
1248 dev->sectors = dev->id[56];
1249
1250 dev->n_sectors = ata_id_u32(dev->id, 57);
1251 }
1252
1253 /* print device info to dmesg */
1254 printk(KERN_INFO "ata%u: dev %u ATA-%d, max %s, %Lu sectors: CHS %d/%d/%d\n",
1255 ap->id, device,
1256 major_version,
1257 ata_mode_string(xfer_modes),
1258 (unsigned long long)dev->n_sectors,
1259 (int)dev->cylinders, (int)dev->heads, (int)dev->sectors);
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262
1263 ap->host->max_cmd_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265
1266 /* ATAPI-specific feature tests */
1267 else {
1268 if (ata_id_is_ata(dev->id)) /* sanity check */
1269 goto err_out_nosup;
1270
1271 rc = atapi_cdb_len(dev->id);
1272 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1273 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
1274 goto err_out_nosup;
1275 }
1276 ap->cdb_len = (unsigned int) rc;
1277 ap->host->max_cmd_len = (unsigned char) ap->cdb_len;
1278
1279 /* print device info to dmesg */
1280 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
1281 ap->id, device,
1282 ata_mode_string(xfer_modes));
1283 }
1284
1285 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
1286 return;
1287
1288err_out_nosup:
1289 printk(KERN_WARNING "ata%u: dev %u not supported, ignoring\n",
1290 ap->id, device);
1291err_out:
1292 dev->class++; /* converts ATA_DEV_xxx into ATA_DEV_xxx_UNSUP */
1293 DPRINTK("EXIT, err\n");
1294}
1295
Brad Campbell6f2f3812005-05-12 15:07:47 -04001296
Jeff Garzik057ace52005-10-22 14:27:05 -04001297static inline u8 ata_dev_knobble(const struct ata_port *ap)
Brad Campbell6f2f3812005-05-12 15:07:47 -04001298{
1299 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(ap->device->id)));
1300}
1301
1302/**
1303 * ata_dev_config - Run device specific handlers and check for
1304 * SATA->PATA bridges
Jeff Garzik8a60a072005-07-31 13:13:24 -04001305 * @ap: Bus
Brad Campbell6f2f3812005-05-12 15:07:47 -04001306 * @i: Device
1307 *
1308 * LOCKING:
1309 */
Jeff Garzik8a60a072005-07-31 13:13:24 -04001310
Brad Campbell6f2f3812005-05-12 15:07:47 -04001311void ata_dev_config(struct ata_port *ap, unsigned int i)
1312{
1313 /* limit bridge transfers to udma5, 200 sectors */
1314 if (ata_dev_knobble(ap)) {
1315 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1316 ap->id, ap->device->devno);
1317 ap->udma_mask &= ATA_UDMA5;
1318 ap->host->max_sectors = ATA_MAX_SECTORS;
1319 ap->host->hostt->max_sectors = ATA_MAX_SECTORS;
1320 ap->device->flags |= ATA_DFLAG_LOCK_SECTORS;
1321 }
1322
1323 if (ap->ops->dev_config)
1324 ap->ops->dev_config(ap, &ap->device[i]);
1325}
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327/**
1328 * ata_bus_probe - Reset and probe ATA bus
1329 * @ap: Bus to probe
1330 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001331 * Master ATA bus probing function. Initiates a hardware-dependent
1332 * bus reset, then attempts to identify any devices found on
1333 * the bus.
1334 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001336 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 *
1338 * RETURNS:
1339 * Zero on success, non-zero on error.
1340 */
1341
1342static int ata_bus_probe(struct ata_port *ap)
1343{
1344 unsigned int i, found = 0;
1345
1346 ap->ops->phy_reset(ap);
1347 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1348 goto err_out;
1349
1350 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1351 ata_dev_identify(ap, i);
1352 if (ata_dev_present(&ap->device[i])) {
1353 found = 1;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001354 ata_dev_config(ap,i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356 }
1357
1358 if ((!found) || (ap->flags & ATA_FLAG_PORT_DISABLED))
1359 goto err_out_disable;
1360
1361 ata_set_mode(ap);
1362 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1363 goto err_out_disable;
1364
1365 return 0;
1366
1367err_out_disable:
1368 ap->ops->port_disable(ap);
1369err_out:
1370 return -1;
1371}
1372
1373/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001374 * ata_port_probe - Mark port as enabled
1375 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001377 * Modify @ap data structure such that the system
1378 * thinks that the entire port is enabled.
1379 *
1380 * LOCKING: host_set lock, or some other form of
1381 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 */
1383
1384void ata_port_probe(struct ata_port *ap)
1385{
1386 ap->flags &= ~ATA_FLAG_PORT_DISABLED;
1387}
1388
1389/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001390 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1391 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001393 * This function issues commands to standard SATA Sxxx
1394 * PHY registers, to wake up the phy (and device), and
1395 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 *
1397 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001398 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 *
1400 */
1401void __sata_phy_reset(struct ata_port *ap)
1402{
1403 u32 sstatus;
1404 unsigned long timeout = jiffies + (HZ * 5);
1405
1406 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001407 /* issue phy wake/reset */
1408 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001409 /* Couldn't find anything in SATA I/II specs, but
1410 * AHCI-1.1 10.4.2 says at least 1 ms. */
1411 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
Brett Russcdcca892005-03-28 15:10:27 -05001413 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 /* wait for phy to become ready, if necessary */
1416 do {
1417 msleep(200);
1418 sstatus = scr_read(ap, SCR_STATUS);
1419 if ((sstatus & 0xf) != 1)
1420 break;
1421 } while (time_before(jiffies, timeout));
1422
1423 /* TODO: phy layer with polling, timeouts, etc. */
1424 if (sata_dev_present(ap))
1425 ata_port_probe(ap);
1426 else {
1427 sstatus = scr_read(ap, SCR_STATUS);
1428 printk(KERN_INFO "ata%u: no device found (phy stat %08x)\n",
1429 ap->id, sstatus);
1430 ata_port_disable(ap);
1431 }
1432
1433 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1434 return;
1435
1436 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1437 ata_port_disable(ap);
1438 return;
1439 }
1440
1441 ap->cbl = ATA_CBL_SATA;
1442}
1443
1444/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001445 * sata_phy_reset - Reset SATA bus.
1446 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001448 * This function resets the SATA bus, and then probes
1449 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 *
1451 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001452 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 *
1454 */
1455void sata_phy_reset(struct ata_port *ap)
1456{
1457 __sata_phy_reset(ap);
1458 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1459 return;
1460 ata_bus_reset(ap);
1461}
1462
1463/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001464 * ata_port_disable - Disable port.
1465 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001467 * Modify @ap data structure such that the system
1468 * thinks that the entire port is disabled, and should
1469 * never attempt to probe or communicate with devices
1470 * on this port.
1471 *
1472 * LOCKING: host_set lock, or some other form of
1473 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 */
1475
1476void ata_port_disable(struct ata_port *ap)
1477{
1478 ap->device[0].class = ATA_DEV_NONE;
1479 ap->device[1].class = ATA_DEV_NONE;
1480 ap->flags |= ATA_FLAG_PORT_DISABLED;
1481}
1482
Alan Cox452503f2005-10-21 19:01:32 -04001483/*
1484 * This mode timing computation functionality is ported over from
1485 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1486 */
1487/*
1488 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1489 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1490 * for PIO 5, which is a nonstandard extension and UDMA6, which
1491 * is currently supported only by Maxtor drives.
1492 */
1493
1494static const struct ata_timing ata_timing[] = {
1495
1496 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1497 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1498 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1499 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1500
1501 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1502 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1503 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1504
1505/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
1506
1507 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1508 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1509 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
1510
1511 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1512 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1513 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1514
1515/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1516 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1517 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1518
1519 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1520 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1521 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1522
1523/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1524
1525 { 0xFF }
1526};
1527
1528#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1529#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1530
1531static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1532{
1533 q->setup = EZ(t->setup * 1000, T);
1534 q->act8b = EZ(t->act8b * 1000, T);
1535 q->rec8b = EZ(t->rec8b * 1000, T);
1536 q->cyc8b = EZ(t->cyc8b * 1000, T);
1537 q->active = EZ(t->active * 1000, T);
1538 q->recover = EZ(t->recover * 1000, T);
1539 q->cycle = EZ(t->cycle * 1000, T);
1540 q->udma = EZ(t->udma * 1000, UT);
1541}
1542
1543void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1544 struct ata_timing *m, unsigned int what)
1545{
1546 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1547 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1548 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1549 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1550 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1551 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1552 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1553 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1554}
1555
1556static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1557{
1558 const struct ata_timing *t;
1559
1560 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001561 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001562 return NULL;
1563 return t;
1564}
1565
1566int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1567 struct ata_timing *t, int T, int UT)
1568{
1569 const struct ata_timing *s;
1570 struct ata_timing p;
1571
1572 /*
1573 * Find the mode.
1574 */
1575
1576 if (!(s = ata_timing_find_mode(speed)))
1577 return -EINVAL;
1578
1579 /*
1580 * If the drive is an EIDE drive, it can tell us it needs extended
1581 * PIO/MW_DMA cycle timing.
1582 */
1583
1584 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1585 memset(&p, 0, sizeof(p));
1586 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1587 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1588 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1589 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1590 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1591 }
1592 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1593 }
1594
1595 /*
1596 * Convert the timing to bus clock counts.
1597 */
1598
1599 ata_timing_quantize(s, t, T, UT);
1600
1601 /*
1602 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY, S.M.A.R.T
1603 * and some other commands. We have to ensure that the DMA cycle timing is
1604 * slower/equal than the fastest PIO timing.
1605 */
1606
1607 if (speed > XFER_PIO_4) {
1608 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1609 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1610 }
1611
1612 /*
1613 * Lenghten active & recovery time so that cycle time is correct.
1614 */
1615
1616 if (t->act8b + t->rec8b < t->cyc8b) {
1617 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1618 t->rec8b = t->cyc8b - t->act8b;
1619 }
1620
1621 if (t->active + t->recover < t->cycle) {
1622 t->active += (t->cycle - (t->active + t->recover)) / 2;
1623 t->recover = t->cycle - t->active;
1624 }
1625
1626 return 0;
1627}
1628
Jeff Garzik057ace52005-10-22 14:27:05 -04001629static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 unsigned int shift;
1631 u8 base;
1632} xfer_mode_classes[] = {
1633 { ATA_SHIFT_UDMA, XFER_UDMA_0 },
1634 { ATA_SHIFT_MWDMA, XFER_MW_DMA_0 },
1635 { ATA_SHIFT_PIO, XFER_PIO_0 },
1636};
1637
1638static inline u8 base_from_shift(unsigned int shift)
1639{
1640 int i;
1641
1642 for (i = 0; i < ARRAY_SIZE(xfer_mode_classes); i++)
1643 if (xfer_mode_classes[i].shift == shift)
1644 return xfer_mode_classes[i].base;
1645
1646 return 0xff;
1647}
1648
1649static void ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
1650{
1651 int ofs, idx;
1652 u8 base;
1653
1654 if (!ata_dev_present(dev) || (ap->flags & ATA_FLAG_PORT_DISABLED))
1655 return;
1656
1657 if (dev->xfer_shift == ATA_SHIFT_PIO)
1658 dev->flags |= ATA_DFLAG_PIO;
1659
1660 ata_dev_set_xfermode(ap, dev);
1661
1662 base = base_from_shift(dev->xfer_shift);
1663 ofs = dev->xfer_mode - base;
1664 idx = ofs + dev->xfer_shift;
1665 WARN_ON(idx >= ARRAY_SIZE(xfer_mode_str));
1666
1667 DPRINTK("idx=%d xfer_shift=%u, xfer_mode=0x%x, base=0x%x, offset=%d\n",
1668 idx, dev->xfer_shift, (int)dev->xfer_mode, (int)base, ofs);
1669
1670 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
1671 ap->id, dev->devno, xfer_mode_str[idx]);
1672}
1673
1674static int ata_host_set_pio(struct ata_port *ap)
1675{
1676 unsigned int mask;
1677 int x, i;
1678 u8 base, xfer_mode;
1679
1680 mask = ata_get_mode_mask(ap, ATA_SHIFT_PIO);
1681 x = fgb(mask);
1682 if (x < 0) {
1683 printk(KERN_WARNING "ata%u: no PIO support\n", ap->id);
1684 return -1;
1685 }
1686
1687 base = base_from_shift(ATA_SHIFT_PIO);
1688 xfer_mode = base + x;
1689
1690 DPRINTK("base 0x%x xfer_mode 0x%x mask 0x%x x %d\n",
1691 (int)base, (int)xfer_mode, mask, x);
1692
1693 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1694 struct ata_device *dev = &ap->device[i];
1695 if (ata_dev_present(dev)) {
1696 dev->pio_mode = xfer_mode;
1697 dev->xfer_mode = xfer_mode;
1698 dev->xfer_shift = ATA_SHIFT_PIO;
1699 if (ap->ops->set_piomode)
1700 ap->ops->set_piomode(ap, dev);
1701 }
1702 }
1703
1704 return 0;
1705}
1706
1707static void ata_host_set_dma(struct ata_port *ap, u8 xfer_mode,
1708 unsigned int xfer_shift)
1709{
1710 int i;
1711
1712 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1713 struct ata_device *dev = &ap->device[i];
1714 if (ata_dev_present(dev)) {
1715 dev->dma_mode = xfer_mode;
1716 dev->xfer_mode = xfer_mode;
1717 dev->xfer_shift = xfer_shift;
1718 if (ap->ops->set_dmamode)
1719 ap->ops->set_dmamode(ap, dev);
1720 }
1721 }
1722}
1723
1724/**
1725 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1726 * @ap: port on which timings will be programmed
1727 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001728 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.).
1729 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001731 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 *
1733 */
1734static void ata_set_mode(struct ata_port *ap)
1735{
Albert Lee8cbd6df2005-10-12 15:06:27 +08001736 unsigned int xfer_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 u8 xfer_mode;
1738 int rc;
1739
1740 /* step 1: always set host PIO timings */
1741 rc = ata_host_set_pio(ap);
1742 if (rc)
1743 goto err_out;
1744
1745 /* step 2: choose the best data xfer mode */
1746 xfer_mode = xfer_shift = 0;
1747 rc = ata_choose_xfer_mode(ap, &xfer_mode, &xfer_shift);
1748 if (rc)
1749 goto err_out;
1750
1751 /* step 3: if that xfer mode isn't PIO, set host DMA timings */
1752 if (xfer_shift != ATA_SHIFT_PIO)
1753 ata_host_set_dma(ap, xfer_mode, xfer_shift);
1754
1755 /* step 4: update devices' xfer mode */
1756 ata_dev_set_mode(ap, &ap->device[0]);
1757 ata_dev_set_mode(ap, &ap->device[1]);
1758
1759 if (ap->flags & ATA_FLAG_PORT_DISABLED)
1760 return;
1761
1762 if (ap->ops->post_set_mode)
1763 ap->ops->post_set_mode(ap);
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 return;
1766
1767err_out:
1768 ata_port_disable(ap);
1769}
1770
1771/**
1772 * ata_busy_sleep - sleep until BSY clears, or timeout
1773 * @ap: port containing status register to be polled
1774 * @tmout_pat: impatience timeout
1775 * @tmout: overall timeout
1776 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001777 * Sleep until ATA Status register bit BSY clears,
1778 * or a timeout occurs.
1779 *
1780 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 *
1782 */
1783
1784static unsigned int ata_busy_sleep (struct ata_port *ap,
1785 unsigned long tmout_pat,
1786 unsigned long tmout)
1787{
1788 unsigned long timer_start, timeout;
1789 u8 status;
1790
1791 status = ata_busy_wait(ap, ATA_BUSY, 300);
1792 timer_start = jiffies;
1793 timeout = timer_start + tmout_pat;
1794 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1795 msleep(50);
1796 status = ata_busy_wait(ap, ATA_BUSY, 3);
1797 }
1798
1799 if (status & ATA_BUSY)
1800 printk(KERN_WARNING "ata%u is slow to respond, "
1801 "please be patient\n", ap->id);
1802
1803 timeout = timer_start + tmout;
1804 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
1805 msleep(50);
1806 status = ata_chk_status(ap);
1807 }
1808
1809 if (status & ATA_BUSY) {
1810 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
1811 ap->id, tmout / HZ);
1812 return 1;
1813 }
1814
1815 return 0;
1816}
1817
1818static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
1819{
1820 struct ata_ioports *ioaddr = &ap->ioaddr;
1821 unsigned int dev0 = devmask & (1 << 0);
1822 unsigned int dev1 = devmask & (1 << 1);
1823 unsigned long timeout;
1824
1825 /* if device 0 was found in ata_devchk, wait for its
1826 * BSY bit to clear
1827 */
1828 if (dev0)
1829 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1830
1831 /* if device 1 was found in ata_devchk, wait for
1832 * register access, then wait for BSY to clear
1833 */
1834 timeout = jiffies + ATA_TMOUT_BOOT;
1835 while (dev1) {
1836 u8 nsect, lbal;
1837
1838 ap->ops->dev_select(ap, 1);
1839 if (ap->flags & ATA_FLAG_MMIO) {
1840 nsect = readb((void __iomem *) ioaddr->nsect_addr);
1841 lbal = readb((void __iomem *) ioaddr->lbal_addr);
1842 } else {
1843 nsect = inb(ioaddr->nsect_addr);
1844 lbal = inb(ioaddr->lbal_addr);
1845 }
1846 if ((nsect == 1) && (lbal == 1))
1847 break;
1848 if (time_after(jiffies, timeout)) {
1849 dev1 = 0;
1850 break;
1851 }
1852 msleep(50); /* give drive a breather */
1853 }
1854 if (dev1)
1855 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1856
1857 /* is all this really necessary? */
1858 ap->ops->dev_select(ap, 0);
1859 if (dev1)
1860 ap->ops->dev_select(ap, 1);
1861 if (dev0)
1862 ap->ops->dev_select(ap, 0);
1863}
1864
1865/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001866 * ata_bus_edd - Issue EXECUTE DEVICE DIAGNOSTIC command.
1867 * @ap: Port to reset and probe
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001869 * Use the EXECUTE DEVICE DIAGNOSTIC command to reset and
1870 * probe the bus. Not often used these days.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 *
1872 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001873 * PCI/etc. bus probe sem.
Jeff Garzike5338252005-10-30 21:37:17 -05001874 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 *
1876 */
1877
1878static unsigned int ata_bus_edd(struct ata_port *ap)
1879{
1880 struct ata_taskfile tf;
Jeff Garzike5338252005-10-30 21:37:17 -05001881 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 /* set up execute-device-diag (bus reset) taskfile */
1884 /* also, take interrupts to a known state (disabled) */
1885 DPRINTK("execute-device-diag\n");
1886 ata_tf_init(ap, &tf, 0);
1887 tf.ctl |= ATA_NIEN;
1888 tf.command = ATA_CMD_EDD;
1889 tf.protocol = ATA_PROT_NODATA;
1890
1891 /* do bus reset */
Jeff Garzike5338252005-10-30 21:37:17 -05001892 spin_lock_irqsave(&ap->host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 ata_tf_to_host(ap, &tf);
Jeff Garzike5338252005-10-30 21:37:17 -05001894 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 /* spec says at least 2ms. but who knows with those
1897 * crazy ATAPI devices...
1898 */
1899 msleep(150);
1900
1901 return ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
1902}
1903
1904static unsigned int ata_bus_softreset(struct ata_port *ap,
1905 unsigned int devmask)
1906{
1907 struct ata_ioports *ioaddr = &ap->ioaddr;
1908
1909 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
1910
1911 /* software reset. causes dev0 to be selected */
1912 if (ap->flags & ATA_FLAG_MMIO) {
1913 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
1914 udelay(20); /* FIXME: flush */
1915 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
1916 udelay(20); /* FIXME: flush */
1917 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
1918 } else {
1919 outb(ap->ctl, ioaddr->ctl_addr);
1920 udelay(10);
1921 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
1922 udelay(10);
1923 outb(ap->ctl, ioaddr->ctl_addr);
1924 }
1925
1926 /* spec mandates ">= 2ms" before checking status.
1927 * We wait 150ms, because that was the magic delay used for
1928 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
1929 * between when the ATA command register is written, and then
1930 * status is checked. Because waiting for "a while" before
1931 * checking status is fine, post SRST, we perform this magic
1932 * delay here as well.
1933 */
1934 msleep(150);
1935
1936 ata_bus_post_reset(ap, devmask);
1937
1938 return 0;
1939}
1940
1941/**
1942 * ata_bus_reset - reset host port and associated ATA channel
1943 * @ap: port to reset
1944 *
1945 * This is typically the first time we actually start issuing
1946 * commands to the ATA channel. We wait for BSY to clear, then
1947 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
1948 * result. Determine what devices, if any, are on the channel
1949 * by looking at the device 0/1 error register. Look at the signature
1950 * stored in each device's taskfile registers, to determine if
1951 * the device is ATA or ATAPI.
1952 *
1953 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001954 * PCI/etc. bus probe sem.
1955 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 *
1957 * SIDE EFFECTS:
1958 * Sets ATA_FLAG_PORT_DISABLED if bus reset fails.
1959 */
1960
1961void ata_bus_reset(struct ata_port *ap)
1962{
1963 struct ata_ioports *ioaddr = &ap->ioaddr;
1964 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
1965 u8 err;
1966 unsigned int dev0, dev1 = 0, rc = 0, devmask = 0;
1967
1968 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
1969
1970 /* determine if device 0/1 are present */
1971 if (ap->flags & ATA_FLAG_SATA_RESET)
1972 dev0 = 1;
1973 else {
1974 dev0 = ata_devchk(ap, 0);
1975 if (slave_possible)
1976 dev1 = ata_devchk(ap, 1);
1977 }
1978
1979 if (dev0)
1980 devmask |= (1 << 0);
1981 if (dev1)
1982 devmask |= (1 << 1);
1983
1984 /* select device 0 again */
1985 ap->ops->dev_select(ap, 0);
1986
1987 /* issue bus reset */
1988 if (ap->flags & ATA_FLAG_SRST)
1989 rc = ata_bus_softreset(ap, devmask);
1990 else if ((ap->flags & ATA_FLAG_SATA_RESET) == 0) {
1991 /* set up device control */
1992 if (ap->flags & ATA_FLAG_MMIO)
1993 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
1994 else
1995 outb(ap->ctl, ioaddr->ctl_addr);
1996 rc = ata_bus_edd(ap);
1997 }
1998
1999 if (rc)
2000 goto err_out;
2001
2002 /*
2003 * determine by signature whether we have ATA or ATAPI devices
2004 */
2005 err = ata_dev_try_classify(ap, 0);
2006 if ((slave_possible) && (err != 0x81))
2007 ata_dev_try_classify(ap, 1);
2008
2009 /* re-enable interrupts */
2010 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2011 ata_irq_on(ap);
2012
2013 /* is double-select really necessary? */
2014 if (ap->device[1].class != ATA_DEV_NONE)
2015 ap->ops->dev_select(ap, 1);
2016 if (ap->device[0].class != ATA_DEV_NONE)
2017 ap->ops->dev_select(ap, 0);
2018
2019 /* if no devices were detected, disable this port */
2020 if ((ap->device[0].class == ATA_DEV_NONE) &&
2021 (ap->device[1].class == ATA_DEV_NONE))
2022 goto err_out;
2023
2024 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2025 /* set up device control for ATA_FLAG_SATA_RESET */
2026 if (ap->flags & ATA_FLAG_MMIO)
2027 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2028 else
2029 outb(ap->ctl, ioaddr->ctl_addr);
2030 }
2031
2032 DPRINTK("EXIT\n");
2033 return;
2034
2035err_out:
2036 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2037 ap->ops->port_disable(ap);
2038
2039 DPRINTK("EXIT\n");
2040}
2041
Jeff Garzik057ace52005-10-22 14:27:05 -04002042static void ata_pr_blacklisted(const struct ata_port *ap,
2043 const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
2045 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, disabling DMA\n",
2046 ap->id, dev->devno);
2047}
2048
2049static const char * ata_dma_blacklist [] = {
2050 "WDC AC11000H",
2051 "WDC AC22100H",
2052 "WDC AC32500H",
2053 "WDC AC33100H",
2054 "WDC AC31600H",
2055 "WDC AC32100H",
2056 "WDC AC23200L",
2057 "Compaq CRD-8241B",
2058 "CRD-8400B",
2059 "CRD-8480B",
2060 "CRD-8482B",
2061 "CRD-84",
2062 "SanDisk SDP3B",
2063 "SanDisk SDP3B-64",
2064 "SANYO CD-ROM CRD",
2065 "HITACHI CDR-8",
2066 "HITACHI CDR-8335",
2067 "HITACHI CDR-8435",
2068 "Toshiba CD-ROM XM-6202B",
Jeff Garzike9222562005-06-28 00:03:37 -04002069 "TOSHIBA CD-ROM XM-1702BC",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 "CD-532E-A",
2071 "E-IDE CD-ROM CR-840",
2072 "CD-ROM Drive/F5A",
2073 "WPI CDD-820",
2074 "SAMSUNG CD-ROM SC-148C",
2075 "SAMSUNG CD-ROM SC",
2076 "SanDisk SDP3B-64",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 "ATAPI CD-ROM DRIVE 40X MAXIMUM",
2078 "_NEC DV5800A",
2079};
2080
Jeff Garzik057ace52005-10-22 14:27:05 -04002081static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
2083 unsigned char model_num[40];
2084 char *s;
2085 unsigned int len;
2086 int i;
2087
2088 ata_dev_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2089 sizeof(model_num));
2090 s = &model_num[0];
2091 len = strnlen(s, sizeof(model_num));
2092
2093 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2094 while ((len > 0) && (s[len - 1] == ' ')) {
2095 len--;
2096 s[len] = 0;
2097 }
2098
2099 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i++)
2100 if (!strncmp(ata_dma_blacklist[i], s, len))
2101 return 1;
2102
2103 return 0;
2104}
2105
Jeff Garzik057ace52005-10-22 14:27:05 -04002106static unsigned int ata_get_mode_mask(const struct ata_port *ap, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
Jeff Garzik057ace52005-10-22 14:27:05 -04002108 const struct ata_device *master, *slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 unsigned int mask;
2110
2111 master = &ap->device[0];
2112 slave = &ap->device[1];
2113
2114 assert (ata_dev_present(master) || ata_dev_present(slave));
2115
2116 if (shift == ATA_SHIFT_UDMA) {
2117 mask = ap->udma_mask;
2118 if (ata_dev_present(master)) {
2119 mask &= (master->id[ATA_ID_UDMA_MODES] & 0xff);
Jeff Garzik057ace52005-10-22 14:27:05 -04002120 if (ata_dma_blacklisted(master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 mask = 0;
2122 ata_pr_blacklisted(ap, master);
2123 }
2124 }
2125 if (ata_dev_present(slave)) {
2126 mask &= (slave->id[ATA_ID_UDMA_MODES] & 0xff);
Jeff Garzik057ace52005-10-22 14:27:05 -04002127 if (ata_dma_blacklisted(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 mask = 0;
2129 ata_pr_blacklisted(ap, slave);
2130 }
2131 }
2132 }
2133 else if (shift == ATA_SHIFT_MWDMA) {
2134 mask = ap->mwdma_mask;
2135 if (ata_dev_present(master)) {
2136 mask &= (master->id[ATA_ID_MWDMA_MODES] & 0x07);
Jeff Garzik057ace52005-10-22 14:27:05 -04002137 if (ata_dma_blacklisted(master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 mask = 0;
2139 ata_pr_blacklisted(ap, master);
2140 }
2141 }
2142 if (ata_dev_present(slave)) {
2143 mask &= (slave->id[ATA_ID_MWDMA_MODES] & 0x07);
Jeff Garzik057ace52005-10-22 14:27:05 -04002144 if (ata_dma_blacklisted(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 mask = 0;
2146 ata_pr_blacklisted(ap, slave);
2147 }
2148 }
2149 }
2150 else if (shift == ATA_SHIFT_PIO) {
2151 mask = ap->pio_mask;
2152 if (ata_dev_present(master)) {
2153 /* spec doesn't return explicit support for
2154 * PIO0-2, so we fake it
2155 */
2156 u16 tmp_mode = master->id[ATA_ID_PIO_MODES] & 0x03;
2157 tmp_mode <<= 3;
2158 tmp_mode |= 0x7;
2159 mask &= tmp_mode;
2160 }
2161 if (ata_dev_present(slave)) {
2162 /* spec doesn't return explicit support for
2163 * PIO0-2, so we fake it
2164 */
2165 u16 tmp_mode = slave->id[ATA_ID_PIO_MODES] & 0x03;
2166 tmp_mode <<= 3;
2167 tmp_mode |= 0x7;
2168 mask &= tmp_mode;
2169 }
2170 }
2171 else {
2172 mask = 0xffffffff; /* shut up compiler warning */
2173 BUG();
2174 }
2175
2176 return mask;
2177}
2178
2179/* find greatest bit */
2180static int fgb(u32 bitmap)
2181{
2182 unsigned int i;
2183 int x = -1;
2184
2185 for (i = 0; i < 32; i++)
2186 if (bitmap & (1 << i))
2187 x = i;
2188
2189 return x;
2190}
2191
2192/**
2193 * ata_choose_xfer_mode - attempt to find best transfer mode
2194 * @ap: Port for which an xfer mode will be selected
2195 * @xfer_mode_out: (output) SET FEATURES - XFER MODE code
2196 * @xfer_shift_out: (output) bit shift that selects this mode
2197 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002198 * Based on host and device capabilities, determine the
2199 * maximum transfer mode that is amenable to all.
2200 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002202 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 *
2204 * RETURNS:
2205 * Zero on success, negative on error.
2206 */
2207
Jeff Garzik057ace52005-10-22 14:27:05 -04002208static int ata_choose_xfer_mode(const struct ata_port *ap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 u8 *xfer_mode_out,
2210 unsigned int *xfer_shift_out)
2211{
2212 unsigned int mask, shift;
2213 int x, i;
2214
2215 for (i = 0; i < ARRAY_SIZE(xfer_mode_classes); i++) {
2216 shift = xfer_mode_classes[i].shift;
2217 mask = ata_get_mode_mask(ap, shift);
2218
2219 x = fgb(mask);
2220 if (x >= 0) {
2221 *xfer_mode_out = xfer_mode_classes[i].base + x;
2222 *xfer_shift_out = shift;
2223 return 0;
2224 }
2225 }
2226
2227 return -1;
2228}
2229
2230/**
2231 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2232 * @ap: Port associated with device @dev
2233 * @dev: Device to which command will be sent
2234 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002235 * Issue SET FEATURES - XFER MODE command to device @dev
2236 * on port @ap.
2237 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002239 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 */
2241
2242static void ata_dev_set_xfermode(struct ata_port *ap, struct ata_device *dev)
2243{
2244 DECLARE_COMPLETION(wait);
2245 struct ata_queued_cmd *qc;
2246 int rc;
2247 unsigned long flags;
2248
2249 /* set up set-features taskfile */
2250 DPRINTK("set features - xfer mode\n");
2251
2252 qc = ata_qc_new_init(ap, dev);
2253 BUG_ON(qc == NULL);
2254
2255 qc->tf.command = ATA_CMD_SET_FEATURES;
2256 qc->tf.feature = SETFEATURES_XFER;
2257 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2258 qc->tf.protocol = ATA_PROT_NODATA;
2259 qc->tf.nsect = dev->xfer_mode;
2260
2261 qc->waiting = &wait;
2262 qc->complete_fn = ata_qc_complete_noop;
2263
2264 spin_lock_irqsave(&ap->host_set->lock, flags);
2265 rc = ata_qc_issue(qc);
2266 spin_unlock_irqrestore(&ap->host_set->lock, flags);
2267
2268 if (rc)
2269 ata_port_disable(ap);
2270 else
2271 wait_for_completion(&wait);
2272
2273 DPRINTK("EXIT\n");
2274}
2275
2276/**
Albert Lee59a10b12005-10-12 15:09:42 +08002277 * ata_dev_reread_id - Reread the device identify device info
2278 * @ap: port where the device is
2279 * @dev: device to reread the identify device info
2280 *
2281 * LOCKING:
2282 */
2283
2284static void ata_dev_reread_id(struct ata_port *ap, struct ata_device *dev)
2285{
2286 DECLARE_COMPLETION(wait);
2287 struct ata_queued_cmd *qc;
2288 unsigned long flags;
2289 int rc;
2290
2291 qc = ata_qc_new_init(ap, dev);
2292 BUG_ON(qc == NULL);
2293
2294 ata_sg_init_one(qc, dev->id, sizeof(dev->id));
2295 qc->dma_dir = DMA_FROM_DEVICE;
2296
2297 if (dev->class == ATA_DEV_ATA) {
2298 qc->tf.command = ATA_CMD_ID_ATA;
2299 DPRINTK("do ATA identify\n");
2300 } else {
2301 qc->tf.command = ATA_CMD_ID_ATAPI;
2302 DPRINTK("do ATAPI identify\n");
2303 }
2304
2305 qc->tf.flags |= ATA_TFLAG_DEVICE;
2306 qc->tf.protocol = ATA_PROT_PIO;
2307 qc->nsect = 1;
2308
2309 qc->waiting = &wait;
2310 qc->complete_fn = ata_qc_complete_noop;
2311
2312 spin_lock_irqsave(&ap->host_set->lock, flags);
2313 rc = ata_qc_issue(qc);
2314 spin_unlock_irqrestore(&ap->host_set->lock, flags);
2315
2316 if (rc)
2317 goto err_out;
2318
2319 wait_for_completion(&wait);
2320
2321 swap_buf_le16(dev->id, ATA_ID_WORDS);
2322
2323 ata_dump_id(dev);
2324
2325 DPRINTK("EXIT\n");
2326
2327 return;
2328err_out:
2329 ata_port_disable(ap);
2330}
2331
2332/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04002333 * ata_dev_init_params - Issue INIT DEV PARAMS command
2334 * @ap: Port associated with device @dev
2335 * @dev: Device to which command will be sent
2336 *
2337 * LOCKING:
2338 */
2339
2340static void ata_dev_init_params(struct ata_port *ap, struct ata_device *dev)
2341{
2342 DECLARE_COMPLETION(wait);
2343 struct ata_queued_cmd *qc;
2344 int rc;
2345 unsigned long flags;
2346 u16 sectors = dev->id[6];
2347 u16 heads = dev->id[3];
2348
2349 /* Number of sectors per track 1-255. Number of heads 1-16 */
2350 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
2351 return;
2352
2353 /* set up init dev params taskfile */
2354 DPRINTK("init dev params \n");
2355
2356 qc = ata_qc_new_init(ap, dev);
2357 BUG_ON(qc == NULL);
2358
2359 qc->tf.command = ATA_CMD_INIT_DEV_PARAMS;
2360 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2361 qc->tf.protocol = ATA_PROT_NODATA;
2362 qc->tf.nsect = sectors;
2363 qc->tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
2364
2365 qc->waiting = &wait;
2366 qc->complete_fn = ata_qc_complete_noop;
2367
2368 spin_lock_irqsave(&ap->host_set->lock, flags);
2369 rc = ata_qc_issue(qc);
2370 spin_unlock_irqrestore(&ap->host_set->lock, flags);
2371
2372 if (rc)
2373 ata_port_disable(ap);
2374 else
2375 wait_for_completion(&wait);
2376
2377 DPRINTK("EXIT\n");
2378}
2379
2380/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002381 * ata_sg_clean - Unmap DMA memory associated with command
2382 * @qc: Command containing DMA memory to be released
2383 *
2384 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 *
2386 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002387 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 */
2389
2390static void ata_sg_clean(struct ata_queued_cmd *qc)
2391{
2392 struct ata_port *ap = qc->ap;
2393 struct scatterlist *sg = qc->sg;
2394 int dir = qc->dma_dir;
2395
2396 assert(qc->flags & ATA_QCFLAG_DMAMAP);
2397 assert(sg != NULL);
2398
2399 if (qc->flags & ATA_QCFLAG_SINGLE)
2400 assert(qc->n_elem == 1);
2401
2402 DPRINTK("unmapping %u sg elements\n", qc->n_elem);
2403
2404 if (qc->flags & ATA_QCFLAG_SG)
2405 dma_unmap_sg(ap->host_set->dev, sg, qc->n_elem, dir);
2406 else
2407 dma_unmap_single(ap->host_set->dev, sg_dma_address(&sg[0]),
2408 sg_dma_len(&sg[0]), dir);
2409
2410 qc->flags &= ~ATA_QCFLAG_DMAMAP;
2411 qc->sg = NULL;
2412}
2413
2414/**
2415 * ata_fill_sg - Fill PCI IDE PRD table
2416 * @qc: Metadata associated with taskfile to be transferred
2417 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002418 * Fill PCI IDE PRD (scatter-gather) table with segments
2419 * associated with the current disk command.
2420 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04002422 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 *
2424 */
2425static void ata_fill_sg(struct ata_queued_cmd *qc)
2426{
2427 struct scatterlist *sg = qc->sg;
2428 struct ata_port *ap = qc->ap;
2429 unsigned int idx, nelem;
2430
2431 assert(sg != NULL);
2432 assert(qc->n_elem > 0);
2433
2434 idx = 0;
2435 for (nelem = qc->n_elem; nelem; nelem--,sg++) {
2436 u32 addr, offset;
2437 u32 sg_len, len;
2438
2439 /* determine if physical DMA addr spans 64K boundary.
2440 * Note h/w doesn't support 64-bit, so we unconditionally
2441 * truncate dma_addr_t to u32.
2442 */
2443 addr = (u32) sg_dma_address(sg);
2444 sg_len = sg_dma_len(sg);
2445
2446 while (sg_len) {
2447 offset = addr & 0xffff;
2448 len = sg_len;
2449 if ((offset + sg_len) > 0x10000)
2450 len = 0x10000 - offset;
2451
2452 ap->prd[idx].addr = cpu_to_le32(addr);
2453 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
2454 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
2455
2456 idx++;
2457 sg_len -= len;
2458 addr += len;
2459 }
2460 }
2461
2462 if (idx)
2463 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
2464}
2465/**
2466 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
2467 * @qc: Metadata associated with taskfile to check
2468 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002469 * Allow low-level driver to filter ATA PACKET commands, returning
2470 * a status indicating whether or not it is OK to use DMA for the
2471 * supplied PACKET command.
2472 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002474 * spin_lock_irqsave(host_set lock)
2475 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 * RETURNS: 0 when ATAPI DMA can be used
2477 * nonzero otherwise
2478 */
2479int ata_check_atapi_dma(struct ata_queued_cmd *qc)
2480{
2481 struct ata_port *ap = qc->ap;
2482 int rc = 0; /* Assume ATAPI DMA is OK by default */
2483
2484 if (ap->ops->check_atapi_dma)
2485 rc = ap->ops->check_atapi_dma(qc);
2486
2487 return rc;
2488}
2489/**
2490 * ata_qc_prep - Prepare taskfile for submission
2491 * @qc: Metadata associated with taskfile to be prepared
2492 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002493 * Prepare ATA taskfile for submission.
2494 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 * LOCKING:
2496 * spin_lock_irqsave(host_set lock)
2497 */
2498void ata_qc_prep(struct ata_queued_cmd *qc)
2499{
2500 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
2501 return;
2502
2503 ata_fill_sg(qc);
2504}
2505
Jeff Garzik0cba6322005-05-30 19:49:12 -04002506/**
2507 * ata_sg_init_one - Associate command with memory buffer
2508 * @qc: Command to be associated
2509 * @buf: Memory buffer
2510 * @buflen: Length of memory buffer, in bytes.
2511 *
2512 * Initialize the data-related elements of queued_cmd @qc
2513 * to point to a single memory buffer, @buf of byte length @buflen.
2514 *
2515 * LOCKING:
2516 * spin_lock_irqsave(host_set lock)
2517 */
2518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
2520{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 qc->flags |= ATA_QCFLAG_SINGLE;
2522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 qc->sg = &qc->sgent;
2524 qc->n_elem = 1;
2525 qc->buf_virt = buf;
David Hardeman378f0582005-09-17 17:55:31 +10002526 sg_init_one(qc->sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528
Jeff Garzik0cba6322005-05-30 19:49:12 -04002529/**
2530 * ata_sg_init - Associate command with scatter-gather table.
2531 * @qc: Command to be associated
2532 * @sg: Scatter-gather table.
2533 * @n_elem: Number of elements in s/g table.
2534 *
2535 * Initialize the data-related elements of queued_cmd @qc
2536 * to point to a scatter-gather table @sg, containing @n_elem
2537 * elements.
2538 *
2539 * LOCKING:
2540 * spin_lock_irqsave(host_set lock)
2541 */
2542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
2544 unsigned int n_elem)
2545{
2546 qc->flags |= ATA_QCFLAG_SG;
2547 qc->sg = sg;
2548 qc->n_elem = n_elem;
2549}
2550
2551/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002552 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
2553 * @qc: Command with memory buffer to be mapped.
2554 *
2555 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 *
2557 * LOCKING:
2558 * spin_lock_irqsave(host_set lock)
2559 *
2560 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002561 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 */
2563
2564static int ata_sg_setup_one(struct ata_queued_cmd *qc)
2565{
2566 struct ata_port *ap = qc->ap;
2567 int dir = qc->dma_dir;
2568 struct scatterlist *sg = qc->sg;
2569 dma_addr_t dma_address;
2570
2571 dma_address = dma_map_single(ap->host_set->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04002572 sg->length, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 if (dma_mapping_error(dma_address))
2574 return -1;
2575
2576 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04002577 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
2579 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
2580 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
2581
2582 return 0;
2583}
2584
2585/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002586 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
2587 * @qc: Command with scatter-gather table to be mapped.
2588 *
2589 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 *
2591 * LOCKING:
2592 * spin_lock_irqsave(host_set lock)
2593 *
2594 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002595 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 *
2597 */
2598
2599static int ata_sg_setup(struct ata_queued_cmd *qc)
2600{
2601 struct ata_port *ap = qc->ap;
2602 struct scatterlist *sg = qc->sg;
2603 int n_elem, dir;
2604
2605 VPRINTK("ENTER, ata%u\n", ap->id);
2606 assert(qc->flags & ATA_QCFLAG_SG);
2607
2608 dir = qc->dma_dir;
2609 n_elem = dma_map_sg(ap->host_set->dev, sg, qc->n_elem, dir);
2610 if (n_elem < 1)
2611 return -1;
2612
2613 DPRINTK("%d sg elements mapped\n", n_elem);
2614
2615 qc->n_elem = n_elem;
2616
2617 return 0;
2618}
2619
2620/**
Tejun Heo40e8c822005-08-22 17:12:45 +09002621 * ata_poll_qc_complete - turn irq back on and finish qc
2622 * @qc: Command to complete
2623 * @drv_stat: ATA status register content
2624 *
2625 * LOCKING:
2626 * None. (grabs host lock)
2627 */
2628
Jeff Garzika7dac442005-10-30 04:44:42 -05002629void ata_poll_qc_complete(struct ata_queued_cmd *qc, unsigned int err_mask)
Tejun Heo40e8c822005-08-22 17:12:45 +09002630{
2631 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04002632 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09002633
Jeff Garzikb8f61532005-08-25 22:01:20 -04002634 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09002635 ap->flags &= ~ATA_FLAG_NOINTR;
2636 ata_irq_on(ap);
Jeff Garzika7dac442005-10-30 04:44:42 -05002637 ata_qc_complete(qc, err_mask);
Jeff Garzikb8f61532005-08-25 22:01:20 -04002638 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09002639}
2640
2641/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 * ata_pio_poll -
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04002643 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 *
2645 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002646 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 *
2648 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04002649 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 */
2651
2652static unsigned long ata_pio_poll(struct ata_port *ap)
2653{
2654 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08002655 unsigned int poll_state = HSM_ST_UNKNOWN;
2656 unsigned int reg_state = HSM_ST_UNKNOWN;
2657 const unsigned int tmout_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Albert Lee14be71f2005-09-27 17:36:35 +08002659 switch (ap->hsm_task_state) {
2660 case HSM_ST:
2661 case HSM_ST_POLL:
2662 poll_state = HSM_ST_POLL;
2663 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 break;
Albert Lee14be71f2005-09-27 17:36:35 +08002665 case HSM_ST_LAST:
2666 case HSM_ST_LAST_POLL:
2667 poll_state = HSM_ST_LAST_POLL;
2668 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 break;
2670 default:
2671 BUG();
2672 break;
2673 }
2674
2675 status = ata_chk_status(ap);
2676 if (status & ATA_BUSY) {
2677 if (time_after(jiffies, ap->pio_task_timeout)) {
Albert Lee14be71f2005-09-27 17:36:35 +08002678 ap->hsm_task_state = tmout_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 return 0;
2680 }
Albert Lee14be71f2005-09-27 17:36:35 +08002681 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 return ATA_SHORT_PAUSE;
2683 }
2684
Albert Lee14be71f2005-09-27 17:36:35 +08002685 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 return 0;
2687}
2688
2689/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04002690 * ata_pio_complete - check if drive is busy or idle
2691 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 *
2693 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002694 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002695 *
2696 * RETURNS:
2697 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 */
2699
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002700static int ata_pio_complete (struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701{
2702 struct ata_queued_cmd *qc;
2703 u8 drv_stat;
2704
2705 /*
Alan Cox31433ea2005-08-26 15:56:47 +01002706 * This is purely heuristic. This is a fast path. Sometimes when
2707 * we enter, BSY will be cleared in a chk-status or two. If not,
2708 * the drive is probably seeking or something. Snooze for a couple
2709 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08002710 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 */
2712 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 10);
2713 if (drv_stat & (ATA_BUSY | ATA_DRQ)) {
2714 msleep(2);
2715 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 10);
2716 if (drv_stat & (ATA_BUSY | ATA_DRQ)) {
Albert Lee14be71f2005-09-27 17:36:35 +08002717 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
2721 }
2722
2723 drv_stat = ata_wait_idle(ap);
2724 if (!ata_ok(drv_stat)) {
Albert Lee14be71f2005-09-27 17:36:35 +08002725 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002726 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
2728
2729 qc = ata_qc_from_tag(ap, ap->active_tag);
2730 assert(qc != NULL);
2731
Albert Lee14be71f2005-09-27 17:36:35 +08002732 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
Jeff Garzika7dac442005-10-30 04:44:42 -05002734 ata_poll_qc_complete(qc, 0);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002735
2736 /* another command may start at this point */
2737
2738 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739}
2740
Edward Falk0baab862005-06-02 18:17:13 -04002741
2742/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04002743 * swap_buf_le16 - swap halves of 16-words in place
Edward Falk0baab862005-06-02 18:17:13 -04002744 * @buf: Buffer to swap
2745 * @buf_words: Number of 16-bit words in buffer.
2746 *
2747 * Swap halves of 16-bit words if needed to convert from
2748 * little-endian byte order to native cpu byte order, or
2749 * vice-versa.
2750 *
2751 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04002752 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04002753 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754void swap_buf_le16(u16 *buf, unsigned int buf_words)
2755{
2756#ifdef __BIG_ENDIAN
2757 unsigned int i;
2758
2759 for (i = 0; i < buf_words; i++)
2760 buf[i] = le16_to_cpu(buf[i]);
2761#endif /* __BIG_ENDIAN */
2762}
2763
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002764/**
2765 * ata_mmio_data_xfer - Transfer data by MMIO
2766 * @ap: port to read/write
2767 * @buf: data buffer
2768 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04002769 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002770 *
2771 * Transfer data from/to the device data register by MMIO.
2772 *
2773 * LOCKING:
2774 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002775 */
2776
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
2778 unsigned int buflen, int write_data)
2779{
2780 unsigned int i;
2781 unsigned int words = buflen >> 1;
2782 u16 *buf16 = (u16 *) buf;
2783 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
2784
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002785 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (write_data) {
2787 for (i = 0; i < words; i++)
2788 writew(le16_to_cpu(buf16[i]), mmio);
2789 } else {
2790 for (i = 0; i < words; i++)
2791 buf16[i] = cpu_to_le16(readw(mmio));
2792 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002793
2794 /* Transfer trailing 1 byte, if any. */
2795 if (unlikely(buflen & 0x01)) {
2796 u16 align_buf[1] = { 0 };
2797 unsigned char *trailing_buf = buf + buflen - 1;
2798
2799 if (write_data) {
2800 memcpy(align_buf, trailing_buf, 1);
2801 writew(le16_to_cpu(align_buf[0]), mmio);
2802 } else {
2803 align_buf[0] = cpu_to_le16(readw(mmio));
2804 memcpy(trailing_buf, align_buf, 1);
2805 }
2806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807}
2808
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002809/**
2810 * ata_pio_data_xfer - Transfer data by PIO
2811 * @ap: port to read/write
2812 * @buf: data buffer
2813 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04002814 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002815 *
2816 * Transfer data from/to the device data register by PIO.
2817 *
2818 * LOCKING:
2819 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002820 */
2821
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
2823 unsigned int buflen, int write_data)
2824{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002825 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002827 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002829 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002831 insw(ap->ioaddr.data_addr, buf, words);
2832
2833 /* Transfer trailing 1 byte, if any. */
2834 if (unlikely(buflen & 0x01)) {
2835 u16 align_buf[1] = { 0 };
2836 unsigned char *trailing_buf = buf + buflen - 1;
2837
2838 if (write_data) {
2839 memcpy(align_buf, trailing_buf, 1);
2840 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
2841 } else {
2842 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
2843 memcpy(trailing_buf, align_buf, 1);
2844 }
2845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846}
2847
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002848/**
2849 * ata_data_xfer - Transfer data from/to the data register.
2850 * @ap: port to read/write
2851 * @buf: data buffer
2852 * @buflen: buffer length
2853 * @do_write: read/write
2854 *
2855 * Transfer data from/to the device data register.
2856 *
2857 * LOCKING:
2858 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002859 */
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
2862 unsigned int buflen, int do_write)
2863{
2864 if (ap->flags & ATA_FLAG_MMIO)
2865 ata_mmio_data_xfer(ap, buf, buflen, do_write);
2866 else
2867 ata_pio_data_xfer(ap, buf, buflen, do_write);
2868}
2869
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002870/**
2871 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
2872 * @qc: Command on going
2873 *
2874 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
2875 *
2876 * LOCKING:
2877 * Inherited from caller.
2878 */
2879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880static void ata_pio_sector(struct ata_queued_cmd *qc)
2881{
2882 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
2883 struct scatterlist *sg = qc->sg;
2884 struct ata_port *ap = qc->ap;
2885 struct page *page;
2886 unsigned int offset;
2887 unsigned char *buf;
2888
2889 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08002890 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892 page = sg[qc->cursg].page;
2893 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
2894
2895 /* get the current page and offset */
2896 page = nth_page(page, (offset >> PAGE_SHIFT));
2897 offset %= PAGE_SIZE;
2898
2899 buf = kmap(page) + offset;
2900
2901 qc->cursect++;
2902 qc->cursg_ofs++;
2903
Albert Lee32529e02005-05-26 03:49:42 -04002904 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 qc->cursg++;
2906 qc->cursg_ofs = 0;
2907 }
2908
2909 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
2910
2911 /* do the actual data transfer */
2912 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
2913 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
2914
2915 kunmap(page);
2916}
2917
Albert Lee6ae4cfb2005-08-12 14:15:34 +08002918/**
2919 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
2920 * @qc: Command on going
2921 * @bytes: number of bytes
2922 *
2923 * Transfer Transfer data from/to the ATAPI device.
2924 *
2925 * LOCKING:
2926 * Inherited from caller.
2927 *
2928 */
2929
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
2931{
2932 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
2933 struct scatterlist *sg = qc->sg;
2934 struct ata_port *ap = qc->ap;
2935 struct page *page;
2936 unsigned char *buf;
2937 unsigned int offset, count;
2938
Albert Lee563a6e12005-08-12 14:17:50 +08002939 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08002940 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
2942next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08002943 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002944 /*
Albert Lee563a6e12005-08-12 14:17:50 +08002945 * The end of qc->sg is reached and the device expects
2946 * more data to transfer. In order not to overrun qc->sg
2947 * and fulfill length specified in the byte count register,
2948 * - for read case, discard trailing data from the device
2949 * - for write case, padding zero data to the device
2950 */
2951 u16 pad_buf[1] = { 0 };
2952 unsigned int words = bytes >> 1;
2953 unsigned int i;
2954
2955 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04002956 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08002957 ap->id, bytes);
2958
2959 for (i = 0; i < words; i++)
2960 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
2961
Albert Lee14be71f2005-09-27 17:36:35 +08002962 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08002963 return;
2964 }
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 sg = &qc->sg[qc->cursg];
2967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 page = sg->page;
2969 offset = sg->offset + qc->cursg_ofs;
2970
2971 /* get the current page and offset */
2972 page = nth_page(page, (offset >> PAGE_SHIFT));
2973 offset %= PAGE_SIZE;
2974
Albert Lee6952df02005-06-06 15:56:03 +08002975 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04002976 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978 /* don't cross page boundaries */
2979 count = min(count, (unsigned int)PAGE_SIZE - offset);
2980
2981 buf = kmap(page) + offset;
2982
2983 bytes -= count;
2984 qc->curbytes += count;
2985 qc->cursg_ofs += count;
2986
Albert Lee32529e02005-05-26 03:49:42 -04002987 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 qc->cursg++;
2989 qc->cursg_ofs = 0;
2990 }
2991
2992 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
2993
2994 /* do the actual data transfer */
2995 ata_data_xfer(ap, buf, count, do_write);
2996
2997 kunmap(page);
2998
Albert Lee563a6e12005-08-12 14:17:50 +08002999 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001}
3002
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003003/**
3004 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3005 * @qc: Command on going
3006 *
3007 * Transfer Transfer data from/to the ATAPI device.
3008 *
3009 * LOCKING:
3010 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003011 */
3012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3014{
3015 struct ata_port *ap = qc->ap;
3016 struct ata_device *dev = qc->dev;
3017 unsigned int ireason, bc_lo, bc_hi, bytes;
3018 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3019
3020 ap->ops->tf_read(ap, &qc->tf);
3021 ireason = qc->tf.nsect;
3022 bc_lo = qc->tf.lbam;
3023 bc_hi = qc->tf.lbah;
3024 bytes = (bc_hi << 8) | bc_lo;
3025
3026 /* shall be cleared to zero, indicating xfer of data */
3027 if (ireason & (1 << 0))
3028 goto err_out;
3029
3030 /* make sure transfer direction matches expected */
3031 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3032 if (do_write != i_write)
3033 goto err_out;
3034
3035 __atapi_pio_bytes(qc, bytes);
3036
3037 return;
3038
3039err_out:
3040 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3041 ap->id, dev->devno);
Albert Lee14be71f2005-09-27 17:36:35 +08003042 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043}
3044
3045/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003046 * ata_pio_block - start PIO on a block
3047 * @ap: the target ata_port
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 *
3049 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003050 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 */
3052
3053static void ata_pio_block(struct ata_port *ap)
3054{
3055 struct ata_queued_cmd *qc;
3056 u8 status;
3057
3058 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003059 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 * Sometimes when we enter, BSY will be cleared in
3061 * a chk-status or two. If not, the drive is probably seeking
3062 * or something. Snooze for a couple msecs, then
3063 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003064 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 */
3066 status = ata_busy_wait(ap, ATA_BUSY, 5);
3067 if (status & ATA_BUSY) {
3068 msleep(2);
3069 status = ata_busy_wait(ap, ATA_BUSY, 10);
3070 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003071 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3073 return;
3074 }
3075 }
3076
3077 qc = ata_qc_from_tag(ap, ap->active_tag);
3078 assert(qc != NULL);
3079
3080 if (is_atapi_taskfile(&qc->tf)) {
3081 /* no more data to transfer or unsupported ATAPI command */
3082 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003083 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 return;
3085 }
3086
3087 atapi_pio_bytes(qc);
3088 } else {
3089 /* handle BSY=0, DRQ=0 as error */
3090 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003091 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 return;
3093 }
3094
3095 ata_pio_sector(qc);
3096 }
3097}
3098
3099static void ata_pio_error(struct ata_port *ap)
3100{
3101 struct ata_queued_cmd *qc;
Jeff Garzika7dac442005-10-30 04:44:42 -05003102
3103 printk(KERN_WARNING "ata%u: PIO error\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105 qc = ata_qc_from_tag(ap, ap->active_tag);
3106 assert(qc != NULL);
3107
Albert Lee14be71f2005-09-27 17:36:35 +08003108 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Jeff Garzika7dac442005-10-30 04:44:42 -05003110 ata_poll_qc_complete(qc, AC_ERR_ATA_BUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111}
3112
3113static void ata_pio_task(void *_data)
3114{
3115 struct ata_port *ap = _data;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003116 unsigned long timeout;
3117 int qc_completed;
3118
3119fsm_start:
3120 timeout = 0;
3121 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
Albert Lee14be71f2005-09-27 17:36:35 +08003123 switch (ap->hsm_task_state) {
3124 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 return;
3126
Albert Lee14be71f2005-09-27 17:36:35 +08003127 case HSM_ST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 ata_pio_block(ap);
3129 break;
3130
Albert Lee14be71f2005-09-27 17:36:35 +08003131 case HSM_ST_LAST:
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003132 qc_completed = ata_pio_complete(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 break;
3134
Albert Lee14be71f2005-09-27 17:36:35 +08003135 case HSM_ST_POLL:
3136 case HSM_ST_LAST_POLL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 timeout = ata_pio_poll(ap);
3138 break;
3139
Albert Lee14be71f2005-09-27 17:36:35 +08003140 case HSM_ST_TMOUT:
3141 case HSM_ST_ERR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 ata_pio_error(ap);
3143 return;
3144 }
3145
3146 if (timeout)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003147 queue_delayed_work(ata_wq, &ap->pio_task, timeout);
3148 else if (!qc_completed)
3149 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150}
3151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152/**
3153 * ata_qc_timeout - Handle timeout of queued command
3154 * @qc: Command that timed out
3155 *
3156 * Some part of the kernel (currently, only the SCSI layer)
3157 * has noticed that the active command on port @ap has not
3158 * completed after a specified length of time. Handle this
3159 * condition by disabling DMA (if necessary) and completing
3160 * transactions, with error if necessary.
3161 *
3162 * This also handles the case of the "lost interrupt", where
3163 * for some reason (possibly hardware bug, possibly driver bug)
3164 * an interrupt was not delivered to the driver, even though the
3165 * transaction completed successfully.
3166 *
3167 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003168 * Inherited from SCSI layer (none, can sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 */
3170
3171static void ata_qc_timeout(struct ata_queued_cmd *qc)
3172{
3173 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003174 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 struct ata_device *dev = qc->dev;
3176 u8 host_stat = 0, drv_stat;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003177 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
3179 DPRINTK("ENTER\n");
3180
3181 /* FIXME: doesn't this conflict with timeout handling? */
3182 if (qc->dev->class == ATA_DEV_ATAPI && qc->scsicmd) {
3183 struct scsi_cmnd *cmd = qc->scsicmd;
3184
Christoph Hellwig3111b0d2005-06-19 13:43:26 +02003185 if (!(cmd->eh_eflags & SCSI_EH_CANCEL_CMD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187 /* finish completing original command */
Jeff Garzikb8f61532005-08-25 22:01:20 -04003188 spin_lock_irqsave(&host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 __ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003190 spin_unlock_irqrestore(&host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
3192 atapi_request_sense(ap, dev, cmd);
3193
3194 cmd->result = (CHECK_CONDITION << 1) | (DID_OK << 16);
3195 scsi_finish_command(cmd);
3196
3197 goto out;
3198 }
3199 }
3200
Jeff Garzikb8f61532005-08-25 22:01:20 -04003201 spin_lock_irqsave(&host_set->lock, flags);
3202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 /* hack alert! We cannot use the supplied completion
3204 * function from inside the ->eh_strategy_handler() thread.
3205 * libata is the only user of ->eh_strategy_handler() in
3206 * any kernel, so the default scsi_done() assumes it is
3207 * not being called from the SCSI EH.
3208 */
3209 qc->scsidone = scsi_finish_command;
3210
3211 switch (qc->tf.protocol) {
3212
3213 case ATA_PROT_DMA:
3214 case ATA_PROT_ATAPI_DMA:
3215 host_stat = ap->ops->bmdma_status(ap);
3216
3217 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01003218 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
3220 /* fall through */
3221
3222 default:
3223 ata_altstatus(ap);
3224 drv_stat = ata_chk_status(ap);
3225
3226 /* ack bmdma irq events */
3227 ap->ops->irq_clear(ap);
3228
3229 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x\n",
3230 ap->id, qc->tf.command, drv_stat, host_stat);
3231
3232 /* complete taskfile transaction */
Jeff Garzika7dac442005-10-30 04:44:42 -05003233 ata_qc_complete(qc, ac_err_mask(drv_stat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 break;
3235 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04003236
3237 spin_unlock_irqrestore(&host_set->lock, flags);
3238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239out:
3240 DPRINTK("EXIT\n");
3241}
3242
3243/**
3244 * ata_eng_timeout - Handle timeout of queued command
3245 * @ap: Port on which timed-out command is active
3246 *
3247 * Some part of the kernel (currently, only the SCSI layer)
3248 * has noticed that the active command on port @ap has not
3249 * completed after a specified length of time. Handle this
3250 * condition by disabling DMA (if necessary) and completing
3251 * transactions, with error if necessary.
3252 *
3253 * This also handles the case of the "lost interrupt", where
3254 * for some reason (possibly hardware bug, possibly driver bug)
3255 * an interrupt was not delivered to the driver, even though the
3256 * transaction completed successfully.
3257 *
3258 * LOCKING:
3259 * Inherited from SCSI layer (none, can sleep)
3260 */
3261
3262void ata_eng_timeout(struct ata_port *ap)
3263{
3264 struct ata_queued_cmd *qc;
3265
3266 DPRINTK("ENTER\n");
3267
3268 qc = ata_qc_from_tag(ap, ap->active_tag);
Jeff Garzike12669e2005-10-05 18:39:23 -04003269 if (qc)
3270 ata_qc_timeout(qc);
3271 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
3273 ap->id);
3274 goto out;
3275 }
3276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277out:
3278 DPRINTK("EXIT\n");
3279}
3280
3281/**
3282 * ata_qc_new - Request an available ATA command, for queueing
3283 * @ap: Port associated with device @dev
3284 * @dev: Device from whom we request an available command structure
3285 *
3286 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003287 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 */
3289
3290static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
3291{
3292 struct ata_queued_cmd *qc = NULL;
3293 unsigned int i;
3294
3295 for (i = 0; i < ATA_MAX_QUEUE; i++)
3296 if (!test_and_set_bit(i, &ap->qactive)) {
3297 qc = ata_qc_from_tag(ap, i);
3298 break;
3299 }
3300
3301 if (qc)
3302 qc->tag = i;
3303
3304 return qc;
3305}
3306
3307/**
3308 * ata_qc_new_init - Request an available ATA command, and initialize it
3309 * @ap: Port associated with device @dev
3310 * @dev: Device from whom we request an available command structure
3311 *
3312 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003313 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 */
3315
3316struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
3317 struct ata_device *dev)
3318{
3319 struct ata_queued_cmd *qc;
3320
3321 qc = ata_qc_new(ap);
3322 if (qc) {
3323 qc->sg = NULL;
3324 qc->flags = 0;
3325 qc->scsicmd = NULL;
3326 qc->ap = ap;
3327 qc->dev = dev;
3328 qc->cursect = qc->cursg = qc->cursg_ofs = 0;
3329 qc->nsect = 0;
3330 qc->nbytes = qc->curbytes = 0;
3331
3332 ata_tf_init(ap, &qc->tf, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 }
3334
3335 return qc;
3336}
3337
Jeff Garzika7dac442005-10-30 04:44:42 -05003338int ata_qc_complete_noop(struct ata_queued_cmd *qc, unsigned int err_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339{
3340 return 0;
3341}
3342
3343static void __ata_qc_complete(struct ata_queued_cmd *qc)
3344{
3345 struct ata_port *ap = qc->ap;
3346 unsigned int tag, do_clear = 0;
3347
3348 qc->flags = 0;
3349 tag = qc->tag;
3350 if (likely(ata_tag_valid(tag))) {
3351 if (tag == ap->active_tag)
3352 ap->active_tag = ATA_TAG_POISON;
3353 qc->tag = ATA_TAG_POISON;
3354 do_clear = 1;
3355 }
3356
3357 if (qc->waiting) {
3358 struct completion *waiting = qc->waiting;
3359 qc->waiting = NULL;
3360 complete(waiting);
3361 }
3362
3363 if (likely(do_clear))
3364 clear_bit(tag, &ap->qactive);
3365}
3366
3367/**
3368 * ata_qc_free - free unused ata_queued_cmd
3369 * @qc: Command to complete
3370 *
3371 * Designed to free unused ata_queued_cmd object
3372 * in case something prevents using it.
3373 *
3374 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003375 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 */
3377void ata_qc_free(struct ata_queued_cmd *qc)
3378{
3379 assert(qc != NULL); /* ata_qc_from_tag _might_ return NULL */
3380 assert(qc->waiting == NULL); /* nothing should be waiting */
3381
3382 __ata_qc_complete(qc);
3383}
3384
3385/**
3386 * ata_qc_complete - Complete an active ATA command
3387 * @qc: Command to complete
Jeff Garzik0cba6322005-05-30 19:49:12 -04003388 * @drv_stat: ATA Status register contents
3389 *
3390 * Indicate to the mid and upper layers that an ATA
3391 * command has completed, with either an ok or not-ok status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 *
3393 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003394 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 */
3396
Jeff Garzika7dac442005-10-30 04:44:42 -05003397void ata_qc_complete(struct ata_queued_cmd *qc, unsigned int err_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398{
3399 int rc;
3400
3401 assert(qc != NULL); /* ata_qc_from_tag _might_ return NULL */
3402 assert(qc->flags & ATA_QCFLAG_ACTIVE);
3403
3404 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
3405 ata_sg_clean(qc);
3406
Albert Lee3f3791d2005-08-16 14:25:38 +08003407 /* atapi: mark qc as inactive to prevent the interrupt handler
3408 * from completing the command twice later, before the error handler
3409 * is called. (when rc != 0 and atapi request sense is needed)
3410 */
3411 qc->flags &= ~ATA_QCFLAG_ACTIVE;
3412
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 /* call completion callback */
Jeff Garzika7dac442005-10-30 04:44:42 -05003414 rc = qc->complete_fn(qc, err_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
3416 /* if callback indicates not to complete command (non-zero),
3417 * return immediately
3418 */
3419 if (rc != 0)
3420 return;
3421
3422 __ata_qc_complete(qc);
3423
3424 VPRINTK("EXIT\n");
3425}
3426
3427static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
3428{
3429 struct ata_port *ap = qc->ap;
3430
3431 switch (qc->tf.protocol) {
3432 case ATA_PROT_DMA:
3433 case ATA_PROT_ATAPI_DMA:
3434 return 1;
3435
3436 case ATA_PROT_ATAPI:
3437 case ATA_PROT_PIO:
3438 case ATA_PROT_PIO_MULT:
3439 if (ap->flags & ATA_FLAG_PIO_DMA)
3440 return 1;
3441
3442 /* fall through */
3443
3444 default:
3445 return 0;
3446 }
3447
3448 /* never reached */
3449}
3450
3451/**
3452 * ata_qc_issue - issue taskfile to device
3453 * @qc: command to issue to device
3454 *
3455 * Prepare an ATA command to submission to device.
3456 * This includes mapping the data into a DMA-able
3457 * area, filling in the S/G table, and finally
3458 * writing the taskfile to hardware, starting the command.
3459 *
3460 * LOCKING:
3461 * spin_lock_irqsave(host_set lock)
3462 *
3463 * RETURNS:
3464 * Zero on success, negative on error.
3465 */
3466
3467int ata_qc_issue(struct ata_queued_cmd *qc)
3468{
3469 struct ata_port *ap = qc->ap;
3470
3471 if (ata_should_dma_map(qc)) {
3472 if (qc->flags & ATA_QCFLAG_SG) {
3473 if (ata_sg_setup(qc))
3474 goto err_out;
3475 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
3476 if (ata_sg_setup_one(qc))
3477 goto err_out;
3478 }
3479 } else {
3480 qc->flags &= ~ATA_QCFLAG_DMAMAP;
3481 }
3482
3483 ap->ops->qc_prep(qc);
3484
3485 qc->ap->active_tag = qc->tag;
3486 qc->flags |= ATA_QCFLAG_ACTIVE;
3487
3488 return ap->ops->qc_issue(qc);
3489
3490err_out:
3491 return -1;
3492}
3493
Edward Falk0baab862005-06-02 18:17:13 -04003494
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495/**
3496 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
3497 * @qc: command to issue to device
3498 *
3499 * Using various libata functions and hooks, this function
3500 * starts an ATA command. ATA commands are grouped into
3501 * classes called "protocols", and issuing each type of protocol
3502 * is slightly different.
3503 *
Edward Falk0baab862005-06-02 18:17:13 -04003504 * May be used as the qc_issue() entry in ata_port_operations.
3505 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 * LOCKING:
3507 * spin_lock_irqsave(host_set lock)
3508 *
3509 * RETURNS:
3510 * Zero on success, negative on error.
3511 */
3512
3513int ata_qc_issue_prot(struct ata_queued_cmd *qc)
3514{
3515 struct ata_port *ap = qc->ap;
3516
3517 ata_dev_select(ap, qc->dev->devno, 1, 0);
3518
3519 switch (qc->tf.protocol) {
3520 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05003521 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 break;
3523
3524 case ATA_PROT_DMA:
3525 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
3526 ap->ops->bmdma_setup(qc); /* set up bmdma */
3527 ap->ops->bmdma_start(qc); /* initiate bmdma */
3528 break;
3529
3530 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
3531 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05003532 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08003533 ap->hsm_task_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 queue_work(ata_wq, &ap->pio_task);
3535 break;
3536
3537 case ATA_PROT_ATAPI:
3538 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05003539 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 queue_work(ata_wq, &ap->packet_task);
3541 break;
3542
3543 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09003544 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05003545 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 queue_work(ata_wq, &ap->packet_task);
3547 break;
3548
3549 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09003550 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
3552 ap->ops->bmdma_setup(qc); /* set up bmdma */
3553 queue_work(ata_wq, &ap->packet_task);
3554 break;
3555
3556 default:
3557 WARN_ON(1);
3558 return -1;
3559 }
3560
3561 return 0;
3562}
3563
3564/**
Edward Falk0baab862005-06-02 18:17:13 -04003565 * ata_bmdma_setup_mmio - Set up PCI IDE BMDMA transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 * @qc: Info associated with this ATA transaction.
3567 *
3568 * LOCKING:
3569 * spin_lock_irqsave(host_set lock)
3570 */
3571
3572static void ata_bmdma_setup_mmio (struct ata_queued_cmd *qc)
3573{
3574 struct ata_port *ap = qc->ap;
3575 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
3576 u8 dmactl;
3577 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3578
3579 /* load PRD table addr. */
3580 mb(); /* make sure PRD table writes are visible to controller */
3581 writel(ap->prd_dma, mmio + ATA_DMA_TABLE_OFS);
3582
3583 /* specify data direction, triple-check start bit is clear */
3584 dmactl = readb(mmio + ATA_DMA_CMD);
3585 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
3586 if (!rw)
3587 dmactl |= ATA_DMA_WR;
3588 writeb(dmactl, mmio + ATA_DMA_CMD);
3589
3590 /* issue r/w command */
3591 ap->ops->exec_command(ap, &qc->tf);
3592}
3593
3594/**
Alan Coxb73fc892005-08-26 16:03:19 +01003595 * ata_bmdma_start_mmio - Start a PCI IDE BMDMA transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 * @qc: Info associated with this ATA transaction.
3597 *
3598 * LOCKING:
3599 * spin_lock_irqsave(host_set lock)
3600 */
3601
3602static void ata_bmdma_start_mmio (struct ata_queued_cmd *qc)
3603{
3604 struct ata_port *ap = qc->ap;
3605 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3606 u8 dmactl;
3607
3608 /* start host DMA transaction */
3609 dmactl = readb(mmio + ATA_DMA_CMD);
3610 writeb(dmactl | ATA_DMA_START, mmio + ATA_DMA_CMD);
3611
3612 /* Strictly, one may wish to issue a readb() here, to
3613 * flush the mmio write. However, control also passes
3614 * to the hardware at this point, and it will interrupt
3615 * us when we are to resume control. So, in effect,
3616 * we don't care when the mmio write flushes.
3617 * Further, a read of the DMA status register _immediately_
3618 * following the write may not be what certain flaky hardware
3619 * is expected, so I think it is best to not add a readb()
3620 * without first all the MMIO ATA cards/mobos.
3621 * Or maybe I'm just being paranoid.
3622 */
3623}
3624
3625/**
3626 * ata_bmdma_setup_pio - Set up PCI IDE BMDMA transaction (PIO)
3627 * @qc: Info associated with this ATA transaction.
3628 *
3629 * LOCKING:
3630 * spin_lock_irqsave(host_set lock)
3631 */
3632
3633static void ata_bmdma_setup_pio (struct ata_queued_cmd *qc)
3634{
3635 struct ata_port *ap = qc->ap;
3636 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
3637 u8 dmactl;
3638
3639 /* load PRD table addr. */
3640 outl(ap->prd_dma, ap->ioaddr.bmdma_addr + ATA_DMA_TABLE_OFS);
3641
3642 /* specify data direction, triple-check start bit is clear */
3643 dmactl = inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3644 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
3645 if (!rw)
3646 dmactl |= ATA_DMA_WR;
3647 outb(dmactl, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3648
3649 /* issue r/w command */
3650 ap->ops->exec_command(ap, &qc->tf);
3651}
3652
3653/**
3654 * ata_bmdma_start_pio - Start a PCI IDE BMDMA transaction (PIO)
3655 * @qc: Info associated with this ATA transaction.
3656 *
3657 * LOCKING:
3658 * spin_lock_irqsave(host_set lock)
3659 */
3660
3661static void ata_bmdma_start_pio (struct ata_queued_cmd *qc)
3662{
3663 struct ata_port *ap = qc->ap;
3664 u8 dmactl;
3665
3666 /* start host DMA transaction */
3667 dmactl = inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3668 outb(dmactl | ATA_DMA_START,
3669 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3670}
3671
Edward Falk0baab862005-06-02 18:17:13 -04003672
3673/**
3674 * ata_bmdma_start - Start a PCI IDE BMDMA transaction
3675 * @qc: Info associated with this ATA transaction.
3676 *
3677 * Writes the ATA_DMA_START flag to the DMA command register.
3678 *
3679 * May be used as the bmdma_start() entry in ata_port_operations.
3680 *
3681 * LOCKING:
3682 * spin_lock_irqsave(host_set lock)
3683 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684void ata_bmdma_start(struct ata_queued_cmd *qc)
3685{
3686 if (qc->ap->flags & ATA_FLAG_MMIO)
3687 ata_bmdma_start_mmio(qc);
3688 else
3689 ata_bmdma_start_pio(qc);
3690}
3691
Edward Falk0baab862005-06-02 18:17:13 -04003692
3693/**
3694 * ata_bmdma_setup - Set up PCI IDE BMDMA transaction
3695 * @qc: Info associated with this ATA transaction.
3696 *
3697 * Writes address of PRD table to device's PRD Table Address
3698 * register, sets the DMA control register, and calls
3699 * ops->exec_command() to start the transfer.
3700 *
3701 * May be used as the bmdma_setup() entry in ata_port_operations.
3702 *
3703 * LOCKING:
3704 * spin_lock_irqsave(host_set lock)
3705 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706void ata_bmdma_setup(struct ata_queued_cmd *qc)
3707{
3708 if (qc->ap->flags & ATA_FLAG_MMIO)
3709 ata_bmdma_setup_mmio(qc);
3710 else
3711 ata_bmdma_setup_pio(qc);
3712}
3713
Edward Falk0baab862005-06-02 18:17:13 -04003714
3715/**
3716 * ata_bmdma_irq_clear - Clear PCI IDE BMDMA interrupt.
Jeff Garzikdecc6d02005-06-02 18:42:33 -04003717 * @ap: Port associated with this ATA transaction.
Edward Falk0baab862005-06-02 18:17:13 -04003718 *
3719 * Clear interrupt and error flags in DMA status register.
3720 *
3721 * May be used as the irq_clear() entry in ata_port_operations.
3722 *
3723 * LOCKING:
3724 * spin_lock_irqsave(host_set lock)
3725 */
3726
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727void ata_bmdma_irq_clear(struct ata_port *ap)
3728{
3729 if (ap->flags & ATA_FLAG_MMIO) {
3730 void __iomem *mmio = ((void __iomem *) ap->ioaddr.bmdma_addr) + ATA_DMA_STATUS;
3731 writeb(readb(mmio), mmio);
3732 } else {
3733 unsigned long addr = ap->ioaddr.bmdma_addr + ATA_DMA_STATUS;
3734 outb(inb(addr), addr);
3735 }
3736
3737}
3738
Edward Falk0baab862005-06-02 18:17:13 -04003739
3740/**
3741 * ata_bmdma_status - Read PCI IDE BMDMA status
Jeff Garzikdecc6d02005-06-02 18:42:33 -04003742 * @ap: Port associated with this ATA transaction.
Edward Falk0baab862005-06-02 18:17:13 -04003743 *
3744 * Read and return BMDMA status register.
3745 *
3746 * May be used as the bmdma_status() entry in ata_port_operations.
3747 *
3748 * LOCKING:
3749 * spin_lock_irqsave(host_set lock)
3750 */
3751
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752u8 ata_bmdma_status(struct ata_port *ap)
3753{
3754 u8 host_stat;
3755 if (ap->flags & ATA_FLAG_MMIO) {
3756 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3757 host_stat = readb(mmio + ATA_DMA_STATUS);
3758 } else
Albert Leeee500aa2005-09-27 17:34:38 +08003759 host_stat = inb(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 return host_stat;
3761}
3762
Edward Falk0baab862005-06-02 18:17:13 -04003763
3764/**
3765 * ata_bmdma_stop - Stop PCI IDE BMDMA transfer
Alan Coxb73fc892005-08-26 16:03:19 +01003766 * @qc: Command we are ending DMA for
Edward Falk0baab862005-06-02 18:17:13 -04003767 *
3768 * Clears the ATA_DMA_START flag in the dma control register
3769 *
3770 * May be used as the bmdma_stop() entry in ata_port_operations.
3771 *
3772 * LOCKING:
3773 * spin_lock_irqsave(host_set lock)
3774 */
3775
Alan Coxb73fc892005-08-26 16:03:19 +01003776void ata_bmdma_stop(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777{
Alan Coxb73fc892005-08-26 16:03:19 +01003778 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 if (ap->flags & ATA_FLAG_MMIO) {
3780 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
3781
3782 /* clear start/stop bit */
3783 writeb(readb(mmio + ATA_DMA_CMD) & ~ATA_DMA_START,
3784 mmio + ATA_DMA_CMD);
3785 } else {
3786 /* clear start/stop bit */
3787 outb(inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD) & ~ATA_DMA_START,
3788 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
3789 }
3790
3791 /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
3792 ata_altstatus(ap); /* dummy read */
3793}
3794
3795/**
3796 * ata_host_intr - Handle host interrupt for given (port, task)
3797 * @ap: Port on which interrupt arrived (possibly...)
3798 * @qc: Taskfile currently active in engine
3799 *
3800 * Handle host interrupt for given queued command. Currently,
3801 * only DMA interrupts are handled. All other commands are
3802 * handled via polling with interrupts disabled (nIEN bit).
3803 *
3804 * LOCKING:
3805 * spin_lock_irqsave(host_set lock)
3806 *
3807 * RETURNS:
3808 * One if interrupt was handled, zero if not (shared irq).
3809 */
3810
3811inline unsigned int ata_host_intr (struct ata_port *ap,
3812 struct ata_queued_cmd *qc)
3813{
3814 u8 status, host_stat;
3815
3816 switch (qc->tf.protocol) {
3817
3818 case ATA_PROT_DMA:
3819 case ATA_PROT_ATAPI_DMA:
3820 case ATA_PROT_ATAPI:
3821 /* check status of DMA engine */
3822 host_stat = ap->ops->bmdma_status(ap);
3823 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
3824
3825 /* if it's not our irq... */
3826 if (!(host_stat & ATA_DMA_INTR))
3827 goto idle_irq;
3828
3829 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01003830 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831
3832 /* fall through */
3833
3834 case ATA_PROT_ATAPI_NODATA:
3835 case ATA_PROT_NODATA:
3836 /* check altstatus */
3837 status = ata_altstatus(ap);
3838 if (status & ATA_BUSY)
3839 goto idle_irq;
3840
3841 /* check main status, clearing INTRQ */
3842 status = ata_chk_status(ap);
3843 if (unlikely(status & ATA_BUSY))
3844 goto idle_irq;
3845 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
3846 ap->id, qc->tf.protocol, status);
3847
3848 /* ack bmdma irq events */
3849 ap->ops->irq_clear(ap);
3850
3851 /* complete taskfile transaction */
Jeff Garzika7dac442005-10-30 04:44:42 -05003852 ata_qc_complete(qc, ac_err_mask(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 break;
3854
3855 default:
3856 goto idle_irq;
3857 }
3858
3859 return 1; /* irq handled */
3860
3861idle_irq:
3862 ap->stats.idle_irq++;
3863
3864#ifdef ATA_IRQ_TRAP
3865 if ((ap->stats.idle_irq % 1000) == 0) {
3866 handled = 1;
3867 ata_irq_ack(ap, 0); /* debug trap */
3868 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
3869 }
3870#endif
3871 return 0; /* irq not handled */
3872}
3873
3874/**
3875 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04003876 * @irq: irq line (unused)
3877 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 * @regs: unused
3879 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04003880 * Default interrupt handler for PCI IDE devices. Calls
3881 * ata_host_intr() for each port that is not disabled.
3882 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003884 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 *
3886 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003887 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 */
3889
3890irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
3891{
3892 struct ata_host_set *host_set = dev_instance;
3893 unsigned int i;
3894 unsigned int handled = 0;
3895 unsigned long flags;
3896
3897 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
3898 spin_lock_irqsave(&host_set->lock, flags);
3899
3900 for (i = 0; i < host_set->n_ports; i++) {
3901 struct ata_port *ap;
3902
3903 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09003904 if (ap &&
3905 !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 struct ata_queued_cmd *qc;
3907
3908 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08003909 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
3910 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 handled |= ata_host_intr(ap, qc);
3912 }
3913 }
3914
3915 spin_unlock_irqrestore(&host_set->lock, flags);
3916
3917 return IRQ_RETVAL(handled);
3918}
3919
3920/**
3921 * atapi_packet_task - Write CDB bytes to hardware
3922 * @_data: Port to which ATAPI device is attached.
3923 *
3924 * When device has indicated its readiness to accept
3925 * a CDB, this function is called. Send the CDB.
3926 * If DMA is to be performed, exit immediately.
3927 * Otherwise, we are in polling mode, so poll
3928 * status under operation succeeds or fails.
3929 *
3930 * LOCKING:
3931 * Kernel thread context (may sleep)
3932 */
3933
3934static void atapi_packet_task(void *_data)
3935{
3936 struct ata_port *ap = _data;
3937 struct ata_queued_cmd *qc;
3938 u8 status;
3939
3940 qc = ata_qc_from_tag(ap, ap->active_tag);
3941 assert(qc != NULL);
3942 assert(qc->flags & ATA_QCFLAG_ACTIVE);
3943
3944 /* sleep-wait for BSY to clear */
3945 DPRINTK("busy wait\n");
3946 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB))
Jeff Garzika7dac442005-10-30 04:44:42 -05003947 goto err_out_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
3949 /* make sure DRQ is set */
3950 status = ata_chk_status(ap);
3951 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ)
3952 goto err_out;
3953
3954 /* send SCSI cdb */
3955 DPRINTK("send cdb\n");
3956 assert(ap->cdb_len >= 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
Tejun Heoc1389502005-08-22 14:59:24 +09003958 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
3959 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
3960 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
Tejun Heoc1389502005-08-22 14:59:24 +09003962 /* Once we're done issuing command and kicking bmdma,
3963 * irq handler takes over. To not lose irq, we need
3964 * to clear NOINTR flag before sending cdb, but
3965 * interrupt handler shouldn't be invoked before we're
3966 * finished. Hence, the following locking.
3967 */
3968 spin_lock_irqsave(&ap->host_set->lock, flags);
3969 ap->flags &= ~ATA_FLAG_NOINTR;
3970 ata_data_xfer(ap, qc->cdb, ap->cdb_len, 1);
3971 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
3972 ap->ops->bmdma_start(qc); /* initiate bmdma */
3973 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3974 } else {
3975 ata_data_xfer(ap, qc->cdb, ap->cdb_len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
Tejun Heoc1389502005-08-22 14:59:24 +09003977 /* PIO commands are handled by polling */
Albert Lee14be71f2005-09-27 17:36:35 +08003978 ap->hsm_task_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 queue_work(ata_wq, &ap->pio_task);
3980 }
3981
3982 return;
3983
Jeff Garzika7dac442005-10-30 04:44:42 -05003984err_out_status:
3985 status = ata_chk_status(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986err_out:
Jeff Garzika7dac442005-10-30 04:44:42 -05003987 ata_poll_qc_complete(qc, __ac_err_mask(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988}
3989
Edward Falk0baab862005-06-02 18:17:13 -04003990
3991/**
3992 * ata_port_start - Set port up for dma.
3993 * @ap: Port to initialize
3994 *
3995 * Called just after data structures for each port are
3996 * initialized. Allocates space for PRD table.
3997 *
3998 * May be used as the port_start() entry in ata_port_operations.
3999 *
4000 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004001 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004002 */
4003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004int ata_port_start (struct ata_port *ap)
4005{
4006 struct device *dev = ap->host_set->dev;
4007
4008 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4009 if (!ap->prd)
4010 return -ENOMEM;
4011
4012 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4013
4014 return 0;
4015}
4016
Edward Falk0baab862005-06-02 18:17:13 -04004017
4018/**
4019 * ata_port_stop - Undo ata_port_start()
4020 * @ap: Port to shut down
4021 *
4022 * Frees the PRD table.
4023 *
4024 * May be used as the port_stop() entry in ata_port_operations.
4025 *
4026 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004027 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004028 */
4029
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030void ata_port_stop (struct ata_port *ap)
4031{
4032 struct device *dev = ap->host_set->dev;
4033
4034 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
4035}
4036
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004037void ata_host_stop (struct ata_host_set *host_set)
4038{
4039 if (host_set->mmio_base)
4040 iounmap(host_set->mmio_base);
4041}
4042
4043
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044/**
4045 * ata_host_remove - Unregister SCSI host structure with upper layers
4046 * @ap: Port to unregister
4047 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4048 *
4049 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004050 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 */
4052
4053static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4054{
4055 struct Scsi_Host *sh = ap->host;
4056
4057 DPRINTK("ENTER\n");
4058
4059 if (do_unregister)
4060 scsi_remove_host(sh);
4061
4062 ap->ops->port_stop(ap);
4063}
4064
4065/**
4066 * ata_host_init - Initialize an ata_port structure
4067 * @ap: Structure to initialize
4068 * @host: associated SCSI mid-layer structure
4069 * @host_set: Collection of hosts to which @ap belongs
4070 * @ent: Probe information provided by low-level driver
4071 * @port_no: Port number associated with this ata_port
4072 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004073 * Initialize a new ata_port structure, and its associated
4074 * scsi_host.
4075 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004077 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 */
4079
4080static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4081 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004082 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083{
4084 unsigned int i;
4085
4086 host->max_id = 16;
4087 host->max_lun = 1;
4088 host->max_channel = 1;
4089 host->unique_id = ata_unique_id++;
4090 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004091
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 scsi_assign_lock(host, &host_set->lock);
4093
4094 ap->flags = ATA_FLAG_PORT_DISABLED;
4095 ap->id = host->unique_id;
4096 ap->host = host;
4097 ap->ctl = ATA_DEVCTL_OBS;
4098 ap->host_set = host_set;
4099 ap->port_no = port_no;
4100 ap->hard_port_no =
4101 ent->legacy_mode ? ent->hard_port_no : port_no;
4102 ap->pio_mask = ent->pio_mask;
4103 ap->mwdma_mask = ent->mwdma_mask;
4104 ap->udma_mask = ent->udma_mask;
4105 ap->flags |= ent->host_flags;
4106 ap->ops = ent->port_ops;
4107 ap->cbl = ATA_CBL_NONE;
4108 ap->active_tag = ATA_TAG_POISON;
4109 ap->last_ctl = 0xFF;
4110
4111 INIT_WORK(&ap->packet_task, atapi_packet_task, ap);
4112 INIT_WORK(&ap->pio_task, ata_pio_task, ap);
4113
4114 for (i = 0; i < ATA_MAX_DEVICES; i++)
4115 ap->device[i].devno = i;
4116
4117#ifdef ATA_IRQ_TRAP
4118 ap->stats.unhandled_irq = 1;
4119 ap->stats.idle_irq = 1;
4120#endif
4121
4122 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4123}
4124
4125/**
4126 * ata_host_add - Attach low-level ATA driver to system
4127 * @ent: Information provided by low-level driver
4128 * @host_set: Collections of ports to which we add
4129 * @port_no: Port number associated with this host
4130 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004131 * Attach low-level ATA driver to system.
4132 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004134 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 *
4136 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004137 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 */
4139
Jeff Garzik057ace52005-10-22 14:27:05 -04004140static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 struct ata_host_set *host_set,
4142 unsigned int port_no)
4143{
4144 struct Scsi_Host *host;
4145 struct ata_port *ap;
4146 int rc;
4147
4148 DPRINTK("ENTER\n");
4149 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4150 if (!host)
4151 return NULL;
4152
4153 ap = (struct ata_port *) &host->hostdata[0];
4154
4155 ata_host_init(ap, host, host_set, ent, port_no);
4156
4157 rc = ap->ops->port_start(ap);
4158 if (rc)
4159 goto err_out;
4160
4161 return ap;
4162
4163err_out:
4164 scsi_host_put(host);
4165 return NULL;
4166}
4167
4168/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004169 * ata_device_add - Register hardware device with ATA and SCSI layers
4170 * @ent: Probe information describing hardware device to be registered
4171 *
4172 * This function processes the information provided in the probe
4173 * information struct @ent, allocates the necessary ATA and SCSI
4174 * host information structures, initializes them, and registers
4175 * everything with requisite kernel subsystems.
4176 *
4177 * This function requests irqs, probes the ATA bus, and probes
4178 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 *
4180 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004181 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 *
4183 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004184 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 */
4186
Jeff Garzik057ace52005-10-22 14:27:05 -04004187int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188{
4189 unsigned int count = 0, i;
4190 struct device *dev = ent->dev;
4191 struct ata_host_set *host_set;
4192
4193 DPRINTK("ENTER\n");
4194 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004195 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4197 if (!host_set)
4198 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 spin_lock_init(&host_set->lock);
4200
4201 host_set->dev = dev;
4202 host_set->n_ports = ent->n_ports;
4203 host_set->irq = ent->irq;
4204 host_set->mmio_base = ent->mmio_base;
4205 host_set->private_data = ent->private_data;
4206 host_set->ops = ent->port_ops;
4207
4208 /* register each port bound to this device */
4209 for (i = 0; i < ent->n_ports; i++) {
4210 struct ata_port *ap;
4211 unsigned long xfer_mode_mask;
4212
4213 ap = ata_host_add(ent, host_set, i);
4214 if (!ap)
4215 goto err_out;
4216
4217 host_set->ports[i] = ap;
4218 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4219 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4220 (ap->pio_mask << ATA_SHIFT_PIO);
4221
4222 /* print per-port info to dmesg */
4223 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4224 "bmdma 0x%lX irq %lu\n",
4225 ap->id,
4226 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4227 ata_mode_string(xfer_mode_mask),
4228 ap->ioaddr.cmd_addr,
4229 ap->ioaddr.ctl_addr,
4230 ap->ioaddr.bmdma_addr,
4231 ent->irq);
4232
4233 ata_chk_status(ap);
4234 host_set->ops->irq_clear(ap);
4235 count++;
4236 }
4237
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004238 if (!count)
4239 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240
4241 /* obtain irq, that is shared between channels */
4242 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4243 DRV_NAME, host_set))
4244 goto err_out;
4245
4246 /* perform each probe synchronously */
4247 DPRINTK("probe begin\n");
4248 for (i = 0; i < count; i++) {
4249 struct ata_port *ap;
4250 int rc;
4251
4252 ap = host_set->ports[i];
4253
4254 DPRINTK("ata%u: probe begin\n", ap->id);
4255 rc = ata_bus_probe(ap);
4256 DPRINTK("ata%u: probe end\n", ap->id);
4257
4258 if (rc) {
4259 /* FIXME: do something useful here?
4260 * Current libata behavior will
4261 * tear down everything when
4262 * the module is removed
4263 * or the h/w is unplugged.
4264 */
4265 }
4266
4267 rc = scsi_add_host(ap->host, dev);
4268 if (rc) {
4269 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4270 ap->id);
4271 /* FIXME: do something useful here */
4272 /* FIXME: handle unconditional calls to
4273 * scsi_scan_host and ata_host_remove, below,
4274 * at the very least
4275 */
4276 }
4277 }
4278
4279 /* probes are done, now scan each port's disk(s) */
4280 DPRINTK("probe begin\n");
4281 for (i = 0; i < count; i++) {
4282 struct ata_port *ap = host_set->ports[i];
4283
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004284 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 }
4286
4287 dev_set_drvdata(dev, host_set);
4288
4289 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4290 return ent->n_ports; /* success */
4291
4292err_out:
4293 for (i = 0; i < count; i++) {
4294 ata_host_remove(host_set->ports[i], 1);
4295 scsi_host_put(host_set->ports[i]->host);
4296 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004297err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 kfree(host_set);
4299 VPRINTK("EXIT, returning 0\n");
4300 return 0;
4301}
4302
4303/**
Alan Cox17b14452005-09-15 15:44:00 +01004304 * ata_host_set_remove - PCI layer callback for device removal
4305 * @host_set: ATA host set that was removed
4306 *
4307 * Unregister all objects associated with this host set. Free those
4308 * objects.
4309 *
4310 * LOCKING:
4311 * Inherited from calling layer (may sleep).
4312 */
4313
Alan Cox17b14452005-09-15 15:44:00 +01004314void ata_host_set_remove(struct ata_host_set *host_set)
4315{
4316 struct ata_port *ap;
4317 unsigned int i;
4318
4319 for (i = 0; i < host_set->n_ports; i++) {
4320 ap = host_set->ports[i];
4321 scsi_remove_host(ap->host);
4322 }
4323
4324 free_irq(host_set->irq, host_set);
4325
4326 for (i = 0; i < host_set->n_ports; i++) {
4327 ap = host_set->ports[i];
4328
4329 ata_scsi_release(ap->host);
4330
4331 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4332 struct ata_ioports *ioaddr = &ap->ioaddr;
4333
4334 if (ioaddr->cmd_addr == 0x1f0)
4335 release_region(0x1f0, 8);
4336 else if (ioaddr->cmd_addr == 0x170)
4337 release_region(0x170, 8);
4338 }
4339
4340 scsi_host_put(ap->host);
4341 }
4342
4343 if (host_set->ops->host_stop)
4344 host_set->ops->host_stop(host_set);
4345
4346 kfree(host_set);
4347}
4348
4349/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 * ata_scsi_release - SCSI layer callback hook for host unload
4351 * @host: libata host to be unloaded
4352 *
4353 * Performs all duties necessary to shut down a libata port...
4354 * Kill port kthread, disable port, and release resources.
4355 *
4356 * LOCKING:
4357 * Inherited from SCSI layer.
4358 *
4359 * RETURNS:
4360 * One.
4361 */
4362
4363int ata_scsi_release(struct Scsi_Host *host)
4364{
4365 struct ata_port *ap = (struct ata_port *) &host->hostdata[0];
4366
4367 DPRINTK("ENTER\n");
4368
4369 ap->ops->port_disable(ap);
4370 ata_host_remove(ap, 0);
4371
4372 DPRINTK("EXIT\n");
4373 return 1;
4374}
4375
4376/**
4377 * ata_std_ports - initialize ioaddr with standard port offsets.
4378 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04004379 *
4380 * Utility function which initializes data_addr, error_addr,
4381 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4382 * device_addr, status_addr, and command_addr to standard offsets
4383 * relative to cmd_addr.
4384 *
4385 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 */
Edward Falk0baab862005-06-02 18:17:13 -04004387
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388void ata_std_ports(struct ata_ioports *ioaddr)
4389{
4390 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4391 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4392 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4393 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4394 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4395 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4396 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4397 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4398 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
4399 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
4400}
4401
4402static struct ata_probe_ent *
Jeff Garzik057ace52005-10-22 14:27:05 -04004403ata_probe_ent_alloc(struct device *dev, const struct ata_port_info *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404{
4405 struct ata_probe_ent *probe_ent;
4406
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004407 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 if (!probe_ent) {
4409 printk(KERN_ERR DRV_NAME "(%s): out of memory\n",
4410 kobject_name(&(dev->kobj)));
4411 return NULL;
4412 }
4413
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 INIT_LIST_HEAD(&probe_ent->node);
4415 probe_ent->dev = dev;
4416
4417 probe_ent->sht = port->sht;
4418 probe_ent->host_flags = port->host_flags;
4419 probe_ent->pio_mask = port->pio_mask;
4420 probe_ent->mwdma_mask = port->mwdma_mask;
4421 probe_ent->udma_mask = port->udma_mask;
4422 probe_ent->port_ops = port->port_ops;
4423
4424 return probe_ent;
4425}
4426
Edward Falk0baab862005-06-02 18:17:13 -04004427
4428
Jeff Garzik374b1872005-08-30 05:42:52 -04004429#ifdef CONFIG_PCI
4430
4431void ata_pci_host_stop (struct ata_host_set *host_set)
4432{
4433 struct pci_dev *pdev = to_pci_dev(host_set->dev);
4434
4435 pci_iounmap(pdev, host_set->mmio_base);
4436}
4437
Edward Falk0baab862005-06-02 18:17:13 -04004438/**
4439 * ata_pci_init_native_mode - Initialize native-mode driver
4440 * @pdev: pci device to be initialized
4441 * @port: array[2] of pointers to port info structures.
Alan Cox47a86592005-10-04 08:09:19 -04004442 * @ports: bitmap of ports present
Edward Falk0baab862005-06-02 18:17:13 -04004443 *
4444 * Utility function which allocates and initializes an
4445 * ata_probe_ent structure for a standard dual-port
4446 * PIO-based IDE controller. The returned ata_probe_ent
4447 * structure can be passed to ata_device_add(). The returned
4448 * ata_probe_ent structure should then be freed with kfree().
Alan Cox47a86592005-10-04 08:09:19 -04004449 *
4450 * The caller need only pass the address of the primary port, the
4451 * secondary will be deduced automatically. If the device has non
4452 * standard secondary port mappings this function can be called twice,
4453 * once for each interface.
Edward Falk0baab862005-06-02 18:17:13 -04004454 */
4455
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456struct ata_probe_ent *
Alan Cox47a86592005-10-04 08:09:19 -04004457ata_pci_init_native_mode(struct pci_dev *pdev, struct ata_port_info **port, int ports)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458{
4459 struct ata_probe_ent *probe_ent =
4460 ata_probe_ent_alloc(pci_dev_to_dev(pdev), port[0]);
Alan Cox47a86592005-10-04 08:09:19 -04004461 int p = 0;
4462
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 if (!probe_ent)
4464 return NULL;
4465
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 probe_ent->irq = pdev->irq;
4467 probe_ent->irq_flags = SA_SHIRQ;
4468
Alan Cox47a86592005-10-04 08:09:19 -04004469 if (ports & ATA_PORT_PRIMARY) {
4470 probe_ent->port[p].cmd_addr = pci_resource_start(pdev, 0);
4471 probe_ent->port[p].altstatus_addr =
4472 probe_ent->port[p].ctl_addr =
4473 pci_resource_start(pdev, 1) | ATA_PCI_CTL_OFS;
4474 probe_ent->port[p].bmdma_addr = pci_resource_start(pdev, 4);
4475 ata_std_ports(&probe_ent->port[p]);
4476 p++;
4477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Alan Cox47a86592005-10-04 08:09:19 -04004479 if (ports & ATA_PORT_SECONDARY) {
4480 probe_ent->port[p].cmd_addr = pci_resource_start(pdev, 2);
4481 probe_ent->port[p].altstatus_addr =
4482 probe_ent->port[p].ctl_addr =
4483 pci_resource_start(pdev, 3) | ATA_PCI_CTL_OFS;
4484 probe_ent->port[p].bmdma_addr = pci_resource_start(pdev, 4) + 8;
4485 ata_std_ports(&probe_ent->port[p]);
4486 p++;
4487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Alan Cox47a86592005-10-04 08:09:19 -04004489 probe_ent->n_ports = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 return probe_ent;
4491}
4492
Jeff Garzik0f0d5192005-10-30 06:41:29 -05004493static 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 -07004494{
Alan Cox47a86592005-10-04 08:09:19 -04004495 struct ata_probe_ent *probe_ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496
Jeff Garzik0f0d5192005-10-30 06:41:29 -05004497 probe_ent = ata_probe_ent_alloc(pci_dev_to_dev(pdev), port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 if (!probe_ent)
4499 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 probe_ent->legacy_mode = 1;
Alan Cox47a86592005-10-04 08:09:19 -04004502 probe_ent->n_ports = 1;
4503 probe_ent->hard_port_no = port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
Alan Cox47a86592005-10-04 08:09:19 -04004505 switch(port_num)
4506 {
4507 case 0:
4508 probe_ent->irq = 14;
4509 probe_ent->port[0].cmd_addr = 0x1f0;
4510 probe_ent->port[0].altstatus_addr =
4511 probe_ent->port[0].ctl_addr = 0x3f6;
4512 break;
4513 case 1:
4514 probe_ent->irq = 15;
4515 probe_ent->port[0].cmd_addr = 0x170;
4516 probe_ent->port[0].altstatus_addr =
4517 probe_ent->port[0].ctl_addr = 0x376;
4518 break;
4519 }
4520 probe_ent->port[0].bmdma_addr = pci_resource_start(pdev, 4) + 8 * port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 ata_std_ports(&probe_ent->port[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 return probe_ent;
4523}
4524
4525/**
4526 * ata_pci_init_one - Initialize/register PCI IDE host controller
4527 * @pdev: Controller to be initialized
4528 * @port_info: Information from low-level host driver
4529 * @n_ports: Number of ports attached to host controller
4530 *
Edward Falk0baab862005-06-02 18:17:13 -04004531 * This is a helper function which can be called from a driver's
4532 * xxx_init_one() probe function if the hardware uses traditional
4533 * IDE taskfile registers.
4534 *
4535 * This function calls pci_enable_device(), reserves its register
4536 * regions, sets the dma mask, enables bus master mode, and calls
4537 * ata_device_add()
4538 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 * LOCKING:
4540 * Inherited from PCI layer (may sleep).
4541 *
4542 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004543 * Zero on success, negative on errno-based value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 */
4545
4546int ata_pci_init_one (struct pci_dev *pdev, struct ata_port_info **port_info,
4547 unsigned int n_ports)
4548{
Alan Cox47a86592005-10-04 08:09:19 -04004549 struct ata_probe_ent *probe_ent = NULL, *probe_ent2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 struct ata_port_info *port[2];
4551 u8 tmp8, mask;
4552 unsigned int legacy_mode = 0;
4553 int disable_dev_on_err = 1;
4554 int rc;
4555
4556 DPRINTK("ENTER\n");
4557
4558 port[0] = port_info[0];
4559 if (n_ports > 1)
4560 port[1] = port_info[1];
4561 else
4562 port[1] = port[0];
4563
4564 if ((port[0]->host_flags & ATA_FLAG_NO_LEGACY) == 0
4565 && (pdev->class >> 8) == PCI_CLASS_STORAGE_IDE) {
Alan Cox47a86592005-10-04 08:09:19 -04004566 /* TODO: What if one channel is in native mode ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 pci_read_config_byte(pdev, PCI_CLASS_PROG, &tmp8);
4568 mask = (1 << 2) | (1 << 0);
4569 if ((tmp8 & mask) != mask)
4570 legacy_mode = (1 << 3);
4571 }
4572
4573 /* FIXME... */
Alan Cox47a86592005-10-04 08:09:19 -04004574 if ((!legacy_mode) && (n_ports > 2)) {
4575 printk(KERN_ERR "ata: BUG: native mode, n_ports > 2\n");
4576 n_ports = 2;
4577 /* For now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 }
4579
Alan Cox47a86592005-10-04 08:09:19 -04004580 /* FIXME: Really for ATA it isn't safe because the device may be
4581 multi-purpose and we want to leave it alone if it was already
4582 enabled. Secondly for shared use as Arjan says we want refcounting
4583
4584 Checking dev->is_enabled is insufficient as this is not set at
4585 boot for the primary video which is BIOS enabled
4586 */
4587
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 rc = pci_enable_device(pdev);
4589 if (rc)
4590 return rc;
4591
4592 rc = pci_request_regions(pdev, DRV_NAME);
4593 if (rc) {
4594 disable_dev_on_err = 0;
4595 goto err_out;
4596 }
4597
Alan Cox47a86592005-10-04 08:09:19 -04004598 /* FIXME: Should use platform specific mappers for legacy port ranges */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 if (legacy_mode) {
4600 if (!request_region(0x1f0, 8, "libata")) {
4601 struct resource *conflict, res;
4602 res.start = 0x1f0;
4603 res.end = 0x1f0 + 8 - 1;
4604 conflict = ____request_resource(&ioport_resource, &res);
4605 if (!strcmp(conflict->name, "libata"))
4606 legacy_mode |= (1 << 0);
4607 else {
4608 disable_dev_on_err = 0;
4609 printk(KERN_WARNING "ata: 0x1f0 IDE port busy\n");
4610 }
4611 } else
4612 legacy_mode |= (1 << 0);
4613
4614 if (!request_region(0x170, 8, "libata")) {
4615 struct resource *conflict, res;
4616 res.start = 0x170;
4617 res.end = 0x170 + 8 - 1;
4618 conflict = ____request_resource(&ioport_resource, &res);
4619 if (!strcmp(conflict->name, "libata"))
4620 legacy_mode |= (1 << 1);
4621 else {
4622 disable_dev_on_err = 0;
4623 printk(KERN_WARNING "ata: 0x170 IDE port busy\n");
4624 }
4625 } else
4626 legacy_mode |= (1 << 1);
4627 }
4628
4629 /* we have legacy mode, but all ports are unavailable */
4630 if (legacy_mode == (1 << 3)) {
4631 rc = -EBUSY;
4632 goto err_out_regions;
4633 }
4634
4635 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
4636 if (rc)
4637 goto err_out_regions;
4638 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
4639 if (rc)
4640 goto err_out_regions;
4641
4642 if (legacy_mode) {
Alan Cox47a86592005-10-04 08:09:19 -04004643 if (legacy_mode & (1 << 0))
Jeff Garzik0f0d5192005-10-30 06:41:29 -05004644 probe_ent = ata_pci_init_legacy_port(pdev, port[0], 0);
Alan Cox47a86592005-10-04 08:09:19 -04004645 if (legacy_mode & (1 << 1))
Jeff Garzik0f0d5192005-10-30 06:41:29 -05004646 probe_ent2 = ata_pci_init_legacy_port(pdev, port[1], 1);
Alan Cox47a86592005-10-04 08:09:19 -04004647 } else {
4648 if (n_ports == 2)
4649 probe_ent = ata_pci_init_native_mode(pdev, port, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
4650 else
4651 probe_ent = ata_pci_init_native_mode(pdev, port, ATA_PORT_PRIMARY);
4652 }
4653 if (!probe_ent && !probe_ent2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 rc = -ENOMEM;
4655 goto err_out_regions;
4656 }
4657
4658 pci_set_master(pdev);
4659
4660 /* FIXME: check ata_device_add return */
4661 if (legacy_mode) {
4662 if (legacy_mode & (1 << 0))
4663 ata_device_add(probe_ent);
4664 if (legacy_mode & (1 << 1))
4665 ata_device_add(probe_ent2);
4666 } else
4667 ata_device_add(probe_ent);
4668
4669 kfree(probe_ent);
4670 kfree(probe_ent2);
4671
4672 return 0;
4673
4674err_out_regions:
4675 if (legacy_mode & (1 << 0))
4676 release_region(0x1f0, 8);
4677 if (legacy_mode & (1 << 1))
4678 release_region(0x170, 8);
4679 pci_release_regions(pdev);
4680err_out:
4681 if (disable_dev_on_err)
4682 pci_disable_device(pdev);
4683 return rc;
4684}
4685
4686/**
4687 * ata_pci_remove_one - PCI layer callback for device removal
4688 * @pdev: PCI device that was removed
4689 *
4690 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004691 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 * Handle this by unregistering all objects associated
4693 * with this PCI device. Free those objects. Then finally
4694 * release PCI resources and disable device.
4695 *
4696 * LOCKING:
4697 * Inherited from PCI layer (may sleep).
4698 */
4699
4700void ata_pci_remove_one (struct pci_dev *pdev)
4701{
4702 struct device *dev = pci_dev_to_dev(pdev);
4703 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704
Alan Cox17b14452005-09-15 15:44:00 +01004705 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 pci_release_regions(pdev);
4707 pci_disable_device(pdev);
4708 dev_set_drvdata(dev, NULL);
4709}
4710
4711/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04004712int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713{
4714 unsigned long tmp = 0;
4715
4716 switch (bits->width) {
4717 case 1: {
4718 u8 tmp8 = 0;
4719 pci_read_config_byte(pdev, bits->reg, &tmp8);
4720 tmp = tmp8;
4721 break;
4722 }
4723 case 2: {
4724 u16 tmp16 = 0;
4725 pci_read_config_word(pdev, bits->reg, &tmp16);
4726 tmp = tmp16;
4727 break;
4728 }
4729 case 4: {
4730 u32 tmp32 = 0;
4731 pci_read_config_dword(pdev, bits->reg, &tmp32);
4732 tmp = tmp32;
4733 break;
4734 }
4735
4736 default:
4737 return -EINVAL;
4738 }
4739
4740 tmp &= bits->mask;
4741
4742 return (tmp == bits->val) ? 1 : 0;
4743}
4744#endif /* CONFIG_PCI */
4745
4746
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747static int __init ata_init(void)
4748{
4749 ata_wq = create_workqueue("ata");
4750 if (!ata_wq)
4751 return -ENOMEM;
4752
4753 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
4754 return 0;
4755}
4756
4757static void __exit ata_exit(void)
4758{
4759 destroy_workqueue(ata_wq);
4760}
4761
4762module_init(ata_init);
4763module_exit(ata_exit);
4764
Jeff Garzik67846b32005-10-05 02:58:32 -04004765static unsigned long ratelimit_time;
4766static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
4767
4768int ata_ratelimit(void)
4769{
4770 int rc;
4771 unsigned long flags;
4772
4773 spin_lock_irqsave(&ata_ratelimit_lock, flags);
4774
4775 if (time_after(jiffies, ratelimit_time)) {
4776 rc = 1;
4777 ratelimit_time = jiffies + (HZ/5);
4778 } else
4779 rc = 0;
4780
4781 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
4782
4783 return rc;
4784}
4785
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786/*
4787 * libata is essentially a library of internal helper functions for
4788 * low-level ATA host controller drivers. As such, the API/ABI is
4789 * likely to change as new drivers are added and updated.
4790 * Do not depend on ABI/API stability.
4791 */
4792
4793EXPORT_SYMBOL_GPL(ata_std_bios_param);
4794EXPORT_SYMBOL_GPL(ata_std_ports);
4795EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01004796EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797EXPORT_SYMBOL_GPL(ata_sg_init);
4798EXPORT_SYMBOL_GPL(ata_sg_init_one);
4799EXPORT_SYMBOL_GPL(ata_qc_complete);
4800EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
4801EXPORT_SYMBOL_GPL(ata_eng_timeout);
4802EXPORT_SYMBOL_GPL(ata_tf_load);
4803EXPORT_SYMBOL_GPL(ata_tf_read);
4804EXPORT_SYMBOL_GPL(ata_noop_dev_select);
4805EXPORT_SYMBOL_GPL(ata_std_dev_select);
4806EXPORT_SYMBOL_GPL(ata_tf_to_fis);
4807EXPORT_SYMBOL_GPL(ata_tf_from_fis);
4808EXPORT_SYMBOL_GPL(ata_check_status);
4809EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810EXPORT_SYMBOL_GPL(ata_exec_command);
4811EXPORT_SYMBOL_GPL(ata_port_start);
4812EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004813EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814EXPORT_SYMBOL_GPL(ata_interrupt);
4815EXPORT_SYMBOL_GPL(ata_qc_prep);
4816EXPORT_SYMBOL_GPL(ata_bmdma_setup);
4817EXPORT_SYMBOL_GPL(ata_bmdma_start);
4818EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
4819EXPORT_SYMBOL_GPL(ata_bmdma_status);
4820EXPORT_SYMBOL_GPL(ata_bmdma_stop);
4821EXPORT_SYMBOL_GPL(ata_port_probe);
4822EXPORT_SYMBOL_GPL(sata_phy_reset);
4823EXPORT_SYMBOL_GPL(__sata_phy_reset);
4824EXPORT_SYMBOL_GPL(ata_bus_reset);
4825EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04004826EXPORT_SYMBOL_GPL(ata_ratelimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
4828EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
4829EXPORT_SYMBOL_GPL(ata_scsi_error);
4830EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
4831EXPORT_SYMBOL_GPL(ata_scsi_release);
4832EXPORT_SYMBOL_GPL(ata_host_intr);
4833EXPORT_SYMBOL_GPL(ata_dev_classify);
4834EXPORT_SYMBOL_GPL(ata_dev_id_string);
Brad Campbell6f2f3812005-05-12 15:07:47 -04004835EXPORT_SYMBOL_GPL(ata_dev_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836EXPORT_SYMBOL_GPL(ata_scsi_simulate);
4837
Alan Cox452503f2005-10-21 19:01:32 -04004838EXPORT_SYMBOL_GPL(ata_timing_compute);
4839EXPORT_SYMBOL_GPL(ata_timing_merge);
4840
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841#ifdef CONFIG_PCI
4842EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04004843EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
4845EXPORT_SYMBOL_GPL(ata_pci_init_one);
4846EXPORT_SYMBOL_GPL(ata_pci_remove_one);
4847#endif /* CONFIG_PCI */