blob: 90db054fa994d8c85a8100f451ec80257ec3c0fd [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 Heobe9a50c82006-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 Heob51e9e52006-06-29 01:29:30 +0900910 if (ap->pflags & ATA_PFLAG_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 Heob51e9e52006-06-29 01:29:30 +0900941 ap->pflags |= ATA_PFLAG_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 Heob51e9e52006-06-29 01:29:30 +0900960 ap->pflags &= ~ATA_PFLAG_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 */
Tejun Heob51e9e52006-06-29 01:29:30 +09001012 if (ap->pflags & ATA_PFLAG_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 Heo1f7dd3e2006-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 Heo1f7dd3e2006-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
Brian Kinge6d902a2006-06-28 08:30:31 -05001328static void ata_set_port_max_cmd_len(struct ata_port *ap)
1329{
1330 int i;
1331
1332 if (ap->host) {
1333 ap->host->max_cmd_len = 0;
1334 for (i = 0; i < ATA_MAX_DEVICES; i++)
1335 ap->host->max_cmd_len = max_t(unsigned int,
1336 ap->host->max_cmd_len,
1337 ap->device[i].cdb_len);
1338 }
1339}
1340
Tejun Heo49016ac2006-02-21 02:12:11 +09001341/**
Tejun Heoffeae412006-03-01 16:09:35 +09001342 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001343 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001344 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 *
Tejun Heoffeae412006-03-01 16:09:35 +09001346 * Configure @dev according to @dev->id. Generic and low-level
1347 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 *
1349 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001350 * Kernel thread context (may sleep)
1351 *
1352 * RETURNS:
1353 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001355int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
Tejun Heo3373efd2006-05-15 20:57:53 +09001357 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001358 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001359 unsigned int xfer_mask;
Brian Kinge6d902a2006-06-28 08:30:31 -05001360 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001362 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo88574552006-06-25 20:00:35 +09001363 ata_dev_printk(dev, KERN_INFO,
1364 "%s: ENTER/EXIT (host %u, dev %u) -- nodev\n",
1365 __FUNCTION__, ap->id, dev->devno);
Tejun Heoffeae412006-03-01 16:09:35 +09001366 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001369 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001370 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1371 __FUNCTION__, ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001373 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001374 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001375 ata_dev_printk(dev, KERN_DEBUG,
1376 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1377 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001378 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001379 id[49], id[82], id[83], id[84],
1380 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001381
Tejun Heo208a9932006-03-05 17:55:58 +09001382 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001383 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001384 dev->max_sectors = 0;
1385 dev->cdb_len = 0;
1386 dev->n_sectors = 0;
1387 dev->cylinders = 0;
1388 dev->heads = 0;
1389 dev->sectors = 0;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 /*
1392 * common ATA, ATAPI feature tests
1393 */
1394
Tejun Heoff8854b2006-03-06 04:31:56 +09001395 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001396 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001398 if (ata_msg_probe(ap))
1399 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /* ATA-specific feature tests */
1402 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001403 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001404
Tejun Heo1148c3a2006-03-13 19:48:04 +09001405 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001406 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001407 char ncq_desc[20];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001408
Tejun Heo4c2d7212006-03-05 17:55:58 +09001409 lba_desc = "LBA";
1410 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001411 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001412 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001413 lba_desc = "LBA48";
1414 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001415
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001416 /* config NCQ */
1417 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1418
Albert Lee8bf62ec2005-05-12 15:29:42 -04001419 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001420 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001421 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001422 "max %s, %Lu sectors: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001423 ata_id_major_version(id),
1424 ata_mode_string(xfer_mask),
1425 (unsigned long long)dev->n_sectors,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001426 lba_desc, ncq_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001427 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001428 /* CHS */
1429
1430 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001431 dev->cylinders = id[1];
1432 dev->heads = id[3];
1433 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001434
Tejun Heo1148c3a2006-03-13 19:48:04 +09001435 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001436 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001437 dev->cylinders = id[54];
1438 dev->heads = id[55];
1439 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001440 }
1441
1442 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001443 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001444 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1445 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1446 ata_id_major_version(id),
1447 ata_mode_string(xfer_mask),
1448 (unsigned long long)dev->n_sectors,
Tejun Heo88574552006-06-25 20:00:35 +09001449 dev->cylinders, dev->heads,
1450 dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452
Albert Lee07f6f7d2005-11-01 19:33:20 +08001453 if (dev->id[59] & 0x100) {
1454 dev->multi_count = dev->id[59] & 0xff;
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001455 if (ata_msg_info(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001456 ata_dev_printk(dev, KERN_INFO,
1457 "ata%u: dev %u multi count %u\n",
1458 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001459 }
1460
Tejun Heo6e7846e2006-02-12 23:32:58 +09001461 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
1463
1464 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001465 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001466 char *cdb_intr_string = "";
1467
Tejun Heo1148c3a2006-03-13 19:48:04 +09001468 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001470 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001471 ata_dev_printk(dev, KERN_WARNING,
1472 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001473 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 goto err_out_nosup;
1475 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001476 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Albert Lee08a556d2006-03-31 13:29:04 +08001478 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001479 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001480 cdb_intr_string = ", CDB intr";
1481 }
Albert Lee312f7da2005-09-27 17:38:03 +08001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* print device info to dmesg */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001484 if (ata_msg_info(ap))
Tejun Heo12436c32006-05-15 20:59:15 +09001485 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1486 ata_mode_string(xfer_mask),
1487 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489
Brian Kinge6d902a2006-06-28 08:30:31 -05001490 ata_set_port_max_cmd_len(ap);
Tejun Heo6e7846e2006-02-12 23:32:58 +09001491
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001492 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001493 if (ata_dev_knobble(dev)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001494 if (ata_msg_info(ap))
Tejun Heof15a1da2006-05-15 20:57:56 +09001495 ata_dev_printk(dev, KERN_INFO,
1496 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001497 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001498 dev->max_sectors = ATA_MAX_SECTORS;
1499 }
1500
1501 if (ap->ops->dev_config)
1502 ap->ops->dev_config(ap, dev);
1503
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001504 if (ata_msg_probe(ap))
1505 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
1506 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001510 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001511 ata_dev_printk(dev, KERN_DEBUG,
1512 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001513 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
1516/**
1517 * ata_bus_probe - Reset and probe ATA bus
1518 * @ap: Bus to probe
1519 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001520 * Master ATA bus probing function. Initiates a hardware-dependent
1521 * bus reset, then attempts to identify any devices found on
1522 * the bus.
1523 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001525 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 *
1527 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001528 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 */
1530
1531static int ata_bus_probe(struct ata_port *ap)
1532{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001533 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001534 int tries[ATA_MAX_DEVICES];
1535 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001536 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Tejun Heo28ca5c52006-03-01 16:09:36 +09001538 ata_port_probe(ap);
1539
Tejun Heo14d2bac2006-04-02 17:54:46 +09001540 for (i = 0; i < ATA_MAX_DEVICES; i++)
1541 tries[i] = ATA_PROBE_MAX_TRIES;
1542
1543 retry:
1544 down_xfermask = 0;
1545
Tejun Heo20444702006-03-13 01:57:01 +09001546 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09001547 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09001548
Tejun Heo52783c52006-05-31 18:28:22 +09001549 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1550 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001551
Tejun Heo52783c52006-05-31 18:28:22 +09001552 if (!(ap->flags & ATA_FLAG_DISABLED) &&
1553 dev->class != ATA_DEV_UNKNOWN)
1554 classes[dev->devno] = dev->class;
1555 else
1556 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09001557
Tejun Heo52783c52006-05-31 18:28:22 +09001558 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09001559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Tejun Heo52783c52006-05-31 18:28:22 +09001561 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09001562
Alan Coxb6079ca2006-05-22 16:52:06 +01001563 /* after the reset the device state is PIO 0 and the controller
1564 state is undefined. Record the mode */
1565
1566 for (i = 0; i < ATA_MAX_DEVICES; i++)
1567 ap->device[i].pio_mode = XFER_PIO_0;
1568
Tejun Heo28ca5c52006-03-01 16:09:36 +09001569 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001571 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001572
Tejun Heoec573752006-04-11 22:26:29 +09001573 if (tries[i])
1574 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001575
Tejun Heoe1211e32006-04-01 01:38:18 +09001576 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001577 continue;
1578
Tejun Heo3373efd2006-05-15 20:57:53 +09001579 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001580 if (rc)
1581 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001582
Tejun Heo3373efd2006-05-15 20:57:53 +09001583 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001584 if (rc)
1585 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
1587
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001588 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001589 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001590 if (rc) {
1591 down_xfermask = 1;
1592 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001595 for (i = 0; i < ATA_MAX_DEVICES; i++)
1596 if (ata_dev_enabled(&ap->device[i]))
1597 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001598
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001599 /* no device present, disable port */
1600 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001602 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001603
1604 fail:
1605 switch (rc) {
1606 case -EINVAL:
1607 case -ENODEV:
1608 tries[dev->devno] = 0;
1609 break;
1610 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001611 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001612 /* fall through */
1613 default:
1614 tries[dev->devno]--;
1615 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001616 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001617 tries[dev->devno] = 0;
1618 }
1619
Tejun Heoec573752006-04-11 22:26:29 +09001620 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001621 ata_down_xfermask_limit(dev, 1);
1622 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001623 }
1624
Tejun Heo14d2bac2006-04-02 17:54:46 +09001625 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
1628/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001629 * ata_port_probe - Mark port as enabled
1630 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001632 * Modify @ap data structure such that the system
1633 * thinks that the entire port is enabled.
1634 *
1635 * LOCKING: host_set lock, or some other form of
1636 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 */
1638
1639void ata_port_probe(struct ata_port *ap)
1640{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001641 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
1644/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001645 * sata_print_link_status - Print SATA link status
1646 * @ap: SATA port to printk link status about
1647 *
1648 * This function prints link speed and status of a SATA link.
1649 *
1650 * LOCKING:
1651 * None.
1652 */
1653static void sata_print_link_status(struct ata_port *ap)
1654{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001655 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001656
Tejun Heo81952c52006-05-15 20:57:47 +09001657 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001658 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001659 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001660
Tejun Heo81952c52006-05-15 20:57:47 +09001661 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001662 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001663 ata_port_printk(ap, KERN_INFO,
1664 "SATA link up %s (SStatus %X SControl %X)\n",
1665 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001666 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001667 ata_port_printk(ap, KERN_INFO,
1668 "SATA link down (SStatus %X SControl %X)\n",
1669 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001670 }
1671}
1672
1673/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001674 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1675 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001677 * This function issues commands to standard SATA Sxxx
1678 * PHY registers, to wake up the phy (and device), and
1679 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 *
1681 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001682 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 *
1684 */
1685void __sata_phy_reset(struct ata_port *ap)
1686{
1687 u32 sstatus;
1688 unsigned long timeout = jiffies + (HZ * 5);
1689
1690 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001691 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001692 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001693 /* Couldn't find anything in SATA I/II specs, but
1694 * AHCI-1.1 10.4.2 says at least 1 ms. */
1695 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 }
Tejun Heo81952c52006-05-15 20:57:47 +09001697 /* phy wake/clear reset */
1698 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 /* wait for phy to become ready, if necessary */
1701 do {
1702 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001703 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if ((sstatus & 0xf) != 1)
1705 break;
1706 } while (time_before(jiffies, timeout));
1707
Tejun Heo3be680b2005-12-19 22:35:02 +09001708 /* print link status */
1709 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001710
Tejun Heo3be680b2005-12-19 22:35:02 +09001711 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001712 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001714 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Tejun Heo198e0fe2006-04-02 18:51:52 +09001717 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return;
1719
1720 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1721 ata_port_disable(ap);
1722 return;
1723 }
1724
1725 ap->cbl = ATA_CBL_SATA;
1726}
1727
1728/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001729 * sata_phy_reset - Reset SATA bus.
1730 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001732 * This function resets the SATA bus, and then probes
1733 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 *
1735 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001736 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 *
1738 */
1739void sata_phy_reset(struct ata_port *ap)
1740{
1741 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001742 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return;
1744 ata_bus_reset(ap);
1745}
1746
1747/**
Alan Coxebdfca62006-03-23 15:38:34 +00001748 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001749 * @adev: device
1750 *
1751 * Obtain the other device on the same cable, or if none is
1752 * present NULL is returned
1753 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001754
Tejun Heo3373efd2006-05-15 20:57:53 +09001755struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001756{
Tejun Heo3373efd2006-05-15 20:57:53 +09001757 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001758 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001759 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001760 return NULL;
1761 return pair;
1762}
1763
1764/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001765 * ata_port_disable - Disable port.
1766 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001768 * Modify @ap data structure such that the system
1769 * thinks that the entire port is disabled, and should
1770 * never attempt to probe or communicate with devices
1771 * on this port.
1772 *
1773 * LOCKING: host_set lock, or some other form of
1774 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 */
1776
1777void ata_port_disable(struct ata_port *ap)
1778{
1779 ap->device[0].class = ATA_DEV_NONE;
1780 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001781 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782}
1783
Tejun Heo1c3fae42006-04-02 20:53:28 +09001784/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001785 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001786 * @ap: Port to adjust SATA spd limit for
1787 *
1788 * Adjust SATA spd limit of @ap downward. Note that this
1789 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001790 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001791 *
1792 * LOCKING:
1793 * Inherited from caller.
1794 *
1795 * RETURNS:
1796 * 0 on success, negative errno on failure
1797 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001798int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001799{
Tejun Heo81952c52006-05-15 20:57:47 +09001800 u32 sstatus, spd, mask;
1801 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001802
Tejun Heo81952c52006-05-15 20:57:47 +09001803 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1804 if (rc)
1805 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001806
1807 mask = ap->sata_spd_limit;
1808 if (mask <= 1)
1809 return -EINVAL;
1810 highbit = fls(mask) - 1;
1811 mask &= ~(1 << highbit);
1812
Tejun Heo81952c52006-05-15 20:57:47 +09001813 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001814 if (spd <= 1)
1815 return -EINVAL;
1816 spd--;
1817 mask &= (1 << spd) - 1;
1818 if (!mask)
1819 return -EINVAL;
1820
1821 ap->sata_spd_limit = mask;
1822
Tejun Heof15a1da2006-05-15 20:57:56 +09001823 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1824 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001825
1826 return 0;
1827}
1828
Tejun Heo3c567b72006-05-15 20:57:23 +09001829static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001830{
1831 u32 spd, limit;
1832
1833 if (ap->sata_spd_limit == UINT_MAX)
1834 limit = 0;
1835 else
1836 limit = fls(ap->sata_spd_limit);
1837
1838 spd = (*scontrol >> 4) & 0xf;
1839 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1840
1841 return spd != limit;
1842}
1843
1844/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001845 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001846 * @ap: Port in question
1847 *
1848 * Test whether the spd limit in SControl matches
1849 * @ap->sata_spd_limit. This function is used to determine
1850 * whether hardreset is necessary to apply SATA spd
1851 * configuration.
1852 *
1853 * LOCKING:
1854 * Inherited from caller.
1855 *
1856 * RETURNS:
1857 * 1 if SATA spd configuration is needed, 0 otherwise.
1858 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001859int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001860{
1861 u32 scontrol;
1862
Tejun Heo81952c52006-05-15 20:57:47 +09001863 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001864 return 0;
1865
Tejun Heo3c567b72006-05-15 20:57:23 +09001866 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001867}
1868
1869/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001870 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001871 * @ap: Port to set SATA spd for
1872 *
1873 * Set SATA spd of @ap according to sata_spd_limit.
1874 *
1875 * LOCKING:
1876 * Inherited from caller.
1877 *
1878 * RETURNS:
1879 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001880 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001881 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001882int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001883{
1884 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001885 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001886
Tejun Heo81952c52006-05-15 20:57:47 +09001887 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1888 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001889
Tejun Heo3c567b72006-05-15 20:57:23 +09001890 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001891 return 0;
1892
Tejun Heo81952c52006-05-15 20:57:47 +09001893 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1894 return rc;
1895
Tejun Heo1c3fae42006-04-02 20:53:28 +09001896 return 1;
1897}
1898
Alan Cox452503f2005-10-21 19:01:32 -04001899/*
1900 * This mode timing computation functionality is ported over from
1901 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1902 */
1903/*
1904 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1905 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1906 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001907 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001908 */
1909
1910static const struct ata_timing ata_timing[] = {
1911
1912 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1913 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1914 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1915 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1916
1917 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1918 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1919 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1920
1921/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001922
Alan Cox452503f2005-10-21 19:01:32 -04001923 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1924 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1925 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001926
Alan Cox452503f2005-10-21 19:01:32 -04001927 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1928 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1929 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1930
1931/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1932 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1933 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1934
1935 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1936 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1937 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1938
1939/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1940
1941 { 0xFF }
1942};
1943
1944#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1945#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1946
1947static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1948{
1949 q->setup = EZ(t->setup * 1000, T);
1950 q->act8b = EZ(t->act8b * 1000, T);
1951 q->rec8b = EZ(t->rec8b * 1000, T);
1952 q->cyc8b = EZ(t->cyc8b * 1000, T);
1953 q->active = EZ(t->active * 1000, T);
1954 q->recover = EZ(t->recover * 1000, T);
1955 q->cycle = EZ(t->cycle * 1000, T);
1956 q->udma = EZ(t->udma * 1000, UT);
1957}
1958
1959void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1960 struct ata_timing *m, unsigned int what)
1961{
1962 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1963 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1964 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1965 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1966 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1967 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1968 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1969 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1970}
1971
1972static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1973{
1974 const struct ata_timing *t;
1975
1976 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001977 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001978 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001979 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001980}
1981
1982int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1983 struct ata_timing *t, int T, int UT)
1984{
1985 const struct ata_timing *s;
1986 struct ata_timing p;
1987
1988 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001989 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001990 */
Alan Cox452503f2005-10-21 19:01:32 -04001991
1992 if (!(s = ata_timing_find_mode(speed)))
1993 return -EINVAL;
1994
Albert Lee75b1f2f2005-11-16 17:06:18 +08001995 memcpy(t, s, sizeof(*s));
1996
Alan Cox452503f2005-10-21 19:01:32 -04001997 /*
1998 * If the drive is an EIDE drive, it can tell us it needs extended
1999 * PIO/MW_DMA cycle timing.
2000 */
2001
2002 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2003 memset(&p, 0, sizeof(p));
2004 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2005 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2006 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2007 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2008 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2009 }
2010 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2011 }
2012
2013 /*
2014 * Convert the timing to bus clock counts.
2015 */
2016
Albert Lee75b1f2f2005-11-16 17:06:18 +08002017 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002018
2019 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002020 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2021 * S.M.A.R.T * and some other commands. We have to ensure that the
2022 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002023 */
2024
2025 if (speed > XFER_PIO_4) {
2026 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2027 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2028 }
2029
2030 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002031 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002032 */
2033
2034 if (t->act8b + t->rec8b < t->cyc8b) {
2035 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2036 t->rec8b = t->cyc8b - t->act8b;
2037 }
2038
2039 if (t->active + t->recover < t->cycle) {
2040 t->active += (t->cycle - (t->active + t->recover)) / 2;
2041 t->recover = t->cycle - t->active;
2042 }
2043
2044 return 0;
2045}
2046
Tejun Heocf176e12006-04-02 17:54:46 +09002047/**
2048 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002049 * @dev: Device to adjust xfer masks
2050 * @force_pio0: Force PIO0
2051 *
2052 * Adjust xfer masks of @dev downward. Note that this function
2053 * does not apply the change. Invoking ata_set_mode() afterwards
2054 * will apply the limit.
2055 *
2056 * LOCKING:
2057 * Inherited from caller.
2058 *
2059 * RETURNS:
2060 * 0 on success, negative errno on failure
2061 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002062int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09002063{
2064 unsigned long xfer_mask;
2065 int highbit;
2066
2067 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2068 dev->udma_mask);
2069
2070 if (!xfer_mask)
2071 goto fail;
2072 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2073 if (xfer_mask & ATA_MASK_UDMA)
2074 xfer_mask &= ~ATA_MASK_MWDMA;
2075
2076 highbit = fls(xfer_mask) - 1;
2077 xfer_mask &= ~(1 << highbit);
2078 if (force_pio0)
2079 xfer_mask &= 1 << ATA_SHIFT_PIO;
2080 if (!xfer_mask)
2081 goto fail;
2082
2083 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2084 &dev->udma_mask);
2085
Tejun Heof15a1da2006-05-15 20:57:56 +09002086 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2087 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002088
2089 return 0;
2090
2091 fail:
2092 return -EINVAL;
2093}
2094
Tejun Heo3373efd2006-05-15 20:57:53 +09002095static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
Tejun Heo83206a22006-03-24 15:25:31 +09002097 unsigned int err_mask;
2098 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Tejun Heoe8384602006-04-02 18:51:53 +09002100 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 if (dev->xfer_shift == ATA_SHIFT_PIO)
2102 dev->flags |= ATA_DFLAG_PIO;
2103
Tejun Heo3373efd2006-05-15 20:57:53 +09002104 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002105 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002106 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2107 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002108 return -EIO;
2109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Tejun Heo3373efd2006-05-15 20:57:53 +09002111 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002112 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002113 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002114
Tejun Heo23e71c32006-03-06 04:31:57 +09002115 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2116 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Tejun Heof15a1da2006-05-15 20:57:56 +09002118 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2119 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002120 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123/**
2124 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2125 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002126 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002128 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2129 * ata_set_mode() fails, pointer to the failing device is
2130 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002131 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002133 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002134 *
2135 * RETURNS:
2136 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002138int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
Tejun Heoe8e06192006-04-01 01:38:18 +09002140 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002141 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Tejun Heo3adcebb2006-05-15 20:57:37 +09002143 /* has private set_mode? */
2144 if (ap->ops->set_mode) {
2145 /* FIXME: make ->set_mode handle no device case and
2146 * return error code and failing device on failure.
2147 */
2148 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2149 if (ata_dev_enabled(&ap->device[i])) {
2150 ap->ops->set_mode(ap);
2151 break;
2152 }
2153 }
2154 return 0;
2155 }
2156
Tejun Heoa6d5a512006-03-06 04:31:57 +09002157 /* step 1: calculate xfer_mask */
2158 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002159 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002160
Tejun Heoe8e06192006-04-01 01:38:18 +09002161 dev = &ap->device[i];
2162
Tejun Heoe1211e32006-04-01 01:38:18 +09002163 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002164 continue;
2165
Tejun Heo3373efd2006-05-15 20:57:53 +09002166 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002167
Tejun Heoacf356b2006-03-24 14:07:50 +09002168 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2169 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2170 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2171 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002172
Tejun Heo4f659772006-04-01 01:38:18 +09002173 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002174 if (dev->dma_mode)
2175 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002176 }
Tejun Heo4f659772006-04-01 01:38:18 +09002177 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002178 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002179
2180 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002181 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2182 dev = &ap->device[i];
2183 if (!ata_dev_enabled(dev))
2184 continue;
2185
2186 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002187 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002188 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002189 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002190 }
2191
2192 dev->xfer_mode = dev->pio_mode;
2193 dev->xfer_shift = ATA_SHIFT_PIO;
2194 if (ap->ops->set_piomode)
2195 ap->ops->set_piomode(ap, dev);
2196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Tejun Heoa6d5a512006-03-06 04:31:57 +09002198 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002199 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2200 dev = &ap->device[i];
2201
2202 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2203 continue;
2204
2205 dev->xfer_mode = dev->dma_mode;
2206 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2207 if (ap->ops->set_dmamode)
2208 ap->ops->set_dmamode(ap, dev);
2209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
2211 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002212 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002213 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Tejun Heoe1211e32006-04-01 01:38:18 +09002215 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002216 continue;
2217
Tejun Heo3373efd2006-05-15 20:57:53 +09002218 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002219 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002220 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Tejun Heoe8e06192006-04-01 01:38:18 +09002223 /* Record simplex status. If we selected DMA then the other
2224 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002225 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002226 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2227 ap->host_set->simplex_claimed = 1;
2228
Tejun Heoe8e06192006-04-01 01:38:18 +09002229 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 if (ap->ops->post_set_mode)
2231 ap->ops->post_set_mode(ap);
2232
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002233 out:
2234 if (rc)
2235 *r_failed_dev = dev;
2236 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
2238
2239/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002240 * ata_tf_to_host - issue ATA taskfile to host controller
2241 * @ap: port to which command is being issued
2242 * @tf: ATA taskfile register set
2243 *
2244 * Issues ATA taskfile register set to ATA host controller,
2245 * with proper synchronization with interrupt handler and
2246 * other threads.
2247 *
2248 * LOCKING:
2249 * spin_lock_irqsave(host_set lock)
2250 */
2251
2252static inline void ata_tf_to_host(struct ata_port *ap,
2253 const struct ata_taskfile *tf)
2254{
2255 ap->ops->tf_load(ap, tf);
2256 ap->ops->exec_command(ap, tf);
2257}
2258
2259/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 * ata_busy_sleep - sleep until BSY clears, or timeout
2261 * @ap: port containing status register to be polled
2262 * @tmout_pat: impatience timeout
2263 * @tmout: overall timeout
2264 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002265 * Sleep until ATA Status register bit BSY clears,
2266 * or a timeout occurs.
2267 *
2268 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 */
2270
Tejun Heo6f8b9952006-01-24 17:05:21 +09002271unsigned int ata_busy_sleep (struct ata_port *ap,
2272 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
2274 unsigned long timer_start, timeout;
2275 u8 status;
2276
2277 status = ata_busy_wait(ap, ATA_BUSY, 300);
2278 timer_start = jiffies;
2279 timeout = timer_start + tmout_pat;
2280 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2281 msleep(50);
2282 status = ata_busy_wait(ap, ATA_BUSY, 3);
2283 }
2284
2285 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002286 ata_port_printk(ap, KERN_WARNING,
2287 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 timeout = timer_start + tmout;
2290 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2291 msleep(50);
2292 status = ata_chk_status(ap);
2293 }
2294
2295 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002296 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2297 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 return 1;
2299 }
2300
2301 return 0;
2302}
2303
2304static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2305{
2306 struct ata_ioports *ioaddr = &ap->ioaddr;
2307 unsigned int dev0 = devmask & (1 << 0);
2308 unsigned int dev1 = devmask & (1 << 1);
2309 unsigned long timeout;
2310
2311 /* if device 0 was found in ata_devchk, wait for its
2312 * BSY bit to clear
2313 */
2314 if (dev0)
2315 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2316
2317 /* if device 1 was found in ata_devchk, wait for
2318 * register access, then wait for BSY to clear
2319 */
2320 timeout = jiffies + ATA_TMOUT_BOOT;
2321 while (dev1) {
2322 u8 nsect, lbal;
2323
2324 ap->ops->dev_select(ap, 1);
2325 if (ap->flags & ATA_FLAG_MMIO) {
2326 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2327 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2328 } else {
2329 nsect = inb(ioaddr->nsect_addr);
2330 lbal = inb(ioaddr->lbal_addr);
2331 }
2332 if ((nsect == 1) && (lbal == 1))
2333 break;
2334 if (time_after(jiffies, timeout)) {
2335 dev1 = 0;
2336 break;
2337 }
2338 msleep(50); /* give drive a breather */
2339 }
2340 if (dev1)
2341 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2342
2343 /* is all this really necessary? */
2344 ap->ops->dev_select(ap, 0);
2345 if (dev1)
2346 ap->ops->dev_select(ap, 1);
2347 if (dev0)
2348 ap->ops->dev_select(ap, 0);
2349}
2350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351static unsigned int ata_bus_softreset(struct ata_port *ap,
2352 unsigned int devmask)
2353{
2354 struct ata_ioports *ioaddr = &ap->ioaddr;
2355
2356 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2357
2358 /* software reset. causes dev0 to be selected */
2359 if (ap->flags & ATA_FLAG_MMIO) {
2360 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2361 udelay(20); /* FIXME: flush */
2362 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2363 udelay(20); /* FIXME: flush */
2364 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2365 } else {
2366 outb(ap->ctl, ioaddr->ctl_addr);
2367 udelay(10);
2368 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2369 udelay(10);
2370 outb(ap->ctl, ioaddr->ctl_addr);
2371 }
2372
2373 /* spec mandates ">= 2ms" before checking status.
2374 * We wait 150ms, because that was the magic delay used for
2375 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2376 * between when the ATA command register is written, and then
2377 * status is checked. Because waiting for "a while" before
2378 * checking status is fine, post SRST, we perform this magic
2379 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002380 *
2381 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 */
2383 msleep(150);
2384
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002385 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002386 * the bus shows 0xFF because the odd clown forgets the D7
2387 * pulldown resistor.
2388 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002389 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002390 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002391 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002392 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 ata_bus_post_reset(ap, devmask);
2395
2396 return 0;
2397}
2398
2399/**
2400 * ata_bus_reset - reset host port and associated ATA channel
2401 * @ap: port to reset
2402 *
2403 * This is typically the first time we actually start issuing
2404 * commands to the ATA channel. We wait for BSY to clear, then
2405 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2406 * result. Determine what devices, if any, are on the channel
2407 * by looking at the device 0/1 error register. Look at the signature
2408 * stored in each device's taskfile registers, to determine if
2409 * the device is ATA or ATAPI.
2410 *
2411 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002412 * PCI/etc. bus probe sem.
2413 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 *
2415 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002416 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 */
2418
2419void ata_bus_reset(struct ata_port *ap)
2420{
2421 struct ata_ioports *ioaddr = &ap->ioaddr;
2422 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2423 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002424 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
2426 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2427
2428 /* determine if device 0/1 are present */
2429 if (ap->flags & ATA_FLAG_SATA_RESET)
2430 dev0 = 1;
2431 else {
2432 dev0 = ata_devchk(ap, 0);
2433 if (slave_possible)
2434 dev1 = ata_devchk(ap, 1);
2435 }
2436
2437 if (dev0)
2438 devmask |= (1 << 0);
2439 if (dev1)
2440 devmask |= (1 << 1);
2441
2442 /* select device 0 again */
2443 ap->ops->dev_select(ap, 0);
2444
2445 /* issue bus reset */
2446 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002447 if (ata_bus_softreset(ap, devmask))
2448 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
2450 /*
2451 * determine by signature whether we have ATA or ATAPI devices
2452 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002453 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002455 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
2457 /* re-enable interrupts */
2458 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2459 ata_irq_on(ap);
2460
2461 /* is double-select really necessary? */
2462 if (ap->device[1].class != ATA_DEV_NONE)
2463 ap->ops->dev_select(ap, 1);
2464 if (ap->device[0].class != ATA_DEV_NONE)
2465 ap->ops->dev_select(ap, 0);
2466
2467 /* if no devices were detected, disable this port */
2468 if ((ap->device[0].class == ATA_DEV_NONE) &&
2469 (ap->device[1].class == ATA_DEV_NONE))
2470 goto err_out;
2471
2472 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2473 /* set up device control for ATA_FLAG_SATA_RESET */
2474 if (ap->flags & ATA_FLAG_MMIO)
2475 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2476 else
2477 outb(ap->ctl, ioaddr->ctl_addr);
2478 }
2479
2480 DPRINTK("EXIT\n");
2481 return;
2482
2483err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002484 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 ap->ops->port_disable(ap);
2486
2487 DPRINTK("EXIT\n");
2488}
2489
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002490/**
2491 * sata_phy_debounce - debounce SATA phy status
2492 * @ap: ATA port to debounce SATA phy status for
2493 * @params: timing parameters { interval, duratinon, timeout } in msec
2494 *
2495 * Make sure SStatus of @ap reaches stable state, determined by
2496 * holding the same value where DET is not 1 for @duration polled
2497 * every @interval, before @timeout. Timeout constraints the
2498 * beginning of the stable state. Because, after hot unplugging,
2499 * DET gets stuck at 1 on some controllers, this functions waits
2500 * until timeout then returns 0 if DET is stable at 1.
2501 *
2502 * LOCKING:
2503 * Kernel thread context (may sleep)
2504 *
2505 * RETURNS:
2506 * 0 on success, -errno on failure.
2507 */
2508int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09002509{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002510 unsigned long interval_msec = params[0];
2511 unsigned long duration = params[1] * HZ / 1000;
2512 unsigned long timeout = jiffies + params[2] * HZ / 1000;
2513 unsigned long last_jiffies;
2514 u32 last, cur;
2515 int rc;
2516
2517 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2518 return rc;
2519 cur &= 0xf;
2520
2521 last = cur;
2522 last_jiffies = jiffies;
2523
2524 while (1) {
2525 msleep(interval_msec);
2526 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2527 return rc;
2528 cur &= 0xf;
2529
2530 /* DET stable? */
2531 if (cur == last) {
2532 if (cur == 1 && time_before(jiffies, timeout))
2533 continue;
2534 if (time_after(jiffies, last_jiffies + duration))
2535 return 0;
2536 continue;
2537 }
2538
2539 /* unstable, start over */
2540 last = cur;
2541 last_jiffies = jiffies;
2542
2543 /* check timeout */
2544 if (time_after(jiffies, timeout))
2545 return -EBUSY;
2546 }
2547}
2548
2549/**
2550 * sata_phy_resume - resume SATA phy
2551 * @ap: ATA port to resume SATA phy for
2552 * @params: timing parameters { interval, duratinon, timeout } in msec
2553 *
2554 * Resume SATA phy of @ap and debounce it.
2555 *
2556 * LOCKING:
2557 * Kernel thread context (may sleep)
2558 *
2559 * RETURNS:
2560 * 0 on success, -errno on failure.
2561 */
2562int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
2563{
2564 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002565 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002566
Tejun Heo81952c52006-05-15 20:57:47 +09002567 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2568 return rc;
2569
Tejun Heo852ee162006-04-01 01:38:18 +09002570 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002571
2572 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2573 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002574
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002575 /* Some PHYs react badly if SStatus is pounded immediately
2576 * after resuming. Delay 200ms before debouncing.
2577 */
2578 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002579
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002580 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002581}
2582
Tejun Heof5914a42006-05-31 18:27:48 +09002583static void ata_wait_spinup(struct ata_port *ap)
2584{
2585 struct ata_eh_context *ehc = &ap->eh_context;
2586 unsigned long end, secs;
2587 int rc;
2588
2589 /* first, debounce phy if SATA */
2590 if (ap->cbl == ATA_CBL_SATA) {
2591 rc = sata_phy_debounce(ap, sata_deb_timing_eh);
2592
2593 /* if debounced successfully and offline, no need to wait */
2594 if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap))
2595 return;
2596 }
2597
2598 /* okay, let's give the drive time to spin up */
2599 end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000;
2600 secs = ((end - jiffies) + HZ - 1) / HZ;
2601
2602 if (time_after(jiffies, end))
2603 return;
2604
2605 if (secs > 5)
2606 ata_port_printk(ap, KERN_INFO, "waiting for device to spin up "
2607 "(%lu secs)\n", secs);
2608
2609 schedule_timeout_uninterruptible(end - jiffies);
2610}
2611
2612/**
2613 * ata_std_prereset - prepare for reset
2614 * @ap: ATA port to be reset
2615 *
2616 * @ap is about to be reset. Initialize it.
2617 *
2618 * LOCKING:
2619 * Kernel thread context (may sleep)
2620 *
2621 * RETURNS:
2622 * 0 on success, -errno otherwise.
2623 */
2624int ata_std_prereset(struct ata_port *ap)
2625{
2626 struct ata_eh_context *ehc = &ap->eh_context;
2627 const unsigned long *timing;
2628 int rc;
2629
Tejun Heo28324302006-07-03 16:07:26 +09002630 /* handle link resume & hotplug spinup */
2631 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
2632 (ap->flags & ATA_FLAG_HRST_TO_RESUME))
2633 ehc->i.action |= ATA_EH_HARDRESET;
2634
2635 if ((ehc->i.flags & ATA_EHI_HOTPLUGGED) &&
2636 (ap->flags & ATA_FLAG_SKIP_D2H_BSY))
2637 ata_wait_spinup(ap);
Tejun Heof5914a42006-05-31 18:27:48 +09002638
2639 /* if we're about to do hardreset, nothing more to do */
2640 if (ehc->i.action & ATA_EH_HARDRESET)
2641 return 0;
2642
2643 /* if SATA, resume phy */
2644 if (ap->cbl == ATA_CBL_SATA) {
Tejun Heob51e9e52006-06-29 01:29:30 +09002645 if (ap->pflags & ATA_PFLAG_LOADING)
Tejun Heof5914a42006-05-31 18:27:48 +09002646 timing = sata_deb_timing_boot;
2647 else
2648 timing = sata_deb_timing_eh;
2649
2650 rc = sata_phy_resume(ap, timing);
2651 if (rc && rc != -EOPNOTSUPP) {
2652 /* phy resume failed */
2653 ata_port_printk(ap, KERN_WARNING, "failed to resume "
2654 "link for reset (errno=%d)\n", rc);
2655 return rc;
2656 }
2657 }
2658
2659 /* Wait for !BSY if the controller can wait for the first D2H
2660 * Reg FIS and we don't know that no device is attached.
2661 */
2662 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap))
2663 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2664
2665 return 0;
2666}
2667
Tejun Heoc2bd5802006-01-24 17:05:22 +09002668/**
2669 * ata_std_softreset - reset host port via ATA SRST
2670 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002671 * @classes: resulting classes of attached devices
2672 *
Tejun Heo52783c52006-05-31 18:28:22 +09002673 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002674 *
2675 * LOCKING:
2676 * Kernel thread context (may sleep)
2677 *
2678 * RETURNS:
2679 * 0 on success, -errno otherwise.
2680 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002681int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002682{
2683 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2684 unsigned int devmask = 0, err_mask;
2685 u8 err;
2686
2687 DPRINTK("ENTER\n");
2688
Tejun Heo81952c52006-05-15 20:57:47 +09002689 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002690 classes[0] = ATA_DEV_NONE;
2691 goto out;
2692 }
2693
Tejun Heoc2bd5802006-01-24 17:05:22 +09002694 /* determine if device 0/1 are present */
2695 if (ata_devchk(ap, 0))
2696 devmask |= (1 << 0);
2697 if (slave_possible && ata_devchk(ap, 1))
2698 devmask |= (1 << 1);
2699
Tejun Heoc2bd5802006-01-24 17:05:22 +09002700 /* select device 0 again */
2701 ap->ops->dev_select(ap, 0);
2702
2703 /* issue bus reset */
2704 DPRINTK("about to softreset, devmask=%x\n", devmask);
2705 err_mask = ata_bus_softreset(ap, devmask);
2706 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002707 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2708 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002709 return -EIO;
2710 }
2711
2712 /* determine by signature whether we have ATA or ATAPI devices */
2713 classes[0] = ata_dev_try_classify(ap, 0, &err);
2714 if (slave_possible && err != 0x81)
2715 classes[1] = ata_dev_try_classify(ap, 1, &err);
2716
Tejun Heo3a397462006-02-10 23:58:48 +09002717 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002718 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2719 return 0;
2720}
2721
2722/**
2723 * sata_std_hardreset - reset host port via SATA phy reset
2724 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002725 * @class: resulting class of attached device
2726 *
2727 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002728 *
2729 * LOCKING:
2730 * Kernel thread context (may sleep)
2731 *
2732 * RETURNS:
2733 * 0 on success, -errno otherwise.
2734 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002735int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002736{
Tejun Heo852ee162006-04-01 01:38:18 +09002737 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002738 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002739
Tejun Heoc2bd5802006-01-24 17:05:22 +09002740 DPRINTK("ENTER\n");
2741
Tejun Heo3c567b72006-05-15 20:57:23 +09002742 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002743 /* SATA spec says nothing about how to reconfigure
2744 * spd. To be on the safe side, turn off phy during
2745 * reconfiguration. This works for at least ICH7 AHCI
2746 * and Sil3124.
2747 */
Tejun Heo81952c52006-05-15 20:57:47 +09002748 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2749 return rc;
2750
Tejun Heo1c3fae42006-04-02 20:53:28 +09002751 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002752
2753 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2754 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002755
Tejun Heo3c567b72006-05-15 20:57:23 +09002756 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002757 }
2758
2759 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002760 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2761 return rc;
2762
Tejun Heo852ee162006-04-01 01:38:18 +09002763 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002764
2765 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2766 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002767
Tejun Heo1c3fae42006-04-02 20:53:28 +09002768 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002769 * 10.4.2 says at least 1 ms.
2770 */
2771 msleep(1);
2772
Tejun Heo1c3fae42006-04-02 20:53:28 +09002773 /* bring phy back */
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002774 sata_phy_resume(ap, sata_deb_timing_eh);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002775
Tejun Heoc2bd5802006-01-24 17:05:22 +09002776 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002777 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002778 *class = ATA_DEV_NONE;
2779 DPRINTK("EXIT, link offline\n");
2780 return 0;
2781 }
2782
2783 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002784 ata_port_printk(ap, KERN_ERR,
2785 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002786 return -EIO;
2787 }
2788
Tejun Heo3a397462006-02-10 23:58:48 +09002789 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2790
Tejun Heoc2bd5802006-01-24 17:05:22 +09002791 *class = ata_dev_try_classify(ap, 0, NULL);
2792
2793 DPRINTK("EXIT, class=%u\n", *class);
2794 return 0;
2795}
2796
2797/**
2798 * ata_std_postreset - standard postreset callback
2799 * @ap: the target ata_port
2800 * @classes: classes of attached devices
2801 *
2802 * This function is invoked after a successful reset. Note that
2803 * the device might have been reset more than once using
2804 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002805 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09002806 * LOCKING:
2807 * Kernel thread context (may sleep)
2808 */
2809void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2810{
Tejun Heodc2b3512006-05-15 20:58:00 +09002811 u32 serror;
2812
Tejun Heoc2bd5802006-01-24 17:05:22 +09002813 DPRINTK("ENTER\n");
2814
Tejun Heoc2bd5802006-01-24 17:05:22 +09002815 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002816 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002817
Tejun Heodc2b3512006-05-15 20:58:00 +09002818 /* clear SError */
2819 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2820 sata_scr_write(ap, SCR_ERROR, serror);
2821
Tejun Heo3a397462006-02-10 23:58:48 +09002822 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09002823 if (!ap->ops->error_handler) {
2824 /* FIXME: hack. create a hook instead */
2825 if (ap->ioaddr.ctl_addr)
2826 ata_irq_on(ap);
2827 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002828
2829 /* is double-select really necessary? */
2830 if (classes[0] != ATA_DEV_NONE)
2831 ap->ops->dev_select(ap, 1);
2832 if (classes[1] != ATA_DEV_NONE)
2833 ap->ops->dev_select(ap, 0);
2834
Tejun Heo3a397462006-02-10 23:58:48 +09002835 /* bail out if no device is present */
2836 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2837 DPRINTK("EXIT, no device\n");
2838 return;
2839 }
2840
2841 /* set up device control */
2842 if (ap->ioaddr.ctl_addr) {
2843 if (ap->flags & ATA_FLAG_MMIO)
2844 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2845 else
2846 outb(ap->ctl, ap->ioaddr.ctl_addr);
2847 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002848
2849 DPRINTK("EXIT\n");
2850}
2851
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002852/**
Tejun Heo623a3122006-03-05 17:55:58 +09002853 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002854 * @dev: device to compare against
2855 * @new_class: class of the new device
2856 * @new_id: IDENTIFY page of the new device
2857 *
2858 * Compare @new_class and @new_id against @dev and determine
2859 * whether @dev is the device indicated by @new_class and
2860 * @new_id.
2861 *
2862 * LOCKING:
2863 * None.
2864 *
2865 * RETURNS:
2866 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2867 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002868static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2869 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002870{
2871 const u16 *old_id = dev->id;
2872 unsigned char model[2][41], serial[2][21];
2873 u64 new_n_sectors;
2874
2875 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002876 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2877 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002878 return 0;
2879 }
2880
2881 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2882 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2883 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2884 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2885 new_n_sectors = ata_id_n_sectors(new_id);
2886
2887 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002888 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2889 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002890 return 0;
2891 }
2892
2893 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002894 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2895 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002896 return 0;
2897 }
2898
2899 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002900 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2901 "%llu != %llu\n",
2902 (unsigned long long)dev->n_sectors,
2903 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002904 return 0;
2905 }
2906
2907 return 1;
2908}
2909
2910/**
2911 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002912 * @dev: device to revalidate
2913 * @post_reset: is this revalidation after reset?
2914 *
2915 * Re-read IDENTIFY page and make sure @dev is still attached to
2916 * the port.
2917 *
2918 * LOCKING:
2919 * Kernel thread context (may sleep)
2920 *
2921 * RETURNS:
2922 * 0 on success, negative errno otherwise
2923 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002924int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002925{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002926 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002927 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002928 int rc;
2929
Tejun Heo5eb45c02006-04-02 18:51:52 +09002930 if (!ata_dev_enabled(dev)) {
2931 rc = -ENODEV;
2932 goto fail;
2933 }
Tejun Heo623a3122006-03-05 17:55:58 +09002934
Tejun Heofe635c72006-05-15 20:57:35 +09002935 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002936 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002937 if (rc)
2938 goto fail;
2939
2940 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002941 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002942 rc = -ENODEV;
2943 goto fail;
2944 }
2945
Tejun Heofe635c72006-05-15 20:57:35 +09002946 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002947
2948 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002949 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002950 if (rc == 0)
2951 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002952
2953 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002954 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002955 return rc;
2956}
2957
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002958static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002959 "WDC AC11000H", NULL,
2960 "WDC AC22100H", NULL,
2961 "WDC AC32500H", NULL,
2962 "WDC AC33100H", NULL,
2963 "WDC AC31600H", NULL,
2964 "WDC AC32100H", "24.09P07",
2965 "WDC AC23200L", "21.10N21",
2966 "Compaq CRD-8241B", NULL,
2967 "CRD-8400B", NULL,
2968 "CRD-8480B", NULL,
2969 "CRD-8482B", NULL,
2970 "CRD-84", NULL,
2971 "SanDisk SDP3B", NULL,
2972 "SanDisk SDP3B-64", NULL,
2973 "SANYO CD-ROM CRD", NULL,
2974 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002975 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002976 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002977 "Toshiba CD-ROM XM-6202B", NULL,
2978 "TOSHIBA CD-ROM XM-1702BC", NULL,
2979 "CD-532E-A", NULL,
2980 "E-IDE CD-ROM CR-840", NULL,
2981 "CD-ROM Drive/F5A", NULL,
2982 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002983 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002984 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002985 "SanDisk SDP3B-64", NULL,
2986 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2987 "_NEC DV5800A", NULL,
2988 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002990
Alan Coxf4b15fe2006-03-22 15:54:04 +00002991static int ata_strim(char *s, size_t len)
2992{
2993 len = strnlen(s, len);
2994
2995 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2996 while ((len > 0) && (s[len - 1] == ' ')) {
2997 len--;
2998 s[len] = 0;
2999 }
3000 return len;
3001}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Jeff Garzik057ace52005-10-22 14:27:05 -04003003static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004{
Alan Coxf4b15fe2006-03-22 15:54:04 +00003005 unsigned char model_num[40];
3006 unsigned char model_rev[16];
3007 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 int i;
3009
Albert Lee3a778272006-06-22 13:00:25 +08003010 /* We don't support polling DMA.
3011 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3012 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3013 */
3014 if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) &&
3015 (dev->flags & ATA_DFLAG_CDB_INTR))
3016 return 1;
3017
Alan Coxf4b15fe2006-03-22 15:54:04 +00003018 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
3019 sizeof(model_num));
3020 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
3021 sizeof(model_rev));
3022 nlen = ata_strim(model_num, sizeof(model_num));
3023 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
Alan Coxf4b15fe2006-03-22 15:54:04 +00003025 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
3026 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
3027 if (ata_dma_blacklist[i+1] == NULL)
3028 return 1;
3029 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
3030 return 1;
3031 }
3032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 return 0;
3034}
3035
Tejun Heoa6d5a512006-03-06 04:31:57 +09003036/**
3037 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003038 * @dev: Device to compute xfermask for
3039 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003040 * Compute supported xfermask of @dev and store it in
3041 * dev->*_mask. This function is responsible for applying all
3042 * known limits including host controller limits, device
3043 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003044 *
Tejun Heo600511e2006-03-25 11:14:07 +09003045 * FIXME: The current implementation limits all transfer modes to
3046 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09003047 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09003048 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09003049 * LOCKING:
3050 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003051 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003052static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053{
Tejun Heo3373efd2006-05-15 20:57:53 +09003054 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003055 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003056 unsigned long xfer_mask;
3057 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Tejun Heo565083e2006-04-02 17:54:47 +09003059 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3060 ap->mwdma_mask, ap->udma_mask);
3061
3062 /* Apply cable rule here. Don't apply it early because when
3063 * we handle hot plug the cable type can itself change.
3064 */
3065 if (ap->cbl == ATA_CBL_PATA40)
3066 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
Alan Cox5444a6f2006-03-27 18:58:20 +01003068 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09003069 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3070 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09003071
3072 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003073 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09003074
3075 if (ata_dev_disabled(d)) {
3076 /* to avoid violating device selection timing */
3077 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3078 UINT_MAX, UINT_MAX);
3079 continue;
3080 }
3081
3082 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3083 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003084 xfer_mask &= ata_id_xfermask(d->id);
3085 if (ata_dma_blacklisted(d))
3086 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 }
3088
Tejun Heoa6d5a512006-03-06 04:31:57 +09003089 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09003090 ata_dev_printk(dev, KERN_WARNING,
3091 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09003092
Alan Cox5444a6f2006-03-27 18:58:20 +01003093 if (hs->flags & ATA_HOST_SIMPLEX) {
3094 if (hs->simplex_claimed)
3095 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3096 }
Tejun Heo565083e2006-04-02 17:54:47 +09003097
Alan Cox5444a6f2006-03-27 18:58:20 +01003098 if (ap->ops->mode_filter)
3099 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3100
Tejun Heo565083e2006-04-02 17:54:47 +09003101 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3102 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103}
3104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 * @dev: Device to which command will be sent
3108 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003109 * Issue SET FEATURES - XFER MODE command to device @dev
3110 * on port @ap.
3111 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003113 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003114 *
3115 * RETURNS:
3116 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 */
3118
Tejun Heo3373efd2006-05-15 20:57:53 +09003119static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120{
Tejun Heoa0123702005-12-13 14:49:31 +09003121 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003122 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
3124 /* set up set-features taskfile */
3125 DPRINTK("set features - xfer mode\n");
3126
Tejun Heo3373efd2006-05-15 20:57:53 +09003127 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003128 tf.command = ATA_CMD_SET_FEATURES;
3129 tf.feature = SETFEATURES_XFER;
3130 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3131 tf.protocol = ATA_PROT_NODATA;
3132 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Tejun Heo3373efd2006-05-15 20:57:53 +09003134 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
Tejun Heo83206a22006-03-24 15:25:31 +09003136 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3137 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138}
3139
3140/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04003141 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ec2005-05-12 15:29:42 -04003142 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003143 * @heads: Number of heads (taskfile parameter)
3144 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003145 *
3146 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003147 * Kernel thread context (may sleep)
3148 *
3149 * RETURNS:
3150 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003151 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003152static unsigned int ata_dev_init_params(struct ata_device *dev,
3153 u16 heads, u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003154{
Tejun Heoa0123702005-12-13 14:49:31 +09003155 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003156 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003157
3158 /* Number of sectors per track 1-255. Number of heads 1-16 */
3159 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003160 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003161
3162 /* set up init dev params taskfile */
3163 DPRINTK("init dev params \n");
3164
Tejun Heo3373efd2006-05-15 20:57:53 +09003165 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003166 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3167 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3168 tf.protocol = ATA_PROT_NODATA;
3169 tf.nsect = sectors;
3170 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003171
Tejun Heo3373efd2006-05-15 20:57:53 +09003172 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003173
Tejun Heo6aff8f12006-02-15 18:24:09 +09003174 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3175 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003176}
3177
3178/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003179 * ata_sg_clean - Unmap DMA memory associated with command
3180 * @qc: Command containing DMA memory to be released
3181 *
3182 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 *
3184 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003185 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 */
3187
3188static void ata_sg_clean(struct ata_queued_cmd *qc)
3189{
3190 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003191 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003193 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Tejun Heoa4631472006-02-11 19:11:13 +09003195 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3196 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
3198 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003199 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003201 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003203 /* if we padded the buffer out to 32-bit bound, and data
3204 * xfer direction is from-device, we must copy from the
3205 * pad buffer back into the supplied buffer
3206 */
3207 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3208 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3209
3210 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003211 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003212 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003213 /* restore last sg */
3214 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3215 if (pad_buf) {
3216 struct scatterlist *psg = &qc->pad_sgent;
3217 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3218 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003219 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003220 }
3221 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003222 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003223 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003224 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3225 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003226 /* restore sg */
3227 sg->length += qc->pad_len;
3228 if (pad_buf)
3229 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3230 pad_buf, qc->pad_len);
3231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232
3233 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003234 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235}
3236
3237/**
3238 * ata_fill_sg - Fill PCI IDE PRD table
3239 * @qc: Metadata associated with taskfile to be transferred
3240 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003241 * Fill PCI IDE PRD (scatter-gather) table with segments
3242 * associated with the current disk command.
3243 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003245 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 *
3247 */
3248static void ata_fill_sg(struct ata_queued_cmd *qc)
3249{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003251 struct scatterlist *sg;
3252 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Tejun Heoa4631472006-02-11 19:11:13 +09003254 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003255 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
3257 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003258 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 u32 addr, offset;
3260 u32 sg_len, len;
3261
3262 /* determine if physical DMA addr spans 64K boundary.
3263 * Note h/w doesn't support 64-bit, so we unconditionally
3264 * truncate dma_addr_t to u32.
3265 */
3266 addr = (u32) sg_dma_address(sg);
3267 sg_len = sg_dma_len(sg);
3268
3269 while (sg_len) {
3270 offset = addr & 0xffff;
3271 len = sg_len;
3272 if ((offset + sg_len) > 0x10000)
3273 len = 0x10000 - offset;
3274
3275 ap->prd[idx].addr = cpu_to_le32(addr);
3276 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3277 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3278
3279 idx++;
3280 sg_len -= len;
3281 addr += len;
3282 }
3283 }
3284
3285 if (idx)
3286 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3287}
3288/**
3289 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3290 * @qc: Metadata associated with taskfile to check
3291 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003292 * Allow low-level driver to filter ATA PACKET commands, returning
3293 * a status indicating whether or not it is OK to use DMA for the
3294 * supplied PACKET command.
3295 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003297 * spin_lock_irqsave(host_set lock)
3298 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 * RETURNS: 0 when ATAPI DMA can be used
3300 * nonzero otherwise
3301 */
3302int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3303{
3304 struct ata_port *ap = qc->ap;
3305 int rc = 0; /* Assume ATAPI DMA is OK by default */
3306
3307 if (ap->ops->check_atapi_dma)
3308 rc = ap->ops->check_atapi_dma(qc);
3309
3310 return rc;
3311}
3312/**
3313 * ata_qc_prep - Prepare taskfile for submission
3314 * @qc: Metadata associated with taskfile to be prepared
3315 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003316 * Prepare ATA taskfile for submission.
3317 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 * LOCKING:
3319 * spin_lock_irqsave(host_set lock)
3320 */
3321void ata_qc_prep(struct ata_queued_cmd *qc)
3322{
3323 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3324 return;
3325
3326 ata_fill_sg(qc);
3327}
3328
Brian Kinge46834c2006-03-17 17:04:03 -06003329void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3330
Jeff Garzik0cba6322005-05-30 19:49:12 -04003331/**
3332 * ata_sg_init_one - Associate command with memory buffer
3333 * @qc: Command to be associated
3334 * @buf: Memory buffer
3335 * @buflen: Length of memory buffer, in bytes.
3336 *
3337 * Initialize the data-related elements of queued_cmd @qc
3338 * to point to a single memory buffer, @buf of byte length @buflen.
3339 *
3340 * LOCKING:
3341 * spin_lock_irqsave(host_set lock)
3342 */
3343
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3345{
3346 struct scatterlist *sg;
3347
3348 qc->flags |= ATA_QCFLAG_SINGLE;
3349
3350 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003351 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003353 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05003355 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003357 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003358 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359}
3360
Jeff Garzik0cba6322005-05-30 19:49:12 -04003361/**
3362 * ata_sg_init - Associate command with scatter-gather table.
3363 * @qc: Command to be associated
3364 * @sg: Scatter-gather table.
3365 * @n_elem: Number of elements in s/g table.
3366 *
3367 * Initialize the data-related elements of queued_cmd @qc
3368 * to point to a scatter-gather table @sg, containing @n_elem
3369 * elements.
3370 *
3371 * LOCKING:
3372 * spin_lock_irqsave(host_set lock)
3373 */
3374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3376 unsigned int n_elem)
3377{
3378 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003379 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003381 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382}
3383
3384/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003385 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3386 * @qc: Command with memory buffer to be mapped.
3387 *
3388 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 *
3390 * LOCKING:
3391 * spin_lock_irqsave(host_set lock)
3392 *
3393 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003394 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 */
3396
3397static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3398{
3399 struct ata_port *ap = qc->ap;
3400 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003401 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003403 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003405 /* we must lengthen transfers to end on a 32-bit boundary */
3406 qc->pad_len = sg->length & 3;
3407 if (qc->pad_len) {
3408 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3409 struct scatterlist *psg = &qc->pad_sgent;
3410
Tejun Heoa4631472006-02-11 19:11:13 +09003411 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003412
3413 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3414
3415 if (qc->tf.flags & ATA_TFLAG_WRITE)
3416 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3417 qc->pad_len);
3418
3419 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3420 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3421 /* trim sg */
3422 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003423 if (sg->length == 0)
3424 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003425
3426 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3427 sg->length, qc->pad_len);
3428 }
3429
Tejun Heo2e242fa2006-02-20 23:48:38 +09003430 if (trim_sg) {
3431 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003432 goto skip_map;
3433 }
3434
Brian King2f1f6102006-03-23 17:30:15 -06003435 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003436 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003437 if (dma_mapping_error(dma_address)) {
3438 /* restore sg */
3439 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
3443 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003444 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445
Tejun Heo2e242fa2006-02-20 23:48:38 +09003446skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3448 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3449
3450 return 0;
3451}
3452
3453/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003454 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3455 * @qc: Command with scatter-gather table to be mapped.
3456 *
3457 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 *
3459 * LOCKING:
3460 * spin_lock_irqsave(host_set lock)
3461 *
3462 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003463 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 *
3465 */
3466
3467static int ata_sg_setup(struct ata_queued_cmd *qc)
3468{
3469 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003470 struct scatterlist *sg = qc->__sg;
3471 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003472 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
3474 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003475 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003477 /* we must lengthen transfers to end on a 32-bit boundary */
3478 qc->pad_len = lsg->length & 3;
3479 if (qc->pad_len) {
3480 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3481 struct scatterlist *psg = &qc->pad_sgent;
3482 unsigned int offset;
3483
Tejun Heoa4631472006-02-11 19:11:13 +09003484 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003485
3486 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3487
3488 /*
3489 * psg->page/offset are used to copy to-be-written
3490 * data in this function or read data in ata_sg_clean.
3491 */
3492 offset = lsg->offset + lsg->length - qc->pad_len;
3493 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3494 psg->offset = offset_in_page(offset);
3495
3496 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3497 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3498 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003499 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003500 }
3501
3502 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3503 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3504 /* trim last sg */
3505 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003506 if (lsg->length == 0)
3507 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003508
3509 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3510 qc->n_elem - 1, lsg->length, qc->pad_len);
3511 }
3512
Jeff Garzike1410f22005-11-14 14:06:26 -05003513 pre_n_elem = qc->n_elem;
3514 if (trim_sg && pre_n_elem)
3515 pre_n_elem--;
3516
3517 if (!pre_n_elem) {
3518 n_elem = 0;
3519 goto skip_map;
3520 }
3521
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003523 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003524 if (n_elem < 1) {
3525 /* restore last sg */
3526 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
3530 DPRINTK("%d sg elements mapped\n", n_elem);
3531
Jeff Garzike1410f22005-11-14 14:06:26 -05003532skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 qc->n_elem = n_elem;
3534
3535 return 0;
3536}
3537
3538/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003539 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003540 * @buf: Buffer to swap
3541 * @buf_words: Number of 16-bit words in buffer.
3542 *
3543 * Swap halves of 16-bit words if needed to convert from
3544 * little-endian byte order to native cpu byte order, or
3545 * vice-versa.
3546 *
3547 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003548 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003549 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550void swap_buf_le16(u16 *buf, unsigned int buf_words)
3551{
3552#ifdef __BIG_ENDIAN
3553 unsigned int i;
3554
3555 for (i = 0; i < buf_words; i++)
3556 buf[i] = le16_to_cpu(buf[i]);
3557#endif /* __BIG_ENDIAN */
3558}
3559
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003560/**
3561 * ata_mmio_data_xfer - Transfer data by MMIO
Jeff Garzikbf717b112006-06-13 20:27:03 -04003562 * @adev: device for this I/O
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003563 * @buf: data buffer
3564 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003565 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003566 *
3567 * Transfer data from/to the device data register by MMIO.
3568 *
3569 * LOCKING:
3570 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003571 */
3572
Tejun Heo88574552006-06-25 20:00:35 +09003573void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf,
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003574 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003576 struct ata_port *ap = adev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 unsigned int i;
3578 unsigned int words = buflen >> 1;
3579 u16 *buf16 = (u16 *) buf;
3580 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3581
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003582 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 if (write_data) {
3584 for (i = 0; i < words; i++)
3585 writew(le16_to_cpu(buf16[i]), mmio);
3586 } else {
3587 for (i = 0; i < words; i++)
3588 buf16[i] = cpu_to_le16(readw(mmio));
3589 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003590
3591 /* Transfer trailing 1 byte, if any. */
3592 if (unlikely(buflen & 0x01)) {
3593 u16 align_buf[1] = { 0 };
3594 unsigned char *trailing_buf = buf + buflen - 1;
3595
3596 if (write_data) {
3597 memcpy(align_buf, trailing_buf, 1);
3598 writew(le16_to_cpu(align_buf[0]), mmio);
3599 } else {
3600 align_buf[0] = cpu_to_le16(readw(mmio));
3601 memcpy(trailing_buf, align_buf, 1);
3602 }
3603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604}
3605
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003606/**
3607 * ata_pio_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003608 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003609 * @buf: data buffer
3610 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003611 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003612 *
3613 * Transfer data from/to the device data register by PIO.
3614 *
3615 * LOCKING:
3616 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003617 */
3618
Tejun Heo88574552006-06-25 20:00:35 +09003619void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf,
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003620 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003622 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003623 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003625 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003627 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003629 insw(ap->ioaddr.data_addr, buf, words);
3630
3631 /* Transfer trailing 1 byte, if any. */
3632 if (unlikely(buflen & 0x01)) {
3633 u16 align_buf[1] = { 0 };
3634 unsigned char *trailing_buf = buf + buflen - 1;
3635
3636 if (write_data) {
3637 memcpy(align_buf, trailing_buf, 1);
3638 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3639 } else {
3640 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3641 memcpy(trailing_buf, align_buf, 1);
3642 }
3643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644}
3645
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003646/**
Alan Cox75e99582006-05-24 14:14:41 +01003647 * ata_pio_data_xfer_noirq - Transfer data by PIO
3648 * @adev: device to target
3649 * @buf: data buffer
3650 * @buflen: buffer length
3651 * @write_data: read/write
3652 *
Tejun Heo88574552006-06-25 20:00:35 +09003653 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01003654 * transfer with interrupts disabled.
3655 *
3656 * LOCKING:
3657 * Inherited from caller.
3658 */
3659
3660void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
3661 unsigned int buflen, int write_data)
3662{
3663 unsigned long flags;
3664 local_irq_save(flags);
3665 ata_pio_data_xfer(adev, buf, buflen, write_data);
3666 local_irq_restore(flags);
3667}
3668
3669
3670/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003671 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3672 * @qc: Command on going
3673 *
3674 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3675 *
3676 * LOCKING:
3677 * Inherited from caller.
3678 */
3679
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680static void ata_pio_sector(struct ata_queued_cmd *qc)
3681{
3682 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003683 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 struct ata_port *ap = qc->ap;
3685 struct page *page;
3686 unsigned int offset;
3687 unsigned char *buf;
3688
3689 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003690 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
3692 page = sg[qc->cursg].page;
3693 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3694
3695 /* get the current page and offset */
3696 page = nth_page(page, (offset >> PAGE_SHIFT));
3697 offset %= PAGE_SIZE;
3698
Albert Lee7282aa42005-10-09 09:46:07 -04003699 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3700
Albert Lee91b8b312005-10-09 09:48:44 -04003701 if (PageHighMem(page)) {
3702 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003703
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003704 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003705 local_irq_save(flags);
3706 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003707
Albert Lee91b8b312005-10-09 09:48:44 -04003708 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003709 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003710
3711 kunmap_atomic(buf, KM_IRQ0);
3712 local_irq_restore(flags);
3713 } else {
3714 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003715 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
3718 qc->cursect++;
3719 qc->cursg_ofs++;
3720
Albert Lee32529e02005-05-26 03:49:42 -04003721 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 qc->cursg++;
3723 qc->cursg_ofs = 0;
3724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003727/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003728 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3729 * @qc: Command on going
3730 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003731 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08003732 * ATA device for the DRQ request.
3733 *
3734 * LOCKING:
3735 * Inherited from caller.
3736 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Albert Lee07f6f7d2005-11-01 19:33:20 +08003738static void ata_pio_sectors(struct ata_queued_cmd *qc)
3739{
3740 if (is_multi_taskfile(&qc->tf)) {
3741 /* READ/WRITE MULTIPLE */
3742 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743
Jeff Garzik587005d2006-02-11 18:17:32 -05003744 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003745
3746 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3747 while (nsect--)
3748 ata_pio_sector(qc);
3749 } else
3750 ata_pio_sector(qc);
3751}
3752
3753/**
Albert Leec71c1852005-10-04 06:03:45 -04003754 * atapi_send_cdb - Write CDB bytes to hardware
3755 * @ap: Port to which ATAPI device is attached.
3756 * @qc: Taskfile currently active
3757 *
3758 * When device has indicated its readiness to accept
3759 * a CDB, this function is called. Send the CDB.
3760 *
3761 * LOCKING:
3762 * caller.
3763 */
3764
3765static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3766{
3767 /* send SCSI cdb */
3768 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003769 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003770
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003771 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003772 ata_altstatus(ap); /* flush */
3773
3774 switch (qc->tf.protocol) {
3775 case ATA_PROT_ATAPI:
3776 ap->hsm_task_state = HSM_ST;
3777 break;
3778 case ATA_PROT_ATAPI_NODATA:
3779 ap->hsm_task_state = HSM_ST_LAST;
3780 break;
3781 case ATA_PROT_ATAPI_DMA:
3782 ap->hsm_task_state = HSM_ST_LAST;
3783 /* initiate bmdma */
3784 ap->ops->bmdma_start(qc);
3785 break;
3786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787}
3788
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003789/**
3790 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3791 * @qc: Command on going
3792 * @bytes: number of bytes
3793 *
3794 * Transfer Transfer data from/to the ATAPI device.
3795 *
3796 * LOCKING:
3797 * Inherited from caller.
3798 *
3799 */
3800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3802{
3803 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003804 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 struct ata_port *ap = qc->ap;
3806 struct page *page;
3807 unsigned char *buf;
3808 unsigned int offset, count;
3809
Albert Lee563a6e12005-08-12 14:17:50 +08003810 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003811 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
3813next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003814 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003815 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003816 * The end of qc->sg is reached and the device expects
3817 * more data to transfer. In order not to overrun qc->sg
3818 * and fulfill length specified in the byte count register,
3819 * - for read case, discard trailing data from the device
3820 * - for write case, padding zero data to the device
3821 */
3822 u16 pad_buf[1] = { 0 };
3823 unsigned int words = bytes >> 1;
3824 unsigned int i;
3825
3826 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003827 ata_dev_printk(qc->dev, KERN_WARNING,
3828 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003829
3830 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003831 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08003832
Albert Lee14be71f2005-09-27 17:36:35 +08003833 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003834 return;
3835 }
3836
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003837 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 page = sg->page;
3840 offset = sg->offset + qc->cursg_ofs;
3841
3842 /* get the current page and offset */
3843 page = nth_page(page, (offset >> PAGE_SHIFT));
3844 offset %= PAGE_SIZE;
3845
Albert Lee6952df02005-06-06 15:56:03 +08003846 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003847 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
3849 /* don't cross page boundaries */
3850 count = min(count, (unsigned int)PAGE_SIZE - offset);
3851
Albert Lee7282aa42005-10-09 09:46:07 -04003852 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3853
Albert Lee91b8b312005-10-09 09:48:44 -04003854 if (PageHighMem(page)) {
3855 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003856
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003857 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003858 local_irq_save(flags);
3859 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003860
Albert Lee91b8b312005-10-09 09:48:44 -04003861 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003862 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003863
3864 kunmap_atomic(buf, KM_IRQ0);
3865 local_irq_restore(flags);
3866 } else {
3867 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003868 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870
3871 bytes -= count;
3872 qc->curbytes += count;
3873 qc->cursg_ofs += count;
3874
Albert Lee32529e02005-05-26 03:49:42 -04003875 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 qc->cursg++;
3877 qc->cursg_ofs = 0;
3878 }
3879
Albert Lee563a6e12005-08-12 14:17:50 +08003880 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882}
3883
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003884/**
3885 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3886 * @qc: Command on going
3887 *
3888 * Transfer Transfer data from/to the ATAPI device.
3889 *
3890 * LOCKING:
3891 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003892 */
3893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3895{
3896 struct ata_port *ap = qc->ap;
3897 struct ata_device *dev = qc->dev;
3898 unsigned int ireason, bc_lo, bc_hi, bytes;
3899 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3900
Albert Leeeec4c3f2006-05-18 17:51:10 +08003901 /* Abuse qc->result_tf for temp storage of intermediate TF
3902 * here to save some kernel stack usage.
3903 * For normal completion, qc->result_tf is not relevant. For
3904 * error, qc->result_tf is later overwritten by ata_qc_complete().
3905 * So, the correctness of qc->result_tf is not affected.
3906 */
3907 ap->ops->tf_read(ap, &qc->result_tf);
3908 ireason = qc->result_tf.nsect;
3909 bc_lo = qc->result_tf.lbam;
3910 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 bytes = (bc_hi << 8) | bc_lo;
3912
3913 /* shall be cleared to zero, indicating xfer of data */
3914 if (ireason & (1 << 0))
3915 goto err_out;
3916
3917 /* make sure transfer direction matches expected */
3918 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3919 if (do_write != i_write)
3920 goto err_out;
3921
Albert Lee312f7da2005-09-27 17:38:03 +08003922 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3923
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 __atapi_pio_bytes(qc, bytes);
3925
3926 return;
3927
3928err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003929 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003930 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003931 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932}
3933
3934/**
Albert Leec234fb02006-03-25 17:58:38 +08003935 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3936 * @ap: the target ata_port
3937 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 *
Albert Leec234fb02006-03-25 17:58:38 +08003939 * RETURNS:
3940 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 */
Albert Leec234fb02006-03-25 17:58:38 +08003942
3943static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944{
Albert Leec234fb02006-03-25 17:58:38 +08003945 if (qc->tf.flags & ATA_TFLAG_POLLING)
3946 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Albert Leec234fb02006-03-25 17:58:38 +08003948 if (ap->hsm_task_state == HSM_ST_FIRST) {
3949 if (qc->tf.protocol == ATA_PROT_PIO &&
3950 (qc->tf.flags & ATA_TFLAG_WRITE))
3951 return 1;
3952
3953 if (is_atapi_taskfile(&qc->tf) &&
3954 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3955 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 }
3957
Albert Leec234fb02006-03-25 17:58:38 +08003958 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959}
3960
Albert Leec234fb02006-03-25 17:58:38 +08003961/**
Tejun Heoc17ea202006-05-15 20:59:29 +09003962 * ata_hsm_qc_complete - finish a qc running on standard HSM
3963 * @qc: Command to complete
3964 * @in_wq: 1 if called from workqueue, 0 otherwise
3965 *
3966 * Finish @qc which is running on standard HSM.
3967 *
3968 * LOCKING:
3969 * If @in_wq is zero, spin_lock_irqsave(host_set lock).
3970 * Otherwise, none on entry and grabs host lock.
3971 */
3972static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
3973{
3974 struct ata_port *ap = qc->ap;
3975 unsigned long flags;
3976
3977 if (ap->ops->error_handler) {
3978 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04003979 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003980
3981 /* EH might have kicked in while host_set lock
3982 * is released.
3983 */
3984 qc = ata_qc_from_tag(ap, qc->tag);
3985 if (qc) {
3986 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
3987 ata_irq_on(ap);
3988 ata_qc_complete(qc);
3989 } else
3990 ata_port_freeze(ap);
3991 }
3992
Jeff Garzikba6a1302006-06-22 23:46:10 -04003993 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09003994 } else {
3995 if (likely(!(qc->err_mask & AC_ERR_HSM)))
3996 ata_qc_complete(qc);
3997 else
3998 ata_port_freeze(ap);
3999 }
4000 } else {
4001 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004002 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004003 ata_irq_on(ap);
4004 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04004005 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004006 } else
4007 ata_qc_complete(qc);
4008 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04004009
4010 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09004011}
4012
4013/**
Albert Leebb5cb292006-03-25 17:48:02 +08004014 * ata_hsm_move - move the HSM to the next state.
4015 * @ap: the target ata_port
4016 * @qc: qc on going
4017 * @status: current device status
4018 * @in_wq: 1 if called from workqueue, 0 otherwise
4019 *
4020 * RETURNS:
4021 * 1 when poll next status needed, 0 otherwise.
4022 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004023int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4024 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025{
Albert Leebb5cb292006-03-25 17:48:02 +08004026 unsigned long flags = 0;
4027 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028
Albert Lee6912ccd2006-03-25 17:45:49 +08004029 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004030
Albert Leebb5cb292006-03-25 17:48:02 +08004031 /* Make sure ata_qc_issue_prot() does not throw things
4032 * like DMA polling into the workqueue. Notice that
4033 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004034 */
Albert Leec234fb02006-03-25 17:58:38 +08004035 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004036
Albert Leee2cec772006-03-25 17:43:49 +08004037fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004038 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
4039 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
Albert Leee2cec772006-03-25 17:43:49 +08004041 switch (ap->hsm_task_state) {
4042 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004043 /* Send first data block or PACKET CDB */
4044
4045 /* If polling, we will stay in the work queue after
4046 * sending the data. Otherwise, interrupt handler
4047 * takes over after sending the data.
4048 */
4049 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4050
Albert Leee2cec772006-03-25 17:43:49 +08004051 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004052 if (unlikely((status & ATA_DRQ) == 0)) {
4053 /* handle BSY=0, DRQ=0 as error */
4054 if (likely(status & (ATA_ERR | ATA_DF)))
4055 /* device stops HSM for abort/error */
4056 qc->err_mask |= AC_ERR_DEV;
4057 else
4058 /* HSM violation. Let EH handle this */
4059 qc->err_mask |= AC_ERR_HSM;
4060
Albert Leee2cec772006-03-25 17:43:49 +08004061 ap->hsm_task_state = HSM_ST_ERR;
4062 goto fsm_start;
4063 }
4064
Albert Lee71601952006-03-25 18:11:12 +08004065 /* Device should not ask for data transfer (DRQ=1)
4066 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004067 * We ignore DRQ here and stop the HSM by
4068 * changing hsm_task_state to HSM_ST_ERR and
4069 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004070 */
4071 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4072 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4073 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004074 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004075 ap->hsm_task_state = HSM_ST_ERR;
4076 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004077 }
4078
Albert Leebb5cb292006-03-25 17:48:02 +08004079 /* Send the CDB (atapi) or the first data block (ata pio out).
4080 * During the state transition, interrupt handler shouldn't
4081 * be invoked before the data transfer is complete and
4082 * hsm_task_state is changed. Hence, the following locking.
4083 */
4084 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004085 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004086
Albert Leebb5cb292006-03-25 17:48:02 +08004087 if (qc->tf.protocol == ATA_PROT_PIO) {
4088 /* PIO data out protocol.
4089 * send first data block.
4090 */
4091
4092 /* ata_pio_sectors() might change the state
4093 * to HSM_ST_LAST. so, the state is changed here
4094 * before ata_pio_sectors().
4095 */
4096 ap->hsm_task_state = HSM_ST;
4097 ata_pio_sectors(qc);
4098 ata_altstatus(ap); /* flush */
4099 } else
4100 /* send CDB */
4101 atapi_send_cdb(ap, qc);
4102
4103 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004104 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004105
4106 /* if polling, ata_pio_task() handles the rest.
4107 * otherwise, interrupt handler takes over from here.
4108 */
Albert Leee2cec772006-03-25 17:43:49 +08004109 break;
4110
4111 case HSM_ST:
4112 /* complete command or read/write the data register */
4113 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4114 /* ATAPI PIO protocol */
4115 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004116 /* No more data to transfer or device error.
4117 * Device error will be tagged in HSM_ST_LAST.
4118 */
Albert Leee2cec772006-03-25 17:43:49 +08004119 ap->hsm_task_state = HSM_ST_LAST;
4120 goto fsm_start;
4121 }
4122
Albert Lee71601952006-03-25 18:11:12 +08004123 /* Device should not ask for data transfer (DRQ=1)
4124 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004125 * We ignore DRQ here and stop the HSM by
4126 * changing hsm_task_state to HSM_ST_ERR and
4127 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004128 */
4129 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4130 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4131 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004132 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004133 ap->hsm_task_state = HSM_ST_ERR;
4134 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004135 }
4136
Albert Leee2cec772006-03-25 17:43:49 +08004137 atapi_pio_bytes(qc);
4138
4139 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4140 /* bad ireason reported by device */
4141 goto fsm_start;
4142
4143 } else {
4144 /* ATA PIO protocol */
4145 if (unlikely((status & ATA_DRQ) == 0)) {
4146 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004147 if (likely(status & (ATA_ERR | ATA_DF)))
4148 /* device stops HSM for abort/error */
4149 qc->err_mask |= AC_ERR_DEV;
4150 else
4151 /* HSM violation. Let EH handle this */
4152 qc->err_mask |= AC_ERR_HSM;
4153
Albert Leee2cec772006-03-25 17:43:49 +08004154 ap->hsm_task_state = HSM_ST_ERR;
4155 goto fsm_start;
4156 }
4157
Albert Leeeee6c322006-04-01 17:38:43 +08004158 /* For PIO reads, some devices may ask for
4159 * data transfer (DRQ=1) alone with ERR=1.
4160 * We respect DRQ here and transfer one
4161 * block of junk data before changing the
4162 * hsm_task_state to HSM_ST_ERR.
4163 *
4164 * For PIO writes, ERR=1 DRQ=1 doesn't make
4165 * sense since the data block has been
4166 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004167 */
4168 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004169 /* data might be corrputed */
4170 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004171
4172 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4173 ata_pio_sectors(qc);
4174 ata_altstatus(ap);
4175 status = ata_wait_idle(ap);
4176 }
4177
Albert Lee3655d1d2006-05-19 11:43:04 +08004178 if (status & (ATA_BUSY | ATA_DRQ))
4179 qc->err_mask |= AC_ERR_HSM;
4180
Albert Leeeee6c322006-04-01 17:38:43 +08004181 /* ata_pio_sectors() might change the
4182 * state to HSM_ST_LAST. so, the state
4183 * is changed after ata_pio_sectors().
4184 */
4185 ap->hsm_task_state = HSM_ST_ERR;
4186 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004187 }
4188
Albert Leee2cec772006-03-25 17:43:49 +08004189 ata_pio_sectors(qc);
4190
4191 if (ap->hsm_task_state == HSM_ST_LAST &&
4192 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4193 /* all data read */
4194 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004195 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004196 goto fsm_start;
4197 }
4198 }
4199
4200 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004201 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004202 break;
4203
4204 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004205 if (unlikely(!ata_ok(status))) {
4206 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004207 ap->hsm_task_state = HSM_ST_ERR;
4208 goto fsm_start;
4209 }
4210
4211 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004212 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4213 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004214
Albert Lee6912ccd2006-03-25 17:45:49 +08004215 WARN_ON(qc->err_mask);
4216
Albert Leee2cec772006-03-25 17:43:49 +08004217 ap->hsm_task_state = HSM_ST_IDLE;
4218
4219 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004220 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004221
4222 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004223 break;
4224
4225 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004226 /* make sure qc->err_mask is available to
4227 * know what's wrong and recover
4228 */
4229 WARN_ON(qc->err_mask == 0);
4230
4231 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004232
Albert Lee999bb6f2006-03-25 18:07:48 +08004233 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004234 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004235
4236 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004237 break;
4238 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004239 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004240 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004241 }
4242
Albert Leebb5cb292006-03-25 17:48:02 +08004243 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244}
4245
4246static void ata_pio_task(void *_data)
4247{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004248 struct ata_queued_cmd *qc = _data;
4249 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004250 u8 status;
4251 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004252
4253fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004254 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
Albert Leea1af3732006-03-25 17:50:15 +08004256 /*
4257 * This is purely heuristic. This is a fast path.
4258 * Sometimes when we enter, BSY will be cleared in
4259 * a chk-status or two. If not, the drive is probably seeking
4260 * or something. Snooze for a couple msecs, then
4261 * chk-status again. If still busy, queue delayed work.
4262 */
4263 status = ata_busy_wait(ap, ATA_BUSY, 5);
4264 if (status & ATA_BUSY) {
4265 msleep(2);
4266 status = ata_busy_wait(ap, ATA_BUSY, 10);
4267 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004268 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004269 return;
4270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 }
4272
Albert Leea1af3732006-03-25 17:50:15 +08004273 /* move the HSM */
4274 poll_next = ata_hsm_move(ap, qc, status, 1);
4275
4276 /* another command or interrupt handler
4277 * may be running at this point.
4278 */
4279 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004280 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281}
4282
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 * ata_qc_new - Request an available ATA command, for queueing
4285 * @ap: Port associated with device @dev
4286 * @dev: Device from whom we request an available command structure
4287 *
4288 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004289 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 */
4291
4292static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4293{
4294 struct ata_queued_cmd *qc = NULL;
4295 unsigned int i;
4296
Tejun Heoe3180492006-05-15 20:58:09 +09004297 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09004298 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09004299 return NULL;
4300
Tejun Heo2ab7db12006-05-15 20:58:02 +09004301 /* the last tag is reserved for internal command. */
4302 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004303 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004304 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 break;
4306 }
4307
4308 if (qc)
4309 qc->tag = i;
4310
4311 return qc;
4312}
4313
4314/**
4315 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 * @dev: Device from whom we request an available command structure
4317 *
4318 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004319 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 */
4321
Tejun Heo3373efd2006-05-15 20:57:53 +09004322struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323{
Tejun Heo3373efd2006-05-15 20:57:53 +09004324 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 struct ata_queued_cmd *qc;
4326
4327 qc = ata_qc_new(ap);
4328 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 qc->scsicmd = NULL;
4330 qc->ap = ap;
4331 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004333 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 }
4335
4336 return qc;
4337}
4338
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339/**
4340 * ata_qc_free - free unused ata_queued_cmd
4341 * @qc: Command to complete
4342 *
4343 * Designed to free unused ata_queued_cmd object
4344 * in case something prevents using it.
4345 *
4346 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004347 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 */
4349void ata_qc_free(struct ata_queued_cmd *qc)
4350{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004351 struct ata_port *ap = qc->ap;
4352 unsigned int tag;
4353
Tejun Heoa4631472006-02-11 19:11:13 +09004354 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355
Tejun Heo4ba946e2006-01-23 13:09:36 +09004356 qc->flags = 0;
4357 tag = qc->tag;
4358 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004359 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004360 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362}
4363
Tejun Heo76014422006-02-11 15:13:49 +09004364void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004366 struct ata_port *ap = qc->ap;
4367
Tejun Heoa4631472006-02-11 19:11:13 +09004368 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4369 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
4371 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4372 ata_sg_clean(qc);
4373
Tejun Heo7401abf2006-05-15 20:57:32 +09004374 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004375 if (qc->tf.protocol == ATA_PROT_NCQ)
4376 ap->sactive &= ~(1 << qc->tag);
4377 else
4378 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004379
Albert Lee3f3791d2005-08-16 14:25:38 +08004380 /* atapi: mark qc as inactive to prevent the interrupt handler
4381 * from completing the command twice later, before the error handler
4382 * is called. (when rc != 0 and atapi request sense is needed)
4383 */
4384 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004385 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004386
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004388 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389}
4390
Tejun Heof686bcb2006-05-15 20:58:05 +09004391/**
4392 * ata_qc_complete - Complete an active ATA command
4393 * @qc: Command to complete
4394 * @err_mask: ATA Status register contents
4395 *
4396 * Indicate to the mid and upper layers that an ATA
4397 * command has completed, with either an ok or not-ok status.
4398 *
4399 * LOCKING:
4400 * spin_lock_irqsave(host_set lock)
4401 */
4402void ata_qc_complete(struct ata_queued_cmd *qc)
4403{
4404 struct ata_port *ap = qc->ap;
4405
4406 /* XXX: New EH and old EH use different mechanisms to
4407 * synchronize EH with regular execution path.
4408 *
4409 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4410 * Normal execution path is responsible for not accessing a
4411 * failed qc. libata core enforces the rule by returning NULL
4412 * from ata_qc_from_tag() for failed qcs.
4413 *
4414 * Old EH depends on ata_qc_complete() nullifying completion
4415 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4416 * not synchronize with interrupt handler. Only PIO task is
4417 * taken care of.
4418 */
4419 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09004420 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09004421
4422 if (unlikely(qc->err_mask))
4423 qc->flags |= ATA_QCFLAG_FAILED;
4424
4425 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4426 if (!ata_tag_internal(qc->tag)) {
4427 /* always fill result TF for failed qc */
4428 ap->ops->tf_read(ap, &qc->result_tf);
4429 ata_qc_schedule_eh(qc);
4430 return;
4431 }
4432 }
4433
4434 /* read result TF if requested */
4435 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4436 ap->ops->tf_read(ap, &qc->result_tf);
4437
4438 __ata_qc_complete(qc);
4439 } else {
4440 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4441 return;
4442
4443 /* read result TF if failed or requested */
4444 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4445 ap->ops->tf_read(ap, &qc->result_tf);
4446
4447 __ata_qc_complete(qc);
4448 }
4449}
4450
Tejun Heodedaf2b2006-05-15 21:03:43 +09004451/**
4452 * ata_qc_complete_multiple - Complete multiple qcs successfully
4453 * @ap: port in question
4454 * @qc_active: new qc_active mask
4455 * @finish_qc: LLDD callback invoked before completing a qc
4456 *
4457 * Complete in-flight commands. This functions is meant to be
4458 * called from low-level driver's interrupt routine to complete
4459 * requests normally. ap->qc_active and @qc_active is compared
4460 * and commands are completed accordingly.
4461 *
4462 * LOCKING:
4463 * spin_lock_irqsave(host_set lock)
4464 *
4465 * RETURNS:
4466 * Number of completed commands on success, -errno otherwise.
4467 */
4468int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4469 void (*finish_qc)(struct ata_queued_cmd *))
4470{
4471 int nr_done = 0;
4472 u32 done_mask;
4473 int i;
4474
4475 done_mask = ap->qc_active ^ qc_active;
4476
4477 if (unlikely(done_mask & qc_active)) {
4478 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4479 "(%08x->%08x)\n", ap->qc_active, qc_active);
4480 return -EINVAL;
4481 }
4482
4483 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4484 struct ata_queued_cmd *qc;
4485
4486 if (!(done_mask & (1 << i)))
4487 continue;
4488
4489 if ((qc = ata_qc_from_tag(ap, i))) {
4490 if (finish_qc)
4491 finish_qc(qc);
4492 ata_qc_complete(qc);
4493 nr_done++;
4494 }
4495 }
4496
4497 return nr_done;
4498}
4499
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4501{
4502 struct ata_port *ap = qc->ap;
4503
4504 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004505 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 case ATA_PROT_DMA:
4507 case ATA_PROT_ATAPI_DMA:
4508 return 1;
4509
4510 case ATA_PROT_ATAPI:
4511 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 if (ap->flags & ATA_FLAG_PIO_DMA)
4513 return 1;
4514
4515 /* fall through */
4516
4517 default:
4518 return 0;
4519 }
4520
4521 /* never reached */
4522}
4523
4524/**
4525 * ata_qc_issue - issue taskfile to device
4526 * @qc: command to issue to device
4527 *
4528 * Prepare an ATA command to submission to device.
4529 * This includes mapping the data into a DMA-able
4530 * area, filling in the S/G table, and finally
4531 * writing the taskfile to hardware, starting the command.
4532 *
4533 * LOCKING:
4534 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004536void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537{
4538 struct ata_port *ap = qc->ap;
4539
Tejun Heodedaf2b2006-05-15 21:03:43 +09004540 /* Make sure only one non-NCQ command is outstanding. The
4541 * check is skipped for old EH because it reuses active qc to
4542 * request ATAPI sense.
4543 */
4544 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4545
4546 if (qc->tf.protocol == ATA_PROT_NCQ) {
4547 WARN_ON(ap->sactive & (1 << qc->tag));
4548 ap->sactive |= 1 << qc->tag;
4549 } else {
4550 WARN_ON(ap->sactive);
4551 ap->active_tag = qc->tag;
4552 }
4553
Tejun Heoe4a70e72006-03-31 20:36:47 +09004554 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004555 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004556
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 if (ata_should_dma_map(qc)) {
4558 if (qc->flags & ATA_QCFLAG_SG) {
4559 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004560 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4562 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004563 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 }
4565 } else {
4566 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4567 }
4568
4569 ap->ops->qc_prep(qc);
4570
Tejun Heo8e0e6942006-03-31 20:41:11 +09004571 qc->err_mask |= ap->ops->qc_issue(qc);
4572 if (unlikely(qc->err_mask))
4573 goto err;
4574 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
Tejun Heo8e436af2006-01-23 13:09:36 +09004576sg_err:
4577 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004578 qc->err_mask |= AC_ERR_SYSTEM;
4579err:
4580 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581}
4582
4583/**
4584 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4585 * @qc: command to issue to device
4586 *
4587 * Using various libata functions and hooks, this function
4588 * starts an ATA command. ATA commands are grouped into
4589 * classes called "protocols", and issuing each type of protocol
4590 * is slightly different.
4591 *
Edward Falk0baab862005-06-02 18:17:13 -04004592 * May be used as the qc_issue() entry in ata_port_operations.
4593 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 * LOCKING:
4595 * spin_lock_irqsave(host_set lock)
4596 *
4597 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004598 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 */
4600
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004601unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602{
4603 struct ata_port *ap = qc->ap;
4604
Albert Leee50362e2005-09-27 17:39:50 +08004605 /* Use polling pio if the LLD doesn't handle
4606 * interrupt driven pio and atapi CDB interrupt.
4607 */
4608 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4609 switch (qc->tf.protocol) {
4610 case ATA_PROT_PIO:
4611 case ATA_PROT_ATAPI:
4612 case ATA_PROT_ATAPI_NODATA:
4613 qc->tf.flags |= ATA_TFLAG_POLLING;
4614 break;
4615 case ATA_PROT_ATAPI_DMA:
4616 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08004617 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08004618 BUG();
4619 break;
4620 default:
4621 break;
4622 }
4623 }
4624
Albert Lee312f7da2005-09-27 17:38:03 +08004625 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 ata_dev_select(ap, qc->dev->devno, 1, 0);
4627
Albert Lee312f7da2005-09-27 17:38:03 +08004628 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 switch (qc->tf.protocol) {
4630 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004631 if (qc->tf.flags & ATA_TFLAG_POLLING)
4632 ata_qc_set_polling(qc);
4633
Jeff Garzike5338252005-10-30 21:37:17 -05004634 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004635 ap->hsm_task_state = HSM_ST_LAST;
4636
4637 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004638 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004639
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 break;
4641
4642 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004643 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004644
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4646 ap->ops->bmdma_setup(qc); /* set up bmdma */
4647 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004648 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 break;
4650
Albert Lee312f7da2005-09-27 17:38:03 +08004651 case ATA_PROT_PIO:
4652 if (qc->tf.flags & ATA_TFLAG_POLLING)
4653 ata_qc_set_polling(qc);
4654
Jeff Garzike5338252005-10-30 21:37:17 -05004655 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004656
Albert Lee54f00382005-09-30 19:14:19 +08004657 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4658 /* PIO data out protocol */
4659 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004660 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004661
4662 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004663 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004664 */
Albert Lee312f7da2005-09-27 17:38:03 +08004665 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004666 /* PIO data in protocol */
4667 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004668
Albert Lee54f00382005-09-30 19:14:19 +08004669 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004670 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004671
Albert Lee54f00382005-09-30 19:14:19 +08004672 /* if polling, ata_pio_task() handles the rest.
4673 * otherwise, interrupt handler takes over from here.
4674 */
Albert Lee312f7da2005-09-27 17:38:03 +08004675 }
4676
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 break;
4678
4679 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004681 if (qc->tf.flags & ATA_TFLAG_POLLING)
4682 ata_qc_set_polling(qc);
4683
Jeff Garzike5338252005-10-30 21:37:17 -05004684 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004685
Albert Lee312f7da2005-09-27 17:38:03 +08004686 ap->hsm_task_state = HSM_ST_FIRST;
4687
4688 /* send cdb by polling if no cdb interrupt */
4689 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4690 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004691 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 break;
4693
4694 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004695 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4698 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004699 ap->hsm_task_state = HSM_ST_FIRST;
4700
4701 /* send cdb by polling if no cdb interrupt */
4702 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004703 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 break;
4705
4706 default:
4707 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004708 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 }
4710
4711 return 0;
4712}
4713
4714/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 * ata_host_intr - Handle host interrupt for given (port, task)
4716 * @ap: Port on which interrupt arrived (possibly...)
4717 * @qc: Taskfile currently active in engine
4718 *
4719 * Handle host interrupt for given queued command. Currently,
4720 * only DMA interrupts are handled. All other commands are
4721 * handled via polling with interrupts disabled (nIEN bit).
4722 *
4723 * LOCKING:
4724 * spin_lock_irqsave(host_set lock)
4725 *
4726 * RETURNS:
4727 * One if interrupt was handled, zero if not (shared irq).
4728 */
4729
4730inline unsigned int ata_host_intr (struct ata_port *ap,
4731 struct ata_queued_cmd *qc)
4732{
Albert Lee312f7da2005-09-27 17:38:03 +08004733 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
Albert Lee312f7da2005-09-27 17:38:03 +08004735 VPRINTK("ata%u: protocol %d task_state %d\n",
4736 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737
Albert Lee312f7da2005-09-27 17:38:03 +08004738 /* Check whether we are expecting interrupt in this state */
4739 switch (ap->hsm_task_state) {
4740 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004741 /* Some pre-ATAPI-4 devices assert INTRQ
4742 * at this state when ready to receive CDB.
4743 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744
Albert Lee312f7da2005-09-27 17:38:03 +08004745 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4746 * The flag was turned on only for atapi devices.
4747 * No need to check is_atapi_taskfile(&qc->tf) again.
4748 */
4749 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004752 case HSM_ST_LAST:
4753 if (qc->tf.protocol == ATA_PROT_DMA ||
4754 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4755 /* check status of DMA engine */
4756 host_stat = ap->ops->bmdma_status(ap);
4757 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758
Albert Lee312f7da2005-09-27 17:38:03 +08004759 /* if it's not our irq... */
4760 if (!(host_stat & ATA_DMA_INTR))
4761 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762
Albert Lee312f7da2005-09-27 17:38:03 +08004763 /* before we do anything else, clear DMA-Start bit */
4764 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004765
4766 if (unlikely(host_stat & ATA_DMA_ERR)) {
4767 /* error when transfering data to/from memory */
4768 qc->err_mask |= AC_ERR_HOST_BUS;
4769 ap->hsm_task_state = HSM_ST_ERR;
4770 }
Albert Lee312f7da2005-09-27 17:38:03 +08004771 }
4772 break;
4773 case HSM_ST:
4774 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775 default:
4776 goto idle_irq;
4777 }
4778
Albert Lee312f7da2005-09-27 17:38:03 +08004779 /* check altstatus */
4780 status = ata_altstatus(ap);
4781 if (status & ATA_BUSY)
4782 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Albert Lee312f7da2005-09-27 17:38:03 +08004784 /* check main status, clearing INTRQ */
4785 status = ata_chk_status(ap);
4786 if (unlikely(status & ATA_BUSY))
4787 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
Albert Lee312f7da2005-09-27 17:38:03 +08004789 /* ack bmdma irq events */
4790 ap->ops->irq_clear(ap);
4791
Albert Leebb5cb292006-03-25 17:48:02 +08004792 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 return 1; /* irq handled */
4794
4795idle_irq:
4796 ap->stats.idle_irq++;
4797
4798#ifdef ATA_IRQ_TRAP
4799 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004801 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004802 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 }
4804#endif
4805 return 0; /* irq not handled */
4806}
4807
4808/**
4809 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004810 * @irq: irq line (unused)
4811 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 * @regs: unused
4813 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004814 * Default interrupt handler for PCI IDE devices. Calls
4815 * ata_host_intr() for each port that is not disabled.
4816 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004818 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819 *
4820 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004821 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 */
4823
4824irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4825{
4826 struct ata_host_set *host_set = dev_instance;
4827 unsigned int i;
4828 unsigned int handled = 0;
4829 unsigned long flags;
4830
4831 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4832 spin_lock_irqsave(&host_set->lock, flags);
4833
4834 for (i = 0; i < host_set->n_ports; i++) {
4835 struct ata_port *ap;
4836
4837 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004838 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004839 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 struct ata_queued_cmd *qc;
4841
4842 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004843 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004844 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 handled |= ata_host_intr(ap, qc);
4846 }
4847 }
4848
4849 spin_unlock_irqrestore(&host_set->lock, flags);
4850
4851 return IRQ_RETVAL(handled);
4852}
4853
Tejun Heo34bf2172006-05-15 20:57:46 +09004854/**
4855 * sata_scr_valid - test whether SCRs are accessible
4856 * @ap: ATA port to test SCR accessibility for
4857 *
4858 * Test whether SCRs are accessible for @ap.
4859 *
4860 * LOCKING:
4861 * None.
4862 *
4863 * RETURNS:
4864 * 1 if SCRs are accessible, 0 otherwise.
4865 */
4866int sata_scr_valid(struct ata_port *ap)
4867{
4868 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4869}
4870
4871/**
4872 * sata_scr_read - read SCR register of the specified port
4873 * @ap: ATA port to read SCR for
4874 * @reg: SCR to read
4875 * @val: Place to store read value
4876 *
4877 * Read SCR register @reg of @ap into *@val. This function is
4878 * guaranteed to succeed if the cable type of the port is SATA
4879 * and the port implements ->scr_read.
4880 *
4881 * LOCKING:
4882 * None.
4883 *
4884 * RETURNS:
4885 * 0 on success, negative errno on failure.
4886 */
4887int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4888{
4889 if (sata_scr_valid(ap)) {
4890 *val = ap->ops->scr_read(ap, reg);
4891 return 0;
4892 }
4893 return -EOPNOTSUPP;
4894}
4895
4896/**
4897 * sata_scr_write - write SCR register of the specified port
4898 * @ap: ATA port to write SCR for
4899 * @reg: SCR to write
4900 * @val: value to write
4901 *
4902 * Write @val to SCR register @reg of @ap. This function is
4903 * guaranteed to succeed if the cable type of the port is SATA
4904 * and the port implements ->scr_read.
4905 *
4906 * LOCKING:
4907 * None.
4908 *
4909 * RETURNS:
4910 * 0 on success, negative errno on failure.
4911 */
4912int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4913{
4914 if (sata_scr_valid(ap)) {
4915 ap->ops->scr_write(ap, reg, val);
4916 return 0;
4917 }
4918 return -EOPNOTSUPP;
4919}
4920
4921/**
4922 * sata_scr_write_flush - write SCR register of the specified port and flush
4923 * @ap: ATA port to write SCR for
4924 * @reg: SCR to write
4925 * @val: value to write
4926 *
4927 * This function is identical to sata_scr_write() except that this
4928 * function performs flush after writing to the register.
4929 *
4930 * LOCKING:
4931 * None.
4932 *
4933 * RETURNS:
4934 * 0 on success, negative errno on failure.
4935 */
4936int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4937{
4938 if (sata_scr_valid(ap)) {
4939 ap->ops->scr_write(ap, reg, val);
4940 ap->ops->scr_read(ap, reg);
4941 return 0;
4942 }
4943 return -EOPNOTSUPP;
4944}
4945
4946/**
4947 * ata_port_online - test whether the given port is online
4948 * @ap: ATA port to test
4949 *
4950 * Test whether @ap is online. Note that this function returns 0
4951 * if online status of @ap cannot be obtained, so
4952 * ata_port_online(ap) != !ata_port_offline(ap).
4953 *
4954 * LOCKING:
4955 * None.
4956 *
4957 * RETURNS:
4958 * 1 if the port online status is available and online.
4959 */
4960int ata_port_online(struct ata_port *ap)
4961{
4962 u32 sstatus;
4963
4964 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4965 return 1;
4966 return 0;
4967}
4968
4969/**
4970 * ata_port_offline - test whether the given port is offline
4971 * @ap: ATA port to test
4972 *
4973 * Test whether @ap is offline. Note that this function returns
4974 * 0 if offline status of @ap cannot be obtained, so
4975 * ata_port_online(ap) != !ata_port_offline(ap).
4976 *
4977 * LOCKING:
4978 * None.
4979 *
4980 * RETURNS:
4981 * 1 if the port offline status is available and offline.
4982 */
4983int ata_port_offline(struct ata_port *ap)
4984{
4985 u32 sstatus;
4986
4987 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4988 return 1;
4989 return 0;
4990}
Edward Falk0baab862005-06-02 18:17:13 -04004991
Tejun Heo77b08fb2006-06-24 20:30:19 +09004992int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004993{
Tejun Heo977e6b92006-06-24 20:30:19 +09004994 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01004995 u8 cmd;
4996
4997 if (!ata_try_flush_cache(dev))
4998 return 0;
4999
5000 if (ata_id_has_flush_ext(dev->id))
5001 cmd = ATA_CMD_FLUSH_EXT;
5002 else
5003 cmd = ATA_CMD_FLUSH;
5004
Tejun Heo977e6b92006-06-24 20:30:19 +09005005 err_mask = ata_do_simple_cmd(dev, cmd);
5006 if (err_mask) {
5007 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
5008 return -EIO;
5009 }
5010
5011 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005012}
5013
Tejun Heo3373efd2006-05-15 20:57:53 +09005014static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005015{
Tejun Heo977e6b92006-06-24 20:30:19 +09005016 unsigned int err_mask;
5017
5018 err_mask = ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
5019 if (err_mask) {
5020 ata_dev_printk(dev, KERN_ERR, "failed to standby drive "
5021 "(err_mask=0x%x)\n", err_mask);
5022 return -EIO;
5023 }
5024
5025 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005026}
5027
Tejun Heo3373efd2006-05-15 20:57:53 +09005028static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005029{
Tejun Heo977e6b92006-06-24 20:30:19 +09005030 unsigned int err_mask;
5031
5032 err_mask = ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
5033 if (err_mask) {
5034 ata_dev_printk(dev, KERN_ERR, "failed to start drive "
5035 "(err_mask=0x%x)\n", err_mask);
5036 return -EIO;
5037 }
5038
5039 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005040}
5041
5042/**
5043 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005044 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01005045 *
5046 * Kick the drive back into action, by sending it an idle immediate
5047 * command and making sure its transfer mode matches between drive
5048 * and host.
5049 *
5050 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005051int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005052{
Tejun Heo3373efd2006-05-15 20:57:53 +09005053 struct ata_port *ap = dev->ap;
5054
Tejun Heob51e9e52006-06-29 01:29:30 +09005055 if (ap->pflags & ATA_PFLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005056 struct ata_device *failed_dev;
Jeff Garzike42d7be2006-05-28 16:32:59 -04005057
Linus Torvalds1cca0eb2006-06-19 18:01:27 -07005058 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Mark Lord0737ac82006-05-28 11:28:00 -04005059 ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 200000);
Jeff Garzike42d7be2006-05-28 16:32:59 -04005060
Tejun Heob51e9e52006-06-29 01:29:30 +09005061 ap->pflags &= ~ATA_PFLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005062 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09005063 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005064 }
Tejun Heoe1211e32006-04-01 01:38:18 +09005065 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005066 return 0;
5067 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005068 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005069
5070 return 0;
5071}
5072
5073/**
5074 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005075 * @dev: the device to suspend
Randy Dunlape2a7f772006-05-18 10:50:18 -07005076 * @state: target power management state
Jens Axboe9b847542006-01-06 09:28:07 +01005077 *
5078 * Flush the cache on the drive, if appropriate, then issue a
5079 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01005080 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005081int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01005082{
Tejun Heo3373efd2006-05-15 20:57:53 +09005083 struct ata_port *ap = dev->ap;
5084
Tejun Heoe1211e32006-04-01 01:38:18 +09005085 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005086 return 0;
5087 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005088 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005089
Nigel Cunningham082776e2006-03-23 23:22:16 +10005090 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09005091 ata_standby_drive(dev);
Tejun Heob51e9e52006-06-29 01:29:30 +09005092 ap->pflags |= ATA_PFLAG_SUSPENDED;
Jens Axboe9b847542006-01-06 09:28:07 +01005093 return 0;
5094}
5095
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005096/**
5097 * ata_port_start - Set port up for dma.
5098 * @ap: Port to initialize
5099 *
5100 * Called just after data structures for each port are
5101 * initialized. Allocates space for PRD table.
5102 *
5103 * May be used as the port_start() entry in ata_port_operations.
5104 *
5105 * LOCKING:
5106 * Inherited from caller.
5107 */
5108
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109int ata_port_start (struct ata_port *ap)
5110{
Brian King2f1f6102006-03-23 17:30:15 -06005111 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005112 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
5114 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
5115 if (!ap->prd)
5116 return -ENOMEM;
5117
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005118 rc = ata_pad_alloc(ap, dev);
5119 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005120 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005121 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005122 }
5123
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
5125
5126 return 0;
5127}
5128
Edward Falk0baab862005-06-02 18:17:13 -04005129
5130/**
5131 * ata_port_stop - Undo ata_port_start()
5132 * @ap: Port to shut down
5133 *
5134 * Frees the PRD table.
5135 *
5136 * May be used as the port_stop() entry in ata_port_operations.
5137 *
5138 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005139 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005140 */
5141
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142void ata_port_stop (struct ata_port *ap)
5143{
Brian King2f1f6102006-03-23 17:30:15 -06005144 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
5146 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005147 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148}
5149
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005150void ata_host_stop (struct ata_host_set *host_set)
5151{
5152 if (host_set->mmio_base)
5153 iounmap(host_set->mmio_base);
5154}
5155
5156
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157/**
5158 * ata_host_remove - Unregister SCSI host structure with upper layers
5159 * @ap: Port to unregister
5160 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
5161 *
5162 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005163 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 */
5165
5166static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
5167{
5168 struct Scsi_Host *sh = ap->host;
5169
5170 DPRINTK("ENTER\n");
5171
5172 if (do_unregister)
5173 scsi_remove_host(sh);
5174
5175 ap->ops->port_stop(ap);
5176}
5177
5178/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005179 * ata_dev_init - Initialize an ata_device structure
5180 * @dev: Device structure to initialize
5181 *
5182 * Initialize @dev in preparation for probing.
5183 *
5184 * LOCKING:
5185 * Inherited from caller.
5186 */
5187void ata_dev_init(struct ata_device *dev)
5188{
5189 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005190 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005191
Tejun Heo5a04bf42006-05-31 18:27:38 +09005192 /* SATA spd limit is bound to the first device */
5193 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5194
Tejun Heo72fa4b72006-05-31 18:27:32 +09005195 /* High bits of dev->flags are used to record warm plug
5196 * requests which occur asynchronously. Synchronize using
5197 * host_set lock.
5198 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005199 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005200 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005201 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005202
5203 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5204 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005205 dev->pio_mask = UINT_MAX;
5206 dev->mwdma_mask = UINT_MAX;
5207 dev->udma_mask = UINT_MAX;
5208}
5209
5210/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 * ata_host_init - Initialize an ata_port structure
5212 * @ap: Structure to initialize
5213 * @host: associated SCSI mid-layer structure
5214 * @host_set: Collection of hosts to which @ap belongs
5215 * @ent: Probe information provided by low-level driver
5216 * @port_no: Port number associated with this ata_port
5217 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005218 * Initialize a new ata_port structure, and its associated
5219 * scsi_host.
5220 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005222 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
5225 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04005226 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227{
5228 unsigned int i;
5229
5230 host->max_id = 16;
5231 host->max_lun = 1;
5232 host->max_channel = 1;
5233 host->unique_id = ata_unique_id++;
5234 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02005235
Jeff Garzikba6a1302006-06-22 23:46:10 -04005236 ap->lock = &host_set->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005237 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238 ap->id = host->unique_id;
5239 ap->host = host;
5240 ap->ctl = ATA_DEVCTL_OBS;
5241 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06005242 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 ap->port_no = port_no;
5244 ap->hard_port_no =
5245 ent->legacy_mode ? ent->hard_port_no : port_no;
5246 ap->pio_mask = ent->pio_mask;
5247 ap->mwdma_mask = ent->mwdma_mask;
5248 ap->udma_mask = ent->udma_mask;
5249 ap->flags |= ent->host_flags;
5250 ap->ops = ent->port_ops;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005251 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 ap->active_tag = ATA_TAG_POISON;
5253 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005254
5255#if defined(ATA_VERBOSE_DEBUG)
5256 /* turn on all debugging levels */
5257 ap->msg_enable = 0x00FF;
5258#elif defined(ATA_DEBUG)
5259 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 +09005260#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005261 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005262#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263
Tejun Heo86e45b62006-03-05 15:29:09 +09005264 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heo580b2102006-05-31 18:28:05 +09005265 INIT_WORK(&ap->hotplug_task, ata_scsi_hotplug, ap);
zhao, forrest3057ac32006-06-12 12:01:34 +08005266 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan, ap);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005267 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005268 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269
Tejun Heo838df622006-05-15 20:57:44 +09005270 /* set cable type */
5271 ap->cbl = ATA_CBL_NONE;
5272 if (ap->flags & ATA_FLAG_SATA)
5273 ap->cbl = ATA_CBL_SATA;
5274
Tejun Heoacf356b2006-03-24 14:07:50 +09005275 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5276 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005277 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005278 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005279 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
5282#ifdef ATA_IRQ_TRAP
5283 ap->stats.unhandled_irq = 1;
5284 ap->stats.idle_irq = 1;
5285#endif
5286
5287 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5288}
5289
5290/**
5291 * ata_host_add - Attach low-level ATA driver to system
5292 * @ent: Information provided by low-level driver
5293 * @host_set: Collections of ports to which we add
5294 * @port_no: Port number associated with this host
5295 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005296 * Attach low-level ATA driver to system.
5297 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005299 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 *
5301 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005302 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 */
5304
Jeff Garzik057ace52005-10-22 14:27:05 -04005305static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 struct ata_host_set *host_set,
5307 unsigned int port_no)
5308{
5309 struct Scsi_Host *host;
5310 struct ata_port *ap;
5311 int rc;
5312
5313 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005314
Tejun Heo52783c52006-05-31 18:28:22 +09005315 if (!ent->port_ops->error_handler &&
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005316 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
5317 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5318 port_no);
5319 return NULL;
5320 }
5321
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5323 if (!host)
5324 return NULL;
5325
Tejun Heo30afc842006-03-18 18:40:14 +09005326 host->transportt = &ata_scsi_transport_template;
5327
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005328 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329
5330 ata_host_init(ap, host, host_set, ent, port_no);
5331
5332 rc = ap->ops->port_start(ap);
5333 if (rc)
5334 goto err_out;
5335
5336 return ap;
5337
5338err_out:
5339 scsi_host_put(host);
5340 return NULL;
5341}
5342
5343/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005344 * ata_device_add - Register hardware device with ATA and SCSI layers
5345 * @ent: Probe information describing hardware device to be registered
5346 *
5347 * This function processes the information provided in the probe
5348 * information struct @ent, allocates the necessary ATA and SCSI
5349 * host information structures, initializes them, and registers
5350 * everything with requisite kernel subsystems.
5351 *
5352 * This function requests irqs, probes the ATA bus, and probes
5353 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 *
5355 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005356 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 *
5358 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005359 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 */
Jeff Garzik057ace52005-10-22 14:27:05 -04005361int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362{
5363 unsigned int count = 0, i;
5364 struct device *dev = ent->dev;
5365 struct ata_host_set *host_set;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005366 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367
5368 DPRINTK("ENTER\n");
5369 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005370 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5372 if (!host_set)
5373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374 spin_lock_init(&host_set->lock);
5375
5376 host_set->dev = dev;
5377 host_set->n_ports = ent->n_ports;
5378 host_set->irq = ent->irq;
5379 host_set->mmio_base = ent->mmio_base;
5380 host_set->private_data = ent->private_data;
5381 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01005382 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
5384 /* register each port bound to this device */
5385 for (i = 0; i < ent->n_ports; i++) {
5386 struct ata_port *ap;
5387 unsigned long xfer_mode_mask;
5388
5389 ap = ata_host_add(ent, host_set, i);
5390 if (!ap)
5391 goto err_out;
5392
5393 host_set->ports[i] = ap;
5394 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5395 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5396 (ap->pio_mask << ATA_SHIFT_PIO);
5397
5398 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005399 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
5400 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
5401 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5402 ata_mode_string(xfer_mode_mask),
5403 ap->ioaddr.cmd_addr,
5404 ap->ioaddr.ctl_addr,
5405 ap->ioaddr.bmdma_addr,
5406 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407
5408 ata_chk_status(ap);
5409 host_set->ops->irq_clear(ap);
Tejun Heoe3180492006-05-15 20:58:09 +09005410 ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411 count++;
5412 }
5413
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005414 if (!count)
5415 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
5417 /* obtain irq, that is shared between channels */
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005418 rc = request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
5419 DRV_NAME, host_set);
5420 if (rc) {
5421 dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n",
5422 ent->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423 goto err_out;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425
5426 /* perform each probe synchronously */
5427 DPRINTK("probe begin\n");
5428 for (i = 0; i < count; i++) {
5429 struct ata_port *ap;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005430 u32 scontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 int rc;
5432
5433 ap = host_set->ports[i];
5434
Tejun Heo5a04bf42006-05-31 18:27:38 +09005435 /* init sata_spd_limit to the current value */
5436 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
5437 int spd = (scontrol >> 4) & 0xf;
5438 ap->hw_sata_spd_limit &= (1 << spd) - 1;
5439 }
5440 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5441
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442 rc = scsi_add_host(ap->host, dev);
5443 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005444 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445 /* FIXME: do something useful here */
5446 /* FIXME: handle unconditional calls to
5447 * scsi_scan_host and ata_host_remove, below,
5448 * at the very least
5449 */
5450 }
Tejun Heo3e706392006-05-31 18:28:11 +09005451
Tejun Heo52783c52006-05-31 18:28:22 +09005452 if (ap->ops->error_handler) {
Tejun Heo3e706392006-05-31 18:28:11 +09005453 unsigned long flags;
5454
5455 ata_port_probe(ap);
5456
5457 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005458 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005459
5460 ap->eh_info.probe_mask = (1 << ATA_MAX_DEVICES) - 1;
5461 ap->eh_info.action |= ATA_EH_SOFTRESET;
5462
Tejun Heob51e9e52006-06-29 01:29:30 +09005463 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09005464 ata_port_schedule_eh(ap);
5465
Jeff Garzikba6a1302006-06-22 23:46:10 -04005466 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005467
5468 /* wait for EH to finish */
5469 ata_port_wait_eh(ap);
5470 } else {
5471 DPRINTK("ata%u: bus probe begin\n", ap->id);
5472 rc = ata_bus_probe(ap);
5473 DPRINTK("ata%u: bus probe end\n", ap->id);
5474
5475 if (rc) {
5476 /* FIXME: do something useful here?
5477 * Current libata behavior will
5478 * tear down everything when
5479 * the module is removed
5480 * or the h/w is unplugged.
5481 */
5482 }
5483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484 }
5485
5486 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005487 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 for (i = 0; i < count; i++) {
5489 struct ata_port *ap = host_set->ports[i];
5490
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005491 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492 }
5493
5494 dev_set_drvdata(dev, host_set);
5495
5496 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5497 return ent->n_ports; /* success */
5498
5499err_out:
5500 for (i = 0; i < count; i++) {
5501 ata_host_remove(host_set->ports[i], 1);
5502 scsi_host_put(host_set->ports[i]->host);
5503 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005504err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 kfree(host_set);
5506 VPRINTK("EXIT, returning 0\n");
5507 return 0;
5508}
5509
5510/**
Tejun Heo720ba122006-05-31 18:28:13 +09005511 * ata_port_detach - Detach ATA port in prepration of device removal
5512 * @ap: ATA port to be detached
5513 *
5514 * Detach all ATA devices and the associated SCSI devices of @ap;
5515 * then, remove the associated SCSI host. @ap is guaranteed to
5516 * be quiescent on return from this function.
5517 *
5518 * LOCKING:
5519 * Kernel thread context (may sleep).
5520 */
5521void ata_port_detach(struct ata_port *ap)
5522{
5523 unsigned long flags;
5524 int i;
5525
5526 if (!ap->ops->error_handler)
5527 return;
5528
5529 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005530 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09005531 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005532 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005533
5534 ata_port_wait_eh(ap);
5535
5536 /* EH is now guaranteed to see UNLOADING, so no new device
5537 * will be attached. Disable all existing devices.
5538 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005539 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005540
5541 for (i = 0; i < ATA_MAX_DEVICES; i++)
5542 ata_dev_disable(&ap->device[i]);
5543
Jeff Garzikba6a1302006-06-22 23:46:10 -04005544 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005545
5546 /* Final freeze & EH. All in-flight commands are aborted. EH
5547 * will be skipped and retrials will be terminated with bad
5548 * target.
5549 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005550 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005551 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005552 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005553
5554 ata_port_wait_eh(ap);
5555
5556 /* Flush hotplug task. The sequence is similar to
5557 * ata_port_flush_task().
5558 */
5559 flush_workqueue(ata_aux_wq);
5560 cancel_delayed_work(&ap->hotplug_task);
5561 flush_workqueue(ata_aux_wq);
5562
5563 /* remove the associated SCSI host */
5564 scsi_remove_host(ap->host);
5565}
5566
5567/**
Alan Cox17b14452005-09-15 15:44:00 +01005568 * ata_host_set_remove - PCI layer callback for device removal
5569 * @host_set: ATA host set that was removed
5570 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005571 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005572 * objects.
5573 *
5574 * LOCKING:
5575 * Inherited from calling layer (may sleep).
5576 */
5577
Alan Cox17b14452005-09-15 15:44:00 +01005578void ata_host_set_remove(struct ata_host_set *host_set)
5579{
Alan Cox17b14452005-09-15 15:44:00 +01005580 unsigned int i;
5581
Tejun Heo720ba122006-05-31 18:28:13 +09005582 for (i = 0; i < host_set->n_ports; i++)
5583 ata_port_detach(host_set->ports[i]);
Alan Cox17b14452005-09-15 15:44:00 +01005584
5585 free_irq(host_set->irq, host_set);
5586
5587 for (i = 0; i < host_set->n_ports; i++) {
Tejun Heo720ba122006-05-31 18:28:13 +09005588 struct ata_port *ap = host_set->ports[i];
Alan Cox17b14452005-09-15 15:44:00 +01005589
5590 ata_scsi_release(ap->host);
5591
5592 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5593 struct ata_ioports *ioaddr = &ap->ioaddr;
5594
5595 if (ioaddr->cmd_addr == 0x1f0)
5596 release_region(0x1f0, 8);
5597 else if (ioaddr->cmd_addr == 0x170)
5598 release_region(0x170, 8);
5599 }
5600
5601 scsi_host_put(ap->host);
5602 }
5603
5604 if (host_set->ops->host_stop)
5605 host_set->ops->host_stop(host_set);
5606
5607 kfree(host_set);
5608}
5609
5610/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611 * ata_scsi_release - SCSI layer callback hook for host unload
5612 * @host: libata host to be unloaded
5613 *
5614 * Performs all duties necessary to shut down a libata port...
5615 * Kill port kthread, disable port, and release resources.
5616 *
5617 * LOCKING:
5618 * Inherited from SCSI layer.
5619 *
5620 * RETURNS:
5621 * One.
5622 */
5623
5624int ata_scsi_release(struct Scsi_Host *host)
5625{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005626 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627
5628 DPRINTK("ENTER\n");
5629
5630 ap->ops->port_disable(ap);
5631 ata_host_remove(ap, 0);
5632
5633 DPRINTK("EXIT\n");
5634 return 1;
5635}
5636
5637/**
5638 * ata_std_ports - initialize ioaddr with standard port offsets.
5639 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005640 *
5641 * Utility function which initializes data_addr, error_addr,
5642 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5643 * device_addr, status_addr, and command_addr to standard offsets
5644 * relative to cmd_addr.
5645 *
5646 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 */
Edward Falk0baab862005-06-02 18:17:13 -04005648
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649void ata_std_ports(struct ata_ioports *ioaddr)
5650{
5651 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5652 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5653 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5654 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5655 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5656 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5657 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5658 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5659 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5660 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5661}
5662
Edward Falk0baab862005-06-02 18:17:13 -04005663
Jeff Garzik374b1872005-08-30 05:42:52 -04005664#ifdef CONFIG_PCI
5665
5666void ata_pci_host_stop (struct ata_host_set *host_set)
5667{
5668 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5669
5670 pci_iounmap(pdev, host_set->mmio_base);
5671}
5672
Edward Falk0baab862005-06-02 18:17:13 -04005673/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674 * ata_pci_remove_one - PCI layer callback for device removal
5675 * @pdev: PCI device that was removed
5676 *
5677 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005678 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679 * Handle this by unregistering all objects associated
5680 * with this PCI device. Free those objects. Then finally
5681 * release PCI resources and disable device.
5682 *
5683 * LOCKING:
5684 * Inherited from PCI layer (may sleep).
5685 */
5686
5687void ata_pci_remove_one (struct pci_dev *pdev)
5688{
5689 struct device *dev = pci_dev_to_dev(pdev);
5690 struct ata_host_set *host_set = dev_get_drvdata(dev);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005691 struct ata_host_set *host_set2 = host_set->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692
Alan Cox17b14452005-09-15 15:44:00 +01005693 ata_host_set_remove(host_set);
Tejun Heof0eb62b2006-06-12 23:05:38 +09005694 if (host_set2)
5695 ata_host_set_remove(host_set2);
5696
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697 pci_release_regions(pdev);
5698 pci_disable_device(pdev);
5699 dev_set_drvdata(dev, NULL);
5700}
5701
5702/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005703int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704{
5705 unsigned long tmp = 0;
5706
5707 switch (bits->width) {
5708 case 1: {
5709 u8 tmp8 = 0;
5710 pci_read_config_byte(pdev, bits->reg, &tmp8);
5711 tmp = tmp8;
5712 break;
5713 }
5714 case 2: {
5715 u16 tmp16 = 0;
5716 pci_read_config_word(pdev, bits->reg, &tmp16);
5717 tmp = tmp16;
5718 break;
5719 }
5720 case 4: {
5721 u32 tmp32 = 0;
5722 pci_read_config_dword(pdev, bits->reg, &tmp32);
5723 tmp = tmp32;
5724 break;
5725 }
5726
5727 default:
5728 return -EINVAL;
5729 }
5730
5731 tmp &= bits->mask;
5732
5733 return (tmp == bits->val) ? 1 : 0;
5734}
Jens Axboe9b847542006-01-06 09:28:07 +01005735
5736int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5737{
5738 pci_save_state(pdev);
5739 pci_disable_device(pdev);
5740 pci_set_power_state(pdev, PCI_D3hot);
5741 return 0;
5742}
5743
5744int ata_pci_device_resume(struct pci_dev *pdev)
5745{
5746 pci_set_power_state(pdev, PCI_D0);
5747 pci_restore_state(pdev);
5748 pci_enable_device(pdev);
5749 pci_set_master(pdev);
5750 return 0;
5751}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752#endif /* CONFIG_PCI */
5753
5754
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755static int __init ata_init(void)
5756{
Andrew Mortona8601e52006-06-25 01:36:52 -07005757 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758 ata_wq = create_workqueue("ata");
5759 if (!ata_wq)
5760 return -ENOMEM;
5761
Tejun Heo453b07a2006-05-31 18:27:42 +09005762 ata_aux_wq = create_singlethread_workqueue("ata_aux");
5763 if (!ata_aux_wq) {
5764 destroy_workqueue(ata_wq);
5765 return -ENOMEM;
5766 }
5767
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5769 return 0;
5770}
5771
5772static void __exit ata_exit(void)
5773{
5774 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09005775 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776}
5777
5778module_init(ata_init);
5779module_exit(ata_exit);
5780
Jeff Garzik67846b32005-10-05 02:58:32 -04005781static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07005782static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04005783
5784int ata_ratelimit(void)
5785{
5786 int rc;
5787 unsigned long flags;
5788
5789 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5790
5791 if (time_after(jiffies, ratelimit_time)) {
5792 rc = 1;
5793 ratelimit_time = jiffies + (HZ/5);
5794 } else
5795 rc = 0;
5796
5797 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5798
5799 return rc;
5800}
5801
Tejun Heoc22daff2006-04-11 22:22:29 +09005802/**
5803 * ata_wait_register - wait until register value changes
5804 * @reg: IO-mapped register
5805 * @mask: Mask to apply to read register value
5806 * @val: Wait condition
5807 * @interval_msec: polling interval in milliseconds
5808 * @timeout_msec: timeout in milliseconds
5809 *
5810 * Waiting for some bits of register to change is a common
5811 * operation for ATA controllers. This function reads 32bit LE
5812 * IO-mapped register @reg and tests for the following condition.
5813 *
5814 * (*@reg & mask) != val
5815 *
5816 * If the condition is met, it returns; otherwise, the process is
5817 * repeated after @interval_msec until timeout.
5818 *
5819 * LOCKING:
5820 * Kernel thread context (may sleep)
5821 *
5822 * RETURNS:
5823 * The final register value.
5824 */
5825u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5826 unsigned long interval_msec,
5827 unsigned long timeout_msec)
5828{
5829 unsigned long timeout;
5830 u32 tmp;
5831
5832 tmp = ioread32(reg);
5833
5834 /* Calculate timeout _after_ the first read to make sure
5835 * preceding writes reach the controller before starting to
5836 * eat away the timeout.
5837 */
5838 timeout = jiffies + (timeout_msec * HZ) / 1000;
5839
5840 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5841 msleep(interval_msec);
5842 tmp = ioread32(reg);
5843 }
5844
5845 return tmp;
5846}
5847
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848/*
5849 * libata is essentially a library of internal helper functions for
5850 * low-level ATA host controller drivers. As such, the API/ABI is
5851 * likely to change as new drivers are added and updated.
5852 * Do not depend on ABI/API stability.
5853 */
5854
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005855EXPORT_SYMBOL_GPL(sata_deb_timing_boot);
5856EXPORT_SYMBOL_GPL(sata_deb_timing_eh);
5857EXPORT_SYMBOL_GPL(sata_deb_timing_before_fsrst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858EXPORT_SYMBOL_GPL(ata_std_bios_param);
5859EXPORT_SYMBOL_GPL(ata_std_ports);
5860EXPORT_SYMBOL_GPL(ata_device_add);
Tejun Heo720ba122006-05-31 18:28:13 +09005861EXPORT_SYMBOL_GPL(ata_port_detach);
Alan Cox17b14452005-09-15 15:44:00 +01005862EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863EXPORT_SYMBOL_GPL(ata_sg_init);
5864EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09005865EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09005866EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005867EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869EXPORT_SYMBOL_GPL(ata_tf_load);
5870EXPORT_SYMBOL_GPL(ata_tf_read);
5871EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5872EXPORT_SYMBOL_GPL(ata_std_dev_select);
5873EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5874EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5875EXPORT_SYMBOL_GPL(ata_check_status);
5876EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877EXPORT_SYMBOL_GPL(ata_exec_command);
5878EXPORT_SYMBOL_GPL(ata_port_start);
5879EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005880EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881EXPORT_SYMBOL_GPL(ata_interrupt);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005882EXPORT_SYMBOL_GPL(ata_mmio_data_xfer);
5883EXPORT_SYMBOL_GPL(ata_pio_data_xfer);
Alan Cox75e99582006-05-24 14:14:41 +01005884EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005886EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5888EXPORT_SYMBOL_GPL(ata_bmdma_start);
5889EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5890EXPORT_SYMBOL_GPL(ata_bmdma_status);
5891EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09005892EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
5893EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
5894EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
5895EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
5896EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005898EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09005899EXPORT_SYMBOL_GPL(sata_phy_debounce);
5900EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901EXPORT_SYMBOL_GPL(sata_phy_reset);
5902EXPORT_SYMBOL_GPL(__sata_phy_reset);
5903EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09005904EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005905EXPORT_SYMBOL_GPL(ata_std_softreset);
5906EXPORT_SYMBOL_GPL(sata_std_hardreset);
5907EXPORT_SYMBOL_GPL(ata_std_postreset);
Tejun Heo623a3122006-03-05 17:55:58 +09005908EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005909EXPORT_SYMBOL_GPL(ata_dev_classify);
5910EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005912EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005913EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005914EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005915EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5917EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09005919EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09005920EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921EXPORT_SYMBOL_GPL(ata_scsi_release);
5922EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005923EXPORT_SYMBOL_GPL(sata_scr_valid);
5924EXPORT_SYMBOL_GPL(sata_scr_read);
5925EXPORT_SYMBOL_GPL(sata_scr_write);
5926EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5927EXPORT_SYMBOL_GPL(ata_port_online);
5928EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005929EXPORT_SYMBOL_GPL(ata_id_string);
5930EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5932
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005933EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005934EXPORT_SYMBOL_GPL(ata_timing_compute);
5935EXPORT_SYMBOL_GPL(ata_timing_merge);
5936
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937#ifdef CONFIG_PCI
5938EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005939EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5941EXPORT_SYMBOL_GPL(ata_pci_init_one);
5942EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005943EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5944EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005945EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5946EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005948
5949EXPORT_SYMBOL_GPL(ata_device_suspend);
5950EXPORT_SYMBOL_GPL(ata_device_resume);
5951EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5952EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005953
Tejun Heoece1d632006-04-02 18:51:53 +09005954EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005955EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5956EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09005957EXPORT_SYMBOL_GPL(ata_port_freeze);
5958EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
5959EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09005960EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5961EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09005962EXPORT_SYMBOL_GPL(ata_do_eh);