blob: 1c960ac1617f00665eea8ea8d87f2e0b18af64b5 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/pci.h>
38#include <linux/init.h>
39#include <linux/list.h>
40#include <linux/mm.h>
41#include <linux/highmem.h>
42#include <linux/spinlock.h>
43#include <linux/blkdev.h>
44#include <linux/delay.h>
45#include <linux/timer.h>
46#include <linux/interrupt.h>
47#include <linux/completion.h>
48#include <linux/suspend.h>
49#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040050#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100051#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050054#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <scsi/scsi_host.h>
56#include <linux/libata.h>
57#include <asm/io.h>
58#include <asm/semaphore.h>
59#include <asm/byteorder.h>
60
61#include "libata.h"
62
Tejun Heod7bb4cc2006-05-31 18:27:46 +090063/* debounce timing parameters in msecs { interval, duration, timeout } */
64const unsigned long sata_deb_timing_boot[] = { 5, 100, 2000 };
65const unsigned long sata_deb_timing_eh[] = { 25, 500, 2000 };
66const unsigned long sata_deb_timing_before_fsrst[] = { 100, 2000, 5000 };
67
Tejun Heo3373efd2006-05-15 20:57:53 +090068static unsigned int ata_dev_init_params(struct ata_device *dev,
69 u16 heads, u16 sectors);
70static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
71static void ata_dev_xfermask(struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static unsigned int ata_unique_id = 1;
74static struct workqueue_struct *ata_wq;
75
Tejun Heo453b07a2006-05-31 18:27:42 +090076struct workqueue_struct *ata_aux_wq;
77
Jeff Garzik418dc1f2006-03-11 20:50:08 -050078int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040079module_param(atapi_enabled, int, 0444);
80MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
81
Albert Lee95de7192006-04-04 10:57:18 +080082int atapi_dmadir = 0;
83module_param(atapi_dmadir, int, 0444);
84MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
85
Jeff Garzikc3c013a2006-02-27 22:31:19 -050086int libata_fua = 0;
87module_param_named(fua, libata_fua, int, 0444);
88MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
89
Andrew Mortona8601e52006-06-25 01:36:52 -070090static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
91module_param(ata_probe_timeout, int, 0444);
92MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094MODULE_AUTHOR("Jeff Garzik");
95MODULE_DESCRIPTION("Library module for ATA devices");
96MODULE_LICENSE("GPL");
97MODULE_VERSION(DRV_VERSION);
98
Edward Falk0baab862005-06-02 18:17:13 -040099
100/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
102 * @tf: Taskfile to convert
103 * @fis: Buffer into which data will output
104 * @pmp: Port multiplier port
105 *
106 * Converts a standard ATA taskfile to a Serial ATA
107 * FIS structure (Register - Host to Device).
108 *
109 * LOCKING:
110 * Inherited from caller.
111 */
112
Jeff Garzik057ace52005-10-22 14:27:05 -0400113void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 fis[0] = 0x27; /* Register - Host to Device FIS */
116 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
117 bit 7 indicates Command FIS */
118 fis[2] = tf->command;
119 fis[3] = tf->feature;
120
121 fis[4] = tf->lbal;
122 fis[5] = tf->lbam;
123 fis[6] = tf->lbah;
124 fis[7] = tf->device;
125
126 fis[8] = tf->hob_lbal;
127 fis[9] = tf->hob_lbam;
128 fis[10] = tf->hob_lbah;
129 fis[11] = tf->hob_feature;
130
131 fis[12] = tf->nsect;
132 fis[13] = tf->hob_nsect;
133 fis[14] = 0;
134 fis[15] = tf->ctl;
135
136 fis[16] = 0;
137 fis[17] = 0;
138 fis[18] = 0;
139 fis[19] = 0;
140}
141
142/**
143 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
144 * @fis: Buffer from which data will be input
145 * @tf: Taskfile to output
146 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500147 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 *
149 * LOCKING:
150 * Inherited from caller.
151 */
152
Jeff Garzik057ace52005-10-22 14:27:05 -0400153void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 tf->command = fis[2]; /* status */
156 tf->feature = fis[3]; /* error */
157
158 tf->lbal = fis[4];
159 tf->lbam = fis[5];
160 tf->lbah = fis[6];
161 tf->device = fis[7];
162
163 tf->hob_lbal = fis[8];
164 tf->hob_lbam = fis[9];
165 tf->hob_lbah = fis[10];
166
167 tf->nsect = fis[12];
168 tf->hob_nsect = fis[13];
169}
170
Albert Lee8cbd6df2005-10-12 15:06:27 +0800171static const u8 ata_rw_cmds[] = {
172 /* pio multi */
173 ATA_CMD_READ_MULTI,
174 ATA_CMD_WRITE_MULTI,
175 ATA_CMD_READ_MULTI_EXT,
176 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100177 0,
178 0,
179 0,
180 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800181 /* pio */
182 ATA_CMD_PIO_READ,
183 ATA_CMD_PIO_WRITE,
184 ATA_CMD_PIO_READ_EXT,
185 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100186 0,
187 0,
188 0,
189 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800190 /* dma */
191 ATA_CMD_READ,
192 ATA_CMD_WRITE,
193 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100194 ATA_CMD_WRITE_EXT,
195 0,
196 0,
197 0,
198 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800199};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800202 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
203 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500205 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800206 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
208 * LOCKING:
209 * caller.
210 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100211int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800213 struct ata_taskfile *tf = &qc->tf;
214 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100215 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100217 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500218
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100219 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800220 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
221 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Albert Lee8cbd6df2005-10-12 15:06:27 +0800223 if (dev->flags & ATA_DFLAG_PIO) {
224 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100225 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000226 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
227 /* Unable to use DMA due to host limitation */
228 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800229 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800230 } else {
231 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100232 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100235 cmd = ata_rw_cmds[index + fua + lba48 + write];
236 if (cmd) {
237 tf->command = cmd;
238 return 0;
239 }
240 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Tejun Heocb95d562006-03-06 04:31:56 +0900243/**
244 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
245 * @pio_mask: pio_mask
246 * @mwdma_mask: mwdma_mask
247 * @udma_mask: udma_mask
248 *
249 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
250 * unsigned int xfer_mask.
251 *
252 * LOCKING:
253 * None.
254 *
255 * RETURNS:
256 * Packed xfer_mask.
257 */
258static unsigned int ata_pack_xfermask(unsigned int pio_mask,
259 unsigned int mwdma_mask,
260 unsigned int udma_mask)
261{
262 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
263 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
264 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
265}
266
Tejun Heoc0489e42006-03-24 14:07:49 +0900267/**
268 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
269 * @xfer_mask: xfer_mask to unpack
270 * @pio_mask: resulting pio_mask
271 * @mwdma_mask: resulting mwdma_mask
272 * @udma_mask: resulting udma_mask
273 *
274 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
275 * Any NULL distination masks will be ignored.
276 */
277static void ata_unpack_xfermask(unsigned int xfer_mask,
278 unsigned int *pio_mask,
279 unsigned int *mwdma_mask,
280 unsigned int *udma_mask)
281{
282 if (pio_mask)
283 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
284 if (mwdma_mask)
285 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
286 if (udma_mask)
287 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
288}
289
Tejun Heocb95d562006-03-06 04:31:56 +0900290static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900291 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900292 u8 base;
293} ata_xfer_tbl[] = {
294 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
295 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
296 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
297 { -1, },
298};
299
300/**
301 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
302 * @xfer_mask: xfer_mask of interest
303 *
304 * Return matching XFER_* value for @xfer_mask. Only the highest
305 * bit of @xfer_mask is considered.
306 *
307 * LOCKING:
308 * None.
309 *
310 * RETURNS:
311 * Matching XFER_* value, 0 if no match found.
312 */
313static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
314{
315 int highbit = fls(xfer_mask) - 1;
316 const struct ata_xfer_ent *ent;
317
318 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
319 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
320 return ent->base + highbit - ent->shift;
321 return 0;
322}
323
324/**
325 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
326 * @xfer_mode: XFER_* of interest
327 *
328 * Return matching xfer_mask for @xfer_mode.
329 *
330 * LOCKING:
331 * None.
332 *
333 * RETURNS:
334 * Matching xfer_mask, 0 if no match found.
335 */
336static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
337{
338 const struct ata_xfer_ent *ent;
339
340 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
341 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
342 return 1 << (ent->shift + xfer_mode - ent->base);
343 return 0;
344}
345
346/**
347 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
348 * @xfer_mode: XFER_* of interest
349 *
350 * Return matching xfer_shift for @xfer_mode.
351 *
352 * LOCKING:
353 * None.
354 *
355 * RETURNS:
356 * Matching xfer_shift, -1 if no match found.
357 */
358static int ata_xfer_mode2shift(unsigned int xfer_mode)
359{
360 const struct ata_xfer_ent *ent;
361
362 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
363 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
364 return ent->shift;
365 return -1;
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900369 * ata_mode_string - convert xfer_mask to string
370 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 *
372 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900373 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 *
375 * LOCKING:
376 * None.
377 *
378 * RETURNS:
379 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900380 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900382static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Tejun Heo75f554b2006-03-06 04:31:57 +0900384 static const char * const xfer_mode_str[] = {
385 "PIO0",
386 "PIO1",
387 "PIO2",
388 "PIO3",
389 "PIO4",
390 "MWDMA0",
391 "MWDMA1",
392 "MWDMA2",
393 "UDMA/16",
394 "UDMA/25",
395 "UDMA/33",
396 "UDMA/44",
397 "UDMA/66",
398 "UDMA/100",
399 "UDMA/133",
400 "UDMA7",
401 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900402 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900404 highbit = fls(xfer_mask) - 1;
405 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
406 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Tejun Heo4c360c82006-04-01 01:38:17 +0900410static const char *sata_spd_string(unsigned int spd)
411{
412 static const char * const spd_str[] = {
413 "1.5 Gbps",
414 "3.0 Gbps",
415 };
416
417 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
418 return "<unknown>";
419 return spd_str[spd - 1];
420}
421
Tejun Heo3373efd2006-05-15 20:57:53 +0900422void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900423{
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400424 if (ata_dev_enabled(dev) && ata_msg_drv(dev->ap)) {
Tejun Heof15a1da2006-05-15 20:57:56 +0900425 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo0b8efb02006-03-24 15:25:31 +0900426 dev->class++;
427 }
428}
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/**
431 * ata_pio_devchk - PATA device presence detection
432 * @ap: ATA channel to examine
433 * @device: Device to examine (starting at zero)
434 *
435 * This technique was originally described in
436 * Hale Landis's ATADRVR (www.ata-atapi.com), and
437 * later found its way into the ATA/ATAPI spec.
438 *
439 * Write a pattern to the ATA shadow registers,
440 * and if a device is present, it will respond by
441 * correctly storing and echoing back the
442 * ATA shadow register contents.
443 *
444 * LOCKING:
445 * caller.
446 */
447
448static unsigned int ata_pio_devchk(struct ata_port *ap,
449 unsigned int device)
450{
451 struct ata_ioports *ioaddr = &ap->ioaddr;
452 u8 nsect, lbal;
453
454 ap->ops->dev_select(ap, device);
455
456 outb(0x55, ioaddr->nsect_addr);
457 outb(0xaa, ioaddr->lbal_addr);
458
459 outb(0xaa, ioaddr->nsect_addr);
460 outb(0x55, ioaddr->lbal_addr);
461
462 outb(0x55, ioaddr->nsect_addr);
463 outb(0xaa, ioaddr->lbal_addr);
464
465 nsect = inb(ioaddr->nsect_addr);
466 lbal = inb(ioaddr->lbal_addr);
467
468 if ((nsect == 0x55) && (lbal == 0xaa))
469 return 1; /* we found a device */
470
471 return 0; /* nothing found */
472}
473
474/**
475 * ata_mmio_devchk - PATA device presence detection
476 * @ap: ATA channel to examine
477 * @device: Device to examine (starting at zero)
478 *
479 * This technique was originally described in
480 * Hale Landis's ATADRVR (www.ata-atapi.com), and
481 * later found its way into the ATA/ATAPI spec.
482 *
483 * Write a pattern to the ATA shadow registers,
484 * and if a device is present, it will respond by
485 * correctly storing and echoing back the
486 * ATA shadow register contents.
487 *
488 * LOCKING:
489 * caller.
490 */
491
492static unsigned int ata_mmio_devchk(struct ata_port *ap,
493 unsigned int device)
494{
495 struct ata_ioports *ioaddr = &ap->ioaddr;
496 u8 nsect, lbal;
497
498 ap->ops->dev_select(ap, device);
499
500 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
501 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
502
503 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
504 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
505
506 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
507 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
508
509 nsect = readb((void __iomem *) ioaddr->nsect_addr);
510 lbal = readb((void __iomem *) ioaddr->lbal_addr);
511
512 if ((nsect == 0x55) && (lbal == 0xaa))
513 return 1; /* we found a device */
514
515 return 0; /* nothing found */
516}
517
518/**
519 * ata_devchk - PATA device presence detection
520 * @ap: ATA channel to examine
521 * @device: Device to examine (starting at zero)
522 *
523 * Dispatch ATA device presence detection, depending
524 * on whether we are using PIO or MMIO to talk to the
525 * ATA shadow registers.
526 *
527 * LOCKING:
528 * caller.
529 */
530
531static unsigned int ata_devchk(struct ata_port *ap,
532 unsigned int device)
533{
534 if (ap->flags & ATA_FLAG_MMIO)
535 return ata_mmio_devchk(ap, device);
536 return ata_pio_devchk(ap, device);
537}
538
539/**
540 * ata_dev_classify - determine device type based on ATA-spec signature
541 * @tf: ATA taskfile register set for device to be identified
542 *
543 * Determine from taskfile register contents whether a device is
544 * ATA or ATAPI, as per "Signature and persistence" section
545 * of ATA/PI spec (volume 1, sect 5.14).
546 *
547 * LOCKING:
548 * None.
549 *
550 * RETURNS:
551 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
552 * the event of failure.
553 */
554
Jeff Garzik057ace52005-10-22 14:27:05 -0400555unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 /* Apple's open source Darwin code hints that some devices only
558 * put a proper signature into the LBA mid/high registers,
559 * So, we only check those. It's sufficient for uniqueness.
560 */
561
562 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
563 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
564 DPRINTK("found ATA device by sig\n");
565 return ATA_DEV_ATA;
566 }
567
568 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
569 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
570 DPRINTK("found ATAPI device by sig\n");
571 return ATA_DEV_ATAPI;
572 }
573
574 DPRINTK("unknown device\n");
575 return ATA_DEV_UNKNOWN;
576}
577
578/**
579 * ata_dev_try_classify - Parse returned ATA device signature
580 * @ap: ATA channel to examine
581 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900582 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 *
584 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
585 * an ATA/ATAPI-defined set of values is placed in the ATA
586 * shadow registers, indicating the results of device detection
587 * and diagnostics.
588 *
589 * Select the ATA device, and read the values from the ATA shadow
590 * registers. Then parse according to the Error register value,
591 * and the spec-defined values examined by ata_dev_classify().
592 *
593 * LOCKING:
594 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900595 *
596 * RETURNS:
597 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
599
Tejun Heob4dc7622006-01-24 17:05:22 +0900600static unsigned int
601ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 struct ata_taskfile tf;
604 unsigned int class;
605 u8 err;
606
607 ap->ops->dev_select(ap, device);
608
609 memset(&tf, 0, sizeof(tf));
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400612 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900613 if (r_err)
614 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 /* see if device passed diags */
617 if (err == 1)
618 /* do nothing */ ;
619 else if ((device == 0) && (err == 0x81))
620 /* do nothing */ ;
621 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900622 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Tejun Heob4dc7622006-01-24 17:05:22 +0900624 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900628 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900630 return ATA_DEV_NONE;
631 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900635 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * @id: IDENTIFY DEVICE results we will examine
637 * @s: string into which data is output
638 * @ofs: offset into identify device page
639 * @len: length of string to return. must be an even number.
640 *
641 * The strings in the IDENTIFY DEVICE page are broken up into
642 * 16-bit chunks. Run through the string, and output each
643 * 8-bit chunk linearly, regardless of platform.
644 *
645 * LOCKING:
646 * caller.
647 */
648
Tejun Heo6a62a042006-02-13 10:02:46 +0900649void ata_id_string(const u16 *id, unsigned char *s,
650 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 unsigned int c;
653
654 while (len > 0) {
655 c = id[ofs] >> 8;
656 *s = c;
657 s++;
658
659 c = id[ofs] & 0xff;
660 *s = c;
661 s++;
662
663 ofs++;
664 len -= 2;
665 }
666}
667
Tejun Heo0e949ff2006-02-12 22:47:04 +0900668/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900669 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900670 * @id: IDENTIFY DEVICE results we will examine
671 * @s: string into which data is output
672 * @ofs: offset into identify device page
673 * @len: length of string to return. must be an odd number.
674 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900675 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900676 * trims trailing spaces and terminates the resulting string with
677 * null. @len must be actual maximum length (even number) + 1.
678 *
679 * LOCKING:
680 * caller.
681 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900682void ata_id_c_string(const u16 *id, unsigned char *s,
683 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900684{
685 unsigned char *p;
686
687 WARN_ON(!(len & 1));
688
Tejun Heo6a62a042006-02-13 10:02:46 +0900689 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900690
691 p = s + strnlen(s, len - 1);
692 while (p > s && p[-1] == ' ')
693 p--;
694 *p = '\0';
695}
Edward Falk0baab862005-06-02 18:17:13 -0400696
Tejun Heo29407402006-02-12 22:47:04 +0900697static u64 ata_id_n_sectors(const u16 *id)
698{
699 if (ata_id_has_lba(id)) {
700 if (ata_id_has_lba48(id))
701 return ata_id_u64(id, 100);
702 else
703 return ata_id_u32(id, 60);
704 } else {
705 if (ata_id_current_chs_valid(id))
706 return ata_id_u32(id, 57);
707 else
708 return id[1] * id[3] * id[6];
709 }
710}
711
Edward Falk0baab862005-06-02 18:17:13 -0400712/**
713 * ata_noop_dev_select - Select device 0/1 on ATA bus
714 * @ap: ATA channel to manipulate
715 * @device: ATA device (numbered from zero) to select
716 *
717 * This function performs no actual function.
718 *
719 * May be used as the dev_select() entry in ata_port_operations.
720 *
721 * LOCKING:
722 * caller.
723 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
725{
726}
727
Edward Falk0baab862005-06-02 18:17:13 -0400728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729/**
730 * ata_std_dev_select - Select device 0/1 on ATA bus
731 * @ap: ATA channel to manipulate
732 * @device: ATA device (numbered from zero) to select
733 *
734 * Use the method defined in the ATA specification to
735 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400736 * ATA channel. Works with both PIO and MMIO.
737 *
738 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 *
740 * LOCKING:
741 * caller.
742 */
743
744void ata_std_dev_select (struct ata_port *ap, unsigned int device)
745{
746 u8 tmp;
747
748 if (device == 0)
749 tmp = ATA_DEVICE_OBS;
750 else
751 tmp = ATA_DEVICE_OBS | ATA_DEV1;
752
753 if (ap->flags & ATA_FLAG_MMIO) {
754 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
755 } else {
756 outb(tmp, ap->ioaddr.device_addr);
757 }
758 ata_pause(ap); /* needed; also flushes, for mmio */
759}
760
761/**
762 * ata_dev_select - Select device 0/1 on ATA bus
763 * @ap: ATA channel to manipulate
764 * @device: ATA device (numbered from zero) to select
765 * @wait: non-zero to wait for Status register BSY bit to clear
766 * @can_sleep: non-zero if context allows sleeping
767 *
768 * Use the method defined in the ATA specification to
769 * make either device 0, or device 1, active on the
770 * ATA channel.
771 *
772 * This is a high-level version of ata_std_dev_select(),
773 * which additionally provides the services of inserting
774 * the proper pauses and status polling, where needed.
775 *
776 * LOCKING:
777 * caller.
778 */
779
780void ata_dev_select(struct ata_port *ap, unsigned int device,
781 unsigned int wait, unsigned int can_sleep)
782{
Tejun Heo88574552006-06-25 20:00:35 +0900783 if (ata_msg_probe(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400784 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, ata%u: "
Tejun Heo88574552006-06-25 20:00:35 +0900785 "device %u, wait %u\n", ap->id, device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (wait)
788 ata_wait_idle(ap);
789
790 ap->ops->dev_select(ap, device);
791
792 if (wait) {
793 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
794 msleep(150);
795 ata_wait_idle(ap);
796 }
797}
798
799/**
800 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900801 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900803 * Dump selected 16-bit words from the given IDENTIFY DEVICE
804 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 *
806 * LOCKING:
807 * caller.
808 */
809
Tejun Heo0bd33002006-02-12 22:47:05 +0900810static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 DPRINTK("49==0x%04x "
813 "53==0x%04x "
814 "63==0x%04x "
815 "64==0x%04x "
816 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900817 id[49],
818 id[53],
819 id[63],
820 id[64],
821 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 DPRINTK("80==0x%04x "
823 "81==0x%04x "
824 "82==0x%04x "
825 "83==0x%04x "
826 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900827 id[80],
828 id[81],
829 id[82],
830 id[83],
831 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 DPRINTK("88==0x%04x "
833 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900834 id[88],
835 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
Tejun Heocb95d562006-03-06 04:31:56 +0900838/**
839 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
840 * @id: IDENTIFY data to compute xfer mask from
841 *
842 * Compute the xfermask for this device. This is not as trivial
843 * as it seems if we must consider early devices correctly.
844 *
845 * FIXME: pre IDE drive timing (do we care ?).
846 *
847 * LOCKING:
848 * None.
849 *
850 * RETURNS:
851 * Computed xfermask
852 */
853static unsigned int ata_id_xfermask(const u16 *id)
854{
855 unsigned int pio_mask, mwdma_mask, udma_mask;
856
857 /* Usual case. Word 53 indicates word 64 is valid */
858 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
859 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
860 pio_mask <<= 3;
861 pio_mask |= 0x7;
862 } else {
863 /* If word 64 isn't valid then Word 51 high byte holds
864 * the PIO timing number for the maximum. Turn it into
865 * a mask.
866 */
867 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
868
869 /* But wait.. there's more. Design your standards by
870 * committee and you too can get a free iordy field to
871 * process. However its the speeds not the modes that
872 * are supported... Note drivers using the timing API
873 * will get this right anyway
874 */
875 }
876
877 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900878
879 udma_mask = 0;
880 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
881 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900882
883 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
884}
885
Tejun Heo86e45b62006-03-05 15:29:09 +0900886/**
887 * ata_port_queue_task - Queue port_task
888 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -0700889 * @fn: workqueue function to be scheduled
890 * @data: data value to pass to workqueue function
891 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +0900892 *
893 * Schedule @fn(@data) for execution after @delay jiffies using
894 * port_task. There is one port_task per port and it's the
895 * user(low level driver)'s responsibility to make sure that only
896 * one task is active at any given time.
897 *
898 * libata core layer takes care of synchronization between
899 * port_task and EH. ata_port_queue_task() may be ignored for EH
900 * synchronization.
901 *
902 * LOCKING:
903 * Inherited from caller.
904 */
905void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
906 unsigned long delay)
907{
908 int rc;
909
Tejun Heo2e755f62006-03-05 15:29:09 +0900910 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900911 return;
912
913 PREPARE_WORK(&ap->port_task, fn, data);
914
915 if (!delay)
916 rc = queue_work(ata_wq, &ap->port_task);
917 else
918 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
919
920 /* rc == 0 means that another user is using port task */
921 WARN_ON(rc == 0);
922}
923
924/**
925 * ata_port_flush_task - Flush port_task
926 * @ap: The ata_port to flush port_task for
927 *
928 * After this function completes, port_task is guranteed not to
929 * be running or scheduled.
930 *
931 * LOCKING:
932 * Kernel thread context (may sleep)
933 */
934void ata_port_flush_task(struct ata_port *ap)
935{
936 unsigned long flags;
937
938 DPRINTK("ENTER\n");
939
Jeff Garzikba6a1302006-06-22 23:46:10 -0400940 spin_lock_irqsave(ap->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900941 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -0400942 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +0900943
944 DPRINTK("flush #1\n");
945 flush_workqueue(ata_wq);
946
947 /*
948 * At this point, if a task is running, it's guaranteed to see
949 * the FLUSH flag; thus, it will never queue pio tasks again.
950 * Cancel and flush.
951 */
952 if (!cancel_delayed_work(&ap->port_task)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400953 if (ata_msg_ctl(ap))
Tejun Heo88574552006-06-25 20:00:35 +0900954 ata_port_printk(ap, KERN_DEBUG, "%s: flush #2\n",
955 __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +0900956 flush_workqueue(ata_wq);
957 }
958
Jeff Garzikba6a1302006-06-22 23:46:10 -0400959 spin_lock_irqsave(ap->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900960 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -0400961 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +0900962
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400963 if (ata_msg_ctl(ap))
964 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +0900965}
966
Tejun Heo77853bf2006-01-23 13:09:36 +0900967void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900968{
Tejun Heo77853bf2006-01-23 13:09:36 +0900969 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900970
Tejun Heoa2a7a662005-12-13 14:48:31 +0900971 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900972}
973
974/**
975 * ata_exec_internal - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900976 * @dev: Device to which the command is sent
977 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900978 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900979 * @dma_dir: Data tranfer direction of the command
980 * @buf: Data buffer of the command
981 * @buflen: Length of data buffer
982 *
983 * Executes libata internal command with timeout. @tf contains
984 * command on entry and result on return. Timeout and error
985 * conditions are reported via return value. No recovery action
986 * is taken after a command times out. It's caller's duty to
987 * clean up after timeout.
988 *
989 * LOCKING:
990 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +0900991 *
992 * RETURNS:
993 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +0900994 */
Tejun Heo3373efd2006-05-15 20:57:53 +0900995unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900996 struct ata_taskfile *tf, const u8 *cdb,
997 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900998{
Tejun Heo3373efd2006-05-15 20:57:53 +0900999 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001000 u8 command = tf->command;
1001 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001002 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001003 u32 preempted_sactive, preempted_qc_active;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001004 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001005 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001006 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001007 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001008
Jeff Garzikba6a1302006-06-22 23:46:10 -04001009 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001010
Tejun Heoe3180492006-05-15 20:58:09 +09001011 /* no internal command while frozen */
1012 if (ap->flags & ATA_FLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001013 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001014 return AC_ERR_SYSTEM;
1015 }
1016
Tejun Heo2ab7db12006-05-15 20:58:02 +09001017 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001018
Tejun Heo2ab7db12006-05-15 20:58:02 +09001019 /* XXX: Tag 0 is used for drivers with legacy EH as some
1020 * drivers choke if any other tag is given. This breaks
1021 * ata_tag_internal() test for those drivers. Don't use new
1022 * EH stuff without converting to it.
1023 */
1024 if (ap->ops->error_handler)
1025 tag = ATA_TAG_INTERNAL;
1026 else
1027 tag = 0;
1028
Tejun Heo6cec4a32006-05-15 21:03:41 +09001029 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001030 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001031 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001032
1033 qc->tag = tag;
1034 qc->scsicmd = NULL;
1035 qc->ap = ap;
1036 qc->dev = dev;
1037 ata_qc_reinit(qc);
1038
1039 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001040 preempted_sactive = ap->sactive;
1041 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001042 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001043 ap->sactive = 0;
1044 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001045
1046 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001047 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001048 if (cdb)
1049 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001050 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001051 qc->dma_dir = dma_dir;
1052 if (dma_dir != DMA_NONE) {
1053 ata_sg_init_one(qc, buf, buflen);
1054 qc->nsect = buflen / ATA_SECT_SIZE;
1055 }
1056
Tejun Heo77853bf2006-01-23 13:09:36 +09001057 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001058 qc->complete_fn = ata_qc_complete_internal;
1059
Tejun Heo8e0e6942006-03-31 20:41:11 +09001060 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001061
Jeff Garzikba6a1302006-06-22 23:46:10 -04001062 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001063
Andrew Mortona8601e52006-06-25 01:36:52 -07001064 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001065
Tejun Heod95a7172006-05-15 20:58:14 +09001066 ata_port_flush_task(ap);
1067
1068 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001069 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001070
1071 /* We're racing with irq here. If we lose, the
1072 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001073 * twice. If we win, the port is frozen and will be
1074 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001075 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001076 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001077 qc->err_mask |= AC_ERR_TIMEOUT;
1078
1079 if (ap->ops->error_handler)
1080 ata_port_freeze(ap);
1081 else
1082 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001083
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001084 if (ata_msg_warn(ap))
1085 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001086 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001087 }
1088
Jeff Garzikba6a1302006-06-22 23:46:10 -04001089 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001090 }
1091
Tejun Heod95a7172006-05-15 20:58:14 +09001092 /* do post_internal_cmd */
1093 if (ap->ops->post_internal_cmd)
1094 ap->ops->post_internal_cmd(qc);
1095
1096 if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001097 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001098 ata_dev_printk(dev, KERN_WARNING,
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001099 "zero err_mask for failed "
Tejun Heo88574552006-06-25 20:00:35 +09001100 "internal command, assuming AC_ERR_OTHER\n");
Tejun Heod95a7172006-05-15 20:58:14 +09001101 qc->err_mask |= AC_ERR_OTHER;
1102 }
1103
Tejun Heo15869302006-05-15 20:57:33 +09001104 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001105 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001106
Tejun Heoe61e0672006-05-15 20:57:40 +09001107 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001108 err_mask = qc->err_mask;
1109
1110 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001111 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001112 ap->sactive = preempted_sactive;
1113 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001114
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001115 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1116 * Until those drivers are fixed, we detect the condition
1117 * here, fail the command with AC_ERR_SYSTEM and reenable the
1118 * port.
1119 *
1120 * Note that this doesn't change any behavior as internal
1121 * command failure results in disabling the device in the
1122 * higher layer for LLDDs without new reset/EH callbacks.
1123 *
1124 * Kill the following code as soon as those drivers are fixed.
1125 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001126 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001127 err_mask |= AC_ERR_SYSTEM;
1128 ata_port_probe(ap);
1129 }
1130
Jeff Garzikba6a1302006-06-22 23:46:10 -04001131 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001132
Tejun Heo77853bf2006-01-23 13:09:36 +09001133 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001134}
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001137 * ata_do_simple_cmd - execute simple internal command
1138 * @dev: Device to which the command is sent
1139 * @cmd: Opcode to execute
1140 *
1141 * Execute a 'simple' command, that only consists of the opcode
1142 * 'cmd' itself, without filling any other registers
1143 *
1144 * LOCKING:
1145 * Kernel thread context (may sleep).
1146 *
1147 * RETURNS:
1148 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001149 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001150unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001151{
1152 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001153
1154 ata_tf_init(dev, &tf);
1155
1156 tf.command = cmd;
1157 tf.flags |= ATA_TFLAG_DEVICE;
1158 tf.protocol = ATA_PROT_NODATA;
1159
Tejun Heo977e6b92006-06-24 20:30:19 +09001160 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001161}
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001164 * ata_pio_need_iordy - check if iordy needed
1165 * @adev: ATA device
1166 *
1167 * Check if the current speed of the device requires IORDY. Used
1168 * by various controllers for chip configuration.
1169 */
1170
1171unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1172{
1173 int pio;
1174 int speed = adev->pio_mode - XFER_PIO_0;
1175
1176 if (speed < 2)
1177 return 0;
1178 if (speed > 2)
1179 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001180
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001181 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1182
1183 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1184 pio = adev->id[ATA_ID_EIDE_PIO];
1185 /* Is the speed faster than the drive allows non IORDY ? */
1186 if (pio) {
1187 /* This is cycle times not frequency - watch the logic! */
1188 if (pio > 240) /* PIO2 is 240nS per cycle */
1189 return 1;
1190 return 0;
1191 }
1192 }
1193 return 0;
1194}
1195
1196/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001197 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001198 * @dev: target device
1199 * @p_class: pointer to class of the target device (may be changed)
1200 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001201 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001202 *
1203 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1204 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001205 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1206 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001207 *
1208 * LOCKING:
1209 * Kernel thread context (may sleep)
1210 *
1211 * RETURNS:
1212 * 0 on success, -errno otherwise.
1213 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001214int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1215 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001216{
Tejun Heo3373efd2006-05-15 20:57:53 +09001217 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001218 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001219 struct ata_taskfile tf;
1220 unsigned int err_mask = 0;
1221 const char *reason;
1222 int rc;
1223
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001224 if (ata_msg_ctl(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001225 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1226 __FUNCTION__, ap->id, dev->devno);
Tejun Heo49016ac2006-02-21 02:12:11 +09001227
Tejun Heo49016ac2006-02-21 02:12:11 +09001228 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1229
1230 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001231 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001232
1233 switch (class) {
1234 case ATA_DEV_ATA:
1235 tf.command = ATA_CMD_ID_ATA;
1236 break;
1237 case ATA_DEV_ATAPI:
1238 tf.command = ATA_CMD_ID_ATAPI;
1239 break;
1240 default:
1241 rc = -ENODEV;
1242 reason = "unsupported class";
1243 goto err_out;
1244 }
1245
1246 tf.protocol = ATA_PROT_PIO;
1247
Tejun Heo3373efd2006-05-15 20:57:53 +09001248 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001249 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001250 if (err_mask) {
1251 rc = -EIO;
1252 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001253 goto err_out;
1254 }
1255
1256 swap_buf_le16(id, ATA_ID_WORDS);
1257
Tejun Heo49016ac2006-02-21 02:12:11 +09001258 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001259 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001260 rc = -EINVAL;
1261 reason = "device reports illegal type";
1262 goto err_out;
1263 }
1264
1265 if (post_reset && class == ATA_DEV_ATA) {
1266 /*
1267 * The exact sequence expected by certain pre-ATA4 drives is:
1268 * SRST RESET
1269 * IDENTIFY
1270 * INITIALIZE DEVICE PARAMETERS
1271 * anything else..
1272 * Some drives were very specific about that exact sequence.
1273 */
1274 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001275 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001276 if (err_mask) {
1277 rc = -EIO;
1278 reason = "INIT_DEV_PARAMS failed";
1279 goto err_out;
1280 }
1281
1282 /* current CHS translation info (id[53-58]) might be
1283 * changed. reread the identify device info.
1284 */
1285 post_reset = 0;
1286 goto retry;
1287 }
1288 }
1289
1290 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001291
Tejun Heo49016ac2006-02-21 02:12:11 +09001292 return 0;
1293
1294 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001295 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001296 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001297 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001298 return rc;
1299}
1300
Tejun Heo3373efd2006-05-15 20:57:53 +09001301static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001302{
Tejun Heo3373efd2006-05-15 20:57:53 +09001303 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001304}
1305
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001306static void ata_dev_config_ncq(struct ata_device *dev,
1307 char *desc, size_t desc_sz)
1308{
1309 struct ata_port *ap = dev->ap;
1310 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1311
1312 if (!ata_id_has_ncq(dev->id)) {
1313 desc[0] = '\0';
1314 return;
1315 }
1316
1317 if (ap->flags & ATA_FLAG_NCQ) {
1318 hdepth = min(ap->host->can_queue, ATA_MAX_QUEUE - 1);
1319 dev->flags |= ATA_DFLAG_NCQ;
1320 }
1321
1322 if (hdepth >= ddepth)
1323 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1324 else
1325 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1326}
1327
Tejun Heo49016ac2006-02-21 02:12:11 +09001328/**
Tejun Heoffeae412006-03-01 16:09:35 +09001329 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001330 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001331 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 *
Tejun Heoffeae412006-03-01 16:09:35 +09001333 * Configure @dev according to @dev->id. Generic and low-level
1334 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 *
1336 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001337 * Kernel thread context (may sleep)
1338 *
1339 * RETURNS:
1340 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001342int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Tejun Heo3373efd2006-05-15 20:57:53 +09001344 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001345 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001346 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001347 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001349 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo88574552006-06-25 20:00:35 +09001350 ata_dev_printk(dev, KERN_INFO,
1351 "%s: ENTER/EXIT (host %u, dev %u) -- nodev\n",
1352 __FUNCTION__, ap->id, dev->devno);
Tejun Heoffeae412006-03-01 16:09:35 +09001353 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
1355
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001356 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001357 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1358 __FUNCTION__, ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001360 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001361 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001362 ata_dev_printk(dev, KERN_DEBUG,
1363 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1364 "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,
Tejun Heo88574552006-06-25 20:00:35 +09001436 dev->cylinders, dev->heads,
1437 dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
1439
Albert Lee07f6f7d2005-11-01 19:33:20 +08001440 if (dev->id[59] & 0x100) {
1441 dev->multi_count = dev->id[59] & 0xff;
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001442 if (ata_msg_info(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001443 ata_dev_printk(dev, KERN_INFO,
1444 "ata%u: dev %u multi count %u\n",
1445 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001446 }
1447
Tejun Heo6e7846e2006-02-12 23:32:58 +09001448 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450
1451 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001452 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001453 char *cdb_intr_string = "";
1454
Tejun Heo1148c3a2006-03-13 19:48:04 +09001455 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001457 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001458 ata_dev_printk(dev, KERN_WARNING,
1459 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001460 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 goto err_out_nosup;
1462 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001463 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Albert Lee08a556d2006-03-31 13:29:04 +08001465 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001466 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001467 cdb_intr_string = ", CDB intr";
1468 }
Albert Lee312f7da2005-09-27 17:38:03 +08001469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001471 if (ata_msg_info(ap))
Tejun Heo12436c32006-05-15 20:59:15 +09001472 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1473 ata_mode_string(xfer_mask),
1474 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 }
1476
Tejun Heo6e7846e2006-02-12 23:32:58 +09001477 ap->host->max_cmd_len = 0;
1478 for (i = 0; i < ATA_MAX_DEVICES; i++)
1479 ap->host->max_cmd_len = max_t(unsigned int,
1480 ap->host->max_cmd_len,
1481 ap->device[i].cdb_len);
1482
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001483 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001484 if (ata_dev_knobble(dev)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001485 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001486 ata_dev_printk(dev, KERN_INFO,
1487 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001488 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001489 dev->max_sectors = ATA_MAX_SECTORS;
1490 }
1491
1492 if (ap->ops->dev_config)
1493 ap->ops->dev_config(ap, dev);
1494
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001495 if (ata_msg_probe(ap))
1496 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
1497 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001498 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001501 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001502 ata_dev_printk(dev, KERN_DEBUG,
1503 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001504 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
1507/**
1508 * ata_bus_probe - Reset and probe ATA bus
1509 * @ap: Bus to probe
1510 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001511 * Master ATA bus probing function. Initiates a hardware-dependent
1512 * bus reset, then attempts to identify any devices found on
1513 * the bus.
1514 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001516 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 *
1518 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001519 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 */
1521
1522static int ata_bus_probe(struct ata_port *ap)
1523{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001524 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001525 int tries[ATA_MAX_DEVICES];
1526 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001527 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Tejun Heo28ca5c52006-03-01 16:09:36 +09001529 ata_port_probe(ap);
1530
Tejun Heo14d2bac2006-04-02 17:54:46 +09001531 for (i = 0; i < ATA_MAX_DEVICES; i++)
1532 tries[i] = ATA_PROBE_MAX_TRIES;
1533
1534 retry:
1535 down_xfermask = 0;
1536
Tejun Heo20444702006-03-13 01:57:01 +09001537 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09001538 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09001539
Tejun Heo52783c52006-05-31 18:28:22 +09001540 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1541 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001542
Tejun Heo52783c52006-05-31 18:28:22 +09001543 if (!(ap->flags & ATA_FLAG_DISABLED) &&
1544 dev->class != ATA_DEV_UNKNOWN)
1545 classes[dev->devno] = dev->class;
1546 else
1547 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09001548
Tejun Heo52783c52006-05-31 18:28:22 +09001549 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09001550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Tejun Heo52783c52006-05-31 18:28:22 +09001552 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09001553
Alan Coxb6079ca2006-05-22 16:52:06 +01001554 /* after the reset the device state is PIO 0 and the controller
1555 state is undefined. Record the mode */
1556
1557 for (i = 0; i < ATA_MAX_DEVICES; i++)
1558 ap->device[i].pio_mode = XFER_PIO_0;
1559
Tejun Heo28ca5c52006-03-01 16:09:36 +09001560 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001562 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001563
Tejun Heoec573752006-04-11 22:26:29 +09001564 if (tries[i])
1565 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001566
Tejun Heoe1211e32006-04-01 01:38:18 +09001567 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001568 continue;
1569
Tejun Heo3373efd2006-05-15 20:57:53 +09001570 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001571 if (rc)
1572 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001573
Tejun Heo3373efd2006-05-15 20:57:53 +09001574 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001575 if (rc)
1576 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 }
1578
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001579 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001580 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001581 if (rc) {
1582 down_xfermask = 1;
1583 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001586 for (i = 0; i < ATA_MAX_DEVICES; i++)
1587 if (ata_dev_enabled(&ap->device[i]))
1588 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001589
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001590 /* no device present, disable port */
1591 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001593 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001594
1595 fail:
1596 switch (rc) {
1597 case -EINVAL:
1598 case -ENODEV:
1599 tries[dev->devno] = 0;
1600 break;
1601 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001602 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001603 /* fall through */
1604 default:
1605 tries[dev->devno]--;
1606 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001607 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001608 tries[dev->devno] = 0;
1609 }
1610
Tejun Heoec573752006-04-11 22:26:29 +09001611 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001612 ata_down_xfermask_limit(dev, 1);
1613 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001614 }
1615
Tejun Heo14d2bac2006-04-02 17:54:46 +09001616 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001620 * ata_port_probe - Mark port as enabled
1621 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001623 * Modify @ap data structure such that the system
1624 * thinks that the entire port is enabled.
1625 *
1626 * LOCKING: host_set lock, or some other form of
1627 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 */
1629
1630void ata_port_probe(struct ata_port *ap)
1631{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001632 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
1635/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001636 * sata_print_link_status - Print SATA link status
1637 * @ap: SATA port to printk link status about
1638 *
1639 * This function prints link speed and status of a SATA link.
1640 *
1641 * LOCKING:
1642 * None.
1643 */
1644static void sata_print_link_status(struct ata_port *ap)
1645{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001646 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001647
Tejun Heo81952c52006-05-15 20:57:47 +09001648 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001649 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001650 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001651
Tejun Heo81952c52006-05-15 20:57:47 +09001652 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001653 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001654 ata_port_printk(ap, KERN_INFO,
1655 "SATA link up %s (SStatus %X SControl %X)\n",
1656 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001657 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001658 ata_port_printk(ap, KERN_INFO,
1659 "SATA link down (SStatus %X SControl %X)\n",
1660 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001661 }
1662}
1663
1664/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001665 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1666 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001668 * This function issues commands to standard SATA Sxxx
1669 * PHY registers, to wake up the phy (and device), and
1670 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 *
1672 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001673 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 *
1675 */
1676void __sata_phy_reset(struct ata_port *ap)
1677{
1678 u32 sstatus;
1679 unsigned long timeout = jiffies + (HZ * 5);
1680
1681 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05001682 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001683 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001684 /* Couldn't find anything in SATA I/II specs, but
1685 * AHCI-1.1 10.4.2 says at least 1 ms. */
1686 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
Tejun Heo81952c52006-05-15 20:57:47 +09001688 /* phy wake/clear reset */
1689 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 /* wait for phy to become ready, if necessary */
1692 do {
1693 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001694 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 if ((sstatus & 0xf) != 1)
1696 break;
1697 } while (time_before(jiffies, timeout));
1698
Tejun Heo3be680b2005-12-19 22:35:02 +09001699 /* print link status */
1700 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001701
Tejun Heo3be680b2005-12-19 22:35:02 +09001702 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001703 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001705 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Tejun Heo198e0fe2006-04-02 18:51:52 +09001708 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return;
1710
1711 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1712 ata_port_disable(ap);
1713 return;
1714 }
1715
1716 ap->cbl = ATA_CBL_SATA;
1717}
1718
1719/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001720 * sata_phy_reset - Reset SATA bus.
1721 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001723 * This function resets the SATA bus, and then probes
1724 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 *
1726 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001727 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 *
1729 */
1730void sata_phy_reset(struct ata_port *ap)
1731{
1732 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001733 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 return;
1735 ata_bus_reset(ap);
1736}
1737
1738/**
Alan Coxebdfca62006-03-23 15:38:34 +00001739 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001740 * @adev: device
1741 *
1742 * Obtain the other device on the same cable, or if none is
1743 * present NULL is returned
1744 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001745
Tejun Heo3373efd2006-05-15 20:57:53 +09001746struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001747{
Tejun Heo3373efd2006-05-15 20:57:53 +09001748 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001749 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001750 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001751 return NULL;
1752 return pair;
1753}
1754
1755/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001756 * ata_port_disable - Disable port.
1757 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001759 * Modify @ap data structure such that the system
1760 * thinks that the entire port is disabled, and should
1761 * never attempt to probe or communicate with devices
1762 * on this port.
1763 *
1764 * LOCKING: host_set lock, or some other form of
1765 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 */
1767
1768void ata_port_disable(struct ata_port *ap)
1769{
1770 ap->device[0].class = ATA_DEV_NONE;
1771 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001772 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773}
1774
Tejun Heo1c3fae42006-04-02 20:53:28 +09001775/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001776 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001777 * @ap: Port to adjust SATA spd limit for
1778 *
1779 * Adjust SATA spd limit of @ap downward. Note that this
1780 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001781 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001782 *
1783 * LOCKING:
1784 * Inherited from caller.
1785 *
1786 * RETURNS:
1787 * 0 on success, negative errno on failure
1788 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001789int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001790{
Tejun Heo81952c52006-05-15 20:57:47 +09001791 u32 sstatus, spd, mask;
1792 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001793
Tejun Heo81952c52006-05-15 20:57:47 +09001794 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1795 if (rc)
1796 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001797
1798 mask = ap->sata_spd_limit;
1799 if (mask <= 1)
1800 return -EINVAL;
1801 highbit = fls(mask) - 1;
1802 mask &= ~(1 << highbit);
1803
Tejun Heo81952c52006-05-15 20:57:47 +09001804 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001805 if (spd <= 1)
1806 return -EINVAL;
1807 spd--;
1808 mask &= (1 << spd) - 1;
1809 if (!mask)
1810 return -EINVAL;
1811
1812 ap->sata_spd_limit = mask;
1813
Tejun Heof15a1da2006-05-15 20:57:56 +09001814 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1815 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001816
1817 return 0;
1818}
1819
Tejun Heo3c567b72006-05-15 20:57:23 +09001820static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001821{
1822 u32 spd, limit;
1823
1824 if (ap->sata_spd_limit == UINT_MAX)
1825 limit = 0;
1826 else
1827 limit = fls(ap->sata_spd_limit);
1828
1829 spd = (*scontrol >> 4) & 0xf;
1830 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1831
1832 return spd != limit;
1833}
1834
1835/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001836 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001837 * @ap: Port in question
1838 *
1839 * Test whether the spd limit in SControl matches
1840 * @ap->sata_spd_limit. This function is used to determine
1841 * whether hardreset is necessary to apply SATA spd
1842 * configuration.
1843 *
1844 * LOCKING:
1845 * Inherited from caller.
1846 *
1847 * RETURNS:
1848 * 1 if SATA spd configuration is needed, 0 otherwise.
1849 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001850int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001851{
1852 u32 scontrol;
1853
Tejun Heo81952c52006-05-15 20:57:47 +09001854 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001855 return 0;
1856
Tejun Heo3c567b72006-05-15 20:57:23 +09001857 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001858}
1859
1860/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001861 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001862 * @ap: Port to set SATA spd for
1863 *
1864 * Set SATA spd of @ap according to sata_spd_limit.
1865 *
1866 * LOCKING:
1867 * Inherited from caller.
1868 *
1869 * RETURNS:
1870 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001871 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001872 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001873int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001874{
1875 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001876 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001877
Tejun Heo81952c52006-05-15 20:57:47 +09001878 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1879 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001880
Tejun Heo3c567b72006-05-15 20:57:23 +09001881 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001882 return 0;
1883
Tejun Heo81952c52006-05-15 20:57:47 +09001884 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1885 return rc;
1886
Tejun Heo1c3fae42006-04-02 20:53:28 +09001887 return 1;
1888}
1889
Alan Cox452503f2005-10-21 19:01:32 -04001890/*
1891 * This mode timing computation functionality is ported over from
1892 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1893 */
1894/*
1895 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1896 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1897 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001898 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001899 */
1900
1901static const struct ata_timing ata_timing[] = {
1902
1903 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1904 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1905 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1906 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1907
1908 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1909 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1910 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1911
1912/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001913
Alan Cox452503f2005-10-21 19:01:32 -04001914 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1915 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1916 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001917
Alan Cox452503f2005-10-21 19:01:32 -04001918 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1919 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1920 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1921
1922/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1923 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1924 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1925
1926 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1927 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1928 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1929
1930/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1931
1932 { 0xFF }
1933};
1934
1935#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1936#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1937
1938static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1939{
1940 q->setup = EZ(t->setup * 1000, T);
1941 q->act8b = EZ(t->act8b * 1000, T);
1942 q->rec8b = EZ(t->rec8b * 1000, T);
1943 q->cyc8b = EZ(t->cyc8b * 1000, T);
1944 q->active = EZ(t->active * 1000, T);
1945 q->recover = EZ(t->recover * 1000, T);
1946 q->cycle = EZ(t->cycle * 1000, T);
1947 q->udma = EZ(t->udma * 1000, UT);
1948}
1949
1950void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1951 struct ata_timing *m, unsigned int what)
1952{
1953 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1954 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1955 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1956 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1957 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1958 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1959 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1960 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1961}
1962
1963static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1964{
1965 const struct ata_timing *t;
1966
1967 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001968 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001969 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001970 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001971}
1972
1973int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1974 struct ata_timing *t, int T, int UT)
1975{
1976 const struct ata_timing *s;
1977 struct ata_timing p;
1978
1979 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001980 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001981 */
Alan Cox452503f2005-10-21 19:01:32 -04001982
1983 if (!(s = ata_timing_find_mode(speed)))
1984 return -EINVAL;
1985
Albert Lee75b1f2f2005-11-16 17:06:18 +08001986 memcpy(t, s, sizeof(*s));
1987
Alan Cox452503f2005-10-21 19:01:32 -04001988 /*
1989 * If the drive is an EIDE drive, it can tell us it needs extended
1990 * PIO/MW_DMA cycle timing.
1991 */
1992
1993 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1994 memset(&p, 0, sizeof(p));
1995 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1996 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1997 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1998 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1999 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2000 }
2001 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2002 }
2003
2004 /*
2005 * Convert the timing to bus clock counts.
2006 */
2007
Albert Lee75b1f2f2005-11-16 17:06:18 +08002008 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002009
2010 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002011 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2012 * S.M.A.R.T * and some other commands. We have to ensure that the
2013 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002014 */
2015
2016 if (speed > XFER_PIO_4) {
2017 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2018 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2019 }
2020
2021 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002022 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002023 */
2024
2025 if (t->act8b + t->rec8b < t->cyc8b) {
2026 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2027 t->rec8b = t->cyc8b - t->act8b;
2028 }
2029
2030 if (t->active + t->recover < t->cycle) {
2031 t->active += (t->cycle - (t->active + t->recover)) / 2;
2032 t->recover = t->cycle - t->active;
2033 }
2034
2035 return 0;
2036}
2037
Tejun Heocf176e12006-04-02 17:54:46 +09002038/**
2039 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002040 * @dev: Device to adjust xfer masks
2041 * @force_pio0: Force PIO0
2042 *
2043 * Adjust xfer masks of @dev downward. Note that this function
2044 * does not apply the change. Invoking ata_set_mode() afterwards
2045 * will apply the limit.
2046 *
2047 * LOCKING:
2048 * Inherited from caller.
2049 *
2050 * RETURNS:
2051 * 0 on success, negative errno on failure
2052 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002053int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09002054{
2055 unsigned long xfer_mask;
2056 int highbit;
2057
2058 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2059 dev->udma_mask);
2060
2061 if (!xfer_mask)
2062 goto fail;
2063 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2064 if (xfer_mask & ATA_MASK_UDMA)
2065 xfer_mask &= ~ATA_MASK_MWDMA;
2066
2067 highbit = fls(xfer_mask) - 1;
2068 xfer_mask &= ~(1 << highbit);
2069 if (force_pio0)
2070 xfer_mask &= 1 << ATA_SHIFT_PIO;
2071 if (!xfer_mask)
2072 goto fail;
2073
2074 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2075 &dev->udma_mask);
2076
Tejun Heof15a1da2006-05-15 20:57:56 +09002077 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2078 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002079
2080 return 0;
2081
2082 fail:
2083 return -EINVAL;
2084}
2085
Tejun Heo3373efd2006-05-15 20:57:53 +09002086static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Tejun Heo83206a22006-03-24 15:25:31 +09002088 unsigned int err_mask;
2089 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Tejun Heoe8384602006-04-02 18:51:53 +09002091 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (dev->xfer_shift == ATA_SHIFT_PIO)
2093 dev->flags |= ATA_DFLAG_PIO;
2094
Tejun Heo3373efd2006-05-15 20:57:53 +09002095 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002096 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002097 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2098 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002099 return -EIO;
2100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Tejun Heo3373efd2006-05-15 20:57:53 +09002102 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002103 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002104 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002105
Tejun Heo23e71c32006-03-06 04:31:57 +09002106 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2107 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Tejun Heof15a1da2006-05-15 20:57:56 +09002109 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2110 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002111 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114/**
2115 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2116 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002117 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002119 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2120 * ata_set_mode() fails, pointer to the failing device is
2121 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002122 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002124 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002125 *
2126 * RETURNS:
2127 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002129int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
Tejun Heoe8e06192006-04-01 01:38:18 +09002131 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002132 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Tejun Heo3adcebb2006-05-15 20:57:37 +09002134 /* has private set_mode? */
2135 if (ap->ops->set_mode) {
2136 /* FIXME: make ->set_mode handle no device case and
2137 * return error code and failing device on failure.
2138 */
2139 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2140 if (ata_dev_enabled(&ap->device[i])) {
2141 ap->ops->set_mode(ap);
2142 break;
2143 }
2144 }
2145 return 0;
2146 }
2147
Tejun Heoa6d5a512006-03-06 04:31:57 +09002148 /* step 1: calculate xfer_mask */
2149 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002150 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002151
Tejun Heoe8e06192006-04-01 01:38:18 +09002152 dev = &ap->device[i];
2153
Tejun Heoe1211e32006-04-01 01:38:18 +09002154 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002155 continue;
2156
Tejun Heo3373efd2006-05-15 20:57:53 +09002157 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002158
Tejun Heoacf356b2006-03-24 14:07:50 +09002159 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2160 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2161 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2162 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002163
Tejun Heo4f659772006-04-01 01:38:18 +09002164 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002165 if (dev->dma_mode)
2166 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002167 }
Tejun Heo4f659772006-04-01 01:38:18 +09002168 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002169 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002170
2171 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002172 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2173 dev = &ap->device[i];
2174 if (!ata_dev_enabled(dev))
2175 continue;
2176
2177 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002178 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002179 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002180 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002181 }
2182
2183 dev->xfer_mode = dev->pio_mode;
2184 dev->xfer_shift = ATA_SHIFT_PIO;
2185 if (ap->ops->set_piomode)
2186 ap->ops->set_piomode(ap, dev);
2187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Tejun Heoa6d5a512006-03-06 04:31:57 +09002189 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002190 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2191 dev = &ap->device[i];
2192
2193 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2194 continue;
2195
2196 dev->xfer_mode = dev->dma_mode;
2197 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2198 if (ap->ops->set_dmamode)
2199 ap->ops->set_dmamode(ap, dev);
2200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002203 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002204 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Tejun Heoe1211e32006-04-01 01:38:18 +09002206 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002207 continue;
2208
Tejun Heo3373efd2006-05-15 20:57:53 +09002209 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002210 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002211 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Tejun Heoe8e06192006-04-01 01:38:18 +09002214 /* Record simplex status. If we selected DMA then the other
2215 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002216 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002217 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2218 ap->host_set->simplex_claimed = 1;
2219
Tejun Heoe8e06192006-04-01 01:38:18 +09002220 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 if (ap->ops->post_set_mode)
2222 ap->ops->post_set_mode(ap);
2223
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002224 out:
2225 if (rc)
2226 *r_failed_dev = dev;
2227 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228}
2229
2230/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002231 * ata_tf_to_host - issue ATA taskfile to host controller
2232 * @ap: port to which command is being issued
2233 * @tf: ATA taskfile register set
2234 *
2235 * Issues ATA taskfile register set to ATA host controller,
2236 * with proper synchronization with interrupt handler and
2237 * other threads.
2238 *
2239 * LOCKING:
2240 * spin_lock_irqsave(host_set lock)
2241 */
2242
2243static inline void ata_tf_to_host(struct ata_port *ap,
2244 const struct ata_taskfile *tf)
2245{
2246 ap->ops->tf_load(ap, tf);
2247 ap->ops->exec_command(ap, tf);
2248}
2249
2250/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 * ata_busy_sleep - sleep until BSY clears, or timeout
2252 * @ap: port containing status register to be polled
2253 * @tmout_pat: impatience timeout
2254 * @tmout: overall timeout
2255 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002256 * Sleep until ATA Status register bit BSY clears,
2257 * or a timeout occurs.
2258 *
2259 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 */
2261
Tejun Heo6f8b9952006-01-24 17:05:21 +09002262unsigned int ata_busy_sleep (struct ata_port *ap,
2263 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264{
2265 unsigned long timer_start, timeout;
2266 u8 status;
2267
2268 status = ata_busy_wait(ap, ATA_BUSY, 300);
2269 timer_start = jiffies;
2270 timeout = timer_start + tmout_pat;
2271 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2272 msleep(50);
2273 status = ata_busy_wait(ap, ATA_BUSY, 3);
2274 }
2275
2276 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002277 ata_port_printk(ap, KERN_WARNING,
2278 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
2280 timeout = timer_start + tmout;
2281 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2282 msleep(50);
2283 status = ata_chk_status(ap);
2284 }
2285
2286 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002287 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2288 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 return 1;
2290 }
2291
2292 return 0;
2293}
2294
2295static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2296{
2297 struct ata_ioports *ioaddr = &ap->ioaddr;
2298 unsigned int dev0 = devmask & (1 << 0);
2299 unsigned int dev1 = devmask & (1 << 1);
2300 unsigned long timeout;
2301
2302 /* if device 0 was found in ata_devchk, wait for its
2303 * BSY bit to clear
2304 */
2305 if (dev0)
2306 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2307
2308 /* if device 1 was found in ata_devchk, wait for
2309 * register access, then wait for BSY to clear
2310 */
2311 timeout = jiffies + ATA_TMOUT_BOOT;
2312 while (dev1) {
2313 u8 nsect, lbal;
2314
2315 ap->ops->dev_select(ap, 1);
2316 if (ap->flags & ATA_FLAG_MMIO) {
2317 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2318 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2319 } else {
2320 nsect = inb(ioaddr->nsect_addr);
2321 lbal = inb(ioaddr->lbal_addr);
2322 }
2323 if ((nsect == 1) && (lbal == 1))
2324 break;
2325 if (time_after(jiffies, timeout)) {
2326 dev1 = 0;
2327 break;
2328 }
2329 msleep(50); /* give drive a breather */
2330 }
2331 if (dev1)
2332 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2333
2334 /* is all this really necessary? */
2335 ap->ops->dev_select(ap, 0);
2336 if (dev1)
2337 ap->ops->dev_select(ap, 1);
2338 if (dev0)
2339 ap->ops->dev_select(ap, 0);
2340}
2341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342static unsigned int ata_bus_softreset(struct ata_port *ap,
2343 unsigned int devmask)
2344{
2345 struct ata_ioports *ioaddr = &ap->ioaddr;
2346
2347 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2348
2349 /* software reset. causes dev0 to be selected */
2350 if (ap->flags & ATA_FLAG_MMIO) {
2351 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2352 udelay(20); /* FIXME: flush */
2353 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2354 udelay(20); /* FIXME: flush */
2355 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2356 } else {
2357 outb(ap->ctl, ioaddr->ctl_addr);
2358 udelay(10);
2359 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2360 udelay(10);
2361 outb(ap->ctl, ioaddr->ctl_addr);
2362 }
2363
2364 /* spec mandates ">= 2ms" before checking status.
2365 * We wait 150ms, because that was the magic delay used for
2366 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2367 * between when the ATA command register is written, and then
2368 * status is checked. Because waiting for "a while" before
2369 * checking status is fine, post SRST, we perform this magic
2370 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002371 *
2372 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 */
2374 msleep(150);
2375
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002376 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002377 * the bus shows 0xFF because the odd clown forgets the D7
2378 * pulldown resistor.
2379 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002380 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002381 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002382 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002383 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 ata_bus_post_reset(ap, devmask);
2386
2387 return 0;
2388}
2389
2390/**
2391 * ata_bus_reset - reset host port and associated ATA channel
2392 * @ap: port to reset
2393 *
2394 * This is typically the first time we actually start issuing
2395 * commands to the ATA channel. We wait for BSY to clear, then
2396 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2397 * result. Determine what devices, if any, are on the channel
2398 * by looking at the device 0/1 error register. Look at the signature
2399 * stored in each device's taskfile registers, to determine if
2400 * the device is ATA or ATAPI.
2401 *
2402 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002403 * PCI/etc. bus probe sem.
2404 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 *
2406 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002407 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 */
2409
2410void ata_bus_reset(struct ata_port *ap)
2411{
2412 struct ata_ioports *ioaddr = &ap->ioaddr;
2413 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2414 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002415 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2418
2419 /* determine if device 0/1 are present */
2420 if (ap->flags & ATA_FLAG_SATA_RESET)
2421 dev0 = 1;
2422 else {
2423 dev0 = ata_devchk(ap, 0);
2424 if (slave_possible)
2425 dev1 = ata_devchk(ap, 1);
2426 }
2427
2428 if (dev0)
2429 devmask |= (1 << 0);
2430 if (dev1)
2431 devmask |= (1 << 1);
2432
2433 /* select device 0 again */
2434 ap->ops->dev_select(ap, 0);
2435
2436 /* issue bus reset */
2437 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002438 if (ata_bus_softreset(ap, devmask))
2439 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441 /*
2442 * determine by signature whether we have ATA or ATAPI devices
2443 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002444 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002446 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
2448 /* re-enable interrupts */
2449 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2450 ata_irq_on(ap);
2451
2452 /* is double-select really necessary? */
2453 if (ap->device[1].class != ATA_DEV_NONE)
2454 ap->ops->dev_select(ap, 1);
2455 if (ap->device[0].class != ATA_DEV_NONE)
2456 ap->ops->dev_select(ap, 0);
2457
2458 /* if no devices were detected, disable this port */
2459 if ((ap->device[0].class == ATA_DEV_NONE) &&
2460 (ap->device[1].class == ATA_DEV_NONE))
2461 goto err_out;
2462
2463 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2464 /* set up device control for ATA_FLAG_SATA_RESET */
2465 if (ap->flags & ATA_FLAG_MMIO)
2466 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2467 else
2468 outb(ap->ctl, ioaddr->ctl_addr);
2469 }
2470
2471 DPRINTK("EXIT\n");
2472 return;
2473
2474err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002475 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 ap->ops->port_disable(ap);
2477
2478 DPRINTK("EXIT\n");
2479}
2480
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002481/**
2482 * sata_phy_debounce - debounce SATA phy status
2483 * @ap: ATA port to debounce SATA phy status for
2484 * @params: timing parameters { interval, duratinon, timeout } in msec
2485 *
2486 * Make sure SStatus of @ap reaches stable state, determined by
2487 * holding the same value where DET is not 1 for @duration polled
2488 * every @interval, before @timeout. Timeout constraints the
2489 * beginning of the stable state. Because, after hot unplugging,
2490 * DET gets stuck at 1 on some controllers, this functions waits
2491 * until timeout then returns 0 if DET is stable at 1.
2492 *
2493 * LOCKING:
2494 * Kernel thread context (may sleep)
2495 *
2496 * RETURNS:
2497 * 0 on success, -errno on failure.
2498 */
2499int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09002500{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002501 unsigned long interval_msec = params[0];
2502 unsigned long duration = params[1] * HZ / 1000;
2503 unsigned long timeout = jiffies + params[2] * HZ / 1000;
2504 unsigned long last_jiffies;
2505 u32 last, cur;
2506 int rc;
2507
2508 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2509 return rc;
2510 cur &= 0xf;
2511
2512 last = cur;
2513 last_jiffies = jiffies;
2514
2515 while (1) {
2516 msleep(interval_msec);
2517 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2518 return rc;
2519 cur &= 0xf;
2520
2521 /* DET stable? */
2522 if (cur == last) {
2523 if (cur == 1 && time_before(jiffies, timeout))
2524 continue;
2525 if (time_after(jiffies, last_jiffies + duration))
2526 return 0;
2527 continue;
2528 }
2529
2530 /* unstable, start over */
2531 last = cur;
2532 last_jiffies = jiffies;
2533
2534 /* check timeout */
2535 if (time_after(jiffies, timeout))
2536 return -EBUSY;
2537 }
2538}
2539
2540/**
2541 * sata_phy_resume - resume SATA phy
2542 * @ap: ATA port to resume SATA phy for
2543 * @params: timing parameters { interval, duratinon, timeout } in msec
2544 *
2545 * Resume SATA phy of @ap and debounce it.
2546 *
2547 * LOCKING:
2548 * Kernel thread context (may sleep)
2549 *
2550 * RETURNS:
2551 * 0 on success, -errno on failure.
2552 */
2553int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
2554{
2555 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002556 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002557
Tejun Heo81952c52006-05-15 20:57:47 +09002558 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2559 return rc;
2560
Tejun Heo852ee162006-04-01 01:38:18 +09002561 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002562
2563 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2564 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002565
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002566 /* Some PHYs react badly if SStatus is pounded immediately
2567 * after resuming. Delay 200ms before debouncing.
2568 */
2569 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002570
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002571 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002572}
2573
Tejun Heof5914a42006-05-31 18:27:48 +09002574static void ata_wait_spinup(struct ata_port *ap)
2575{
2576 struct ata_eh_context *ehc = &ap->eh_context;
2577 unsigned long end, secs;
2578 int rc;
2579
2580 /* first, debounce phy if SATA */
2581 if (ap->cbl == ATA_CBL_SATA) {
2582 rc = sata_phy_debounce(ap, sata_deb_timing_eh);
2583
2584 /* if debounced successfully and offline, no need to wait */
2585 if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap))
2586 return;
2587 }
2588
2589 /* okay, let's give the drive time to spin up */
2590 end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000;
2591 secs = ((end - jiffies) + HZ - 1) / HZ;
2592
2593 if (time_after(jiffies, end))
2594 return;
2595
2596 if (secs > 5)
2597 ata_port_printk(ap, KERN_INFO, "waiting for device to spin up "
2598 "(%lu secs)\n", secs);
2599
2600 schedule_timeout_uninterruptible(end - jiffies);
2601}
2602
2603/**
2604 * ata_std_prereset - prepare for reset
2605 * @ap: ATA port to be reset
2606 *
2607 * @ap is about to be reset. Initialize it.
2608 *
2609 * LOCKING:
2610 * Kernel thread context (may sleep)
2611 *
2612 * RETURNS:
2613 * 0 on success, -errno otherwise.
2614 */
2615int ata_std_prereset(struct ata_port *ap)
2616{
2617 struct ata_eh_context *ehc = &ap->eh_context;
2618 const unsigned long *timing;
2619 int rc;
2620
2621 /* hotplug? */
2622 if (ehc->i.flags & ATA_EHI_HOTPLUGGED) {
2623 if (ap->flags & ATA_FLAG_HRST_TO_RESUME)
2624 ehc->i.action |= ATA_EH_HARDRESET;
2625 if (ap->flags & ATA_FLAG_SKIP_D2H_BSY)
2626 ata_wait_spinup(ap);
2627 }
2628
2629 /* if we're about to do hardreset, nothing more to do */
2630 if (ehc->i.action & ATA_EH_HARDRESET)
2631 return 0;
2632
2633 /* if SATA, resume phy */
2634 if (ap->cbl == ATA_CBL_SATA) {
2635 if (ap->flags & ATA_FLAG_LOADING)
2636 timing = sata_deb_timing_boot;
2637 else
2638 timing = sata_deb_timing_eh;
2639
2640 rc = sata_phy_resume(ap, timing);
2641 if (rc && rc != -EOPNOTSUPP) {
2642 /* phy resume failed */
2643 ata_port_printk(ap, KERN_WARNING, "failed to resume "
2644 "link for reset (errno=%d)\n", rc);
2645 return rc;
2646 }
2647 }
2648
2649 /* Wait for !BSY if the controller can wait for the first D2H
2650 * Reg FIS and we don't know that no device is attached.
2651 */
2652 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap))
2653 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2654
2655 return 0;
2656}
2657
Tejun Heoc2bd5802006-01-24 17:05:22 +09002658/**
2659 * ata_std_softreset - reset host port via ATA SRST
2660 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002661 * @classes: resulting classes of attached devices
2662 *
Tejun Heo52783c52006-05-31 18:28:22 +09002663 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002664 *
2665 * LOCKING:
2666 * Kernel thread context (may sleep)
2667 *
2668 * RETURNS:
2669 * 0 on success, -errno otherwise.
2670 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002671int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002672{
2673 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2674 unsigned int devmask = 0, err_mask;
2675 u8 err;
2676
2677 DPRINTK("ENTER\n");
2678
Tejun Heo81952c52006-05-15 20:57:47 +09002679 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002680 classes[0] = ATA_DEV_NONE;
2681 goto out;
2682 }
2683
Tejun Heoc2bd5802006-01-24 17:05:22 +09002684 /* determine if device 0/1 are present */
2685 if (ata_devchk(ap, 0))
2686 devmask |= (1 << 0);
2687 if (slave_possible && ata_devchk(ap, 1))
2688 devmask |= (1 << 1);
2689
Tejun Heoc2bd5802006-01-24 17:05:22 +09002690 /* select device 0 again */
2691 ap->ops->dev_select(ap, 0);
2692
2693 /* issue bus reset */
2694 DPRINTK("about to softreset, devmask=%x\n", devmask);
2695 err_mask = ata_bus_softreset(ap, devmask);
2696 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002697 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2698 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002699 return -EIO;
2700 }
2701
2702 /* determine by signature whether we have ATA or ATAPI devices */
2703 classes[0] = ata_dev_try_classify(ap, 0, &err);
2704 if (slave_possible && err != 0x81)
2705 classes[1] = ata_dev_try_classify(ap, 1, &err);
2706
Tejun Heo3a397462006-02-10 23:58:48 +09002707 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002708 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2709 return 0;
2710}
2711
2712/**
2713 * sata_std_hardreset - reset host port via SATA phy reset
2714 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002715 * @class: resulting class of attached device
2716 *
2717 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002718 *
2719 * LOCKING:
2720 * Kernel thread context (may sleep)
2721 *
2722 * RETURNS:
2723 * 0 on success, -errno otherwise.
2724 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002725int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002726{
Tejun Heo852ee162006-04-01 01:38:18 +09002727 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002728 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002729
Tejun Heoc2bd5802006-01-24 17:05:22 +09002730 DPRINTK("ENTER\n");
2731
Tejun Heo3c567b72006-05-15 20:57:23 +09002732 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002733 /* SATA spec says nothing about how to reconfigure
2734 * spd. To be on the safe side, turn off phy during
2735 * reconfiguration. This works for at least ICH7 AHCI
2736 * and Sil3124.
2737 */
Tejun Heo81952c52006-05-15 20:57:47 +09002738 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2739 return rc;
2740
Tejun Heo1c3fae42006-04-02 20:53:28 +09002741 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002742
2743 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2744 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002745
Tejun Heo3c567b72006-05-15 20:57:23 +09002746 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002747 }
2748
2749 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002750 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2751 return rc;
2752
Tejun Heo852ee162006-04-01 01:38:18 +09002753 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002754
2755 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2756 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002757
Tejun Heo1c3fae42006-04-02 20:53:28 +09002758 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002759 * 10.4.2 says at least 1 ms.
2760 */
2761 msleep(1);
2762
Tejun Heo1c3fae42006-04-02 20:53:28 +09002763 /* bring phy back */
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002764 sata_phy_resume(ap, sata_deb_timing_eh);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002765
Tejun Heoc2bd5802006-01-24 17:05:22 +09002766 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002767 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002768 *class = ATA_DEV_NONE;
2769 DPRINTK("EXIT, link offline\n");
2770 return 0;
2771 }
2772
2773 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002774 ata_port_printk(ap, KERN_ERR,
2775 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002776 return -EIO;
2777 }
2778
Tejun Heo3a397462006-02-10 23:58:48 +09002779 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2780
Tejun Heoc2bd5802006-01-24 17:05:22 +09002781 *class = ata_dev_try_classify(ap, 0, NULL);
2782
2783 DPRINTK("EXIT, class=%u\n", *class);
2784 return 0;
2785}
2786
2787/**
2788 * ata_std_postreset - standard postreset callback
2789 * @ap: the target ata_port
2790 * @classes: classes of attached devices
2791 *
2792 * This function is invoked after a successful reset. Note that
2793 * the device might have been reset more than once using
2794 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002795 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09002796 * LOCKING:
2797 * Kernel thread context (may sleep)
2798 */
2799void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2800{
Tejun Heodc2b3512006-05-15 20:58:00 +09002801 u32 serror;
2802
Tejun Heoc2bd5802006-01-24 17:05:22 +09002803 DPRINTK("ENTER\n");
2804
Tejun Heoc2bd5802006-01-24 17:05:22 +09002805 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002806 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002807
Tejun Heodc2b3512006-05-15 20:58:00 +09002808 /* clear SError */
2809 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2810 sata_scr_write(ap, SCR_ERROR, serror);
2811
Tejun Heo3a397462006-02-10 23:58:48 +09002812 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09002813 if (!ap->ops->error_handler) {
2814 /* FIXME: hack. create a hook instead */
2815 if (ap->ioaddr.ctl_addr)
2816 ata_irq_on(ap);
2817 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002818
2819 /* is double-select really necessary? */
2820 if (classes[0] != ATA_DEV_NONE)
2821 ap->ops->dev_select(ap, 1);
2822 if (classes[1] != ATA_DEV_NONE)
2823 ap->ops->dev_select(ap, 0);
2824
Tejun Heo3a397462006-02-10 23:58:48 +09002825 /* bail out if no device is present */
2826 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2827 DPRINTK("EXIT, no device\n");
2828 return;
2829 }
2830
2831 /* set up device control */
2832 if (ap->ioaddr.ctl_addr) {
2833 if (ap->flags & ATA_FLAG_MMIO)
2834 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2835 else
2836 outb(ap->ctl, ap->ioaddr.ctl_addr);
2837 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002838
2839 DPRINTK("EXIT\n");
2840}
2841
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002842/**
Tejun Heo623a3122006-03-05 17:55:58 +09002843 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002844 * @dev: device to compare against
2845 * @new_class: class of the new device
2846 * @new_id: IDENTIFY page of the new device
2847 *
2848 * Compare @new_class and @new_id against @dev and determine
2849 * whether @dev is the device indicated by @new_class and
2850 * @new_id.
2851 *
2852 * LOCKING:
2853 * None.
2854 *
2855 * RETURNS:
2856 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2857 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002858static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2859 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002860{
2861 const u16 *old_id = dev->id;
2862 unsigned char model[2][41], serial[2][21];
2863 u64 new_n_sectors;
2864
2865 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002866 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2867 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002868 return 0;
2869 }
2870
2871 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2872 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2873 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2874 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2875 new_n_sectors = ata_id_n_sectors(new_id);
2876
2877 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002878 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2879 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002880 return 0;
2881 }
2882
2883 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002884 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2885 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002886 return 0;
2887 }
2888
2889 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002890 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2891 "%llu != %llu\n",
2892 (unsigned long long)dev->n_sectors,
2893 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002894 return 0;
2895 }
2896
2897 return 1;
2898}
2899
2900/**
2901 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002902 * @dev: device to revalidate
2903 * @post_reset: is this revalidation after reset?
2904 *
2905 * Re-read IDENTIFY page and make sure @dev is still attached to
2906 * the port.
2907 *
2908 * LOCKING:
2909 * Kernel thread context (may sleep)
2910 *
2911 * RETURNS:
2912 * 0 on success, negative errno otherwise
2913 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002914int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002915{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002916 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002917 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002918 int rc;
2919
Tejun Heo5eb45c02006-04-02 18:51:52 +09002920 if (!ata_dev_enabled(dev)) {
2921 rc = -ENODEV;
2922 goto fail;
2923 }
Tejun Heo623a3122006-03-05 17:55:58 +09002924
Tejun Heofe635c72006-05-15 20:57:35 +09002925 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002926 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002927 if (rc)
2928 goto fail;
2929
2930 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002931 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002932 rc = -ENODEV;
2933 goto fail;
2934 }
2935
Tejun Heofe635c72006-05-15 20:57:35 +09002936 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002937
2938 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002939 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002940 if (rc == 0)
2941 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002942
2943 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002944 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002945 return rc;
2946}
2947
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002948static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002949 "WDC AC11000H", NULL,
2950 "WDC AC22100H", NULL,
2951 "WDC AC32500H", NULL,
2952 "WDC AC33100H", NULL,
2953 "WDC AC31600H", NULL,
2954 "WDC AC32100H", "24.09P07",
2955 "WDC AC23200L", "21.10N21",
2956 "Compaq CRD-8241B", NULL,
2957 "CRD-8400B", NULL,
2958 "CRD-8480B", NULL,
2959 "CRD-8482B", NULL,
2960 "CRD-84", NULL,
2961 "SanDisk SDP3B", NULL,
2962 "SanDisk SDP3B-64", NULL,
2963 "SANYO CD-ROM CRD", NULL,
2964 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002965 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002966 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002967 "Toshiba CD-ROM XM-6202B", NULL,
2968 "TOSHIBA CD-ROM XM-1702BC", NULL,
2969 "CD-532E-A", NULL,
2970 "E-IDE CD-ROM CR-840", NULL,
2971 "CD-ROM Drive/F5A", NULL,
2972 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002973 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002974 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002975 "SanDisk SDP3B-64", NULL,
2976 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2977 "_NEC DV5800A", NULL,
2978 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002980
Alan Coxf4b15fe2006-03-22 15:54:04 +00002981static int ata_strim(char *s, size_t len)
2982{
2983 len = strnlen(s, len);
2984
2985 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2986 while ((len > 0) && (s[len - 1] == ' ')) {
2987 len--;
2988 s[len] = 0;
2989 }
2990 return len;
2991}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Jeff Garzik057ace52005-10-22 14:27:05 -04002993static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002995 unsigned char model_num[40];
2996 unsigned char model_rev[16];
2997 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 int i;
2999
Albert Lee3a778272006-06-22 13:00:25 +08003000 /* We don't support polling DMA.
3001 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3002 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3003 */
3004 if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) &&
3005 (dev->flags & ATA_DFLAG_CDB_INTR))
3006 return 1;
3007
Alan Coxf4b15fe2006-03-22 15:54:04 +00003008 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
3009 sizeof(model_num));
3010 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
3011 sizeof(model_rev));
3012 nlen = ata_strim(model_num, sizeof(model_num));
3013 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Alan Coxf4b15fe2006-03-22 15:54:04 +00003015 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
3016 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
3017 if (ata_dma_blacklist[i+1] == NULL)
3018 return 1;
3019 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
3020 return 1;
3021 }
3022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 return 0;
3024}
3025
Tejun Heoa6d5a512006-03-06 04:31:57 +09003026/**
3027 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003028 * @dev: Device to compute xfermask for
3029 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003030 * Compute supported xfermask of @dev and store it in
3031 * dev->*_mask. This function is responsible for applying all
3032 * known limits including host controller limits, device
3033 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003034 *
Tejun Heo600511e2006-03-25 11:14:07 +09003035 * FIXME: The current implementation limits all transfer modes to
3036 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09003037 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09003038 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09003039 * LOCKING:
3040 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003041 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003042static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043{
Tejun Heo3373efd2006-05-15 20:57:53 +09003044 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003045 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003046 unsigned long xfer_mask;
3047 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Tejun Heo565083e2006-04-02 17:54:47 +09003049 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3050 ap->mwdma_mask, ap->udma_mask);
3051
3052 /* Apply cable rule here. Don't apply it early because when
3053 * we handle hot plug the cable type can itself change.
3054 */
3055 if (ap->cbl == ATA_CBL_PATA40)
3056 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Alan Cox5444a6f2006-03-27 18:58:20 +01003058 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09003059 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3060 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09003061
3062 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003063 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09003064
3065 if (ata_dev_disabled(d)) {
3066 /* to avoid violating device selection timing */
3067 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3068 UINT_MAX, UINT_MAX);
3069 continue;
3070 }
3071
3072 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3073 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003074 xfer_mask &= ata_id_xfermask(d->id);
3075 if (ata_dma_blacklisted(d))
3076 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 }
3078
Tejun Heoa6d5a512006-03-06 04:31:57 +09003079 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09003080 ata_dev_printk(dev, KERN_WARNING,
3081 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09003082
Alan Cox5444a6f2006-03-27 18:58:20 +01003083 if (hs->flags & ATA_HOST_SIMPLEX) {
3084 if (hs->simplex_claimed)
3085 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3086 }
Tejun Heo565083e2006-04-02 17:54:47 +09003087
Alan Cox5444a6f2006-03-27 18:58:20 +01003088 if (ap->ops->mode_filter)
3089 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3090
Tejun Heo565083e2006-04-02 17:54:47 +09003091 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3092 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093}
3094
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 * @dev: Device to which command will be sent
3098 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003099 * Issue SET FEATURES - XFER MODE command to device @dev
3100 * on port @ap.
3101 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003103 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003104 *
3105 * RETURNS:
3106 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 */
3108
Tejun Heo3373efd2006-05-15 20:57:53 +09003109static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110{
Tejun Heoa0123702005-12-13 14:49:31 +09003111 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003112 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
3114 /* set up set-features taskfile */
3115 DPRINTK("set features - xfer mode\n");
3116
Tejun Heo3373efd2006-05-15 20:57:53 +09003117 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003118 tf.command = ATA_CMD_SET_FEATURES;
3119 tf.feature = SETFEATURES_XFER;
3120 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3121 tf.protocol = ATA_PROT_NODATA;
3122 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Tejun Heo3373efd2006-05-15 20:57:53 +09003124 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Tejun Heo83206a22006-03-24 15:25:31 +09003126 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3127 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128}
3129
3130/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003131 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003132 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003133 * @heads: Number of heads (taskfile parameter)
3134 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003135 *
3136 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003137 * Kernel thread context (may sleep)
3138 *
3139 * RETURNS:
3140 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003141 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003142static unsigned int ata_dev_init_params(struct ata_device *dev,
3143 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003144{
Tejun Heoa0123702005-12-13 14:49:31 +09003145 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003146 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003147
3148 /* Number of sectors per track 1-255. Number of heads 1-16 */
3149 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003150 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003151
3152 /* set up init dev params taskfile */
3153 DPRINTK("init dev params \n");
3154
Tejun Heo3373efd2006-05-15 20:57:53 +09003155 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003156 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3157 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3158 tf.protocol = ATA_PROT_NODATA;
3159 tf.nsect = sectors;
3160 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003161
Tejun Heo3373efd2006-05-15 20:57:53 +09003162 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003163
Tejun Heo6aff8f12006-02-15 18:24:09 +09003164 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3165 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003166}
3167
3168/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003169 * ata_sg_clean - Unmap DMA memory associated with command
3170 * @qc: Command containing DMA memory to be released
3171 *
3172 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 *
3174 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003175 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 */
3177
3178static void ata_sg_clean(struct ata_queued_cmd *qc)
3179{
3180 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003181 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003183 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Tejun Heoa46314742006-02-11 19:11:13 +09003185 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3186 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
3188 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003189 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003191 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003193 /* if we padded the buffer out to 32-bit bound, and data
3194 * xfer direction is from-device, we must copy from the
3195 * pad buffer back into the supplied buffer
3196 */
3197 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3198 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3199
3200 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003201 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003202 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003203 /* restore last sg */
3204 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3205 if (pad_buf) {
3206 struct scatterlist *psg = &qc->pad_sgent;
3207 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3208 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003209 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003210 }
3211 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003212 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003213 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003214 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3215 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003216 /* restore sg */
3217 sg->length += qc->pad_len;
3218 if (pad_buf)
3219 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3220 pad_buf, qc->pad_len);
3221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
3223 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003224 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225}
3226
3227/**
3228 * ata_fill_sg - Fill PCI IDE PRD table
3229 * @qc: Metadata associated with taskfile to be transferred
3230 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003231 * Fill PCI IDE PRD (scatter-gather) table with segments
3232 * associated with the current disk command.
3233 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003235 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 *
3237 */
3238static void ata_fill_sg(struct ata_queued_cmd *qc)
3239{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003241 struct scatterlist *sg;
3242 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
Tejun Heoa46314742006-02-11 19:11:13 +09003244 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003245 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003248 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 u32 addr, offset;
3250 u32 sg_len, len;
3251
3252 /* determine if physical DMA addr spans 64K boundary.
3253 * Note h/w doesn't support 64-bit, so we unconditionally
3254 * truncate dma_addr_t to u32.
3255 */
3256 addr = (u32) sg_dma_address(sg);
3257 sg_len = sg_dma_len(sg);
3258
3259 while (sg_len) {
3260 offset = addr & 0xffff;
3261 len = sg_len;
3262 if ((offset + sg_len) > 0x10000)
3263 len = 0x10000 - offset;
3264
3265 ap->prd[idx].addr = cpu_to_le32(addr);
3266 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3267 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3268
3269 idx++;
3270 sg_len -= len;
3271 addr += len;
3272 }
3273 }
3274
3275 if (idx)
3276 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3277}
3278/**
3279 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3280 * @qc: Metadata associated with taskfile to check
3281 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003282 * Allow low-level driver to filter ATA PACKET commands, returning
3283 * a status indicating whether or not it is OK to use DMA for the
3284 * supplied PACKET command.
3285 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003287 * spin_lock_irqsave(host_set lock)
3288 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 * RETURNS: 0 when ATAPI DMA can be used
3290 * nonzero otherwise
3291 */
3292int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3293{
3294 struct ata_port *ap = qc->ap;
3295 int rc = 0; /* Assume ATAPI DMA is OK by default */
3296
3297 if (ap->ops->check_atapi_dma)
3298 rc = ap->ops->check_atapi_dma(qc);
3299
3300 return rc;
3301}
3302/**
3303 * ata_qc_prep - Prepare taskfile for submission
3304 * @qc: Metadata associated with taskfile to be prepared
3305 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003306 * Prepare ATA taskfile for submission.
3307 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 * LOCKING:
3309 * spin_lock_irqsave(host_set lock)
3310 */
3311void ata_qc_prep(struct ata_queued_cmd *qc)
3312{
3313 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3314 return;
3315
3316 ata_fill_sg(qc);
3317}
3318
Brian Kinge46834c2006-03-17 17:04:03 -06003319void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3320
Jeff Garzik0cba6322005-05-30 19:49:12 -04003321/**
3322 * ata_sg_init_one - Associate command with memory buffer
3323 * @qc: Command to be associated
3324 * @buf: Memory buffer
3325 * @buflen: Length of memory buffer, in bytes.
3326 *
3327 * Initialize the data-related elements of queued_cmd @qc
3328 * to point to a single memory buffer, @buf of byte length @buflen.
3329 *
3330 * LOCKING:
3331 * spin_lock_irqsave(host_set lock)
3332 */
3333
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3335{
3336 struct scatterlist *sg;
3337
3338 qc->flags |= ATA_QCFLAG_SINGLE;
3339
3340 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003341 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003343 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05003345 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003347 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003348 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349}
3350
Jeff Garzik0cba6322005-05-30 19:49:12 -04003351/**
3352 * ata_sg_init - Associate command with scatter-gather table.
3353 * @qc: Command to be associated
3354 * @sg: Scatter-gather table.
3355 * @n_elem: Number of elements in s/g table.
3356 *
3357 * Initialize the data-related elements of queued_cmd @qc
3358 * to point to a scatter-gather table @sg, containing @n_elem
3359 * elements.
3360 *
3361 * LOCKING:
3362 * spin_lock_irqsave(host_set lock)
3363 */
3364
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3366 unsigned int n_elem)
3367{
3368 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003369 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003371 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372}
3373
3374/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003375 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3376 * @qc: Command with memory buffer to be mapped.
3377 *
3378 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 *
3380 * LOCKING:
3381 * spin_lock_irqsave(host_set lock)
3382 *
3383 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003384 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 */
3386
3387static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3388{
3389 struct ata_port *ap = qc->ap;
3390 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003391 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003393 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003395 /* we must lengthen transfers to end on a 32-bit boundary */
3396 qc->pad_len = sg->length & 3;
3397 if (qc->pad_len) {
3398 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3399 struct scatterlist *psg = &qc->pad_sgent;
3400
Tejun Heoa46314742006-02-11 19:11:13 +09003401 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003402
3403 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3404
3405 if (qc->tf.flags & ATA_TFLAG_WRITE)
3406 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3407 qc->pad_len);
3408
3409 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3410 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3411 /* trim sg */
3412 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003413 if (sg->length == 0)
3414 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003415
3416 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3417 sg->length, qc->pad_len);
3418 }
3419
Tejun Heo2e242fa2006-02-20 23:48:38 +09003420 if (trim_sg) {
3421 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003422 goto skip_map;
3423 }
3424
Brian King2f1f6102006-03-23 17:30:15 -06003425 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003426 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003427 if (dma_mapping_error(dma_address)) {
3428 /* restore sg */
3429 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
3433 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003434 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Tejun Heo2e242fa2006-02-20 23:48:38 +09003436skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3438 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3439
3440 return 0;
3441}
3442
3443/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003444 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3445 * @qc: Command with scatter-gather table to be mapped.
3446 *
3447 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 *
3449 * LOCKING:
3450 * spin_lock_irqsave(host_set lock)
3451 *
3452 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003453 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 *
3455 */
3456
3457static int ata_sg_setup(struct ata_queued_cmd *qc)
3458{
3459 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003460 struct scatterlist *sg = qc->__sg;
3461 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003462 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
3464 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa46314742006-02-11 19:11:13 +09003465 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003467 /* we must lengthen transfers to end on a 32-bit boundary */
3468 qc->pad_len = lsg->length & 3;
3469 if (qc->pad_len) {
3470 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3471 struct scatterlist *psg = &qc->pad_sgent;
3472 unsigned int offset;
3473
Tejun Heoa46314742006-02-11 19:11:13 +09003474 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003475
3476 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3477
3478 /*
3479 * psg->page/offset are used to copy to-be-written
3480 * data in this function or read data in ata_sg_clean.
3481 */
3482 offset = lsg->offset + lsg->length - qc->pad_len;
3483 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3484 psg->offset = offset_in_page(offset);
3485
3486 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3487 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3488 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003489 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003490 }
3491
3492 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3493 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3494 /* trim last sg */
3495 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003496 if (lsg->length == 0)
3497 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003498
3499 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3500 qc->n_elem - 1, lsg->length, qc->pad_len);
3501 }
3502
Jeff Garzike1410f22005-11-14 14:06:26 -05003503 pre_n_elem = qc->n_elem;
3504 if (trim_sg && pre_n_elem)
3505 pre_n_elem--;
3506
3507 if (!pre_n_elem) {
3508 n_elem = 0;
3509 goto skip_map;
3510 }
3511
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003513 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003514 if (n_elem < 1) {
3515 /* restore last sg */
3516 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
3520 DPRINTK("%d sg elements mapped\n", n_elem);
3521
Jeff Garzike1410f22005-11-14 14:06:26 -05003522skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 qc->n_elem = n_elem;
3524
3525 return 0;
3526}
3527
3528/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003529 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003530 * @buf: Buffer to swap
3531 * @buf_words: Number of 16-bit words in buffer.
3532 *
3533 * Swap halves of 16-bit words if needed to convert from
3534 * little-endian byte order to native cpu byte order, or
3535 * vice-versa.
3536 *
3537 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003538 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003539 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540void swap_buf_le16(u16 *buf, unsigned int buf_words)
3541{
3542#ifdef __BIG_ENDIAN
3543 unsigned int i;
3544
3545 for (i = 0; i < buf_words; i++)
3546 buf[i] = le16_to_cpu(buf[i]);
3547#endif /* __BIG_ENDIAN */
3548}
3549
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003550/**
3551 * ata_mmio_data_xfer - Transfer data by MMIO
Jeff Garzikbf717b112006-06-13 20:27:03 -04003552 * @adev: device for this I/O
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003553 * @buf: data buffer
3554 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003555 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003556 *
3557 * Transfer data from/to the device data register by MMIO.
3558 *
3559 * LOCKING:
3560 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003561 */
3562
Tejun Heo88574552006-06-25 20:00:35 +09003563void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf,
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003564 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003566 struct ata_port *ap = adev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 unsigned int i;
3568 unsigned int words = buflen >> 1;
3569 u16 *buf16 = (u16 *) buf;
3570 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3571
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003572 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 if (write_data) {
3574 for (i = 0; i < words; i++)
3575 writew(le16_to_cpu(buf16[i]), mmio);
3576 } else {
3577 for (i = 0; i < words; i++)
3578 buf16[i] = cpu_to_le16(readw(mmio));
3579 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003580
3581 /* Transfer trailing 1 byte, if any. */
3582 if (unlikely(buflen & 0x01)) {
3583 u16 align_buf[1] = { 0 };
3584 unsigned char *trailing_buf = buf + buflen - 1;
3585
3586 if (write_data) {
3587 memcpy(align_buf, trailing_buf, 1);
3588 writew(le16_to_cpu(align_buf[0]), mmio);
3589 } else {
3590 align_buf[0] = cpu_to_le16(readw(mmio));
3591 memcpy(trailing_buf, align_buf, 1);
3592 }
3593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594}
3595
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003596/**
3597 * ata_pio_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003598 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003599 * @buf: data buffer
3600 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003601 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003602 *
3603 * Transfer data from/to the device data register by PIO.
3604 *
3605 * LOCKING:
3606 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003607 */
3608
Tejun Heo88574552006-06-25 20:00:35 +09003609void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf,
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003610 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003612 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003613 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003615 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003617 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003619 insw(ap->ioaddr.data_addr, buf, words);
3620
3621 /* Transfer trailing 1 byte, if any. */
3622 if (unlikely(buflen & 0x01)) {
3623 u16 align_buf[1] = { 0 };
3624 unsigned char *trailing_buf = buf + buflen - 1;
3625
3626 if (write_data) {
3627 memcpy(align_buf, trailing_buf, 1);
3628 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3629 } else {
3630 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3631 memcpy(trailing_buf, align_buf, 1);
3632 }
3633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634}
3635
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003636/**
Alan Cox75e99582006-05-24 14:14:41 +01003637 * ata_pio_data_xfer_noirq - Transfer data by PIO
3638 * @adev: device to target
3639 * @buf: data buffer
3640 * @buflen: buffer length
3641 * @write_data: read/write
3642 *
Tejun Heo88574552006-06-25 20:00:35 +09003643 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01003644 * transfer with interrupts disabled.
3645 *
3646 * LOCKING:
3647 * Inherited from caller.
3648 */
3649
3650void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
3651 unsigned int buflen, int write_data)
3652{
3653 unsigned long flags;
3654 local_irq_save(flags);
3655 ata_pio_data_xfer(adev, buf, buflen, write_data);
3656 local_irq_restore(flags);
3657}
3658
3659
3660/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003661 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3662 * @qc: Command on going
3663 *
3664 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3665 *
3666 * LOCKING:
3667 * Inherited from caller.
3668 */
3669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670static void ata_pio_sector(struct ata_queued_cmd *qc)
3671{
3672 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003673 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 struct ata_port *ap = qc->ap;
3675 struct page *page;
3676 unsigned int offset;
3677 unsigned char *buf;
3678
3679 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003680 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
3682 page = sg[qc->cursg].page;
3683 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3684
3685 /* get the current page and offset */
3686 page = nth_page(page, (offset >> PAGE_SHIFT));
3687 offset %= PAGE_SIZE;
3688
Albert Lee7282aa42005-10-09 09:46:07 -04003689 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3690
Albert Lee91b8b312005-10-09 09:48:44 -04003691 if (PageHighMem(page)) {
3692 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003693
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003694 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003695 local_irq_save(flags);
3696 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003697
Albert Lee91b8b312005-10-09 09:48:44 -04003698 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003699 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003700
3701 kunmap_atomic(buf, KM_IRQ0);
3702 local_irq_restore(flags);
3703 } else {
3704 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003705 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707
3708 qc->cursect++;
3709 qc->cursg_ofs++;
3710
Albert Lee32529e02005-05-26 03:49:42 -04003711 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 qc->cursg++;
3713 qc->cursg_ofs = 0;
3714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003717/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003718 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3719 * @qc: Command on going
3720 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003721 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08003722 * ATA device for the DRQ request.
3723 *
3724 * LOCKING:
3725 * Inherited from caller.
3726 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Albert Lee07f6f7d2005-11-01 19:33:20 +08003728static void ata_pio_sectors(struct ata_queued_cmd *qc)
3729{
3730 if (is_multi_taskfile(&qc->tf)) {
3731 /* READ/WRITE MULTIPLE */
3732 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Jeff Garzik587005d2006-02-11 18:17:32 -05003734 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003735
3736 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3737 while (nsect--)
3738 ata_pio_sector(qc);
3739 } else
3740 ata_pio_sector(qc);
3741}
3742
3743/**
Albert Leec71c1852005-10-04 06:03:45 -04003744 * atapi_send_cdb - Write CDB bytes to hardware
3745 * @ap: Port to which ATAPI device is attached.
3746 * @qc: Taskfile currently active
3747 *
3748 * When device has indicated its readiness to accept
3749 * a CDB, this function is called. Send the CDB.
3750 *
3751 * LOCKING:
3752 * caller.
3753 */
3754
3755static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3756{
3757 /* send SCSI cdb */
3758 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003759 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003760
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003761 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003762 ata_altstatus(ap); /* flush */
3763
3764 switch (qc->tf.protocol) {
3765 case ATA_PROT_ATAPI:
3766 ap->hsm_task_state = HSM_ST;
3767 break;
3768 case ATA_PROT_ATAPI_NODATA:
3769 ap->hsm_task_state = HSM_ST_LAST;
3770 break;
3771 case ATA_PROT_ATAPI_DMA:
3772 ap->hsm_task_state = HSM_ST_LAST;
3773 /* initiate bmdma */
3774 ap->ops->bmdma_start(qc);
3775 break;
3776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777}
3778
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003779/**
3780 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3781 * @qc: Command on going
3782 * @bytes: number of bytes
3783 *
3784 * Transfer Transfer data from/to the ATAPI device.
3785 *
3786 * LOCKING:
3787 * Inherited from caller.
3788 *
3789 */
3790
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3792{
3793 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003794 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 struct ata_port *ap = qc->ap;
3796 struct page *page;
3797 unsigned char *buf;
3798 unsigned int offset, count;
3799
Albert Lee563a6e12005-08-12 14:17:50 +08003800 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003801 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802
3803next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003804 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003805 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003806 * The end of qc->sg is reached and the device expects
3807 * more data to transfer. In order not to overrun qc->sg
3808 * and fulfill length specified in the byte count register,
3809 * - for read case, discard trailing data from the device
3810 * - for write case, padding zero data to the device
3811 */
3812 u16 pad_buf[1] = { 0 };
3813 unsigned int words = bytes >> 1;
3814 unsigned int i;
3815
3816 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003817 ata_dev_printk(qc->dev, KERN_WARNING,
3818 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003819
3820 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003821 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08003822
Albert Lee14be71f2005-09-27 17:36:35 +08003823 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003824 return;
3825 }
3826
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003827 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 page = sg->page;
3830 offset = sg->offset + qc->cursg_ofs;
3831
3832 /* get the current page and offset */
3833 page = nth_page(page, (offset >> PAGE_SHIFT));
3834 offset %= PAGE_SIZE;
3835
Albert Lee6952df02005-06-06 15:56:03 +08003836 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003837 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
3839 /* don't cross page boundaries */
3840 count = min(count, (unsigned int)PAGE_SIZE - offset);
3841
Albert Lee7282aa42005-10-09 09:46:07 -04003842 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3843
Albert Lee91b8b312005-10-09 09:48:44 -04003844 if (PageHighMem(page)) {
3845 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003846
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003847 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003848 local_irq_save(flags);
3849 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003850
Albert Lee91b8b312005-10-09 09:48:44 -04003851 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003852 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003853
3854 kunmap_atomic(buf, KM_IRQ0);
3855 local_irq_restore(flags);
3856 } else {
3857 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003858 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
3861 bytes -= count;
3862 qc->curbytes += count;
3863 qc->cursg_ofs += count;
3864
Albert Lee32529e02005-05-26 03:49:42 -04003865 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 qc->cursg++;
3867 qc->cursg_ofs = 0;
3868 }
3869
Albert Lee563a6e12005-08-12 14:17:50 +08003870 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872}
3873
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003874/**
3875 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3876 * @qc: Command on going
3877 *
3878 * Transfer Transfer data from/to the ATAPI device.
3879 *
3880 * LOCKING:
3881 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003882 */
3883
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3885{
3886 struct ata_port *ap = qc->ap;
3887 struct ata_device *dev = qc->dev;
3888 unsigned int ireason, bc_lo, bc_hi, bytes;
3889 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3890
Albert Leeeec4c3f2006-05-18 17:51:10 +08003891 /* Abuse qc->result_tf for temp storage of intermediate TF
3892 * here to save some kernel stack usage.
3893 * For normal completion, qc->result_tf is not relevant. For
3894 * error, qc->result_tf is later overwritten by ata_qc_complete().
3895 * So, the correctness of qc->result_tf is not affected.
3896 */
3897 ap->ops->tf_read(ap, &qc->result_tf);
3898 ireason = qc->result_tf.nsect;
3899 bc_lo = qc->result_tf.lbam;
3900 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 bytes = (bc_hi << 8) | bc_lo;
3902
3903 /* shall be cleared to zero, indicating xfer of data */
3904 if (ireason & (1 << 0))
3905 goto err_out;
3906
3907 /* make sure transfer direction matches expected */
3908 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3909 if (do_write != i_write)
3910 goto err_out;
3911
Albert Lee312f7da2005-09-27 17:38:03 +08003912 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3913
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 __atapi_pio_bytes(qc, bytes);
3915
3916 return;
3917
3918err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003919 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003920 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003921 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922}
3923
3924/**
Albert Leec234fb02006-03-25 17:58:38 +08003925 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3926 * @ap: the target ata_port
3927 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 *
Albert Leec234fb02006-03-25 17:58:38 +08003929 * RETURNS:
3930 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 */
Albert Leec234fb02006-03-25 17:58:38 +08003932
3933static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934{
Albert Leec234fb02006-03-25 17:58:38 +08003935 if (qc->tf.flags & ATA_TFLAG_POLLING)
3936 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
Albert Leec234fb02006-03-25 17:58:38 +08003938 if (ap->hsm_task_state == HSM_ST_FIRST) {
3939 if (qc->tf.protocol == ATA_PROT_PIO &&
3940 (qc->tf.flags & ATA_TFLAG_WRITE))
3941 return 1;
3942
3943 if (is_atapi_taskfile(&qc->tf) &&
3944 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3945 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 }
3947
Albert Leec234fb02006-03-25 17:58:38 +08003948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949}
3950
Albert Leec234fb02006-03-25 17:58:38 +08003951/**
Tejun Heoc17ea202006-05-15 20:59:29 +09003952 * ata_hsm_qc_complete - finish a qc running on standard HSM
3953 * @qc: Command to complete
3954 * @in_wq: 1 if called from workqueue, 0 otherwise
3955 *
3956 * Finish @qc which is running on standard HSM.
3957 *
3958 * LOCKING:
3959 * If @in_wq is zero, spin_lock_irqsave(host_set lock).
3960 * Otherwise, none on entry and grabs host lock.
3961 */
3962static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
3963{
3964 struct ata_port *ap = qc->ap;
3965 unsigned long flags;
3966
3967 if (ap->ops->error_handler) {
3968 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04003969 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003970
3971 /* EH might have kicked in while host_set lock
3972 * is released.
3973 */
3974 qc = ata_qc_from_tag(ap, qc->tag);
3975 if (qc) {
3976 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
3977 ata_irq_on(ap);
3978 ata_qc_complete(qc);
3979 } else
3980 ata_port_freeze(ap);
3981 }
3982
Jeff Garzikba6a1302006-06-22 23:46:10 -04003983 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003984 } else {
3985 if (likely(!(qc->err_mask & AC_ERR_HSM)))
3986 ata_qc_complete(qc);
3987 else
3988 ata_port_freeze(ap);
3989 }
3990 } else {
3991 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04003992 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003993 ata_irq_on(ap);
3994 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04003995 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003996 } else
3997 ata_qc_complete(qc);
3998 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003999
4000 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09004001}
4002
4003/**
Albert Leebb5cb292006-03-25 17:48:02 +08004004 * ata_hsm_move - move the HSM to the next state.
4005 * @ap: the target ata_port
4006 * @qc: qc on going
4007 * @status: current device status
4008 * @in_wq: 1 if called from workqueue, 0 otherwise
4009 *
4010 * RETURNS:
4011 * 1 when poll next status needed, 0 otherwise.
4012 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004013int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4014 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015{
Albert Leebb5cb292006-03-25 17:48:02 +08004016 unsigned long flags = 0;
4017 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Albert Lee6912ccd2006-03-25 17:45:49 +08004019 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004020
Albert Leebb5cb292006-03-25 17:48:02 +08004021 /* Make sure ata_qc_issue_prot() does not throw things
4022 * like DMA polling into the workqueue. Notice that
4023 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004024 */
Albert Leec234fb02006-03-25 17:58:38 +08004025 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004026
Albert Leee2cec772006-03-25 17:43:49 +08004027fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004028 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
4029 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
Albert Leee2cec772006-03-25 17:43:49 +08004031 switch (ap->hsm_task_state) {
4032 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004033 /* Send first data block or PACKET CDB */
4034
4035 /* If polling, we will stay in the work queue after
4036 * sending the data. Otherwise, interrupt handler
4037 * takes over after sending the data.
4038 */
4039 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4040
Albert Leee2cec772006-03-25 17:43:49 +08004041 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004042 if (unlikely((status & ATA_DRQ) == 0)) {
4043 /* handle BSY=0, DRQ=0 as error */
4044 if (likely(status & (ATA_ERR | ATA_DF)))
4045 /* device stops HSM for abort/error */
4046 qc->err_mask |= AC_ERR_DEV;
4047 else
4048 /* HSM violation. Let EH handle this */
4049 qc->err_mask |= AC_ERR_HSM;
4050
Albert Leee2cec772006-03-25 17:43:49 +08004051 ap->hsm_task_state = HSM_ST_ERR;
4052 goto fsm_start;
4053 }
4054
Albert Lee71601952006-03-25 18:11:12 +08004055 /* Device should not ask for data transfer (DRQ=1)
4056 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004057 * We ignore DRQ here and stop the HSM by
4058 * changing hsm_task_state to HSM_ST_ERR and
4059 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004060 */
4061 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4062 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4063 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004064 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004065 ap->hsm_task_state = HSM_ST_ERR;
4066 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004067 }
4068
Albert Leebb5cb292006-03-25 17:48:02 +08004069 /* Send the CDB (atapi) or the first data block (ata pio out).
4070 * During the state transition, interrupt handler shouldn't
4071 * be invoked before the data transfer is complete and
4072 * hsm_task_state is changed. Hence, the following locking.
4073 */
4074 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004075 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004076
Albert Leebb5cb292006-03-25 17:48:02 +08004077 if (qc->tf.protocol == ATA_PROT_PIO) {
4078 /* PIO data out protocol.
4079 * send first data block.
4080 */
4081
4082 /* ata_pio_sectors() might change the state
4083 * to HSM_ST_LAST. so, the state is changed here
4084 * before ata_pio_sectors().
4085 */
4086 ap->hsm_task_state = HSM_ST;
4087 ata_pio_sectors(qc);
4088 ata_altstatus(ap); /* flush */
4089 } else
4090 /* send CDB */
4091 atapi_send_cdb(ap, qc);
4092
4093 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004094 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004095
4096 /* if polling, ata_pio_task() handles the rest.
4097 * otherwise, interrupt handler takes over from here.
4098 */
Albert Leee2cec772006-03-25 17:43:49 +08004099 break;
4100
4101 case HSM_ST:
4102 /* complete command or read/write the data register */
4103 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4104 /* ATAPI PIO protocol */
4105 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004106 /* No more data to transfer or device error.
4107 * Device error will be tagged in HSM_ST_LAST.
4108 */
Albert Leee2cec772006-03-25 17:43:49 +08004109 ap->hsm_task_state = HSM_ST_LAST;
4110 goto fsm_start;
4111 }
4112
Albert Lee71601952006-03-25 18:11:12 +08004113 /* Device should not ask for data transfer (DRQ=1)
4114 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004115 * We ignore DRQ here and stop the HSM by
4116 * changing hsm_task_state to HSM_ST_ERR and
4117 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004118 */
4119 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4120 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4121 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004122 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004123 ap->hsm_task_state = HSM_ST_ERR;
4124 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004125 }
4126
Albert Leee2cec772006-03-25 17:43:49 +08004127 atapi_pio_bytes(qc);
4128
4129 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4130 /* bad ireason reported by device */
4131 goto fsm_start;
4132
4133 } else {
4134 /* ATA PIO protocol */
4135 if (unlikely((status & ATA_DRQ) == 0)) {
4136 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004137 if (likely(status & (ATA_ERR | ATA_DF)))
4138 /* device stops HSM for abort/error */
4139 qc->err_mask |= AC_ERR_DEV;
4140 else
4141 /* HSM violation. Let EH handle this */
4142 qc->err_mask |= AC_ERR_HSM;
4143
Albert Leee2cec772006-03-25 17:43:49 +08004144 ap->hsm_task_state = HSM_ST_ERR;
4145 goto fsm_start;
4146 }
4147
Albert Leeeee6c322006-04-01 17:38:43 +08004148 /* For PIO reads, some devices may ask for
4149 * data transfer (DRQ=1) alone with ERR=1.
4150 * We respect DRQ here and transfer one
4151 * block of junk data before changing the
4152 * hsm_task_state to HSM_ST_ERR.
4153 *
4154 * For PIO writes, ERR=1 DRQ=1 doesn't make
4155 * sense since the data block has been
4156 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004157 */
4158 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004159 /* data might be corrputed */
4160 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004161
4162 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4163 ata_pio_sectors(qc);
4164 ata_altstatus(ap);
4165 status = ata_wait_idle(ap);
4166 }
4167
Albert Lee3655d1d2006-05-19 11:43:04 +08004168 if (status & (ATA_BUSY | ATA_DRQ))
4169 qc->err_mask |= AC_ERR_HSM;
4170
Albert Leeeee6c322006-04-01 17:38:43 +08004171 /* ata_pio_sectors() might change the
4172 * state to HSM_ST_LAST. so, the state
4173 * is changed after ata_pio_sectors().
4174 */
4175 ap->hsm_task_state = HSM_ST_ERR;
4176 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004177 }
4178
Albert Leee2cec772006-03-25 17:43:49 +08004179 ata_pio_sectors(qc);
4180
4181 if (ap->hsm_task_state == HSM_ST_LAST &&
4182 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4183 /* all data read */
4184 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004185 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004186 goto fsm_start;
4187 }
4188 }
4189
4190 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004191 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004192 break;
4193
4194 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004195 if (unlikely(!ata_ok(status))) {
4196 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004197 ap->hsm_task_state = HSM_ST_ERR;
4198 goto fsm_start;
4199 }
4200
4201 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004202 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4203 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004204
Albert Lee6912ccd2006-03-25 17:45:49 +08004205 WARN_ON(qc->err_mask);
4206
Albert Leee2cec772006-03-25 17:43:49 +08004207 ap->hsm_task_state = HSM_ST_IDLE;
4208
4209 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004210 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004211
4212 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004213 break;
4214
4215 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004216 /* make sure qc->err_mask is available to
4217 * know what's wrong and recover
4218 */
4219 WARN_ON(qc->err_mask == 0);
4220
4221 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004222
Albert Lee999bb6f2006-03-25 18:07:48 +08004223 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004224 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004225
4226 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004227 break;
4228 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004229 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004230 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004231 }
4232
Albert Leebb5cb292006-03-25 17:48:02 +08004233 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234}
4235
4236static void ata_pio_task(void *_data)
4237{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004238 struct ata_queued_cmd *qc = _data;
4239 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004240 u8 status;
4241 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004242
4243fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004244 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245
Albert Leea1af3732006-03-25 17:50:15 +08004246 /*
4247 * This is purely heuristic. This is a fast path.
4248 * Sometimes when we enter, BSY will be cleared in
4249 * a chk-status or two. If not, the drive is probably seeking
4250 * or something. Snooze for a couple msecs, then
4251 * chk-status again. If still busy, queue delayed work.
4252 */
4253 status = ata_busy_wait(ap, ATA_BUSY, 5);
4254 if (status & ATA_BUSY) {
4255 msleep(2);
4256 status = ata_busy_wait(ap, ATA_BUSY, 10);
4257 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004258 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004259 return;
4260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 }
4262
Albert Leea1af3732006-03-25 17:50:15 +08004263 /* move the HSM */
4264 poll_next = ata_hsm_move(ap, qc, status, 1);
4265
4266 /* another command or interrupt handler
4267 * may be running at this point.
4268 */
4269 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004270 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271}
4272
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 * ata_qc_new - Request an available ATA command, for queueing
4275 * @ap: Port associated with device @dev
4276 * @dev: Device from whom we request an available command structure
4277 *
4278 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004279 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 */
4281
4282static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4283{
4284 struct ata_queued_cmd *qc = NULL;
4285 unsigned int i;
4286
Tejun Heoe3180492006-05-15 20:58:09 +09004287 /* no command while frozen */
4288 if (unlikely(ap->flags & ATA_FLAG_FROZEN))
4289 return NULL;
4290
Tejun Heo2ab7db12006-05-15 20:58:02 +09004291 /* the last tag is reserved for internal command. */
4292 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004293 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004294 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 break;
4296 }
4297
4298 if (qc)
4299 qc->tag = i;
4300
4301 return qc;
4302}
4303
4304/**
4305 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 * @dev: Device from whom we request an available command structure
4307 *
4308 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004309 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 */
4311
Tejun Heo3373efd2006-05-15 20:57:53 +09004312struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313{
Tejun Heo3373efd2006-05-15 20:57:53 +09004314 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 struct ata_queued_cmd *qc;
4316
4317 qc = ata_qc_new(ap);
4318 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 qc->scsicmd = NULL;
4320 qc->ap = ap;
4321 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004323 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 }
4325
4326 return qc;
4327}
4328
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329/**
4330 * ata_qc_free - free unused ata_queued_cmd
4331 * @qc: Command to complete
4332 *
4333 * Designed to free unused ata_queued_cmd object
4334 * in case something prevents using it.
4335 *
4336 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004337 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 */
4339void ata_qc_free(struct ata_queued_cmd *qc)
4340{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004341 struct ata_port *ap = qc->ap;
4342 unsigned int tag;
4343
Tejun Heoa46314742006-02-11 19:11:13 +09004344 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
Tejun Heo4ba946e2006-01-23 13:09:36 +09004346 qc->flags = 0;
4347 tag = qc->tag;
4348 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004349 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004350 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352}
4353
Tejun Heo76014422006-02-11 15:13:49 +09004354void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004356 struct ata_port *ap = qc->ap;
4357
Tejun Heoa46314742006-02-11 19:11:13 +09004358 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4359 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
4361 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4362 ata_sg_clean(qc);
4363
Tejun Heo7401abf2006-05-15 20:57:32 +09004364 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004365 if (qc->tf.protocol == ATA_PROT_NCQ)
4366 ap->sactive &= ~(1 << qc->tag);
4367 else
4368 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004369
Albert Lee3f3791d2005-08-16 14:25:38 +08004370 /* atapi: mark qc as inactive to prevent the interrupt handler
4371 * from completing the command twice later, before the error handler
4372 * is called. (when rc != 0 and atapi request sense is needed)
4373 */
4374 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004375 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004376
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004378 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379}
4380
Tejun Heof686bcb2006-05-15 20:58:05 +09004381/**
4382 * ata_qc_complete - Complete an active ATA command
4383 * @qc: Command to complete
4384 * @err_mask: ATA Status register contents
4385 *
4386 * Indicate to the mid and upper layers that an ATA
4387 * command has completed, with either an ok or not-ok status.
4388 *
4389 * LOCKING:
4390 * spin_lock_irqsave(host_set lock)
4391 */
4392void ata_qc_complete(struct ata_queued_cmd *qc)
4393{
4394 struct ata_port *ap = qc->ap;
4395
4396 /* XXX: New EH and old EH use different mechanisms to
4397 * synchronize EH with regular execution path.
4398 *
4399 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4400 * Normal execution path is responsible for not accessing a
4401 * failed qc. libata core enforces the rule by returning NULL
4402 * from ata_qc_from_tag() for failed qcs.
4403 *
4404 * Old EH depends on ata_qc_complete() nullifying completion
4405 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4406 * not synchronize with interrupt handler. Only PIO task is
4407 * taken care of.
4408 */
4409 if (ap->ops->error_handler) {
4410 WARN_ON(ap->flags & ATA_FLAG_FROZEN);
4411
4412 if (unlikely(qc->err_mask))
4413 qc->flags |= ATA_QCFLAG_FAILED;
4414
4415 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4416 if (!ata_tag_internal(qc->tag)) {
4417 /* always fill result TF for failed qc */
4418 ap->ops->tf_read(ap, &qc->result_tf);
4419 ata_qc_schedule_eh(qc);
4420 return;
4421 }
4422 }
4423
4424 /* read result TF if requested */
4425 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4426 ap->ops->tf_read(ap, &qc->result_tf);
4427
4428 __ata_qc_complete(qc);
4429 } else {
4430 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4431 return;
4432
4433 /* read result TF if failed or requested */
4434 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4435 ap->ops->tf_read(ap, &qc->result_tf);
4436
4437 __ata_qc_complete(qc);
4438 }
4439}
4440
Tejun Heodedaf2b2006-05-15 21:03:43 +09004441/**
4442 * ata_qc_complete_multiple - Complete multiple qcs successfully
4443 * @ap: port in question
4444 * @qc_active: new qc_active mask
4445 * @finish_qc: LLDD callback invoked before completing a qc
4446 *
4447 * Complete in-flight commands. This functions is meant to be
4448 * called from low-level driver's interrupt routine to complete
4449 * requests normally. ap->qc_active and @qc_active is compared
4450 * and commands are completed accordingly.
4451 *
4452 * LOCKING:
4453 * spin_lock_irqsave(host_set lock)
4454 *
4455 * RETURNS:
4456 * Number of completed commands on success, -errno otherwise.
4457 */
4458int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4459 void (*finish_qc)(struct ata_queued_cmd *))
4460{
4461 int nr_done = 0;
4462 u32 done_mask;
4463 int i;
4464
4465 done_mask = ap->qc_active ^ qc_active;
4466
4467 if (unlikely(done_mask & qc_active)) {
4468 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4469 "(%08x->%08x)\n", ap->qc_active, qc_active);
4470 return -EINVAL;
4471 }
4472
4473 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4474 struct ata_queued_cmd *qc;
4475
4476 if (!(done_mask & (1 << i)))
4477 continue;
4478
4479 if ((qc = ata_qc_from_tag(ap, i))) {
4480 if (finish_qc)
4481 finish_qc(qc);
4482 ata_qc_complete(qc);
4483 nr_done++;
4484 }
4485 }
4486
4487 return nr_done;
4488}
4489
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4491{
4492 struct ata_port *ap = qc->ap;
4493
4494 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004495 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 case ATA_PROT_DMA:
4497 case ATA_PROT_ATAPI_DMA:
4498 return 1;
4499
4500 case ATA_PROT_ATAPI:
4501 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 if (ap->flags & ATA_FLAG_PIO_DMA)
4503 return 1;
4504
4505 /* fall through */
4506
4507 default:
4508 return 0;
4509 }
4510
4511 /* never reached */
4512}
4513
4514/**
4515 * ata_qc_issue - issue taskfile to device
4516 * @qc: command to issue to device
4517 *
4518 * Prepare an ATA command to submission to device.
4519 * This includes mapping the data into a DMA-able
4520 * area, filling in the S/G table, and finally
4521 * writing the taskfile to hardware, starting the command.
4522 *
4523 * LOCKING:
4524 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004526void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527{
4528 struct ata_port *ap = qc->ap;
4529
Tejun Heodedaf2b2006-05-15 21:03:43 +09004530 /* Make sure only one non-NCQ command is outstanding. The
4531 * check is skipped for old EH because it reuses active qc to
4532 * request ATAPI sense.
4533 */
4534 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4535
4536 if (qc->tf.protocol == ATA_PROT_NCQ) {
4537 WARN_ON(ap->sactive & (1 << qc->tag));
4538 ap->sactive |= 1 << qc->tag;
4539 } else {
4540 WARN_ON(ap->sactive);
4541 ap->active_tag = qc->tag;
4542 }
4543
Tejun Heoe4a70e72006-03-31 20:36:47 +09004544 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004545 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004546
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 if (ata_should_dma_map(qc)) {
4548 if (qc->flags & ATA_QCFLAG_SG) {
4549 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004550 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4552 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004553 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 }
4555 } else {
4556 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4557 }
4558
4559 ap->ops->qc_prep(qc);
4560
Tejun Heo8e0e6942006-03-31 20:41:11 +09004561 qc->err_mask |= ap->ops->qc_issue(qc);
4562 if (unlikely(qc->err_mask))
4563 goto err;
4564 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565
Tejun Heo8e436af2006-01-23 13:09:36 +09004566sg_err:
4567 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004568 qc->err_mask |= AC_ERR_SYSTEM;
4569err:
4570 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571}
4572
4573/**
4574 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4575 * @qc: command to issue to device
4576 *
4577 * Using various libata functions and hooks, this function
4578 * starts an ATA command. ATA commands are grouped into
4579 * classes called "protocols", and issuing each type of protocol
4580 * is slightly different.
4581 *
Edward Falk0baab862005-06-02 18:17:13 -04004582 * May be used as the qc_issue() entry in ata_port_operations.
4583 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 * LOCKING:
4585 * spin_lock_irqsave(host_set lock)
4586 *
4587 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004588 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 */
4590
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004591unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592{
4593 struct ata_port *ap = qc->ap;
4594
Albert Leee50362e2005-09-27 17:39:50 +08004595 /* Use polling pio if the LLD doesn't handle
4596 * interrupt driven pio and atapi CDB interrupt.
4597 */
4598 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4599 switch (qc->tf.protocol) {
4600 case ATA_PROT_PIO:
4601 case ATA_PROT_ATAPI:
4602 case ATA_PROT_ATAPI_NODATA:
4603 qc->tf.flags |= ATA_TFLAG_POLLING;
4604 break;
4605 case ATA_PROT_ATAPI_DMA:
4606 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08004607 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08004608 BUG();
4609 break;
4610 default:
4611 break;
4612 }
4613 }
4614
Albert Lee312f7da2005-09-27 17:38:03 +08004615 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 ata_dev_select(ap, qc->dev->devno, 1, 0);
4617
Albert Lee312f7da2005-09-27 17:38:03 +08004618 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 switch (qc->tf.protocol) {
4620 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004621 if (qc->tf.flags & ATA_TFLAG_POLLING)
4622 ata_qc_set_polling(qc);
4623
Jeff Garzike5338252005-10-30 21:37:17 -05004624 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004625 ap->hsm_task_state = HSM_ST_LAST;
4626
4627 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004628 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004629
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 break;
4631
4632 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004633 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004634
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4636 ap->ops->bmdma_setup(qc); /* set up bmdma */
4637 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004638 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 break;
4640
Albert Lee312f7da2005-09-27 17:38:03 +08004641 case ATA_PROT_PIO:
4642 if (qc->tf.flags & ATA_TFLAG_POLLING)
4643 ata_qc_set_polling(qc);
4644
Jeff Garzike5338252005-10-30 21:37:17 -05004645 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004646
Albert Lee54f00382005-09-30 19:14:19 +08004647 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4648 /* PIO data out protocol */
4649 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004650 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004651
4652 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004653 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004654 */
Albert Lee312f7da2005-09-27 17:38:03 +08004655 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004656 /* PIO data in protocol */
4657 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004658
Albert Lee54f00382005-09-30 19:14:19 +08004659 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004660 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004661
Albert Lee54f00382005-09-30 19:14:19 +08004662 /* if polling, ata_pio_task() handles the rest.
4663 * otherwise, interrupt handler takes over from here.
4664 */
Albert Lee312f7da2005-09-27 17:38:03 +08004665 }
4666
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667 break;
4668
4669 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004671 if (qc->tf.flags & ATA_TFLAG_POLLING)
4672 ata_qc_set_polling(qc);
4673
Jeff Garzike5338252005-10-30 21:37:17 -05004674 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004675
Albert Lee312f7da2005-09-27 17:38:03 +08004676 ap->hsm_task_state = HSM_ST_FIRST;
4677
4678 /* send cdb by polling if no cdb interrupt */
4679 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4680 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004681 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 break;
4683
4684 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004685 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004686
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4688 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004689 ap->hsm_task_state = HSM_ST_FIRST;
4690
4691 /* send cdb by polling if no cdb interrupt */
4692 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004693 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 break;
4695
4696 default:
4697 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004698 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 }
4700
4701 return 0;
4702}
4703
4704/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 * ata_host_intr - Handle host interrupt for given (port, task)
4706 * @ap: Port on which interrupt arrived (possibly...)
4707 * @qc: Taskfile currently active in engine
4708 *
4709 * Handle host interrupt for given queued command. Currently,
4710 * only DMA interrupts are handled. All other commands are
4711 * handled via polling with interrupts disabled (nIEN bit).
4712 *
4713 * LOCKING:
4714 * spin_lock_irqsave(host_set lock)
4715 *
4716 * RETURNS:
4717 * One if interrupt was handled, zero if not (shared irq).
4718 */
4719
4720inline unsigned int ata_host_intr (struct ata_port *ap,
4721 struct ata_queued_cmd *qc)
4722{
Albert Lee312f7da2005-09-27 17:38:03 +08004723 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Albert Lee312f7da2005-09-27 17:38:03 +08004725 VPRINTK("ata%u: protocol %d task_state %d\n",
4726 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
Albert Lee312f7da2005-09-27 17:38:03 +08004728 /* Check whether we are expecting interrupt in this state */
4729 switch (ap->hsm_task_state) {
4730 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004731 /* Some pre-ATAPI-4 devices assert INTRQ
4732 * at this state when ready to receive CDB.
4733 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
Albert Lee312f7da2005-09-27 17:38:03 +08004735 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4736 * The flag was turned on only for atapi devices.
4737 * No need to check is_atapi_taskfile(&qc->tf) again.
4738 */
4739 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004742 case HSM_ST_LAST:
4743 if (qc->tf.protocol == ATA_PROT_DMA ||
4744 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4745 /* check status of DMA engine */
4746 host_stat = ap->ops->bmdma_status(ap);
4747 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748
Albert Lee312f7da2005-09-27 17:38:03 +08004749 /* if it's not our irq... */
4750 if (!(host_stat & ATA_DMA_INTR))
4751 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752
Albert Lee312f7da2005-09-27 17:38:03 +08004753 /* before we do anything else, clear DMA-Start bit */
4754 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004755
4756 if (unlikely(host_stat & ATA_DMA_ERR)) {
4757 /* error when transfering data to/from memory */
4758 qc->err_mask |= AC_ERR_HOST_BUS;
4759 ap->hsm_task_state = HSM_ST_ERR;
4760 }
Albert Lee312f7da2005-09-27 17:38:03 +08004761 }
4762 break;
4763 case HSM_ST:
4764 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 default:
4766 goto idle_irq;
4767 }
4768
Albert Lee312f7da2005-09-27 17:38:03 +08004769 /* check altstatus */
4770 status = ata_altstatus(ap);
4771 if (status & ATA_BUSY)
4772 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
Albert Lee312f7da2005-09-27 17:38:03 +08004774 /* check main status, clearing INTRQ */
4775 status = ata_chk_status(ap);
4776 if (unlikely(status & ATA_BUSY))
4777 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
Albert Lee312f7da2005-09-27 17:38:03 +08004779 /* ack bmdma irq events */
4780 ap->ops->irq_clear(ap);
4781
Albert Leebb5cb292006-03-25 17:48:02 +08004782 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783 return 1; /* irq handled */
4784
4785idle_irq:
4786 ap->stats.idle_irq++;
4787
4788#ifdef ATA_IRQ_TRAP
4789 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004791 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004792 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 }
4794#endif
4795 return 0; /* irq not handled */
4796}
4797
4798/**
4799 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004800 * @irq: irq line (unused)
4801 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 * @regs: unused
4803 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004804 * Default interrupt handler for PCI IDE devices. Calls
4805 * ata_host_intr() for each port that is not disabled.
4806 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004808 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 *
4810 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004811 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 */
4813
4814irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4815{
4816 struct ata_host_set *host_set = dev_instance;
4817 unsigned int i;
4818 unsigned int handled = 0;
4819 unsigned long flags;
4820
4821 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4822 spin_lock_irqsave(&host_set->lock, flags);
4823
4824 for (i = 0; i < host_set->n_ports; i++) {
4825 struct ata_port *ap;
4826
4827 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004828 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004829 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 struct ata_queued_cmd *qc;
4831
4832 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004833 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004834 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 handled |= ata_host_intr(ap, qc);
4836 }
4837 }
4838
4839 spin_unlock_irqrestore(&host_set->lock, flags);
4840
4841 return IRQ_RETVAL(handled);
4842}
4843
Tejun Heo34bf2172006-05-15 20:57:46 +09004844/**
4845 * sata_scr_valid - test whether SCRs are accessible
4846 * @ap: ATA port to test SCR accessibility for
4847 *
4848 * Test whether SCRs are accessible for @ap.
4849 *
4850 * LOCKING:
4851 * None.
4852 *
4853 * RETURNS:
4854 * 1 if SCRs are accessible, 0 otherwise.
4855 */
4856int sata_scr_valid(struct ata_port *ap)
4857{
4858 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4859}
4860
4861/**
4862 * sata_scr_read - read SCR register of the specified port
4863 * @ap: ATA port to read SCR for
4864 * @reg: SCR to read
4865 * @val: Place to store read value
4866 *
4867 * Read SCR register @reg of @ap into *@val. This function is
4868 * guaranteed to succeed if the cable type of the port is SATA
4869 * and the port implements ->scr_read.
4870 *
4871 * LOCKING:
4872 * None.
4873 *
4874 * RETURNS:
4875 * 0 on success, negative errno on failure.
4876 */
4877int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4878{
4879 if (sata_scr_valid(ap)) {
4880 *val = ap->ops->scr_read(ap, reg);
4881 return 0;
4882 }
4883 return -EOPNOTSUPP;
4884}
4885
4886/**
4887 * sata_scr_write - write SCR register of the specified port
4888 * @ap: ATA port to write SCR for
4889 * @reg: SCR to write
4890 * @val: value to write
4891 *
4892 * Write @val to SCR register @reg of @ap. This function is
4893 * guaranteed to succeed if the cable type of the port is SATA
4894 * and the port implements ->scr_read.
4895 *
4896 * LOCKING:
4897 * None.
4898 *
4899 * RETURNS:
4900 * 0 on success, negative errno on failure.
4901 */
4902int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4903{
4904 if (sata_scr_valid(ap)) {
4905 ap->ops->scr_write(ap, reg, val);
4906 return 0;
4907 }
4908 return -EOPNOTSUPP;
4909}
4910
4911/**
4912 * sata_scr_write_flush - write SCR register of the specified port and flush
4913 * @ap: ATA port to write SCR for
4914 * @reg: SCR to write
4915 * @val: value to write
4916 *
4917 * This function is identical to sata_scr_write() except that this
4918 * function performs flush after writing to the register.
4919 *
4920 * LOCKING:
4921 * None.
4922 *
4923 * RETURNS:
4924 * 0 on success, negative errno on failure.
4925 */
4926int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4927{
4928 if (sata_scr_valid(ap)) {
4929 ap->ops->scr_write(ap, reg, val);
4930 ap->ops->scr_read(ap, reg);
4931 return 0;
4932 }
4933 return -EOPNOTSUPP;
4934}
4935
4936/**
4937 * ata_port_online - test whether the given port is online
4938 * @ap: ATA port to test
4939 *
4940 * Test whether @ap is online. Note that this function returns 0
4941 * if online status of @ap cannot be obtained, so
4942 * ata_port_online(ap) != !ata_port_offline(ap).
4943 *
4944 * LOCKING:
4945 * None.
4946 *
4947 * RETURNS:
4948 * 1 if the port online status is available and online.
4949 */
4950int ata_port_online(struct ata_port *ap)
4951{
4952 u32 sstatus;
4953
4954 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4955 return 1;
4956 return 0;
4957}
4958
4959/**
4960 * ata_port_offline - test whether the given port is offline
4961 * @ap: ATA port to test
4962 *
4963 * Test whether @ap is offline. Note that this function returns
4964 * 0 if offline status of @ap cannot be obtained, so
4965 * ata_port_online(ap) != !ata_port_offline(ap).
4966 *
4967 * LOCKING:
4968 * None.
4969 *
4970 * RETURNS:
4971 * 1 if the port offline status is available and offline.
4972 */
4973int ata_port_offline(struct ata_port *ap)
4974{
4975 u32 sstatus;
4976
4977 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4978 return 1;
4979 return 0;
4980}
Edward Falk0baab862005-06-02 18:17:13 -04004981
Tejun Heo77b08fb2006-06-24 20:30:19 +09004982int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004983{
Tejun Heo977e6b92006-06-24 20:30:19 +09004984 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01004985 u8 cmd;
4986
4987 if (!ata_try_flush_cache(dev))
4988 return 0;
4989
4990 if (ata_id_has_flush_ext(dev->id))
4991 cmd = ATA_CMD_FLUSH_EXT;
4992 else
4993 cmd = ATA_CMD_FLUSH;
4994
Tejun Heo977e6b92006-06-24 20:30:19 +09004995 err_mask = ata_do_simple_cmd(dev, cmd);
4996 if (err_mask) {
4997 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
4998 return -EIO;
4999 }
5000
5001 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005002}
5003
Tejun Heo3373efd2006-05-15 20:57:53 +09005004static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005005{
Tejun Heo977e6b92006-06-24 20:30:19 +09005006 unsigned int err_mask;
5007
5008 err_mask = ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
5009 if (err_mask) {
5010 ata_dev_printk(dev, KERN_ERR, "failed to standby drive "
5011 "(err_mask=0x%x)\n", err_mask);
5012 return -EIO;
5013 }
5014
5015 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005016}
5017
Tejun Heo3373efd2006-05-15 20:57:53 +09005018static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005019{
Tejun Heo977e6b92006-06-24 20:30:19 +09005020 unsigned int err_mask;
5021
5022 err_mask = ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
5023 if (err_mask) {
5024 ata_dev_printk(dev, KERN_ERR, "failed to start drive "
5025 "(err_mask=0x%x)\n", err_mask);
5026 return -EIO;
5027 }
5028
5029 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005030}
5031
5032/**
5033 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005034 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01005035 *
5036 * Kick the drive back into action, by sending it an idle immediate
5037 * command and making sure its transfer mode matches between drive
5038 * and host.
5039 *
5040 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005041int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005042{
Tejun Heo3373efd2006-05-15 20:57:53 +09005043 struct ata_port *ap = dev->ap;
5044
Jens Axboe9b847542006-01-06 09:28:07 +01005045 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005046 struct ata_device *failed_dev;
Jeff Garzike42d7be2006-05-28 16:32:59 -04005047
Linus Torvalds1cca0eb2006-06-19 18:01:27 -07005048 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Mark Lord0737ac82006-05-28 11:28:00 -04005049 ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 200000);
Jeff Garzike42d7be2006-05-28 16:32:59 -04005050
Jens Axboe9b847542006-01-06 09:28:07 +01005051 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005052 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09005053 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005054 }
Tejun Heoe1211e32006-04-01 01:38:18 +09005055 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005056 return 0;
5057 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005058 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005059
5060 return 0;
5061}
5062
5063/**
5064 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005065 * @dev: the device to suspend
Randy Dunlape2a7f772006-05-18 10:50:18 -07005066 * @state: target power management state
Jens Axboe9b847542006-01-06 09:28:07 +01005067 *
5068 * Flush the cache on the drive, if appropriate, then issue a
5069 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01005070 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005071int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01005072{
Tejun Heo3373efd2006-05-15 20:57:53 +09005073 struct ata_port *ap = dev->ap;
5074
Tejun Heoe1211e32006-04-01 01:38:18 +09005075 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005076 return 0;
5077 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005078 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005079
Nigel Cunningham082776e2006-03-23 23:22:16 +10005080 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09005081 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005082 ap->flags |= ATA_FLAG_SUSPENDED;
5083 return 0;
5084}
5085
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005086/**
5087 * ata_port_start - Set port up for dma.
5088 * @ap: Port to initialize
5089 *
5090 * Called just after data structures for each port are
5091 * initialized. Allocates space for PRD table.
5092 *
5093 * May be used as the port_start() entry in ata_port_operations.
5094 *
5095 * LOCKING:
5096 * Inherited from caller.
5097 */
5098
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099int ata_port_start (struct ata_port *ap)
5100{
Brian King2f1f6102006-03-23 17:30:15 -06005101 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005102 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
5104 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
5105 if (!ap->prd)
5106 return -ENOMEM;
5107
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005108 rc = ata_pad_alloc(ap, dev);
5109 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005110 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005111 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005112 }
5113
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
5115
5116 return 0;
5117}
5118
Edward Falk0baab862005-06-02 18:17:13 -04005119
5120/**
5121 * ata_port_stop - Undo ata_port_start()
5122 * @ap: Port to shut down
5123 *
5124 * Frees the PRD table.
5125 *
5126 * May be used as the port_stop() entry in ata_port_operations.
5127 *
5128 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005129 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005130 */
5131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132void ata_port_stop (struct ata_port *ap)
5133{
Brian King2f1f6102006-03-23 17:30:15 -06005134 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135
5136 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005137 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138}
5139
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005140void ata_host_stop (struct ata_host_set *host_set)
5141{
5142 if (host_set->mmio_base)
5143 iounmap(host_set->mmio_base);
5144}
5145
5146
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147/**
5148 * ata_host_remove - Unregister SCSI host structure with upper layers
5149 * @ap: Port to unregister
5150 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
5151 *
5152 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005153 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 */
5155
5156static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
5157{
5158 struct Scsi_Host *sh = ap->host;
5159
5160 DPRINTK("ENTER\n");
5161
5162 if (do_unregister)
5163 scsi_remove_host(sh);
5164
5165 ap->ops->port_stop(ap);
5166}
5167
5168/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005169 * ata_dev_init - Initialize an ata_device structure
5170 * @dev: Device structure to initialize
5171 *
5172 * Initialize @dev in preparation for probing.
5173 *
5174 * LOCKING:
5175 * Inherited from caller.
5176 */
5177void ata_dev_init(struct ata_device *dev)
5178{
5179 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005180 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005181
Tejun Heo5a04bf42006-05-31 18:27:38 +09005182 /* SATA spd limit is bound to the first device */
5183 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5184
Tejun Heo72fa4b72006-05-31 18:27:32 +09005185 /* High bits of dev->flags are used to record warm plug
5186 * requests which occur asynchronously. Synchronize using
5187 * host_set lock.
5188 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005189 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005190 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005191 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005192
5193 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5194 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005195 dev->pio_mask = UINT_MAX;
5196 dev->mwdma_mask = UINT_MAX;
5197 dev->udma_mask = UINT_MAX;
5198}
5199
5200/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 * ata_host_init - Initialize an ata_port structure
5202 * @ap: Structure to initialize
5203 * @host: associated SCSI mid-layer structure
5204 * @host_set: Collection of hosts to which @ap belongs
5205 * @ent: Probe information provided by low-level driver
5206 * @port_no: Port number associated with this ata_port
5207 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005208 * Initialize a new ata_port structure, and its associated
5209 * scsi_host.
5210 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005212 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
5215 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04005216 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217{
5218 unsigned int i;
5219
5220 host->max_id = 16;
5221 host->max_lun = 1;
5222 host->max_channel = 1;
5223 host->unique_id = ata_unique_id++;
5224 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02005225
Jeff Garzikba6a1302006-06-22 23:46:10 -04005226 ap->lock = &host_set->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005227 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228 ap->id = host->unique_id;
5229 ap->host = host;
5230 ap->ctl = ATA_DEVCTL_OBS;
5231 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06005232 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 ap->port_no = port_no;
5234 ap->hard_port_no =
5235 ent->legacy_mode ? ent->hard_port_no : port_no;
5236 ap->pio_mask = ent->pio_mask;
5237 ap->mwdma_mask = ent->mwdma_mask;
5238 ap->udma_mask = ent->udma_mask;
5239 ap->flags |= ent->host_flags;
5240 ap->ops = ent->port_ops;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005241 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 ap->active_tag = ATA_TAG_POISON;
5243 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005244
5245#if defined(ATA_VERBOSE_DEBUG)
5246 /* turn on all debugging levels */
5247 ap->msg_enable = 0x00FF;
5248#elif defined(ATA_DEBUG)
5249 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR;
Tejun Heo88574552006-06-25 20:00:35 +09005250#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005251 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005252#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253
Tejun Heo86e45b62006-03-05 15:29:09 +09005254 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heo580b21022006-05-31 18:28:05 +09005255 INIT_WORK(&ap->hotplug_task, ata_scsi_hotplug, ap);
zhao, forrest3057ac32006-06-12 12:01:34 +08005256 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan, ap);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005257 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005258 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Tejun Heo838df622006-05-15 20:57:44 +09005260 /* set cable type */
5261 ap->cbl = ATA_CBL_NONE;
5262 if (ap->flags & ATA_FLAG_SATA)
5263 ap->cbl = ATA_CBL_SATA;
5264
Tejun Heoacf356b2006-03-24 14:07:50 +09005265 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5266 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005267 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005268 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005269 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271
5272#ifdef ATA_IRQ_TRAP
5273 ap->stats.unhandled_irq = 1;
5274 ap->stats.idle_irq = 1;
5275#endif
5276
5277 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5278}
5279
5280/**
5281 * ata_host_add - Attach low-level ATA driver to system
5282 * @ent: Information provided by low-level driver
5283 * @host_set: Collections of ports to which we add
5284 * @port_no: Port number associated with this host
5285 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005286 * Attach low-level ATA driver to system.
5287 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005289 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 *
5291 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005292 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293 */
5294
Jeff Garzik057ace52005-10-22 14:27:05 -04005295static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 struct ata_host_set *host_set,
5297 unsigned int port_no)
5298{
5299 struct Scsi_Host *host;
5300 struct ata_port *ap;
5301 int rc;
5302
5303 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005304
Tejun Heo52783c52006-05-31 18:28:22 +09005305 if (!ent->port_ops->error_handler &&
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005306 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
5307 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5308 port_no);
5309 return NULL;
5310 }
5311
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5313 if (!host)
5314 return NULL;
5315
Tejun Heo30afc842006-03-18 18:40:14 +09005316 host->transportt = &ata_scsi_transport_template;
5317
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005318 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319
5320 ata_host_init(ap, host, host_set, ent, port_no);
5321
5322 rc = ap->ops->port_start(ap);
5323 if (rc)
5324 goto err_out;
5325
5326 return ap;
5327
5328err_out:
5329 scsi_host_put(host);
5330 return NULL;
5331}
5332
5333/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005334 * ata_device_add - Register hardware device with ATA and SCSI layers
5335 * @ent: Probe information describing hardware device to be registered
5336 *
5337 * This function processes the information provided in the probe
5338 * information struct @ent, allocates the necessary ATA and SCSI
5339 * host information structures, initializes them, and registers
5340 * everything with requisite kernel subsystems.
5341 *
5342 * This function requests irqs, probes the ATA bus, and probes
5343 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 *
5345 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005346 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 *
5348 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005349 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350 */
Jeff Garzik057ace52005-10-22 14:27:05 -04005351int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352{
5353 unsigned int count = 0, i;
5354 struct device *dev = ent->dev;
5355 struct ata_host_set *host_set;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005356 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
5358 DPRINTK("ENTER\n");
5359 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005360 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5362 if (!host_set)
5363 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 spin_lock_init(&host_set->lock);
5365
5366 host_set->dev = dev;
5367 host_set->n_ports = ent->n_ports;
5368 host_set->irq = ent->irq;
5369 host_set->mmio_base = ent->mmio_base;
5370 host_set->private_data = ent->private_data;
5371 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01005372 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373
5374 /* register each port bound to this device */
5375 for (i = 0; i < ent->n_ports; i++) {
5376 struct ata_port *ap;
5377 unsigned long xfer_mode_mask;
5378
5379 ap = ata_host_add(ent, host_set, i);
5380 if (!ap)
5381 goto err_out;
5382
5383 host_set->ports[i] = ap;
5384 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5385 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5386 (ap->pio_mask << ATA_SHIFT_PIO);
5387
5388 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005389 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
5390 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
5391 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5392 ata_mode_string(xfer_mode_mask),
5393 ap->ioaddr.cmd_addr,
5394 ap->ioaddr.ctl_addr,
5395 ap->ioaddr.bmdma_addr,
5396 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397
5398 ata_chk_status(ap);
5399 host_set->ops->irq_clear(ap);
Tejun Heoe3180492006-05-15 20:58:09 +09005400 ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401 count++;
5402 }
5403
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005404 if (!count)
5405 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406
5407 /* obtain irq, that is shared between channels */
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005408 rc = request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
5409 DRV_NAME, host_set);
5410 if (rc) {
5411 dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n",
5412 ent->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 goto err_out;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415
5416 /* perform each probe synchronously */
5417 DPRINTK("probe begin\n");
5418 for (i = 0; i < count; i++) {
5419 struct ata_port *ap;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005420 u32 scontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 int rc;
5422
5423 ap = host_set->ports[i];
5424
Tejun Heo5a04bf42006-05-31 18:27:38 +09005425 /* init sata_spd_limit to the current value */
5426 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
5427 int spd = (scontrol >> 4) & 0xf;
5428 ap->hw_sata_spd_limit &= (1 << spd) - 1;
5429 }
5430 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5431
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432 rc = scsi_add_host(ap->host, dev);
5433 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005434 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435 /* FIXME: do something useful here */
5436 /* FIXME: handle unconditional calls to
5437 * scsi_scan_host and ata_host_remove, below,
5438 * at the very least
5439 */
5440 }
Tejun Heo3e706392006-05-31 18:28:11 +09005441
Tejun Heo52783c52006-05-31 18:28:22 +09005442 if (ap->ops->error_handler) {
Tejun Heo3e706392006-05-31 18:28:11 +09005443 unsigned long flags;
5444
5445 ata_port_probe(ap);
5446
5447 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005448 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005449
5450 ap->eh_info.probe_mask = (1 << ATA_MAX_DEVICES) - 1;
5451 ap->eh_info.action |= ATA_EH_SOFTRESET;
5452
5453 ap->flags |= ATA_FLAG_LOADING;
5454 ata_port_schedule_eh(ap);
5455
Jeff Garzikba6a1302006-06-22 23:46:10 -04005456 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005457
5458 /* wait for EH to finish */
5459 ata_port_wait_eh(ap);
5460 } else {
5461 DPRINTK("ata%u: bus probe begin\n", ap->id);
5462 rc = ata_bus_probe(ap);
5463 DPRINTK("ata%u: bus probe end\n", ap->id);
5464
5465 if (rc) {
5466 /* FIXME: do something useful here?
5467 * Current libata behavior will
5468 * tear down everything when
5469 * the module is removed
5470 * or the h/w is unplugged.
5471 */
5472 }
5473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 }
5475
5476 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005477 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478 for (i = 0; i < count; i++) {
5479 struct ata_port *ap = host_set->ports[i];
5480
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005481 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 }
5483
5484 dev_set_drvdata(dev, host_set);
5485
5486 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5487 return ent->n_ports; /* success */
5488
5489err_out:
5490 for (i = 0; i < count; i++) {
5491 ata_host_remove(host_set->ports[i], 1);
5492 scsi_host_put(host_set->ports[i]->host);
5493 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005494err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495 kfree(host_set);
5496 VPRINTK("EXIT, returning 0\n");
5497 return 0;
5498}
5499
5500/**
Tejun Heo720ba122006-05-31 18:28:13 +09005501 * ata_port_detach - Detach ATA port in prepration of device removal
5502 * @ap: ATA port to be detached
5503 *
5504 * Detach all ATA devices and the associated SCSI devices of @ap;
5505 * then, remove the associated SCSI host. @ap is guaranteed to
5506 * be quiescent on return from this function.
5507 *
5508 * LOCKING:
5509 * Kernel thread context (may sleep).
5510 */
5511void ata_port_detach(struct ata_port *ap)
5512{
5513 unsigned long flags;
5514 int i;
5515
5516 if (!ap->ops->error_handler)
5517 return;
5518
5519 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005520 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005521 ap->flags |= ATA_FLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005522 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005523
5524 ata_port_wait_eh(ap);
5525
5526 /* EH is now guaranteed to see UNLOADING, so no new device
5527 * will be attached. Disable all existing devices.
5528 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005529 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005530
5531 for (i = 0; i < ATA_MAX_DEVICES; i++)
5532 ata_dev_disable(&ap->device[i]);
5533
Jeff Garzikba6a1302006-06-22 23:46:10 -04005534 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005535
5536 /* Final freeze & EH. All in-flight commands are aborted. EH
5537 * will be skipped and retrials will be terminated with bad
5538 * target.
5539 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005540 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005541 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005542 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005543
5544 ata_port_wait_eh(ap);
5545
5546 /* Flush hotplug task. The sequence is similar to
5547 * ata_port_flush_task().
5548 */
5549 flush_workqueue(ata_aux_wq);
5550 cancel_delayed_work(&ap->hotplug_task);
5551 flush_workqueue(ata_aux_wq);
5552
5553 /* remove the associated SCSI host */
5554 scsi_remove_host(ap->host);
5555}
5556
5557/**
Alan Cox17b14452005-09-15 15:44:00 +01005558 * ata_host_set_remove - PCI layer callback for device removal
5559 * @host_set: ATA host set that was removed
5560 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005561 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005562 * objects.
5563 *
5564 * LOCKING:
5565 * Inherited from calling layer (may sleep).
5566 */
5567
Alan Cox17b14452005-09-15 15:44:00 +01005568void ata_host_set_remove(struct ata_host_set *host_set)
5569{
Alan Cox17b14452005-09-15 15:44:00 +01005570 unsigned int i;
5571
Tejun Heo720ba122006-05-31 18:28:13 +09005572 for (i = 0; i < host_set->n_ports; i++)
5573 ata_port_detach(host_set->ports[i]);
Alan Cox17b14452005-09-15 15:44:00 +01005574
5575 free_irq(host_set->irq, host_set);
5576
5577 for (i = 0; i < host_set->n_ports; i++) {
Tejun Heo720ba122006-05-31 18:28:13 +09005578 struct ata_port *ap = host_set->ports[i];
Alan Cox17b14452005-09-15 15:44:00 +01005579
5580 ata_scsi_release(ap->host);
5581
5582 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5583 struct ata_ioports *ioaddr = &ap->ioaddr;
5584
5585 if (ioaddr->cmd_addr == 0x1f0)
5586 release_region(0x1f0, 8);
5587 else if (ioaddr->cmd_addr == 0x170)
5588 release_region(0x170, 8);
5589 }
5590
5591 scsi_host_put(ap->host);
5592 }
5593
5594 if (host_set->ops->host_stop)
5595 host_set->ops->host_stop(host_set);
5596
5597 kfree(host_set);
5598}
5599
5600/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 * ata_scsi_release - SCSI layer callback hook for host unload
5602 * @host: libata host to be unloaded
5603 *
5604 * Performs all duties necessary to shut down a libata port...
5605 * Kill port kthread, disable port, and release resources.
5606 *
5607 * LOCKING:
5608 * Inherited from SCSI layer.
5609 *
5610 * RETURNS:
5611 * One.
5612 */
5613
5614int ata_scsi_release(struct Scsi_Host *host)
5615{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005616 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617
5618 DPRINTK("ENTER\n");
5619
5620 ap->ops->port_disable(ap);
5621 ata_host_remove(ap, 0);
5622
5623 DPRINTK("EXIT\n");
5624 return 1;
5625}
5626
5627/**
5628 * ata_std_ports - initialize ioaddr with standard port offsets.
5629 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005630 *
5631 * Utility function which initializes data_addr, error_addr,
5632 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5633 * device_addr, status_addr, and command_addr to standard offsets
5634 * relative to cmd_addr.
5635 *
5636 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637 */
Edward Falk0baab862005-06-02 18:17:13 -04005638
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639void ata_std_ports(struct ata_ioports *ioaddr)
5640{
5641 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5642 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5643 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5644 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5645 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5646 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5647 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5648 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5649 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5650 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5651}
5652
Edward Falk0baab862005-06-02 18:17:13 -04005653
Jeff Garzik374b1872005-08-30 05:42:52 -04005654#ifdef CONFIG_PCI
5655
5656void ata_pci_host_stop (struct ata_host_set *host_set)
5657{
5658 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5659
5660 pci_iounmap(pdev, host_set->mmio_base);
5661}
5662
Edward Falk0baab862005-06-02 18:17:13 -04005663/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664 * ata_pci_remove_one - PCI layer callback for device removal
5665 * @pdev: PCI device that was removed
5666 *
5667 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005668 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669 * Handle this by unregistering all objects associated
5670 * with this PCI device. Free those objects. Then finally
5671 * release PCI resources and disable device.
5672 *
5673 * LOCKING:
5674 * Inherited from PCI layer (may sleep).
5675 */
5676
5677void ata_pci_remove_one (struct pci_dev *pdev)
5678{
5679 struct device *dev = pci_dev_to_dev(pdev);
5680 struct ata_host_set *host_set = dev_get_drvdata(dev);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005681 struct ata_host_set *host_set2 = host_set->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
Alan Cox17b14452005-09-15 15:44:00 +01005683 ata_host_set_remove(host_set);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005684 if (host_set2)
5685 ata_host_set_remove(host_set2);
5686
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 pci_release_regions(pdev);
5688 pci_disable_device(pdev);
5689 dev_set_drvdata(dev, NULL);
5690}
5691
5692/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005693int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694{
5695 unsigned long tmp = 0;
5696
5697 switch (bits->width) {
5698 case 1: {
5699 u8 tmp8 = 0;
5700 pci_read_config_byte(pdev, bits->reg, &tmp8);
5701 tmp = tmp8;
5702 break;
5703 }
5704 case 2: {
5705 u16 tmp16 = 0;
5706 pci_read_config_word(pdev, bits->reg, &tmp16);
5707 tmp = tmp16;
5708 break;
5709 }
5710 case 4: {
5711 u32 tmp32 = 0;
5712 pci_read_config_dword(pdev, bits->reg, &tmp32);
5713 tmp = tmp32;
5714 break;
5715 }
5716
5717 default:
5718 return -EINVAL;
5719 }
5720
5721 tmp &= bits->mask;
5722
5723 return (tmp == bits->val) ? 1 : 0;
5724}
Jens Axboe9b847542006-01-06 09:28:07 +01005725
5726int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5727{
5728 pci_save_state(pdev);
5729 pci_disable_device(pdev);
5730 pci_set_power_state(pdev, PCI_D3hot);
5731 return 0;
5732}
5733
5734int ata_pci_device_resume(struct pci_dev *pdev)
5735{
5736 pci_set_power_state(pdev, PCI_D0);
5737 pci_restore_state(pdev);
5738 pci_enable_device(pdev);
5739 pci_set_master(pdev);
5740 return 0;
5741}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742#endif /* CONFIG_PCI */
5743
5744
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745static int __init ata_init(void)
5746{
Andrew Mortona8601e52006-06-25 01:36:52 -07005747 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748 ata_wq = create_workqueue("ata");
5749 if (!ata_wq)
5750 return -ENOMEM;
5751
Tejun Heo453b07a2006-05-31 18:27:42 +09005752 ata_aux_wq = create_singlethread_workqueue("ata_aux");
5753 if (!ata_aux_wq) {
5754 destroy_workqueue(ata_wq);
5755 return -ENOMEM;
5756 }
5757
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5759 return 0;
5760}
5761
5762static void __exit ata_exit(void)
5763{
5764 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09005765 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766}
5767
5768module_init(ata_init);
5769module_exit(ata_exit);
5770
Jeff Garzik67846b32005-10-05 02:58:32 -04005771static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07005772static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04005773
5774int ata_ratelimit(void)
5775{
5776 int rc;
5777 unsigned long flags;
5778
5779 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5780
5781 if (time_after(jiffies, ratelimit_time)) {
5782 rc = 1;
5783 ratelimit_time = jiffies + (HZ/5);
5784 } else
5785 rc = 0;
5786
5787 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5788
5789 return rc;
5790}
5791
Tejun Heoc22daff2006-04-11 22:22:29 +09005792/**
5793 * ata_wait_register - wait until register value changes
5794 * @reg: IO-mapped register
5795 * @mask: Mask to apply to read register value
5796 * @val: Wait condition
5797 * @interval_msec: polling interval in milliseconds
5798 * @timeout_msec: timeout in milliseconds
5799 *
5800 * Waiting for some bits of register to change is a common
5801 * operation for ATA controllers. This function reads 32bit LE
5802 * IO-mapped register @reg and tests for the following condition.
5803 *
5804 * (*@reg & mask) != val
5805 *
5806 * If the condition is met, it returns; otherwise, the process is
5807 * repeated after @interval_msec until timeout.
5808 *
5809 * LOCKING:
5810 * Kernel thread context (may sleep)
5811 *
5812 * RETURNS:
5813 * The final register value.
5814 */
5815u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5816 unsigned long interval_msec,
5817 unsigned long timeout_msec)
5818{
5819 unsigned long timeout;
5820 u32 tmp;
5821
5822 tmp = ioread32(reg);
5823
5824 /* Calculate timeout _after_ the first read to make sure
5825 * preceding writes reach the controller before starting to
5826 * eat away the timeout.
5827 */
5828 timeout = jiffies + (timeout_msec * HZ) / 1000;
5829
5830 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5831 msleep(interval_msec);
5832 tmp = ioread32(reg);
5833 }
5834
5835 return tmp;
5836}
5837
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838/*
5839 * libata is essentially a library of internal helper functions for
5840 * low-level ATA host controller drivers. As such, the API/ABI is
5841 * likely to change as new drivers are added and updated.
5842 * Do not depend on ABI/API stability.
5843 */
5844
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005845EXPORT_SYMBOL_GPL(sata_deb_timing_boot);
5846EXPORT_SYMBOL_GPL(sata_deb_timing_eh);
5847EXPORT_SYMBOL_GPL(sata_deb_timing_before_fsrst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848EXPORT_SYMBOL_GPL(ata_std_bios_param);
5849EXPORT_SYMBOL_GPL(ata_std_ports);
5850EXPORT_SYMBOL_GPL(ata_device_add);
Tejun Heo720ba122006-05-31 18:28:13 +09005851EXPORT_SYMBOL_GPL(ata_port_detach);
Alan Cox17b14452005-09-15 15:44:00 +01005852EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853EXPORT_SYMBOL_GPL(ata_sg_init);
5854EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09005855EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09005856EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005857EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859EXPORT_SYMBOL_GPL(ata_tf_load);
5860EXPORT_SYMBOL_GPL(ata_tf_read);
5861EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5862EXPORT_SYMBOL_GPL(ata_std_dev_select);
5863EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5864EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5865EXPORT_SYMBOL_GPL(ata_check_status);
5866EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867EXPORT_SYMBOL_GPL(ata_exec_command);
5868EXPORT_SYMBOL_GPL(ata_port_start);
5869EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005870EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871EXPORT_SYMBOL_GPL(ata_interrupt);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005872EXPORT_SYMBOL_GPL(ata_mmio_data_xfer);
5873EXPORT_SYMBOL_GPL(ata_pio_data_xfer);
Alan Cox75e99582006-05-24 14:14:41 +01005874EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005876EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5878EXPORT_SYMBOL_GPL(ata_bmdma_start);
5879EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5880EXPORT_SYMBOL_GPL(ata_bmdma_status);
5881EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09005882EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
5883EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
5884EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
5885EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
5886EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005888EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005889EXPORT_SYMBOL_GPL(sata_phy_debounce);
5890EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891EXPORT_SYMBOL_GPL(sata_phy_reset);
5892EXPORT_SYMBOL_GPL(__sata_phy_reset);
5893EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09005894EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005895EXPORT_SYMBOL_GPL(ata_std_softreset);
5896EXPORT_SYMBOL_GPL(sata_std_hardreset);
5897EXPORT_SYMBOL_GPL(ata_std_postreset);
Tejun Heo623a3122006-03-05 17:55:58 +09005898EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005899EXPORT_SYMBOL_GPL(ata_dev_classify);
5900EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005902EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005903EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005904EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005905EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5907EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09005909EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09005910EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911EXPORT_SYMBOL_GPL(ata_scsi_release);
5912EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005913EXPORT_SYMBOL_GPL(sata_scr_valid);
5914EXPORT_SYMBOL_GPL(sata_scr_read);
5915EXPORT_SYMBOL_GPL(sata_scr_write);
5916EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5917EXPORT_SYMBOL_GPL(ata_port_online);
5918EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005919EXPORT_SYMBOL_GPL(ata_id_string);
5920EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5922
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005923EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005924EXPORT_SYMBOL_GPL(ata_timing_compute);
5925EXPORT_SYMBOL_GPL(ata_timing_merge);
5926
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927#ifdef CONFIG_PCI
5928EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005929EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5931EXPORT_SYMBOL_GPL(ata_pci_init_one);
5932EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005933EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5934EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005935EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5936EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005938
5939EXPORT_SYMBOL_GPL(ata_device_suspend);
5940EXPORT_SYMBOL_GPL(ata_device_resume);
5941EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5942EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005943
Tejun Heoece1d632006-04-02 18:51:53 +09005944EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005945EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5946EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09005947EXPORT_SYMBOL_GPL(ata_port_freeze);
5948EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
5949EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09005950EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5951EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09005952EXPORT_SYMBOL_GPL(ata_do_eh);