blob: 56f0af2083456425ff9ff0d5e17db7bf9bad5584 [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 Heoa2a7a662005-12-13 14:48:31 +0900958 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900959}
960
961/**
962 * ata_exec_internal - execute libata internal command
963 * @ap: Port to which the command is sent
964 * @dev: Device to which the command is sent
965 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900966 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900967 * @dma_dir: Data tranfer direction of the command
968 * @buf: Data buffer of the command
969 * @buflen: Length of data buffer
970 *
971 * Executes libata internal command with timeout. @tf contains
972 * command on entry and result on return. Timeout and error
973 * conditions are reported via return value. No recovery action
974 * is taken after a command times out. It's caller's duty to
975 * clean up after timeout.
976 *
977 * LOCKING:
978 * None. Should be called with kernel context, might sleep.
979 */
980
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900981unsigned ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
982 struct ata_taskfile *tf, const u8 *cdb,
983 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900984{
985 u8 command = tf->command;
986 struct ata_queued_cmd *qc;
987 DECLARE_COMPLETION(wait);
988 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900989 unsigned int err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900990
991 spin_lock_irqsave(&ap->host_set->lock, flags);
992
993 qc = ata_qc_new_init(ap, dev);
994 BUG_ON(qc == NULL);
995
996 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +0900997 if (cdb)
998 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +0900999 qc->flags |= ATA_QCFLAG_RESULT_TF;
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 Heoe61e0672006-05-15 20:57:40 +09001037 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001038 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 Heofe635c72006-05-15 20:57:35 +09001102 * @id: buffer to read IDENTIFY data into
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 Heofe635c72006-05-15 20:57:35 +09001116 unsigned int *p_class, int post_reset, u16 *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;
1121 const char *reason;
1122 int rc;
1123
1124 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1125
Tejun Heo49016ac2006-02-21 02:12:11 +09001126 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1127
1128 retry:
1129 ata_tf_init(ap, &tf, dev->devno);
1130
1131 switch (class) {
1132 case ATA_DEV_ATA:
1133 tf.command = ATA_CMD_ID_ATA;
1134 break;
1135 case ATA_DEV_ATAPI:
1136 tf.command = ATA_CMD_ID_ATAPI;
1137 break;
1138 default:
1139 rc = -ENODEV;
1140 reason = "unsupported class";
1141 goto err_out;
1142 }
1143
1144 tf.protocol = ATA_PROT_PIO;
1145
Tejun Heod69cf372006-04-02 18:51:53 +09001146 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001147 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001148 if (err_mask) {
1149 rc = -EIO;
1150 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001151 goto err_out;
1152 }
1153
1154 swap_buf_le16(id, ATA_ID_WORDS);
1155
Tejun Heo49016ac2006-02-21 02:12:11 +09001156 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001157 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001158 rc = -EINVAL;
1159 reason = "device reports illegal type";
1160 goto err_out;
1161 }
1162
1163 if (post_reset && class == ATA_DEV_ATA) {
1164 /*
1165 * The exact sequence expected by certain pre-ATA4 drives is:
1166 * SRST RESET
1167 * IDENTIFY
1168 * INITIALIZE DEVICE PARAMETERS
1169 * anything else..
1170 * Some drives were very specific about that exact sequence.
1171 */
1172 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Albert Lee00b6f5e2006-03-27 16:39:18 +08001173 err_mask = ata_dev_init_params(ap, dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001174 if (err_mask) {
1175 rc = -EIO;
1176 reason = "INIT_DEV_PARAMS failed";
1177 goto err_out;
1178 }
1179
1180 /* current CHS translation info (id[53-58]) might be
1181 * changed. reread the identify device info.
1182 */
1183 post_reset = 0;
1184 goto retry;
1185 }
1186 }
1187
1188 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001189
Tejun Heo49016ac2006-02-21 02:12:11 +09001190 return 0;
1191
1192 err_out:
1193 printk(KERN_WARNING "ata%u: dev %u failed to IDENTIFY (%s)\n",
1194 ap->id, dev->devno, reason);
Tejun Heo49016ac2006-02-21 02:12:11 +09001195 return rc;
1196}
1197
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001198static inline u8 ata_dev_knobble(const struct ata_port *ap,
1199 struct ata_device *dev)
1200{
1201 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
1202}
1203
Tejun Heo49016ac2006-02-21 02:12:11 +09001204/**
Tejun Heoffeae412006-03-01 16:09:35 +09001205 * ata_dev_configure - Configure the specified ATA/ATAPI device
1206 * @ap: Port on which target device resides
1207 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001208 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 *
Tejun Heoffeae412006-03-01 16:09:35 +09001210 * Configure @dev according to @dev->id. Generic and low-level
1211 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 *
1213 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001214 * Kernel thread context (may sleep)
1215 *
1216 * RETURNS:
1217 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001219static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev,
1220 int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Tejun Heo1148c3a2006-03-13 19:48:04 +09001222 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001223 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001224 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Tejun Heoe1211e32006-04-01 01:38:18 +09001226 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001228 ap->id, dev->devno);
1229 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231
Tejun Heoffeae412006-03-01 16:09:35 +09001232 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001234 /* print device capabilities */
1235 if (print_info)
1236 printk(KERN_DEBUG "ata%u: dev %u cfg 49:%04x 82:%04x 83:%04x "
1237 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1238 ap->id, dev->devno, id[49], id[82], id[83],
1239 id[84], id[85], id[86], id[87], id[88]);
1240
Tejun Heo208a9932006-03-05 17:55:58 +09001241 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001242 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001243 dev->max_sectors = 0;
1244 dev->cdb_len = 0;
1245 dev->n_sectors = 0;
1246 dev->cylinders = 0;
1247 dev->heads = 0;
1248 dev->sectors = 0;
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 /*
1251 * common ATA, ATAPI feature tests
1252 */
1253
Tejun Heoff8854b2006-03-06 04:31:56 +09001254 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001255 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Tejun Heo1148c3a2006-03-13 19:48:04 +09001257 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 /* ATA-specific feature tests */
1260 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001261 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001262
Tejun Heo1148c3a2006-03-13 19:48:04 +09001263 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001264 const char *lba_desc;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001265
Tejun Heo4c2d7212006-03-05 17:55:58 +09001266 lba_desc = "LBA";
1267 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001268 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001269 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001270 lba_desc = "LBA48";
1271 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001272
1273 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001274 if (print_info)
1275 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1276 "max %s, %Lu sectors: %s\n",
1277 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001278 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001279 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001280 (unsigned long long)dev->n_sectors,
1281 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001282 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001283 /* CHS */
1284
1285 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001286 dev->cylinders = id[1];
1287 dev->heads = id[3];
1288 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001289
Tejun Heo1148c3a2006-03-13 19:48:04 +09001290 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001291 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001292 dev->cylinders = id[54];
1293 dev->heads = id[55];
1294 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001295 }
1296
1297 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001298 if (print_info)
1299 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1300 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1301 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001302 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001303 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001304 (unsigned long long)dev->n_sectors,
1305 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
1307
Tejun Heo6e7846e2006-02-12 23:32:58 +09001308 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310
1311 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001312 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001313 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1315 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
Tejun Heoffeae412006-03-01 16:09:35 +09001316 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 goto err_out_nosup;
1318 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001319 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001322 if (print_info)
1323 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
Tejun Heoff8854b2006-03-06 04:31:56 +09001324 ap->id, dev->devno, ata_mode_string(xfer_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
1326
Tejun Heo6e7846e2006-02-12 23:32:58 +09001327 ap->host->max_cmd_len = 0;
1328 for (i = 0; i < ATA_MAX_DEVICES; i++)
1329 ap->host->max_cmd_len = max_t(unsigned int,
1330 ap->host->max_cmd_len,
1331 ap->device[i].cdb_len);
1332
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001333 /* limit bridge transfers to udma5, 200 sectors */
1334 if (ata_dev_knobble(ap, dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001335 if (print_info)
1336 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1337 ap->id, dev->devno);
Tejun Heo5a529132006-03-24 14:07:50 +09001338 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001339 dev->max_sectors = ATA_MAX_SECTORS;
1340 }
1341
1342 if (ap->ops->dev_config)
1343 ap->ops->dev_config(ap, dev);
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001346 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001350 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
1353/**
1354 * ata_bus_probe - Reset and probe ATA bus
1355 * @ap: Bus to probe
1356 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001357 * Master ATA bus probing function. Initiates a hardware-dependent
1358 * bus reset, then attempts to identify any devices found on
1359 * the bus.
1360 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001362 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 *
1364 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001365 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 */
1367
1368static int ata_bus_probe(struct ata_port *ap)
1369{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001370 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001371 int tries[ATA_MAX_DEVICES];
1372 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001373 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Tejun Heo28ca5c52006-03-01 16:09:36 +09001375 ata_port_probe(ap);
1376
Tejun Heo14d2bac2006-04-02 17:54:46 +09001377 for (i = 0; i < ATA_MAX_DEVICES; i++)
1378 tries[i] = ATA_PROBE_MAX_TRIES;
1379
1380 retry:
1381 down_xfermask = 0;
1382
Tejun Heo20444702006-03-13 01:57:01 +09001383 /* reset and determine device classes */
1384 for (i = 0; i < ATA_MAX_DEVICES; i++)
1385 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001386
Tejun Heo20444702006-03-13 01:57:01 +09001387 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001388 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001389 if (rc) {
1390 printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1391 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001392 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001393 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001394 ap->ops->phy_reset(ap);
1395
Tejun Heof8c2c422006-05-15 20:57:30 +09001396 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1397 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo28ca5c52006-03-01 16:09:36 +09001398 classes[i] = ap->device[i].class;
Tejun Heof8c2c422006-05-15 20:57:30 +09001399 ap->device[i].class = ATA_DEV_UNKNOWN;
1400 }
Tejun Heo20444702006-03-13 01:57:01 +09001401
Tejun Heo28ca5c52006-03-01 16:09:36 +09001402 ata_port_probe(ap);
1403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Tejun Heo20444702006-03-13 01:57:01 +09001405 for (i = 0; i < ATA_MAX_DEVICES; i++)
1406 if (classes[i] == ATA_DEV_UNKNOWN)
1407 classes[i] = ATA_DEV_NONE;
1408
Tejun Heo28ca5c52006-03-01 16:09:36 +09001409 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001411 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001412
Tejun Heoec573752006-04-11 22:26:29 +09001413 if (tries[i])
1414 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001415
Tejun Heoe1211e32006-04-01 01:38:18 +09001416 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001417 continue;
1418
Tejun Heofe635c72006-05-15 20:57:35 +09001419 rc = ata_dev_read_id(ap, dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001420 if (rc)
1421 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001422
Tejun Heo14d2bac2006-04-02 17:54:46 +09001423 rc = ata_dev_configure(ap, dev, 1);
1424 if (rc)
1425 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001428 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001429 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001430 if (rc) {
1431 down_xfermask = 1;
1432 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001435 for (i = 0; i < ATA_MAX_DEVICES; i++)
1436 if (ata_dev_enabled(&ap->device[i]))
1437 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001438
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001439 /* no device present, disable port */
1440 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001442 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001443
1444 fail:
1445 switch (rc) {
1446 case -EINVAL:
1447 case -ENODEV:
1448 tries[dev->devno] = 0;
1449 break;
1450 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001451 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001452 /* fall through */
1453 default:
1454 tries[dev->devno]--;
1455 if (down_xfermask &&
1456 ata_down_xfermask_limit(ap, dev, tries[dev->devno] == 1))
1457 tries[dev->devno] = 0;
1458 }
1459
Tejun Heoec573752006-04-11 22:26:29 +09001460 if (!tries[dev->devno]) {
1461 ata_down_xfermask_limit(ap, dev, 1);
1462 ata_dev_disable(ap, dev);
1463 }
1464
Tejun Heo14d2bac2006-04-02 17:54:46 +09001465 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
1468/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001469 * ata_port_probe - Mark port as enabled
1470 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001472 * Modify @ap data structure such that the system
1473 * thinks that the entire port is enabled.
1474 *
1475 * LOCKING: host_set lock, or some other form of
1476 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 */
1478
1479void ata_port_probe(struct ata_port *ap)
1480{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001481 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
1484/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001485 * sata_print_link_status - Print SATA link status
1486 * @ap: SATA port to printk link status about
1487 *
1488 * This function prints link speed and status of a SATA link.
1489 *
1490 * LOCKING:
1491 * None.
1492 */
1493static void sata_print_link_status(struct ata_port *ap)
1494{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001495 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001496
Tejun Heo81952c52006-05-15 20:57:47 +09001497 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001498 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001499 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001500
Tejun Heo81952c52006-05-15 20:57:47 +09001501 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001502 tmp = (sstatus >> 4) & 0xf;
Tejun Heo6d5f9732006-04-03 00:09:41 +09001503 printk(KERN_INFO
1504 "ata%u: SATA link up %s (SStatus %X SControl %X)\n",
1505 ap->id, sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001506 } else {
Tejun Heo6d5f9732006-04-03 00:09:41 +09001507 printk(KERN_INFO
1508 "ata%u: SATA link down (SStatus %X SControl %X)\n",
1509 ap->id, sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001510 }
1511}
1512
1513/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001514 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1515 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001517 * This function issues commands to standard SATA Sxxx
1518 * PHY registers, to wake up the phy (and device), and
1519 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 *
1521 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001522 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 *
1524 */
1525void __sata_phy_reset(struct ata_port *ap)
1526{
1527 u32 sstatus;
1528 unsigned long timeout = jiffies + (HZ * 5);
1529
1530 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001531 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001532 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001533 /* Couldn't find anything in SATA I/II specs, but
1534 * AHCI-1.1 10.4.2 says at least 1 ms. */
1535 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
Tejun Heo81952c52006-05-15 20:57:47 +09001537 /* phy wake/clear reset */
1538 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
1540 /* wait for phy to become ready, if necessary */
1541 do {
1542 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001543 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if ((sstatus & 0xf) != 1)
1545 break;
1546 } while (time_before(jiffies, timeout));
1547
Tejun Heo3be680b2005-12-19 22:35:02 +09001548 /* print link status */
1549 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001550
Tejun Heo3be680b2005-12-19 22:35:02 +09001551 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001552 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001554 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Tejun Heo198e0fe2006-04-02 18:51:52 +09001557 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return;
1559
1560 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1561 ata_port_disable(ap);
1562 return;
1563 }
1564
1565 ap->cbl = ATA_CBL_SATA;
1566}
1567
1568/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001569 * sata_phy_reset - Reset SATA bus.
1570 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001572 * This function resets the SATA bus, and then probes
1573 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 *
1575 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001576 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 *
1578 */
1579void sata_phy_reset(struct ata_port *ap)
1580{
1581 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001582 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return;
1584 ata_bus_reset(ap);
1585}
1586
1587/**
Alan Coxebdfca62006-03-23 15:38:34 +00001588 * ata_dev_pair - return other device on cable
1589 * @ap: port
1590 * @adev: device
1591 *
1592 * Obtain the other device on the same cable, or if none is
1593 * present NULL is returned
1594 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001595
Alan Coxebdfca62006-03-23 15:38:34 +00001596struct ata_device *ata_dev_pair(struct ata_port *ap, struct ata_device *adev)
1597{
1598 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001599 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001600 return NULL;
1601 return pair;
1602}
1603
1604/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001605 * ata_port_disable - Disable port.
1606 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001608 * Modify @ap data structure such that the system
1609 * thinks that the entire port is disabled, and should
1610 * never attempt to probe or communicate with devices
1611 * on this port.
1612 *
1613 * LOCKING: host_set lock, or some other form of
1614 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 */
1616
1617void ata_port_disable(struct ata_port *ap)
1618{
1619 ap->device[0].class = ATA_DEV_NONE;
1620 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001621 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
1623
Tejun Heo1c3fae42006-04-02 20:53:28 +09001624/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001625 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001626 * @ap: Port to adjust SATA spd limit for
1627 *
1628 * Adjust SATA spd limit of @ap downward. Note that this
1629 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001630 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001631 *
1632 * LOCKING:
1633 * Inherited from caller.
1634 *
1635 * RETURNS:
1636 * 0 on success, negative errno on failure
1637 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001638int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001639{
Tejun Heo81952c52006-05-15 20:57:47 +09001640 u32 sstatus, spd, mask;
1641 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001642
Tejun Heo81952c52006-05-15 20:57:47 +09001643 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1644 if (rc)
1645 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001646
1647 mask = ap->sata_spd_limit;
1648 if (mask <= 1)
1649 return -EINVAL;
1650 highbit = fls(mask) - 1;
1651 mask &= ~(1 << highbit);
1652
Tejun Heo81952c52006-05-15 20:57:47 +09001653 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001654 if (spd <= 1)
1655 return -EINVAL;
1656 spd--;
1657 mask &= (1 << spd) - 1;
1658 if (!mask)
1659 return -EINVAL;
1660
1661 ap->sata_spd_limit = mask;
1662
1663 printk(KERN_WARNING "ata%u: limiting SATA link speed to %s\n",
1664 ap->id, sata_spd_string(fls(mask)));
1665
1666 return 0;
1667}
1668
Tejun Heo3c567b72006-05-15 20:57:23 +09001669static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001670{
1671 u32 spd, limit;
1672
1673 if (ap->sata_spd_limit == UINT_MAX)
1674 limit = 0;
1675 else
1676 limit = fls(ap->sata_spd_limit);
1677
1678 spd = (*scontrol >> 4) & 0xf;
1679 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1680
1681 return spd != limit;
1682}
1683
1684/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001685 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001686 * @ap: Port in question
1687 *
1688 * Test whether the spd limit in SControl matches
1689 * @ap->sata_spd_limit. This function is used to determine
1690 * whether hardreset is necessary to apply SATA spd
1691 * configuration.
1692 *
1693 * LOCKING:
1694 * Inherited from caller.
1695 *
1696 * RETURNS:
1697 * 1 if SATA spd configuration is needed, 0 otherwise.
1698 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001699int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001700{
1701 u32 scontrol;
1702
Tejun Heo81952c52006-05-15 20:57:47 +09001703 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001704 return 0;
1705
Tejun Heo3c567b72006-05-15 20:57:23 +09001706 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001707}
1708
1709/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001710 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001711 * @ap: Port to set SATA spd for
1712 *
1713 * Set SATA spd of @ap according to sata_spd_limit.
1714 *
1715 * LOCKING:
1716 * Inherited from caller.
1717 *
1718 * RETURNS:
1719 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001720 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001721 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001722int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001723{
1724 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001725 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001726
Tejun Heo81952c52006-05-15 20:57:47 +09001727 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1728 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001729
Tejun Heo3c567b72006-05-15 20:57:23 +09001730 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001731 return 0;
1732
Tejun Heo81952c52006-05-15 20:57:47 +09001733 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1734 return rc;
1735
Tejun Heo1c3fae42006-04-02 20:53:28 +09001736 return 1;
1737}
1738
Alan Cox452503f2005-10-21 19:01:32 -04001739/*
1740 * This mode timing computation functionality is ported over from
1741 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1742 */
1743/*
1744 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1745 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1746 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001747 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001748 */
1749
1750static const struct ata_timing ata_timing[] = {
1751
1752 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1753 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1754 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1755 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1756
1757 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1758 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1759 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1760
1761/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001762
Alan Cox452503f2005-10-21 19:01:32 -04001763 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1764 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1765 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001766
Alan Cox452503f2005-10-21 19:01:32 -04001767 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1768 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1769 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1770
1771/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1772 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1773 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1774
1775 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1776 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1777 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1778
1779/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1780
1781 { 0xFF }
1782};
1783
1784#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1785#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1786
1787static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1788{
1789 q->setup = EZ(t->setup * 1000, T);
1790 q->act8b = EZ(t->act8b * 1000, T);
1791 q->rec8b = EZ(t->rec8b * 1000, T);
1792 q->cyc8b = EZ(t->cyc8b * 1000, T);
1793 q->active = EZ(t->active * 1000, T);
1794 q->recover = EZ(t->recover * 1000, T);
1795 q->cycle = EZ(t->cycle * 1000, T);
1796 q->udma = EZ(t->udma * 1000, UT);
1797}
1798
1799void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1800 struct ata_timing *m, unsigned int what)
1801{
1802 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1803 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1804 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1805 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1806 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1807 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1808 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1809 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1810}
1811
1812static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1813{
1814 const struct ata_timing *t;
1815
1816 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001817 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001818 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001819 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001820}
1821
1822int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1823 struct ata_timing *t, int T, int UT)
1824{
1825 const struct ata_timing *s;
1826 struct ata_timing p;
1827
1828 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001829 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001830 */
Alan Cox452503f2005-10-21 19:01:32 -04001831
1832 if (!(s = ata_timing_find_mode(speed)))
1833 return -EINVAL;
1834
Albert Lee75b1f2f2005-11-16 17:06:18 +08001835 memcpy(t, s, sizeof(*s));
1836
Alan Cox452503f2005-10-21 19:01:32 -04001837 /*
1838 * If the drive is an EIDE drive, it can tell us it needs extended
1839 * PIO/MW_DMA cycle timing.
1840 */
1841
1842 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1843 memset(&p, 0, sizeof(p));
1844 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1845 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1846 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1847 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1848 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1849 }
1850 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1851 }
1852
1853 /*
1854 * Convert the timing to bus clock counts.
1855 */
1856
Albert Lee75b1f2f2005-11-16 17:06:18 +08001857 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001858
1859 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001860 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1861 * S.M.A.R.T * and some other commands. We have to ensure that the
1862 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001863 */
1864
1865 if (speed > XFER_PIO_4) {
1866 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1867 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1868 }
1869
1870 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001871 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001872 */
1873
1874 if (t->act8b + t->rec8b < t->cyc8b) {
1875 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1876 t->rec8b = t->cyc8b - t->act8b;
1877 }
1878
1879 if (t->active + t->recover < t->cycle) {
1880 t->active += (t->cycle - (t->active + t->recover)) / 2;
1881 t->recover = t->cycle - t->active;
1882 }
1883
1884 return 0;
1885}
1886
Tejun Heocf176e12006-04-02 17:54:46 +09001887/**
1888 * ata_down_xfermask_limit - adjust dev xfer masks downward
1889 * @ap: Port associated with device @dev
1890 * @dev: Device to adjust xfer masks
1891 * @force_pio0: Force PIO0
1892 *
1893 * Adjust xfer masks of @dev downward. Note that this function
1894 * does not apply the change. Invoking ata_set_mode() afterwards
1895 * will apply the limit.
1896 *
1897 * LOCKING:
1898 * Inherited from caller.
1899 *
1900 * RETURNS:
1901 * 0 on success, negative errno on failure
1902 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001903int ata_down_xfermask_limit(struct ata_port *ap, struct ata_device *dev,
1904 int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09001905{
1906 unsigned long xfer_mask;
1907 int highbit;
1908
1909 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
1910 dev->udma_mask);
1911
1912 if (!xfer_mask)
1913 goto fail;
1914 /* don't gear down to MWDMA from UDMA, go directly to PIO */
1915 if (xfer_mask & ATA_MASK_UDMA)
1916 xfer_mask &= ~ATA_MASK_MWDMA;
1917
1918 highbit = fls(xfer_mask) - 1;
1919 xfer_mask &= ~(1 << highbit);
1920 if (force_pio0)
1921 xfer_mask &= 1 << ATA_SHIFT_PIO;
1922 if (!xfer_mask)
1923 goto fail;
1924
1925 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
1926 &dev->udma_mask);
1927
1928 printk(KERN_WARNING "ata%u: dev %u limiting speed to %s\n",
1929 ap->id, dev->devno, ata_mode_string(xfer_mask));
1930
1931 return 0;
1932
1933 fail:
1934 return -EINVAL;
1935}
1936
Tejun Heo83206a22006-03-24 15:25:31 +09001937static int ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
Tejun Heo83206a22006-03-24 15:25:31 +09001939 unsigned int err_mask;
1940 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Tejun Heoe8384602006-04-02 18:51:53 +09001942 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (dev->xfer_shift == ATA_SHIFT_PIO)
1944 dev->flags |= ATA_DFLAG_PIO;
1945
Tejun Heo83206a22006-03-24 15:25:31 +09001946 err_mask = ata_dev_set_xfermode(ap, dev);
1947 if (err_mask) {
1948 printk(KERN_ERR
1949 "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1950 ap->id, err_mask);
1951 return -EIO;
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Tejun Heo83206a22006-03-24 15:25:31 +09001954 rc = ata_dev_revalidate(ap, dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09001955 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09001956 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09001957
Tejun Heo23e71c32006-03-06 04:31:57 +09001958 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1959 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
Tejun Heo23e71c32006-03-06 04:31:57 +09001962 ap->id, dev->devno,
1963 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001964 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967/**
1968 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1969 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001970 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001972 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
1973 * ata_set_mode() fails, pointer to the failing device is
1974 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04001975 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001977 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001978 *
1979 * RETURNS:
1980 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001982int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
Tejun Heoe8e06192006-04-01 01:38:18 +09001984 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001985 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Tejun Heo3adcebb2006-05-15 20:57:37 +09001987 /* has private set_mode? */
1988 if (ap->ops->set_mode) {
1989 /* FIXME: make ->set_mode handle no device case and
1990 * return error code and failing device on failure.
1991 */
1992 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1993 if (ata_dev_enabled(&ap->device[i])) {
1994 ap->ops->set_mode(ap);
1995 break;
1996 }
1997 }
1998 return 0;
1999 }
2000
Tejun Heoa6d5a512006-03-06 04:31:57 +09002001 /* step 1: calculate xfer_mask */
2002 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002003 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002004
Tejun Heoe8e06192006-04-01 01:38:18 +09002005 dev = &ap->device[i];
2006
Tejun Heoe1211e32006-04-01 01:38:18 +09002007 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002008 continue;
2009
Tejun Heoacf356b2006-03-24 14:07:50 +09002010 ata_dev_xfermask(ap, dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002011
Tejun Heoacf356b2006-03-24 14:07:50 +09002012 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2013 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2014 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2015 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002016
Tejun Heo4f659772006-04-01 01:38:18 +09002017 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002018 if (dev->dma_mode)
2019 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002020 }
Tejun Heo4f659772006-04-01 01:38:18 +09002021 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002022 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002023
2024 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002025 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2026 dev = &ap->device[i];
2027 if (!ata_dev_enabled(dev))
2028 continue;
2029
2030 if (!dev->pio_mode) {
2031 printk(KERN_WARNING "ata%u: dev %u no PIO support\n",
2032 ap->id, dev->devno);
2033 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002034 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002035 }
2036
2037 dev->xfer_mode = dev->pio_mode;
2038 dev->xfer_shift = ATA_SHIFT_PIO;
2039 if (ap->ops->set_piomode)
2040 ap->ops->set_piomode(ap, dev);
2041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Tejun Heoa6d5a512006-03-06 04:31:57 +09002043 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002044 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2045 dev = &ap->device[i];
2046
2047 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2048 continue;
2049
2050 dev->xfer_mode = dev->dma_mode;
2051 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2052 if (ap->ops->set_dmamode)
2053 ap->ops->set_dmamode(ap, dev);
2054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002057 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002058 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Tejun Heoe1211e32006-04-01 01:38:18 +09002060 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002061 continue;
2062
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002063 rc = ata_dev_set_mode(ap, dev);
2064 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002065 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Tejun Heoe8e06192006-04-01 01:38:18 +09002068 /* Record simplex status. If we selected DMA then the other
2069 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002070 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002071 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2072 ap->host_set->simplex_claimed = 1;
2073
Tejun Heoe8e06192006-04-01 01:38:18 +09002074 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 if (ap->ops->post_set_mode)
2076 ap->ops->post_set_mode(ap);
2077
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002078 out:
2079 if (rc)
2080 *r_failed_dev = dev;
2081 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
2083
2084/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002085 * ata_tf_to_host - issue ATA taskfile to host controller
2086 * @ap: port to which command is being issued
2087 * @tf: ATA taskfile register set
2088 *
2089 * Issues ATA taskfile register set to ATA host controller,
2090 * with proper synchronization with interrupt handler and
2091 * other threads.
2092 *
2093 * LOCKING:
2094 * spin_lock_irqsave(host_set lock)
2095 */
2096
2097static inline void ata_tf_to_host(struct ata_port *ap,
2098 const struct ata_taskfile *tf)
2099{
2100 ap->ops->tf_load(ap, tf);
2101 ap->ops->exec_command(ap, tf);
2102}
2103
2104/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 * ata_busy_sleep - sleep until BSY clears, or timeout
2106 * @ap: port containing status register to be polled
2107 * @tmout_pat: impatience timeout
2108 * @tmout: overall timeout
2109 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002110 * Sleep until ATA Status register bit BSY clears,
2111 * or a timeout occurs.
2112 *
2113 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 */
2115
Tejun Heo6f8b9952006-01-24 17:05:21 +09002116unsigned int ata_busy_sleep (struct ata_port *ap,
2117 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
2119 unsigned long timer_start, timeout;
2120 u8 status;
2121
2122 status = ata_busy_wait(ap, ATA_BUSY, 300);
2123 timer_start = jiffies;
2124 timeout = timer_start + tmout_pat;
2125 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2126 msleep(50);
2127 status = ata_busy_wait(ap, ATA_BUSY, 3);
2128 }
2129
2130 if (status & ATA_BUSY)
2131 printk(KERN_WARNING "ata%u is slow to respond, "
2132 "please be patient\n", ap->id);
2133
2134 timeout = timer_start + tmout;
2135 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2136 msleep(50);
2137 status = ata_chk_status(ap);
2138 }
2139
2140 if (status & ATA_BUSY) {
2141 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
2142 ap->id, tmout / HZ);
2143 return 1;
2144 }
2145
2146 return 0;
2147}
2148
2149static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2150{
2151 struct ata_ioports *ioaddr = &ap->ioaddr;
2152 unsigned int dev0 = devmask & (1 << 0);
2153 unsigned int dev1 = devmask & (1 << 1);
2154 unsigned long timeout;
2155
2156 /* if device 0 was found in ata_devchk, wait for its
2157 * BSY bit to clear
2158 */
2159 if (dev0)
2160 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2161
2162 /* if device 1 was found in ata_devchk, wait for
2163 * register access, then wait for BSY to clear
2164 */
2165 timeout = jiffies + ATA_TMOUT_BOOT;
2166 while (dev1) {
2167 u8 nsect, lbal;
2168
2169 ap->ops->dev_select(ap, 1);
2170 if (ap->flags & ATA_FLAG_MMIO) {
2171 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2172 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2173 } else {
2174 nsect = inb(ioaddr->nsect_addr);
2175 lbal = inb(ioaddr->lbal_addr);
2176 }
2177 if ((nsect == 1) && (lbal == 1))
2178 break;
2179 if (time_after(jiffies, timeout)) {
2180 dev1 = 0;
2181 break;
2182 }
2183 msleep(50); /* give drive a breather */
2184 }
2185 if (dev1)
2186 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2187
2188 /* is all this really necessary? */
2189 ap->ops->dev_select(ap, 0);
2190 if (dev1)
2191 ap->ops->dev_select(ap, 1);
2192 if (dev0)
2193 ap->ops->dev_select(ap, 0);
2194}
2195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196static unsigned int ata_bus_softreset(struct ata_port *ap,
2197 unsigned int devmask)
2198{
2199 struct ata_ioports *ioaddr = &ap->ioaddr;
2200
2201 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2202
2203 /* software reset. causes dev0 to be selected */
2204 if (ap->flags & ATA_FLAG_MMIO) {
2205 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2206 udelay(20); /* FIXME: flush */
2207 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2208 udelay(20); /* FIXME: flush */
2209 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2210 } else {
2211 outb(ap->ctl, ioaddr->ctl_addr);
2212 udelay(10);
2213 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2214 udelay(10);
2215 outb(ap->ctl, ioaddr->ctl_addr);
2216 }
2217
2218 /* spec mandates ">= 2ms" before checking status.
2219 * We wait 150ms, because that was the magic delay used for
2220 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2221 * between when the ATA command register is written, and then
2222 * status is checked. Because waiting for "a while" before
2223 * checking status is fine, post SRST, we perform this magic
2224 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002225 *
2226 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 */
2228 msleep(150);
2229
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002230 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002231 * the bus shows 0xFF because the odd clown forgets the D7
2232 * pulldown resistor.
2233 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002234 if (ata_check_status(ap) == 0xFF) {
2235 printk(KERN_ERR "ata%u: SRST failed (status 0xFF)\n", ap->id);
Tejun Heo298a41c2006-03-25 02:58:13 +09002236 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002237 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 ata_bus_post_reset(ap, devmask);
2240
2241 return 0;
2242}
2243
2244/**
2245 * ata_bus_reset - reset host port and associated ATA channel
2246 * @ap: port to reset
2247 *
2248 * This is typically the first time we actually start issuing
2249 * commands to the ATA channel. We wait for BSY to clear, then
2250 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2251 * result. Determine what devices, if any, are on the channel
2252 * by looking at the device 0/1 error register. Look at the signature
2253 * stored in each device's taskfile registers, to determine if
2254 * the device is ATA or ATAPI.
2255 *
2256 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002257 * PCI/etc. bus probe sem.
2258 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 *
2260 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002261 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 */
2263
2264void ata_bus_reset(struct ata_port *ap)
2265{
2266 struct ata_ioports *ioaddr = &ap->ioaddr;
2267 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2268 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002269 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2272
2273 /* determine if device 0/1 are present */
2274 if (ap->flags & ATA_FLAG_SATA_RESET)
2275 dev0 = 1;
2276 else {
2277 dev0 = ata_devchk(ap, 0);
2278 if (slave_possible)
2279 dev1 = ata_devchk(ap, 1);
2280 }
2281
2282 if (dev0)
2283 devmask |= (1 << 0);
2284 if (dev1)
2285 devmask |= (1 << 1);
2286
2287 /* select device 0 again */
2288 ap->ops->dev_select(ap, 0);
2289
2290 /* issue bus reset */
2291 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002292 if (ata_bus_softreset(ap, devmask))
2293 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 /*
2296 * determine by signature whether we have ATA or ATAPI devices
2297 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002298 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002300 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302 /* re-enable interrupts */
2303 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2304 ata_irq_on(ap);
2305
2306 /* is double-select really necessary? */
2307 if (ap->device[1].class != ATA_DEV_NONE)
2308 ap->ops->dev_select(ap, 1);
2309 if (ap->device[0].class != ATA_DEV_NONE)
2310 ap->ops->dev_select(ap, 0);
2311
2312 /* if no devices were detected, disable this port */
2313 if ((ap->device[0].class == ATA_DEV_NONE) &&
2314 (ap->device[1].class == ATA_DEV_NONE))
2315 goto err_out;
2316
2317 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2318 /* set up device control for ATA_FLAG_SATA_RESET */
2319 if (ap->flags & ATA_FLAG_MMIO)
2320 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2321 else
2322 outb(ap->ctl, ioaddr->ctl_addr);
2323 }
2324
2325 DPRINTK("EXIT\n");
2326 return;
2327
2328err_out:
2329 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2330 ap->ops->port_disable(ap);
2331
2332 DPRINTK("EXIT\n");
2333}
2334
Tejun Heo7a7921e2006-02-02 18:20:00 +09002335static int sata_phy_resume(struct ata_port *ap)
2336{
2337 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo852ee162006-04-01 01:38:18 +09002338 u32 scontrol, sstatus;
Tejun Heo81952c52006-05-15 20:57:47 +09002339 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002340
Tejun Heo81952c52006-05-15 20:57:47 +09002341 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2342 return rc;
2343
Tejun Heo852ee162006-04-01 01:38:18 +09002344 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002345
2346 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2347 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002348
2349 /* Wait for phy to become ready, if necessary. */
2350 do {
2351 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09002352 if ((rc = sata_scr_read(ap, SCR_STATUS, &sstatus)))
2353 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002354 if ((sstatus & 0xf) != 1)
2355 return 0;
2356 } while (time_before(jiffies, timeout));
2357
Tejun Heo81952c52006-05-15 20:57:47 +09002358 return -EBUSY;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002359}
2360
Tejun Heoc2bd5802006-01-24 17:05:22 +09002361/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002362 * ata_std_probeinit - initialize probing
2363 * @ap: port to be probed
2364 *
2365 * @ap is about to be probed. Initialize it. This function is
2366 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002367 *
2368 * NOTE!!! Do not use this function as probeinit if a low level
2369 * driver implements only hardreset. Just pass NULL as probeinit
2370 * in that case. Using this function is probably okay but doing
2371 * so makes reset sequence different from the original
2372 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002373 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002374void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002375{
Tejun Heo81952c52006-05-15 20:57:47 +09002376 u32 scontrol;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002377
Tejun Heo81952c52006-05-15 20:57:47 +09002378 /* resume link */
2379 sata_phy_resume(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002380
Tejun Heo81952c52006-05-15 20:57:47 +09002381 /* init sata_spd_limit to the current value */
2382 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
2383 int spd = (scontrol >> 4) & 0xf;
2384 ap->sata_spd_limit &= (1 << spd) - 1;
Tejun Heo3a397462006-02-10 23:58:48 +09002385 }
Tejun Heo81952c52006-05-15 20:57:47 +09002386
2387 /* wait for device */
2388 if (ata_port_online(ap))
2389 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Tejun Heo8a19ac82006-02-02 18:20:00 +09002390}
2391
2392/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002393 * ata_std_softreset - reset host port via ATA SRST
2394 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002395 * @classes: resulting classes of attached devices
2396 *
2397 * Reset host port using ATA SRST. This function is to be used
2398 * as standard callback for ata_drive_*_reset() functions.
2399 *
2400 * LOCKING:
2401 * Kernel thread context (may sleep)
2402 *
2403 * RETURNS:
2404 * 0 on success, -errno otherwise.
2405 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002406int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002407{
2408 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2409 unsigned int devmask = 0, err_mask;
2410 u8 err;
2411
2412 DPRINTK("ENTER\n");
2413
Tejun Heo81952c52006-05-15 20:57:47 +09002414 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002415 classes[0] = ATA_DEV_NONE;
2416 goto out;
2417 }
2418
Tejun Heoc2bd5802006-01-24 17:05:22 +09002419 /* determine if device 0/1 are present */
2420 if (ata_devchk(ap, 0))
2421 devmask |= (1 << 0);
2422 if (slave_possible && ata_devchk(ap, 1))
2423 devmask |= (1 << 1);
2424
Tejun Heoc2bd5802006-01-24 17:05:22 +09002425 /* select device 0 again */
2426 ap->ops->dev_select(ap, 0);
2427
2428 /* issue bus reset */
2429 DPRINTK("about to softreset, devmask=%x\n", devmask);
2430 err_mask = ata_bus_softreset(ap, devmask);
2431 if (err_mask) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002432 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2433 ap->id, err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002434 return -EIO;
2435 }
2436
2437 /* determine by signature whether we have ATA or ATAPI devices */
2438 classes[0] = ata_dev_try_classify(ap, 0, &err);
2439 if (slave_possible && err != 0x81)
2440 classes[1] = ata_dev_try_classify(ap, 1, &err);
2441
Tejun Heo3a397462006-02-10 23:58:48 +09002442 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002443 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2444 return 0;
2445}
2446
2447/**
2448 * sata_std_hardreset - reset host port via SATA phy reset
2449 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002450 * @class: resulting class of attached device
2451 *
2452 * SATA phy-reset host port using DET bits of SControl register.
2453 * This function is to be used as standard callback for
2454 * ata_drive_*_reset().
2455 *
2456 * LOCKING:
2457 * Kernel thread context (may sleep)
2458 *
2459 * RETURNS:
2460 * 0 on success, -errno otherwise.
2461 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002462int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002463{
Tejun Heo852ee162006-04-01 01:38:18 +09002464 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002465 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002466
Tejun Heoc2bd5802006-01-24 17:05:22 +09002467 DPRINTK("ENTER\n");
2468
Tejun Heo3c567b72006-05-15 20:57:23 +09002469 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002470 /* SATA spec says nothing about how to reconfigure
2471 * spd. To be on the safe side, turn off phy during
2472 * reconfiguration. This works for at least ICH7 AHCI
2473 * and Sil3124.
2474 */
Tejun Heo81952c52006-05-15 20:57:47 +09002475 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2476 return rc;
2477
Tejun Heo1c3fae42006-04-02 20:53:28 +09002478 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002479
2480 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2481 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002482
Tejun Heo3c567b72006-05-15 20:57:23 +09002483 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002484 }
2485
2486 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002487 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2488 return rc;
2489
Tejun Heo852ee162006-04-01 01:38:18 +09002490 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002491
2492 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2493 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002494
Tejun Heo1c3fae42006-04-02 20:53:28 +09002495 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002496 * 10.4.2 says at least 1 ms.
2497 */
2498 msleep(1);
2499
Tejun Heo1c3fae42006-04-02 20:53:28 +09002500 /* bring phy back */
Tejun Heo7a7921e2006-02-02 18:20:00 +09002501 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002502
Tejun Heoc2bd5802006-01-24 17:05:22 +09002503 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002504 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002505 *class = ATA_DEV_NONE;
2506 DPRINTK("EXIT, link offline\n");
2507 return 0;
2508 }
2509
2510 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heo987d2f02006-04-11 22:16:45 +09002511 printk(KERN_ERR
2512 "ata%u: COMRESET failed (device not ready)\n", ap->id);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002513 return -EIO;
2514 }
2515
Tejun Heo3a397462006-02-10 23:58:48 +09002516 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2517
Tejun Heoc2bd5802006-01-24 17:05:22 +09002518 *class = ata_dev_try_classify(ap, 0, NULL);
2519
2520 DPRINTK("EXIT, class=%u\n", *class);
2521 return 0;
2522}
2523
2524/**
2525 * ata_std_postreset - standard postreset callback
2526 * @ap: the target ata_port
2527 * @classes: classes of attached devices
2528 *
2529 * This function is invoked after a successful reset. Note that
2530 * the device might have been reset more than once using
2531 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002532 *
2533 * This function is to be used as standard callback for
2534 * ata_drive_*_reset().
2535 *
2536 * LOCKING:
2537 * Kernel thread context (may sleep)
2538 */
2539void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2540{
2541 DPRINTK("ENTER\n");
2542
Tejun Heoc2bd5802006-01-24 17:05:22 +09002543 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002544 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002545
Tejun Heo3a397462006-02-10 23:58:48 +09002546 /* re-enable interrupts */
2547 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2548 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002549
2550 /* is double-select really necessary? */
2551 if (classes[0] != ATA_DEV_NONE)
2552 ap->ops->dev_select(ap, 1);
2553 if (classes[1] != ATA_DEV_NONE)
2554 ap->ops->dev_select(ap, 0);
2555
Tejun Heo3a397462006-02-10 23:58:48 +09002556 /* bail out if no device is present */
2557 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2558 DPRINTK("EXIT, no device\n");
2559 return;
2560 }
2561
2562 /* set up device control */
2563 if (ap->ioaddr.ctl_addr) {
2564 if (ap->flags & ATA_FLAG_MMIO)
2565 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2566 else
2567 outb(ap->ctl, ap->ioaddr.ctl_addr);
2568 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002569
2570 DPRINTK("EXIT\n");
2571}
2572
2573/**
2574 * ata_std_probe_reset - standard probe reset method
2575 * @ap: prot to perform probe-reset
2576 * @classes: resulting classes of attached devices
2577 *
2578 * The stock off-the-shelf ->probe_reset method.
2579 *
2580 * LOCKING:
2581 * Kernel thread context (may sleep)
2582 *
2583 * RETURNS:
2584 * 0 on success, -errno otherwise.
2585 */
2586int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2587{
2588 ata_reset_fn_t hardreset;
2589
2590 hardreset = NULL;
Tejun Heo81952c52006-05-15 20:57:47 +09002591 if (sata_scr_valid(ap))
Tejun Heoc2bd5802006-01-24 17:05:22 +09002592 hardreset = sata_std_hardreset;
2593
Tejun Heo8a19ac82006-02-02 18:20:00 +09002594 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002595 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002596 ata_std_postreset, classes);
2597}
2598
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002599int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
Tejun Heo96bd39e2006-05-15 20:57:38 +09002600 unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002601{
2602 int i, rc;
2603
2604 for (i = 0; i < ATA_MAX_DEVICES; i++)
2605 classes[i] = ATA_DEV_UNKNOWN;
2606
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002607 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002608 if (rc)
2609 return rc;
2610
2611 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2612 * is complete and convert all ATA_DEV_UNKNOWN to
2613 * ATA_DEV_NONE.
2614 */
2615 for (i = 0; i < ATA_MAX_DEVICES; i++)
2616 if (classes[i] != ATA_DEV_UNKNOWN)
2617 break;
2618
2619 if (i < ATA_MAX_DEVICES)
2620 for (i = 0; i < ATA_MAX_DEVICES; i++)
2621 if (classes[i] == ATA_DEV_UNKNOWN)
2622 classes[i] = ATA_DEV_NONE;
2623
Tejun Heo9974e7c2006-04-01 01:38:17 +09002624 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002625}
2626
2627/**
2628 * ata_drive_probe_reset - Perform probe reset with given methods
2629 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002630 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002631 * @softreset: softreset method (can be NULL)
2632 * @hardreset: hardreset method (can be NULL)
2633 * @postreset: postreset method (can be NULL)
2634 * @classes: resulting classes of attached devices
2635 *
2636 * Reset the specified port and classify attached devices using
2637 * given methods. This function prefers softreset but tries all
2638 * possible reset sequences to reset and classify devices. This
2639 * function is intended to be used for constructing ->probe_reset
2640 * callback by low level drivers.
2641 *
2642 * Reset methods should follow the following rules.
2643 *
2644 * - Return 0 on sucess, -errno on failure.
2645 * - If classification is supported, fill classes[] with
2646 * recognized class codes.
2647 * - If classification is not supported, leave classes[] alone.
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002648 *
2649 * LOCKING:
2650 * Kernel thread context (may sleep)
2651 *
2652 * RETURNS:
2653 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2654 * if classification fails, and any error code from reset
2655 * methods.
2656 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002657int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002658 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2659 ata_postreset_fn_t postreset, unsigned int *classes)
2660{
2661 int rc = -EINVAL;
2662
Tejun Heo7944ea92006-02-02 18:20:00 +09002663 if (probeinit)
2664 probeinit(ap);
2665
Tejun Heo3c567b72006-05-15 20:57:23 +09002666 if (softreset && !sata_set_spd_needed(ap)) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002667 rc = ata_do_reset(ap, softreset, classes);
Tejun Heo9974e7c2006-04-01 01:38:17 +09002668 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2669 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002670 printk(KERN_INFO "ata%u: softreset failed, will try "
2671 "hardreset in 5 secs\n", ap->id);
2672 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002673 }
2674
2675 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002676 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002677
Tejun Heo90dac022006-04-02 17:54:46 +09002678 while (1) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002679 rc = ata_do_reset(ap, hardreset, classes);
Tejun Heo90dac022006-04-02 17:54:46 +09002680 if (rc == 0) {
2681 if (classes[0] != ATA_DEV_UNKNOWN)
2682 goto done;
2683 break;
2684 }
2685
Tejun Heo3c567b72006-05-15 20:57:23 +09002686 if (sata_down_spd_limit(ap))
Tejun Heo90dac022006-04-02 17:54:46 +09002687 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002688
2689 printk(KERN_INFO "ata%u: hardreset failed, will retry "
2690 "in 5 secs\n", ap->id);
2691 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002692 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002693
Tejun Heoedbabd82006-04-02 20:55:02 +09002694 if (softreset) {
2695 printk(KERN_INFO "ata%u: hardreset succeeded without "
2696 "classification, will retry softreset in 5 secs\n",
2697 ap->id);
2698 ssleep(5);
2699
Tejun Heo96bd39e2006-05-15 20:57:38 +09002700 rc = ata_do_reset(ap, softreset, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002701 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002702
Tejun Heo9974e7c2006-04-01 01:38:17 +09002703 done:
Tejun Heo96bd39e2006-05-15 20:57:38 +09002704 if (rc == 0) {
2705 if (postreset)
2706 postreset(ap, classes);
2707 if (classes[0] == ATA_DEV_UNKNOWN)
2708 rc = -ENODEV;
2709 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002710 return rc;
2711}
2712
Tejun Heo623a3122006-03-05 17:55:58 +09002713/**
2714 * ata_dev_same_device - Determine whether new ID matches configured device
2715 * @ap: port on which the device to compare against resides
2716 * @dev: device to compare against
2717 * @new_class: class of the new device
2718 * @new_id: IDENTIFY page of the new device
2719 *
2720 * Compare @new_class and @new_id against @dev and determine
2721 * whether @dev is the device indicated by @new_class and
2722 * @new_id.
2723 *
2724 * LOCKING:
2725 * None.
2726 *
2727 * RETURNS:
2728 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2729 */
2730static int ata_dev_same_device(struct ata_port *ap, struct ata_device *dev,
2731 unsigned int new_class, const u16 *new_id)
2732{
2733 const u16 *old_id = dev->id;
2734 unsigned char model[2][41], serial[2][21];
2735 u64 new_n_sectors;
2736
2737 if (dev->class != new_class) {
2738 printk(KERN_INFO
2739 "ata%u: dev %u class mismatch %d != %d\n",
2740 ap->id, dev->devno, dev->class, new_class);
2741 return 0;
2742 }
2743
2744 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2745 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2746 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2747 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2748 new_n_sectors = ata_id_n_sectors(new_id);
2749
2750 if (strcmp(model[0], model[1])) {
2751 printk(KERN_INFO
2752 "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2753 ap->id, dev->devno, model[0], model[1]);
2754 return 0;
2755 }
2756
2757 if (strcmp(serial[0], serial[1])) {
2758 printk(KERN_INFO
2759 "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2760 ap->id, dev->devno, serial[0], serial[1]);
2761 return 0;
2762 }
2763
2764 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2765 printk(KERN_INFO
2766 "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2767 ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2768 (unsigned long long)new_n_sectors);
2769 return 0;
2770 }
2771
2772 return 1;
2773}
2774
2775/**
2776 * ata_dev_revalidate - Revalidate ATA device
2777 * @ap: port on which the device to revalidate resides
2778 * @dev: device to revalidate
2779 * @post_reset: is this revalidation after reset?
2780 *
2781 * Re-read IDENTIFY page and make sure @dev is still attached to
2782 * the port.
2783 *
2784 * LOCKING:
2785 * Kernel thread context (may sleep)
2786 *
2787 * RETURNS:
2788 * 0 on success, negative errno otherwise
2789 */
2790int ata_dev_revalidate(struct ata_port *ap, struct ata_device *dev,
2791 int post_reset)
2792{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002793 unsigned int class = dev->class;
Tejun Heofe635c72006-05-15 20:57:35 +09002794 u16 *id = (void *)ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002795 int rc;
2796
Tejun Heo5eb45c02006-04-02 18:51:52 +09002797 if (!ata_dev_enabled(dev)) {
2798 rc = -ENODEV;
2799 goto fail;
2800 }
Tejun Heo623a3122006-03-05 17:55:58 +09002801
Tejun Heofe635c72006-05-15 20:57:35 +09002802 /* read ID data */
2803 rc = ata_dev_read_id(ap, dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002804 if (rc)
2805 goto fail;
2806
2807 /* is the device still there? */
2808 if (!ata_dev_same_device(ap, dev, class, id)) {
2809 rc = -ENODEV;
2810 goto fail;
2811 }
2812
Tejun Heofe635c72006-05-15 20:57:35 +09002813 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002814
2815 /* configure device according to the new ID */
Tejun Heo5eb45c02006-04-02 18:51:52 +09002816 rc = ata_dev_configure(ap, dev, 0);
2817 if (rc == 0)
2818 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002819
2820 fail:
2821 printk(KERN_ERR "ata%u: dev %u revalidation failed (errno=%d)\n",
2822 ap->id, dev->devno, rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002823 return rc;
2824}
2825
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002826static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002827 "WDC AC11000H", NULL,
2828 "WDC AC22100H", NULL,
2829 "WDC AC32500H", NULL,
2830 "WDC AC33100H", NULL,
2831 "WDC AC31600H", NULL,
2832 "WDC AC32100H", "24.09P07",
2833 "WDC AC23200L", "21.10N21",
2834 "Compaq CRD-8241B", NULL,
2835 "CRD-8400B", NULL,
2836 "CRD-8480B", NULL,
2837 "CRD-8482B", NULL,
2838 "CRD-84", NULL,
2839 "SanDisk SDP3B", NULL,
2840 "SanDisk SDP3B-64", NULL,
2841 "SANYO CD-ROM CRD", NULL,
2842 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002843 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002844 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002845 "Toshiba CD-ROM XM-6202B", NULL,
2846 "TOSHIBA CD-ROM XM-1702BC", NULL,
2847 "CD-532E-A", NULL,
2848 "E-IDE CD-ROM CR-840", NULL,
2849 "CD-ROM Drive/F5A", NULL,
2850 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002851 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002852 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002853 "SanDisk SDP3B-64", NULL,
2854 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2855 "_NEC DV5800A", NULL,
2856 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002858
Alan Coxf4b15fe2006-03-22 15:54:04 +00002859static int ata_strim(char *s, size_t len)
2860{
2861 len = strnlen(s, len);
2862
2863 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2864 while ((len > 0) && (s[len - 1] == ' ')) {
2865 len--;
2866 s[len] = 0;
2867 }
2868 return len;
2869}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Jeff Garzik057ace52005-10-22 14:27:05 -04002871static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002873 unsigned char model_num[40];
2874 unsigned char model_rev[16];
2875 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 int i;
2877
Alan Coxf4b15fe2006-03-22 15:54:04 +00002878 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2879 sizeof(model_num));
2880 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2881 sizeof(model_rev));
2882 nlen = ata_strim(model_num, sizeof(model_num));
2883 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Alan Coxf4b15fe2006-03-22 15:54:04 +00002885 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2886 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2887 if (ata_dma_blacklist[i+1] == NULL)
2888 return 1;
2889 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2890 return 1;
2891 }
2892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 return 0;
2894}
2895
Tejun Heoa6d5a512006-03-06 04:31:57 +09002896/**
2897 * ata_dev_xfermask - Compute supported xfermask of the given device
2898 * @ap: Port on which the device to compute xfermask for resides
2899 * @dev: Device to compute xfermask for
2900 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002901 * Compute supported xfermask of @dev and store it in
2902 * dev->*_mask. This function is responsible for applying all
2903 * known limits including host controller limits, device
2904 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002905 *
Tejun Heo600511e2006-03-25 11:14:07 +09002906 * FIXME: The current implementation limits all transfer modes to
2907 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002908 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002909 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09002910 * LOCKING:
2911 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09002912 */
Tejun Heoacf356b2006-03-24 14:07:50 +09002913static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
Alan Cox5444a6f2006-03-27 18:58:20 +01002915 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002916 unsigned long xfer_mask;
2917 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Tejun Heo565083e2006-04-02 17:54:47 +09002919 xfer_mask = ata_pack_xfermask(ap->pio_mask,
2920 ap->mwdma_mask, ap->udma_mask);
2921
2922 /* Apply cable rule here. Don't apply it early because when
2923 * we handle hot plug the cable type can itself change.
2924 */
2925 if (ap->cbl == ATA_CBL_PATA40)
2926 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
Alan Cox5444a6f2006-03-27 18:58:20 +01002928 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002929 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2930 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09002931
2932 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002933 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09002934
2935 if (ata_dev_disabled(d)) {
2936 /* to avoid violating device selection timing */
2937 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2938 UINT_MAX, UINT_MAX);
2939 continue;
2940 }
2941
2942 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2943 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002944 xfer_mask &= ata_id_xfermask(d->id);
2945 if (ata_dma_blacklisted(d))
2946 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
2948
Tejun Heoa6d5a512006-03-06 04:31:57 +09002949 if (ata_dma_blacklisted(dev))
2950 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2951 "disabling DMA\n", ap->id, dev->devno);
2952
Alan Cox5444a6f2006-03-27 18:58:20 +01002953 if (hs->flags & ATA_HOST_SIMPLEX) {
2954 if (hs->simplex_claimed)
2955 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2956 }
Tejun Heo565083e2006-04-02 17:54:47 +09002957
Alan Cox5444a6f2006-03-27 18:58:20 +01002958 if (ap->ops->mode_filter)
2959 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
2960
Tejun Heo565083e2006-04-02 17:54:47 +09002961 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
2962 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963}
2964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2967 * @ap: Port associated with device @dev
2968 * @dev: Device to which command will be sent
2969 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002970 * Issue SET FEATURES - XFER MODE command to device @dev
2971 * on port @ap.
2972 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002974 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002975 *
2976 * RETURNS:
2977 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 */
2979
Tejun Heo83206a22006-03-24 15:25:31 +09002980static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
2981 struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982{
Tejun Heoa0123702005-12-13 14:49:31 +09002983 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002984 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
2986 /* set up set-features taskfile */
2987 DPRINTK("set features - xfer mode\n");
2988
Tejun Heoa0123702005-12-13 14:49:31 +09002989 ata_tf_init(ap, &tf, dev->devno);
2990 tf.command = ATA_CMD_SET_FEATURES;
2991 tf.feature = SETFEATURES_XFER;
2992 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2993 tf.protocol = ATA_PROT_NODATA;
2994 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Tejun Heod69cf372006-04-02 18:51:53 +09002996 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
Tejun Heo83206a22006-03-24 15:25:31 +09002998 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2999 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000}
3001
3002/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04003003 * ata_dev_init_params - Issue INIT DEV PARAMS command
3004 * @ap: Port associated with device @dev
3005 * @dev: Device to which command will be sent
3006 *
3007 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003008 * Kernel thread context (may sleep)
3009 *
3010 * RETURNS:
3011 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003012 */
3013
Tejun Heo6aff8f12006-02-15 18:24:09 +09003014static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +08003015 struct ata_device *dev,
3016 u16 heads,
3017 u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003018{
Tejun Heoa0123702005-12-13 14:49:31 +09003019 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003020 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003021
3022 /* Number of sectors per track 1-255. Number of heads 1-16 */
3023 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003024 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003025
3026 /* set up init dev params taskfile */
3027 DPRINTK("init dev params \n");
3028
Tejun Heoa0123702005-12-13 14:49:31 +09003029 ata_tf_init(ap, &tf, dev->devno);
3030 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3031 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3032 tf.protocol = ATA_PROT_NODATA;
3033 tf.nsect = sectors;
3034 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003035
Tejun Heod69cf372006-04-02 18:51:53 +09003036 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003037
Tejun Heo6aff8f12006-02-15 18:24:09 +09003038 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3039 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003040}
3041
3042/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003043 * ata_sg_clean - Unmap DMA memory associated with command
3044 * @qc: Command containing DMA memory to be released
3045 *
3046 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 *
3048 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003049 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 */
3051
3052static void ata_sg_clean(struct ata_queued_cmd *qc)
3053{
3054 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003055 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003057 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Tejun Heoa4631472006-02-11 19:11:13 +09003059 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3060 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
3062 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003063 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003065 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003067 /* if we padded the buffer out to 32-bit bound, and data
3068 * xfer direction is from-device, we must copy from the
3069 * pad buffer back into the supplied buffer
3070 */
3071 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3072 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3073
3074 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003075 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003076 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003077 /* restore last sg */
3078 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3079 if (pad_buf) {
3080 struct scatterlist *psg = &qc->pad_sgent;
3081 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3082 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003083 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003084 }
3085 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003086 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003087 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003088 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3089 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003090 /* restore sg */
3091 sg->length += qc->pad_len;
3092 if (pad_buf)
3093 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3094 pad_buf, qc->pad_len);
3095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
3097 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003098 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099}
3100
3101/**
3102 * ata_fill_sg - Fill PCI IDE PRD table
3103 * @qc: Metadata associated with taskfile to be transferred
3104 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003105 * Fill PCI IDE PRD (scatter-gather) table with segments
3106 * associated with the current disk command.
3107 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003109 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 *
3111 */
3112static void ata_fill_sg(struct ata_queued_cmd *qc)
3113{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003115 struct scatterlist *sg;
3116 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Tejun Heoa4631472006-02-11 19:11:13 +09003118 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003119 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
3121 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003122 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 u32 addr, offset;
3124 u32 sg_len, len;
3125
3126 /* determine if physical DMA addr spans 64K boundary.
3127 * Note h/w doesn't support 64-bit, so we unconditionally
3128 * truncate dma_addr_t to u32.
3129 */
3130 addr = (u32) sg_dma_address(sg);
3131 sg_len = sg_dma_len(sg);
3132
3133 while (sg_len) {
3134 offset = addr & 0xffff;
3135 len = sg_len;
3136 if ((offset + sg_len) > 0x10000)
3137 len = 0x10000 - offset;
3138
3139 ap->prd[idx].addr = cpu_to_le32(addr);
3140 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3141 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3142
3143 idx++;
3144 sg_len -= len;
3145 addr += len;
3146 }
3147 }
3148
3149 if (idx)
3150 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3151}
3152/**
3153 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3154 * @qc: Metadata associated with taskfile to check
3155 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003156 * Allow low-level driver to filter ATA PACKET commands, returning
3157 * a status indicating whether or not it is OK to use DMA for the
3158 * supplied PACKET command.
3159 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003161 * spin_lock_irqsave(host_set lock)
3162 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 * RETURNS: 0 when ATAPI DMA can be used
3164 * nonzero otherwise
3165 */
3166int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3167{
3168 struct ata_port *ap = qc->ap;
3169 int rc = 0; /* Assume ATAPI DMA is OK by default */
3170
3171 if (ap->ops->check_atapi_dma)
3172 rc = ap->ops->check_atapi_dma(qc);
3173
3174 return rc;
3175}
3176/**
3177 * ata_qc_prep - Prepare taskfile for submission
3178 * @qc: Metadata associated with taskfile to be prepared
3179 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003180 * Prepare ATA taskfile for submission.
3181 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 * LOCKING:
3183 * spin_lock_irqsave(host_set lock)
3184 */
3185void ata_qc_prep(struct ata_queued_cmd *qc)
3186{
3187 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3188 return;
3189
3190 ata_fill_sg(qc);
3191}
3192
Brian Kinge46834c2006-03-17 17:04:03 -06003193void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3194
Jeff Garzik0cba6322005-05-30 19:49:12 -04003195/**
3196 * ata_sg_init_one - Associate command with memory buffer
3197 * @qc: Command to be associated
3198 * @buf: Memory buffer
3199 * @buflen: Length of memory buffer, in bytes.
3200 *
3201 * Initialize the data-related elements of queued_cmd @qc
3202 * to point to a single memory buffer, @buf of byte length @buflen.
3203 *
3204 * LOCKING:
3205 * spin_lock_irqsave(host_set lock)
3206 */
3207
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3209{
3210 struct scatterlist *sg;
3211
3212 qc->flags |= ATA_QCFLAG_SINGLE;
3213
3214 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003215 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003217 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 qc->buf_virt = buf;
3219
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003220 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003221 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222}
3223
Jeff Garzik0cba6322005-05-30 19:49:12 -04003224/**
3225 * ata_sg_init - Associate command with scatter-gather table.
3226 * @qc: Command to be associated
3227 * @sg: Scatter-gather table.
3228 * @n_elem: Number of elements in s/g table.
3229 *
3230 * Initialize the data-related elements of queued_cmd @qc
3231 * to point to a scatter-gather table @sg, containing @n_elem
3232 * elements.
3233 *
3234 * LOCKING:
3235 * spin_lock_irqsave(host_set lock)
3236 */
3237
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3239 unsigned int n_elem)
3240{
3241 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003242 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003244 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245}
3246
3247/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003248 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3249 * @qc: Command with memory buffer to be mapped.
3250 *
3251 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 *
3253 * LOCKING:
3254 * spin_lock_irqsave(host_set lock)
3255 *
3256 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003257 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 */
3259
3260static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3261{
3262 struct ata_port *ap = qc->ap;
3263 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003264 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003266 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003268 /* we must lengthen transfers to end on a 32-bit boundary */
3269 qc->pad_len = sg->length & 3;
3270 if (qc->pad_len) {
3271 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3272 struct scatterlist *psg = &qc->pad_sgent;
3273
Tejun Heoa4631472006-02-11 19:11:13 +09003274 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003275
3276 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3277
3278 if (qc->tf.flags & ATA_TFLAG_WRITE)
3279 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3280 qc->pad_len);
3281
3282 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3283 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3284 /* trim sg */
3285 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003286 if (sg->length == 0)
3287 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003288
3289 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3290 sg->length, qc->pad_len);
3291 }
3292
Tejun Heo2e242fa2006-02-20 23:48:38 +09003293 if (trim_sg) {
3294 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003295 goto skip_map;
3296 }
3297
Brian King2f1f6102006-03-23 17:30:15 -06003298 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003299 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003300 if (dma_mapping_error(dma_address)) {
3301 /* restore sg */
3302 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
3306 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003307 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
Tejun Heo2e242fa2006-02-20 23:48:38 +09003309skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3311 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3312
3313 return 0;
3314}
3315
3316/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003317 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3318 * @qc: Command with scatter-gather table to be mapped.
3319 *
3320 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 *
3322 * LOCKING:
3323 * spin_lock_irqsave(host_set lock)
3324 *
3325 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003326 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 *
3328 */
3329
3330static int ata_sg_setup(struct ata_queued_cmd *qc)
3331{
3332 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003333 struct scatterlist *sg = qc->__sg;
3334 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003335 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
3337 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003338 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003340 /* we must lengthen transfers to end on a 32-bit boundary */
3341 qc->pad_len = lsg->length & 3;
3342 if (qc->pad_len) {
3343 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3344 struct scatterlist *psg = &qc->pad_sgent;
3345 unsigned int offset;
3346
Tejun Heoa4631472006-02-11 19:11:13 +09003347 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003348
3349 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3350
3351 /*
3352 * psg->page/offset are used to copy to-be-written
3353 * data in this function or read data in ata_sg_clean.
3354 */
3355 offset = lsg->offset + lsg->length - qc->pad_len;
3356 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3357 psg->offset = offset_in_page(offset);
3358
3359 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3360 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3361 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003362 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003363 }
3364
3365 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3366 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3367 /* trim last sg */
3368 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003369 if (lsg->length == 0)
3370 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003371
3372 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3373 qc->n_elem - 1, lsg->length, qc->pad_len);
3374 }
3375
Jeff Garzike1410f22005-11-14 14:06:26 -05003376 pre_n_elem = qc->n_elem;
3377 if (trim_sg && pre_n_elem)
3378 pre_n_elem--;
3379
3380 if (!pre_n_elem) {
3381 n_elem = 0;
3382 goto skip_map;
3383 }
3384
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003386 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003387 if (n_elem < 1) {
3388 /* restore last sg */
3389 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
3393 DPRINTK("%d sg elements mapped\n", n_elem);
3394
Jeff Garzike1410f22005-11-14 14:06:26 -05003395skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 qc->n_elem = n_elem;
3397
3398 return 0;
3399}
3400
3401/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003402 * ata_poll_qc_complete - turn irq back on and finish qc
3403 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003404 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003405 *
3406 * LOCKING:
3407 * None. (grabs host lock)
3408 */
3409
Albert Leea22e2eb2005-12-05 15:38:02 +08003410void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003411{
3412 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003413 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003414
Jeff Garzikb8f61532005-08-25 22:01:20 -04003415 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003416 ap->flags &= ~ATA_FLAG_NOINTR;
3417 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003418 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003419 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003420}
3421
3422/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003423 * ata_pio_poll - poll using PIO, depending on current state
Tejun Heoc91af2c2006-04-02 18:51:53 +09003424 * @qc: qc in progress
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 *
3426 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003427 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 *
3429 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003430 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003432static unsigned long ata_pio_poll(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003434 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08003436 unsigned int poll_state = HSM_ST_UNKNOWN;
3437 unsigned int reg_state = HSM_ST_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
Albert Lee14be71f2005-09-27 17:36:35 +08003439 switch (ap->hsm_task_state) {
3440 case HSM_ST:
3441 case HSM_ST_POLL:
3442 poll_state = HSM_ST_POLL;
3443 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 break;
Albert Lee14be71f2005-09-27 17:36:35 +08003445 case HSM_ST_LAST:
3446 case HSM_ST_LAST_POLL:
3447 poll_state = HSM_ST_LAST_POLL;
3448 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 break;
3450 default:
3451 BUG();
3452 break;
3453 }
3454
3455 status = ata_chk_status(ap);
3456 if (status & ATA_BUSY) {
3457 if (time_after(jiffies, ap->pio_task_timeout)) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003458 qc->err_mask |= AC_ERR_TIMEOUT;
Albert Lee7c398332005-11-09 13:03:30 +08003459 ap->hsm_task_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 return 0;
3461 }
Albert Lee14be71f2005-09-27 17:36:35 +08003462 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 return ATA_SHORT_PAUSE;
3464 }
3465
Albert Lee14be71f2005-09-27 17:36:35 +08003466 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 return 0;
3468}
3469
3470/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003471 * ata_pio_complete - check if drive is busy or idle
Tejun Heoc91af2c2006-04-02 18:51:53 +09003472 * @qc: qc to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 *
3474 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003475 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003476 *
3477 * RETURNS:
3478 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003480static int ata_pio_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003482 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 u8 drv_stat;
3484
3485 /*
Alan Cox31433ea2005-08-26 15:56:47 +01003486 * This is purely heuristic. This is a fast path. Sometimes when
3487 * we enter, BSY will be cleared in a chk-status or two. If not,
3488 * the drive is probably seeking or something. Snooze for a couple
3489 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003490 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 */
Albert Leefe79e682005-12-06 11:34:59 +08003492 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3493 if (drv_stat & ATA_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 msleep(2);
Albert Leefe79e682005-12-06 11:34:59 +08003495 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3496 if (drv_stat & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003497 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 }
3501 }
3502
3503 drv_stat = ata_wait_idle(ap);
3504 if (!ata_ok(drv_stat)) {
Albert Lee1c848982005-12-05 15:40:15 +08003505 qc->err_mask |= __ac_err_mask(drv_stat);
Albert Lee14be71f2005-09-27 17:36:35 +08003506 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 }
3509
Albert Lee14be71f2005-09-27 17:36:35 +08003510 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
Tejun Heoa4631472006-02-11 19:11:13 +09003512 WARN_ON(qc->err_mask);
Albert Leea22e2eb2005-12-05 15:38:02 +08003513 ata_poll_qc_complete(qc);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003514
3515 /* another command may start at this point */
3516
3517 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518}
3519
Edward Falk0baab862005-06-02 18:17:13 -04003520
3521/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003522 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003523 * @buf: Buffer to swap
3524 * @buf_words: Number of 16-bit words in buffer.
3525 *
3526 * Swap halves of 16-bit words if needed to convert from
3527 * little-endian byte order to native cpu byte order, or
3528 * vice-versa.
3529 *
3530 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003531 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003532 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533void swap_buf_le16(u16 *buf, unsigned int buf_words)
3534{
3535#ifdef __BIG_ENDIAN
3536 unsigned int i;
3537
3538 for (i = 0; i < buf_words; i++)
3539 buf[i] = le16_to_cpu(buf[i]);
3540#endif /* __BIG_ENDIAN */
3541}
3542
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003543/**
3544 * ata_mmio_data_xfer - Transfer data by MMIO
3545 * @ap: port to read/write
3546 * @buf: data buffer
3547 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003548 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003549 *
3550 * Transfer data from/to the device data register by MMIO.
3551 *
3552 * LOCKING:
3553 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003554 */
3555
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3557 unsigned int buflen, int write_data)
3558{
3559 unsigned int i;
3560 unsigned int words = buflen >> 1;
3561 u16 *buf16 = (u16 *) buf;
3562 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3563
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003564 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 if (write_data) {
3566 for (i = 0; i < words; i++)
3567 writew(le16_to_cpu(buf16[i]), mmio);
3568 } else {
3569 for (i = 0; i < words; i++)
3570 buf16[i] = cpu_to_le16(readw(mmio));
3571 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003572
3573 /* Transfer trailing 1 byte, if any. */
3574 if (unlikely(buflen & 0x01)) {
3575 u16 align_buf[1] = { 0 };
3576 unsigned char *trailing_buf = buf + buflen - 1;
3577
3578 if (write_data) {
3579 memcpy(align_buf, trailing_buf, 1);
3580 writew(le16_to_cpu(align_buf[0]), mmio);
3581 } else {
3582 align_buf[0] = cpu_to_le16(readw(mmio));
3583 memcpy(trailing_buf, align_buf, 1);
3584 }
3585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586}
3587
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003588/**
3589 * ata_pio_data_xfer - Transfer data by PIO
3590 * @ap: port to read/write
3591 * @buf: data buffer
3592 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003593 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003594 *
3595 * Transfer data from/to the device data register by PIO.
3596 *
3597 * LOCKING:
3598 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003599 */
3600
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3602 unsigned int buflen, int write_data)
3603{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003604 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003606 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003608 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003610 insw(ap->ioaddr.data_addr, buf, words);
3611
3612 /* Transfer trailing 1 byte, if any. */
3613 if (unlikely(buflen & 0x01)) {
3614 u16 align_buf[1] = { 0 };
3615 unsigned char *trailing_buf = buf + buflen - 1;
3616
3617 if (write_data) {
3618 memcpy(align_buf, trailing_buf, 1);
3619 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3620 } else {
3621 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3622 memcpy(trailing_buf, align_buf, 1);
3623 }
3624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625}
3626
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003627/**
3628 * ata_data_xfer - Transfer data from/to the data register.
3629 * @ap: port to read/write
3630 * @buf: data buffer
3631 * @buflen: buffer length
3632 * @do_write: read/write
3633 *
3634 * Transfer data from/to the device data register.
3635 *
3636 * LOCKING:
3637 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003638 */
3639
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3641 unsigned int buflen, int do_write)
3642{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003643 /* Make the crap hardware pay the costs not the good stuff */
3644 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3645 unsigned long flags;
3646 local_irq_save(flags);
3647 if (ap->flags & ATA_FLAG_MMIO)
3648 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3649 else
3650 ata_pio_data_xfer(ap, buf, buflen, do_write);
3651 local_irq_restore(flags);
3652 } else {
3653 if (ap->flags & ATA_FLAG_MMIO)
3654 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3655 else
3656 ata_pio_data_xfer(ap, buf, buflen, do_write);
3657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658}
3659
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003660/**
3661 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3662 * @qc: Command on going
3663 *
3664 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3665 *
3666 * LOCKING:
3667 * Inherited from caller.
3668 */
3669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670static void ata_pio_sector(struct ata_queued_cmd *qc)
3671{
3672 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003673 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 struct ata_port *ap = qc->ap;
3675 struct page *page;
3676 unsigned int offset;
3677 unsigned char *buf;
3678
3679 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003680 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
3682 page = sg[qc->cursg].page;
3683 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3684
3685 /* get the current page and offset */
3686 page = nth_page(page, (offset >> PAGE_SHIFT));
3687 offset %= PAGE_SIZE;
3688
3689 buf = kmap(page) + offset;
3690
3691 qc->cursect++;
3692 qc->cursg_ofs++;
3693
Albert Lee32529e02005-05-26 03:49:42 -04003694 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 qc->cursg++;
3696 qc->cursg_ofs = 0;
3697 }
3698
3699 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3700
3701 /* do the actual data transfer */
3702 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3703 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3704
3705 kunmap(page);
3706}
3707
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003708/**
3709 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3710 * @qc: Command on going
3711 * @bytes: number of bytes
3712 *
3713 * Transfer Transfer data from/to the ATAPI device.
3714 *
3715 * LOCKING:
3716 * Inherited from caller.
3717 *
3718 */
3719
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3721{
3722 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003723 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 struct ata_port *ap = qc->ap;
3725 struct page *page;
3726 unsigned char *buf;
3727 unsigned int offset, count;
3728
Albert Lee563a6e12005-08-12 14:17:50 +08003729 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003730 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
3732next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003733 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003734 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003735 * The end of qc->sg is reached and the device expects
3736 * more data to transfer. In order not to overrun qc->sg
3737 * and fulfill length specified in the byte count register,
3738 * - for read case, discard trailing data from the device
3739 * - for write case, padding zero data to the device
3740 */
3741 u16 pad_buf[1] = { 0 };
3742 unsigned int words = bytes >> 1;
3743 unsigned int i;
3744
3745 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003746 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003747 ap->id, bytes);
3748
3749 for (i = 0; i < words; i++)
3750 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3751
Albert Lee14be71f2005-09-27 17:36:35 +08003752 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003753 return;
3754 }
3755
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003756 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 page = sg->page;
3759 offset = sg->offset + qc->cursg_ofs;
3760
3761 /* get the current page and offset */
3762 page = nth_page(page, (offset >> PAGE_SHIFT));
3763 offset %= PAGE_SIZE;
3764
Albert Lee6952df02005-06-06 15:56:03 +08003765 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003766 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
3768 /* don't cross page boundaries */
3769 count = min(count, (unsigned int)PAGE_SIZE - offset);
3770
3771 buf = kmap(page) + offset;
3772
3773 bytes -= count;
3774 qc->curbytes += count;
3775 qc->cursg_ofs += count;
3776
Albert Lee32529e02005-05-26 03:49:42 -04003777 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 qc->cursg++;
3779 qc->cursg_ofs = 0;
3780 }
3781
3782 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3783
3784 /* do the actual data transfer */
3785 ata_data_xfer(ap, buf, count, do_write);
3786
3787 kunmap(page);
3788
Albert Lee563a6e12005-08-12 14:17:50 +08003789 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791}
3792
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003793/**
3794 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3795 * @qc: Command on going
3796 *
3797 * Transfer Transfer data from/to the ATAPI device.
3798 *
3799 * LOCKING:
3800 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003801 */
3802
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3804{
3805 struct ata_port *ap = qc->ap;
3806 struct ata_device *dev = qc->dev;
3807 unsigned int ireason, bc_lo, bc_hi, bytes;
3808 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3809
3810 ap->ops->tf_read(ap, &qc->tf);
3811 ireason = qc->tf.nsect;
3812 bc_lo = qc->tf.lbam;
3813 bc_hi = qc->tf.lbah;
3814 bytes = (bc_hi << 8) | bc_lo;
3815
3816 /* shall be cleared to zero, indicating xfer of data */
3817 if (ireason & (1 << 0))
3818 goto err_out;
3819
3820 /* make sure transfer direction matches expected */
3821 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3822 if (do_write != i_write)
3823 goto err_out;
3824
3825 __atapi_pio_bytes(qc, bytes);
3826
3827 return;
3828
3829err_out:
3830 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3831 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003832 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003833 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834}
3835
3836/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003837 * ata_pio_block - start PIO on a block
Tejun Heoc91af2c2006-04-02 18:51:53 +09003838 * @qc: qc to transfer block for
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 *
3840 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003841 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003843static void ata_pio_block(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003845 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 u8 status;
3847
3848 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003849 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 * Sometimes when we enter, BSY will be cleared in
3851 * a chk-status or two. If not, the drive is probably seeking
3852 * or something. Snooze for a couple msecs, then
3853 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003854 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 */
3856 status = ata_busy_wait(ap, ATA_BUSY, 5);
3857 if (status & ATA_BUSY) {
3858 msleep(2);
3859 status = ata_busy_wait(ap, ATA_BUSY, 10);
3860 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003861 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3863 return;
3864 }
3865 }
3866
Albert Leefe79e682005-12-06 11:34:59 +08003867 /* check error */
3868 if (status & (ATA_ERR | ATA_DF)) {
3869 qc->err_mask |= AC_ERR_DEV;
3870 ap->hsm_task_state = HSM_ST_ERR;
3871 return;
3872 }
3873
3874 /* transfer data if any */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 if (is_atapi_taskfile(&qc->tf)) {
Albert Leefe79e682005-12-06 11:34:59 +08003876 /* DRQ=0 means no more data to transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003878 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 return;
3880 }
3881
3882 atapi_pio_bytes(qc);
3883 } else {
3884 /* handle BSY=0, DRQ=0 as error */
3885 if ((status & ATA_DRQ) == 0) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003886 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003887 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 return;
3889 }
3890
3891 ata_pio_sector(qc);
3892 }
3893}
3894
Tejun Heoc91af2c2006-04-02 18:51:53 +09003895static void ata_pio_error(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003897 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Albert Lee0565c262006-02-13 18:55:25 +08003899 if (qc->tf.command != ATA_CMD_PACKET)
Tejun Heod63cb4a2006-04-02 18:51:52 +09003900 printk(KERN_WARNING "ata%u: dev %u PIO error\n",
3901 ap->id, qc->dev->devno);
Albert Lee0565c262006-02-13 18:55:25 +08003902
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003903 /* make sure qc->err_mask is available to
Albert Lee1c848982005-12-05 15:40:15 +08003904 * know what's wrong and recover
3905 */
Tejun Heoa4631472006-02-11 19:11:13 +09003906 WARN_ON(qc->err_mask == 0);
Albert Lee1c848982005-12-05 15:40:15 +08003907
Albert Lee14be71f2005-09-27 17:36:35 +08003908 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Albert Leea22e2eb2005-12-05 15:38:02 +08003910 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911}
3912
3913static void ata_pio_task(void *_data)
3914{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003915 struct ata_queued_cmd *qc = _data;
3916 struct ata_port *ap = qc->ap;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003917 unsigned long timeout;
3918 int qc_completed;
3919
3920fsm_start:
3921 timeout = 0;
3922 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Albert Lee14be71f2005-09-27 17:36:35 +08003924 switch (ap->hsm_task_state) {
3925 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 return;
3927
Albert Lee14be71f2005-09-27 17:36:35 +08003928 case HSM_ST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003929 ata_pio_block(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 break;
3931
Albert Lee14be71f2005-09-27 17:36:35 +08003932 case HSM_ST_LAST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003933 qc_completed = ata_pio_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 break;
3935
Albert Lee14be71f2005-09-27 17:36:35 +08003936 case HSM_ST_POLL:
3937 case HSM_ST_LAST_POLL:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003938 timeout = ata_pio_poll(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 break;
3940
Albert Lee14be71f2005-09-27 17:36:35 +08003941 case HSM_ST_TMOUT:
3942 case HSM_ST_ERR:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003943 ata_pio_error(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 return;
3945 }
3946
3947 if (timeout)
Tejun Heoc91af2c2006-04-02 18:51:53 +09003948 ata_port_queue_task(ap, ata_pio_task, qc, timeout);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003949 else if (!qc_completed)
3950 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951}
3952
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953/**
Tejun Heo8061f5f2006-03-05 15:29:09 +09003954 * atapi_packet_task - Write CDB bytes to hardware
Tejun Heoc91af2c2006-04-02 18:51:53 +09003955 * @_data: qc in progress
Tejun Heo8061f5f2006-03-05 15:29:09 +09003956 *
3957 * When device has indicated its readiness to accept
3958 * a CDB, this function is called. Send the CDB.
3959 * If DMA is to be performed, exit immediately.
3960 * Otherwise, we are in polling mode, so poll
3961 * status under operation succeeds or fails.
3962 *
3963 * LOCKING:
3964 * Kernel thread context (may sleep)
3965 */
Tejun Heo8061f5f2006-03-05 15:29:09 +09003966static void atapi_packet_task(void *_data)
3967{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003968 struct ata_queued_cmd *qc = _data;
3969 struct ata_port *ap = qc->ap;
Tejun Heo8061f5f2006-03-05 15:29:09 +09003970 u8 status;
3971
Tejun Heo8061f5f2006-03-05 15:29:09 +09003972 /* sleep-wait for BSY to clear */
3973 DPRINTK("busy wait\n");
3974 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
3975 qc->err_mask |= AC_ERR_TIMEOUT;
3976 goto err_out;
3977 }
3978
3979 /* make sure DRQ is set */
3980 status = ata_chk_status(ap);
3981 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
3982 qc->err_mask |= AC_ERR_HSM;
3983 goto err_out;
3984 }
3985
3986 /* send SCSI cdb */
3987 DPRINTK("send cdb\n");
3988 WARN_ON(qc->dev->cdb_len < 12);
3989
3990 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
3991 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
3992 unsigned long flags;
3993
3994 /* Once we're done issuing command and kicking bmdma,
3995 * irq handler takes over. To not lose irq, we need
3996 * to clear NOINTR flag before sending cdb, but
3997 * interrupt handler shouldn't be invoked before we're
3998 * finished. Hence, the following locking.
3999 */
4000 spin_lock_irqsave(&ap->host_set->lock, flags);
4001 ap->flags &= ~ATA_FLAG_NOINTR;
4002 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
4003 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
4004 ap->ops->bmdma_start(qc); /* initiate bmdma */
4005 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4006 } else {
4007 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
4008
4009 /* PIO commands are handled by polling */
4010 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004011 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Tejun Heo8061f5f2006-03-05 15:29:09 +09004012 }
4013
4014 return;
4015
4016err_out:
4017 ata_poll_qc_complete(qc);
4018}
4019
4020/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 * ata_qc_new - Request an available ATA command, for queueing
4022 * @ap: Port associated with device @dev
4023 * @dev: Device from whom we request an available command structure
4024 *
4025 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004026 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 */
4028
4029static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4030{
4031 struct ata_queued_cmd *qc = NULL;
4032 unsigned int i;
4033
4034 for (i = 0; i < ATA_MAX_QUEUE; i++)
4035 if (!test_and_set_bit(i, &ap->qactive)) {
4036 qc = ata_qc_from_tag(ap, i);
4037 break;
4038 }
4039
4040 if (qc)
4041 qc->tag = i;
4042
4043 return qc;
4044}
4045
4046/**
4047 * ata_qc_new_init - Request an available ATA command, and initialize it
4048 * @ap: Port associated with device @dev
4049 * @dev: Device from whom we request an available command structure
4050 *
4051 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004052 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 */
4054
4055struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
4056 struct ata_device *dev)
4057{
4058 struct ata_queued_cmd *qc;
4059
4060 qc = ata_qc_new(ap);
4061 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 qc->scsicmd = NULL;
4063 qc->ap = ap;
4064 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004066 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 }
4068
4069 return qc;
4070}
4071
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072/**
4073 * ata_qc_free - free unused ata_queued_cmd
4074 * @qc: Command to complete
4075 *
4076 * Designed to free unused ata_queued_cmd object
4077 * in case something prevents using it.
4078 *
4079 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004080 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 */
4082void ata_qc_free(struct ata_queued_cmd *qc)
4083{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004084 struct ata_port *ap = qc->ap;
4085 unsigned int tag;
4086
Tejun Heoa4631472006-02-11 19:11:13 +09004087 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
Tejun Heo4ba946e2006-01-23 13:09:36 +09004089 qc->flags = 0;
4090 tag = qc->tag;
4091 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004092 qc->tag = ATA_TAG_POISON;
4093 clear_bit(tag, &ap->qactive);
4094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095}
4096
Tejun Heo76014422006-02-11 15:13:49 +09004097void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098{
Tejun Heoa4631472006-02-11 19:11:13 +09004099 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4100 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
4102 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4103 ata_sg_clean(qc);
4104
Tejun Heo7401abf2006-05-15 20:57:32 +09004105 /* command should be marked inactive atomically with qc completion */
4106 qc->ap->active_tag = ATA_TAG_POISON;
4107
Albert Lee3f3791d2005-08-16 14:25:38 +08004108 /* atapi: mark qc as inactive to prevent the interrupt handler
4109 * from completing the command twice later, before the error handler
4110 * is called. (when rc != 0 and atapi request sense is needed)
4111 */
4112 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4113
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004115 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116}
4117
4118static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4119{
4120 struct ata_port *ap = qc->ap;
4121
4122 switch (qc->tf.protocol) {
4123 case ATA_PROT_DMA:
4124 case ATA_PROT_ATAPI_DMA:
4125 return 1;
4126
4127 case ATA_PROT_ATAPI:
4128 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 if (ap->flags & ATA_FLAG_PIO_DMA)
4130 return 1;
4131
4132 /* fall through */
4133
4134 default:
4135 return 0;
4136 }
4137
4138 /* never reached */
4139}
4140
4141/**
4142 * ata_qc_issue - issue taskfile to device
4143 * @qc: command to issue to device
4144 *
4145 * Prepare an ATA command to submission to device.
4146 * This includes mapping the data into a DMA-able
4147 * area, filling in the S/G table, and finally
4148 * writing the taskfile to hardware, starting the command.
4149 *
4150 * LOCKING:
4151 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004153void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154{
4155 struct ata_port *ap = qc->ap;
4156
Tejun Heoe4a70e72006-03-31 20:36:47 +09004157 qc->ap->active_tag = qc->tag;
4158 qc->flags |= ATA_QCFLAG_ACTIVE;
4159
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 if (ata_should_dma_map(qc)) {
4161 if (qc->flags & ATA_QCFLAG_SG) {
4162 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004163 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4165 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004166 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 }
4168 } else {
4169 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4170 }
4171
4172 ap->ops->qc_prep(qc);
4173
Tejun Heo8e0e6942006-03-31 20:41:11 +09004174 qc->err_mask |= ap->ops->qc_issue(qc);
4175 if (unlikely(qc->err_mask))
4176 goto err;
4177 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178
Tejun Heo8e436af2006-01-23 13:09:36 +09004179sg_err:
4180 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004181 qc->err_mask |= AC_ERR_SYSTEM;
4182err:
4183 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184}
4185
4186/**
4187 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4188 * @qc: command to issue to device
4189 *
4190 * Using various libata functions and hooks, this function
4191 * starts an ATA command. ATA commands are grouped into
4192 * classes called "protocols", and issuing each type of protocol
4193 * is slightly different.
4194 *
Edward Falk0baab862005-06-02 18:17:13 -04004195 * May be used as the qc_issue() entry in ata_port_operations.
4196 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 * LOCKING:
4198 * spin_lock_irqsave(host_set lock)
4199 *
4200 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004201 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 */
4203
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004204unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205{
4206 struct ata_port *ap = qc->ap;
4207
4208 ata_dev_select(ap, qc->dev->devno, 1, 0);
4209
4210 switch (qc->tf.protocol) {
4211 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05004212 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 break;
4214
4215 case ATA_PROT_DMA:
4216 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4217 ap->ops->bmdma_setup(qc); /* set up bmdma */
4218 ap->ops->bmdma_start(qc); /* initiate bmdma */
4219 break;
4220
4221 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
4222 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004223 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08004224 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004225 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 break;
4227
4228 case ATA_PROT_ATAPI:
4229 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004230 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004231 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 break;
4233
4234 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09004235 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05004236 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004237 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 break;
4239
4240 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09004241 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4243 ap->ops->bmdma_setup(qc); /* set up bmdma */
Tejun Heoc91af2c2006-04-02 18:51:53 +09004244 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 break;
4246
4247 default:
4248 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004249 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 }
4251
4252 return 0;
4253}
4254
4255/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 * ata_host_intr - Handle host interrupt for given (port, task)
4257 * @ap: Port on which interrupt arrived (possibly...)
4258 * @qc: Taskfile currently active in engine
4259 *
4260 * Handle host interrupt for given queued command. Currently,
4261 * only DMA interrupts are handled. All other commands are
4262 * handled via polling with interrupts disabled (nIEN bit).
4263 *
4264 * LOCKING:
4265 * spin_lock_irqsave(host_set lock)
4266 *
4267 * RETURNS:
4268 * One if interrupt was handled, zero if not (shared irq).
4269 */
4270
4271inline unsigned int ata_host_intr (struct ata_port *ap,
4272 struct ata_queued_cmd *qc)
4273{
4274 u8 status, host_stat;
4275
4276 switch (qc->tf.protocol) {
4277
4278 case ATA_PROT_DMA:
4279 case ATA_PROT_ATAPI_DMA:
4280 case ATA_PROT_ATAPI:
4281 /* check status of DMA engine */
4282 host_stat = ap->ops->bmdma_status(ap);
4283 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4284
4285 /* if it's not our irq... */
4286 if (!(host_stat & ATA_DMA_INTR))
4287 goto idle_irq;
4288
4289 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004290 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291
4292 /* fall through */
4293
4294 case ATA_PROT_ATAPI_NODATA:
4295 case ATA_PROT_NODATA:
4296 /* check altstatus */
4297 status = ata_altstatus(ap);
4298 if (status & ATA_BUSY)
4299 goto idle_irq;
4300
4301 /* check main status, clearing INTRQ */
4302 status = ata_chk_status(ap);
4303 if (unlikely(status & ATA_BUSY))
4304 goto idle_irq;
4305 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4306 ap->id, qc->tf.protocol, status);
4307
4308 /* ack bmdma irq events */
4309 ap->ops->irq_clear(ap);
4310
4311 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004312 qc->err_mask |= ac_err_mask(status);
4313 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 break;
4315
4316 default:
4317 goto idle_irq;
4318 }
4319
4320 return 1; /* irq handled */
4321
4322idle_irq:
4323 ap->stats.idle_irq++;
4324
4325#ifdef ATA_IRQ_TRAP
4326 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 ata_irq_ack(ap, 0); /* debug trap */
4328 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
Alan Cox23cfce82006-03-21 16:06:53 +00004329 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 }
4331#endif
4332 return 0; /* irq not handled */
4333}
4334
4335/**
4336 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004337 * @irq: irq line (unused)
4338 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 * @regs: unused
4340 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004341 * Default interrupt handler for PCI IDE devices. Calls
4342 * ata_host_intr() for each port that is not disabled.
4343 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004345 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 *
4347 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004348 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 */
4350
4351irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4352{
4353 struct ata_host_set *host_set = dev_instance;
4354 unsigned int i;
4355 unsigned int handled = 0;
4356 unsigned long flags;
4357
4358 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4359 spin_lock_irqsave(&host_set->lock, flags);
4360
4361 for (i = 0; i < host_set->n_ports; i++) {
4362 struct ata_port *ap;
4363
4364 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004365 if (ap &&
Tejun Heo198e0fe2006-04-02 18:51:52 +09004366 !(ap->flags & (ATA_FLAG_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 struct ata_queued_cmd *qc;
4368
4369 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08004370 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4371 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 handled |= ata_host_intr(ap, qc);
4373 }
4374 }
4375
4376 spin_unlock_irqrestore(&host_set->lock, flags);
4377
4378 return IRQ_RETVAL(handled);
4379}
4380
Tejun Heo34bf2172006-05-15 20:57:46 +09004381/**
4382 * sata_scr_valid - test whether SCRs are accessible
4383 * @ap: ATA port to test SCR accessibility for
4384 *
4385 * Test whether SCRs are accessible for @ap.
4386 *
4387 * LOCKING:
4388 * None.
4389 *
4390 * RETURNS:
4391 * 1 if SCRs are accessible, 0 otherwise.
4392 */
4393int sata_scr_valid(struct ata_port *ap)
4394{
4395 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4396}
4397
4398/**
4399 * sata_scr_read - read SCR register of the specified port
4400 * @ap: ATA port to read SCR for
4401 * @reg: SCR to read
4402 * @val: Place to store read value
4403 *
4404 * Read SCR register @reg of @ap into *@val. This function is
4405 * guaranteed to succeed if the cable type of the port is SATA
4406 * and the port implements ->scr_read.
4407 *
4408 * LOCKING:
4409 * None.
4410 *
4411 * RETURNS:
4412 * 0 on success, negative errno on failure.
4413 */
4414int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4415{
4416 if (sata_scr_valid(ap)) {
4417 *val = ap->ops->scr_read(ap, reg);
4418 return 0;
4419 }
4420 return -EOPNOTSUPP;
4421}
4422
4423/**
4424 * sata_scr_write - write SCR register of the specified port
4425 * @ap: ATA port to write SCR for
4426 * @reg: SCR to write
4427 * @val: value to write
4428 *
4429 * Write @val to SCR register @reg of @ap. This function is
4430 * guaranteed to succeed if the cable type of the port is SATA
4431 * and the port implements ->scr_read.
4432 *
4433 * LOCKING:
4434 * None.
4435 *
4436 * RETURNS:
4437 * 0 on success, negative errno on failure.
4438 */
4439int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4440{
4441 if (sata_scr_valid(ap)) {
4442 ap->ops->scr_write(ap, reg, val);
4443 return 0;
4444 }
4445 return -EOPNOTSUPP;
4446}
4447
4448/**
4449 * sata_scr_write_flush - write SCR register of the specified port and flush
4450 * @ap: ATA port to write SCR for
4451 * @reg: SCR to write
4452 * @val: value to write
4453 *
4454 * This function is identical to sata_scr_write() except that this
4455 * function performs flush after writing to the register.
4456 *
4457 * LOCKING:
4458 * None.
4459 *
4460 * RETURNS:
4461 * 0 on success, negative errno on failure.
4462 */
4463int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4464{
4465 if (sata_scr_valid(ap)) {
4466 ap->ops->scr_write(ap, reg, val);
4467 ap->ops->scr_read(ap, reg);
4468 return 0;
4469 }
4470 return -EOPNOTSUPP;
4471}
4472
4473/**
4474 * ata_port_online - test whether the given port is online
4475 * @ap: ATA port to test
4476 *
4477 * Test whether @ap is online. Note that this function returns 0
4478 * if online status of @ap cannot be obtained, so
4479 * ata_port_online(ap) != !ata_port_offline(ap).
4480 *
4481 * LOCKING:
4482 * None.
4483 *
4484 * RETURNS:
4485 * 1 if the port online status is available and online.
4486 */
4487int ata_port_online(struct ata_port *ap)
4488{
4489 u32 sstatus;
4490
4491 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4492 return 1;
4493 return 0;
4494}
4495
4496/**
4497 * ata_port_offline - test whether the given port is offline
4498 * @ap: ATA port to test
4499 *
4500 * Test whether @ap is offline. Note that this function returns
4501 * 0 if offline status of @ap cannot be obtained, so
4502 * ata_port_online(ap) != !ata_port_offline(ap).
4503 *
4504 * LOCKING:
4505 * None.
4506 *
4507 * RETURNS:
4508 * 1 if the port offline status is available and offline.
4509 */
4510int ata_port_offline(struct ata_port *ap)
4511{
4512 u32 sstatus;
4513
4514 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4515 return 1;
4516 return 0;
4517}
Edward Falk0baab862005-06-02 18:17:13 -04004518
Jens Axboe9b847542006-01-06 09:28:07 +01004519/*
4520 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4521 * without filling any other registers
4522 */
4523static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4524 u8 cmd)
4525{
4526 struct ata_taskfile tf;
4527 int err;
4528
4529 ata_tf_init(ap, &tf, dev->devno);
4530
4531 tf.command = cmd;
4532 tf.flags |= ATA_TFLAG_DEVICE;
4533 tf.protocol = ATA_PROT_NODATA;
4534
Tejun Heod69cf372006-04-02 18:51:53 +09004535 err = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004536 if (err)
4537 printk(KERN_ERR "%s: ata command failed: %d\n",
4538 __FUNCTION__, err);
4539
4540 return err;
4541}
4542
4543static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4544{
4545 u8 cmd;
4546
4547 if (!ata_try_flush_cache(dev))
4548 return 0;
4549
4550 if (ata_id_has_flush_ext(dev->id))
4551 cmd = ATA_CMD_FLUSH_EXT;
4552 else
4553 cmd = ATA_CMD_FLUSH;
4554
4555 return ata_do_simple_cmd(ap, dev, cmd);
4556}
4557
4558static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4559{
4560 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4561}
4562
4563static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4564{
4565 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4566}
4567
4568/**
4569 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004570 * @ap: port the device is connected to
4571 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004572 *
4573 * Kick the drive back into action, by sending it an idle immediate
4574 * command and making sure its transfer mode matches between drive
4575 * and host.
4576 *
4577 */
4578int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4579{
4580 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004581 struct ata_device *failed_dev;
Jens Axboe9b847542006-01-06 09:28:07 +01004582 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004583 while (ata_set_mode(ap, &failed_dev))
4584 ata_dev_disable(ap, failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004585 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004586 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004587 return 0;
4588 if (dev->class == ATA_DEV_ATA)
4589 ata_start_drive(ap, dev);
4590
4591 return 0;
4592}
4593
4594/**
4595 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004596 * @ap: port the device is connected to
4597 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004598 *
4599 * Flush the cache on the drive, if appropriate, then issue a
4600 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004601 */
Nigel Cunningham082776e2006-03-23 23:22:16 +10004602int ata_device_suspend(struct ata_port *ap, struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004603{
Tejun Heoe1211e32006-04-01 01:38:18 +09004604 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004605 return 0;
4606 if (dev->class == ATA_DEV_ATA)
4607 ata_flush_cache(ap, dev);
4608
Nigel Cunningham082776e2006-03-23 23:22:16 +10004609 if (state.event != PM_EVENT_FREEZE)
4610 ata_standby_drive(ap, dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004611 ap->flags |= ATA_FLAG_SUSPENDED;
4612 return 0;
4613}
4614
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004615/**
4616 * ata_port_start - Set port up for dma.
4617 * @ap: Port to initialize
4618 *
4619 * Called just after data structures for each port are
4620 * initialized. Allocates space for PRD table.
4621 *
4622 * May be used as the port_start() entry in ata_port_operations.
4623 *
4624 * LOCKING:
4625 * Inherited from caller.
4626 */
4627
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628int ata_port_start (struct ata_port *ap)
4629{
Brian King2f1f6102006-03-23 17:30:15 -06004630 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004631 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
4633 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4634 if (!ap->prd)
4635 return -ENOMEM;
4636
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004637 rc = ata_pad_alloc(ap, dev);
4638 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004639 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004640 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004641 }
4642
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4644
4645 return 0;
4646}
4647
Edward Falk0baab862005-06-02 18:17:13 -04004648
4649/**
4650 * ata_port_stop - Undo ata_port_start()
4651 * @ap: Port to shut down
4652 *
4653 * Frees the PRD table.
4654 *
4655 * May be used as the port_stop() entry in ata_port_operations.
4656 *
4657 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004658 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004659 */
4660
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661void ata_port_stop (struct ata_port *ap)
4662{
Brian King2f1f6102006-03-23 17:30:15 -06004663 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
4665 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004666 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667}
4668
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004669void ata_host_stop (struct ata_host_set *host_set)
4670{
4671 if (host_set->mmio_base)
4672 iounmap(host_set->mmio_base);
4673}
4674
4675
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676/**
4677 * ata_host_remove - Unregister SCSI host structure with upper layers
4678 * @ap: Port to unregister
4679 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4680 *
4681 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004682 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 */
4684
4685static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4686{
4687 struct Scsi_Host *sh = ap->host;
4688
4689 DPRINTK("ENTER\n");
4690
4691 if (do_unregister)
4692 scsi_remove_host(sh);
4693
4694 ap->ops->port_stop(ap);
4695}
4696
4697/**
4698 * ata_host_init - Initialize an ata_port structure
4699 * @ap: Structure to initialize
4700 * @host: associated SCSI mid-layer structure
4701 * @host_set: Collection of hosts to which @ap belongs
4702 * @ent: Probe information provided by low-level driver
4703 * @port_no: Port number associated with this ata_port
4704 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004705 * Initialize a new ata_port structure, and its associated
4706 * scsi_host.
4707 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004709 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 */
4711
4712static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4713 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004714 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715{
4716 unsigned int i;
4717
4718 host->max_id = 16;
4719 host->max_lun = 1;
4720 host->max_channel = 1;
4721 host->unique_id = ata_unique_id++;
4722 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004723
Tejun Heo198e0fe2006-04-02 18:51:52 +09004724 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 ap->id = host->unique_id;
4726 ap->host = host;
4727 ap->ctl = ATA_DEVCTL_OBS;
4728 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06004729 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 ap->port_no = port_no;
4731 ap->hard_port_no =
4732 ent->legacy_mode ? ent->hard_port_no : port_no;
4733 ap->pio_mask = ent->pio_mask;
4734 ap->mwdma_mask = ent->mwdma_mask;
4735 ap->udma_mask = ent->udma_mask;
4736 ap->flags |= ent->host_flags;
4737 ap->ops = ent->port_ops;
Tejun Heo1c3fae42006-04-02 20:53:28 +09004738 ap->sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 ap->active_tag = ATA_TAG_POISON;
4740 ap->last_ctl = 0xFF;
4741
Tejun Heo86e45b62006-03-05 15:29:09 +09004742 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004743 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744
Tejun Heo838df622006-05-15 20:57:44 +09004745 /* set cable type */
4746 ap->cbl = ATA_CBL_NONE;
4747 if (ap->flags & ATA_FLAG_SATA)
4748 ap->cbl = ATA_CBL_SATA;
4749
Tejun Heoacf356b2006-03-24 14:07:50 +09004750 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4751 struct ata_device *dev = &ap->device[i];
4752 dev->devno = i;
4753 dev->pio_mask = UINT_MAX;
4754 dev->mwdma_mask = UINT_MAX;
4755 dev->udma_mask = UINT_MAX;
4756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
4758#ifdef ATA_IRQ_TRAP
4759 ap->stats.unhandled_irq = 1;
4760 ap->stats.idle_irq = 1;
4761#endif
4762
4763 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4764}
4765
4766/**
4767 * ata_host_add - Attach low-level ATA driver to system
4768 * @ent: Information provided by low-level driver
4769 * @host_set: Collections of ports to which we add
4770 * @port_no: Port number associated with this host
4771 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004772 * Attach low-level ATA driver to system.
4773 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004775 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 *
4777 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004778 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 */
4780
Jeff Garzik057ace52005-10-22 14:27:05 -04004781static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 struct ata_host_set *host_set,
4783 unsigned int port_no)
4784{
4785 struct Scsi_Host *host;
4786 struct ata_port *ap;
4787 int rc;
4788
4789 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09004790
4791 if (!ent->port_ops->probe_reset &&
4792 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4793 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4794 port_no);
4795 return NULL;
4796 }
4797
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4799 if (!host)
4800 return NULL;
4801
Tejun Heo30afc842006-03-18 18:40:14 +09004802 host->transportt = &ata_scsi_transport_template;
4803
Jeff Garzik35bb94b2006-04-11 13:12:34 -04004804 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805
4806 ata_host_init(ap, host, host_set, ent, port_no);
4807
4808 rc = ap->ops->port_start(ap);
4809 if (rc)
4810 goto err_out;
4811
4812 return ap;
4813
4814err_out:
4815 scsi_host_put(host);
4816 return NULL;
4817}
4818
4819/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004820 * ata_device_add - Register hardware device with ATA and SCSI layers
4821 * @ent: Probe information describing hardware device to be registered
4822 *
4823 * This function processes the information provided in the probe
4824 * information struct @ent, allocates the necessary ATA and SCSI
4825 * host information structures, initializes them, and registers
4826 * everything with requisite kernel subsystems.
4827 *
4828 * This function requests irqs, probes the ATA bus, and probes
4829 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 *
4831 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004832 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 *
4834 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004835 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 */
4837
Jeff Garzik057ace52005-10-22 14:27:05 -04004838int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839{
4840 unsigned int count = 0, i;
4841 struct device *dev = ent->dev;
4842 struct ata_host_set *host_set;
4843
4844 DPRINTK("ENTER\n");
4845 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004846 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4848 if (!host_set)
4849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 spin_lock_init(&host_set->lock);
4851
4852 host_set->dev = dev;
4853 host_set->n_ports = ent->n_ports;
4854 host_set->irq = ent->irq;
4855 host_set->mmio_base = ent->mmio_base;
4856 host_set->private_data = ent->private_data;
4857 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01004858 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
4860 /* register each port bound to this device */
4861 for (i = 0; i < ent->n_ports; i++) {
4862 struct ata_port *ap;
4863 unsigned long xfer_mode_mask;
4864
4865 ap = ata_host_add(ent, host_set, i);
4866 if (!ap)
4867 goto err_out;
4868
4869 host_set->ports[i] = ap;
4870 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4871 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4872 (ap->pio_mask << ATA_SHIFT_PIO);
4873
4874 /* print per-port info to dmesg */
4875 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4876 "bmdma 0x%lX irq %lu\n",
4877 ap->id,
4878 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4879 ata_mode_string(xfer_mode_mask),
4880 ap->ioaddr.cmd_addr,
4881 ap->ioaddr.ctl_addr,
4882 ap->ioaddr.bmdma_addr,
4883 ent->irq);
4884
4885 ata_chk_status(ap);
4886 host_set->ops->irq_clear(ap);
4887 count++;
4888 }
4889
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004890 if (!count)
4891 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892
4893 /* obtain irq, that is shared between channels */
4894 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4895 DRV_NAME, host_set))
4896 goto err_out;
4897
4898 /* perform each probe synchronously */
4899 DPRINTK("probe begin\n");
4900 for (i = 0; i < count; i++) {
4901 struct ata_port *ap;
4902 int rc;
4903
4904 ap = host_set->ports[i];
4905
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004906 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004908 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909
4910 if (rc) {
4911 /* FIXME: do something useful here?
4912 * Current libata behavior will
4913 * tear down everything when
4914 * the module is removed
4915 * or the h/w is unplugged.
4916 */
4917 }
4918
4919 rc = scsi_add_host(ap->host, dev);
4920 if (rc) {
4921 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4922 ap->id);
4923 /* FIXME: do something useful here */
4924 /* FIXME: handle unconditional calls to
4925 * scsi_scan_host and ata_host_remove, below,
4926 * at the very least
4927 */
4928 }
4929 }
4930
4931 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004932 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 for (i = 0; i < count; i++) {
4934 struct ata_port *ap = host_set->ports[i];
4935
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004936 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 }
4938
4939 dev_set_drvdata(dev, host_set);
4940
4941 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4942 return ent->n_ports; /* success */
4943
4944err_out:
4945 for (i = 0; i < count; i++) {
4946 ata_host_remove(host_set->ports[i], 1);
4947 scsi_host_put(host_set->ports[i]->host);
4948 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004949err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 kfree(host_set);
4951 VPRINTK("EXIT, returning 0\n");
4952 return 0;
4953}
4954
4955/**
Alan Cox17b14452005-09-15 15:44:00 +01004956 * ata_host_set_remove - PCI layer callback for device removal
4957 * @host_set: ATA host set that was removed
4958 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004959 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01004960 * objects.
4961 *
4962 * LOCKING:
4963 * Inherited from calling layer (may sleep).
4964 */
4965
Alan Cox17b14452005-09-15 15:44:00 +01004966void ata_host_set_remove(struct ata_host_set *host_set)
4967{
4968 struct ata_port *ap;
4969 unsigned int i;
4970
4971 for (i = 0; i < host_set->n_ports; i++) {
4972 ap = host_set->ports[i];
4973 scsi_remove_host(ap->host);
4974 }
4975
4976 free_irq(host_set->irq, host_set);
4977
4978 for (i = 0; i < host_set->n_ports; i++) {
4979 ap = host_set->ports[i];
4980
4981 ata_scsi_release(ap->host);
4982
4983 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4984 struct ata_ioports *ioaddr = &ap->ioaddr;
4985
4986 if (ioaddr->cmd_addr == 0x1f0)
4987 release_region(0x1f0, 8);
4988 else if (ioaddr->cmd_addr == 0x170)
4989 release_region(0x170, 8);
4990 }
4991
4992 scsi_host_put(ap->host);
4993 }
4994
4995 if (host_set->ops->host_stop)
4996 host_set->ops->host_stop(host_set);
4997
4998 kfree(host_set);
4999}
5000
5001/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 * ata_scsi_release - SCSI layer callback hook for host unload
5003 * @host: libata host to be unloaded
5004 *
5005 * Performs all duties necessary to shut down a libata port...
5006 * Kill port kthread, disable port, and release resources.
5007 *
5008 * LOCKING:
5009 * Inherited from SCSI layer.
5010 *
5011 * RETURNS:
5012 * One.
5013 */
5014
5015int ata_scsi_release(struct Scsi_Host *host)
5016{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005017 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
5019 DPRINTK("ENTER\n");
5020
5021 ap->ops->port_disable(ap);
5022 ata_host_remove(ap, 0);
5023
5024 DPRINTK("EXIT\n");
5025 return 1;
5026}
5027
5028/**
5029 * ata_std_ports - initialize ioaddr with standard port offsets.
5030 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005031 *
5032 * Utility function which initializes data_addr, error_addr,
5033 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5034 * device_addr, status_addr, and command_addr to standard offsets
5035 * relative to cmd_addr.
5036 *
5037 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 */
Edward Falk0baab862005-06-02 18:17:13 -04005039
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040void ata_std_ports(struct ata_ioports *ioaddr)
5041{
5042 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5043 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5044 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5045 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5046 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5047 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5048 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5049 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5050 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5051 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5052}
5053
Edward Falk0baab862005-06-02 18:17:13 -04005054
Jeff Garzik374b1872005-08-30 05:42:52 -04005055#ifdef CONFIG_PCI
5056
5057void ata_pci_host_stop (struct ata_host_set *host_set)
5058{
5059 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5060
5061 pci_iounmap(pdev, host_set->mmio_base);
5062}
5063
Edward Falk0baab862005-06-02 18:17:13 -04005064/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065 * ata_pci_remove_one - PCI layer callback for device removal
5066 * @pdev: PCI device that was removed
5067 *
5068 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005069 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 * Handle this by unregistering all objects associated
5071 * with this PCI device. Free those objects. Then finally
5072 * release PCI resources and disable device.
5073 *
5074 * LOCKING:
5075 * Inherited from PCI layer (may sleep).
5076 */
5077
5078void ata_pci_remove_one (struct pci_dev *pdev)
5079{
5080 struct device *dev = pci_dev_to_dev(pdev);
5081 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
Alan Cox17b14452005-09-15 15:44:00 +01005083 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 pci_release_regions(pdev);
5085 pci_disable_device(pdev);
5086 dev_set_drvdata(dev, NULL);
5087}
5088
5089/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005090int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091{
5092 unsigned long tmp = 0;
5093
5094 switch (bits->width) {
5095 case 1: {
5096 u8 tmp8 = 0;
5097 pci_read_config_byte(pdev, bits->reg, &tmp8);
5098 tmp = tmp8;
5099 break;
5100 }
5101 case 2: {
5102 u16 tmp16 = 0;
5103 pci_read_config_word(pdev, bits->reg, &tmp16);
5104 tmp = tmp16;
5105 break;
5106 }
5107 case 4: {
5108 u32 tmp32 = 0;
5109 pci_read_config_dword(pdev, bits->reg, &tmp32);
5110 tmp = tmp32;
5111 break;
5112 }
5113
5114 default:
5115 return -EINVAL;
5116 }
5117
5118 tmp &= bits->mask;
5119
5120 return (tmp == bits->val) ? 1 : 0;
5121}
Jens Axboe9b847542006-01-06 09:28:07 +01005122
5123int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5124{
5125 pci_save_state(pdev);
5126 pci_disable_device(pdev);
5127 pci_set_power_state(pdev, PCI_D3hot);
5128 return 0;
5129}
5130
5131int ata_pci_device_resume(struct pci_dev *pdev)
5132{
5133 pci_set_power_state(pdev, PCI_D0);
5134 pci_restore_state(pdev);
5135 pci_enable_device(pdev);
5136 pci_set_master(pdev);
5137 return 0;
5138}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139#endif /* CONFIG_PCI */
5140
5141
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142static int __init ata_init(void)
5143{
5144 ata_wq = create_workqueue("ata");
5145 if (!ata_wq)
5146 return -ENOMEM;
5147
5148 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5149 return 0;
5150}
5151
5152static void __exit ata_exit(void)
5153{
5154 destroy_workqueue(ata_wq);
5155}
5156
5157module_init(ata_init);
5158module_exit(ata_exit);
5159
Jeff Garzik67846b32005-10-05 02:58:32 -04005160static unsigned long ratelimit_time;
5161static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5162
5163int ata_ratelimit(void)
5164{
5165 int rc;
5166 unsigned long flags;
5167
5168 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5169
5170 if (time_after(jiffies, ratelimit_time)) {
5171 rc = 1;
5172 ratelimit_time = jiffies + (HZ/5);
5173 } else
5174 rc = 0;
5175
5176 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5177
5178 return rc;
5179}
5180
Tejun Heoc22daff2006-04-11 22:22:29 +09005181/**
5182 * ata_wait_register - wait until register value changes
5183 * @reg: IO-mapped register
5184 * @mask: Mask to apply to read register value
5185 * @val: Wait condition
5186 * @interval_msec: polling interval in milliseconds
5187 * @timeout_msec: timeout in milliseconds
5188 *
5189 * Waiting for some bits of register to change is a common
5190 * operation for ATA controllers. This function reads 32bit LE
5191 * IO-mapped register @reg and tests for the following condition.
5192 *
5193 * (*@reg & mask) != val
5194 *
5195 * If the condition is met, it returns; otherwise, the process is
5196 * repeated after @interval_msec until timeout.
5197 *
5198 * LOCKING:
5199 * Kernel thread context (may sleep)
5200 *
5201 * RETURNS:
5202 * The final register value.
5203 */
5204u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5205 unsigned long interval_msec,
5206 unsigned long timeout_msec)
5207{
5208 unsigned long timeout;
5209 u32 tmp;
5210
5211 tmp = ioread32(reg);
5212
5213 /* Calculate timeout _after_ the first read to make sure
5214 * preceding writes reach the controller before starting to
5215 * eat away the timeout.
5216 */
5217 timeout = jiffies + (timeout_msec * HZ) / 1000;
5218
5219 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5220 msleep(interval_msec);
5221 tmp = ioread32(reg);
5222 }
5223
5224 return tmp;
5225}
5226
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227/*
5228 * libata is essentially a library of internal helper functions for
5229 * low-level ATA host controller drivers. As such, the API/ABI is
5230 * likely to change as new drivers are added and updated.
5231 * Do not depend on ABI/API stability.
5232 */
5233
5234EXPORT_SYMBOL_GPL(ata_std_bios_param);
5235EXPORT_SYMBOL_GPL(ata_std_ports);
5236EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005237EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238EXPORT_SYMBOL_GPL(ata_sg_init);
5239EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo76014422006-02-11 15:13:49 +09005240EXPORT_SYMBOL_GPL(__ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242EXPORT_SYMBOL_GPL(ata_tf_load);
5243EXPORT_SYMBOL_GPL(ata_tf_read);
5244EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5245EXPORT_SYMBOL_GPL(ata_std_dev_select);
5246EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5247EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5248EXPORT_SYMBOL_GPL(ata_check_status);
5249EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250EXPORT_SYMBOL_GPL(ata_exec_command);
5251EXPORT_SYMBOL_GPL(ata_port_start);
5252EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005253EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254EXPORT_SYMBOL_GPL(ata_interrupt);
5255EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005256EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5258EXPORT_SYMBOL_GPL(ata_bmdma_start);
5259EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5260EXPORT_SYMBOL_GPL(ata_bmdma_status);
5261EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5262EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005263EXPORT_SYMBOL_GPL(sata_set_spd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264EXPORT_SYMBOL_GPL(sata_phy_reset);
5265EXPORT_SYMBOL_GPL(__sata_phy_reset);
5266EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005267EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005268EXPORT_SYMBOL_GPL(ata_std_softreset);
5269EXPORT_SYMBOL_GPL(sata_std_hardreset);
5270EXPORT_SYMBOL_GPL(ata_std_postreset);
5271EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005272EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005273EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005274EXPORT_SYMBOL_GPL(ata_dev_classify);
5275EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005277EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005278EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005279EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005280EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5282EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5284EXPORT_SYMBOL_GPL(ata_scsi_release);
5285EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005286EXPORT_SYMBOL_GPL(sata_scr_valid);
5287EXPORT_SYMBOL_GPL(sata_scr_read);
5288EXPORT_SYMBOL_GPL(sata_scr_write);
5289EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5290EXPORT_SYMBOL_GPL(ata_port_online);
5291EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005292EXPORT_SYMBOL_GPL(ata_id_string);
5293EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5295
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005296EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005297EXPORT_SYMBOL_GPL(ata_timing_compute);
5298EXPORT_SYMBOL_GPL(ata_timing_merge);
5299
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300#ifdef CONFIG_PCI
5301EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005302EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5304EXPORT_SYMBOL_GPL(ata_pci_init_one);
5305EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005306EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5307EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005308EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5309EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005311
5312EXPORT_SYMBOL_GPL(ata_device_suspend);
5313EXPORT_SYMBOL_GPL(ata_device_resume);
5314EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5315EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005316
Tejun Heoece1d632006-04-02 18:51:53 +09005317EXPORT_SYMBOL_GPL(ata_eng_timeout);
5318EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5319EXPORT_SYMBOL_GPL(ata_eh_qc_retry);