blob: 13bce43f1915789abc70d32369d7379371a5308f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include <linux/config.h>
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/pci.h>
39#include <linux/init.h>
40#include <linux/list.h>
41#include <linux/mm.h>
42#include <linux/highmem.h>
43#include <linux/spinlock.h>
44#include <linux/blkdev.h>
45#include <linux/delay.h>
46#include <linux/timer.h>
47#include <linux/interrupt.h>
48#include <linux/completion.h>
49#include <linux/suspend.h>
50#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040051#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100052#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_host.h>
57#include <linux/libata.h>
58#include <asm/io.h>
59#include <asm/semaphore.h>
60#include <asm/byteorder.h>
61
62#include "libata.h"
63
Tejun Heo6aff8f12006-02-15 18:24:09 +090064static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +080065 struct ata_device *dev,
66 u16 heads,
67 u16 sectors);
Tejun Heo83206a22006-03-24 15:25:31 +090068static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
69 struct ata_device *dev);
Tejun Heoacf356b2006-03-24 14:07:50 +090070static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72static unsigned int ata_unique_id = 1;
73static struct workqueue_struct *ata_wq;
74
Jeff Garzik418dc1f2006-03-11 20:50:08 -050075int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040076module_param(atapi_enabled, int, 0444);
77MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
78
Albert Lee95de7192006-04-04 10:57:18 +080079int atapi_dmadir = 0;
80module_param(atapi_dmadir, int, 0444);
81MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
82
Jeff Garzikc3c013a2006-02-27 22:31:19 -050083int libata_fua = 0;
84module_param_named(fua, libata_fua, int, 0444);
85MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087MODULE_AUTHOR("Jeff Garzik");
88MODULE_DESCRIPTION("Library module for ATA devices");
89MODULE_LICENSE("GPL");
90MODULE_VERSION(DRV_VERSION);
91
Edward Falk0baab862005-06-02 18:17:13 -040092
93/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
95 * @tf: Taskfile to convert
96 * @fis: Buffer into which data will output
97 * @pmp: Port multiplier port
98 *
99 * Converts a standard ATA taskfile to a Serial ATA
100 * FIS structure (Register - Host to Device).
101 *
102 * LOCKING:
103 * Inherited from caller.
104 */
105
Jeff Garzik057ace52005-10-22 14:27:05 -0400106void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 fis[0] = 0x27; /* Register - Host to Device FIS */
109 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
110 bit 7 indicates Command FIS */
111 fis[2] = tf->command;
112 fis[3] = tf->feature;
113
114 fis[4] = tf->lbal;
115 fis[5] = tf->lbam;
116 fis[6] = tf->lbah;
117 fis[7] = tf->device;
118
119 fis[8] = tf->hob_lbal;
120 fis[9] = tf->hob_lbam;
121 fis[10] = tf->hob_lbah;
122 fis[11] = tf->hob_feature;
123
124 fis[12] = tf->nsect;
125 fis[13] = tf->hob_nsect;
126 fis[14] = 0;
127 fis[15] = tf->ctl;
128
129 fis[16] = 0;
130 fis[17] = 0;
131 fis[18] = 0;
132 fis[19] = 0;
133}
134
135/**
136 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
137 * @fis: Buffer from which data will be input
138 * @tf: Taskfile to output
139 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500140 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 *
142 * LOCKING:
143 * Inherited from caller.
144 */
145
Jeff Garzik057ace52005-10-22 14:27:05 -0400146void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 tf->command = fis[2]; /* status */
149 tf->feature = fis[3]; /* error */
150
151 tf->lbal = fis[4];
152 tf->lbam = fis[5];
153 tf->lbah = fis[6];
154 tf->device = fis[7];
155
156 tf->hob_lbal = fis[8];
157 tf->hob_lbam = fis[9];
158 tf->hob_lbah = fis[10];
159
160 tf->nsect = fis[12];
161 tf->hob_nsect = fis[13];
162}
163
Albert Lee8cbd6df2005-10-12 15:06:27 +0800164static const u8 ata_rw_cmds[] = {
165 /* pio multi */
166 ATA_CMD_READ_MULTI,
167 ATA_CMD_WRITE_MULTI,
168 ATA_CMD_READ_MULTI_EXT,
169 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100170 0,
171 0,
172 0,
173 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800174 /* pio */
175 ATA_CMD_PIO_READ,
176 ATA_CMD_PIO_WRITE,
177 ATA_CMD_PIO_READ_EXT,
178 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100179 0,
180 0,
181 0,
182 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800183 /* dma */
184 ATA_CMD_READ,
185 ATA_CMD_WRITE,
186 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100187 ATA_CMD_WRITE_EXT,
188 0,
189 0,
190 0,
191 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800192};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800195 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
196 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500198 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800199 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 *
201 * LOCKING:
202 * caller.
203 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100204int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800206 struct ata_taskfile *tf = &qc->tf;
207 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100208 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100210 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500211
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100212 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800213 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
214 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Albert Lee8cbd6df2005-10-12 15:06:27 +0800216 if (dev->flags & ATA_DFLAG_PIO) {
217 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100218 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000219 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
220 /* Unable to use DMA due to host limitation */
221 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800222 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800223 } else {
224 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100225 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100228 cmd = ata_rw_cmds[index + fua + lba48 + write];
229 if (cmd) {
230 tf->command = cmd;
231 return 0;
232 }
233 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Tejun Heocb95d562006-03-06 04:31:56 +0900236/**
237 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
238 * @pio_mask: pio_mask
239 * @mwdma_mask: mwdma_mask
240 * @udma_mask: udma_mask
241 *
242 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
243 * unsigned int xfer_mask.
244 *
245 * LOCKING:
246 * None.
247 *
248 * RETURNS:
249 * Packed xfer_mask.
250 */
251static unsigned int ata_pack_xfermask(unsigned int pio_mask,
252 unsigned int mwdma_mask,
253 unsigned int udma_mask)
254{
255 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
256 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
257 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
258}
259
Tejun Heoc0489e42006-03-24 14:07:49 +0900260/**
261 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
262 * @xfer_mask: xfer_mask to unpack
263 * @pio_mask: resulting pio_mask
264 * @mwdma_mask: resulting mwdma_mask
265 * @udma_mask: resulting udma_mask
266 *
267 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
268 * Any NULL distination masks will be ignored.
269 */
270static void ata_unpack_xfermask(unsigned int xfer_mask,
271 unsigned int *pio_mask,
272 unsigned int *mwdma_mask,
273 unsigned int *udma_mask)
274{
275 if (pio_mask)
276 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
277 if (mwdma_mask)
278 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
279 if (udma_mask)
280 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
281}
282
Tejun Heocb95d562006-03-06 04:31:56 +0900283static const struct ata_xfer_ent {
Tejun Heobe9a50c82006-03-31 22:48:52 +0900284 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900285 u8 base;
286} ata_xfer_tbl[] = {
287 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
288 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
289 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
290 { -1, },
291};
292
293/**
294 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
295 * @xfer_mask: xfer_mask of interest
296 *
297 * Return matching XFER_* value for @xfer_mask. Only the highest
298 * bit of @xfer_mask is considered.
299 *
300 * LOCKING:
301 * None.
302 *
303 * RETURNS:
304 * Matching XFER_* value, 0 if no match found.
305 */
306static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
307{
308 int highbit = fls(xfer_mask) - 1;
309 const struct ata_xfer_ent *ent;
310
311 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
312 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
313 return ent->base + highbit - ent->shift;
314 return 0;
315}
316
317/**
318 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
319 * @xfer_mode: XFER_* of interest
320 *
321 * Return matching xfer_mask for @xfer_mode.
322 *
323 * LOCKING:
324 * None.
325 *
326 * RETURNS:
327 * Matching xfer_mask, 0 if no match found.
328 */
329static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
330{
331 const struct ata_xfer_ent *ent;
332
333 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
334 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
335 return 1 << (ent->shift + xfer_mode - ent->base);
336 return 0;
337}
338
339/**
340 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
341 * @xfer_mode: XFER_* of interest
342 *
343 * Return matching xfer_shift for @xfer_mode.
344 *
345 * LOCKING:
346 * None.
347 *
348 * RETURNS:
349 * Matching xfer_shift, -1 if no match found.
350 */
351static int ata_xfer_mode2shift(unsigned int xfer_mode)
352{
353 const struct ata_xfer_ent *ent;
354
355 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
356 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
357 return ent->shift;
358 return -1;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900362 * ata_mode_string - convert xfer_mask to string
363 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *
365 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900366 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
368 * LOCKING:
369 * None.
370 *
371 * RETURNS:
372 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900373 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900375static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Tejun Heo75f554b2006-03-06 04:31:57 +0900377 static const char * const xfer_mode_str[] = {
378 "PIO0",
379 "PIO1",
380 "PIO2",
381 "PIO3",
382 "PIO4",
383 "MWDMA0",
384 "MWDMA1",
385 "MWDMA2",
386 "UDMA/16",
387 "UDMA/25",
388 "UDMA/33",
389 "UDMA/44",
390 "UDMA/66",
391 "UDMA/100",
392 "UDMA/133",
393 "UDMA7",
394 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900395 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900397 highbit = fls(xfer_mask) - 1;
398 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
399 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Tejun Heo4c360c82006-04-01 01:38:17 +0900403static const char *sata_spd_string(unsigned int spd)
404{
405 static const char * const spd_str[] = {
406 "1.5 Gbps",
407 "3.0 Gbps",
408 };
409
410 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
411 return "<unknown>";
412 return spd_str[spd - 1];
413}
414
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900415void ata_dev_disable(struct ata_port *ap, struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900416{
Tejun Heoe1211e32006-04-01 01:38:18 +0900417 if (ata_dev_enabled(dev)) {
Tejun Heo0b8efb02006-03-24 15:25:31 +0900418 printk(KERN_WARNING "ata%u: dev %u disabled\n",
419 ap->id, dev->devno);
420 dev->class++;
421 }
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/**
425 * ata_pio_devchk - PATA device presence detection
426 * @ap: ATA channel to examine
427 * @device: Device to examine (starting at zero)
428 *
429 * This technique was originally described in
430 * Hale Landis's ATADRVR (www.ata-atapi.com), and
431 * later found its way into the ATA/ATAPI spec.
432 *
433 * Write a pattern to the ATA shadow registers,
434 * and if a device is present, it will respond by
435 * correctly storing and echoing back the
436 * ATA shadow register contents.
437 *
438 * LOCKING:
439 * caller.
440 */
441
442static unsigned int ata_pio_devchk(struct ata_port *ap,
443 unsigned int device)
444{
445 struct ata_ioports *ioaddr = &ap->ioaddr;
446 u8 nsect, lbal;
447
448 ap->ops->dev_select(ap, device);
449
450 outb(0x55, ioaddr->nsect_addr);
451 outb(0xaa, ioaddr->lbal_addr);
452
453 outb(0xaa, ioaddr->nsect_addr);
454 outb(0x55, ioaddr->lbal_addr);
455
456 outb(0x55, ioaddr->nsect_addr);
457 outb(0xaa, ioaddr->lbal_addr);
458
459 nsect = inb(ioaddr->nsect_addr);
460 lbal = inb(ioaddr->lbal_addr);
461
462 if ((nsect == 0x55) && (lbal == 0xaa))
463 return 1; /* we found a device */
464
465 return 0; /* nothing found */
466}
467
468/**
469 * ata_mmio_devchk - PATA device presence detection
470 * @ap: ATA channel to examine
471 * @device: Device to examine (starting at zero)
472 *
473 * This technique was originally described in
474 * Hale Landis's ATADRVR (www.ata-atapi.com), and
475 * later found its way into the ATA/ATAPI spec.
476 *
477 * Write a pattern to the ATA shadow registers,
478 * and if a device is present, it will respond by
479 * correctly storing and echoing back the
480 * ATA shadow register contents.
481 *
482 * LOCKING:
483 * caller.
484 */
485
486static unsigned int ata_mmio_devchk(struct ata_port *ap,
487 unsigned int device)
488{
489 struct ata_ioports *ioaddr = &ap->ioaddr;
490 u8 nsect, lbal;
491
492 ap->ops->dev_select(ap, device);
493
494 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
495 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
496
497 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
498 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
499
500 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
501 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
502
503 nsect = readb((void __iomem *) ioaddr->nsect_addr);
504 lbal = readb((void __iomem *) ioaddr->lbal_addr);
505
506 if ((nsect == 0x55) && (lbal == 0xaa))
507 return 1; /* we found a device */
508
509 return 0; /* nothing found */
510}
511
512/**
513 * ata_devchk - PATA device presence detection
514 * @ap: ATA channel to examine
515 * @device: Device to examine (starting at zero)
516 *
517 * Dispatch ATA device presence detection, depending
518 * on whether we are using PIO or MMIO to talk to the
519 * ATA shadow registers.
520 *
521 * LOCKING:
522 * caller.
523 */
524
525static unsigned int ata_devchk(struct ata_port *ap,
526 unsigned int device)
527{
528 if (ap->flags & ATA_FLAG_MMIO)
529 return ata_mmio_devchk(ap, device);
530 return ata_pio_devchk(ap, device);
531}
532
533/**
534 * ata_dev_classify - determine device type based on ATA-spec signature
535 * @tf: ATA taskfile register set for device to be identified
536 *
537 * Determine from taskfile register contents whether a device is
538 * ATA or ATAPI, as per "Signature and persistence" section
539 * of ATA/PI spec (volume 1, sect 5.14).
540 *
541 * LOCKING:
542 * None.
543 *
544 * RETURNS:
545 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
546 * the event of failure.
547 */
548
Jeff Garzik057ace52005-10-22 14:27:05 -0400549unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 /* Apple's open source Darwin code hints that some devices only
552 * put a proper signature into the LBA mid/high registers,
553 * So, we only check those. It's sufficient for uniqueness.
554 */
555
556 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
557 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
558 DPRINTK("found ATA device by sig\n");
559 return ATA_DEV_ATA;
560 }
561
562 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
563 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
564 DPRINTK("found ATAPI device by sig\n");
565 return ATA_DEV_ATAPI;
566 }
567
568 DPRINTK("unknown device\n");
569 return ATA_DEV_UNKNOWN;
570}
571
572/**
573 * ata_dev_try_classify - Parse returned ATA device signature
574 * @ap: ATA channel to examine
575 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900576 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 *
578 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
579 * an ATA/ATAPI-defined set of values is placed in the ATA
580 * shadow registers, indicating the results of device detection
581 * and diagnostics.
582 *
583 * Select the ATA device, and read the values from the ATA shadow
584 * registers. Then parse according to the Error register value,
585 * and the spec-defined values examined by ata_dev_classify().
586 *
587 * LOCKING:
588 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900589 *
590 * RETURNS:
591 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
593
Tejun Heob4dc7622006-01-24 17:05:22 +0900594static unsigned int
595ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 struct ata_taskfile tf;
598 unsigned int class;
599 u8 err;
600
601 ap->ops->dev_select(ap, device);
602
603 memset(&tf, 0, sizeof(tf));
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400606 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900607 if (r_err)
608 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /* see if device passed diags */
611 if (err == 1)
612 /* do nothing */ ;
613 else if ((device == 0) && (err == 0x81))
614 /* do nothing */ ;
615 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900616 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Tejun Heob4dc7622006-01-24 17:05:22 +0900618 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900622 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900624 return ATA_DEV_NONE;
625 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900629 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 * @id: IDENTIFY DEVICE results we will examine
631 * @s: string into which data is output
632 * @ofs: offset into identify device page
633 * @len: length of string to return. must be an even number.
634 *
635 * The strings in the IDENTIFY DEVICE page are broken up into
636 * 16-bit chunks. Run through the string, and output each
637 * 8-bit chunk linearly, regardless of platform.
638 *
639 * LOCKING:
640 * caller.
641 */
642
Tejun Heo6a62a042006-02-13 10:02:46 +0900643void ata_id_string(const u16 *id, unsigned char *s,
644 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 unsigned int c;
647
648 while (len > 0) {
649 c = id[ofs] >> 8;
650 *s = c;
651 s++;
652
653 c = id[ofs] & 0xff;
654 *s = c;
655 s++;
656
657 ofs++;
658 len -= 2;
659 }
660}
661
Tejun Heo0e949ff2006-02-12 22:47:04 +0900662/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900663 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900664 * @id: IDENTIFY DEVICE results we will examine
665 * @s: string into which data is output
666 * @ofs: offset into identify device page
667 * @len: length of string to return. must be an odd number.
668 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900669 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900670 * trims trailing spaces and terminates the resulting string with
671 * null. @len must be actual maximum length (even number) + 1.
672 *
673 * LOCKING:
674 * caller.
675 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900676void ata_id_c_string(const u16 *id, unsigned char *s,
677 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900678{
679 unsigned char *p;
680
681 WARN_ON(!(len & 1));
682
Tejun Heo6a62a042006-02-13 10:02:46 +0900683 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900684
685 p = s + strnlen(s, len - 1);
686 while (p > s && p[-1] == ' ')
687 p--;
688 *p = '\0';
689}
Edward Falk0baab862005-06-02 18:17:13 -0400690
Tejun Heo29407402006-02-12 22:47:04 +0900691static u64 ata_id_n_sectors(const u16 *id)
692{
693 if (ata_id_has_lba(id)) {
694 if (ata_id_has_lba48(id))
695 return ata_id_u64(id, 100);
696 else
697 return ata_id_u32(id, 60);
698 } else {
699 if (ata_id_current_chs_valid(id))
700 return ata_id_u32(id, 57);
701 else
702 return id[1] * id[3] * id[6];
703 }
704}
705
Edward Falk0baab862005-06-02 18:17:13 -0400706/**
707 * ata_noop_dev_select - Select device 0/1 on ATA bus
708 * @ap: ATA channel to manipulate
709 * @device: ATA device (numbered from zero) to select
710 *
711 * This function performs no actual function.
712 *
713 * May be used as the dev_select() entry in ata_port_operations.
714 *
715 * LOCKING:
716 * caller.
717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
719{
720}
721
Edward Falk0baab862005-06-02 18:17:13 -0400722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723/**
724 * ata_std_dev_select - Select device 0/1 on ATA bus
725 * @ap: ATA channel to manipulate
726 * @device: ATA device (numbered from zero) to select
727 *
728 * Use the method defined in the ATA specification to
729 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400730 * ATA channel. Works with both PIO and MMIO.
731 *
732 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 *
734 * LOCKING:
735 * caller.
736 */
737
738void ata_std_dev_select (struct ata_port *ap, unsigned int device)
739{
740 u8 tmp;
741
742 if (device == 0)
743 tmp = ATA_DEVICE_OBS;
744 else
745 tmp = ATA_DEVICE_OBS | ATA_DEV1;
746
747 if (ap->flags & ATA_FLAG_MMIO) {
748 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
749 } else {
750 outb(tmp, ap->ioaddr.device_addr);
751 }
752 ata_pause(ap); /* needed; also flushes, for mmio */
753}
754
755/**
756 * ata_dev_select - Select device 0/1 on ATA bus
757 * @ap: ATA channel to manipulate
758 * @device: ATA device (numbered from zero) to select
759 * @wait: non-zero to wait for Status register BSY bit to clear
760 * @can_sleep: non-zero if context allows sleeping
761 *
762 * Use the method defined in the ATA specification to
763 * make either device 0, or device 1, active on the
764 * ATA channel.
765 *
766 * This is a high-level version of ata_std_dev_select(),
767 * which additionally provides the services of inserting
768 * the proper pauses and status polling, where needed.
769 *
770 * LOCKING:
771 * caller.
772 */
773
774void ata_dev_select(struct ata_port *ap, unsigned int device,
775 unsigned int wait, unsigned int can_sleep)
776{
777 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
778 ap->id, device, wait);
779
780 if (wait)
781 ata_wait_idle(ap);
782
783 ap->ops->dev_select(ap, device);
784
785 if (wait) {
786 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
787 msleep(150);
788 ata_wait_idle(ap);
789 }
790}
791
792/**
793 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900794 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900796 * Dump selected 16-bit words from the given IDENTIFY DEVICE
797 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 *
799 * LOCKING:
800 * caller.
801 */
802
Tejun Heo0bd33002006-02-12 22:47:05 +0900803static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 DPRINTK("49==0x%04x "
806 "53==0x%04x "
807 "63==0x%04x "
808 "64==0x%04x "
809 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900810 id[49],
811 id[53],
812 id[63],
813 id[64],
814 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 DPRINTK("80==0x%04x "
816 "81==0x%04x "
817 "82==0x%04x "
818 "83==0x%04x "
819 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900820 id[80],
821 id[81],
822 id[82],
823 id[83],
824 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 DPRINTK("88==0x%04x "
826 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900827 id[88],
828 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
Tejun Heocb95d562006-03-06 04:31:56 +0900831/**
832 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
833 * @id: IDENTIFY data to compute xfer mask from
834 *
835 * Compute the xfermask for this device. This is not as trivial
836 * as it seems if we must consider early devices correctly.
837 *
838 * FIXME: pre IDE drive timing (do we care ?).
839 *
840 * LOCKING:
841 * None.
842 *
843 * RETURNS:
844 * Computed xfermask
845 */
846static unsigned int ata_id_xfermask(const u16 *id)
847{
848 unsigned int pio_mask, mwdma_mask, udma_mask;
849
850 /* Usual case. Word 53 indicates word 64 is valid */
851 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
852 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
853 pio_mask <<= 3;
854 pio_mask |= 0x7;
855 } else {
856 /* If word 64 isn't valid then Word 51 high byte holds
857 * the PIO timing number for the maximum. Turn it into
858 * a mask.
859 */
860 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
861
862 /* But wait.. there's more. Design your standards by
863 * committee and you too can get a free iordy field to
864 * process. However its the speeds not the modes that
865 * are supported... Note drivers using the timing API
866 * will get this right anyway
867 */
868 }
869
870 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900871
872 udma_mask = 0;
873 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
874 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900875
876 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
877}
878
Tejun Heo86e45b62006-03-05 15:29:09 +0900879/**
880 * ata_port_queue_task - Queue port_task
881 * @ap: The ata_port to queue port_task for
882 *
883 * Schedule @fn(@data) for execution after @delay jiffies using
884 * port_task. There is one port_task per port and it's the
885 * user(low level driver)'s responsibility to make sure that only
886 * one task is active at any given time.
887 *
888 * libata core layer takes care of synchronization between
889 * port_task and EH. ata_port_queue_task() may be ignored for EH
890 * synchronization.
891 *
892 * LOCKING:
893 * Inherited from caller.
894 */
895void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
896 unsigned long delay)
897{
898 int rc;
899
Tejun Heo2e755f62006-03-05 15:29:09 +0900900 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900901 return;
902
903 PREPARE_WORK(&ap->port_task, fn, data);
904
905 if (!delay)
906 rc = queue_work(ata_wq, &ap->port_task);
907 else
908 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
909
910 /* rc == 0 means that another user is using port task */
911 WARN_ON(rc == 0);
912}
913
914/**
915 * ata_port_flush_task - Flush port_task
916 * @ap: The ata_port to flush port_task for
917 *
918 * After this function completes, port_task is guranteed not to
919 * be running or scheduled.
920 *
921 * LOCKING:
922 * Kernel thread context (may sleep)
923 */
924void ata_port_flush_task(struct ata_port *ap)
925{
926 unsigned long flags;
927
928 DPRINTK("ENTER\n");
929
930 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900931 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900932 spin_unlock_irqrestore(&ap->host_set->lock, flags);
933
934 DPRINTK("flush #1\n");
935 flush_workqueue(ata_wq);
936
937 /*
938 * At this point, if a task is running, it's guaranteed to see
939 * the FLUSH flag; thus, it will never queue pio tasks again.
940 * Cancel and flush.
941 */
942 if (!cancel_delayed_work(&ap->port_task)) {
943 DPRINTK("flush #2\n");
944 flush_workqueue(ata_wq);
945 }
946
947 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900948 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900949 spin_unlock_irqrestore(&ap->host_set->lock, flags);
950
951 DPRINTK("EXIT\n");
952}
953
Tejun Heo77853bf2006-01-23 13:09:36 +0900954void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900955{
Tejun Heo77853bf2006-01-23 13:09:36 +0900956 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900957
Tejun Heo77853bf2006-01-23 13:09:36 +0900958 qc->ap->ops->tf_read(qc->ap, &qc->tf);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900959 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900960}
961
962/**
963 * ata_exec_internal - execute libata internal command
964 * @ap: Port to which the command is sent
965 * @dev: Device to which the command is sent
966 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900967 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900968 * @dma_dir: Data tranfer direction of the command
969 * @buf: Data buffer of the command
970 * @buflen: Length of data buffer
971 *
972 * Executes libata internal command with timeout. @tf contains
973 * command on entry and result on return. Timeout and error
974 * conditions are reported via return value. No recovery action
975 * is taken after a command times out. It's caller's duty to
976 * clean up after timeout.
977 *
978 * LOCKING:
979 * None. Should be called with kernel context, might sleep.
980 */
981
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900982unsigned ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
983 struct ata_taskfile *tf, const u8 *cdb,
984 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900985{
986 u8 command = tf->command;
987 struct ata_queued_cmd *qc;
988 DECLARE_COMPLETION(wait);
989 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900990 unsigned int err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900991
992 spin_lock_irqsave(&ap->host_set->lock, flags);
993
994 qc = ata_qc_new_init(ap, dev);
995 BUG_ON(qc == NULL);
996
997 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +0900998 if (cdb)
999 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001000 qc->dma_dir = dma_dir;
1001 if (dma_dir != DMA_NONE) {
1002 ata_sg_init_one(qc, buf, buflen);
1003 qc->nsect = buflen / ATA_SECT_SIZE;
1004 }
1005
Tejun Heo77853bf2006-01-23 13:09:36 +09001006 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001007 qc->complete_fn = ata_qc_complete_internal;
1008
Tejun Heo8e0e6942006-03-31 20:41:11 +09001009 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001010
1011 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1012
1013 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
Albert Lee41ade502006-03-14 11:19:04 +08001014 ata_port_flush_task(ap);
1015
Tejun Heoa2a7a662005-12-13 14:48:31 +09001016 spin_lock_irqsave(&ap->host_set->lock, flags);
1017
1018 /* We're racing with irq here. If we lose, the
1019 * following test prevents us from completing the qc
1020 * again. If completion irq occurs after here but
1021 * before the caller cleans up, it will result in a
1022 * spurious interrupt. We can live with that.
1023 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001024 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heo11a56d22006-01-23 13:09:36 +09001025 qc->err_mask = AC_ERR_TIMEOUT;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001026 ata_qc_complete(qc);
1027 printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1028 ap->id, command);
1029 }
1030
1031 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1032 }
1033
Tejun Heo15869302006-05-15 20:57:33 +09001034 /* finish up */
1035 spin_lock_irqsave(&ap->host_set->lock, flags);
1036
Tejun Heo77853bf2006-01-23 13:09:36 +09001037 *tf = qc->tf;
1038 err_mask = qc->err_mask;
1039
1040 ata_qc_free(qc);
1041
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001042 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1043 * Until those drivers are fixed, we detect the condition
1044 * here, fail the command with AC_ERR_SYSTEM and reenable the
1045 * port.
1046 *
1047 * Note that this doesn't change any behavior as internal
1048 * command failure results in disabling the device in the
1049 * higher layer for LLDDs without new reset/EH callbacks.
1050 *
1051 * Kill the following code as soon as those drivers are fixed.
1052 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001053 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001054 err_mask |= AC_ERR_SYSTEM;
1055 ata_port_probe(ap);
1056 }
1057
Tejun Heo15869302006-05-15 20:57:33 +09001058 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1059
Tejun Heo77853bf2006-01-23 13:09:36 +09001060 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001061}
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001064 * ata_pio_need_iordy - check if iordy needed
1065 * @adev: ATA device
1066 *
1067 * Check if the current speed of the device requires IORDY. Used
1068 * by various controllers for chip configuration.
1069 */
1070
1071unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1072{
1073 int pio;
1074 int speed = adev->pio_mode - XFER_PIO_0;
1075
1076 if (speed < 2)
1077 return 0;
1078 if (speed > 2)
1079 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001080
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001081 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1082
1083 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1084 pio = adev->id[ATA_ID_EIDE_PIO];
1085 /* Is the speed faster than the drive allows non IORDY ? */
1086 if (pio) {
1087 /* This is cycle times not frequency - watch the logic! */
1088 if (pio > 240) /* PIO2 is 240nS per cycle */
1089 return 1;
1090 return 0;
1091 }
1092 }
1093 return 0;
1094}
1095
1096/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001097 * ata_dev_read_id - Read ID data from the specified device
1098 * @ap: port on which target device resides
1099 * @dev: target device
1100 * @p_class: pointer to class of the target device (may be changed)
1101 * @post_reset: is this read ID post-reset?
Tejun Heod9572b12006-03-01 16:09:35 +09001102 * @p_id: read IDENTIFY page (newly allocated)
Tejun Heo49016ac2006-02-21 02:12:11 +09001103 *
1104 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1105 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001106 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1107 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001108 *
1109 * LOCKING:
1110 * Kernel thread context (may sleep)
1111 *
1112 * RETURNS:
1113 * 0 on success, -errno otherwise.
1114 */
1115static int ata_dev_read_id(struct ata_port *ap, struct ata_device *dev,
Tejun Heod9572b12006-03-01 16:09:35 +09001116 unsigned int *p_class, int post_reset, u16 **p_id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001117{
1118 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001119 struct ata_taskfile tf;
1120 unsigned int err_mask = 0;
Tejun Heod9572b12006-03-01 16:09:35 +09001121 u16 *id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001122 const char *reason;
1123 int rc;
1124
1125 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1126
Tejun Heo49016ac2006-02-21 02:12:11 +09001127 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1128
Tejun Heod9572b12006-03-01 16:09:35 +09001129 id = kmalloc(sizeof(id[0]) * ATA_ID_WORDS, GFP_KERNEL);
1130 if (id == NULL) {
1131 rc = -ENOMEM;
1132 reason = "out of memory";
1133 goto err_out;
1134 }
1135
Tejun Heo49016ac2006-02-21 02:12:11 +09001136 retry:
1137 ata_tf_init(ap, &tf, dev->devno);
1138
1139 switch (class) {
1140 case ATA_DEV_ATA:
1141 tf.command = ATA_CMD_ID_ATA;
1142 break;
1143 case ATA_DEV_ATAPI:
1144 tf.command = ATA_CMD_ID_ATAPI;
1145 break;
1146 default:
1147 rc = -ENODEV;
1148 reason = "unsupported class";
1149 goto err_out;
1150 }
1151
1152 tf.protocol = ATA_PROT_PIO;
1153
Tejun Heod69cf372006-04-02 18:51:53 +09001154 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001155 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001156 if (err_mask) {
1157 rc = -EIO;
1158 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001159 goto err_out;
1160 }
1161
1162 swap_buf_le16(id, ATA_ID_WORDS);
1163
Tejun Heo49016ac2006-02-21 02:12:11 +09001164 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001165 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001166 rc = -EINVAL;
1167 reason = "device reports illegal type";
1168 goto err_out;
1169 }
1170
1171 if (post_reset && class == ATA_DEV_ATA) {
1172 /*
1173 * The exact sequence expected by certain pre-ATA4 drives is:
1174 * SRST RESET
1175 * IDENTIFY
1176 * INITIALIZE DEVICE PARAMETERS
1177 * anything else..
1178 * Some drives were very specific about that exact sequence.
1179 */
1180 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Albert Lee00b6f5e2006-03-27 16:39:18 +08001181 err_mask = ata_dev_init_params(ap, dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001182 if (err_mask) {
1183 rc = -EIO;
1184 reason = "INIT_DEV_PARAMS failed";
1185 goto err_out;
1186 }
1187
1188 /* current CHS translation info (id[53-58]) might be
1189 * changed. reread the identify device info.
1190 */
1191 post_reset = 0;
1192 goto retry;
1193 }
1194 }
1195
1196 *p_class = class;
Tejun Heod9572b12006-03-01 16:09:35 +09001197 *p_id = id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001198 return 0;
1199
1200 err_out:
1201 printk(KERN_WARNING "ata%u: dev %u failed to IDENTIFY (%s)\n",
1202 ap->id, dev->devno, reason);
Tejun Heod9572b12006-03-01 16:09:35 +09001203 kfree(id);
Tejun Heo49016ac2006-02-21 02:12:11 +09001204 return rc;
1205}
1206
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001207static inline u8 ata_dev_knobble(const struct ata_port *ap,
1208 struct ata_device *dev)
1209{
1210 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
1211}
1212
Tejun Heo49016ac2006-02-21 02:12:11 +09001213/**
Tejun Heoffeae412006-03-01 16:09:35 +09001214 * ata_dev_configure - Configure the specified ATA/ATAPI device
1215 * @ap: Port on which target device resides
1216 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001217 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 *
Tejun Heoffeae412006-03-01 16:09:35 +09001219 * Configure @dev according to @dev->id. Generic and low-level
1220 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 *
1222 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001223 * Kernel thread context (may sleep)
1224 *
1225 * RETURNS:
1226 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001228static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev,
1229 int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Tejun Heo1148c3a2006-03-13 19:48:04 +09001231 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001232 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001233 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Tejun Heoe1211e32006-04-01 01:38:18 +09001235 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001237 ap->id, dev->devno);
1238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240
Tejun Heoffeae412006-03-01 16:09:35 +09001241 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001243 /* print device capabilities */
1244 if (print_info)
1245 printk(KERN_DEBUG "ata%u: dev %u cfg 49:%04x 82:%04x 83:%04x "
1246 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1247 ap->id, dev->devno, id[49], id[82], id[83],
1248 id[84], id[85], id[86], id[87], id[88]);
1249
Tejun Heo208a9932006-03-05 17:55:58 +09001250 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001251 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001252 dev->max_sectors = 0;
1253 dev->cdb_len = 0;
1254 dev->n_sectors = 0;
1255 dev->cylinders = 0;
1256 dev->heads = 0;
1257 dev->sectors = 0;
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 /*
1260 * common ATA, ATAPI feature tests
1261 */
1262
Tejun Heoff8854b2006-03-06 04:31:56 +09001263 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001264 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Tejun Heo1148c3a2006-03-13 19:48:04 +09001266 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 /* ATA-specific feature tests */
1269 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001270 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001271
Tejun Heo1148c3a2006-03-13 19:48:04 +09001272 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001273 const char *lba_desc;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001274
Tejun Heo4c2d7212006-03-05 17:55:58 +09001275 lba_desc = "LBA";
1276 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001277 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001278 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001279 lba_desc = "LBA48";
1280 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001281
1282 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001283 if (print_info)
1284 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1285 "max %s, %Lu sectors: %s\n",
1286 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001287 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001288 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001289 (unsigned long long)dev->n_sectors,
1290 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001291 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001292 /* CHS */
1293
1294 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001295 dev->cylinders = id[1];
1296 dev->heads = id[3];
1297 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001298
Tejun Heo1148c3a2006-03-13 19:48:04 +09001299 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001300 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001301 dev->cylinders = id[54];
1302 dev->heads = id[55];
1303 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001304 }
1305
1306 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001307 if (print_info)
1308 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1309 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1310 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001311 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001312 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001313 (unsigned long long)dev->n_sectors,
1314 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
1316
Tejun Heo6e7846e2006-02-12 23:32:58 +09001317 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
1319
1320 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001321 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001322 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1324 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
Tejun Heoffeae412006-03-01 16:09:35 +09001325 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 goto err_out_nosup;
1327 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001328 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001331 if (print_info)
1332 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
Tejun Heoff8854b2006-03-06 04:31:56 +09001333 ap->id, dev->devno, ata_mode_string(xfer_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335
Tejun Heo6e7846e2006-02-12 23:32:58 +09001336 ap->host->max_cmd_len = 0;
1337 for (i = 0; i < ATA_MAX_DEVICES; i++)
1338 ap->host->max_cmd_len = max_t(unsigned int,
1339 ap->host->max_cmd_len,
1340 ap->device[i].cdb_len);
1341
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001342 /* limit bridge transfers to udma5, 200 sectors */
1343 if (ata_dev_knobble(ap, dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001344 if (print_info)
1345 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1346 ap->id, dev->devno);
Tejun Heo5a529132006-03-24 14:07:50 +09001347 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001348 dev->max_sectors = ATA_MAX_SECTORS;
1349 }
1350
1351 if (ap->ops->dev_config)
1352 ap->ops->dev_config(ap, dev);
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001355 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001359 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
1362/**
1363 * ata_bus_probe - Reset and probe ATA bus
1364 * @ap: Bus to probe
1365 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001366 * Master ATA bus probing function. Initiates a hardware-dependent
1367 * bus reset, then attempts to identify any devices found on
1368 * the bus.
1369 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001371 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 *
1373 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001374 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 */
1376
1377static int ata_bus_probe(struct ata_port *ap)
1378{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001379 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001380 int tries[ATA_MAX_DEVICES];
1381 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001382 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Tejun Heo28ca5c52006-03-01 16:09:36 +09001384 ata_port_probe(ap);
1385
Tejun Heo14d2bac2006-04-02 17:54:46 +09001386 for (i = 0; i < ATA_MAX_DEVICES; i++)
1387 tries[i] = ATA_PROBE_MAX_TRIES;
1388
1389 retry:
1390 down_xfermask = 0;
1391
Tejun Heo20444702006-03-13 01:57:01 +09001392 /* reset and determine device classes */
1393 for (i = 0; i < ATA_MAX_DEVICES; i++)
1394 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001395
Tejun Heo20444702006-03-13 01:57:01 +09001396 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001397 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001398 if (rc) {
1399 printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1400 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001401 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001402 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001403 ap->ops->phy_reset(ap);
1404
Tejun Heof8c2c422006-05-15 20:57:30 +09001405 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1406 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo28ca5c52006-03-01 16:09:36 +09001407 classes[i] = ap->device[i].class;
Tejun Heof8c2c422006-05-15 20:57:30 +09001408 ap->device[i].class = ATA_DEV_UNKNOWN;
1409 }
Tejun Heo20444702006-03-13 01:57:01 +09001410
Tejun Heo28ca5c52006-03-01 16:09:36 +09001411 ata_port_probe(ap);
1412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Tejun Heo20444702006-03-13 01:57:01 +09001414 for (i = 0; i < ATA_MAX_DEVICES; i++)
1415 if (classes[i] == ATA_DEV_UNKNOWN)
1416 classes[i] = ATA_DEV_NONE;
1417
Tejun Heo28ca5c52006-03-01 16:09:36 +09001418 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001420 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001421
Tejun Heoec573752006-04-11 22:26:29 +09001422 if (tries[i])
1423 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001424
Tejun Heoe1211e32006-04-01 01:38:18 +09001425 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001426 continue;
1427
Tejun Heo14d2bac2006-04-02 17:54:46 +09001428 kfree(dev->id);
1429 dev->id = NULL;
1430 rc = ata_dev_read_id(ap, dev, &dev->class, 1, &dev->id);
1431 if (rc)
1432 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001433
Tejun Heo14d2bac2006-04-02 17:54:46 +09001434 rc = ata_dev_configure(ap, dev, 1);
1435 if (rc)
1436 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001439 /* configure transfer mode */
1440 if (ap->ops->set_mode) {
1441 /* FIXME: make ->set_mode handle no device case and
1442 * return error code and failing device on failure as
1443 * ata_set_mode() does.
1444 */
Tejun Heo14d2bac2006-04-02 17:54:46 +09001445 for (i = 0; i < ATA_MAX_DEVICES; i++)
1446 if (ata_dev_enabled(&ap->device[i])) {
1447 ap->ops->set_mode(ap);
1448 break;
1449 }
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001450 rc = 0;
Tejun Heo51713d32006-04-11 22:26:29 +09001451 } else
Tejun Heo14d2bac2006-04-02 17:54:46 +09001452 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001453
1454 if (rc) {
1455 down_xfermask = 1;
1456 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001459 for (i = 0; i < ATA_MAX_DEVICES; i++)
1460 if (ata_dev_enabled(&ap->device[i]))
1461 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001462
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001463 /* no device present, disable port */
1464 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001466 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001467
1468 fail:
1469 switch (rc) {
1470 case -EINVAL:
1471 case -ENODEV:
1472 tries[dev->devno] = 0;
1473 break;
1474 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001475 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001476 /* fall through */
1477 default:
1478 tries[dev->devno]--;
1479 if (down_xfermask &&
1480 ata_down_xfermask_limit(ap, dev, tries[dev->devno] == 1))
1481 tries[dev->devno] = 0;
1482 }
1483
Tejun Heoec573752006-04-11 22:26:29 +09001484 if (!tries[dev->devno]) {
1485 ata_down_xfermask_limit(ap, dev, 1);
1486 ata_dev_disable(ap, dev);
1487 }
1488
Tejun Heo14d2bac2006-04-02 17:54:46 +09001489 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
1492/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001493 * ata_port_probe - Mark port as enabled
1494 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001496 * Modify @ap data structure such that the system
1497 * thinks that the entire port is enabled.
1498 *
1499 * LOCKING: host_set lock, or some other form of
1500 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 */
1502
1503void ata_port_probe(struct ata_port *ap)
1504{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001505 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
1508/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001509 * sata_print_link_status - Print SATA link status
1510 * @ap: SATA port to printk link status about
1511 *
1512 * This function prints link speed and status of a SATA link.
1513 *
1514 * LOCKING:
1515 * None.
1516 */
1517static void sata_print_link_status(struct ata_port *ap)
1518{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001519 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001520
1521 if (!ap->ops->scr_read)
1522 return;
1523
1524 sstatus = scr_read(ap, SCR_STATUS);
Tejun Heo6d5f9732006-04-03 00:09:41 +09001525 scontrol = scr_read(ap, SCR_CONTROL);
Tejun Heo3be680b2005-12-19 22:35:02 +09001526
1527 if (sata_dev_present(ap)) {
1528 tmp = (sstatus >> 4) & 0xf;
Tejun Heo6d5f9732006-04-03 00:09:41 +09001529 printk(KERN_INFO
1530 "ata%u: SATA link up %s (SStatus %X SControl %X)\n",
1531 ap->id, sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001532 } else {
Tejun Heo6d5f9732006-04-03 00:09:41 +09001533 printk(KERN_INFO
1534 "ata%u: SATA link down (SStatus %X SControl %X)\n",
1535 ap->id, sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001536 }
1537}
1538
1539/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001540 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1541 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001543 * This function issues commands to standard SATA Sxxx
1544 * PHY registers, to wake up the phy (and device), and
1545 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 *
1547 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001548 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 *
1550 */
1551void __sata_phy_reset(struct ata_port *ap)
1552{
1553 u32 sstatus;
1554 unsigned long timeout = jiffies + (HZ * 5);
1555
1556 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001557 /* issue phy wake/reset */
1558 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001559 /* Couldn't find anything in SATA I/II specs, but
1560 * AHCI-1.1 10.4.2 says at least 1 ms. */
1561 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
Brett Russcdcca892005-03-28 15:10:27 -05001563 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 /* wait for phy to become ready, if necessary */
1566 do {
1567 msleep(200);
1568 sstatus = scr_read(ap, SCR_STATUS);
1569 if ((sstatus & 0xf) != 1)
1570 break;
1571 } while (time_before(jiffies, timeout));
1572
Tejun Heo3be680b2005-12-19 22:35:02 +09001573 /* print link status */
1574 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001575
Tejun Heo3be680b2005-12-19 22:35:02 +09001576 /* TODO: phy layer with polling, timeouts, etc. */
1577 if (sata_dev_present(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001579 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Tejun Heo198e0fe2006-04-02 18:51:52 +09001582 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return;
1584
1585 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1586 ata_port_disable(ap);
1587 return;
1588 }
1589
1590 ap->cbl = ATA_CBL_SATA;
1591}
1592
1593/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001594 * sata_phy_reset - Reset SATA bus.
1595 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001597 * This function resets the SATA bus, and then probes
1598 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 *
1600 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001601 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 *
1603 */
1604void sata_phy_reset(struct ata_port *ap)
1605{
1606 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001607 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return;
1609 ata_bus_reset(ap);
1610}
1611
1612/**
Alan Coxebdfca62006-03-23 15:38:34 +00001613 * ata_dev_pair - return other device on cable
1614 * @ap: port
1615 * @adev: device
1616 *
1617 * Obtain the other device on the same cable, or if none is
1618 * present NULL is returned
1619 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001620
Alan Coxebdfca62006-03-23 15:38:34 +00001621struct ata_device *ata_dev_pair(struct ata_port *ap, struct ata_device *adev)
1622{
1623 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001624 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001625 return NULL;
1626 return pair;
1627}
1628
1629/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001630 * ata_port_disable - Disable port.
1631 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001633 * Modify @ap data structure such that the system
1634 * thinks that the entire port is disabled, and should
1635 * never attempt to probe or communicate with devices
1636 * on this port.
1637 *
1638 * LOCKING: host_set lock, or some other form of
1639 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 */
1641
1642void ata_port_disable(struct ata_port *ap)
1643{
1644 ap->device[0].class = ATA_DEV_NONE;
1645 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001646 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647}
1648
Tejun Heo1c3fae42006-04-02 20:53:28 +09001649/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001650 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001651 * @ap: Port to adjust SATA spd limit for
1652 *
1653 * Adjust SATA spd limit of @ap downward. Note that this
1654 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001655 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001656 *
1657 * LOCKING:
1658 * Inherited from caller.
1659 *
1660 * RETURNS:
1661 * 0 on success, negative errno on failure
1662 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001663int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001664{
1665 u32 spd, mask;
1666 int highbit;
1667
1668 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1669 return -EOPNOTSUPP;
1670
1671 mask = ap->sata_spd_limit;
1672 if (mask <= 1)
1673 return -EINVAL;
1674 highbit = fls(mask) - 1;
1675 mask &= ~(1 << highbit);
1676
1677 spd = (scr_read(ap, SCR_STATUS) >> 4) & 0xf;
1678 if (spd <= 1)
1679 return -EINVAL;
1680 spd--;
1681 mask &= (1 << spd) - 1;
1682 if (!mask)
1683 return -EINVAL;
1684
1685 ap->sata_spd_limit = mask;
1686
1687 printk(KERN_WARNING "ata%u: limiting SATA link speed to %s\n",
1688 ap->id, sata_spd_string(fls(mask)));
1689
1690 return 0;
1691}
1692
Tejun Heo3c567b72006-05-15 20:57:23 +09001693static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001694{
1695 u32 spd, limit;
1696
1697 if (ap->sata_spd_limit == UINT_MAX)
1698 limit = 0;
1699 else
1700 limit = fls(ap->sata_spd_limit);
1701
1702 spd = (*scontrol >> 4) & 0xf;
1703 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1704
1705 return spd != limit;
1706}
1707
1708/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001709 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001710 * @ap: Port in question
1711 *
1712 * Test whether the spd limit in SControl matches
1713 * @ap->sata_spd_limit. This function is used to determine
1714 * whether hardreset is necessary to apply SATA spd
1715 * configuration.
1716 *
1717 * LOCKING:
1718 * Inherited from caller.
1719 *
1720 * RETURNS:
1721 * 1 if SATA spd configuration is needed, 0 otherwise.
1722 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001723int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001724{
1725 u32 scontrol;
1726
1727 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1728 return 0;
1729
1730 scontrol = scr_read(ap, SCR_CONTROL);
1731
Tejun Heo3c567b72006-05-15 20:57:23 +09001732 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001733}
1734
1735/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001736 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001737 * @ap: Port to set SATA spd for
1738 *
1739 * Set SATA spd of @ap according to sata_spd_limit.
1740 *
1741 * LOCKING:
1742 * Inherited from caller.
1743 *
1744 * RETURNS:
1745 * 0 if spd doesn't need to be changed, 1 if spd has been
1746 * changed. -EOPNOTSUPP if SCR registers are inaccessible.
1747 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001748int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001749{
1750 u32 scontrol;
1751
1752 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1753 return -EOPNOTSUPP;
1754
1755 scontrol = scr_read(ap, SCR_CONTROL);
Tejun Heo3c567b72006-05-15 20:57:23 +09001756 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001757 return 0;
1758
1759 scr_write(ap, SCR_CONTROL, scontrol);
1760 return 1;
1761}
1762
Alan Cox452503f2005-10-21 19:01:32 -04001763/*
1764 * This mode timing computation functionality is ported over from
1765 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1766 */
1767/*
1768 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1769 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1770 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001771 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001772 */
1773
1774static const struct ata_timing ata_timing[] = {
1775
1776 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1777 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1778 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1779 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1780
1781 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1782 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1783 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1784
1785/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001786
Alan Cox452503f2005-10-21 19:01:32 -04001787 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1788 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1789 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001790
Alan Cox452503f2005-10-21 19:01:32 -04001791 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1792 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1793 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1794
1795/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1796 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1797 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1798
1799 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1800 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1801 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1802
1803/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1804
1805 { 0xFF }
1806};
1807
1808#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1809#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1810
1811static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1812{
1813 q->setup = EZ(t->setup * 1000, T);
1814 q->act8b = EZ(t->act8b * 1000, T);
1815 q->rec8b = EZ(t->rec8b * 1000, T);
1816 q->cyc8b = EZ(t->cyc8b * 1000, T);
1817 q->active = EZ(t->active * 1000, T);
1818 q->recover = EZ(t->recover * 1000, T);
1819 q->cycle = EZ(t->cycle * 1000, T);
1820 q->udma = EZ(t->udma * 1000, UT);
1821}
1822
1823void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1824 struct ata_timing *m, unsigned int what)
1825{
1826 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1827 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1828 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1829 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1830 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1831 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1832 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1833 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1834}
1835
1836static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1837{
1838 const struct ata_timing *t;
1839
1840 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001841 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001842 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001843 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001844}
1845
1846int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1847 struct ata_timing *t, int T, int UT)
1848{
1849 const struct ata_timing *s;
1850 struct ata_timing p;
1851
1852 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001853 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001854 */
Alan Cox452503f2005-10-21 19:01:32 -04001855
1856 if (!(s = ata_timing_find_mode(speed)))
1857 return -EINVAL;
1858
Albert Lee75b1f2f2005-11-16 17:06:18 +08001859 memcpy(t, s, sizeof(*s));
1860
Alan Cox452503f2005-10-21 19:01:32 -04001861 /*
1862 * If the drive is an EIDE drive, it can tell us it needs extended
1863 * PIO/MW_DMA cycle timing.
1864 */
1865
1866 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1867 memset(&p, 0, sizeof(p));
1868 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1869 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1870 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1871 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1872 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1873 }
1874 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1875 }
1876
1877 /*
1878 * Convert the timing to bus clock counts.
1879 */
1880
Albert Lee75b1f2f2005-11-16 17:06:18 +08001881 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001882
1883 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001884 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1885 * S.M.A.R.T * and some other commands. We have to ensure that the
1886 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001887 */
1888
1889 if (speed > XFER_PIO_4) {
1890 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1891 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1892 }
1893
1894 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001895 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001896 */
1897
1898 if (t->act8b + t->rec8b < t->cyc8b) {
1899 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1900 t->rec8b = t->cyc8b - t->act8b;
1901 }
1902
1903 if (t->active + t->recover < t->cycle) {
1904 t->active += (t->cycle - (t->active + t->recover)) / 2;
1905 t->recover = t->cycle - t->active;
1906 }
1907
1908 return 0;
1909}
1910
Tejun Heocf176e12006-04-02 17:54:46 +09001911/**
1912 * ata_down_xfermask_limit - adjust dev xfer masks downward
1913 * @ap: Port associated with device @dev
1914 * @dev: Device to adjust xfer masks
1915 * @force_pio0: Force PIO0
1916 *
1917 * Adjust xfer masks of @dev downward. Note that this function
1918 * does not apply the change. Invoking ata_set_mode() afterwards
1919 * will apply the limit.
1920 *
1921 * LOCKING:
1922 * Inherited from caller.
1923 *
1924 * RETURNS:
1925 * 0 on success, negative errno on failure
1926 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001927int ata_down_xfermask_limit(struct ata_port *ap, struct ata_device *dev,
1928 int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09001929{
1930 unsigned long xfer_mask;
1931 int highbit;
1932
1933 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
1934 dev->udma_mask);
1935
1936 if (!xfer_mask)
1937 goto fail;
1938 /* don't gear down to MWDMA from UDMA, go directly to PIO */
1939 if (xfer_mask & ATA_MASK_UDMA)
1940 xfer_mask &= ~ATA_MASK_MWDMA;
1941
1942 highbit = fls(xfer_mask) - 1;
1943 xfer_mask &= ~(1 << highbit);
1944 if (force_pio0)
1945 xfer_mask &= 1 << ATA_SHIFT_PIO;
1946 if (!xfer_mask)
1947 goto fail;
1948
1949 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
1950 &dev->udma_mask);
1951
1952 printk(KERN_WARNING "ata%u: dev %u limiting speed to %s\n",
1953 ap->id, dev->devno, ata_mode_string(xfer_mask));
1954
1955 return 0;
1956
1957 fail:
1958 return -EINVAL;
1959}
1960
Tejun Heo83206a22006-03-24 15:25:31 +09001961static int ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
Tejun Heo83206a22006-03-24 15:25:31 +09001963 unsigned int err_mask;
1964 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Tejun Heoe8384602006-04-02 18:51:53 +09001966 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 if (dev->xfer_shift == ATA_SHIFT_PIO)
1968 dev->flags |= ATA_DFLAG_PIO;
1969
Tejun Heo83206a22006-03-24 15:25:31 +09001970 err_mask = ata_dev_set_xfermode(ap, dev);
1971 if (err_mask) {
1972 printk(KERN_ERR
1973 "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1974 ap->id, err_mask);
1975 return -EIO;
1976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Tejun Heo83206a22006-03-24 15:25:31 +09001978 rc = ata_dev_revalidate(ap, dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09001979 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09001980 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09001981
Tejun Heo23e71c32006-03-06 04:31:57 +09001982 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1983 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
Tejun Heo23e71c32006-03-06 04:31:57 +09001986 ap->id, dev->devno,
1987 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001988 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989}
1990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991/**
1992 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1993 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001994 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001996 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
1997 * ata_set_mode() fails, pointer to the failing device is
1998 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04001999 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002001 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002002 *
2003 * RETURNS:
2004 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002006int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
Tejun Heoe8e06192006-04-01 01:38:18 +09002008 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002009 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Tejun Heoa6d5a512006-03-06 04:31:57 +09002011 /* step 1: calculate xfer_mask */
2012 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002013 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002014
Tejun Heoe8e06192006-04-01 01:38:18 +09002015 dev = &ap->device[i];
2016
Tejun Heoe1211e32006-04-01 01:38:18 +09002017 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002018 continue;
2019
Tejun Heoacf356b2006-03-24 14:07:50 +09002020 ata_dev_xfermask(ap, dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002021
Tejun Heoacf356b2006-03-24 14:07:50 +09002022 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2023 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2024 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2025 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002026
Tejun Heo4f659772006-04-01 01:38:18 +09002027 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002028 if (dev->dma_mode)
2029 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002030 }
Tejun Heo4f659772006-04-01 01:38:18 +09002031 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002032 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002033
2034 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002035 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2036 dev = &ap->device[i];
2037 if (!ata_dev_enabled(dev))
2038 continue;
2039
2040 if (!dev->pio_mode) {
2041 printk(KERN_WARNING "ata%u: dev %u no PIO support\n",
2042 ap->id, dev->devno);
2043 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002044 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002045 }
2046
2047 dev->xfer_mode = dev->pio_mode;
2048 dev->xfer_shift = ATA_SHIFT_PIO;
2049 if (ap->ops->set_piomode)
2050 ap->ops->set_piomode(ap, dev);
2051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Tejun Heoa6d5a512006-03-06 04:31:57 +09002053 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002054 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2055 dev = &ap->device[i];
2056
2057 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2058 continue;
2059
2060 dev->xfer_mode = dev->dma_mode;
2061 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2062 if (ap->ops->set_dmamode)
2063 ap->ops->set_dmamode(ap, dev);
2064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002067 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002068 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Tejun Heoe1211e32006-04-01 01:38:18 +09002070 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002071 continue;
2072
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002073 rc = ata_dev_set_mode(ap, dev);
2074 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002075 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Tejun Heoe8e06192006-04-01 01:38:18 +09002078 /* Record simplex status. If we selected DMA then the other
2079 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002080 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002081 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2082 ap->host_set->simplex_claimed = 1;
2083
Tejun Heoe8e06192006-04-01 01:38:18 +09002084 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if (ap->ops->post_set_mode)
2086 ap->ops->post_set_mode(ap);
2087
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002088 out:
2089 if (rc)
2090 *r_failed_dev = dev;
2091 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
2093
2094/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002095 * ata_tf_to_host - issue ATA taskfile to host controller
2096 * @ap: port to which command is being issued
2097 * @tf: ATA taskfile register set
2098 *
2099 * Issues ATA taskfile register set to ATA host controller,
2100 * with proper synchronization with interrupt handler and
2101 * other threads.
2102 *
2103 * LOCKING:
2104 * spin_lock_irqsave(host_set lock)
2105 */
2106
2107static inline void ata_tf_to_host(struct ata_port *ap,
2108 const struct ata_taskfile *tf)
2109{
2110 ap->ops->tf_load(ap, tf);
2111 ap->ops->exec_command(ap, tf);
2112}
2113
2114/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 * ata_busy_sleep - sleep until BSY clears, or timeout
2116 * @ap: port containing status register to be polled
2117 * @tmout_pat: impatience timeout
2118 * @tmout: overall timeout
2119 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002120 * Sleep until ATA Status register bit BSY clears,
2121 * or a timeout occurs.
2122 *
2123 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 */
2125
Tejun Heo6f8b9952006-01-24 17:05:21 +09002126unsigned int ata_busy_sleep (struct ata_port *ap,
2127 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
2129 unsigned long timer_start, timeout;
2130 u8 status;
2131
2132 status = ata_busy_wait(ap, ATA_BUSY, 300);
2133 timer_start = jiffies;
2134 timeout = timer_start + tmout_pat;
2135 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2136 msleep(50);
2137 status = ata_busy_wait(ap, ATA_BUSY, 3);
2138 }
2139
2140 if (status & ATA_BUSY)
2141 printk(KERN_WARNING "ata%u is slow to respond, "
2142 "please be patient\n", ap->id);
2143
2144 timeout = timer_start + tmout;
2145 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2146 msleep(50);
2147 status = ata_chk_status(ap);
2148 }
2149
2150 if (status & ATA_BUSY) {
2151 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
2152 ap->id, tmout / HZ);
2153 return 1;
2154 }
2155
2156 return 0;
2157}
2158
2159static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2160{
2161 struct ata_ioports *ioaddr = &ap->ioaddr;
2162 unsigned int dev0 = devmask & (1 << 0);
2163 unsigned int dev1 = devmask & (1 << 1);
2164 unsigned long timeout;
2165
2166 /* if device 0 was found in ata_devchk, wait for its
2167 * BSY bit to clear
2168 */
2169 if (dev0)
2170 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2171
2172 /* if device 1 was found in ata_devchk, wait for
2173 * register access, then wait for BSY to clear
2174 */
2175 timeout = jiffies + ATA_TMOUT_BOOT;
2176 while (dev1) {
2177 u8 nsect, lbal;
2178
2179 ap->ops->dev_select(ap, 1);
2180 if (ap->flags & ATA_FLAG_MMIO) {
2181 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2182 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2183 } else {
2184 nsect = inb(ioaddr->nsect_addr);
2185 lbal = inb(ioaddr->lbal_addr);
2186 }
2187 if ((nsect == 1) && (lbal == 1))
2188 break;
2189 if (time_after(jiffies, timeout)) {
2190 dev1 = 0;
2191 break;
2192 }
2193 msleep(50); /* give drive a breather */
2194 }
2195 if (dev1)
2196 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2197
2198 /* is all this really necessary? */
2199 ap->ops->dev_select(ap, 0);
2200 if (dev1)
2201 ap->ops->dev_select(ap, 1);
2202 if (dev0)
2203 ap->ops->dev_select(ap, 0);
2204}
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206static unsigned int ata_bus_softreset(struct ata_port *ap,
2207 unsigned int devmask)
2208{
2209 struct ata_ioports *ioaddr = &ap->ioaddr;
2210
2211 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2212
2213 /* software reset. causes dev0 to be selected */
2214 if (ap->flags & ATA_FLAG_MMIO) {
2215 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2216 udelay(20); /* FIXME: flush */
2217 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2218 udelay(20); /* FIXME: flush */
2219 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2220 } else {
2221 outb(ap->ctl, ioaddr->ctl_addr);
2222 udelay(10);
2223 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2224 udelay(10);
2225 outb(ap->ctl, ioaddr->ctl_addr);
2226 }
2227
2228 /* spec mandates ">= 2ms" before checking status.
2229 * We wait 150ms, because that was the magic delay used for
2230 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2231 * between when the ATA command register is written, and then
2232 * status is checked. Because waiting for "a while" before
2233 * checking status is fine, post SRST, we perform this magic
2234 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002235 *
2236 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 */
2238 msleep(150);
2239
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002240 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002241 * the bus shows 0xFF because the odd clown forgets the D7
2242 * pulldown resistor.
2243 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002244 if (ata_check_status(ap) == 0xFF) {
2245 printk(KERN_ERR "ata%u: SRST failed (status 0xFF)\n", ap->id);
Tejun Heo298a41c2006-03-25 02:58:13 +09002246 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002247 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 ata_bus_post_reset(ap, devmask);
2250
2251 return 0;
2252}
2253
2254/**
2255 * ata_bus_reset - reset host port and associated ATA channel
2256 * @ap: port to reset
2257 *
2258 * This is typically the first time we actually start issuing
2259 * commands to the ATA channel. We wait for BSY to clear, then
2260 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2261 * result. Determine what devices, if any, are on the channel
2262 * by looking at the device 0/1 error register. Look at the signature
2263 * stored in each device's taskfile registers, to determine if
2264 * the device is ATA or ATAPI.
2265 *
2266 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002267 * PCI/etc. bus probe sem.
2268 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 *
2270 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002271 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 */
2273
2274void ata_bus_reset(struct ata_port *ap)
2275{
2276 struct ata_ioports *ioaddr = &ap->ioaddr;
2277 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2278 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002279 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2282
2283 /* determine if device 0/1 are present */
2284 if (ap->flags & ATA_FLAG_SATA_RESET)
2285 dev0 = 1;
2286 else {
2287 dev0 = ata_devchk(ap, 0);
2288 if (slave_possible)
2289 dev1 = ata_devchk(ap, 1);
2290 }
2291
2292 if (dev0)
2293 devmask |= (1 << 0);
2294 if (dev1)
2295 devmask |= (1 << 1);
2296
2297 /* select device 0 again */
2298 ap->ops->dev_select(ap, 0);
2299
2300 /* issue bus reset */
2301 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002302 if (ata_bus_softreset(ap, devmask))
2303 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305 /*
2306 * determine by signature whether we have ATA or ATAPI devices
2307 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002308 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002310 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312 /* re-enable interrupts */
2313 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2314 ata_irq_on(ap);
2315
2316 /* is double-select really necessary? */
2317 if (ap->device[1].class != ATA_DEV_NONE)
2318 ap->ops->dev_select(ap, 1);
2319 if (ap->device[0].class != ATA_DEV_NONE)
2320 ap->ops->dev_select(ap, 0);
2321
2322 /* if no devices were detected, disable this port */
2323 if ((ap->device[0].class == ATA_DEV_NONE) &&
2324 (ap->device[1].class == ATA_DEV_NONE))
2325 goto err_out;
2326
2327 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2328 /* set up device control for ATA_FLAG_SATA_RESET */
2329 if (ap->flags & ATA_FLAG_MMIO)
2330 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2331 else
2332 outb(ap->ctl, ioaddr->ctl_addr);
2333 }
2334
2335 DPRINTK("EXIT\n");
2336 return;
2337
2338err_out:
2339 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2340 ap->ops->port_disable(ap);
2341
2342 DPRINTK("EXIT\n");
2343}
2344
Tejun Heo7a7921e2006-02-02 18:20:00 +09002345static int sata_phy_resume(struct ata_port *ap)
2346{
2347 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo852ee162006-04-01 01:38:18 +09002348 u32 scontrol, sstatus;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002349
Tejun Heo852ee162006-04-01 01:38:18 +09002350 scontrol = scr_read(ap, SCR_CONTROL);
2351 scontrol = (scontrol & 0x0f0) | 0x300;
2352 scr_write_flush(ap, SCR_CONTROL, scontrol);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002353
2354 /* Wait for phy to become ready, if necessary. */
2355 do {
2356 msleep(200);
2357 sstatus = scr_read(ap, SCR_STATUS);
2358 if ((sstatus & 0xf) != 1)
2359 return 0;
2360 } while (time_before(jiffies, timeout));
2361
2362 return -1;
2363}
2364
Tejun Heoc2bd5802006-01-24 17:05:22 +09002365/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002366 * ata_std_probeinit - initialize probing
2367 * @ap: port to be probed
2368 *
2369 * @ap is about to be probed. Initialize it. This function is
2370 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002371 *
2372 * NOTE!!! Do not use this function as probeinit if a low level
2373 * driver implements only hardreset. Just pass NULL as probeinit
2374 * in that case. Using this function is probably okay but doing
2375 * so makes reset sequence different from the original
2376 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002377 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002378void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002379{
Alan Cox17efc5f2006-03-27 19:01:32 +01002380 if ((ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002381 u32 spd;
2382
Tejun Heodb70fef2006-04-11 22:16:44 +09002383 /* set cable type and resume link */
2384 ap->cbl = ATA_CBL_SATA;
Tejun Heo8a19ac82006-02-02 18:20:00 +09002385 sata_phy_resume(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002386
Tejun Heodb70fef2006-04-11 22:16:44 +09002387 /* init sata_spd_limit to the current value */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002388 spd = (scr_read(ap, SCR_CONTROL) & 0xf0) >> 4;
2389 if (spd)
2390 ap->sata_spd_limit &= (1 << spd) - 1;
2391
Tejun Heodb70fef2006-04-11 22:16:44 +09002392 /* wait for device */
Tejun Heo3a397462006-02-10 23:58:48 +09002393 if (sata_dev_present(ap))
2394 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2395 }
Tejun Heo8a19ac82006-02-02 18:20:00 +09002396}
2397
2398/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002399 * ata_std_softreset - reset host port via ATA SRST
2400 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002401 * @classes: resulting classes of attached devices
2402 *
2403 * Reset host port using ATA SRST. This function is to be used
2404 * as standard callback for ata_drive_*_reset() functions.
2405 *
2406 * LOCKING:
2407 * Kernel thread context (may sleep)
2408 *
2409 * RETURNS:
2410 * 0 on success, -errno otherwise.
2411 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002412int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002413{
2414 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2415 unsigned int devmask = 0, err_mask;
2416 u8 err;
2417
2418 DPRINTK("ENTER\n");
2419
Tejun Heo3a397462006-02-10 23:58:48 +09002420 if (ap->ops->scr_read && !sata_dev_present(ap)) {
2421 classes[0] = ATA_DEV_NONE;
2422 goto out;
2423 }
2424
Tejun Heoc2bd5802006-01-24 17:05:22 +09002425 /* determine if device 0/1 are present */
2426 if (ata_devchk(ap, 0))
2427 devmask |= (1 << 0);
2428 if (slave_possible && ata_devchk(ap, 1))
2429 devmask |= (1 << 1);
2430
Tejun Heoc2bd5802006-01-24 17:05:22 +09002431 /* select device 0 again */
2432 ap->ops->dev_select(ap, 0);
2433
2434 /* issue bus reset */
2435 DPRINTK("about to softreset, devmask=%x\n", devmask);
2436 err_mask = ata_bus_softreset(ap, devmask);
2437 if (err_mask) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002438 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2439 ap->id, err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002440 return -EIO;
2441 }
2442
2443 /* determine by signature whether we have ATA or ATAPI devices */
2444 classes[0] = ata_dev_try_classify(ap, 0, &err);
2445 if (slave_possible && err != 0x81)
2446 classes[1] = ata_dev_try_classify(ap, 1, &err);
2447
Tejun Heo3a397462006-02-10 23:58:48 +09002448 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002449 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2450 return 0;
2451}
2452
2453/**
2454 * sata_std_hardreset - reset host port via SATA phy reset
2455 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002456 * @class: resulting class of attached device
2457 *
2458 * SATA phy-reset host port using DET bits of SControl register.
2459 * This function is to be used as standard callback for
2460 * ata_drive_*_reset().
2461 *
2462 * LOCKING:
2463 * Kernel thread context (may sleep)
2464 *
2465 * RETURNS:
2466 * 0 on success, -errno otherwise.
2467 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002468int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002469{
Tejun Heo852ee162006-04-01 01:38:18 +09002470 u32 scontrol;
2471
Tejun Heoc2bd5802006-01-24 17:05:22 +09002472 DPRINTK("ENTER\n");
2473
Tejun Heo3c567b72006-05-15 20:57:23 +09002474 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002475 /* SATA spec says nothing about how to reconfigure
2476 * spd. To be on the safe side, turn off phy during
2477 * reconfiguration. This works for at least ICH7 AHCI
2478 * and Sil3124.
2479 */
2480 scontrol = scr_read(ap, SCR_CONTROL);
2481 scontrol = (scontrol & 0x0f0) | 0x302;
2482 scr_write_flush(ap, SCR_CONTROL, scontrol);
2483
Tejun Heo3c567b72006-05-15 20:57:23 +09002484 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002485 }
2486
2487 /* issue phy wake/reset */
Tejun Heo852ee162006-04-01 01:38:18 +09002488 scontrol = scr_read(ap, SCR_CONTROL);
2489 scontrol = (scontrol & 0x0f0) | 0x301;
2490 scr_write_flush(ap, SCR_CONTROL, scontrol);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002491
Tejun Heo1c3fae42006-04-02 20:53:28 +09002492 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002493 * 10.4.2 says at least 1 ms.
2494 */
2495 msleep(1);
2496
Tejun Heo1c3fae42006-04-02 20:53:28 +09002497 /* bring phy back */
Tejun Heo7a7921e2006-02-02 18:20:00 +09002498 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002499
Tejun Heoc2bd5802006-01-24 17:05:22 +09002500 /* TODO: phy layer with polling, timeouts, etc. */
2501 if (!sata_dev_present(ap)) {
2502 *class = ATA_DEV_NONE;
2503 DPRINTK("EXIT, link offline\n");
2504 return 0;
2505 }
2506
2507 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heo987d2f02006-04-11 22:16:45 +09002508 printk(KERN_ERR
2509 "ata%u: COMRESET failed (device not ready)\n", ap->id);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002510 return -EIO;
2511 }
2512
Tejun Heo3a397462006-02-10 23:58:48 +09002513 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2514
Tejun Heoc2bd5802006-01-24 17:05:22 +09002515 *class = ata_dev_try_classify(ap, 0, NULL);
2516
2517 DPRINTK("EXIT, class=%u\n", *class);
2518 return 0;
2519}
2520
2521/**
2522 * ata_std_postreset - standard postreset callback
2523 * @ap: the target ata_port
2524 * @classes: classes of attached devices
2525 *
2526 * This function is invoked after a successful reset. Note that
2527 * the device might have been reset more than once using
2528 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002529 *
2530 * This function is to be used as standard callback for
2531 * ata_drive_*_reset().
2532 *
2533 * LOCKING:
2534 * Kernel thread context (may sleep)
2535 */
2536void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2537{
2538 DPRINTK("ENTER\n");
2539
Tejun Heoc2bd5802006-01-24 17:05:22 +09002540 /* print link status */
2541 if (ap->cbl == ATA_CBL_SATA)
2542 sata_print_link_status(ap);
2543
Tejun Heo3a397462006-02-10 23:58:48 +09002544 /* re-enable interrupts */
2545 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2546 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002547
2548 /* is double-select really necessary? */
2549 if (classes[0] != ATA_DEV_NONE)
2550 ap->ops->dev_select(ap, 1);
2551 if (classes[1] != ATA_DEV_NONE)
2552 ap->ops->dev_select(ap, 0);
2553
Tejun Heo3a397462006-02-10 23:58:48 +09002554 /* bail out if no device is present */
2555 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2556 DPRINTK("EXIT, no device\n");
2557 return;
2558 }
2559
2560 /* set up device control */
2561 if (ap->ioaddr.ctl_addr) {
2562 if (ap->flags & ATA_FLAG_MMIO)
2563 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2564 else
2565 outb(ap->ctl, ap->ioaddr.ctl_addr);
2566 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002567
2568 DPRINTK("EXIT\n");
2569}
2570
2571/**
2572 * ata_std_probe_reset - standard probe reset method
2573 * @ap: prot to perform probe-reset
2574 * @classes: resulting classes of attached devices
2575 *
2576 * The stock off-the-shelf ->probe_reset method.
2577 *
2578 * LOCKING:
2579 * Kernel thread context (may sleep)
2580 *
2581 * RETURNS:
2582 * 0 on success, -errno otherwise.
2583 */
2584int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2585{
2586 ata_reset_fn_t hardreset;
2587
2588 hardreset = NULL;
Tejun Heodb70fef2006-04-11 22:16:44 +09002589 if (ap->cbl == ATA_CBL_SATA && ap->ops->scr_read)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002590 hardreset = sata_std_hardreset;
2591
Tejun Heo8a19ac82006-02-02 18:20:00 +09002592 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002593 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002594 ata_std_postreset, classes);
2595}
2596
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002597int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
2598 ata_postreset_fn_t postreset, unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002599{
2600 int i, rc;
2601
2602 for (i = 0; i < ATA_MAX_DEVICES; i++)
2603 classes[i] = ATA_DEV_UNKNOWN;
2604
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002605 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002606 if (rc)
2607 return rc;
2608
2609 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2610 * is complete and convert all ATA_DEV_UNKNOWN to
2611 * ATA_DEV_NONE.
2612 */
2613 for (i = 0; i < ATA_MAX_DEVICES; i++)
2614 if (classes[i] != ATA_DEV_UNKNOWN)
2615 break;
2616
2617 if (i < ATA_MAX_DEVICES)
2618 for (i = 0; i < ATA_MAX_DEVICES; i++)
2619 if (classes[i] == ATA_DEV_UNKNOWN)
2620 classes[i] = ATA_DEV_NONE;
2621
2622 if (postreset)
2623 postreset(ap, classes);
2624
Tejun Heo9974e7c2006-04-01 01:38:17 +09002625 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002626}
2627
2628/**
2629 * ata_drive_probe_reset - Perform probe reset with given methods
2630 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002631 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002632 * @softreset: softreset method (can be NULL)
2633 * @hardreset: hardreset method (can be NULL)
2634 * @postreset: postreset method (can be NULL)
2635 * @classes: resulting classes of attached devices
2636 *
2637 * Reset the specified port and classify attached devices using
2638 * given methods. This function prefers softreset but tries all
2639 * possible reset sequences to reset and classify devices. This
2640 * function is intended to be used for constructing ->probe_reset
2641 * callback by low level drivers.
2642 *
2643 * Reset methods should follow the following rules.
2644 *
2645 * - Return 0 on sucess, -errno on failure.
2646 * - If classification is supported, fill classes[] with
2647 * recognized class codes.
2648 * - If classification is not supported, leave classes[] alone.
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002649 *
2650 * LOCKING:
2651 * Kernel thread context (may sleep)
2652 *
2653 * RETURNS:
2654 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2655 * if classification fails, and any error code from reset
2656 * methods.
2657 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002658int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002659 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2660 ata_postreset_fn_t postreset, unsigned int *classes)
2661{
2662 int rc = -EINVAL;
2663
Tejun Heo7944ea92006-02-02 18:20:00 +09002664 if (probeinit)
2665 probeinit(ap);
2666
Tejun Heo3c567b72006-05-15 20:57:23 +09002667 if (softreset && !sata_set_spd_needed(ap)) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002668 rc = ata_do_reset(ap, softreset, postreset, classes);
Tejun Heo9974e7c2006-04-01 01:38:17 +09002669 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2670 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002671 printk(KERN_INFO "ata%u: softreset failed, will try "
2672 "hardreset in 5 secs\n", ap->id);
2673 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002674 }
2675
2676 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002677 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002678
Tejun Heo90dac022006-04-02 17:54:46 +09002679 while (1) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002680 rc = ata_do_reset(ap, hardreset, postreset, classes);
Tejun Heo90dac022006-04-02 17:54:46 +09002681 if (rc == 0) {
2682 if (classes[0] != ATA_DEV_UNKNOWN)
2683 goto done;
2684 break;
2685 }
2686
Tejun Heo3c567b72006-05-15 20:57:23 +09002687 if (sata_down_spd_limit(ap))
Tejun Heo90dac022006-04-02 17:54:46 +09002688 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002689
2690 printk(KERN_INFO "ata%u: hardreset failed, will retry "
2691 "in 5 secs\n", ap->id);
2692 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002693 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002694
Tejun Heoedbabd82006-04-02 20:55:02 +09002695 if (softreset) {
2696 printk(KERN_INFO "ata%u: hardreset succeeded without "
2697 "classification, will retry softreset in 5 secs\n",
2698 ap->id);
2699 ssleep(5);
2700
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002701 rc = ata_do_reset(ap, softreset, postreset, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002702 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002703
Tejun Heo9974e7c2006-04-01 01:38:17 +09002704 done:
2705 if (rc == 0 && classes[0] == ATA_DEV_UNKNOWN)
2706 rc = -ENODEV;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002707 return rc;
2708}
2709
Tejun Heo623a3122006-03-05 17:55:58 +09002710/**
2711 * ata_dev_same_device - Determine whether new ID matches configured device
2712 * @ap: port on which the device to compare against resides
2713 * @dev: device to compare against
2714 * @new_class: class of the new device
2715 * @new_id: IDENTIFY page of the new device
2716 *
2717 * Compare @new_class and @new_id against @dev and determine
2718 * whether @dev is the device indicated by @new_class and
2719 * @new_id.
2720 *
2721 * LOCKING:
2722 * None.
2723 *
2724 * RETURNS:
2725 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2726 */
2727static int ata_dev_same_device(struct ata_port *ap, struct ata_device *dev,
2728 unsigned int new_class, const u16 *new_id)
2729{
2730 const u16 *old_id = dev->id;
2731 unsigned char model[2][41], serial[2][21];
2732 u64 new_n_sectors;
2733
2734 if (dev->class != new_class) {
2735 printk(KERN_INFO
2736 "ata%u: dev %u class mismatch %d != %d\n",
2737 ap->id, dev->devno, dev->class, new_class);
2738 return 0;
2739 }
2740
2741 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2742 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2743 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2744 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2745 new_n_sectors = ata_id_n_sectors(new_id);
2746
2747 if (strcmp(model[0], model[1])) {
2748 printk(KERN_INFO
2749 "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2750 ap->id, dev->devno, model[0], model[1]);
2751 return 0;
2752 }
2753
2754 if (strcmp(serial[0], serial[1])) {
2755 printk(KERN_INFO
2756 "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2757 ap->id, dev->devno, serial[0], serial[1]);
2758 return 0;
2759 }
2760
2761 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2762 printk(KERN_INFO
2763 "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2764 ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2765 (unsigned long long)new_n_sectors);
2766 return 0;
2767 }
2768
2769 return 1;
2770}
2771
2772/**
2773 * ata_dev_revalidate - Revalidate ATA device
2774 * @ap: port on which the device to revalidate resides
2775 * @dev: device to revalidate
2776 * @post_reset: is this revalidation after reset?
2777 *
2778 * Re-read IDENTIFY page and make sure @dev is still attached to
2779 * the port.
2780 *
2781 * LOCKING:
2782 * Kernel thread context (may sleep)
2783 *
2784 * RETURNS:
2785 * 0 on success, negative errno otherwise
2786 */
2787int ata_dev_revalidate(struct ata_port *ap, struct ata_device *dev,
2788 int post_reset)
2789{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002790 unsigned int class = dev->class;
2791 u16 *id = NULL;
Tejun Heo623a3122006-03-05 17:55:58 +09002792 int rc;
2793
Tejun Heo5eb45c02006-04-02 18:51:52 +09002794 if (!ata_dev_enabled(dev)) {
2795 rc = -ENODEV;
2796 goto fail;
2797 }
Tejun Heo623a3122006-03-05 17:55:58 +09002798
2799 /* allocate & read ID data */
2800 rc = ata_dev_read_id(ap, dev, &class, post_reset, &id);
2801 if (rc)
2802 goto fail;
2803
2804 /* is the device still there? */
2805 if (!ata_dev_same_device(ap, dev, class, id)) {
2806 rc = -ENODEV;
2807 goto fail;
2808 }
2809
2810 kfree(dev->id);
2811 dev->id = id;
2812
2813 /* configure device according to the new ID */
Tejun Heo5eb45c02006-04-02 18:51:52 +09002814 rc = ata_dev_configure(ap, dev, 0);
2815 if (rc == 0)
2816 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002817
2818 fail:
2819 printk(KERN_ERR "ata%u: dev %u revalidation failed (errno=%d)\n",
2820 ap->id, dev->devno, rc);
2821 kfree(id);
2822 return rc;
2823}
2824
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002825static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002826 "WDC AC11000H", NULL,
2827 "WDC AC22100H", NULL,
2828 "WDC AC32500H", NULL,
2829 "WDC AC33100H", NULL,
2830 "WDC AC31600H", NULL,
2831 "WDC AC32100H", "24.09P07",
2832 "WDC AC23200L", "21.10N21",
2833 "Compaq CRD-8241B", NULL,
2834 "CRD-8400B", NULL,
2835 "CRD-8480B", NULL,
2836 "CRD-8482B", NULL,
2837 "CRD-84", NULL,
2838 "SanDisk SDP3B", NULL,
2839 "SanDisk SDP3B-64", NULL,
2840 "SANYO CD-ROM CRD", NULL,
2841 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002842 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002843 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002844 "Toshiba CD-ROM XM-6202B", NULL,
2845 "TOSHIBA CD-ROM XM-1702BC", NULL,
2846 "CD-532E-A", NULL,
2847 "E-IDE CD-ROM CR-840", NULL,
2848 "CD-ROM Drive/F5A", NULL,
2849 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002850 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002851 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002852 "SanDisk SDP3B-64", NULL,
2853 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2854 "_NEC DV5800A", NULL,
2855 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002857
Alan Coxf4b15fe2006-03-22 15:54:04 +00002858static int ata_strim(char *s, size_t len)
2859{
2860 len = strnlen(s, len);
2861
2862 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2863 while ((len > 0) && (s[len - 1] == ' ')) {
2864 len--;
2865 s[len] = 0;
2866 }
2867 return len;
2868}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Jeff Garzik057ace52005-10-22 14:27:05 -04002870static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002872 unsigned char model_num[40];
2873 unsigned char model_rev[16];
2874 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 int i;
2876
Alan Coxf4b15fe2006-03-22 15:54:04 +00002877 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2878 sizeof(model_num));
2879 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2880 sizeof(model_rev));
2881 nlen = ata_strim(model_num, sizeof(model_num));
2882 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Alan Coxf4b15fe2006-03-22 15:54:04 +00002884 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2885 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2886 if (ata_dma_blacklist[i+1] == NULL)
2887 return 1;
2888 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2889 return 1;
2890 }
2891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 return 0;
2893}
2894
Tejun Heoa6d5a512006-03-06 04:31:57 +09002895/**
2896 * ata_dev_xfermask - Compute supported xfermask of the given device
2897 * @ap: Port on which the device to compute xfermask for resides
2898 * @dev: Device to compute xfermask for
2899 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002900 * Compute supported xfermask of @dev and store it in
2901 * dev->*_mask. This function is responsible for applying all
2902 * known limits including host controller limits, device
2903 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002904 *
Tejun Heo600511e2006-03-25 11:14:07 +09002905 * FIXME: The current implementation limits all transfer modes to
2906 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002907 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002908 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09002909 * LOCKING:
2910 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09002911 */
Tejun Heoacf356b2006-03-24 14:07:50 +09002912static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913{
Alan Cox5444a6f2006-03-27 18:58:20 +01002914 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002915 unsigned long xfer_mask;
2916 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Tejun Heo565083e2006-04-02 17:54:47 +09002918 xfer_mask = ata_pack_xfermask(ap->pio_mask,
2919 ap->mwdma_mask, ap->udma_mask);
2920
2921 /* Apply cable rule here. Don't apply it early because when
2922 * we handle hot plug the cable type can itself change.
2923 */
2924 if (ap->cbl == ATA_CBL_PATA40)
2925 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
Alan Cox5444a6f2006-03-27 18:58:20 +01002927 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002928 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2929 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09002930
2931 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002932 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09002933
2934 if (ata_dev_disabled(d)) {
2935 /* to avoid violating device selection timing */
2936 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2937 UINT_MAX, UINT_MAX);
2938 continue;
2939 }
2940
2941 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2942 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002943 xfer_mask &= ata_id_xfermask(d->id);
2944 if (ata_dma_blacklisted(d))
2945 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 }
2947
Tejun Heoa6d5a512006-03-06 04:31:57 +09002948 if (ata_dma_blacklisted(dev))
2949 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2950 "disabling DMA\n", ap->id, dev->devno);
2951
Alan Cox5444a6f2006-03-27 18:58:20 +01002952 if (hs->flags & ATA_HOST_SIMPLEX) {
2953 if (hs->simplex_claimed)
2954 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2955 }
Tejun Heo565083e2006-04-02 17:54:47 +09002956
Alan Cox5444a6f2006-03-27 18:58:20 +01002957 if (ap->ops->mode_filter)
2958 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
2959
Tejun Heo565083e2006-04-02 17:54:47 +09002960 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
2961 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962}
2963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2966 * @ap: Port associated with device @dev
2967 * @dev: Device to which command will be sent
2968 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002969 * Issue SET FEATURES - XFER MODE command to device @dev
2970 * on port @ap.
2971 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002973 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002974 *
2975 * RETURNS:
2976 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 */
2978
Tejun Heo83206a22006-03-24 15:25:31 +09002979static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
2980 struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
Tejun Heoa0123702005-12-13 14:49:31 +09002982 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002983 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985 /* set up set-features taskfile */
2986 DPRINTK("set features - xfer mode\n");
2987
Tejun Heoa0123702005-12-13 14:49:31 +09002988 ata_tf_init(ap, &tf, dev->devno);
2989 tf.command = ATA_CMD_SET_FEATURES;
2990 tf.feature = SETFEATURES_XFER;
2991 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2992 tf.protocol = ATA_PROT_NODATA;
2993 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Tejun Heod69cf372006-04-02 18:51:53 +09002995 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Tejun Heo83206a22006-03-24 15:25:31 +09002997 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2998 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999}
3000
3001/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04003002 * ata_dev_init_params - Issue INIT DEV PARAMS command
3003 * @ap: Port associated with device @dev
3004 * @dev: Device to which command will be sent
3005 *
3006 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003007 * Kernel thread context (may sleep)
3008 *
3009 * RETURNS:
3010 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003011 */
3012
Tejun Heo6aff8f12006-02-15 18:24:09 +09003013static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +08003014 struct ata_device *dev,
3015 u16 heads,
3016 u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003017{
Tejun Heoa0123702005-12-13 14:49:31 +09003018 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003019 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003020
3021 /* Number of sectors per track 1-255. Number of heads 1-16 */
3022 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003023 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003024
3025 /* set up init dev params taskfile */
3026 DPRINTK("init dev params \n");
3027
Tejun Heoa0123702005-12-13 14:49:31 +09003028 ata_tf_init(ap, &tf, dev->devno);
3029 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3030 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3031 tf.protocol = ATA_PROT_NODATA;
3032 tf.nsect = sectors;
3033 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003034
Tejun Heod69cf372006-04-02 18:51:53 +09003035 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003036
Tejun Heo6aff8f12006-02-15 18:24:09 +09003037 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3038 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003039}
3040
3041/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003042 * ata_sg_clean - Unmap DMA memory associated with command
3043 * @qc: Command containing DMA memory to be released
3044 *
3045 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 *
3047 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003048 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 */
3050
3051static void ata_sg_clean(struct ata_queued_cmd *qc)
3052{
3053 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003054 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003056 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Tejun Heoa4631472006-02-11 19:11:13 +09003058 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3059 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
3061 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003062 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003064 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003066 /* if we padded the buffer out to 32-bit bound, and data
3067 * xfer direction is from-device, we must copy from the
3068 * pad buffer back into the supplied buffer
3069 */
3070 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3071 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3072
3073 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003074 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003075 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003076 /* restore last sg */
3077 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3078 if (pad_buf) {
3079 struct scatterlist *psg = &qc->pad_sgent;
3080 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3081 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003082 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003083 }
3084 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003085 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003086 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003087 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3088 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003089 /* restore sg */
3090 sg->length += qc->pad_len;
3091 if (pad_buf)
3092 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3093 pad_buf, qc->pad_len);
3094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
3096 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003097 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098}
3099
3100/**
3101 * ata_fill_sg - Fill PCI IDE PRD table
3102 * @qc: Metadata associated with taskfile to be transferred
3103 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003104 * Fill PCI IDE PRD (scatter-gather) table with segments
3105 * associated with the current disk command.
3106 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003108 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 *
3110 */
3111static void ata_fill_sg(struct ata_queued_cmd *qc)
3112{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003114 struct scatterlist *sg;
3115 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
Tejun Heoa4631472006-02-11 19:11:13 +09003117 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003118 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
3120 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003121 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 u32 addr, offset;
3123 u32 sg_len, len;
3124
3125 /* determine if physical DMA addr spans 64K boundary.
3126 * Note h/w doesn't support 64-bit, so we unconditionally
3127 * truncate dma_addr_t to u32.
3128 */
3129 addr = (u32) sg_dma_address(sg);
3130 sg_len = sg_dma_len(sg);
3131
3132 while (sg_len) {
3133 offset = addr & 0xffff;
3134 len = sg_len;
3135 if ((offset + sg_len) > 0x10000)
3136 len = 0x10000 - offset;
3137
3138 ap->prd[idx].addr = cpu_to_le32(addr);
3139 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3140 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3141
3142 idx++;
3143 sg_len -= len;
3144 addr += len;
3145 }
3146 }
3147
3148 if (idx)
3149 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3150}
3151/**
3152 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3153 * @qc: Metadata associated with taskfile to check
3154 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003155 * Allow low-level driver to filter ATA PACKET commands, returning
3156 * a status indicating whether or not it is OK to use DMA for the
3157 * supplied PACKET command.
3158 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003160 * spin_lock_irqsave(host_set lock)
3161 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 * RETURNS: 0 when ATAPI DMA can be used
3163 * nonzero otherwise
3164 */
3165int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3166{
3167 struct ata_port *ap = qc->ap;
3168 int rc = 0; /* Assume ATAPI DMA is OK by default */
3169
3170 if (ap->ops->check_atapi_dma)
3171 rc = ap->ops->check_atapi_dma(qc);
3172
3173 return rc;
3174}
3175/**
3176 * ata_qc_prep - Prepare taskfile for submission
3177 * @qc: Metadata associated with taskfile to be prepared
3178 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003179 * Prepare ATA taskfile for submission.
3180 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 * LOCKING:
3182 * spin_lock_irqsave(host_set lock)
3183 */
3184void ata_qc_prep(struct ata_queued_cmd *qc)
3185{
3186 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3187 return;
3188
3189 ata_fill_sg(qc);
3190}
3191
Brian Kinge46834c2006-03-17 17:04:03 -06003192void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3193
Jeff Garzik0cba6322005-05-30 19:49:12 -04003194/**
3195 * ata_sg_init_one - Associate command with memory buffer
3196 * @qc: Command to be associated
3197 * @buf: Memory buffer
3198 * @buflen: Length of memory buffer, in bytes.
3199 *
3200 * Initialize the data-related elements of queued_cmd @qc
3201 * to point to a single memory buffer, @buf of byte length @buflen.
3202 *
3203 * LOCKING:
3204 * spin_lock_irqsave(host_set lock)
3205 */
3206
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3208{
3209 struct scatterlist *sg;
3210
3211 qc->flags |= ATA_QCFLAG_SINGLE;
3212
3213 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003214 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003216 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 qc->buf_virt = buf;
3218
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003219 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003220 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221}
3222
Jeff Garzik0cba6322005-05-30 19:49:12 -04003223/**
3224 * ata_sg_init - Associate command with scatter-gather table.
3225 * @qc: Command to be associated
3226 * @sg: Scatter-gather table.
3227 * @n_elem: Number of elements in s/g table.
3228 *
3229 * Initialize the data-related elements of queued_cmd @qc
3230 * to point to a scatter-gather table @sg, containing @n_elem
3231 * elements.
3232 *
3233 * LOCKING:
3234 * spin_lock_irqsave(host_set lock)
3235 */
3236
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3238 unsigned int n_elem)
3239{
3240 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003241 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003243 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244}
3245
3246/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003247 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3248 * @qc: Command with memory buffer to be mapped.
3249 *
3250 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 *
3252 * LOCKING:
3253 * spin_lock_irqsave(host_set lock)
3254 *
3255 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003256 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 */
3258
3259static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3260{
3261 struct ata_port *ap = qc->ap;
3262 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003263 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003265 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003267 /* we must lengthen transfers to end on a 32-bit boundary */
3268 qc->pad_len = sg->length & 3;
3269 if (qc->pad_len) {
3270 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3271 struct scatterlist *psg = &qc->pad_sgent;
3272
Tejun Heoa4631472006-02-11 19:11:13 +09003273 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003274
3275 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3276
3277 if (qc->tf.flags & ATA_TFLAG_WRITE)
3278 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3279 qc->pad_len);
3280
3281 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3282 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3283 /* trim sg */
3284 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003285 if (sg->length == 0)
3286 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003287
3288 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3289 sg->length, qc->pad_len);
3290 }
3291
Tejun Heo2e242fa2006-02-20 23:48:38 +09003292 if (trim_sg) {
3293 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003294 goto skip_map;
3295 }
3296
Brian King2f1f6102006-03-23 17:30:15 -06003297 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003298 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003299 if (dma_mapping_error(dma_address)) {
3300 /* restore sg */
3301 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
3305 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003306 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
Tejun Heo2e242fa2006-02-20 23:48:38 +09003308skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3310 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3311
3312 return 0;
3313}
3314
3315/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003316 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3317 * @qc: Command with scatter-gather table to be mapped.
3318 *
3319 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 *
3321 * LOCKING:
3322 * spin_lock_irqsave(host_set lock)
3323 *
3324 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003325 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 *
3327 */
3328
3329static int ata_sg_setup(struct ata_queued_cmd *qc)
3330{
3331 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003332 struct scatterlist *sg = qc->__sg;
3333 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003334 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
3336 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003337 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003339 /* we must lengthen transfers to end on a 32-bit boundary */
3340 qc->pad_len = lsg->length & 3;
3341 if (qc->pad_len) {
3342 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3343 struct scatterlist *psg = &qc->pad_sgent;
3344 unsigned int offset;
3345
Tejun Heoa4631472006-02-11 19:11:13 +09003346 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003347
3348 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3349
3350 /*
3351 * psg->page/offset are used to copy to-be-written
3352 * data in this function or read data in ata_sg_clean.
3353 */
3354 offset = lsg->offset + lsg->length - qc->pad_len;
3355 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3356 psg->offset = offset_in_page(offset);
3357
3358 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3359 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3360 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003361 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003362 }
3363
3364 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3365 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3366 /* trim last sg */
3367 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003368 if (lsg->length == 0)
3369 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003370
3371 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3372 qc->n_elem - 1, lsg->length, qc->pad_len);
3373 }
3374
Jeff Garzike1410f22005-11-14 14:06:26 -05003375 pre_n_elem = qc->n_elem;
3376 if (trim_sg && pre_n_elem)
3377 pre_n_elem--;
3378
3379 if (!pre_n_elem) {
3380 n_elem = 0;
3381 goto skip_map;
3382 }
3383
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003385 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003386 if (n_elem < 1) {
3387 /* restore last sg */
3388 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
3392 DPRINTK("%d sg elements mapped\n", n_elem);
3393
Jeff Garzike1410f22005-11-14 14:06:26 -05003394skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 qc->n_elem = n_elem;
3396
3397 return 0;
3398}
3399
3400/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003401 * ata_poll_qc_complete - turn irq back on and finish qc
3402 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003403 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003404 *
3405 * LOCKING:
3406 * None. (grabs host lock)
3407 */
3408
Albert Leea22e2eb2005-12-05 15:38:02 +08003409void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003410{
3411 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003412 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003413
Jeff Garzikb8f61532005-08-25 22:01:20 -04003414 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003415 ap->flags &= ~ATA_FLAG_NOINTR;
3416 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003417 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003418 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003419}
3420
3421/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003422 * ata_pio_poll - poll using PIO, depending on current state
Tejun Heoc91af2c2006-04-02 18:51:53 +09003423 * @qc: qc in progress
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 *
3425 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003426 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 *
3428 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003429 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003431static unsigned long ata_pio_poll(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003433 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08003435 unsigned int poll_state = HSM_ST_UNKNOWN;
3436 unsigned int reg_state = HSM_ST_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Albert Lee14be71f2005-09-27 17:36:35 +08003438 switch (ap->hsm_task_state) {
3439 case HSM_ST:
3440 case HSM_ST_POLL:
3441 poll_state = HSM_ST_POLL;
3442 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 break;
Albert Lee14be71f2005-09-27 17:36:35 +08003444 case HSM_ST_LAST:
3445 case HSM_ST_LAST_POLL:
3446 poll_state = HSM_ST_LAST_POLL;
3447 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 break;
3449 default:
3450 BUG();
3451 break;
3452 }
3453
3454 status = ata_chk_status(ap);
3455 if (status & ATA_BUSY) {
3456 if (time_after(jiffies, ap->pio_task_timeout)) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003457 qc->err_mask |= AC_ERR_TIMEOUT;
Albert Lee7c398332005-11-09 13:03:30 +08003458 ap->hsm_task_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 return 0;
3460 }
Albert Lee14be71f2005-09-27 17:36:35 +08003461 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 return ATA_SHORT_PAUSE;
3463 }
3464
Albert Lee14be71f2005-09-27 17:36:35 +08003465 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 return 0;
3467}
3468
3469/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003470 * ata_pio_complete - check if drive is busy or idle
Tejun Heoc91af2c2006-04-02 18:51:53 +09003471 * @qc: qc to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 *
3473 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003474 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003475 *
3476 * RETURNS:
3477 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003479static int ata_pio_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003481 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 u8 drv_stat;
3483
3484 /*
Alan Cox31433ea2005-08-26 15:56:47 +01003485 * This is purely heuristic. This is a fast path. Sometimes when
3486 * we enter, BSY will be cleared in a chk-status or two. If not,
3487 * the drive is probably seeking or something. Snooze for a couple
3488 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003489 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 */
Albert Leefe79e682005-12-06 11:34:59 +08003491 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3492 if (drv_stat & ATA_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 msleep(2);
Albert Leefe79e682005-12-06 11:34:59 +08003494 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3495 if (drv_stat & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003496 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003498 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 }
3500 }
3501
3502 drv_stat = ata_wait_idle(ap);
3503 if (!ata_ok(drv_stat)) {
Albert Lee1c848982005-12-05 15:40:15 +08003504 qc->err_mask |= __ac_err_mask(drv_stat);
Albert Lee14be71f2005-09-27 17:36:35 +08003505 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 }
3508
Albert Lee14be71f2005-09-27 17:36:35 +08003509 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
Tejun Heoa4631472006-02-11 19:11:13 +09003511 WARN_ON(qc->err_mask);
Albert Leea22e2eb2005-12-05 15:38:02 +08003512 ata_poll_qc_complete(qc);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003513
3514 /* another command may start at this point */
3515
3516 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517}
3518
Edward Falk0baab862005-06-02 18:17:13 -04003519
3520/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003521 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003522 * @buf: Buffer to swap
3523 * @buf_words: Number of 16-bit words in buffer.
3524 *
3525 * Swap halves of 16-bit words if needed to convert from
3526 * little-endian byte order to native cpu byte order, or
3527 * vice-versa.
3528 *
3529 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003530 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532void swap_buf_le16(u16 *buf, unsigned int buf_words)
3533{
3534#ifdef __BIG_ENDIAN
3535 unsigned int i;
3536
3537 for (i = 0; i < buf_words; i++)
3538 buf[i] = le16_to_cpu(buf[i]);
3539#endif /* __BIG_ENDIAN */
3540}
3541
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003542/**
3543 * ata_mmio_data_xfer - Transfer data by MMIO
3544 * @ap: port to read/write
3545 * @buf: data buffer
3546 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003547 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003548 *
3549 * Transfer data from/to the device data register by MMIO.
3550 *
3551 * LOCKING:
3552 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003553 */
3554
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3556 unsigned int buflen, int write_data)
3557{
3558 unsigned int i;
3559 unsigned int words = buflen >> 1;
3560 u16 *buf16 = (u16 *) buf;
3561 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3562
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003563 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 if (write_data) {
3565 for (i = 0; i < words; i++)
3566 writew(le16_to_cpu(buf16[i]), mmio);
3567 } else {
3568 for (i = 0; i < words; i++)
3569 buf16[i] = cpu_to_le16(readw(mmio));
3570 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003571
3572 /* Transfer trailing 1 byte, if any. */
3573 if (unlikely(buflen & 0x01)) {
3574 u16 align_buf[1] = { 0 };
3575 unsigned char *trailing_buf = buf + buflen - 1;
3576
3577 if (write_data) {
3578 memcpy(align_buf, trailing_buf, 1);
3579 writew(le16_to_cpu(align_buf[0]), mmio);
3580 } else {
3581 align_buf[0] = cpu_to_le16(readw(mmio));
3582 memcpy(trailing_buf, align_buf, 1);
3583 }
3584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585}
3586
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003587/**
3588 * ata_pio_data_xfer - Transfer data by PIO
3589 * @ap: port to read/write
3590 * @buf: data buffer
3591 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003592 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003593 *
3594 * Transfer data from/to the device data register by PIO.
3595 *
3596 * LOCKING:
3597 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003598 */
3599
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3601 unsigned int buflen, int write_data)
3602{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003603 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003605 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003607 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003609 insw(ap->ioaddr.data_addr, buf, words);
3610
3611 /* Transfer trailing 1 byte, if any. */
3612 if (unlikely(buflen & 0x01)) {
3613 u16 align_buf[1] = { 0 };
3614 unsigned char *trailing_buf = buf + buflen - 1;
3615
3616 if (write_data) {
3617 memcpy(align_buf, trailing_buf, 1);
3618 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3619 } else {
3620 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3621 memcpy(trailing_buf, align_buf, 1);
3622 }
3623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624}
3625
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003626/**
3627 * ata_data_xfer - Transfer data from/to the data register.
3628 * @ap: port to read/write
3629 * @buf: data buffer
3630 * @buflen: buffer length
3631 * @do_write: read/write
3632 *
3633 * Transfer data from/to the device data register.
3634 *
3635 * LOCKING:
3636 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003637 */
3638
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3640 unsigned int buflen, int do_write)
3641{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003642 /* Make the crap hardware pay the costs not the good stuff */
3643 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3644 unsigned long flags;
3645 local_irq_save(flags);
3646 if (ap->flags & ATA_FLAG_MMIO)
3647 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3648 else
3649 ata_pio_data_xfer(ap, buf, buflen, do_write);
3650 local_irq_restore(flags);
3651 } else {
3652 if (ap->flags & ATA_FLAG_MMIO)
3653 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3654 else
3655 ata_pio_data_xfer(ap, buf, buflen, do_write);
3656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657}
3658
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003659/**
3660 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3661 * @qc: Command on going
3662 *
3663 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3664 *
3665 * LOCKING:
3666 * Inherited from caller.
3667 */
3668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669static void ata_pio_sector(struct ata_queued_cmd *qc)
3670{
3671 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003672 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 struct ata_port *ap = qc->ap;
3674 struct page *page;
3675 unsigned int offset;
3676 unsigned char *buf;
3677
3678 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003679 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
3681 page = sg[qc->cursg].page;
3682 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3683
3684 /* get the current page and offset */
3685 page = nth_page(page, (offset >> PAGE_SHIFT));
3686 offset %= PAGE_SIZE;
3687
3688 buf = kmap(page) + offset;
3689
3690 qc->cursect++;
3691 qc->cursg_ofs++;
3692
Albert Lee32529e02005-05-26 03:49:42 -04003693 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 qc->cursg++;
3695 qc->cursg_ofs = 0;
3696 }
3697
3698 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3699
3700 /* do the actual data transfer */
3701 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3702 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3703
3704 kunmap(page);
3705}
3706
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003707/**
3708 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3709 * @qc: Command on going
3710 * @bytes: number of bytes
3711 *
3712 * Transfer Transfer data from/to the ATAPI device.
3713 *
3714 * LOCKING:
3715 * Inherited from caller.
3716 *
3717 */
3718
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3720{
3721 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003722 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 struct ata_port *ap = qc->ap;
3724 struct page *page;
3725 unsigned char *buf;
3726 unsigned int offset, count;
3727
Albert Lee563a6e12005-08-12 14:17:50 +08003728 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003729 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
3731next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003732 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003733 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003734 * The end of qc->sg is reached and the device expects
3735 * more data to transfer. In order not to overrun qc->sg
3736 * and fulfill length specified in the byte count register,
3737 * - for read case, discard trailing data from the device
3738 * - for write case, padding zero data to the device
3739 */
3740 u16 pad_buf[1] = { 0 };
3741 unsigned int words = bytes >> 1;
3742 unsigned int i;
3743
3744 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003745 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003746 ap->id, bytes);
3747
3748 for (i = 0; i < words; i++)
3749 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3750
Albert Lee14be71f2005-09-27 17:36:35 +08003751 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003752 return;
3753 }
3754
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003755 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 page = sg->page;
3758 offset = sg->offset + qc->cursg_ofs;
3759
3760 /* get the current page and offset */
3761 page = nth_page(page, (offset >> PAGE_SHIFT));
3762 offset %= PAGE_SIZE;
3763
Albert Lee6952df02005-06-06 15:56:03 +08003764 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003765 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
3767 /* don't cross page boundaries */
3768 count = min(count, (unsigned int)PAGE_SIZE - offset);
3769
3770 buf = kmap(page) + offset;
3771
3772 bytes -= count;
3773 qc->curbytes += count;
3774 qc->cursg_ofs += count;
3775
Albert Lee32529e02005-05-26 03:49:42 -04003776 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 qc->cursg++;
3778 qc->cursg_ofs = 0;
3779 }
3780
3781 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3782
3783 /* do the actual data transfer */
3784 ata_data_xfer(ap, buf, count, do_write);
3785
3786 kunmap(page);
3787
Albert Lee563a6e12005-08-12 14:17:50 +08003788 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790}
3791
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003792/**
3793 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3794 * @qc: Command on going
3795 *
3796 * Transfer Transfer data from/to the ATAPI device.
3797 *
3798 * LOCKING:
3799 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003800 */
3801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3803{
3804 struct ata_port *ap = qc->ap;
3805 struct ata_device *dev = qc->dev;
3806 unsigned int ireason, bc_lo, bc_hi, bytes;
3807 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3808
3809 ap->ops->tf_read(ap, &qc->tf);
3810 ireason = qc->tf.nsect;
3811 bc_lo = qc->tf.lbam;
3812 bc_hi = qc->tf.lbah;
3813 bytes = (bc_hi << 8) | bc_lo;
3814
3815 /* shall be cleared to zero, indicating xfer of data */
3816 if (ireason & (1 << 0))
3817 goto err_out;
3818
3819 /* make sure transfer direction matches expected */
3820 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3821 if (do_write != i_write)
3822 goto err_out;
3823
3824 __atapi_pio_bytes(qc, bytes);
3825
3826 return;
3827
3828err_out:
3829 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3830 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003831 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003832 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833}
3834
3835/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003836 * ata_pio_block - start PIO on a block
Tejun Heoc91af2c2006-04-02 18:51:53 +09003837 * @qc: qc to transfer block for
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 *
3839 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003840 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003842static void ata_pio_block(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003844 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 u8 status;
3846
3847 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003848 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 * Sometimes when we enter, BSY will be cleared in
3850 * a chk-status or two. If not, the drive is probably seeking
3851 * or something. Snooze for a couple msecs, then
3852 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003853 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 */
3855 status = ata_busy_wait(ap, ATA_BUSY, 5);
3856 if (status & ATA_BUSY) {
3857 msleep(2);
3858 status = ata_busy_wait(ap, ATA_BUSY, 10);
3859 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003860 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3862 return;
3863 }
3864 }
3865
Albert Leefe79e682005-12-06 11:34:59 +08003866 /* check error */
3867 if (status & (ATA_ERR | ATA_DF)) {
3868 qc->err_mask |= AC_ERR_DEV;
3869 ap->hsm_task_state = HSM_ST_ERR;
3870 return;
3871 }
3872
3873 /* transfer data if any */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 if (is_atapi_taskfile(&qc->tf)) {
Albert Leefe79e682005-12-06 11:34:59 +08003875 /* DRQ=0 means no more data to transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003877 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 return;
3879 }
3880
3881 atapi_pio_bytes(qc);
3882 } else {
3883 /* handle BSY=0, DRQ=0 as error */
3884 if ((status & ATA_DRQ) == 0) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003885 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003886 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 return;
3888 }
3889
3890 ata_pio_sector(qc);
3891 }
3892}
3893
Tejun Heoc91af2c2006-04-02 18:51:53 +09003894static void ata_pio_error(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003896 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
Albert Lee0565c262006-02-13 18:55:25 +08003898 if (qc->tf.command != ATA_CMD_PACKET)
Tejun Heod63cb4a2006-04-02 18:51:52 +09003899 printk(KERN_WARNING "ata%u: dev %u PIO error\n",
3900 ap->id, qc->dev->devno);
Albert Lee0565c262006-02-13 18:55:25 +08003901
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003902 /* make sure qc->err_mask is available to
Albert Lee1c848982005-12-05 15:40:15 +08003903 * know what's wrong and recover
3904 */
Tejun Heoa4631472006-02-11 19:11:13 +09003905 WARN_ON(qc->err_mask == 0);
Albert Lee1c848982005-12-05 15:40:15 +08003906
Albert Lee14be71f2005-09-27 17:36:35 +08003907 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Albert Leea22e2eb2005-12-05 15:38:02 +08003909 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910}
3911
3912static void ata_pio_task(void *_data)
3913{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003914 struct ata_queued_cmd *qc = _data;
3915 struct ata_port *ap = qc->ap;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003916 unsigned long timeout;
3917 int qc_completed;
3918
3919fsm_start:
3920 timeout = 0;
3921 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Albert Lee14be71f2005-09-27 17:36:35 +08003923 switch (ap->hsm_task_state) {
3924 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 return;
3926
Albert Lee14be71f2005-09-27 17:36:35 +08003927 case HSM_ST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003928 ata_pio_block(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 break;
3930
Albert Lee14be71f2005-09-27 17:36:35 +08003931 case HSM_ST_LAST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003932 qc_completed = ata_pio_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 break;
3934
Albert Lee14be71f2005-09-27 17:36:35 +08003935 case HSM_ST_POLL:
3936 case HSM_ST_LAST_POLL:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003937 timeout = ata_pio_poll(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 break;
3939
Albert Lee14be71f2005-09-27 17:36:35 +08003940 case HSM_ST_TMOUT:
3941 case HSM_ST_ERR:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003942 ata_pio_error(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 return;
3944 }
3945
3946 if (timeout)
Tejun Heoc91af2c2006-04-02 18:51:53 +09003947 ata_port_queue_task(ap, ata_pio_task, qc, timeout);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003948 else if (!qc_completed)
3949 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950}
3951
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952/**
Tejun Heo8061f5f2006-03-05 15:29:09 +09003953 * atapi_packet_task - Write CDB bytes to hardware
Tejun Heoc91af2c2006-04-02 18:51:53 +09003954 * @_data: qc in progress
Tejun Heo8061f5f2006-03-05 15:29:09 +09003955 *
3956 * When device has indicated its readiness to accept
3957 * a CDB, this function is called. Send the CDB.
3958 * If DMA is to be performed, exit immediately.
3959 * Otherwise, we are in polling mode, so poll
3960 * status under operation succeeds or fails.
3961 *
3962 * LOCKING:
3963 * Kernel thread context (may sleep)
3964 */
Tejun Heo8061f5f2006-03-05 15:29:09 +09003965static void atapi_packet_task(void *_data)
3966{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003967 struct ata_queued_cmd *qc = _data;
3968 struct ata_port *ap = qc->ap;
Tejun Heo8061f5f2006-03-05 15:29:09 +09003969 u8 status;
3970
Tejun Heo8061f5f2006-03-05 15:29:09 +09003971 /* sleep-wait for BSY to clear */
3972 DPRINTK("busy wait\n");
3973 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
3974 qc->err_mask |= AC_ERR_TIMEOUT;
3975 goto err_out;
3976 }
3977
3978 /* make sure DRQ is set */
3979 status = ata_chk_status(ap);
3980 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
3981 qc->err_mask |= AC_ERR_HSM;
3982 goto err_out;
3983 }
3984
3985 /* send SCSI cdb */
3986 DPRINTK("send cdb\n");
3987 WARN_ON(qc->dev->cdb_len < 12);
3988
3989 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
3990 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
3991 unsigned long flags;
3992
3993 /* Once we're done issuing command and kicking bmdma,
3994 * irq handler takes over. To not lose irq, we need
3995 * to clear NOINTR flag before sending cdb, but
3996 * interrupt handler shouldn't be invoked before we're
3997 * finished. Hence, the following locking.
3998 */
3999 spin_lock_irqsave(&ap->host_set->lock, flags);
4000 ap->flags &= ~ATA_FLAG_NOINTR;
4001 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
4002 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
4003 ap->ops->bmdma_start(qc); /* initiate bmdma */
4004 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4005 } else {
4006 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
4007
4008 /* PIO commands are handled by polling */
4009 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004010 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Tejun Heo8061f5f2006-03-05 15:29:09 +09004011 }
4012
4013 return;
4014
4015err_out:
4016 ata_poll_qc_complete(qc);
4017}
4018
4019/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 * ata_qc_new - Request an available ATA command, for queueing
4021 * @ap: Port associated with device @dev
4022 * @dev: Device from whom we request an available command structure
4023 *
4024 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004025 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 */
4027
4028static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4029{
4030 struct ata_queued_cmd *qc = NULL;
4031 unsigned int i;
4032
4033 for (i = 0; i < ATA_MAX_QUEUE; i++)
4034 if (!test_and_set_bit(i, &ap->qactive)) {
4035 qc = ata_qc_from_tag(ap, i);
4036 break;
4037 }
4038
4039 if (qc)
4040 qc->tag = i;
4041
4042 return qc;
4043}
4044
4045/**
4046 * ata_qc_new_init - Request an available ATA command, and initialize it
4047 * @ap: Port associated with device @dev
4048 * @dev: Device from whom we request an available command structure
4049 *
4050 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004051 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 */
4053
4054struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
4055 struct ata_device *dev)
4056{
4057 struct ata_queued_cmd *qc;
4058
4059 qc = ata_qc_new(ap);
4060 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 qc->scsicmd = NULL;
4062 qc->ap = ap;
4063 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004065 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 }
4067
4068 return qc;
4069}
4070
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071/**
4072 * ata_qc_free - free unused ata_queued_cmd
4073 * @qc: Command to complete
4074 *
4075 * Designed to free unused ata_queued_cmd object
4076 * in case something prevents using it.
4077 *
4078 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004079 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 */
4081void ata_qc_free(struct ata_queued_cmd *qc)
4082{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004083 struct ata_port *ap = qc->ap;
4084 unsigned int tag;
4085
Tejun Heoa4631472006-02-11 19:11:13 +09004086 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
Tejun Heo4ba946e2006-01-23 13:09:36 +09004088 qc->flags = 0;
4089 tag = qc->tag;
4090 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004091 qc->tag = ATA_TAG_POISON;
4092 clear_bit(tag, &ap->qactive);
4093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094}
4095
Tejun Heo76014422006-02-11 15:13:49 +09004096void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097{
Tejun Heoa4631472006-02-11 19:11:13 +09004098 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4099 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
4101 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4102 ata_sg_clean(qc);
4103
Tejun Heo7401abf2006-05-15 20:57:32 +09004104 /* command should be marked inactive atomically with qc completion */
4105 qc->ap->active_tag = ATA_TAG_POISON;
4106
Albert Lee3f3791d2005-08-16 14:25:38 +08004107 /* atapi: mark qc as inactive to prevent the interrupt handler
4108 * from completing the command twice later, before the error handler
4109 * is called. (when rc != 0 and atapi request sense is needed)
4110 */
4111 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4112
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004114 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115}
4116
4117static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4118{
4119 struct ata_port *ap = qc->ap;
4120
4121 switch (qc->tf.protocol) {
4122 case ATA_PROT_DMA:
4123 case ATA_PROT_ATAPI_DMA:
4124 return 1;
4125
4126 case ATA_PROT_ATAPI:
4127 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 if (ap->flags & ATA_FLAG_PIO_DMA)
4129 return 1;
4130
4131 /* fall through */
4132
4133 default:
4134 return 0;
4135 }
4136
4137 /* never reached */
4138}
4139
4140/**
4141 * ata_qc_issue - issue taskfile to device
4142 * @qc: command to issue to device
4143 *
4144 * Prepare an ATA command to submission to device.
4145 * This includes mapping the data into a DMA-able
4146 * area, filling in the S/G table, and finally
4147 * writing the taskfile to hardware, starting the command.
4148 *
4149 * LOCKING:
4150 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004152void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153{
4154 struct ata_port *ap = qc->ap;
4155
Tejun Heoe4a70e72006-03-31 20:36:47 +09004156 qc->ap->active_tag = qc->tag;
4157 qc->flags |= ATA_QCFLAG_ACTIVE;
4158
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 if (ata_should_dma_map(qc)) {
4160 if (qc->flags & ATA_QCFLAG_SG) {
4161 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004162 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4164 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004165 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 }
4167 } else {
4168 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4169 }
4170
4171 ap->ops->qc_prep(qc);
4172
Tejun Heo8e0e6942006-03-31 20:41:11 +09004173 qc->err_mask |= ap->ops->qc_issue(qc);
4174 if (unlikely(qc->err_mask))
4175 goto err;
4176 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
Tejun Heo8e436af2006-01-23 13:09:36 +09004178sg_err:
4179 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004180 qc->err_mask |= AC_ERR_SYSTEM;
4181err:
4182 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183}
4184
4185/**
4186 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4187 * @qc: command to issue to device
4188 *
4189 * Using various libata functions and hooks, this function
4190 * starts an ATA command. ATA commands are grouped into
4191 * classes called "protocols", and issuing each type of protocol
4192 * is slightly different.
4193 *
Edward Falk0baab862005-06-02 18:17:13 -04004194 * May be used as the qc_issue() entry in ata_port_operations.
4195 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 * LOCKING:
4197 * spin_lock_irqsave(host_set lock)
4198 *
4199 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004200 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 */
4202
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004203unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204{
4205 struct ata_port *ap = qc->ap;
4206
4207 ata_dev_select(ap, qc->dev->devno, 1, 0);
4208
4209 switch (qc->tf.protocol) {
4210 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05004211 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 break;
4213
4214 case ATA_PROT_DMA:
4215 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4216 ap->ops->bmdma_setup(qc); /* set up bmdma */
4217 ap->ops->bmdma_start(qc); /* initiate bmdma */
4218 break;
4219
4220 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
4221 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004222 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08004223 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004224 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 break;
4226
4227 case ATA_PROT_ATAPI:
4228 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004229 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004230 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 break;
4232
4233 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09004234 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05004235 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004236 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 break;
4238
4239 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09004240 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4242 ap->ops->bmdma_setup(qc); /* set up bmdma */
Tejun Heoc91af2c2006-04-02 18:51:53 +09004243 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 break;
4245
4246 default:
4247 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004248 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 }
4250
4251 return 0;
4252}
4253
4254/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 * ata_host_intr - Handle host interrupt for given (port, task)
4256 * @ap: Port on which interrupt arrived (possibly...)
4257 * @qc: Taskfile currently active in engine
4258 *
4259 * Handle host interrupt for given queued command. Currently,
4260 * only DMA interrupts are handled. All other commands are
4261 * handled via polling with interrupts disabled (nIEN bit).
4262 *
4263 * LOCKING:
4264 * spin_lock_irqsave(host_set lock)
4265 *
4266 * RETURNS:
4267 * One if interrupt was handled, zero if not (shared irq).
4268 */
4269
4270inline unsigned int ata_host_intr (struct ata_port *ap,
4271 struct ata_queued_cmd *qc)
4272{
4273 u8 status, host_stat;
4274
4275 switch (qc->tf.protocol) {
4276
4277 case ATA_PROT_DMA:
4278 case ATA_PROT_ATAPI_DMA:
4279 case ATA_PROT_ATAPI:
4280 /* check status of DMA engine */
4281 host_stat = ap->ops->bmdma_status(ap);
4282 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4283
4284 /* if it's not our irq... */
4285 if (!(host_stat & ATA_DMA_INTR))
4286 goto idle_irq;
4287
4288 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004289 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
4291 /* fall through */
4292
4293 case ATA_PROT_ATAPI_NODATA:
4294 case ATA_PROT_NODATA:
4295 /* check altstatus */
4296 status = ata_altstatus(ap);
4297 if (status & ATA_BUSY)
4298 goto idle_irq;
4299
4300 /* check main status, clearing INTRQ */
4301 status = ata_chk_status(ap);
4302 if (unlikely(status & ATA_BUSY))
4303 goto idle_irq;
4304 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4305 ap->id, qc->tf.protocol, status);
4306
4307 /* ack bmdma irq events */
4308 ap->ops->irq_clear(ap);
4309
4310 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004311 qc->err_mask |= ac_err_mask(status);
4312 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 break;
4314
4315 default:
4316 goto idle_irq;
4317 }
4318
4319 return 1; /* irq handled */
4320
4321idle_irq:
4322 ap->stats.idle_irq++;
4323
4324#ifdef ATA_IRQ_TRAP
4325 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 ata_irq_ack(ap, 0); /* debug trap */
4327 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
Alan Cox23cfce82006-03-21 16:06:53 +00004328 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 }
4330#endif
4331 return 0; /* irq not handled */
4332}
4333
4334/**
4335 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004336 * @irq: irq line (unused)
4337 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 * @regs: unused
4339 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004340 * Default interrupt handler for PCI IDE devices. Calls
4341 * ata_host_intr() for each port that is not disabled.
4342 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004344 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 *
4346 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004347 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 */
4349
4350irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4351{
4352 struct ata_host_set *host_set = dev_instance;
4353 unsigned int i;
4354 unsigned int handled = 0;
4355 unsigned long flags;
4356
4357 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4358 spin_lock_irqsave(&host_set->lock, flags);
4359
4360 for (i = 0; i < host_set->n_ports; i++) {
4361 struct ata_port *ap;
4362
4363 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004364 if (ap &&
Tejun Heo198e0fe2006-04-02 18:51:52 +09004365 !(ap->flags & (ATA_FLAG_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 struct ata_queued_cmd *qc;
4367
4368 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08004369 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4370 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 handled |= ata_host_intr(ap, qc);
4372 }
4373 }
4374
4375 spin_unlock_irqrestore(&host_set->lock, flags);
4376
4377 return IRQ_RETVAL(handled);
4378}
4379
Edward Falk0baab862005-06-02 18:17:13 -04004380
Jens Axboe9b847542006-01-06 09:28:07 +01004381/*
4382 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4383 * without filling any other registers
4384 */
4385static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4386 u8 cmd)
4387{
4388 struct ata_taskfile tf;
4389 int err;
4390
4391 ata_tf_init(ap, &tf, dev->devno);
4392
4393 tf.command = cmd;
4394 tf.flags |= ATA_TFLAG_DEVICE;
4395 tf.protocol = ATA_PROT_NODATA;
4396
Tejun Heod69cf372006-04-02 18:51:53 +09004397 err = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004398 if (err)
4399 printk(KERN_ERR "%s: ata command failed: %d\n",
4400 __FUNCTION__, err);
4401
4402 return err;
4403}
4404
4405static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4406{
4407 u8 cmd;
4408
4409 if (!ata_try_flush_cache(dev))
4410 return 0;
4411
4412 if (ata_id_has_flush_ext(dev->id))
4413 cmd = ATA_CMD_FLUSH_EXT;
4414 else
4415 cmd = ATA_CMD_FLUSH;
4416
4417 return ata_do_simple_cmd(ap, dev, cmd);
4418}
4419
4420static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4421{
4422 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4423}
4424
4425static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4426{
4427 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4428}
4429
4430/**
4431 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004432 * @ap: port the device is connected to
4433 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004434 *
4435 * Kick the drive back into action, by sending it an idle immediate
4436 * command and making sure its transfer mode matches between drive
4437 * and host.
4438 *
4439 */
4440int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4441{
4442 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004443 struct ata_device *failed_dev;
Jens Axboe9b847542006-01-06 09:28:07 +01004444 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004445 while (ata_set_mode(ap, &failed_dev))
4446 ata_dev_disable(ap, failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004447 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004448 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004449 return 0;
4450 if (dev->class == ATA_DEV_ATA)
4451 ata_start_drive(ap, dev);
4452
4453 return 0;
4454}
4455
4456/**
4457 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004458 * @ap: port the device is connected to
4459 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004460 *
4461 * Flush the cache on the drive, if appropriate, then issue a
4462 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004463 */
Nigel Cunningham082776e2006-03-23 23:22:16 +10004464int ata_device_suspend(struct ata_port *ap, struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004465{
Tejun Heoe1211e32006-04-01 01:38:18 +09004466 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004467 return 0;
4468 if (dev->class == ATA_DEV_ATA)
4469 ata_flush_cache(ap, dev);
4470
Nigel Cunningham082776e2006-03-23 23:22:16 +10004471 if (state.event != PM_EVENT_FREEZE)
4472 ata_standby_drive(ap, dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004473 ap->flags |= ATA_FLAG_SUSPENDED;
4474 return 0;
4475}
4476
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004477/**
4478 * ata_port_start - Set port up for dma.
4479 * @ap: Port to initialize
4480 *
4481 * Called just after data structures for each port are
4482 * initialized. Allocates space for PRD table.
4483 *
4484 * May be used as the port_start() entry in ata_port_operations.
4485 *
4486 * LOCKING:
4487 * Inherited from caller.
4488 */
4489
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490int ata_port_start (struct ata_port *ap)
4491{
Brian King2f1f6102006-03-23 17:30:15 -06004492 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004493 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494
4495 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4496 if (!ap->prd)
4497 return -ENOMEM;
4498
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004499 rc = ata_pad_alloc(ap, dev);
4500 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004501 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004502 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004503 }
4504
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4506
4507 return 0;
4508}
4509
Edward Falk0baab862005-06-02 18:17:13 -04004510
4511/**
4512 * ata_port_stop - Undo ata_port_start()
4513 * @ap: Port to shut down
4514 *
4515 * Frees the PRD table.
4516 *
4517 * May be used as the port_stop() entry in ata_port_operations.
4518 *
4519 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004520 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004521 */
4522
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523void ata_port_stop (struct ata_port *ap)
4524{
Brian King2f1f6102006-03-23 17:30:15 -06004525 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526
4527 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004528 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529}
4530
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004531void ata_host_stop (struct ata_host_set *host_set)
4532{
4533 if (host_set->mmio_base)
4534 iounmap(host_set->mmio_base);
4535}
4536
4537
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538/**
4539 * ata_host_remove - Unregister SCSI host structure with upper layers
4540 * @ap: Port to unregister
4541 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4542 *
4543 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004544 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 */
4546
4547static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4548{
4549 struct Scsi_Host *sh = ap->host;
4550
4551 DPRINTK("ENTER\n");
4552
4553 if (do_unregister)
4554 scsi_remove_host(sh);
4555
4556 ap->ops->port_stop(ap);
4557}
4558
4559/**
4560 * ata_host_init - Initialize an ata_port structure
4561 * @ap: Structure to initialize
4562 * @host: associated SCSI mid-layer structure
4563 * @host_set: Collection of hosts to which @ap belongs
4564 * @ent: Probe information provided by low-level driver
4565 * @port_no: Port number associated with this ata_port
4566 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004567 * Initialize a new ata_port structure, and its associated
4568 * scsi_host.
4569 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004571 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 */
4573
4574static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4575 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004576 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577{
4578 unsigned int i;
4579
4580 host->max_id = 16;
4581 host->max_lun = 1;
4582 host->max_channel = 1;
4583 host->unique_id = ata_unique_id++;
4584 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004585
Tejun Heo198e0fe2006-04-02 18:51:52 +09004586 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 ap->id = host->unique_id;
4588 ap->host = host;
4589 ap->ctl = ATA_DEVCTL_OBS;
4590 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06004591 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 ap->port_no = port_no;
4593 ap->hard_port_no =
4594 ent->legacy_mode ? ent->hard_port_no : port_no;
4595 ap->pio_mask = ent->pio_mask;
4596 ap->mwdma_mask = ent->mwdma_mask;
4597 ap->udma_mask = ent->udma_mask;
4598 ap->flags |= ent->host_flags;
4599 ap->ops = ent->port_ops;
4600 ap->cbl = ATA_CBL_NONE;
Tejun Heo1c3fae42006-04-02 20:53:28 +09004601 ap->sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 ap->active_tag = ATA_TAG_POISON;
4603 ap->last_ctl = 0xFF;
4604
Tejun Heo86e45b62006-03-05 15:29:09 +09004605 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004606 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
Tejun Heoacf356b2006-03-24 14:07:50 +09004608 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4609 struct ata_device *dev = &ap->device[i];
4610 dev->devno = i;
4611 dev->pio_mask = UINT_MAX;
4612 dev->mwdma_mask = UINT_MAX;
4613 dev->udma_mask = UINT_MAX;
4614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615
4616#ifdef ATA_IRQ_TRAP
4617 ap->stats.unhandled_irq = 1;
4618 ap->stats.idle_irq = 1;
4619#endif
4620
4621 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4622}
4623
4624/**
4625 * ata_host_add - Attach low-level ATA driver to system
4626 * @ent: Information provided by low-level driver
4627 * @host_set: Collections of ports to which we add
4628 * @port_no: Port number associated with this host
4629 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004630 * Attach low-level ATA driver to system.
4631 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004633 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 *
4635 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004636 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 */
4638
Jeff Garzik057ace52005-10-22 14:27:05 -04004639static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 struct ata_host_set *host_set,
4641 unsigned int port_no)
4642{
4643 struct Scsi_Host *host;
4644 struct ata_port *ap;
4645 int rc;
4646
4647 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09004648
4649 if (!ent->port_ops->probe_reset &&
4650 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4651 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4652 port_no);
4653 return NULL;
4654 }
4655
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4657 if (!host)
4658 return NULL;
4659
Tejun Heo30afc842006-03-18 18:40:14 +09004660 host->transportt = &ata_scsi_transport_template;
4661
Jeff Garzik35bb94b2006-04-11 13:12:34 -04004662 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663
4664 ata_host_init(ap, host, host_set, ent, port_no);
4665
4666 rc = ap->ops->port_start(ap);
4667 if (rc)
4668 goto err_out;
4669
4670 return ap;
4671
4672err_out:
4673 scsi_host_put(host);
4674 return NULL;
4675}
4676
4677/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004678 * ata_device_add - Register hardware device with ATA and SCSI layers
4679 * @ent: Probe information describing hardware device to be registered
4680 *
4681 * This function processes the information provided in the probe
4682 * information struct @ent, allocates the necessary ATA and SCSI
4683 * host information structures, initializes them, and registers
4684 * everything with requisite kernel subsystems.
4685 *
4686 * This function requests irqs, probes the ATA bus, and probes
4687 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 *
4689 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004690 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 *
4692 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004693 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 */
4695
Jeff Garzik057ace52005-10-22 14:27:05 -04004696int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697{
4698 unsigned int count = 0, i;
4699 struct device *dev = ent->dev;
4700 struct ata_host_set *host_set;
4701
4702 DPRINTK("ENTER\n");
4703 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004704 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4706 if (!host_set)
4707 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 spin_lock_init(&host_set->lock);
4709
4710 host_set->dev = dev;
4711 host_set->n_ports = ent->n_ports;
4712 host_set->irq = ent->irq;
4713 host_set->mmio_base = ent->mmio_base;
4714 host_set->private_data = ent->private_data;
4715 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01004716 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717
4718 /* register each port bound to this device */
4719 for (i = 0; i < ent->n_ports; i++) {
4720 struct ata_port *ap;
4721 unsigned long xfer_mode_mask;
4722
4723 ap = ata_host_add(ent, host_set, i);
4724 if (!ap)
4725 goto err_out;
4726
4727 host_set->ports[i] = ap;
4728 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4729 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4730 (ap->pio_mask << ATA_SHIFT_PIO);
4731
4732 /* print per-port info to dmesg */
4733 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4734 "bmdma 0x%lX irq %lu\n",
4735 ap->id,
4736 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4737 ata_mode_string(xfer_mode_mask),
4738 ap->ioaddr.cmd_addr,
4739 ap->ioaddr.ctl_addr,
4740 ap->ioaddr.bmdma_addr,
4741 ent->irq);
4742
4743 ata_chk_status(ap);
4744 host_set->ops->irq_clear(ap);
4745 count++;
4746 }
4747
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004748 if (!count)
4749 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750
4751 /* obtain irq, that is shared between channels */
4752 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4753 DRV_NAME, host_set))
4754 goto err_out;
4755
4756 /* perform each probe synchronously */
4757 DPRINTK("probe begin\n");
4758 for (i = 0; i < count; i++) {
4759 struct ata_port *ap;
4760 int rc;
4761
4762 ap = host_set->ports[i];
4763
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004764 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004766 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767
4768 if (rc) {
4769 /* FIXME: do something useful here?
4770 * Current libata behavior will
4771 * tear down everything when
4772 * the module is removed
4773 * or the h/w is unplugged.
4774 */
4775 }
4776
4777 rc = scsi_add_host(ap->host, dev);
4778 if (rc) {
4779 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4780 ap->id);
4781 /* FIXME: do something useful here */
4782 /* FIXME: handle unconditional calls to
4783 * scsi_scan_host and ata_host_remove, below,
4784 * at the very least
4785 */
4786 }
4787 }
4788
4789 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004790 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 for (i = 0; i < count; i++) {
4792 struct ata_port *ap = host_set->ports[i];
4793
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004794 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 }
4796
4797 dev_set_drvdata(dev, host_set);
4798
4799 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4800 return ent->n_ports; /* success */
4801
4802err_out:
4803 for (i = 0; i < count; i++) {
4804 ata_host_remove(host_set->ports[i], 1);
4805 scsi_host_put(host_set->ports[i]->host);
4806 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004807err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 kfree(host_set);
4809 VPRINTK("EXIT, returning 0\n");
4810 return 0;
4811}
4812
4813/**
Alan Cox17b14452005-09-15 15:44:00 +01004814 * ata_host_set_remove - PCI layer callback for device removal
4815 * @host_set: ATA host set that was removed
4816 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004817 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01004818 * objects.
4819 *
4820 * LOCKING:
4821 * Inherited from calling layer (may sleep).
4822 */
4823
Alan Cox17b14452005-09-15 15:44:00 +01004824void ata_host_set_remove(struct ata_host_set *host_set)
4825{
4826 struct ata_port *ap;
4827 unsigned int i;
4828
4829 for (i = 0; i < host_set->n_ports; i++) {
4830 ap = host_set->ports[i];
4831 scsi_remove_host(ap->host);
4832 }
4833
4834 free_irq(host_set->irq, host_set);
4835
4836 for (i = 0; i < host_set->n_ports; i++) {
4837 ap = host_set->ports[i];
4838
4839 ata_scsi_release(ap->host);
4840
4841 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4842 struct ata_ioports *ioaddr = &ap->ioaddr;
4843
4844 if (ioaddr->cmd_addr == 0x1f0)
4845 release_region(0x1f0, 8);
4846 else if (ioaddr->cmd_addr == 0x170)
4847 release_region(0x170, 8);
4848 }
4849
4850 scsi_host_put(ap->host);
4851 }
4852
4853 if (host_set->ops->host_stop)
4854 host_set->ops->host_stop(host_set);
4855
4856 kfree(host_set);
4857}
4858
4859/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 * ata_scsi_release - SCSI layer callback hook for host unload
4861 * @host: libata host to be unloaded
4862 *
4863 * Performs all duties necessary to shut down a libata port...
4864 * Kill port kthread, disable port, and release resources.
4865 *
4866 * LOCKING:
4867 * Inherited from SCSI layer.
4868 *
4869 * RETURNS:
4870 * One.
4871 */
4872
4873int ata_scsi_release(struct Scsi_Host *host)
4874{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04004875 struct ata_port *ap = ata_shost_to_port(host);
Tejun Heod9572b12006-03-01 16:09:35 +09004876 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877
4878 DPRINTK("ENTER\n");
4879
4880 ap->ops->port_disable(ap);
4881 ata_host_remove(ap, 0);
Tejun Heod9572b12006-03-01 16:09:35 +09004882 for (i = 0; i < ATA_MAX_DEVICES; i++)
4883 kfree(ap->device[i].id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884
4885 DPRINTK("EXIT\n");
4886 return 1;
4887}
4888
4889/**
4890 * ata_std_ports - initialize ioaddr with standard port offsets.
4891 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04004892 *
4893 * Utility function which initializes data_addr, error_addr,
4894 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4895 * device_addr, status_addr, and command_addr to standard offsets
4896 * relative to cmd_addr.
4897 *
4898 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 */
Edward Falk0baab862005-06-02 18:17:13 -04004900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901void ata_std_ports(struct ata_ioports *ioaddr)
4902{
4903 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4904 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4905 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4906 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4907 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4908 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4909 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4910 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4911 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
4912 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
4913}
4914
Edward Falk0baab862005-06-02 18:17:13 -04004915
Jeff Garzik374b1872005-08-30 05:42:52 -04004916#ifdef CONFIG_PCI
4917
4918void ata_pci_host_stop (struct ata_host_set *host_set)
4919{
4920 struct pci_dev *pdev = to_pci_dev(host_set->dev);
4921
4922 pci_iounmap(pdev, host_set->mmio_base);
4923}
4924
Edward Falk0baab862005-06-02 18:17:13 -04004925/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 * ata_pci_remove_one - PCI layer callback for device removal
4927 * @pdev: PCI device that was removed
4928 *
4929 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004930 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 * Handle this by unregistering all objects associated
4932 * with this PCI device. Free those objects. Then finally
4933 * release PCI resources and disable device.
4934 *
4935 * LOCKING:
4936 * Inherited from PCI layer (may sleep).
4937 */
4938
4939void ata_pci_remove_one (struct pci_dev *pdev)
4940{
4941 struct device *dev = pci_dev_to_dev(pdev);
4942 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943
Alan Cox17b14452005-09-15 15:44:00 +01004944 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 pci_release_regions(pdev);
4946 pci_disable_device(pdev);
4947 dev_set_drvdata(dev, NULL);
4948}
4949
4950/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04004951int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952{
4953 unsigned long tmp = 0;
4954
4955 switch (bits->width) {
4956 case 1: {
4957 u8 tmp8 = 0;
4958 pci_read_config_byte(pdev, bits->reg, &tmp8);
4959 tmp = tmp8;
4960 break;
4961 }
4962 case 2: {
4963 u16 tmp16 = 0;
4964 pci_read_config_word(pdev, bits->reg, &tmp16);
4965 tmp = tmp16;
4966 break;
4967 }
4968 case 4: {
4969 u32 tmp32 = 0;
4970 pci_read_config_dword(pdev, bits->reg, &tmp32);
4971 tmp = tmp32;
4972 break;
4973 }
4974
4975 default:
4976 return -EINVAL;
4977 }
4978
4979 tmp &= bits->mask;
4980
4981 return (tmp == bits->val) ? 1 : 0;
4982}
Jens Axboe9b847542006-01-06 09:28:07 +01004983
4984int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
4985{
4986 pci_save_state(pdev);
4987 pci_disable_device(pdev);
4988 pci_set_power_state(pdev, PCI_D3hot);
4989 return 0;
4990}
4991
4992int ata_pci_device_resume(struct pci_dev *pdev)
4993{
4994 pci_set_power_state(pdev, PCI_D0);
4995 pci_restore_state(pdev);
4996 pci_enable_device(pdev);
4997 pci_set_master(pdev);
4998 return 0;
4999}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000#endif /* CONFIG_PCI */
5001
5002
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003static int __init ata_init(void)
5004{
5005 ata_wq = create_workqueue("ata");
5006 if (!ata_wq)
5007 return -ENOMEM;
5008
5009 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5010 return 0;
5011}
5012
5013static void __exit ata_exit(void)
5014{
5015 destroy_workqueue(ata_wq);
5016}
5017
5018module_init(ata_init);
5019module_exit(ata_exit);
5020
Jeff Garzik67846b32005-10-05 02:58:32 -04005021static unsigned long ratelimit_time;
5022static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5023
5024int ata_ratelimit(void)
5025{
5026 int rc;
5027 unsigned long flags;
5028
5029 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5030
5031 if (time_after(jiffies, ratelimit_time)) {
5032 rc = 1;
5033 ratelimit_time = jiffies + (HZ/5);
5034 } else
5035 rc = 0;
5036
5037 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5038
5039 return rc;
5040}
5041
Tejun Heoc22daff2006-04-11 22:22:29 +09005042/**
5043 * ata_wait_register - wait until register value changes
5044 * @reg: IO-mapped register
5045 * @mask: Mask to apply to read register value
5046 * @val: Wait condition
5047 * @interval_msec: polling interval in milliseconds
5048 * @timeout_msec: timeout in milliseconds
5049 *
5050 * Waiting for some bits of register to change is a common
5051 * operation for ATA controllers. This function reads 32bit LE
5052 * IO-mapped register @reg and tests for the following condition.
5053 *
5054 * (*@reg & mask) != val
5055 *
5056 * If the condition is met, it returns; otherwise, the process is
5057 * repeated after @interval_msec until timeout.
5058 *
5059 * LOCKING:
5060 * Kernel thread context (may sleep)
5061 *
5062 * RETURNS:
5063 * The final register value.
5064 */
5065u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5066 unsigned long interval_msec,
5067 unsigned long timeout_msec)
5068{
5069 unsigned long timeout;
5070 u32 tmp;
5071
5072 tmp = ioread32(reg);
5073
5074 /* Calculate timeout _after_ the first read to make sure
5075 * preceding writes reach the controller before starting to
5076 * eat away the timeout.
5077 */
5078 timeout = jiffies + (timeout_msec * HZ) / 1000;
5079
5080 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5081 msleep(interval_msec);
5082 tmp = ioread32(reg);
5083 }
5084
5085 return tmp;
5086}
5087
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088/*
5089 * libata is essentially a library of internal helper functions for
5090 * low-level ATA host controller drivers. As such, the API/ABI is
5091 * likely to change as new drivers are added and updated.
5092 * Do not depend on ABI/API stability.
5093 */
5094
5095EXPORT_SYMBOL_GPL(ata_std_bios_param);
5096EXPORT_SYMBOL_GPL(ata_std_ports);
5097EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005098EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099EXPORT_SYMBOL_GPL(ata_sg_init);
5100EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo76014422006-02-11 15:13:49 +09005101EXPORT_SYMBOL_GPL(__ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103EXPORT_SYMBOL_GPL(ata_tf_load);
5104EXPORT_SYMBOL_GPL(ata_tf_read);
5105EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5106EXPORT_SYMBOL_GPL(ata_std_dev_select);
5107EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5108EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5109EXPORT_SYMBOL_GPL(ata_check_status);
5110EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111EXPORT_SYMBOL_GPL(ata_exec_command);
5112EXPORT_SYMBOL_GPL(ata_port_start);
5113EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005114EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115EXPORT_SYMBOL_GPL(ata_interrupt);
5116EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005117EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5119EXPORT_SYMBOL_GPL(ata_bmdma_start);
5120EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5121EXPORT_SYMBOL_GPL(ata_bmdma_status);
5122EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5123EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005124EXPORT_SYMBOL_GPL(sata_set_spd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125EXPORT_SYMBOL_GPL(sata_phy_reset);
5126EXPORT_SYMBOL_GPL(__sata_phy_reset);
5127EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005128EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005129EXPORT_SYMBOL_GPL(ata_std_softreset);
5130EXPORT_SYMBOL_GPL(sata_std_hardreset);
5131EXPORT_SYMBOL_GPL(ata_std_postreset);
5132EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005133EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005134EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005135EXPORT_SYMBOL_GPL(ata_dev_classify);
5136EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005138EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005139EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005140EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005141EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5143EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5145EXPORT_SYMBOL_GPL(ata_scsi_release);
5146EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo6a62a042006-02-13 10:02:46 +09005147EXPORT_SYMBOL_GPL(ata_id_string);
5148EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5150
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005151EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005152EXPORT_SYMBOL_GPL(ata_timing_compute);
5153EXPORT_SYMBOL_GPL(ata_timing_merge);
5154
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155#ifdef CONFIG_PCI
5156EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005157EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5159EXPORT_SYMBOL_GPL(ata_pci_init_one);
5160EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005161EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5162EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005163EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5164EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005166
5167EXPORT_SYMBOL_GPL(ata_device_suspend);
5168EXPORT_SYMBOL_GPL(ata_device_resume);
5169EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5170EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005171
Tejun Heoece1d632006-04-02 18:51:53 +09005172EXPORT_SYMBOL_GPL(ata_eng_timeout);
5173EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5174EXPORT_SYMBOL_GPL(ata_eh_qc_retry);