blob: 10f15ab95faba9023b462235573d9a6bd2164380 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include <linux/config.h>
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/pci.h>
39#include <linux/init.h>
40#include <linux/list.h>
41#include <linux/mm.h>
42#include <linux/highmem.h>
43#include <linux/spinlock.h>
44#include <linux/blkdev.h>
45#include <linux/delay.h>
46#include <linux/timer.h>
47#include <linux/interrupt.h>
48#include <linux/completion.h>
49#include <linux/suspend.h>
50#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040051#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100052#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_host.h>
57#include <linux/libata.h>
58#include <asm/io.h>
59#include <asm/semaphore.h>
60#include <asm/byteorder.h>
61
62#include "libata.h"
63
Tejun Heod7bb4cc2006-05-31 18:27:46 +090064/* debounce timing parameters in msecs { interval, duration, timeout } */
65const unsigned long sata_deb_timing_boot[] = { 5, 100, 2000 };
66const unsigned long sata_deb_timing_eh[] = { 25, 500, 2000 };
67const unsigned long sata_deb_timing_before_fsrst[] = { 100, 2000, 5000 };
68
Tejun Heo3373efd2006-05-15 20:57:53 +090069static unsigned int ata_dev_init_params(struct ata_device *dev,
70 u16 heads, u16 sectors);
71static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
72static void ata_dev_xfermask(struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74static unsigned int ata_unique_id = 1;
75static struct workqueue_struct *ata_wq;
76
Tejun Heo453b07a2006-05-31 18:27:42 +090077struct workqueue_struct *ata_aux_wq;
78
Jeff Garzik418dc1f2006-03-11 20:50:08 -050079int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040080module_param(atapi_enabled, int, 0444);
81MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
82
Albert Lee95de7192006-04-04 10:57:18 +080083int atapi_dmadir = 0;
84module_param(atapi_dmadir, int, 0444);
85MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
86
Jeff Garzikc3c013a2006-02-27 22:31:19 -050087int libata_fua = 0;
88module_param_named(fua, libata_fua, int, 0444);
89MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
90
Andrew Mortona8601e52006-06-25 01:36:52 -070091static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
92module_param(ata_probe_timeout, int, 0444);
93MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095MODULE_AUTHOR("Jeff Garzik");
96MODULE_DESCRIPTION("Library module for ATA devices");
97MODULE_LICENSE("GPL");
98MODULE_VERSION(DRV_VERSION);
99
Edward Falk0baab862005-06-02 18:17:13 -0400100
101/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
103 * @tf: Taskfile to convert
104 * @fis: Buffer into which data will output
105 * @pmp: Port multiplier port
106 *
107 * Converts a standard ATA taskfile to a Serial ATA
108 * FIS structure (Register - Host to Device).
109 *
110 * LOCKING:
111 * Inherited from caller.
112 */
113
Jeff Garzik057ace52005-10-22 14:27:05 -0400114void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 fis[0] = 0x27; /* Register - Host to Device FIS */
117 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
118 bit 7 indicates Command FIS */
119 fis[2] = tf->command;
120 fis[3] = tf->feature;
121
122 fis[4] = tf->lbal;
123 fis[5] = tf->lbam;
124 fis[6] = tf->lbah;
125 fis[7] = tf->device;
126
127 fis[8] = tf->hob_lbal;
128 fis[9] = tf->hob_lbam;
129 fis[10] = tf->hob_lbah;
130 fis[11] = tf->hob_feature;
131
132 fis[12] = tf->nsect;
133 fis[13] = tf->hob_nsect;
134 fis[14] = 0;
135 fis[15] = tf->ctl;
136
137 fis[16] = 0;
138 fis[17] = 0;
139 fis[18] = 0;
140 fis[19] = 0;
141}
142
143/**
144 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
145 * @fis: Buffer from which data will be input
146 * @tf: Taskfile to output
147 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500148 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 *
150 * LOCKING:
151 * Inherited from caller.
152 */
153
Jeff Garzik057ace52005-10-22 14:27:05 -0400154void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 tf->command = fis[2]; /* status */
157 tf->feature = fis[3]; /* error */
158
159 tf->lbal = fis[4];
160 tf->lbam = fis[5];
161 tf->lbah = fis[6];
162 tf->device = fis[7];
163
164 tf->hob_lbal = fis[8];
165 tf->hob_lbam = fis[9];
166 tf->hob_lbah = fis[10];
167
168 tf->nsect = fis[12];
169 tf->hob_nsect = fis[13];
170}
171
Albert Lee8cbd6df2005-10-12 15:06:27 +0800172static const u8 ata_rw_cmds[] = {
173 /* pio multi */
174 ATA_CMD_READ_MULTI,
175 ATA_CMD_WRITE_MULTI,
176 ATA_CMD_READ_MULTI_EXT,
177 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100178 0,
179 0,
180 0,
181 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800182 /* pio */
183 ATA_CMD_PIO_READ,
184 ATA_CMD_PIO_WRITE,
185 ATA_CMD_PIO_READ_EXT,
186 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100187 0,
188 0,
189 0,
190 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800191 /* dma */
192 ATA_CMD_READ,
193 ATA_CMD_WRITE,
194 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100195 ATA_CMD_WRITE_EXT,
196 0,
197 0,
198 0,
199 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800200};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800203 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
204 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500206 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800207 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 *
209 * LOCKING:
210 * caller.
211 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100212int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800214 struct ata_taskfile *tf = &qc->tf;
215 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100216 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100218 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500219
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100220 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800221 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
222 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Albert Lee8cbd6df2005-10-12 15:06:27 +0800224 if (dev->flags & ATA_DFLAG_PIO) {
225 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100226 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000227 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
228 /* Unable to use DMA due to host limitation */
229 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800230 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800231 } else {
232 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100233 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100236 cmd = ata_rw_cmds[index + fua + lba48 + write];
237 if (cmd) {
238 tf->command = cmd;
239 return 0;
240 }
241 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Tejun Heocb95d562006-03-06 04:31:56 +0900244/**
245 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
246 * @pio_mask: pio_mask
247 * @mwdma_mask: mwdma_mask
248 * @udma_mask: udma_mask
249 *
250 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
251 * unsigned int xfer_mask.
252 *
253 * LOCKING:
254 * None.
255 *
256 * RETURNS:
257 * Packed xfer_mask.
258 */
259static unsigned int ata_pack_xfermask(unsigned int pio_mask,
260 unsigned int mwdma_mask,
261 unsigned int udma_mask)
262{
263 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
264 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
265 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
266}
267
Tejun Heoc0489e42006-03-24 14:07:49 +0900268/**
269 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
270 * @xfer_mask: xfer_mask to unpack
271 * @pio_mask: resulting pio_mask
272 * @mwdma_mask: resulting mwdma_mask
273 * @udma_mask: resulting udma_mask
274 *
275 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
276 * Any NULL distination masks will be ignored.
277 */
278static void ata_unpack_xfermask(unsigned int xfer_mask,
279 unsigned int *pio_mask,
280 unsigned int *mwdma_mask,
281 unsigned int *udma_mask)
282{
283 if (pio_mask)
284 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
285 if (mwdma_mask)
286 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
287 if (udma_mask)
288 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
289}
290
Tejun Heocb95d562006-03-06 04:31:56 +0900291static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900292 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900293 u8 base;
294} ata_xfer_tbl[] = {
295 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
296 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
297 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
298 { -1, },
299};
300
301/**
302 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
303 * @xfer_mask: xfer_mask of interest
304 *
305 * Return matching XFER_* value for @xfer_mask. Only the highest
306 * bit of @xfer_mask is considered.
307 *
308 * LOCKING:
309 * None.
310 *
311 * RETURNS:
312 * Matching XFER_* value, 0 if no match found.
313 */
314static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
315{
316 int highbit = fls(xfer_mask) - 1;
317 const struct ata_xfer_ent *ent;
318
319 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
320 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
321 return ent->base + highbit - ent->shift;
322 return 0;
323}
324
325/**
326 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
327 * @xfer_mode: XFER_* of interest
328 *
329 * Return matching xfer_mask for @xfer_mode.
330 *
331 * LOCKING:
332 * None.
333 *
334 * RETURNS:
335 * Matching xfer_mask, 0 if no match found.
336 */
337static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
338{
339 const struct ata_xfer_ent *ent;
340
341 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
342 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
343 return 1 << (ent->shift + xfer_mode - ent->base);
344 return 0;
345}
346
347/**
348 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
349 * @xfer_mode: XFER_* of interest
350 *
351 * Return matching xfer_shift for @xfer_mode.
352 *
353 * LOCKING:
354 * None.
355 *
356 * RETURNS:
357 * Matching xfer_shift, -1 if no match found.
358 */
359static int ata_xfer_mode2shift(unsigned int xfer_mode)
360{
361 const struct ata_xfer_ent *ent;
362
363 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
364 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
365 return ent->shift;
366 return -1;
367}
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900370 * ata_mode_string - convert xfer_mask to string
371 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *
373 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900374 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 *
376 * LOCKING:
377 * None.
378 *
379 * RETURNS:
380 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900381 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900383static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Tejun Heo75f554b2006-03-06 04:31:57 +0900385 static const char * const xfer_mode_str[] = {
386 "PIO0",
387 "PIO1",
388 "PIO2",
389 "PIO3",
390 "PIO4",
391 "MWDMA0",
392 "MWDMA1",
393 "MWDMA2",
394 "UDMA/16",
395 "UDMA/25",
396 "UDMA/33",
397 "UDMA/44",
398 "UDMA/66",
399 "UDMA/100",
400 "UDMA/133",
401 "UDMA7",
402 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900403 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900405 highbit = fls(xfer_mask) - 1;
406 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
407 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Tejun Heo4c360c82006-04-01 01:38:17 +0900411static const char *sata_spd_string(unsigned int spd)
412{
413 static const char * const spd_str[] = {
414 "1.5 Gbps",
415 "3.0 Gbps",
416 };
417
418 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
419 return "<unknown>";
420 return spd_str[spd - 1];
421}
422
Tejun Heo3373efd2006-05-15 20:57:53 +0900423void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900424{
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400425 if (ata_dev_enabled(dev) && ata_msg_drv(dev->ap)) {
Tejun Heof15a1da2006-05-15 20:57:56 +0900426 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo0b8efb02006-03-24 15:25:31 +0900427 dev->class++;
428 }
429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/**
432 * ata_pio_devchk - PATA device presence detection
433 * @ap: ATA channel to examine
434 * @device: Device to examine (starting at zero)
435 *
436 * This technique was originally described in
437 * Hale Landis's ATADRVR (www.ata-atapi.com), and
438 * later found its way into the ATA/ATAPI spec.
439 *
440 * Write a pattern to the ATA shadow registers,
441 * and if a device is present, it will respond by
442 * correctly storing and echoing back the
443 * ATA shadow register contents.
444 *
445 * LOCKING:
446 * caller.
447 */
448
449static unsigned int ata_pio_devchk(struct ata_port *ap,
450 unsigned int device)
451{
452 struct ata_ioports *ioaddr = &ap->ioaddr;
453 u8 nsect, lbal;
454
455 ap->ops->dev_select(ap, device);
456
457 outb(0x55, ioaddr->nsect_addr);
458 outb(0xaa, ioaddr->lbal_addr);
459
460 outb(0xaa, ioaddr->nsect_addr);
461 outb(0x55, ioaddr->lbal_addr);
462
463 outb(0x55, ioaddr->nsect_addr);
464 outb(0xaa, ioaddr->lbal_addr);
465
466 nsect = inb(ioaddr->nsect_addr);
467 lbal = inb(ioaddr->lbal_addr);
468
469 if ((nsect == 0x55) && (lbal == 0xaa))
470 return 1; /* we found a device */
471
472 return 0; /* nothing found */
473}
474
475/**
476 * ata_mmio_devchk - PATA device presence detection
477 * @ap: ATA channel to examine
478 * @device: Device to examine (starting at zero)
479 *
480 * This technique was originally described in
481 * Hale Landis's ATADRVR (www.ata-atapi.com), and
482 * later found its way into the ATA/ATAPI spec.
483 *
484 * Write a pattern to the ATA shadow registers,
485 * and if a device is present, it will respond by
486 * correctly storing and echoing back the
487 * ATA shadow register contents.
488 *
489 * LOCKING:
490 * caller.
491 */
492
493static unsigned int ata_mmio_devchk(struct ata_port *ap,
494 unsigned int device)
495{
496 struct ata_ioports *ioaddr = &ap->ioaddr;
497 u8 nsect, lbal;
498
499 ap->ops->dev_select(ap, device);
500
501 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
502 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
503
504 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
505 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
506
507 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
508 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
509
510 nsect = readb((void __iomem *) ioaddr->nsect_addr);
511 lbal = readb((void __iomem *) ioaddr->lbal_addr);
512
513 if ((nsect == 0x55) && (lbal == 0xaa))
514 return 1; /* we found a device */
515
516 return 0; /* nothing found */
517}
518
519/**
520 * ata_devchk - PATA device presence detection
521 * @ap: ATA channel to examine
522 * @device: Device to examine (starting at zero)
523 *
524 * Dispatch ATA device presence detection, depending
525 * on whether we are using PIO or MMIO to talk to the
526 * ATA shadow registers.
527 *
528 * LOCKING:
529 * caller.
530 */
531
532static unsigned int ata_devchk(struct ata_port *ap,
533 unsigned int device)
534{
535 if (ap->flags & ATA_FLAG_MMIO)
536 return ata_mmio_devchk(ap, device);
537 return ata_pio_devchk(ap, device);
538}
539
540/**
541 * ata_dev_classify - determine device type based on ATA-spec signature
542 * @tf: ATA taskfile register set for device to be identified
543 *
544 * Determine from taskfile register contents whether a device is
545 * ATA or ATAPI, as per "Signature and persistence" section
546 * of ATA/PI spec (volume 1, sect 5.14).
547 *
548 * LOCKING:
549 * None.
550 *
551 * RETURNS:
552 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
553 * the event of failure.
554 */
555
Jeff Garzik057ace52005-10-22 14:27:05 -0400556unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 /* Apple's open source Darwin code hints that some devices only
559 * put a proper signature into the LBA mid/high registers,
560 * So, we only check those. It's sufficient for uniqueness.
561 */
562
563 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
564 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
565 DPRINTK("found ATA device by sig\n");
566 return ATA_DEV_ATA;
567 }
568
569 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
570 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
571 DPRINTK("found ATAPI device by sig\n");
572 return ATA_DEV_ATAPI;
573 }
574
575 DPRINTK("unknown device\n");
576 return ATA_DEV_UNKNOWN;
577}
578
579/**
580 * ata_dev_try_classify - Parse returned ATA device signature
581 * @ap: ATA channel to examine
582 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900583 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 *
585 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
586 * an ATA/ATAPI-defined set of values is placed in the ATA
587 * shadow registers, indicating the results of device detection
588 * and diagnostics.
589 *
590 * Select the ATA device, and read the values from the ATA shadow
591 * registers. Then parse according to the Error register value,
592 * and the spec-defined values examined by ata_dev_classify().
593 *
594 * LOCKING:
595 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900596 *
597 * RETURNS:
598 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 */
600
Tejun Heob4dc7622006-01-24 17:05:22 +0900601static unsigned int
602ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct ata_taskfile tf;
605 unsigned int class;
606 u8 err;
607
608 ap->ops->dev_select(ap, device);
609
610 memset(&tf, 0, sizeof(tf));
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400613 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900614 if (r_err)
615 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* see if device passed diags */
618 if (err == 1)
619 /* do nothing */ ;
620 else if ((device == 0) && (err == 0x81))
621 /* do nothing */ ;
622 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900623 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Tejun Heob4dc7622006-01-24 17:05:22 +0900625 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900629 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900631 return ATA_DEV_NONE;
632 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900636 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 * @id: IDENTIFY DEVICE results we will examine
638 * @s: string into which data is output
639 * @ofs: offset into identify device page
640 * @len: length of string to return. must be an even number.
641 *
642 * The strings in the IDENTIFY DEVICE page are broken up into
643 * 16-bit chunks. Run through the string, and output each
644 * 8-bit chunk linearly, regardless of platform.
645 *
646 * LOCKING:
647 * caller.
648 */
649
Tejun Heo6a62a042006-02-13 10:02:46 +0900650void ata_id_string(const u16 *id, unsigned char *s,
651 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 unsigned int c;
654
655 while (len > 0) {
656 c = id[ofs] >> 8;
657 *s = c;
658 s++;
659
660 c = id[ofs] & 0xff;
661 *s = c;
662 s++;
663
664 ofs++;
665 len -= 2;
666 }
667}
668
Tejun Heo0e949ff2006-02-12 22:47:04 +0900669/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900670 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900671 * @id: IDENTIFY DEVICE results we will examine
672 * @s: string into which data is output
673 * @ofs: offset into identify device page
674 * @len: length of string to return. must be an odd number.
675 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900676 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900677 * trims trailing spaces and terminates the resulting string with
678 * null. @len must be actual maximum length (even number) + 1.
679 *
680 * LOCKING:
681 * caller.
682 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900683void ata_id_c_string(const u16 *id, unsigned char *s,
684 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900685{
686 unsigned char *p;
687
688 WARN_ON(!(len & 1));
689
Tejun Heo6a62a042006-02-13 10:02:46 +0900690 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900691
692 p = s + strnlen(s, len - 1);
693 while (p > s && p[-1] == ' ')
694 p--;
695 *p = '\0';
696}
Edward Falk0baab862005-06-02 18:17:13 -0400697
Tejun Heo29407402006-02-12 22:47:04 +0900698static u64 ata_id_n_sectors(const u16 *id)
699{
700 if (ata_id_has_lba(id)) {
701 if (ata_id_has_lba48(id))
702 return ata_id_u64(id, 100);
703 else
704 return ata_id_u32(id, 60);
705 } else {
706 if (ata_id_current_chs_valid(id))
707 return ata_id_u32(id, 57);
708 else
709 return id[1] * id[3] * id[6];
710 }
711}
712
Edward Falk0baab862005-06-02 18:17:13 -0400713/**
714 * ata_noop_dev_select - Select device 0/1 on ATA bus
715 * @ap: ATA channel to manipulate
716 * @device: ATA device (numbered from zero) to select
717 *
718 * This function performs no actual function.
719 *
720 * May be used as the dev_select() entry in ata_port_operations.
721 *
722 * LOCKING:
723 * caller.
724 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
726{
727}
728
Edward Falk0baab862005-06-02 18:17:13 -0400729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730/**
731 * ata_std_dev_select - Select device 0/1 on ATA bus
732 * @ap: ATA channel to manipulate
733 * @device: ATA device (numbered from zero) to select
734 *
735 * Use the method defined in the ATA specification to
736 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400737 * ATA channel. Works with both PIO and MMIO.
738 *
739 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 *
741 * LOCKING:
742 * caller.
743 */
744
745void ata_std_dev_select (struct ata_port *ap, unsigned int device)
746{
747 u8 tmp;
748
749 if (device == 0)
750 tmp = ATA_DEVICE_OBS;
751 else
752 tmp = ATA_DEVICE_OBS | ATA_DEV1;
753
754 if (ap->flags & ATA_FLAG_MMIO) {
755 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
756 } else {
757 outb(tmp, ap->ioaddr.device_addr);
758 }
759 ata_pause(ap); /* needed; also flushes, for mmio */
760}
761
762/**
763 * ata_dev_select - Select device 0/1 on ATA bus
764 * @ap: ATA channel to manipulate
765 * @device: ATA device (numbered from zero) to select
766 * @wait: non-zero to wait for Status register BSY bit to clear
767 * @can_sleep: non-zero if context allows sleeping
768 *
769 * Use the method defined in the ATA specification to
770 * make either device 0, or device 1, active on the
771 * ATA channel.
772 *
773 * This is a high-level version of ata_std_dev_select(),
774 * which additionally provides the services of inserting
775 * the proper pauses and status polling, where needed.
776 *
777 * LOCKING:
778 * caller.
779 */
780
781void ata_dev_select(struct ata_port *ap, unsigned int device,
782 unsigned int wait, unsigned int can_sleep)
783{
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400784 if (ata_msg_probe(ap)) {
785 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, ata%u: "
786 "device %u, wait %u\n",
787 ap->id, device, wait);
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 if (wait)
791 ata_wait_idle(ap);
792
793 ap->ops->dev_select(ap, device);
794
795 if (wait) {
796 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
797 msleep(150);
798 ata_wait_idle(ap);
799 }
800}
801
802/**
803 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900804 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900806 * Dump selected 16-bit words from the given IDENTIFY DEVICE
807 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 *
809 * LOCKING:
810 * caller.
811 */
812
Tejun Heo0bd33002006-02-12 22:47:05 +0900813static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 DPRINTK("49==0x%04x "
816 "53==0x%04x "
817 "63==0x%04x "
818 "64==0x%04x "
819 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900820 id[49],
821 id[53],
822 id[63],
823 id[64],
824 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 DPRINTK("80==0x%04x "
826 "81==0x%04x "
827 "82==0x%04x "
828 "83==0x%04x "
829 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900830 id[80],
831 id[81],
832 id[82],
833 id[83],
834 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 DPRINTK("88==0x%04x "
836 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900837 id[88],
838 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Tejun Heocb95d562006-03-06 04:31:56 +0900841/**
842 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
843 * @id: IDENTIFY data to compute xfer mask from
844 *
845 * Compute the xfermask for this device. This is not as trivial
846 * as it seems if we must consider early devices correctly.
847 *
848 * FIXME: pre IDE drive timing (do we care ?).
849 *
850 * LOCKING:
851 * None.
852 *
853 * RETURNS:
854 * Computed xfermask
855 */
856static unsigned int ata_id_xfermask(const u16 *id)
857{
858 unsigned int pio_mask, mwdma_mask, udma_mask;
859
860 /* Usual case. Word 53 indicates word 64 is valid */
861 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
862 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
863 pio_mask <<= 3;
864 pio_mask |= 0x7;
865 } else {
866 /* If word 64 isn't valid then Word 51 high byte holds
867 * the PIO timing number for the maximum. Turn it into
868 * a mask.
869 */
870 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
871
872 /* But wait.. there's more. Design your standards by
873 * committee and you too can get a free iordy field to
874 * process. However its the speeds not the modes that
875 * are supported... Note drivers using the timing API
876 * will get this right anyway
877 */
878 }
879
880 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900881
882 udma_mask = 0;
883 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
884 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900885
886 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
887}
888
Tejun Heo86e45b62006-03-05 15:29:09 +0900889/**
890 * ata_port_queue_task - Queue port_task
891 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -0700892 * @fn: workqueue function to be scheduled
893 * @data: data value to pass to workqueue function
894 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +0900895 *
896 * Schedule @fn(@data) for execution after @delay jiffies using
897 * port_task. There is one port_task per port and it's the
898 * user(low level driver)'s responsibility to make sure that only
899 * one task is active at any given time.
900 *
901 * libata core layer takes care of synchronization between
902 * port_task and EH. ata_port_queue_task() may be ignored for EH
903 * synchronization.
904 *
905 * LOCKING:
906 * Inherited from caller.
907 */
908void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
909 unsigned long delay)
910{
911 int rc;
912
Tejun Heo2e755f62006-03-05 15:29:09 +0900913 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900914 return;
915
916 PREPARE_WORK(&ap->port_task, fn, data);
917
918 if (!delay)
919 rc = queue_work(ata_wq, &ap->port_task);
920 else
921 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
922
923 /* rc == 0 means that another user is using port task */
924 WARN_ON(rc == 0);
925}
926
927/**
928 * ata_port_flush_task - Flush port_task
929 * @ap: The ata_port to flush port_task for
930 *
931 * After this function completes, port_task is guranteed not to
932 * be running or scheduled.
933 *
934 * LOCKING:
935 * Kernel thread context (may sleep)
936 */
937void ata_port_flush_task(struct ata_port *ap)
938{
939 unsigned long flags;
940
941 DPRINTK("ENTER\n");
942
Jeff Garzikba6a1302006-06-22 23:46:10 -0400943 spin_lock_irqsave(ap->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900944 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -0400945 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +0900946
947 DPRINTK("flush #1\n");
948 flush_workqueue(ata_wq);
949
950 /*
951 * At this point, if a task is running, it's guaranteed to see
952 * the FLUSH flag; thus, it will never queue pio tasks again.
953 * Cancel and flush.
954 */
955 if (!cancel_delayed_work(&ap->port_task)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400956 if (ata_msg_ctl(ap))
957 ata_port_printk(ap, KERN_DEBUG, "%s: flush #2\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +0900958 flush_workqueue(ata_wq);
959 }
960
Jeff Garzikba6a1302006-06-22 23:46:10 -0400961 spin_lock_irqsave(ap->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900962 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -0400963 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +0900964
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400965 if (ata_msg_ctl(ap))
966 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +0900967}
968
Tejun Heo77853bf2006-01-23 13:09:36 +0900969void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900970{
Tejun Heo77853bf2006-01-23 13:09:36 +0900971 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900972
Tejun Heoa2a7a662005-12-13 14:48:31 +0900973 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900974}
975
976/**
977 * ata_exec_internal - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900978 * @dev: Device to which the command is sent
979 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900980 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900981 * @dma_dir: Data tranfer direction of the command
982 * @buf: Data buffer of the command
983 * @buflen: Length of data buffer
984 *
985 * Executes libata internal command with timeout. @tf contains
986 * command on entry and result on return. Timeout and error
987 * conditions are reported via return value. No recovery action
988 * is taken after a command times out. It's caller's duty to
989 * clean up after timeout.
990 *
991 * LOCKING:
992 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +0900993 *
994 * RETURNS:
995 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +0900996 */
Tejun Heo3373efd2006-05-15 20:57:53 +0900997unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900998 struct ata_taskfile *tf, const u8 *cdb,
999 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001000{
Tejun Heo3373efd2006-05-15 20:57:53 +09001001 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001002 u8 command = tf->command;
1003 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001004 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001005 u32 preempted_sactive, preempted_qc_active;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001006 DECLARE_COMPLETION(wait);
1007 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001008 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001009 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001010
Jeff Garzikba6a1302006-06-22 23:46:10 -04001011 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001012
Tejun Heoe3180492006-05-15 20:58:09 +09001013 /* no internal command while frozen */
1014 if (ap->flags & ATA_FLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001015 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001016 return AC_ERR_SYSTEM;
1017 }
1018
Tejun Heo2ab7db12006-05-15 20:58:02 +09001019 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001020
Tejun Heo2ab7db12006-05-15 20:58:02 +09001021 /* XXX: Tag 0 is used for drivers with legacy EH as some
1022 * drivers choke if any other tag is given. This breaks
1023 * ata_tag_internal() test for those drivers. Don't use new
1024 * EH stuff without converting to it.
1025 */
1026 if (ap->ops->error_handler)
1027 tag = ATA_TAG_INTERNAL;
1028 else
1029 tag = 0;
1030
Tejun Heo6cec4a32006-05-15 21:03:41 +09001031 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001032 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001033 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001034
1035 qc->tag = tag;
1036 qc->scsicmd = NULL;
1037 qc->ap = ap;
1038 qc->dev = dev;
1039 ata_qc_reinit(qc);
1040
1041 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001042 preempted_sactive = ap->sactive;
1043 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001044 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001045 ap->sactive = 0;
1046 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001047
1048 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001049 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001050 if (cdb)
1051 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001052 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001053 qc->dma_dir = dma_dir;
1054 if (dma_dir != DMA_NONE) {
1055 ata_sg_init_one(qc, buf, buflen);
1056 qc->nsect = buflen / ATA_SECT_SIZE;
1057 }
1058
Tejun Heo77853bf2006-01-23 13:09:36 +09001059 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001060 qc->complete_fn = ata_qc_complete_internal;
1061
Tejun Heo8e0e6942006-03-31 20:41:11 +09001062 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001063
Jeff Garzikba6a1302006-06-22 23:46:10 -04001064 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001065
Andrew Mortona8601e52006-06-25 01:36:52 -07001066 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001067
Tejun Heod95a7172006-05-15 20:58:14 +09001068 ata_port_flush_task(ap);
1069
1070 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001071 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001072
1073 /* We're racing with irq here. If we lose, the
1074 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001075 * twice. If we win, the port is frozen and will be
1076 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001077 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001078 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001079 qc->err_mask |= AC_ERR_TIMEOUT;
1080
1081 if (ap->ops->error_handler)
1082 ata_port_freeze(ap);
1083 else
1084 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001085
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001086 if (ata_msg_warn(ap))
1087 ata_dev_printk(dev, KERN_WARNING,
Tejun Heof15a1da2006-05-15 20:57:56 +09001088 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001089 }
1090
Jeff Garzikba6a1302006-06-22 23:46:10 -04001091 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001092 }
1093
Tejun Heod95a7172006-05-15 20:58:14 +09001094 /* do post_internal_cmd */
1095 if (ap->ops->post_internal_cmd)
1096 ap->ops->post_internal_cmd(qc);
1097
1098 if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001099 if (ata_msg_warn(ap))
1100 ata_dev_printk(dev, KERN_WARNING,
1101 "zero err_mask for failed "
Tejun Heod95a7172006-05-15 20:58:14 +09001102 "internal command, assuming AC_ERR_OTHER\n");
1103 qc->err_mask |= AC_ERR_OTHER;
1104 }
1105
Tejun Heo15869302006-05-15 20:57:33 +09001106 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001107 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001108
Tejun Heoe61e0672006-05-15 20:57:40 +09001109 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001110 err_mask = qc->err_mask;
1111
1112 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001113 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001114 ap->sactive = preempted_sactive;
1115 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001116
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001117 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1118 * Until those drivers are fixed, we detect the condition
1119 * here, fail the command with AC_ERR_SYSTEM and reenable the
1120 * port.
1121 *
1122 * Note that this doesn't change any behavior as internal
1123 * command failure results in disabling the device in the
1124 * higher layer for LLDDs without new reset/EH callbacks.
1125 *
1126 * Kill the following code as soon as those drivers are fixed.
1127 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001128 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001129 err_mask |= AC_ERR_SYSTEM;
1130 ata_port_probe(ap);
1131 }
1132
Jeff Garzikba6a1302006-06-22 23:46:10 -04001133 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001134
Tejun Heo77853bf2006-01-23 13:09:36 +09001135 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001136}
1137
Tejun Heo977e6b92006-06-24 20:30:19 +09001138/**
1139 * ata_do_simple_cmd - execute simple internal command
1140 * @dev: Device to which the command is sent
1141 * @cmd: Opcode to execute
1142 *
1143 * Execute a 'simple' command, that only consists of the opcode
1144 * 'cmd' itself, without filling any other registers
1145 *
1146 * LOCKING:
1147 * Kernel thread context (may sleep).
1148 *
1149 * RETURNS:
1150 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001151 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001152unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001153{
1154 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001155
1156 ata_tf_init(dev, &tf);
1157
1158 tf.command = cmd;
1159 tf.flags |= ATA_TFLAG_DEVICE;
1160 tf.protocol = ATA_PROT_NODATA;
1161
Tejun Heo977e6b92006-06-24 20:30:19 +09001162 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001163}
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001166 * ata_pio_need_iordy - check if iordy needed
1167 * @adev: ATA device
1168 *
1169 * Check if the current speed of the device requires IORDY. Used
1170 * by various controllers for chip configuration.
1171 */
1172
1173unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1174{
1175 int pio;
1176 int speed = adev->pio_mode - XFER_PIO_0;
1177
1178 if (speed < 2)
1179 return 0;
1180 if (speed > 2)
1181 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001182
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001183 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1184
1185 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1186 pio = adev->id[ATA_ID_EIDE_PIO];
1187 /* Is the speed faster than the drive allows non IORDY ? */
1188 if (pio) {
1189 /* This is cycle times not frequency - watch the logic! */
1190 if (pio > 240) /* PIO2 is 240nS per cycle */
1191 return 1;
1192 return 0;
1193 }
1194 }
1195 return 0;
1196}
1197
1198/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001199 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001200 * @dev: target device
1201 * @p_class: pointer to class of the target device (may be changed)
1202 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001203 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001204 *
1205 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1206 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001207 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1208 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001209 *
1210 * LOCKING:
1211 * Kernel thread context (may sleep)
1212 *
1213 * RETURNS:
1214 * 0 on success, -errno otherwise.
1215 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001216int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1217 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001218{
Tejun Heo3373efd2006-05-15 20:57:53 +09001219 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001220 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001221 struct ata_taskfile tf;
1222 unsigned int err_mask = 0;
1223 const char *reason;
1224 int rc;
1225
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001226 if (ata_msg_ctl(ap))
1227 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1228 __FUNCTION__, ap->id, dev->devno);
Tejun Heo49016ac2006-02-21 02:12:11 +09001229
Tejun Heo49016ac2006-02-21 02:12:11 +09001230 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1231
1232 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001233 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001234
1235 switch (class) {
1236 case ATA_DEV_ATA:
1237 tf.command = ATA_CMD_ID_ATA;
1238 break;
1239 case ATA_DEV_ATAPI:
1240 tf.command = ATA_CMD_ID_ATAPI;
1241 break;
1242 default:
1243 rc = -ENODEV;
1244 reason = "unsupported class";
1245 goto err_out;
1246 }
1247
1248 tf.protocol = ATA_PROT_PIO;
1249
Tejun Heo3373efd2006-05-15 20:57:53 +09001250 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001251 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001252 if (err_mask) {
1253 rc = -EIO;
1254 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001255 goto err_out;
1256 }
1257
1258 swap_buf_le16(id, ATA_ID_WORDS);
1259
Tejun Heo49016ac2006-02-21 02:12:11 +09001260 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001261 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001262 rc = -EINVAL;
1263 reason = "device reports illegal type";
1264 goto err_out;
1265 }
1266
1267 if (post_reset && class == ATA_DEV_ATA) {
1268 /*
1269 * The exact sequence expected by certain pre-ATA4 drives is:
1270 * SRST RESET
1271 * IDENTIFY
1272 * INITIALIZE DEVICE PARAMETERS
1273 * anything else..
1274 * Some drives were very specific about that exact sequence.
1275 */
1276 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001277 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001278 if (err_mask) {
1279 rc = -EIO;
1280 reason = "INIT_DEV_PARAMS failed";
1281 goto err_out;
1282 }
1283
1284 /* current CHS translation info (id[53-58]) might be
1285 * changed. reread the identify device info.
1286 */
1287 post_reset = 0;
1288 goto retry;
1289 }
1290 }
1291
1292 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001293
Tejun Heo49016ac2006-02-21 02:12:11 +09001294 return 0;
1295
1296 err_out:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001297 if (ata_msg_warn(ap))
1298 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heof15a1da2006-05-15 20:57:56 +09001299 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001300 return rc;
1301}
1302
Tejun Heo3373efd2006-05-15 20:57:53 +09001303static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001304{
Tejun Heo3373efd2006-05-15 20:57:53 +09001305 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001306}
1307
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001308static void ata_dev_config_ncq(struct ata_device *dev,
1309 char *desc, size_t desc_sz)
1310{
1311 struct ata_port *ap = dev->ap;
1312 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1313
1314 if (!ata_id_has_ncq(dev->id)) {
1315 desc[0] = '\0';
1316 return;
1317 }
1318
1319 if (ap->flags & ATA_FLAG_NCQ) {
1320 hdepth = min(ap->host->can_queue, ATA_MAX_QUEUE - 1);
1321 dev->flags |= ATA_DFLAG_NCQ;
1322 }
1323
1324 if (hdepth >= ddepth)
1325 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1326 else
1327 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1328}
1329
Tejun Heo49016ac2006-02-21 02:12:11 +09001330/**
Tejun Heoffeae412006-03-01 16:09:35 +09001331 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001332 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001333 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 *
Tejun Heoffeae412006-03-01 16:09:35 +09001335 * Configure @dev according to @dev->id. Generic and low-level
1336 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 *
1338 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001339 * Kernel thread context (may sleep)
1340 *
1341 * RETURNS:
1342 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001344int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
Tejun Heo3373efd2006-05-15 20:57:53 +09001346 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001347 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001348 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001349 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001351 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
1352 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT (host %u, dev %u) -- nodev\n",
1353 __FUNCTION__, ap->id, dev->devno);
Tejun Heoffeae412006-03-01 16:09:35 +09001354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001357 if (ata_msg_probe(ap))
1358 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1359 __FUNCTION__, ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001361 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001362 if (ata_msg_probe(ap))
1363 ata_dev_printk(dev, KERN_DEBUG, "%s: cfg 49:%04x 82:%04x 83:%04x "
Tejun Heof15a1da2006-05-15 20:57:56 +09001364 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001365 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001366 id[49], id[82], id[83], id[84],
1367 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001368
Tejun Heo208a9932006-03-05 17:55:58 +09001369 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001370 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001371 dev->max_sectors = 0;
1372 dev->cdb_len = 0;
1373 dev->n_sectors = 0;
1374 dev->cylinders = 0;
1375 dev->heads = 0;
1376 dev->sectors = 0;
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 /*
1379 * common ATA, ATAPI feature tests
1380 */
1381
Tejun Heoff8854b2006-03-06 04:31:56 +09001382 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001383 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001385 if (ata_msg_probe(ap))
1386 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 /* ATA-specific feature tests */
1389 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001390 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001391
Tejun Heo1148c3a2006-03-13 19:48:04 +09001392 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001393 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001394 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001395
Tejun Heo4c2d7212006-03-05 17:55:58 +09001396 lba_desc = "LBA";
1397 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001398 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001399 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001400 lba_desc = "LBA48";
1401 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001402
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001403 /* config NCQ */
1404 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1405
Albert Lee8bf62ece2005-05-12 15:29:42 -04001406 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001407 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001408 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001409 "max %s, %Lu sectors: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001410 ata_id_major_version(id),
1411 ata_mode_string(xfer_mask),
1412 (unsigned long long)dev->n_sectors,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001413 lba_desc, ncq_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001414 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001415 /* CHS */
1416
1417 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001418 dev->cylinders = id[1];
1419 dev->heads = id[3];
1420 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001421
Tejun Heo1148c3a2006-03-13 19:48:04 +09001422 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001423 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001424 dev->cylinders = id[54];
1425 dev->heads = id[55];
1426 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001427 }
1428
1429 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001430 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001431 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1432 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1433 ata_id_major_version(id),
1434 ata_mode_string(xfer_mask),
1435 (unsigned long long)dev->n_sectors,
1436 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438
Albert Lee07f6f7d2005-11-01 19:33:20 +08001439 if (dev->id[59] & 0x100) {
1440 dev->multi_count = dev->id[59] & 0xff;
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001441 if (ata_msg_info(ap))
1442 ata_dev_printk(dev, KERN_INFO, "ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001443 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001444 }
1445
Tejun Heo6e7846e2006-02-12 23:32:58 +09001446 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 }
1448
1449 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001450 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001451 char *cdb_intr_string = "";
1452
Tejun Heo1148c3a2006-03-13 19:48:04 +09001453 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001455 if (ata_msg_warn(ap))
1456 ata_dev_printk(dev, KERN_WARNING,
1457 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001458 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 goto err_out_nosup;
1460 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001461 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Albert Lee08a556d2006-03-31 13:29:04 +08001463 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001464 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001465 cdb_intr_string = ", CDB intr";
1466 }
Albert Lee312f7da2005-09-27 17:38:03 +08001467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001469 if (ata_msg_info(ap))
Tejun Heo12436c32006-05-15 20:59:15 +09001470 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1471 ata_mode_string(xfer_mask),
1472 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474
Tejun Heo6e7846e2006-02-12 23:32:58 +09001475 ap->host->max_cmd_len = 0;
1476 for (i = 0; i < ATA_MAX_DEVICES; i++)
1477 ap->host->max_cmd_len = max_t(unsigned int,
1478 ap->host->max_cmd_len,
1479 ap->device[i].cdb_len);
1480
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001481 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001482 if (ata_dev_knobble(dev)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001483 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001484 ata_dev_printk(dev, KERN_INFO,
1485 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001486 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001487 dev->max_sectors = ATA_MAX_SECTORS;
1488 }
1489
1490 if (ap->ops->dev_config)
1491 ap->ops->dev_config(ap, dev);
1492
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001493 if (ata_msg_probe(ap))
1494 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
1495 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001496 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001499 if (ata_msg_probe(ap))
1500 ata_dev_printk(dev, KERN_DEBUG,
1501 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001502 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
1505/**
1506 * ata_bus_probe - Reset and probe ATA bus
1507 * @ap: Bus to probe
1508 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001509 * Master ATA bus probing function. Initiates a hardware-dependent
1510 * bus reset, then attempts to identify any devices found on
1511 * the bus.
1512 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001514 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 *
1516 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001517 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 */
1519
1520static int ata_bus_probe(struct ata_port *ap)
1521{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001522 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001523 int tries[ATA_MAX_DEVICES];
1524 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001525 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Tejun Heo28ca5c52006-03-01 16:09:36 +09001527 ata_port_probe(ap);
1528
Tejun Heo14d2bac2006-04-02 17:54:46 +09001529 for (i = 0; i < ATA_MAX_DEVICES; i++)
1530 tries[i] = ATA_PROBE_MAX_TRIES;
1531
1532 retry:
1533 down_xfermask = 0;
1534
Tejun Heo20444702006-03-13 01:57:01 +09001535 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09001536 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09001537
Tejun Heo52783c52006-05-31 18:28:22 +09001538 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1539 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001540
Tejun Heo52783c52006-05-31 18:28:22 +09001541 if (!(ap->flags & ATA_FLAG_DISABLED) &&
1542 dev->class != ATA_DEV_UNKNOWN)
1543 classes[dev->devno] = dev->class;
1544 else
1545 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09001546
Tejun Heo52783c52006-05-31 18:28:22 +09001547 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09001548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Tejun Heo52783c52006-05-31 18:28:22 +09001550 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09001551
Alan Coxb6079ca2006-05-22 16:52:06 +01001552 /* after the reset the device state is PIO 0 and the controller
1553 state is undefined. Record the mode */
1554
1555 for (i = 0; i < ATA_MAX_DEVICES; i++)
1556 ap->device[i].pio_mode = XFER_PIO_0;
1557
Tejun Heo28ca5c52006-03-01 16:09:36 +09001558 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001560 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001561
Tejun Heoec573752006-04-11 22:26:29 +09001562 if (tries[i])
1563 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001564
Tejun Heoe1211e32006-04-01 01:38:18 +09001565 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001566 continue;
1567
Tejun Heo3373efd2006-05-15 20:57:53 +09001568 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001569 if (rc)
1570 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001571
Tejun Heo3373efd2006-05-15 20:57:53 +09001572 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001573 if (rc)
1574 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
1576
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001577 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001578 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001579 if (rc) {
1580 down_xfermask = 1;
1581 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001584 for (i = 0; i < ATA_MAX_DEVICES; i++)
1585 if (ata_dev_enabled(&ap->device[i]))
1586 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001587
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001588 /* no device present, disable port */
1589 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001591 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001592
1593 fail:
1594 switch (rc) {
1595 case -EINVAL:
1596 case -ENODEV:
1597 tries[dev->devno] = 0;
1598 break;
1599 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001600 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001601 /* fall through */
1602 default:
1603 tries[dev->devno]--;
1604 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001605 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001606 tries[dev->devno] = 0;
1607 }
1608
Tejun Heoec573752006-04-11 22:26:29 +09001609 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001610 ata_down_xfermask_limit(dev, 1);
1611 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001612 }
1613
Tejun Heo14d2bac2006-04-02 17:54:46 +09001614 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615}
1616
1617/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001618 * ata_port_probe - Mark port as enabled
1619 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001621 * Modify @ap data structure such that the system
1622 * thinks that the entire port is enabled.
1623 *
1624 * LOCKING: host_set lock, or some other form of
1625 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 */
1627
1628void ata_port_probe(struct ata_port *ap)
1629{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001630 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
1632
1633/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001634 * sata_print_link_status - Print SATA link status
1635 * @ap: SATA port to printk link status about
1636 *
1637 * This function prints link speed and status of a SATA link.
1638 *
1639 * LOCKING:
1640 * None.
1641 */
1642static void sata_print_link_status(struct ata_port *ap)
1643{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001644 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001645
Tejun Heo81952c52006-05-15 20:57:47 +09001646 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001647 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001648 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001649
Tejun Heo81952c52006-05-15 20:57:47 +09001650 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001651 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001652 ata_port_printk(ap, KERN_INFO,
1653 "SATA link up %s (SStatus %X SControl %X)\n",
1654 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001655 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001656 ata_port_printk(ap, KERN_INFO,
1657 "SATA link down (SStatus %X SControl %X)\n",
1658 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001659 }
1660}
1661
1662/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001663 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1664 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001666 * This function issues commands to standard SATA Sxxx
1667 * PHY registers, to wake up the phy (and device), and
1668 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 *
1670 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001671 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 *
1673 */
1674void __sata_phy_reset(struct ata_port *ap)
1675{
1676 u32 sstatus;
1677 unsigned long timeout = jiffies + (HZ * 5);
1678
1679 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05001680 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001681 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001682 /* Couldn't find anything in SATA I/II specs, but
1683 * AHCI-1.1 10.4.2 says at least 1 ms. */
1684 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
Tejun Heo81952c52006-05-15 20:57:47 +09001686 /* phy wake/clear reset */
1687 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 /* wait for phy to become ready, if necessary */
1690 do {
1691 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001692 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 if ((sstatus & 0xf) != 1)
1694 break;
1695 } while (time_before(jiffies, timeout));
1696
Tejun Heo3be680b2005-12-19 22:35:02 +09001697 /* print link status */
1698 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001699
Tejun Heo3be680b2005-12-19 22:35:02 +09001700 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001701 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001703 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Tejun Heo198e0fe2006-04-02 18:51:52 +09001706 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return;
1708
1709 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1710 ata_port_disable(ap);
1711 return;
1712 }
1713
1714 ap->cbl = ATA_CBL_SATA;
1715}
1716
1717/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001718 * sata_phy_reset - Reset SATA bus.
1719 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001721 * This function resets the SATA bus, and then probes
1722 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 *
1724 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001725 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 *
1727 */
1728void sata_phy_reset(struct ata_port *ap)
1729{
1730 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001731 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 return;
1733 ata_bus_reset(ap);
1734}
1735
1736/**
Alan Coxebdfca62006-03-23 15:38:34 +00001737 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001738 * @adev: device
1739 *
1740 * Obtain the other device on the same cable, or if none is
1741 * present NULL is returned
1742 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001743
Tejun Heo3373efd2006-05-15 20:57:53 +09001744struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001745{
Tejun Heo3373efd2006-05-15 20:57:53 +09001746 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001747 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001748 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001749 return NULL;
1750 return pair;
1751}
1752
1753/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001754 * ata_port_disable - Disable port.
1755 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001757 * Modify @ap data structure such that the system
1758 * thinks that the entire port is disabled, and should
1759 * never attempt to probe or communicate with devices
1760 * on this port.
1761 *
1762 * LOCKING: host_set lock, or some other form of
1763 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 */
1765
1766void ata_port_disable(struct ata_port *ap)
1767{
1768 ap->device[0].class = ATA_DEV_NONE;
1769 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001770 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771}
1772
Tejun Heo1c3fae42006-04-02 20:53:28 +09001773/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001774 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001775 * @ap: Port to adjust SATA spd limit for
1776 *
1777 * Adjust SATA spd limit of @ap downward. Note that this
1778 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001779 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001780 *
1781 * LOCKING:
1782 * Inherited from caller.
1783 *
1784 * RETURNS:
1785 * 0 on success, negative errno on failure
1786 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001787int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001788{
Tejun Heo81952c52006-05-15 20:57:47 +09001789 u32 sstatus, spd, mask;
1790 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001791
Tejun Heo81952c52006-05-15 20:57:47 +09001792 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1793 if (rc)
1794 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001795
1796 mask = ap->sata_spd_limit;
1797 if (mask <= 1)
1798 return -EINVAL;
1799 highbit = fls(mask) - 1;
1800 mask &= ~(1 << highbit);
1801
Tejun Heo81952c52006-05-15 20:57:47 +09001802 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001803 if (spd <= 1)
1804 return -EINVAL;
1805 spd--;
1806 mask &= (1 << spd) - 1;
1807 if (!mask)
1808 return -EINVAL;
1809
1810 ap->sata_spd_limit = mask;
1811
Tejun Heof15a1da2006-05-15 20:57:56 +09001812 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1813 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001814
1815 return 0;
1816}
1817
Tejun Heo3c567b72006-05-15 20:57:23 +09001818static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001819{
1820 u32 spd, limit;
1821
1822 if (ap->sata_spd_limit == UINT_MAX)
1823 limit = 0;
1824 else
1825 limit = fls(ap->sata_spd_limit);
1826
1827 spd = (*scontrol >> 4) & 0xf;
1828 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1829
1830 return spd != limit;
1831}
1832
1833/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001834 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001835 * @ap: Port in question
1836 *
1837 * Test whether the spd limit in SControl matches
1838 * @ap->sata_spd_limit. This function is used to determine
1839 * whether hardreset is necessary to apply SATA spd
1840 * configuration.
1841 *
1842 * LOCKING:
1843 * Inherited from caller.
1844 *
1845 * RETURNS:
1846 * 1 if SATA spd configuration is needed, 0 otherwise.
1847 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001848int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001849{
1850 u32 scontrol;
1851
Tejun Heo81952c52006-05-15 20:57:47 +09001852 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001853 return 0;
1854
Tejun Heo3c567b72006-05-15 20:57:23 +09001855 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001856}
1857
1858/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001859 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001860 * @ap: Port to set SATA spd for
1861 *
1862 * Set SATA spd of @ap according to sata_spd_limit.
1863 *
1864 * LOCKING:
1865 * Inherited from caller.
1866 *
1867 * RETURNS:
1868 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001869 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001870 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001871int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001872{
1873 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001874 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001875
Tejun Heo81952c52006-05-15 20:57:47 +09001876 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1877 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001878
Tejun Heo3c567b72006-05-15 20:57:23 +09001879 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001880 return 0;
1881
Tejun Heo81952c52006-05-15 20:57:47 +09001882 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1883 return rc;
1884
Tejun Heo1c3fae42006-04-02 20:53:28 +09001885 return 1;
1886}
1887
Alan Cox452503f2005-10-21 19:01:32 -04001888/*
1889 * This mode timing computation functionality is ported over from
1890 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1891 */
1892/*
1893 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1894 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1895 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001896 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001897 */
1898
1899static const struct ata_timing ata_timing[] = {
1900
1901 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1902 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1903 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1904 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1905
1906 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1907 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1908 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1909
1910/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001911
Alan Cox452503f2005-10-21 19:01:32 -04001912 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1913 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1914 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001915
Alan Cox452503f2005-10-21 19:01:32 -04001916 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1917 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1918 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1919
1920/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1921 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1922 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1923
1924 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1925 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1926 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1927
1928/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1929
1930 { 0xFF }
1931};
1932
1933#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1934#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1935
1936static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1937{
1938 q->setup = EZ(t->setup * 1000, T);
1939 q->act8b = EZ(t->act8b * 1000, T);
1940 q->rec8b = EZ(t->rec8b * 1000, T);
1941 q->cyc8b = EZ(t->cyc8b * 1000, T);
1942 q->active = EZ(t->active * 1000, T);
1943 q->recover = EZ(t->recover * 1000, T);
1944 q->cycle = EZ(t->cycle * 1000, T);
1945 q->udma = EZ(t->udma * 1000, UT);
1946}
1947
1948void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1949 struct ata_timing *m, unsigned int what)
1950{
1951 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1952 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1953 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1954 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1955 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1956 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1957 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1958 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1959}
1960
1961static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1962{
1963 const struct ata_timing *t;
1964
1965 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001966 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001967 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001968 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001969}
1970
1971int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1972 struct ata_timing *t, int T, int UT)
1973{
1974 const struct ata_timing *s;
1975 struct ata_timing p;
1976
1977 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001978 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001979 */
Alan Cox452503f2005-10-21 19:01:32 -04001980
1981 if (!(s = ata_timing_find_mode(speed)))
1982 return -EINVAL;
1983
Albert Lee75b1f2f2005-11-16 17:06:18 +08001984 memcpy(t, s, sizeof(*s));
1985
Alan Cox452503f2005-10-21 19:01:32 -04001986 /*
1987 * If the drive is an EIDE drive, it can tell us it needs extended
1988 * PIO/MW_DMA cycle timing.
1989 */
1990
1991 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1992 memset(&p, 0, sizeof(p));
1993 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1994 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1995 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1996 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1997 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1998 }
1999 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2000 }
2001
2002 /*
2003 * Convert the timing to bus clock counts.
2004 */
2005
Albert Lee75b1f2f2005-11-16 17:06:18 +08002006 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002007
2008 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002009 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2010 * S.M.A.R.T * and some other commands. We have to ensure that the
2011 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002012 */
2013
2014 if (speed > XFER_PIO_4) {
2015 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2016 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2017 }
2018
2019 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002020 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002021 */
2022
2023 if (t->act8b + t->rec8b < t->cyc8b) {
2024 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2025 t->rec8b = t->cyc8b - t->act8b;
2026 }
2027
2028 if (t->active + t->recover < t->cycle) {
2029 t->active += (t->cycle - (t->active + t->recover)) / 2;
2030 t->recover = t->cycle - t->active;
2031 }
2032
2033 return 0;
2034}
2035
Tejun Heocf176e12006-04-02 17:54:46 +09002036/**
2037 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002038 * @dev: Device to adjust xfer masks
2039 * @force_pio0: Force PIO0
2040 *
2041 * Adjust xfer masks of @dev downward. Note that this function
2042 * does not apply the change. Invoking ata_set_mode() afterwards
2043 * will apply the limit.
2044 *
2045 * LOCKING:
2046 * Inherited from caller.
2047 *
2048 * RETURNS:
2049 * 0 on success, negative errno on failure
2050 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002051int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09002052{
2053 unsigned long xfer_mask;
2054 int highbit;
2055
2056 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2057 dev->udma_mask);
2058
2059 if (!xfer_mask)
2060 goto fail;
2061 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2062 if (xfer_mask & ATA_MASK_UDMA)
2063 xfer_mask &= ~ATA_MASK_MWDMA;
2064
2065 highbit = fls(xfer_mask) - 1;
2066 xfer_mask &= ~(1 << highbit);
2067 if (force_pio0)
2068 xfer_mask &= 1 << ATA_SHIFT_PIO;
2069 if (!xfer_mask)
2070 goto fail;
2071
2072 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2073 &dev->udma_mask);
2074
Tejun Heof15a1da2006-05-15 20:57:56 +09002075 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2076 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002077
2078 return 0;
2079
2080 fail:
2081 return -EINVAL;
2082}
2083
Tejun Heo3373efd2006-05-15 20:57:53 +09002084static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
Tejun Heo83206a22006-03-24 15:25:31 +09002086 unsigned int err_mask;
2087 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Tejun Heoe8384602006-04-02 18:51:53 +09002089 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 if (dev->xfer_shift == ATA_SHIFT_PIO)
2091 dev->flags |= ATA_DFLAG_PIO;
2092
Tejun Heo3373efd2006-05-15 20:57:53 +09002093 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002094 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002095 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2096 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002097 return -EIO;
2098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Tejun Heo3373efd2006-05-15 20:57:53 +09002100 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002101 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002102 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002103
Tejun Heo23e71c32006-03-06 04:31:57 +09002104 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2105 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Tejun Heof15a1da2006-05-15 20:57:56 +09002107 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2108 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002109 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110}
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112/**
2113 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2114 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002115 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002117 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2118 * ata_set_mode() fails, pointer to the failing device is
2119 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002120 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002122 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002123 *
2124 * RETURNS:
2125 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002127int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Tejun Heoe8e06192006-04-01 01:38:18 +09002129 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002130 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Tejun Heo3adcebb2006-05-15 20:57:37 +09002132 /* has private set_mode? */
2133 if (ap->ops->set_mode) {
2134 /* FIXME: make ->set_mode handle no device case and
2135 * return error code and failing device on failure.
2136 */
2137 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2138 if (ata_dev_enabled(&ap->device[i])) {
2139 ap->ops->set_mode(ap);
2140 break;
2141 }
2142 }
2143 return 0;
2144 }
2145
Tejun Heoa6d5a512006-03-06 04:31:57 +09002146 /* step 1: calculate xfer_mask */
2147 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002148 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002149
Tejun Heoe8e06192006-04-01 01:38:18 +09002150 dev = &ap->device[i];
2151
Tejun Heoe1211e32006-04-01 01:38:18 +09002152 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002153 continue;
2154
Tejun Heo3373efd2006-05-15 20:57:53 +09002155 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002156
Tejun Heoacf356b2006-03-24 14:07:50 +09002157 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2158 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2159 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2160 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002161
Tejun Heo4f659772006-04-01 01:38:18 +09002162 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002163 if (dev->dma_mode)
2164 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002165 }
Tejun Heo4f659772006-04-01 01:38:18 +09002166 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002167 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002168
2169 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002170 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2171 dev = &ap->device[i];
2172 if (!ata_dev_enabled(dev))
2173 continue;
2174
2175 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002176 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002177 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002178 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002179 }
2180
2181 dev->xfer_mode = dev->pio_mode;
2182 dev->xfer_shift = ATA_SHIFT_PIO;
2183 if (ap->ops->set_piomode)
2184 ap->ops->set_piomode(ap, dev);
2185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Tejun Heoa6d5a512006-03-06 04:31:57 +09002187 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002188 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2189 dev = &ap->device[i];
2190
2191 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2192 continue;
2193
2194 dev->xfer_mode = dev->dma_mode;
2195 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2196 if (ap->ops->set_dmamode)
2197 ap->ops->set_dmamode(ap, dev);
2198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002201 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002202 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Tejun Heoe1211e32006-04-01 01:38:18 +09002204 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002205 continue;
2206
Tejun Heo3373efd2006-05-15 20:57:53 +09002207 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002208 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002209 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Tejun Heoe8e06192006-04-01 01:38:18 +09002212 /* Record simplex status. If we selected DMA then the other
2213 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002214 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002215 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2216 ap->host_set->simplex_claimed = 1;
2217
Tejun Heoe8e06192006-04-01 01:38:18 +09002218 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 if (ap->ops->post_set_mode)
2220 ap->ops->post_set_mode(ap);
2221
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002222 out:
2223 if (rc)
2224 *r_failed_dev = dev;
2225 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226}
2227
2228/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002229 * ata_tf_to_host - issue ATA taskfile to host controller
2230 * @ap: port to which command is being issued
2231 * @tf: ATA taskfile register set
2232 *
2233 * Issues ATA taskfile register set to ATA host controller,
2234 * with proper synchronization with interrupt handler and
2235 * other threads.
2236 *
2237 * LOCKING:
2238 * spin_lock_irqsave(host_set lock)
2239 */
2240
2241static inline void ata_tf_to_host(struct ata_port *ap,
2242 const struct ata_taskfile *tf)
2243{
2244 ap->ops->tf_load(ap, tf);
2245 ap->ops->exec_command(ap, tf);
2246}
2247
2248/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 * ata_busy_sleep - sleep until BSY clears, or timeout
2250 * @ap: port containing status register to be polled
2251 * @tmout_pat: impatience timeout
2252 * @tmout: overall timeout
2253 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002254 * Sleep until ATA Status register bit BSY clears,
2255 * or a timeout occurs.
2256 *
2257 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 */
2259
Tejun Heo6f8b9952006-01-24 17:05:21 +09002260unsigned int ata_busy_sleep (struct ata_port *ap,
2261 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
2263 unsigned long timer_start, timeout;
2264 u8 status;
2265
2266 status = ata_busy_wait(ap, ATA_BUSY, 300);
2267 timer_start = jiffies;
2268 timeout = timer_start + tmout_pat;
2269 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2270 msleep(50);
2271 status = ata_busy_wait(ap, ATA_BUSY, 3);
2272 }
2273
2274 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002275 ata_port_printk(ap, KERN_WARNING,
2276 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 timeout = timer_start + tmout;
2279 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2280 msleep(50);
2281 status = ata_chk_status(ap);
2282 }
2283
2284 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002285 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2286 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 return 1;
2288 }
2289
2290 return 0;
2291}
2292
2293static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2294{
2295 struct ata_ioports *ioaddr = &ap->ioaddr;
2296 unsigned int dev0 = devmask & (1 << 0);
2297 unsigned int dev1 = devmask & (1 << 1);
2298 unsigned long timeout;
2299
2300 /* if device 0 was found in ata_devchk, wait for its
2301 * BSY bit to clear
2302 */
2303 if (dev0)
2304 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2305
2306 /* if device 1 was found in ata_devchk, wait for
2307 * register access, then wait for BSY to clear
2308 */
2309 timeout = jiffies + ATA_TMOUT_BOOT;
2310 while (dev1) {
2311 u8 nsect, lbal;
2312
2313 ap->ops->dev_select(ap, 1);
2314 if (ap->flags & ATA_FLAG_MMIO) {
2315 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2316 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2317 } else {
2318 nsect = inb(ioaddr->nsect_addr);
2319 lbal = inb(ioaddr->lbal_addr);
2320 }
2321 if ((nsect == 1) && (lbal == 1))
2322 break;
2323 if (time_after(jiffies, timeout)) {
2324 dev1 = 0;
2325 break;
2326 }
2327 msleep(50); /* give drive a breather */
2328 }
2329 if (dev1)
2330 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2331
2332 /* is all this really necessary? */
2333 ap->ops->dev_select(ap, 0);
2334 if (dev1)
2335 ap->ops->dev_select(ap, 1);
2336 if (dev0)
2337 ap->ops->dev_select(ap, 0);
2338}
2339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340static unsigned int ata_bus_softreset(struct ata_port *ap,
2341 unsigned int devmask)
2342{
2343 struct ata_ioports *ioaddr = &ap->ioaddr;
2344
2345 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2346
2347 /* software reset. causes dev0 to be selected */
2348 if (ap->flags & ATA_FLAG_MMIO) {
2349 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2350 udelay(20); /* FIXME: flush */
2351 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2352 udelay(20); /* FIXME: flush */
2353 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2354 } else {
2355 outb(ap->ctl, ioaddr->ctl_addr);
2356 udelay(10);
2357 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2358 udelay(10);
2359 outb(ap->ctl, ioaddr->ctl_addr);
2360 }
2361
2362 /* spec mandates ">= 2ms" before checking status.
2363 * We wait 150ms, because that was the magic delay used for
2364 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2365 * between when the ATA command register is written, and then
2366 * status is checked. Because waiting for "a while" before
2367 * checking status is fine, post SRST, we perform this magic
2368 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002369 *
2370 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 */
2372 msleep(150);
2373
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002374 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002375 * the bus shows 0xFF because the odd clown forgets the D7
2376 * pulldown resistor.
2377 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002378 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002379 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002380 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002381 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 ata_bus_post_reset(ap, devmask);
2384
2385 return 0;
2386}
2387
2388/**
2389 * ata_bus_reset - reset host port and associated ATA channel
2390 * @ap: port to reset
2391 *
2392 * This is typically the first time we actually start issuing
2393 * commands to the ATA channel. We wait for BSY to clear, then
2394 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2395 * result. Determine what devices, if any, are on the channel
2396 * by looking at the device 0/1 error register. Look at the signature
2397 * stored in each device's taskfile registers, to determine if
2398 * the device is ATA or ATAPI.
2399 *
2400 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002401 * PCI/etc. bus probe sem.
2402 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 *
2404 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002405 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 */
2407
2408void ata_bus_reset(struct ata_port *ap)
2409{
2410 struct ata_ioports *ioaddr = &ap->ioaddr;
2411 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2412 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002413 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2416
2417 /* determine if device 0/1 are present */
2418 if (ap->flags & ATA_FLAG_SATA_RESET)
2419 dev0 = 1;
2420 else {
2421 dev0 = ata_devchk(ap, 0);
2422 if (slave_possible)
2423 dev1 = ata_devchk(ap, 1);
2424 }
2425
2426 if (dev0)
2427 devmask |= (1 << 0);
2428 if (dev1)
2429 devmask |= (1 << 1);
2430
2431 /* select device 0 again */
2432 ap->ops->dev_select(ap, 0);
2433
2434 /* issue bus reset */
2435 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002436 if (ata_bus_softreset(ap, devmask))
2437 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
2439 /*
2440 * determine by signature whether we have ATA or ATAPI devices
2441 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002442 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002444 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 /* re-enable interrupts */
2447 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2448 ata_irq_on(ap);
2449
2450 /* is double-select really necessary? */
2451 if (ap->device[1].class != ATA_DEV_NONE)
2452 ap->ops->dev_select(ap, 1);
2453 if (ap->device[0].class != ATA_DEV_NONE)
2454 ap->ops->dev_select(ap, 0);
2455
2456 /* if no devices were detected, disable this port */
2457 if ((ap->device[0].class == ATA_DEV_NONE) &&
2458 (ap->device[1].class == ATA_DEV_NONE))
2459 goto err_out;
2460
2461 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2462 /* set up device control for ATA_FLAG_SATA_RESET */
2463 if (ap->flags & ATA_FLAG_MMIO)
2464 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2465 else
2466 outb(ap->ctl, ioaddr->ctl_addr);
2467 }
2468
2469 DPRINTK("EXIT\n");
2470 return;
2471
2472err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002473 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 ap->ops->port_disable(ap);
2475
2476 DPRINTK("EXIT\n");
2477}
2478
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002479/**
2480 * sata_phy_debounce - debounce SATA phy status
2481 * @ap: ATA port to debounce SATA phy status for
2482 * @params: timing parameters { interval, duratinon, timeout } in msec
2483 *
2484 * Make sure SStatus of @ap reaches stable state, determined by
2485 * holding the same value where DET is not 1 for @duration polled
2486 * every @interval, before @timeout. Timeout constraints the
2487 * beginning of the stable state. Because, after hot unplugging,
2488 * DET gets stuck at 1 on some controllers, this functions waits
2489 * until timeout then returns 0 if DET is stable at 1.
2490 *
2491 * LOCKING:
2492 * Kernel thread context (may sleep)
2493 *
2494 * RETURNS:
2495 * 0 on success, -errno on failure.
2496 */
2497int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09002498{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002499 unsigned long interval_msec = params[0];
2500 unsigned long duration = params[1] * HZ / 1000;
2501 unsigned long timeout = jiffies + params[2] * HZ / 1000;
2502 unsigned long last_jiffies;
2503 u32 last, cur;
2504 int rc;
2505
2506 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2507 return rc;
2508 cur &= 0xf;
2509
2510 last = cur;
2511 last_jiffies = jiffies;
2512
2513 while (1) {
2514 msleep(interval_msec);
2515 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2516 return rc;
2517 cur &= 0xf;
2518
2519 /* DET stable? */
2520 if (cur == last) {
2521 if (cur == 1 && time_before(jiffies, timeout))
2522 continue;
2523 if (time_after(jiffies, last_jiffies + duration))
2524 return 0;
2525 continue;
2526 }
2527
2528 /* unstable, start over */
2529 last = cur;
2530 last_jiffies = jiffies;
2531
2532 /* check timeout */
2533 if (time_after(jiffies, timeout))
2534 return -EBUSY;
2535 }
2536}
2537
2538/**
2539 * sata_phy_resume - resume SATA phy
2540 * @ap: ATA port to resume SATA phy for
2541 * @params: timing parameters { interval, duratinon, timeout } in msec
2542 *
2543 * Resume SATA phy of @ap and debounce it.
2544 *
2545 * LOCKING:
2546 * Kernel thread context (may sleep)
2547 *
2548 * RETURNS:
2549 * 0 on success, -errno on failure.
2550 */
2551int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
2552{
2553 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002554 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002555
Tejun Heo81952c52006-05-15 20:57:47 +09002556 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2557 return rc;
2558
Tejun Heo852ee162006-04-01 01:38:18 +09002559 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002560
2561 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2562 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002563
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002564 /* Some PHYs react badly if SStatus is pounded immediately
2565 * after resuming. Delay 200ms before debouncing.
2566 */
2567 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002568
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002569 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002570}
2571
Tejun Heof5914a42006-05-31 18:27:48 +09002572static void ata_wait_spinup(struct ata_port *ap)
2573{
2574 struct ata_eh_context *ehc = &ap->eh_context;
2575 unsigned long end, secs;
2576 int rc;
2577
2578 /* first, debounce phy if SATA */
2579 if (ap->cbl == ATA_CBL_SATA) {
2580 rc = sata_phy_debounce(ap, sata_deb_timing_eh);
2581
2582 /* if debounced successfully and offline, no need to wait */
2583 if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap))
2584 return;
2585 }
2586
2587 /* okay, let's give the drive time to spin up */
2588 end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000;
2589 secs = ((end - jiffies) + HZ - 1) / HZ;
2590
2591 if (time_after(jiffies, end))
2592 return;
2593
2594 if (secs > 5)
2595 ata_port_printk(ap, KERN_INFO, "waiting for device to spin up "
2596 "(%lu secs)\n", secs);
2597
2598 schedule_timeout_uninterruptible(end - jiffies);
2599}
2600
2601/**
2602 * ata_std_prereset - prepare for reset
2603 * @ap: ATA port to be reset
2604 *
2605 * @ap is about to be reset. Initialize it.
2606 *
2607 * LOCKING:
2608 * Kernel thread context (may sleep)
2609 *
2610 * RETURNS:
2611 * 0 on success, -errno otherwise.
2612 */
2613int ata_std_prereset(struct ata_port *ap)
2614{
2615 struct ata_eh_context *ehc = &ap->eh_context;
2616 const unsigned long *timing;
2617 int rc;
2618
2619 /* hotplug? */
2620 if (ehc->i.flags & ATA_EHI_HOTPLUGGED) {
2621 if (ap->flags & ATA_FLAG_HRST_TO_RESUME)
2622 ehc->i.action |= ATA_EH_HARDRESET;
2623 if (ap->flags & ATA_FLAG_SKIP_D2H_BSY)
2624 ata_wait_spinup(ap);
2625 }
2626
2627 /* if we're about to do hardreset, nothing more to do */
2628 if (ehc->i.action & ATA_EH_HARDRESET)
2629 return 0;
2630
2631 /* if SATA, resume phy */
2632 if (ap->cbl == ATA_CBL_SATA) {
2633 if (ap->flags & ATA_FLAG_LOADING)
2634 timing = sata_deb_timing_boot;
2635 else
2636 timing = sata_deb_timing_eh;
2637
2638 rc = sata_phy_resume(ap, timing);
2639 if (rc && rc != -EOPNOTSUPP) {
2640 /* phy resume failed */
2641 ata_port_printk(ap, KERN_WARNING, "failed to resume "
2642 "link for reset (errno=%d)\n", rc);
2643 return rc;
2644 }
2645 }
2646
2647 /* Wait for !BSY if the controller can wait for the first D2H
2648 * Reg FIS and we don't know that no device is attached.
2649 */
2650 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap))
2651 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2652
2653 return 0;
2654}
2655
Tejun Heoc2bd5802006-01-24 17:05:22 +09002656/**
2657 * ata_std_softreset - reset host port via ATA SRST
2658 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002659 * @classes: resulting classes of attached devices
2660 *
Tejun Heo52783c52006-05-31 18:28:22 +09002661 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002662 *
2663 * LOCKING:
2664 * Kernel thread context (may sleep)
2665 *
2666 * RETURNS:
2667 * 0 on success, -errno otherwise.
2668 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002669int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002670{
2671 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2672 unsigned int devmask = 0, err_mask;
2673 u8 err;
2674
2675 DPRINTK("ENTER\n");
2676
Tejun Heo81952c52006-05-15 20:57:47 +09002677 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002678 classes[0] = ATA_DEV_NONE;
2679 goto out;
2680 }
2681
Tejun Heoc2bd5802006-01-24 17:05:22 +09002682 /* determine if device 0/1 are present */
2683 if (ata_devchk(ap, 0))
2684 devmask |= (1 << 0);
2685 if (slave_possible && ata_devchk(ap, 1))
2686 devmask |= (1 << 1);
2687
Tejun Heoc2bd5802006-01-24 17:05:22 +09002688 /* select device 0 again */
2689 ap->ops->dev_select(ap, 0);
2690
2691 /* issue bus reset */
2692 DPRINTK("about to softreset, devmask=%x\n", devmask);
2693 err_mask = ata_bus_softreset(ap, devmask);
2694 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002695 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2696 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002697 return -EIO;
2698 }
2699
2700 /* determine by signature whether we have ATA or ATAPI devices */
2701 classes[0] = ata_dev_try_classify(ap, 0, &err);
2702 if (slave_possible && err != 0x81)
2703 classes[1] = ata_dev_try_classify(ap, 1, &err);
2704
Tejun Heo3a397462006-02-10 23:58:48 +09002705 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002706 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2707 return 0;
2708}
2709
2710/**
2711 * sata_std_hardreset - reset host port via SATA phy reset
2712 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002713 * @class: resulting class of attached device
2714 *
2715 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002716 *
2717 * LOCKING:
2718 * Kernel thread context (may sleep)
2719 *
2720 * RETURNS:
2721 * 0 on success, -errno otherwise.
2722 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002723int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002724{
Tejun Heo852ee162006-04-01 01:38:18 +09002725 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002726 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002727
Tejun Heoc2bd5802006-01-24 17:05:22 +09002728 DPRINTK("ENTER\n");
2729
Tejun Heo3c567b72006-05-15 20:57:23 +09002730 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002731 /* SATA spec says nothing about how to reconfigure
2732 * spd. To be on the safe side, turn off phy during
2733 * reconfiguration. This works for at least ICH7 AHCI
2734 * and Sil3124.
2735 */
Tejun Heo81952c52006-05-15 20:57:47 +09002736 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2737 return rc;
2738
Tejun Heo1c3fae42006-04-02 20:53:28 +09002739 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002740
2741 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2742 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002743
Tejun Heo3c567b72006-05-15 20:57:23 +09002744 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002745 }
2746
2747 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002748 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2749 return rc;
2750
Tejun Heo852ee162006-04-01 01:38:18 +09002751 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002752
2753 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2754 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002755
Tejun Heo1c3fae42006-04-02 20:53:28 +09002756 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002757 * 10.4.2 says at least 1 ms.
2758 */
2759 msleep(1);
2760
Tejun Heo1c3fae42006-04-02 20:53:28 +09002761 /* bring phy back */
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002762 sata_phy_resume(ap, sata_deb_timing_eh);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002763
Tejun Heoc2bd5802006-01-24 17:05:22 +09002764 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002765 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002766 *class = ATA_DEV_NONE;
2767 DPRINTK("EXIT, link offline\n");
2768 return 0;
2769 }
2770
2771 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002772 ata_port_printk(ap, KERN_ERR,
2773 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002774 return -EIO;
2775 }
2776
Tejun Heo3a397462006-02-10 23:58:48 +09002777 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2778
Tejun Heoc2bd5802006-01-24 17:05:22 +09002779 *class = ata_dev_try_classify(ap, 0, NULL);
2780
2781 DPRINTK("EXIT, class=%u\n", *class);
2782 return 0;
2783}
2784
2785/**
2786 * ata_std_postreset - standard postreset callback
2787 * @ap: the target ata_port
2788 * @classes: classes of attached devices
2789 *
2790 * This function is invoked after a successful reset. Note that
2791 * the device might have been reset more than once using
2792 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002793 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09002794 * LOCKING:
2795 * Kernel thread context (may sleep)
2796 */
2797void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2798{
Tejun Heodc2b3512006-05-15 20:58:00 +09002799 u32 serror;
2800
Tejun Heoc2bd5802006-01-24 17:05:22 +09002801 DPRINTK("ENTER\n");
2802
Tejun Heoc2bd5802006-01-24 17:05:22 +09002803 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002804 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002805
Tejun Heodc2b3512006-05-15 20:58:00 +09002806 /* clear SError */
2807 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2808 sata_scr_write(ap, SCR_ERROR, serror);
2809
Tejun Heo3a397462006-02-10 23:58:48 +09002810 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09002811 if (!ap->ops->error_handler) {
2812 /* FIXME: hack. create a hook instead */
2813 if (ap->ioaddr.ctl_addr)
2814 ata_irq_on(ap);
2815 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002816
2817 /* is double-select really necessary? */
2818 if (classes[0] != ATA_DEV_NONE)
2819 ap->ops->dev_select(ap, 1);
2820 if (classes[1] != ATA_DEV_NONE)
2821 ap->ops->dev_select(ap, 0);
2822
Tejun Heo3a397462006-02-10 23:58:48 +09002823 /* bail out if no device is present */
2824 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2825 DPRINTK("EXIT, no device\n");
2826 return;
2827 }
2828
2829 /* set up device control */
2830 if (ap->ioaddr.ctl_addr) {
2831 if (ap->flags & ATA_FLAG_MMIO)
2832 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2833 else
2834 outb(ap->ctl, ap->ioaddr.ctl_addr);
2835 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002836
2837 DPRINTK("EXIT\n");
2838}
2839
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002840/**
Tejun Heo623a3122006-03-05 17:55:58 +09002841 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002842 * @dev: device to compare against
2843 * @new_class: class of the new device
2844 * @new_id: IDENTIFY page of the new device
2845 *
2846 * Compare @new_class and @new_id against @dev and determine
2847 * whether @dev is the device indicated by @new_class and
2848 * @new_id.
2849 *
2850 * LOCKING:
2851 * None.
2852 *
2853 * RETURNS:
2854 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2855 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002856static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2857 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002858{
2859 const u16 *old_id = dev->id;
2860 unsigned char model[2][41], serial[2][21];
2861 u64 new_n_sectors;
2862
2863 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002864 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2865 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002866 return 0;
2867 }
2868
2869 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2870 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2871 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2872 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2873 new_n_sectors = ata_id_n_sectors(new_id);
2874
2875 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002876 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2877 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002878 return 0;
2879 }
2880
2881 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002882 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2883 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002884 return 0;
2885 }
2886
2887 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002888 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2889 "%llu != %llu\n",
2890 (unsigned long long)dev->n_sectors,
2891 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002892 return 0;
2893 }
2894
2895 return 1;
2896}
2897
2898/**
2899 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002900 * @dev: device to revalidate
2901 * @post_reset: is this revalidation after reset?
2902 *
2903 * Re-read IDENTIFY page and make sure @dev is still attached to
2904 * the port.
2905 *
2906 * LOCKING:
2907 * Kernel thread context (may sleep)
2908 *
2909 * RETURNS:
2910 * 0 on success, negative errno otherwise
2911 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002912int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002913{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002914 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002915 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002916 int rc;
2917
Tejun Heo5eb45c02006-04-02 18:51:52 +09002918 if (!ata_dev_enabled(dev)) {
2919 rc = -ENODEV;
2920 goto fail;
2921 }
Tejun Heo623a3122006-03-05 17:55:58 +09002922
Tejun Heofe635c72006-05-15 20:57:35 +09002923 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002924 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002925 if (rc)
2926 goto fail;
2927
2928 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002929 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002930 rc = -ENODEV;
2931 goto fail;
2932 }
2933
Tejun Heofe635c72006-05-15 20:57:35 +09002934 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002935
2936 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002937 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002938 if (rc == 0)
2939 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002940
2941 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002942 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002943 return rc;
2944}
2945
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002946static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002947 "WDC AC11000H", NULL,
2948 "WDC AC22100H", NULL,
2949 "WDC AC32500H", NULL,
2950 "WDC AC33100H", NULL,
2951 "WDC AC31600H", NULL,
2952 "WDC AC32100H", "24.09P07",
2953 "WDC AC23200L", "21.10N21",
2954 "Compaq CRD-8241B", NULL,
2955 "CRD-8400B", NULL,
2956 "CRD-8480B", NULL,
2957 "CRD-8482B", NULL,
2958 "CRD-84", NULL,
2959 "SanDisk SDP3B", NULL,
2960 "SanDisk SDP3B-64", NULL,
2961 "SANYO CD-ROM CRD", NULL,
2962 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002963 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002964 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002965 "Toshiba CD-ROM XM-6202B", NULL,
2966 "TOSHIBA CD-ROM XM-1702BC", NULL,
2967 "CD-532E-A", NULL,
2968 "E-IDE CD-ROM CR-840", NULL,
2969 "CD-ROM Drive/F5A", NULL,
2970 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002971 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002972 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002973 "SanDisk SDP3B-64", NULL,
2974 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2975 "_NEC DV5800A", NULL,
2976 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002978
Alan Coxf4b15fe2006-03-22 15:54:04 +00002979static int ata_strim(char *s, size_t len)
2980{
2981 len = strnlen(s, len);
2982
2983 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2984 while ((len > 0) && (s[len - 1] == ' ')) {
2985 len--;
2986 s[len] = 0;
2987 }
2988 return len;
2989}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Jeff Garzik057ace52005-10-22 14:27:05 -04002991static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002993 unsigned char model_num[40];
2994 unsigned char model_rev[16];
2995 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 int i;
2997
Albert Lee3a778272006-06-22 13:00:25 +08002998 /* We don't support polling DMA.
2999 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3000 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3001 */
3002 if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) &&
3003 (dev->flags & ATA_DFLAG_CDB_INTR))
3004 return 1;
3005
Alan Coxf4b15fe2006-03-22 15:54:04 +00003006 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
3007 sizeof(model_num));
3008 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
3009 sizeof(model_rev));
3010 nlen = ata_strim(model_num, sizeof(model_num));
3011 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Alan Coxf4b15fe2006-03-22 15:54:04 +00003013 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
3014 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
3015 if (ata_dma_blacklist[i+1] == NULL)
3016 return 1;
3017 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
3018 return 1;
3019 }
3020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 return 0;
3022}
3023
Tejun Heoa6d5a512006-03-06 04:31:57 +09003024/**
3025 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003026 * @dev: Device to compute xfermask for
3027 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003028 * Compute supported xfermask of @dev and store it in
3029 * dev->*_mask. This function is responsible for applying all
3030 * known limits including host controller limits, device
3031 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003032 *
Tejun Heo600511e2006-03-25 11:14:07 +09003033 * FIXME: The current implementation limits all transfer modes to
3034 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09003035 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09003036 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09003037 * LOCKING:
3038 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003039 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003040static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041{
Tejun Heo3373efd2006-05-15 20:57:53 +09003042 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003043 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003044 unsigned long xfer_mask;
3045 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046
Tejun Heo565083e2006-04-02 17:54:47 +09003047 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3048 ap->mwdma_mask, ap->udma_mask);
3049
3050 /* Apply cable rule here. Don't apply it early because when
3051 * we handle hot plug the cable type can itself change.
3052 */
3053 if (ap->cbl == ATA_CBL_PATA40)
3054 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Alan Cox5444a6f2006-03-27 18:58:20 +01003056 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09003057 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3058 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09003059
3060 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003061 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09003062
3063 if (ata_dev_disabled(d)) {
3064 /* to avoid violating device selection timing */
3065 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3066 UINT_MAX, UINT_MAX);
3067 continue;
3068 }
3069
3070 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3071 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003072 xfer_mask &= ata_id_xfermask(d->id);
3073 if (ata_dma_blacklisted(d))
3074 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 }
3076
Tejun Heoa6d5a512006-03-06 04:31:57 +09003077 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09003078 ata_dev_printk(dev, KERN_WARNING,
3079 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09003080
Alan Cox5444a6f2006-03-27 18:58:20 +01003081 if (hs->flags & ATA_HOST_SIMPLEX) {
3082 if (hs->simplex_claimed)
3083 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3084 }
Tejun Heo565083e2006-04-02 17:54:47 +09003085
Alan Cox5444a6f2006-03-27 18:58:20 +01003086 if (ap->ops->mode_filter)
3087 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3088
Tejun Heo565083e2006-04-02 17:54:47 +09003089 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3090 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091}
3092
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 * @dev: Device to which command will be sent
3096 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003097 * Issue SET FEATURES - XFER MODE command to device @dev
3098 * on port @ap.
3099 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003101 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003102 *
3103 * RETURNS:
3104 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 */
3106
Tejun Heo3373efd2006-05-15 20:57:53 +09003107static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108{
Tejun Heoa0123702005-12-13 14:49:31 +09003109 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003110 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
3112 /* set up set-features taskfile */
3113 DPRINTK("set features - xfer mode\n");
3114
Tejun Heo3373efd2006-05-15 20:57:53 +09003115 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003116 tf.command = ATA_CMD_SET_FEATURES;
3117 tf.feature = SETFEATURES_XFER;
3118 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3119 tf.protocol = ATA_PROT_NODATA;
3120 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121
Tejun Heo3373efd2006-05-15 20:57:53 +09003122 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Tejun Heo83206a22006-03-24 15:25:31 +09003124 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3125 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126}
3127
3128/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003129 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003130 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003131 * @heads: Number of heads (taskfile parameter)
3132 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003133 *
3134 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003135 * Kernel thread context (may sleep)
3136 *
3137 * RETURNS:
3138 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003139 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003140static unsigned int ata_dev_init_params(struct ata_device *dev,
3141 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003142{
Tejun Heoa0123702005-12-13 14:49:31 +09003143 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003144 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003145
3146 /* Number of sectors per track 1-255. Number of heads 1-16 */
3147 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003148 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003149
3150 /* set up init dev params taskfile */
3151 DPRINTK("init dev params \n");
3152
Tejun Heo3373efd2006-05-15 20:57:53 +09003153 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003154 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3155 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3156 tf.protocol = ATA_PROT_NODATA;
3157 tf.nsect = sectors;
3158 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003159
Tejun Heo3373efd2006-05-15 20:57:53 +09003160 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003161
Tejun Heo6aff8f12006-02-15 18:24:09 +09003162 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3163 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003164}
3165
3166/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003167 * ata_sg_clean - Unmap DMA memory associated with command
3168 * @qc: Command containing DMA memory to be released
3169 *
3170 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 *
3172 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003173 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 */
3175
3176static void ata_sg_clean(struct ata_queued_cmd *qc)
3177{
3178 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003179 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003181 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
Tejun Heoa46314742006-02-11 19:11:13 +09003183 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3184 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
3186 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003187 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003189 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003191 /* if we padded the buffer out to 32-bit bound, and data
3192 * xfer direction is from-device, we must copy from the
3193 * pad buffer back into the supplied buffer
3194 */
3195 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3196 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3197
3198 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003199 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003200 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003201 /* restore last sg */
3202 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3203 if (pad_buf) {
3204 struct scatterlist *psg = &qc->pad_sgent;
3205 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3206 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003207 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003208 }
3209 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003210 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003211 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003212 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3213 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003214 /* restore sg */
3215 sg->length += qc->pad_len;
3216 if (pad_buf)
3217 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3218 pad_buf, qc->pad_len);
3219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003222 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223}
3224
3225/**
3226 * ata_fill_sg - Fill PCI IDE PRD table
3227 * @qc: Metadata associated with taskfile to be transferred
3228 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003229 * Fill PCI IDE PRD (scatter-gather) table with segments
3230 * associated with the current disk command.
3231 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003233 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 *
3235 */
3236static void ata_fill_sg(struct ata_queued_cmd *qc)
3237{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003239 struct scatterlist *sg;
3240 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Tejun Heoa46314742006-02-11 19:11:13 +09003242 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003243 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003246 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 u32 addr, offset;
3248 u32 sg_len, len;
3249
3250 /* determine if physical DMA addr spans 64K boundary.
3251 * Note h/w doesn't support 64-bit, so we unconditionally
3252 * truncate dma_addr_t to u32.
3253 */
3254 addr = (u32) sg_dma_address(sg);
3255 sg_len = sg_dma_len(sg);
3256
3257 while (sg_len) {
3258 offset = addr & 0xffff;
3259 len = sg_len;
3260 if ((offset + sg_len) > 0x10000)
3261 len = 0x10000 - offset;
3262
3263 ap->prd[idx].addr = cpu_to_le32(addr);
3264 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3265 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3266
3267 idx++;
3268 sg_len -= len;
3269 addr += len;
3270 }
3271 }
3272
3273 if (idx)
3274 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3275}
3276/**
3277 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3278 * @qc: Metadata associated with taskfile to check
3279 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003280 * Allow low-level driver to filter ATA PACKET commands, returning
3281 * a status indicating whether or not it is OK to use DMA for the
3282 * supplied PACKET command.
3283 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003285 * spin_lock_irqsave(host_set lock)
3286 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 * RETURNS: 0 when ATAPI DMA can be used
3288 * nonzero otherwise
3289 */
3290int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3291{
3292 struct ata_port *ap = qc->ap;
3293 int rc = 0; /* Assume ATAPI DMA is OK by default */
3294
3295 if (ap->ops->check_atapi_dma)
3296 rc = ap->ops->check_atapi_dma(qc);
3297
3298 return rc;
3299}
3300/**
3301 * ata_qc_prep - Prepare taskfile for submission
3302 * @qc: Metadata associated with taskfile to be prepared
3303 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003304 * Prepare ATA taskfile for submission.
3305 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 * LOCKING:
3307 * spin_lock_irqsave(host_set lock)
3308 */
3309void ata_qc_prep(struct ata_queued_cmd *qc)
3310{
3311 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3312 return;
3313
3314 ata_fill_sg(qc);
3315}
3316
Brian Kinge46834c2006-03-17 17:04:03 -06003317void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3318
Jeff Garzik0cba6322005-05-30 19:49:12 -04003319/**
3320 * ata_sg_init_one - Associate command with memory buffer
3321 * @qc: Command to be associated
3322 * @buf: Memory buffer
3323 * @buflen: Length of memory buffer, in bytes.
3324 *
3325 * Initialize the data-related elements of queued_cmd @qc
3326 * to point to a single memory buffer, @buf of byte length @buflen.
3327 *
3328 * LOCKING:
3329 * spin_lock_irqsave(host_set lock)
3330 */
3331
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3333{
3334 struct scatterlist *sg;
3335
3336 qc->flags |= ATA_QCFLAG_SINGLE;
3337
3338 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003339 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003341 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05003343 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003345 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003346 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347}
3348
Jeff Garzik0cba6322005-05-30 19:49:12 -04003349/**
3350 * ata_sg_init - Associate command with scatter-gather table.
3351 * @qc: Command to be associated
3352 * @sg: Scatter-gather table.
3353 * @n_elem: Number of elements in s/g table.
3354 *
3355 * Initialize the data-related elements of queued_cmd @qc
3356 * to point to a scatter-gather table @sg, containing @n_elem
3357 * elements.
3358 *
3359 * LOCKING:
3360 * spin_lock_irqsave(host_set lock)
3361 */
3362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3364 unsigned int n_elem)
3365{
3366 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003367 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003369 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370}
3371
3372/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003373 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3374 * @qc: Command with memory buffer to be mapped.
3375 *
3376 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 *
3378 * LOCKING:
3379 * spin_lock_irqsave(host_set lock)
3380 *
3381 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003382 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 */
3384
3385static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3386{
3387 struct ata_port *ap = qc->ap;
3388 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003389 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003391 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003393 /* we must lengthen transfers to end on a 32-bit boundary */
3394 qc->pad_len = sg->length & 3;
3395 if (qc->pad_len) {
3396 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3397 struct scatterlist *psg = &qc->pad_sgent;
3398
Tejun Heoa46314742006-02-11 19:11:13 +09003399 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003400
3401 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3402
3403 if (qc->tf.flags & ATA_TFLAG_WRITE)
3404 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3405 qc->pad_len);
3406
3407 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3408 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3409 /* trim sg */
3410 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003411 if (sg->length == 0)
3412 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003413
3414 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3415 sg->length, qc->pad_len);
3416 }
3417
Tejun Heo2e242fa2006-02-20 23:48:38 +09003418 if (trim_sg) {
3419 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003420 goto skip_map;
3421 }
3422
Brian King2f1f6102006-03-23 17:30:15 -06003423 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003424 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003425 if (dma_mapping_error(dma_address)) {
3426 /* restore sg */
3427 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
3431 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003432 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Tejun Heo2e242fa2006-02-20 23:48:38 +09003434skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3436 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3437
3438 return 0;
3439}
3440
3441/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003442 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3443 * @qc: Command with scatter-gather table to be mapped.
3444 *
3445 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 *
3447 * LOCKING:
3448 * spin_lock_irqsave(host_set lock)
3449 *
3450 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003451 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 *
3453 */
3454
3455static int ata_sg_setup(struct ata_queued_cmd *qc)
3456{
3457 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003458 struct scatterlist *sg = qc->__sg;
3459 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003460 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
3462 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa46314742006-02-11 19:11:13 +09003463 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003465 /* we must lengthen transfers to end on a 32-bit boundary */
3466 qc->pad_len = lsg->length & 3;
3467 if (qc->pad_len) {
3468 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3469 struct scatterlist *psg = &qc->pad_sgent;
3470 unsigned int offset;
3471
Tejun Heoa46314742006-02-11 19:11:13 +09003472 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003473
3474 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3475
3476 /*
3477 * psg->page/offset are used to copy to-be-written
3478 * data in this function or read data in ata_sg_clean.
3479 */
3480 offset = lsg->offset + lsg->length - qc->pad_len;
3481 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3482 psg->offset = offset_in_page(offset);
3483
3484 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3485 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3486 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003487 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003488 }
3489
3490 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3491 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3492 /* trim last sg */
3493 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003494 if (lsg->length == 0)
3495 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003496
3497 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3498 qc->n_elem - 1, lsg->length, qc->pad_len);
3499 }
3500
Jeff Garzike1410f22005-11-14 14:06:26 -05003501 pre_n_elem = qc->n_elem;
3502 if (trim_sg && pre_n_elem)
3503 pre_n_elem--;
3504
3505 if (!pre_n_elem) {
3506 n_elem = 0;
3507 goto skip_map;
3508 }
3509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003511 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003512 if (n_elem < 1) {
3513 /* restore last sg */
3514 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517
3518 DPRINTK("%d sg elements mapped\n", n_elem);
3519
Jeff Garzike1410f22005-11-14 14:06:26 -05003520skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 qc->n_elem = n_elem;
3522
3523 return 0;
3524}
3525
3526/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003527 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003528 * @buf: Buffer to swap
3529 * @buf_words: Number of 16-bit words in buffer.
3530 *
3531 * Swap halves of 16-bit words if needed to convert from
3532 * little-endian byte order to native cpu byte order, or
3533 * vice-versa.
3534 *
3535 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003536 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003537 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538void swap_buf_le16(u16 *buf, unsigned int buf_words)
3539{
3540#ifdef __BIG_ENDIAN
3541 unsigned int i;
3542
3543 for (i = 0; i < buf_words; i++)
3544 buf[i] = le16_to_cpu(buf[i]);
3545#endif /* __BIG_ENDIAN */
3546}
3547
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003548/**
3549 * ata_mmio_data_xfer - Transfer data by MMIO
Jeff Garzikbf717b112006-06-13 20:27:03 -04003550 * @adev: device for this I/O
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003551 * @buf: data buffer
3552 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003553 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003554 *
3555 * Transfer data from/to the device data register by MMIO.
3556 *
3557 * LOCKING:
3558 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003559 */
3560
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003561void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf,
3562 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003564 struct ata_port *ap = adev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 unsigned int i;
3566 unsigned int words = buflen >> 1;
3567 u16 *buf16 = (u16 *) buf;
3568 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3569
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003570 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 if (write_data) {
3572 for (i = 0; i < words; i++)
3573 writew(le16_to_cpu(buf16[i]), mmio);
3574 } else {
3575 for (i = 0; i < words; i++)
3576 buf16[i] = cpu_to_le16(readw(mmio));
3577 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003578
3579 /* Transfer trailing 1 byte, if any. */
3580 if (unlikely(buflen & 0x01)) {
3581 u16 align_buf[1] = { 0 };
3582 unsigned char *trailing_buf = buf + buflen - 1;
3583
3584 if (write_data) {
3585 memcpy(align_buf, trailing_buf, 1);
3586 writew(le16_to_cpu(align_buf[0]), mmio);
3587 } else {
3588 align_buf[0] = cpu_to_le16(readw(mmio));
3589 memcpy(trailing_buf, align_buf, 1);
3590 }
3591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592}
3593
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003594/**
3595 * ata_pio_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003596 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003597 * @buf: data buffer
3598 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003599 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003600 *
3601 * Transfer data from/to the device data register by PIO.
3602 *
3603 * LOCKING:
3604 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003605 */
3606
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003607void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf,
3608 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003610 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003611 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003613 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003615 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003617 insw(ap->ioaddr.data_addr, buf, words);
3618
3619 /* Transfer trailing 1 byte, if any. */
3620 if (unlikely(buflen & 0x01)) {
3621 u16 align_buf[1] = { 0 };
3622 unsigned char *trailing_buf = buf + buflen - 1;
3623
3624 if (write_data) {
3625 memcpy(align_buf, trailing_buf, 1);
3626 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3627 } else {
3628 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3629 memcpy(trailing_buf, align_buf, 1);
3630 }
3631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632}
3633
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003634/**
Alan Cox75e99582006-05-24 14:14:41 +01003635 * ata_pio_data_xfer_noirq - Transfer data by PIO
3636 * @adev: device to target
3637 * @buf: data buffer
3638 * @buflen: buffer length
3639 * @write_data: read/write
3640 *
3641 * Transfer data from/to the device data register by PIO. Do the
3642 * transfer with interrupts disabled.
3643 *
3644 * LOCKING:
3645 * Inherited from caller.
3646 */
3647
3648void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
3649 unsigned int buflen, int write_data)
3650{
3651 unsigned long flags;
3652 local_irq_save(flags);
3653 ata_pio_data_xfer(adev, buf, buflen, write_data);
3654 local_irq_restore(flags);
3655}
3656
3657
3658/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003659 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3660 * @qc: Command on going
3661 *
3662 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3663 *
3664 * LOCKING:
3665 * Inherited from caller.
3666 */
3667
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668static void ata_pio_sector(struct ata_queued_cmd *qc)
3669{
3670 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003671 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 struct ata_port *ap = qc->ap;
3673 struct page *page;
3674 unsigned int offset;
3675 unsigned char *buf;
3676
3677 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003678 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
3680 page = sg[qc->cursg].page;
3681 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3682
3683 /* get the current page and offset */
3684 page = nth_page(page, (offset >> PAGE_SHIFT));
3685 offset %= PAGE_SIZE;
3686
Albert Lee7282aa42005-10-09 09:46:07 -04003687 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3688
Albert Lee91b8b312005-10-09 09:48:44 -04003689 if (PageHighMem(page)) {
3690 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003691
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003692 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003693 local_irq_save(flags);
3694 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003695
Albert Lee91b8b312005-10-09 09:48:44 -04003696 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003697 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003698
3699 kunmap_atomic(buf, KM_IRQ0);
3700 local_irq_restore(flags);
3701 } else {
3702 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003703 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
3706 qc->cursect++;
3707 qc->cursg_ofs++;
3708
Albert Lee32529e02005-05-26 03:49:42 -04003709 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 qc->cursg++;
3711 qc->cursg_ofs = 0;
3712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003715/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003716 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3717 * @qc: Command on going
3718 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003719 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08003720 * ATA device for the DRQ request.
3721 *
3722 * LOCKING:
3723 * Inherited from caller.
3724 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
Albert Lee07f6f7d2005-11-01 19:33:20 +08003726static void ata_pio_sectors(struct ata_queued_cmd *qc)
3727{
3728 if (is_multi_taskfile(&qc->tf)) {
3729 /* READ/WRITE MULTIPLE */
3730 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Jeff Garzik587005d2006-02-11 18:17:32 -05003732 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003733
3734 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3735 while (nsect--)
3736 ata_pio_sector(qc);
3737 } else
3738 ata_pio_sector(qc);
3739}
3740
3741/**
Albert Leec71c1852005-10-04 06:03:45 -04003742 * atapi_send_cdb - Write CDB bytes to hardware
3743 * @ap: Port to which ATAPI device is attached.
3744 * @qc: Taskfile currently active
3745 *
3746 * When device has indicated its readiness to accept
3747 * a CDB, this function is called. Send the CDB.
3748 *
3749 * LOCKING:
3750 * caller.
3751 */
3752
3753static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3754{
3755 /* send SCSI cdb */
3756 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003757 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003758
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003759 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003760 ata_altstatus(ap); /* flush */
3761
3762 switch (qc->tf.protocol) {
3763 case ATA_PROT_ATAPI:
3764 ap->hsm_task_state = HSM_ST;
3765 break;
3766 case ATA_PROT_ATAPI_NODATA:
3767 ap->hsm_task_state = HSM_ST_LAST;
3768 break;
3769 case ATA_PROT_ATAPI_DMA:
3770 ap->hsm_task_state = HSM_ST_LAST;
3771 /* initiate bmdma */
3772 ap->ops->bmdma_start(qc);
3773 break;
3774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775}
3776
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003777/**
3778 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3779 * @qc: Command on going
3780 * @bytes: number of bytes
3781 *
3782 * Transfer Transfer data from/to the ATAPI device.
3783 *
3784 * LOCKING:
3785 * Inherited from caller.
3786 *
3787 */
3788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3790{
3791 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003792 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 struct ata_port *ap = qc->ap;
3794 struct page *page;
3795 unsigned char *buf;
3796 unsigned int offset, count;
3797
Albert Lee563a6e12005-08-12 14:17:50 +08003798 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003799 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
3801next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003802 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003803 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003804 * The end of qc->sg is reached and the device expects
3805 * more data to transfer. In order not to overrun qc->sg
3806 * and fulfill length specified in the byte count register,
3807 * - for read case, discard trailing data from the device
3808 * - for write case, padding zero data to the device
3809 */
3810 u16 pad_buf[1] = { 0 };
3811 unsigned int words = bytes >> 1;
3812 unsigned int i;
3813
3814 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003815 ata_dev_printk(qc->dev, KERN_WARNING,
3816 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003817
3818 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003819 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08003820
Albert Lee14be71f2005-09-27 17:36:35 +08003821 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003822 return;
3823 }
3824
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003825 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 page = sg->page;
3828 offset = sg->offset + qc->cursg_ofs;
3829
3830 /* get the current page and offset */
3831 page = nth_page(page, (offset >> PAGE_SHIFT));
3832 offset %= PAGE_SIZE;
3833
Albert Lee6952df02005-06-06 15:56:03 +08003834 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003835 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
3837 /* don't cross page boundaries */
3838 count = min(count, (unsigned int)PAGE_SIZE - offset);
3839
Albert Lee7282aa42005-10-09 09:46:07 -04003840 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3841
Albert Lee91b8b312005-10-09 09:48:44 -04003842 if (PageHighMem(page)) {
3843 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003844
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003845 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003846 local_irq_save(flags);
3847 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003848
Albert Lee91b8b312005-10-09 09:48:44 -04003849 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003850 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003851
3852 kunmap_atomic(buf, KM_IRQ0);
3853 local_irq_restore(flags);
3854 } else {
3855 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003856 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
3859 bytes -= count;
3860 qc->curbytes += count;
3861 qc->cursg_ofs += count;
3862
Albert Lee32529e02005-05-26 03:49:42 -04003863 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 qc->cursg++;
3865 qc->cursg_ofs = 0;
3866 }
3867
Albert Lee563a6e12005-08-12 14:17:50 +08003868 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870}
3871
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003872/**
3873 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3874 * @qc: Command on going
3875 *
3876 * Transfer Transfer data from/to the ATAPI device.
3877 *
3878 * LOCKING:
3879 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003880 */
3881
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3883{
3884 struct ata_port *ap = qc->ap;
3885 struct ata_device *dev = qc->dev;
3886 unsigned int ireason, bc_lo, bc_hi, bytes;
3887 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3888
Albert Leeeec4c3f2006-05-18 17:51:10 +08003889 /* Abuse qc->result_tf for temp storage of intermediate TF
3890 * here to save some kernel stack usage.
3891 * For normal completion, qc->result_tf is not relevant. For
3892 * error, qc->result_tf is later overwritten by ata_qc_complete().
3893 * So, the correctness of qc->result_tf is not affected.
3894 */
3895 ap->ops->tf_read(ap, &qc->result_tf);
3896 ireason = qc->result_tf.nsect;
3897 bc_lo = qc->result_tf.lbam;
3898 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 bytes = (bc_hi << 8) | bc_lo;
3900
3901 /* shall be cleared to zero, indicating xfer of data */
3902 if (ireason & (1 << 0))
3903 goto err_out;
3904
3905 /* make sure transfer direction matches expected */
3906 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3907 if (do_write != i_write)
3908 goto err_out;
3909
Albert Lee312f7da2005-09-27 17:38:03 +08003910 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3911
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 __atapi_pio_bytes(qc, bytes);
3913
3914 return;
3915
3916err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003917 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003918 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003919 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920}
3921
3922/**
Albert Leec234fb02006-03-25 17:58:38 +08003923 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3924 * @ap: the target ata_port
3925 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 *
Albert Leec234fb02006-03-25 17:58:38 +08003927 * RETURNS:
3928 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 */
Albert Leec234fb02006-03-25 17:58:38 +08003930
3931static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932{
Albert Leec234fb02006-03-25 17:58:38 +08003933 if (qc->tf.flags & ATA_TFLAG_POLLING)
3934 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Albert Leec234fb02006-03-25 17:58:38 +08003936 if (ap->hsm_task_state == HSM_ST_FIRST) {
3937 if (qc->tf.protocol == ATA_PROT_PIO &&
3938 (qc->tf.flags & ATA_TFLAG_WRITE))
3939 return 1;
3940
3941 if (is_atapi_taskfile(&qc->tf) &&
3942 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3943 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 }
3945
Albert Leec234fb02006-03-25 17:58:38 +08003946 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947}
3948
Albert Leec234fb02006-03-25 17:58:38 +08003949/**
Tejun Heoc17ea202006-05-15 20:59:29 +09003950 * ata_hsm_qc_complete - finish a qc running on standard HSM
3951 * @qc: Command to complete
3952 * @in_wq: 1 if called from workqueue, 0 otherwise
3953 *
3954 * Finish @qc which is running on standard HSM.
3955 *
3956 * LOCKING:
3957 * If @in_wq is zero, spin_lock_irqsave(host_set lock).
3958 * Otherwise, none on entry and grabs host lock.
3959 */
3960static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
3961{
3962 struct ata_port *ap = qc->ap;
3963 unsigned long flags;
3964
3965 if (ap->ops->error_handler) {
3966 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04003967 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003968
3969 /* EH might have kicked in while host_set lock
3970 * is released.
3971 */
3972 qc = ata_qc_from_tag(ap, qc->tag);
3973 if (qc) {
3974 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
3975 ata_irq_on(ap);
3976 ata_qc_complete(qc);
3977 } else
3978 ata_port_freeze(ap);
3979 }
3980
Jeff Garzikba6a1302006-06-22 23:46:10 -04003981 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003982 } else {
3983 if (likely(!(qc->err_mask & AC_ERR_HSM)))
3984 ata_qc_complete(qc);
3985 else
3986 ata_port_freeze(ap);
3987 }
3988 } else {
3989 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04003990 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003991 ata_irq_on(ap);
3992 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04003993 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003994 } else
3995 ata_qc_complete(qc);
3996 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003997
3998 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09003999}
4000
4001/**
Albert Leebb5cb292006-03-25 17:48:02 +08004002 * ata_hsm_move - move the HSM to the next state.
4003 * @ap: the target ata_port
4004 * @qc: qc on going
4005 * @status: current device status
4006 * @in_wq: 1 if called from workqueue, 0 otherwise
4007 *
4008 * RETURNS:
4009 * 1 when poll next status needed, 0 otherwise.
4010 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004011int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4012 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013{
Albert Leebb5cb292006-03-25 17:48:02 +08004014 unsigned long flags = 0;
4015 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016
Albert Lee6912ccd2006-03-25 17:45:49 +08004017 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004018
Albert Leebb5cb292006-03-25 17:48:02 +08004019 /* Make sure ata_qc_issue_prot() does not throw things
4020 * like DMA polling into the workqueue. Notice that
4021 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004022 */
Albert Leec234fb02006-03-25 17:58:38 +08004023 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004024
Albert Leee2cec772006-03-25 17:43:49 +08004025fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004026 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
4027 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028
Albert Leee2cec772006-03-25 17:43:49 +08004029 switch (ap->hsm_task_state) {
4030 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004031 /* Send first data block or PACKET CDB */
4032
4033 /* If polling, we will stay in the work queue after
4034 * sending the data. Otherwise, interrupt handler
4035 * takes over after sending the data.
4036 */
4037 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4038
Albert Leee2cec772006-03-25 17:43:49 +08004039 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004040 if (unlikely((status & ATA_DRQ) == 0)) {
4041 /* handle BSY=0, DRQ=0 as error */
4042 if (likely(status & (ATA_ERR | ATA_DF)))
4043 /* device stops HSM for abort/error */
4044 qc->err_mask |= AC_ERR_DEV;
4045 else
4046 /* HSM violation. Let EH handle this */
4047 qc->err_mask |= AC_ERR_HSM;
4048
Albert Leee2cec772006-03-25 17:43:49 +08004049 ap->hsm_task_state = HSM_ST_ERR;
4050 goto fsm_start;
4051 }
4052
Albert Lee71601952006-03-25 18:11:12 +08004053 /* Device should not ask for data transfer (DRQ=1)
4054 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004055 * We ignore DRQ here and stop the HSM by
4056 * changing hsm_task_state to HSM_ST_ERR and
4057 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004058 */
4059 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4060 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4061 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004062 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004063 ap->hsm_task_state = HSM_ST_ERR;
4064 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004065 }
4066
Albert Leebb5cb292006-03-25 17:48:02 +08004067 /* Send the CDB (atapi) or the first data block (ata pio out).
4068 * During the state transition, interrupt handler shouldn't
4069 * be invoked before the data transfer is complete and
4070 * hsm_task_state is changed. Hence, the following locking.
4071 */
4072 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004073 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004074
Albert Leebb5cb292006-03-25 17:48:02 +08004075 if (qc->tf.protocol == ATA_PROT_PIO) {
4076 /* PIO data out protocol.
4077 * send first data block.
4078 */
4079
4080 /* ata_pio_sectors() might change the state
4081 * to HSM_ST_LAST. so, the state is changed here
4082 * before ata_pio_sectors().
4083 */
4084 ap->hsm_task_state = HSM_ST;
4085 ata_pio_sectors(qc);
4086 ata_altstatus(ap); /* flush */
4087 } else
4088 /* send CDB */
4089 atapi_send_cdb(ap, qc);
4090
4091 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004092 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004093
4094 /* if polling, ata_pio_task() handles the rest.
4095 * otherwise, interrupt handler takes over from here.
4096 */
Albert Leee2cec772006-03-25 17:43:49 +08004097 break;
4098
4099 case HSM_ST:
4100 /* complete command or read/write the data register */
4101 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4102 /* ATAPI PIO protocol */
4103 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004104 /* No more data to transfer or device error.
4105 * Device error will be tagged in HSM_ST_LAST.
4106 */
Albert Leee2cec772006-03-25 17:43:49 +08004107 ap->hsm_task_state = HSM_ST_LAST;
4108 goto fsm_start;
4109 }
4110
Albert Lee71601952006-03-25 18:11:12 +08004111 /* Device should not ask for data transfer (DRQ=1)
4112 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004113 * We ignore DRQ here and stop the HSM by
4114 * changing hsm_task_state to HSM_ST_ERR and
4115 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004116 */
4117 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4118 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4119 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004120 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004121 ap->hsm_task_state = HSM_ST_ERR;
4122 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004123 }
4124
Albert Leee2cec772006-03-25 17:43:49 +08004125 atapi_pio_bytes(qc);
4126
4127 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4128 /* bad ireason reported by device */
4129 goto fsm_start;
4130
4131 } else {
4132 /* ATA PIO protocol */
4133 if (unlikely((status & ATA_DRQ) == 0)) {
4134 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004135 if (likely(status & (ATA_ERR | ATA_DF)))
4136 /* device stops HSM for abort/error */
4137 qc->err_mask |= AC_ERR_DEV;
4138 else
4139 /* HSM violation. Let EH handle this */
4140 qc->err_mask |= AC_ERR_HSM;
4141
Albert Leee2cec772006-03-25 17:43:49 +08004142 ap->hsm_task_state = HSM_ST_ERR;
4143 goto fsm_start;
4144 }
4145
Albert Leeeee6c322006-04-01 17:38:43 +08004146 /* For PIO reads, some devices may ask for
4147 * data transfer (DRQ=1) alone with ERR=1.
4148 * We respect DRQ here and transfer one
4149 * block of junk data before changing the
4150 * hsm_task_state to HSM_ST_ERR.
4151 *
4152 * For PIO writes, ERR=1 DRQ=1 doesn't make
4153 * sense since the data block has been
4154 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004155 */
4156 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004157 /* data might be corrputed */
4158 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004159
4160 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4161 ata_pio_sectors(qc);
4162 ata_altstatus(ap);
4163 status = ata_wait_idle(ap);
4164 }
4165
Albert Lee3655d1d2006-05-19 11:43:04 +08004166 if (status & (ATA_BUSY | ATA_DRQ))
4167 qc->err_mask |= AC_ERR_HSM;
4168
Albert Leeeee6c322006-04-01 17:38:43 +08004169 /* ata_pio_sectors() might change the
4170 * state to HSM_ST_LAST. so, the state
4171 * is changed after ata_pio_sectors().
4172 */
4173 ap->hsm_task_state = HSM_ST_ERR;
4174 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004175 }
4176
Albert Leee2cec772006-03-25 17:43:49 +08004177 ata_pio_sectors(qc);
4178
4179 if (ap->hsm_task_state == HSM_ST_LAST &&
4180 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4181 /* all data read */
4182 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004183 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004184 goto fsm_start;
4185 }
4186 }
4187
4188 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004189 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004190 break;
4191
4192 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004193 if (unlikely(!ata_ok(status))) {
4194 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004195 ap->hsm_task_state = HSM_ST_ERR;
4196 goto fsm_start;
4197 }
4198
4199 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004200 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4201 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004202
Albert Lee6912ccd2006-03-25 17:45:49 +08004203 WARN_ON(qc->err_mask);
4204
Albert Leee2cec772006-03-25 17:43:49 +08004205 ap->hsm_task_state = HSM_ST_IDLE;
4206
4207 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004208 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004209
4210 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004211 break;
4212
4213 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004214 /* make sure qc->err_mask is available to
4215 * know what's wrong and recover
4216 */
4217 WARN_ON(qc->err_mask == 0);
4218
4219 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004220
Albert Lee999bb6f2006-03-25 18:07:48 +08004221 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004222 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004223
4224 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004225 break;
4226 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004227 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004228 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004229 }
4230
Albert Leebb5cb292006-03-25 17:48:02 +08004231 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232}
4233
4234static void ata_pio_task(void *_data)
4235{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004236 struct ata_queued_cmd *qc = _data;
4237 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004238 u8 status;
4239 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004240
4241fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004242 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243
Albert Leea1af3732006-03-25 17:50:15 +08004244 /*
4245 * This is purely heuristic. This is a fast path.
4246 * Sometimes when we enter, BSY will be cleared in
4247 * a chk-status or two. If not, the drive is probably seeking
4248 * or something. Snooze for a couple msecs, then
4249 * chk-status again. If still busy, queue delayed work.
4250 */
4251 status = ata_busy_wait(ap, ATA_BUSY, 5);
4252 if (status & ATA_BUSY) {
4253 msleep(2);
4254 status = ata_busy_wait(ap, ATA_BUSY, 10);
4255 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004256 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004257 return;
4258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 }
4260
Albert Leea1af3732006-03-25 17:50:15 +08004261 /* move the HSM */
4262 poll_next = ata_hsm_move(ap, qc, status, 1);
4263
4264 /* another command or interrupt handler
4265 * may be running at this point.
4266 */
4267 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004268 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269}
4270
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 * ata_qc_new - Request an available ATA command, for queueing
4273 * @ap: Port associated with device @dev
4274 * @dev: Device from whom we request an available command structure
4275 *
4276 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004277 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 */
4279
4280static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4281{
4282 struct ata_queued_cmd *qc = NULL;
4283 unsigned int i;
4284
Tejun Heoe3180492006-05-15 20:58:09 +09004285 /* no command while frozen */
4286 if (unlikely(ap->flags & ATA_FLAG_FROZEN))
4287 return NULL;
4288
Tejun Heo2ab7db12006-05-15 20:58:02 +09004289 /* the last tag is reserved for internal command. */
4290 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004291 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004292 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 break;
4294 }
4295
4296 if (qc)
4297 qc->tag = i;
4298
4299 return qc;
4300}
4301
4302/**
4303 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 * @dev: Device from whom we request an available command structure
4305 *
4306 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004307 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 */
4309
Tejun Heo3373efd2006-05-15 20:57:53 +09004310struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311{
Tejun Heo3373efd2006-05-15 20:57:53 +09004312 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 struct ata_queued_cmd *qc;
4314
4315 qc = ata_qc_new(ap);
4316 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 qc->scsicmd = NULL;
4318 qc->ap = ap;
4319 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004321 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 }
4323
4324 return qc;
4325}
4326
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327/**
4328 * ata_qc_free - free unused ata_queued_cmd
4329 * @qc: Command to complete
4330 *
4331 * Designed to free unused ata_queued_cmd object
4332 * in case something prevents using it.
4333 *
4334 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004335 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 */
4337void ata_qc_free(struct ata_queued_cmd *qc)
4338{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004339 struct ata_port *ap = qc->ap;
4340 unsigned int tag;
4341
Tejun Heoa46314742006-02-11 19:11:13 +09004342 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
Tejun Heo4ba946e2006-01-23 13:09:36 +09004344 qc->flags = 0;
4345 tag = qc->tag;
4346 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004347 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004348 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350}
4351
Tejun Heo76014422006-02-11 15:13:49 +09004352void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004354 struct ata_port *ap = qc->ap;
4355
Tejun Heoa46314742006-02-11 19:11:13 +09004356 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4357 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358
4359 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4360 ata_sg_clean(qc);
4361
Tejun Heo7401abf2006-05-15 20:57:32 +09004362 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004363 if (qc->tf.protocol == ATA_PROT_NCQ)
4364 ap->sactive &= ~(1 << qc->tag);
4365 else
4366 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004367
Albert Lee3f3791d2005-08-16 14:25:38 +08004368 /* atapi: mark qc as inactive to prevent the interrupt handler
4369 * from completing the command twice later, before the error handler
4370 * is called. (when rc != 0 and atapi request sense is needed)
4371 */
4372 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004373 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004374
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004376 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377}
4378
Tejun Heof686bcb2006-05-15 20:58:05 +09004379/**
4380 * ata_qc_complete - Complete an active ATA command
4381 * @qc: Command to complete
4382 * @err_mask: ATA Status register contents
4383 *
4384 * Indicate to the mid and upper layers that an ATA
4385 * command has completed, with either an ok or not-ok status.
4386 *
4387 * LOCKING:
4388 * spin_lock_irqsave(host_set lock)
4389 */
4390void ata_qc_complete(struct ata_queued_cmd *qc)
4391{
4392 struct ata_port *ap = qc->ap;
4393
4394 /* XXX: New EH and old EH use different mechanisms to
4395 * synchronize EH with regular execution path.
4396 *
4397 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4398 * Normal execution path is responsible for not accessing a
4399 * failed qc. libata core enforces the rule by returning NULL
4400 * from ata_qc_from_tag() for failed qcs.
4401 *
4402 * Old EH depends on ata_qc_complete() nullifying completion
4403 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4404 * not synchronize with interrupt handler. Only PIO task is
4405 * taken care of.
4406 */
4407 if (ap->ops->error_handler) {
4408 WARN_ON(ap->flags & ATA_FLAG_FROZEN);
4409
4410 if (unlikely(qc->err_mask))
4411 qc->flags |= ATA_QCFLAG_FAILED;
4412
4413 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4414 if (!ata_tag_internal(qc->tag)) {
4415 /* always fill result TF for failed qc */
4416 ap->ops->tf_read(ap, &qc->result_tf);
4417 ata_qc_schedule_eh(qc);
4418 return;
4419 }
4420 }
4421
4422 /* read result TF if requested */
4423 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4424 ap->ops->tf_read(ap, &qc->result_tf);
4425
4426 __ata_qc_complete(qc);
4427 } else {
4428 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4429 return;
4430
4431 /* read result TF if failed or requested */
4432 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4433 ap->ops->tf_read(ap, &qc->result_tf);
4434
4435 __ata_qc_complete(qc);
4436 }
4437}
4438
Tejun Heodedaf2b2006-05-15 21:03:43 +09004439/**
4440 * ata_qc_complete_multiple - Complete multiple qcs successfully
4441 * @ap: port in question
4442 * @qc_active: new qc_active mask
4443 * @finish_qc: LLDD callback invoked before completing a qc
4444 *
4445 * Complete in-flight commands. This functions is meant to be
4446 * called from low-level driver's interrupt routine to complete
4447 * requests normally. ap->qc_active and @qc_active is compared
4448 * and commands are completed accordingly.
4449 *
4450 * LOCKING:
4451 * spin_lock_irqsave(host_set lock)
4452 *
4453 * RETURNS:
4454 * Number of completed commands on success, -errno otherwise.
4455 */
4456int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4457 void (*finish_qc)(struct ata_queued_cmd *))
4458{
4459 int nr_done = 0;
4460 u32 done_mask;
4461 int i;
4462
4463 done_mask = ap->qc_active ^ qc_active;
4464
4465 if (unlikely(done_mask & qc_active)) {
4466 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4467 "(%08x->%08x)\n", ap->qc_active, qc_active);
4468 return -EINVAL;
4469 }
4470
4471 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4472 struct ata_queued_cmd *qc;
4473
4474 if (!(done_mask & (1 << i)))
4475 continue;
4476
4477 if ((qc = ata_qc_from_tag(ap, i))) {
4478 if (finish_qc)
4479 finish_qc(qc);
4480 ata_qc_complete(qc);
4481 nr_done++;
4482 }
4483 }
4484
4485 return nr_done;
4486}
4487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4489{
4490 struct ata_port *ap = qc->ap;
4491
4492 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004493 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 case ATA_PROT_DMA:
4495 case ATA_PROT_ATAPI_DMA:
4496 return 1;
4497
4498 case ATA_PROT_ATAPI:
4499 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 if (ap->flags & ATA_FLAG_PIO_DMA)
4501 return 1;
4502
4503 /* fall through */
4504
4505 default:
4506 return 0;
4507 }
4508
4509 /* never reached */
4510}
4511
4512/**
4513 * ata_qc_issue - issue taskfile to device
4514 * @qc: command to issue to device
4515 *
4516 * Prepare an ATA command to submission to device.
4517 * This includes mapping the data into a DMA-able
4518 * area, filling in the S/G table, and finally
4519 * writing the taskfile to hardware, starting the command.
4520 *
4521 * LOCKING:
4522 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004524void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525{
4526 struct ata_port *ap = qc->ap;
4527
Tejun Heodedaf2b2006-05-15 21:03:43 +09004528 /* Make sure only one non-NCQ command is outstanding. The
4529 * check is skipped for old EH because it reuses active qc to
4530 * request ATAPI sense.
4531 */
4532 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4533
4534 if (qc->tf.protocol == ATA_PROT_NCQ) {
4535 WARN_ON(ap->sactive & (1 << qc->tag));
4536 ap->sactive |= 1 << qc->tag;
4537 } else {
4538 WARN_ON(ap->sactive);
4539 ap->active_tag = qc->tag;
4540 }
4541
Tejun Heoe4a70e72006-03-31 20:36:47 +09004542 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004543 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004544
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 if (ata_should_dma_map(qc)) {
4546 if (qc->flags & ATA_QCFLAG_SG) {
4547 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004548 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4550 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004551 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 }
4553 } else {
4554 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4555 }
4556
4557 ap->ops->qc_prep(qc);
4558
Tejun Heo8e0e6942006-03-31 20:41:11 +09004559 qc->err_mask |= ap->ops->qc_issue(qc);
4560 if (unlikely(qc->err_mask))
4561 goto err;
4562 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563
Tejun Heo8e436af2006-01-23 13:09:36 +09004564sg_err:
4565 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004566 qc->err_mask |= AC_ERR_SYSTEM;
4567err:
4568 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569}
4570
4571/**
4572 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4573 * @qc: command to issue to device
4574 *
4575 * Using various libata functions and hooks, this function
4576 * starts an ATA command. ATA commands are grouped into
4577 * classes called "protocols", and issuing each type of protocol
4578 * is slightly different.
4579 *
Edward Falk0baab862005-06-02 18:17:13 -04004580 * May be used as the qc_issue() entry in ata_port_operations.
4581 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 * LOCKING:
4583 * spin_lock_irqsave(host_set lock)
4584 *
4585 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004586 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 */
4588
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004589unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590{
4591 struct ata_port *ap = qc->ap;
4592
Albert Leee50362e2005-09-27 17:39:50 +08004593 /* Use polling pio if the LLD doesn't handle
4594 * interrupt driven pio and atapi CDB interrupt.
4595 */
4596 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4597 switch (qc->tf.protocol) {
4598 case ATA_PROT_PIO:
4599 case ATA_PROT_ATAPI:
4600 case ATA_PROT_ATAPI_NODATA:
4601 qc->tf.flags |= ATA_TFLAG_POLLING;
4602 break;
4603 case ATA_PROT_ATAPI_DMA:
4604 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08004605 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08004606 BUG();
4607 break;
4608 default:
4609 break;
4610 }
4611 }
4612
Albert Lee312f7da2005-09-27 17:38:03 +08004613 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 ata_dev_select(ap, qc->dev->devno, 1, 0);
4615
Albert Lee312f7da2005-09-27 17:38:03 +08004616 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 switch (qc->tf.protocol) {
4618 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004619 if (qc->tf.flags & ATA_TFLAG_POLLING)
4620 ata_qc_set_polling(qc);
4621
Jeff Garzike5338252005-10-30 21:37:17 -05004622 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004623 ap->hsm_task_state = HSM_ST_LAST;
4624
4625 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004626 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004627
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 break;
4629
4630 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004631 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004632
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4634 ap->ops->bmdma_setup(qc); /* set up bmdma */
4635 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004636 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 break;
4638
Albert Lee312f7da2005-09-27 17:38:03 +08004639 case ATA_PROT_PIO:
4640 if (qc->tf.flags & ATA_TFLAG_POLLING)
4641 ata_qc_set_polling(qc);
4642
Jeff Garzike5338252005-10-30 21:37:17 -05004643 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004644
Albert Lee54f00382005-09-30 19:14:19 +08004645 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4646 /* PIO data out protocol */
4647 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004648 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004649
4650 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004651 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004652 */
Albert Lee312f7da2005-09-27 17:38:03 +08004653 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004654 /* PIO data in protocol */
4655 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004656
Albert Lee54f00382005-09-30 19:14:19 +08004657 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004658 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004659
Albert Lee54f00382005-09-30 19:14:19 +08004660 /* if polling, ata_pio_task() handles the rest.
4661 * otherwise, interrupt handler takes over from here.
4662 */
Albert Lee312f7da2005-09-27 17:38:03 +08004663 }
4664
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 break;
4666
4667 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004669 if (qc->tf.flags & ATA_TFLAG_POLLING)
4670 ata_qc_set_polling(qc);
4671
Jeff Garzike5338252005-10-30 21:37:17 -05004672 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004673
Albert Lee312f7da2005-09-27 17:38:03 +08004674 ap->hsm_task_state = HSM_ST_FIRST;
4675
4676 /* send cdb by polling if no cdb interrupt */
4677 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4678 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004679 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 break;
4681
4682 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004683 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4686 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004687 ap->hsm_task_state = HSM_ST_FIRST;
4688
4689 /* send cdb by polling if no cdb interrupt */
4690 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004691 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 break;
4693
4694 default:
4695 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004696 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 }
4698
4699 return 0;
4700}
4701
4702/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 * ata_host_intr - Handle host interrupt for given (port, task)
4704 * @ap: Port on which interrupt arrived (possibly...)
4705 * @qc: Taskfile currently active in engine
4706 *
4707 * Handle host interrupt for given queued command. Currently,
4708 * only DMA interrupts are handled. All other commands are
4709 * handled via polling with interrupts disabled (nIEN bit).
4710 *
4711 * LOCKING:
4712 * spin_lock_irqsave(host_set lock)
4713 *
4714 * RETURNS:
4715 * One if interrupt was handled, zero if not (shared irq).
4716 */
4717
4718inline unsigned int ata_host_intr (struct ata_port *ap,
4719 struct ata_queued_cmd *qc)
4720{
Albert Lee312f7da2005-09-27 17:38:03 +08004721 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722
Albert Lee312f7da2005-09-27 17:38:03 +08004723 VPRINTK("ata%u: protocol %d task_state %d\n",
4724 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725
Albert Lee312f7da2005-09-27 17:38:03 +08004726 /* Check whether we are expecting interrupt in this state */
4727 switch (ap->hsm_task_state) {
4728 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004729 /* Some pre-ATAPI-4 devices assert INTRQ
4730 * at this state when ready to receive CDB.
4731 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732
Albert Lee312f7da2005-09-27 17:38:03 +08004733 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4734 * The flag was turned on only for atapi devices.
4735 * No need to check is_atapi_taskfile(&qc->tf) again.
4736 */
4737 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004740 case HSM_ST_LAST:
4741 if (qc->tf.protocol == ATA_PROT_DMA ||
4742 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4743 /* check status of DMA engine */
4744 host_stat = ap->ops->bmdma_status(ap);
4745 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746
Albert Lee312f7da2005-09-27 17:38:03 +08004747 /* if it's not our irq... */
4748 if (!(host_stat & ATA_DMA_INTR))
4749 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750
Albert Lee312f7da2005-09-27 17:38:03 +08004751 /* before we do anything else, clear DMA-Start bit */
4752 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004753
4754 if (unlikely(host_stat & ATA_DMA_ERR)) {
4755 /* error when transfering data to/from memory */
4756 qc->err_mask |= AC_ERR_HOST_BUS;
4757 ap->hsm_task_state = HSM_ST_ERR;
4758 }
Albert Lee312f7da2005-09-27 17:38:03 +08004759 }
4760 break;
4761 case HSM_ST:
4762 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 default:
4764 goto idle_irq;
4765 }
4766
Albert Lee312f7da2005-09-27 17:38:03 +08004767 /* check altstatus */
4768 status = ata_altstatus(ap);
4769 if (status & ATA_BUSY)
4770 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771
Albert Lee312f7da2005-09-27 17:38:03 +08004772 /* check main status, clearing INTRQ */
4773 status = ata_chk_status(ap);
4774 if (unlikely(status & ATA_BUSY))
4775 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776
Albert Lee312f7da2005-09-27 17:38:03 +08004777 /* ack bmdma irq events */
4778 ap->ops->irq_clear(ap);
4779
Albert Leebb5cb292006-03-25 17:48:02 +08004780 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 return 1; /* irq handled */
4782
4783idle_irq:
4784 ap->stats.idle_irq++;
4785
4786#ifdef ATA_IRQ_TRAP
4787 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004789 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004790 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 }
4792#endif
4793 return 0; /* irq not handled */
4794}
4795
4796/**
4797 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004798 * @irq: irq line (unused)
4799 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800 * @regs: unused
4801 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004802 * Default interrupt handler for PCI IDE devices. Calls
4803 * ata_host_intr() for each port that is not disabled.
4804 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004806 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 *
4808 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004809 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 */
4811
4812irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4813{
4814 struct ata_host_set *host_set = dev_instance;
4815 unsigned int i;
4816 unsigned int handled = 0;
4817 unsigned long flags;
4818
4819 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4820 spin_lock_irqsave(&host_set->lock, flags);
4821
4822 for (i = 0; i < host_set->n_ports; i++) {
4823 struct ata_port *ap;
4824
4825 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004826 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004827 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 struct ata_queued_cmd *qc;
4829
4830 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004831 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004832 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 handled |= ata_host_intr(ap, qc);
4834 }
4835 }
4836
4837 spin_unlock_irqrestore(&host_set->lock, flags);
4838
4839 return IRQ_RETVAL(handled);
4840}
4841
Tejun Heo34bf2172006-05-15 20:57:46 +09004842/**
4843 * sata_scr_valid - test whether SCRs are accessible
4844 * @ap: ATA port to test SCR accessibility for
4845 *
4846 * Test whether SCRs are accessible for @ap.
4847 *
4848 * LOCKING:
4849 * None.
4850 *
4851 * RETURNS:
4852 * 1 if SCRs are accessible, 0 otherwise.
4853 */
4854int sata_scr_valid(struct ata_port *ap)
4855{
4856 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4857}
4858
4859/**
4860 * sata_scr_read - read SCR register of the specified port
4861 * @ap: ATA port to read SCR for
4862 * @reg: SCR to read
4863 * @val: Place to store read value
4864 *
4865 * Read SCR register @reg of @ap into *@val. This function is
4866 * guaranteed to succeed if the cable type of the port is SATA
4867 * and the port implements ->scr_read.
4868 *
4869 * LOCKING:
4870 * None.
4871 *
4872 * RETURNS:
4873 * 0 on success, negative errno on failure.
4874 */
4875int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4876{
4877 if (sata_scr_valid(ap)) {
4878 *val = ap->ops->scr_read(ap, reg);
4879 return 0;
4880 }
4881 return -EOPNOTSUPP;
4882}
4883
4884/**
4885 * sata_scr_write - write SCR register of the specified port
4886 * @ap: ATA port to write SCR for
4887 * @reg: SCR to write
4888 * @val: value to write
4889 *
4890 * Write @val to SCR register @reg of @ap. This function is
4891 * guaranteed to succeed if the cable type of the port is SATA
4892 * and the port implements ->scr_read.
4893 *
4894 * LOCKING:
4895 * None.
4896 *
4897 * RETURNS:
4898 * 0 on success, negative errno on failure.
4899 */
4900int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4901{
4902 if (sata_scr_valid(ap)) {
4903 ap->ops->scr_write(ap, reg, val);
4904 return 0;
4905 }
4906 return -EOPNOTSUPP;
4907}
4908
4909/**
4910 * sata_scr_write_flush - write SCR register of the specified port and flush
4911 * @ap: ATA port to write SCR for
4912 * @reg: SCR to write
4913 * @val: value to write
4914 *
4915 * This function is identical to sata_scr_write() except that this
4916 * function performs flush after writing to the register.
4917 *
4918 * LOCKING:
4919 * None.
4920 *
4921 * RETURNS:
4922 * 0 on success, negative errno on failure.
4923 */
4924int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4925{
4926 if (sata_scr_valid(ap)) {
4927 ap->ops->scr_write(ap, reg, val);
4928 ap->ops->scr_read(ap, reg);
4929 return 0;
4930 }
4931 return -EOPNOTSUPP;
4932}
4933
4934/**
4935 * ata_port_online - test whether the given port is online
4936 * @ap: ATA port to test
4937 *
4938 * Test whether @ap is online. Note that this function returns 0
4939 * if online status of @ap cannot be obtained, so
4940 * ata_port_online(ap) != !ata_port_offline(ap).
4941 *
4942 * LOCKING:
4943 * None.
4944 *
4945 * RETURNS:
4946 * 1 if the port online status is available and online.
4947 */
4948int ata_port_online(struct ata_port *ap)
4949{
4950 u32 sstatus;
4951
4952 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4953 return 1;
4954 return 0;
4955}
4956
4957/**
4958 * ata_port_offline - test whether the given port is offline
4959 * @ap: ATA port to test
4960 *
4961 * Test whether @ap is offline. Note that this function returns
4962 * 0 if offline status of @ap cannot be obtained, so
4963 * ata_port_online(ap) != !ata_port_offline(ap).
4964 *
4965 * LOCKING:
4966 * None.
4967 *
4968 * RETURNS:
4969 * 1 if the port offline status is available and offline.
4970 */
4971int ata_port_offline(struct ata_port *ap)
4972{
4973 u32 sstatus;
4974
4975 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4976 return 1;
4977 return 0;
4978}
Edward Falk0baab862005-06-02 18:17:13 -04004979
Tejun Heo77b08fb2006-06-24 20:30:19 +09004980int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004981{
Tejun Heo977e6b92006-06-24 20:30:19 +09004982 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01004983 u8 cmd;
4984
4985 if (!ata_try_flush_cache(dev))
4986 return 0;
4987
4988 if (ata_id_has_flush_ext(dev->id))
4989 cmd = ATA_CMD_FLUSH_EXT;
4990 else
4991 cmd = ATA_CMD_FLUSH;
4992
Tejun Heo977e6b92006-06-24 20:30:19 +09004993 err_mask = ata_do_simple_cmd(dev, cmd);
4994 if (err_mask) {
4995 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
4996 return -EIO;
4997 }
4998
4999 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005000}
5001
Tejun Heo3373efd2006-05-15 20:57:53 +09005002static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005003{
Tejun Heo977e6b92006-06-24 20:30:19 +09005004 unsigned int err_mask;
5005
5006 err_mask = ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
5007 if (err_mask) {
5008 ata_dev_printk(dev, KERN_ERR, "failed to standby drive "
5009 "(err_mask=0x%x)\n", err_mask);
5010 return -EIO;
5011 }
5012
5013 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005014}
5015
Tejun Heo3373efd2006-05-15 20:57:53 +09005016static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005017{
Tejun Heo977e6b92006-06-24 20:30:19 +09005018 unsigned int err_mask;
5019
5020 err_mask = ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
5021 if (err_mask) {
5022 ata_dev_printk(dev, KERN_ERR, "failed to start drive "
5023 "(err_mask=0x%x)\n", err_mask);
5024 return -EIO;
5025 }
5026
5027 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005028}
5029
5030/**
5031 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005032 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01005033 *
5034 * Kick the drive back into action, by sending it an idle immediate
5035 * command and making sure its transfer mode matches between drive
5036 * and host.
5037 *
5038 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005039int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005040{
Tejun Heo3373efd2006-05-15 20:57:53 +09005041 struct ata_port *ap = dev->ap;
5042
Jens Axboe9b847542006-01-06 09:28:07 +01005043 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005044 struct ata_device *failed_dev;
Jeff Garzike42d7be2006-05-28 16:32:59 -04005045
Linus Torvalds1cca0eb2006-06-19 18:01:27 -07005046 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Mark Lord0737ac82006-05-28 11:28:00 -04005047 ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 200000);
Jeff Garzike42d7be2006-05-28 16:32:59 -04005048
Jens Axboe9b847542006-01-06 09:28:07 +01005049 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005050 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09005051 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005052 }
Tejun Heoe1211e32006-04-01 01:38:18 +09005053 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005054 return 0;
5055 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005056 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005057
5058 return 0;
5059}
5060
5061/**
5062 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005063 * @dev: the device to suspend
Randy Dunlape2a7f772006-05-18 10:50:18 -07005064 * @state: target power management state
Jens Axboe9b847542006-01-06 09:28:07 +01005065 *
5066 * Flush the cache on the drive, if appropriate, then issue a
5067 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01005068 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005069int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01005070{
Tejun Heo3373efd2006-05-15 20:57:53 +09005071 struct ata_port *ap = dev->ap;
5072
Tejun Heoe1211e32006-04-01 01:38:18 +09005073 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005074 return 0;
5075 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005076 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005077
Nigel Cunningham082776e2006-03-23 23:22:16 +10005078 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09005079 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005080 ap->flags |= ATA_FLAG_SUSPENDED;
5081 return 0;
5082}
5083
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005084/**
5085 * ata_port_start - Set port up for dma.
5086 * @ap: Port to initialize
5087 *
5088 * Called just after data structures for each port are
5089 * initialized. Allocates space for PRD table.
5090 *
5091 * May be used as the port_start() entry in ata_port_operations.
5092 *
5093 * LOCKING:
5094 * Inherited from caller.
5095 */
5096
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097int ata_port_start (struct ata_port *ap)
5098{
Brian King2f1f6102006-03-23 17:30:15 -06005099 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005100 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101
5102 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
5103 if (!ap->prd)
5104 return -ENOMEM;
5105
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005106 rc = ata_pad_alloc(ap, dev);
5107 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005108 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005109 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005110 }
5111
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
5113
5114 return 0;
5115}
5116
Edward Falk0baab862005-06-02 18:17:13 -04005117
5118/**
5119 * ata_port_stop - Undo ata_port_start()
5120 * @ap: Port to shut down
5121 *
5122 * Frees the PRD table.
5123 *
5124 * May be used as the port_stop() entry in ata_port_operations.
5125 *
5126 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005127 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005128 */
5129
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130void ata_port_stop (struct ata_port *ap)
5131{
Brian King2f1f6102006-03-23 17:30:15 -06005132 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133
5134 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005135 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136}
5137
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005138void ata_host_stop (struct ata_host_set *host_set)
5139{
5140 if (host_set->mmio_base)
5141 iounmap(host_set->mmio_base);
5142}
5143
5144
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145/**
5146 * ata_host_remove - Unregister SCSI host structure with upper layers
5147 * @ap: Port to unregister
5148 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
5149 *
5150 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005151 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 */
5153
5154static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
5155{
5156 struct Scsi_Host *sh = ap->host;
5157
5158 DPRINTK("ENTER\n");
5159
5160 if (do_unregister)
5161 scsi_remove_host(sh);
5162
5163 ap->ops->port_stop(ap);
5164}
5165
5166/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005167 * ata_dev_init - Initialize an ata_device structure
5168 * @dev: Device structure to initialize
5169 *
5170 * Initialize @dev in preparation for probing.
5171 *
5172 * LOCKING:
5173 * Inherited from caller.
5174 */
5175void ata_dev_init(struct ata_device *dev)
5176{
5177 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005178 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005179
Tejun Heo5a04bf42006-05-31 18:27:38 +09005180 /* SATA spd limit is bound to the first device */
5181 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5182
Tejun Heo72fa4b72006-05-31 18:27:32 +09005183 /* High bits of dev->flags are used to record warm plug
5184 * requests which occur asynchronously. Synchronize using
5185 * host_set lock.
5186 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005187 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005188 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005189 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005190
5191 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5192 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005193 dev->pio_mask = UINT_MAX;
5194 dev->mwdma_mask = UINT_MAX;
5195 dev->udma_mask = UINT_MAX;
5196}
5197
5198/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 * ata_host_init - Initialize an ata_port structure
5200 * @ap: Structure to initialize
5201 * @host: associated SCSI mid-layer structure
5202 * @host_set: Collection of hosts to which @ap belongs
5203 * @ent: Probe information provided by low-level driver
5204 * @port_no: Port number associated with this ata_port
5205 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005206 * Initialize a new ata_port structure, and its associated
5207 * scsi_host.
5208 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005210 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
5213 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04005214 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215{
5216 unsigned int i;
5217
5218 host->max_id = 16;
5219 host->max_lun = 1;
5220 host->max_channel = 1;
5221 host->unique_id = ata_unique_id++;
5222 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02005223
Jeff Garzikba6a1302006-06-22 23:46:10 -04005224 ap->lock = &host_set->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005225 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 ap->id = host->unique_id;
5227 ap->host = host;
5228 ap->ctl = ATA_DEVCTL_OBS;
5229 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06005230 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 ap->port_no = port_no;
5232 ap->hard_port_no =
5233 ent->legacy_mode ? ent->hard_port_no : port_no;
5234 ap->pio_mask = ent->pio_mask;
5235 ap->mwdma_mask = ent->mwdma_mask;
5236 ap->udma_mask = ent->udma_mask;
5237 ap->flags |= ent->host_flags;
5238 ap->ops = ent->port_ops;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005239 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 ap->active_tag = ATA_TAG_POISON;
5241 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005242
5243#if defined(ATA_VERBOSE_DEBUG)
5244 /* turn on all debugging levels */
5245 ap->msg_enable = 0x00FF;
5246#elif defined(ATA_DEBUG)
5247 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR;
5248#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005249 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005250#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
Tejun Heo86e45b62006-03-05 15:29:09 +09005252 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heo580b21022006-05-31 18:28:05 +09005253 INIT_WORK(&ap->hotplug_task, ata_scsi_hotplug, ap);
zhao, forrest3057ac32006-06-12 12:01:34 +08005254 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan, ap);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005255 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005256 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257
Tejun Heo838df622006-05-15 20:57:44 +09005258 /* set cable type */
5259 ap->cbl = ATA_CBL_NONE;
5260 if (ap->flags & ATA_FLAG_SATA)
5261 ap->cbl = ATA_CBL_SATA;
5262
Tejun Heoacf356b2006-03-24 14:07:50 +09005263 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5264 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005265 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005266 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005267 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269
5270#ifdef ATA_IRQ_TRAP
5271 ap->stats.unhandled_irq = 1;
5272 ap->stats.idle_irq = 1;
5273#endif
5274
5275 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5276}
5277
5278/**
5279 * ata_host_add - Attach low-level ATA driver to system
5280 * @ent: Information provided by low-level driver
5281 * @host_set: Collections of ports to which we add
5282 * @port_no: Port number associated with this host
5283 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005284 * Attach low-level ATA driver to system.
5285 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005287 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 *
5289 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005290 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 */
5292
Jeff Garzik057ace52005-10-22 14:27:05 -04005293static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 struct ata_host_set *host_set,
5295 unsigned int port_no)
5296{
5297 struct Scsi_Host *host;
5298 struct ata_port *ap;
5299 int rc;
5300
5301 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005302
Tejun Heo52783c52006-05-31 18:28:22 +09005303 if (!ent->port_ops->error_handler &&
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005304 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
5305 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5306 port_no);
5307 return NULL;
5308 }
5309
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5311 if (!host)
5312 return NULL;
5313
Tejun Heo30afc842006-03-18 18:40:14 +09005314 host->transportt = &ata_scsi_transport_template;
5315
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005316 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317
5318 ata_host_init(ap, host, host_set, ent, port_no);
5319
5320 rc = ap->ops->port_start(ap);
5321 if (rc)
5322 goto err_out;
5323
5324 return ap;
5325
5326err_out:
5327 scsi_host_put(host);
5328 return NULL;
5329}
5330
5331/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005332 * ata_device_add - Register hardware device with ATA and SCSI layers
5333 * @ent: Probe information describing hardware device to be registered
5334 *
5335 * This function processes the information provided in the probe
5336 * information struct @ent, allocates the necessary ATA and SCSI
5337 * host information structures, initializes them, and registers
5338 * everything with requisite kernel subsystems.
5339 *
5340 * This function requests irqs, probes the ATA bus, and probes
5341 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342 *
5343 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005344 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 *
5346 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005347 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348 */
Jeff Garzik057ace52005-10-22 14:27:05 -04005349int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350{
5351 unsigned int count = 0, i;
5352 struct device *dev = ent->dev;
5353 struct ata_host_set *host_set;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005354 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
5356 DPRINTK("ENTER\n");
5357 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005358 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5360 if (!host_set)
5361 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 spin_lock_init(&host_set->lock);
5363
5364 host_set->dev = dev;
5365 host_set->n_ports = ent->n_ports;
5366 host_set->irq = ent->irq;
5367 host_set->mmio_base = ent->mmio_base;
5368 host_set->private_data = ent->private_data;
5369 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01005370 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371
5372 /* register each port bound to this device */
5373 for (i = 0; i < ent->n_ports; i++) {
5374 struct ata_port *ap;
5375 unsigned long xfer_mode_mask;
5376
5377 ap = ata_host_add(ent, host_set, i);
5378 if (!ap)
5379 goto err_out;
5380
5381 host_set->ports[i] = ap;
5382 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5383 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5384 (ap->pio_mask << ATA_SHIFT_PIO);
5385
5386 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005387 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
5388 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
5389 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5390 ata_mode_string(xfer_mode_mask),
5391 ap->ioaddr.cmd_addr,
5392 ap->ioaddr.ctl_addr,
5393 ap->ioaddr.bmdma_addr,
5394 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395
5396 ata_chk_status(ap);
5397 host_set->ops->irq_clear(ap);
Tejun Heoe3180492006-05-15 20:58:09 +09005398 ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 count++;
5400 }
5401
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005402 if (!count)
5403 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404
5405 /* obtain irq, that is shared between channels */
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005406 rc = request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
5407 DRV_NAME, host_set);
5408 if (rc) {
5409 dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n",
5410 ent->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411 goto err_out;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413
5414 /* perform each probe synchronously */
5415 DPRINTK("probe begin\n");
5416 for (i = 0; i < count; i++) {
5417 struct ata_port *ap;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005418 u32 scontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 int rc;
5420
5421 ap = host_set->ports[i];
5422
Tejun Heo5a04bf42006-05-31 18:27:38 +09005423 /* init sata_spd_limit to the current value */
5424 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
5425 int spd = (scontrol >> 4) & 0xf;
5426 ap->hw_sata_spd_limit &= (1 << spd) - 1;
5427 }
5428 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5429
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430 rc = scsi_add_host(ap->host, dev);
5431 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005432 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 /* FIXME: do something useful here */
5434 /* FIXME: handle unconditional calls to
5435 * scsi_scan_host and ata_host_remove, below,
5436 * at the very least
5437 */
5438 }
Tejun Heo3e706392006-05-31 18:28:11 +09005439
Tejun Heo52783c52006-05-31 18:28:22 +09005440 if (ap->ops->error_handler) {
Tejun Heo3e706392006-05-31 18:28:11 +09005441 unsigned long flags;
5442
5443 ata_port_probe(ap);
5444
5445 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005446 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005447
5448 ap->eh_info.probe_mask = (1 << ATA_MAX_DEVICES) - 1;
5449 ap->eh_info.action |= ATA_EH_SOFTRESET;
5450
5451 ap->flags |= ATA_FLAG_LOADING;
5452 ata_port_schedule_eh(ap);
5453
Jeff Garzikba6a1302006-06-22 23:46:10 -04005454 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005455
5456 /* wait for EH to finish */
5457 ata_port_wait_eh(ap);
5458 } else {
5459 DPRINTK("ata%u: bus probe begin\n", ap->id);
5460 rc = ata_bus_probe(ap);
5461 DPRINTK("ata%u: bus probe end\n", ap->id);
5462
5463 if (rc) {
5464 /* FIXME: do something useful here?
5465 * Current libata behavior will
5466 * tear down everything when
5467 * the module is removed
5468 * or the h/w is unplugged.
5469 */
5470 }
5471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472 }
5473
5474 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005475 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476 for (i = 0; i < count; i++) {
5477 struct ata_port *ap = host_set->ports[i];
5478
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005479 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480 }
5481
5482 dev_set_drvdata(dev, host_set);
5483
5484 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5485 return ent->n_ports; /* success */
5486
5487err_out:
5488 for (i = 0; i < count; i++) {
5489 ata_host_remove(host_set->ports[i], 1);
5490 scsi_host_put(host_set->ports[i]->host);
5491 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005492err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493 kfree(host_set);
5494 VPRINTK("EXIT, returning 0\n");
5495 return 0;
5496}
5497
5498/**
Tejun Heo720ba122006-05-31 18:28:13 +09005499 * ata_port_detach - Detach ATA port in prepration of device removal
5500 * @ap: ATA port to be detached
5501 *
5502 * Detach all ATA devices and the associated SCSI devices of @ap;
5503 * then, remove the associated SCSI host. @ap is guaranteed to
5504 * be quiescent on return from this function.
5505 *
5506 * LOCKING:
5507 * Kernel thread context (may sleep).
5508 */
5509void ata_port_detach(struct ata_port *ap)
5510{
5511 unsigned long flags;
5512 int i;
5513
5514 if (!ap->ops->error_handler)
5515 return;
5516
5517 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005518 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005519 ap->flags |= ATA_FLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005520 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005521
5522 ata_port_wait_eh(ap);
5523
5524 /* EH is now guaranteed to see UNLOADING, so no new device
5525 * will be attached. Disable all existing devices.
5526 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005527 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005528
5529 for (i = 0; i < ATA_MAX_DEVICES; i++)
5530 ata_dev_disable(&ap->device[i]);
5531
Jeff Garzikba6a1302006-06-22 23:46:10 -04005532 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005533
5534 /* Final freeze & EH. All in-flight commands are aborted. EH
5535 * will be skipped and retrials will be terminated with bad
5536 * target.
5537 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005538 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005539 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005540 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005541
5542 ata_port_wait_eh(ap);
5543
5544 /* Flush hotplug task. The sequence is similar to
5545 * ata_port_flush_task().
5546 */
5547 flush_workqueue(ata_aux_wq);
5548 cancel_delayed_work(&ap->hotplug_task);
5549 flush_workqueue(ata_aux_wq);
5550
5551 /* remove the associated SCSI host */
5552 scsi_remove_host(ap->host);
5553}
5554
5555/**
Alan Cox17b14452005-09-15 15:44:00 +01005556 * ata_host_set_remove - PCI layer callback for device removal
5557 * @host_set: ATA host set that was removed
5558 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005559 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005560 * objects.
5561 *
5562 * LOCKING:
5563 * Inherited from calling layer (may sleep).
5564 */
5565
Alan Cox17b14452005-09-15 15:44:00 +01005566void ata_host_set_remove(struct ata_host_set *host_set)
5567{
Alan Cox17b14452005-09-15 15:44:00 +01005568 unsigned int i;
5569
Tejun Heo720ba122006-05-31 18:28:13 +09005570 for (i = 0; i < host_set->n_ports; i++)
5571 ata_port_detach(host_set->ports[i]);
Alan Cox17b14452005-09-15 15:44:00 +01005572
5573 free_irq(host_set->irq, host_set);
5574
5575 for (i = 0; i < host_set->n_ports; i++) {
Tejun Heo720ba122006-05-31 18:28:13 +09005576 struct ata_port *ap = host_set->ports[i];
Alan Cox17b14452005-09-15 15:44:00 +01005577
5578 ata_scsi_release(ap->host);
5579
5580 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5581 struct ata_ioports *ioaddr = &ap->ioaddr;
5582
5583 if (ioaddr->cmd_addr == 0x1f0)
5584 release_region(0x1f0, 8);
5585 else if (ioaddr->cmd_addr == 0x170)
5586 release_region(0x170, 8);
5587 }
5588
5589 scsi_host_put(ap->host);
5590 }
5591
5592 if (host_set->ops->host_stop)
5593 host_set->ops->host_stop(host_set);
5594
5595 kfree(host_set);
5596}
5597
5598/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599 * ata_scsi_release - SCSI layer callback hook for host unload
5600 * @host: libata host to be unloaded
5601 *
5602 * Performs all duties necessary to shut down a libata port...
5603 * Kill port kthread, disable port, and release resources.
5604 *
5605 * LOCKING:
5606 * Inherited from SCSI layer.
5607 *
5608 * RETURNS:
5609 * One.
5610 */
5611
5612int ata_scsi_release(struct Scsi_Host *host)
5613{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005614 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615
5616 DPRINTK("ENTER\n");
5617
5618 ap->ops->port_disable(ap);
5619 ata_host_remove(ap, 0);
5620
5621 DPRINTK("EXIT\n");
5622 return 1;
5623}
5624
5625/**
5626 * ata_std_ports - initialize ioaddr with standard port offsets.
5627 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005628 *
5629 * Utility function which initializes data_addr, error_addr,
5630 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5631 * device_addr, status_addr, and command_addr to standard offsets
5632 * relative to cmd_addr.
5633 *
5634 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 */
Edward Falk0baab862005-06-02 18:17:13 -04005636
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637void ata_std_ports(struct ata_ioports *ioaddr)
5638{
5639 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5640 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5641 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5642 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5643 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5644 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5645 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5646 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5647 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5648 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5649}
5650
Edward Falk0baab862005-06-02 18:17:13 -04005651
Jeff Garzik374b1872005-08-30 05:42:52 -04005652#ifdef CONFIG_PCI
5653
5654void ata_pci_host_stop (struct ata_host_set *host_set)
5655{
5656 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5657
5658 pci_iounmap(pdev, host_set->mmio_base);
5659}
5660
Edward Falk0baab862005-06-02 18:17:13 -04005661/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662 * ata_pci_remove_one - PCI layer callback for device removal
5663 * @pdev: PCI device that was removed
5664 *
5665 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005666 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667 * Handle this by unregistering all objects associated
5668 * with this PCI device. Free those objects. Then finally
5669 * release PCI resources and disable device.
5670 *
5671 * LOCKING:
5672 * Inherited from PCI layer (may sleep).
5673 */
5674
5675void ata_pci_remove_one (struct pci_dev *pdev)
5676{
5677 struct device *dev = pci_dev_to_dev(pdev);
5678 struct ata_host_set *host_set = dev_get_drvdata(dev);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005679 struct ata_host_set *host_set2 = host_set->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
Alan Cox17b14452005-09-15 15:44:00 +01005681 ata_host_set_remove(host_set);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005682 if (host_set2)
5683 ata_host_set_remove(host_set2);
5684
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685 pci_release_regions(pdev);
5686 pci_disable_device(pdev);
5687 dev_set_drvdata(dev, NULL);
5688}
5689
5690/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005691int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692{
5693 unsigned long tmp = 0;
5694
5695 switch (bits->width) {
5696 case 1: {
5697 u8 tmp8 = 0;
5698 pci_read_config_byte(pdev, bits->reg, &tmp8);
5699 tmp = tmp8;
5700 break;
5701 }
5702 case 2: {
5703 u16 tmp16 = 0;
5704 pci_read_config_word(pdev, bits->reg, &tmp16);
5705 tmp = tmp16;
5706 break;
5707 }
5708 case 4: {
5709 u32 tmp32 = 0;
5710 pci_read_config_dword(pdev, bits->reg, &tmp32);
5711 tmp = tmp32;
5712 break;
5713 }
5714
5715 default:
5716 return -EINVAL;
5717 }
5718
5719 tmp &= bits->mask;
5720
5721 return (tmp == bits->val) ? 1 : 0;
5722}
Jens Axboe9b847542006-01-06 09:28:07 +01005723
5724int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5725{
5726 pci_save_state(pdev);
5727 pci_disable_device(pdev);
5728 pci_set_power_state(pdev, PCI_D3hot);
5729 return 0;
5730}
5731
5732int ata_pci_device_resume(struct pci_dev *pdev)
5733{
5734 pci_set_power_state(pdev, PCI_D0);
5735 pci_restore_state(pdev);
5736 pci_enable_device(pdev);
5737 pci_set_master(pdev);
5738 return 0;
5739}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740#endif /* CONFIG_PCI */
5741
5742
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743static int __init ata_init(void)
5744{
Andrew Mortona8601e52006-06-25 01:36:52 -07005745 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746 ata_wq = create_workqueue("ata");
5747 if (!ata_wq)
5748 return -ENOMEM;
5749
Tejun Heo453b07a2006-05-31 18:27:42 +09005750 ata_aux_wq = create_singlethread_workqueue("ata_aux");
5751 if (!ata_aux_wq) {
5752 destroy_workqueue(ata_wq);
5753 return -ENOMEM;
5754 }
5755
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5757 return 0;
5758}
5759
5760static void __exit ata_exit(void)
5761{
5762 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09005763 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764}
5765
5766module_init(ata_init);
5767module_exit(ata_exit);
5768
Jeff Garzik67846b32005-10-05 02:58:32 -04005769static unsigned long ratelimit_time;
5770static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5771
5772int ata_ratelimit(void)
5773{
5774 int rc;
5775 unsigned long flags;
5776
5777 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5778
5779 if (time_after(jiffies, ratelimit_time)) {
5780 rc = 1;
5781 ratelimit_time = jiffies + (HZ/5);
5782 } else
5783 rc = 0;
5784
5785 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5786
5787 return rc;
5788}
5789
Tejun Heoc22daff2006-04-11 22:22:29 +09005790/**
5791 * ata_wait_register - wait until register value changes
5792 * @reg: IO-mapped register
5793 * @mask: Mask to apply to read register value
5794 * @val: Wait condition
5795 * @interval_msec: polling interval in milliseconds
5796 * @timeout_msec: timeout in milliseconds
5797 *
5798 * Waiting for some bits of register to change is a common
5799 * operation for ATA controllers. This function reads 32bit LE
5800 * IO-mapped register @reg and tests for the following condition.
5801 *
5802 * (*@reg & mask) != val
5803 *
5804 * If the condition is met, it returns; otherwise, the process is
5805 * repeated after @interval_msec until timeout.
5806 *
5807 * LOCKING:
5808 * Kernel thread context (may sleep)
5809 *
5810 * RETURNS:
5811 * The final register value.
5812 */
5813u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5814 unsigned long interval_msec,
5815 unsigned long timeout_msec)
5816{
5817 unsigned long timeout;
5818 u32 tmp;
5819
5820 tmp = ioread32(reg);
5821
5822 /* Calculate timeout _after_ the first read to make sure
5823 * preceding writes reach the controller before starting to
5824 * eat away the timeout.
5825 */
5826 timeout = jiffies + (timeout_msec * HZ) / 1000;
5827
5828 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5829 msleep(interval_msec);
5830 tmp = ioread32(reg);
5831 }
5832
5833 return tmp;
5834}
5835
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836/*
5837 * libata is essentially a library of internal helper functions for
5838 * low-level ATA host controller drivers. As such, the API/ABI is
5839 * likely to change as new drivers are added and updated.
5840 * Do not depend on ABI/API stability.
5841 */
5842
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005843EXPORT_SYMBOL_GPL(sata_deb_timing_boot);
5844EXPORT_SYMBOL_GPL(sata_deb_timing_eh);
5845EXPORT_SYMBOL_GPL(sata_deb_timing_before_fsrst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846EXPORT_SYMBOL_GPL(ata_std_bios_param);
5847EXPORT_SYMBOL_GPL(ata_std_ports);
5848EXPORT_SYMBOL_GPL(ata_device_add);
Tejun Heo720ba122006-05-31 18:28:13 +09005849EXPORT_SYMBOL_GPL(ata_port_detach);
Alan Cox17b14452005-09-15 15:44:00 +01005850EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851EXPORT_SYMBOL_GPL(ata_sg_init);
5852EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09005853EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09005854EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005855EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857EXPORT_SYMBOL_GPL(ata_tf_load);
5858EXPORT_SYMBOL_GPL(ata_tf_read);
5859EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5860EXPORT_SYMBOL_GPL(ata_std_dev_select);
5861EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5862EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5863EXPORT_SYMBOL_GPL(ata_check_status);
5864EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865EXPORT_SYMBOL_GPL(ata_exec_command);
5866EXPORT_SYMBOL_GPL(ata_port_start);
5867EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005868EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869EXPORT_SYMBOL_GPL(ata_interrupt);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005870EXPORT_SYMBOL_GPL(ata_mmio_data_xfer);
5871EXPORT_SYMBOL_GPL(ata_pio_data_xfer);
Alan Cox75e99582006-05-24 14:14:41 +01005872EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005874EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5876EXPORT_SYMBOL_GPL(ata_bmdma_start);
5877EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5878EXPORT_SYMBOL_GPL(ata_bmdma_status);
5879EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09005880EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
5881EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
5882EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
5883EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
5884EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005886EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005887EXPORT_SYMBOL_GPL(sata_phy_debounce);
5888EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889EXPORT_SYMBOL_GPL(sata_phy_reset);
5890EXPORT_SYMBOL_GPL(__sata_phy_reset);
5891EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09005892EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005893EXPORT_SYMBOL_GPL(ata_std_softreset);
5894EXPORT_SYMBOL_GPL(sata_std_hardreset);
5895EXPORT_SYMBOL_GPL(ata_std_postreset);
Tejun Heo623a3122006-03-05 17:55:58 +09005896EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005897EXPORT_SYMBOL_GPL(ata_dev_classify);
5898EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005900EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005901EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005902EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005903EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5905EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09005907EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09005908EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909EXPORT_SYMBOL_GPL(ata_scsi_release);
5910EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005911EXPORT_SYMBOL_GPL(sata_scr_valid);
5912EXPORT_SYMBOL_GPL(sata_scr_read);
5913EXPORT_SYMBOL_GPL(sata_scr_write);
5914EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5915EXPORT_SYMBOL_GPL(ata_port_online);
5916EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005917EXPORT_SYMBOL_GPL(ata_id_string);
5918EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5920
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005921EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005922EXPORT_SYMBOL_GPL(ata_timing_compute);
5923EXPORT_SYMBOL_GPL(ata_timing_merge);
5924
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925#ifdef CONFIG_PCI
5926EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005927EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5929EXPORT_SYMBOL_GPL(ata_pci_init_one);
5930EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005931EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5932EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005933EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5934EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005936
5937EXPORT_SYMBOL_GPL(ata_device_suspend);
5938EXPORT_SYMBOL_GPL(ata_device_resume);
5939EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5940EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005941
Tejun Heoece1d632006-04-02 18:51:53 +09005942EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005943EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5944EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09005945EXPORT_SYMBOL_GPL(ata_port_freeze);
5946EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
5947EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09005948EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5949EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09005950EXPORT_SYMBOL_GPL(ata_do_eh);