blob: e891b83be10fd36e865549dd952f4f77d496e449 [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 Heo3373efd2006-05-15 20:57:53 +090064static unsigned int ata_dev_init_params(struct ata_device *dev,
65 u16 heads, u16 sectors);
66static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
67static void ata_dev_xfermask(struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69static unsigned int ata_unique_id = 1;
70static struct workqueue_struct *ata_wq;
71
Jeff Garzik418dc1f2006-03-11 20:50:08 -050072int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040073module_param(atapi_enabled, int, 0444);
74MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
75
Albert Lee95de7192006-04-04 10:57:18 +080076int atapi_dmadir = 0;
77module_param(atapi_dmadir, int, 0444);
78MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
79
Jeff Garzikc3c013a2006-02-27 22:31:19 -050080int libata_fua = 0;
81module_param_named(fua, libata_fua, int, 0444);
82MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084MODULE_AUTHOR("Jeff Garzik");
85MODULE_DESCRIPTION("Library module for ATA devices");
86MODULE_LICENSE("GPL");
87MODULE_VERSION(DRV_VERSION);
88
Edward Falk0baab862005-06-02 18:17:13 -040089
90/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
92 * @tf: Taskfile to convert
93 * @fis: Buffer into which data will output
94 * @pmp: Port multiplier port
95 *
96 * Converts a standard ATA taskfile to a Serial ATA
97 * FIS structure (Register - Host to Device).
98 *
99 * LOCKING:
100 * Inherited from caller.
101 */
102
Jeff Garzik057ace52005-10-22 14:27:05 -0400103void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 fis[0] = 0x27; /* Register - Host to Device FIS */
106 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
107 bit 7 indicates Command FIS */
108 fis[2] = tf->command;
109 fis[3] = tf->feature;
110
111 fis[4] = tf->lbal;
112 fis[5] = tf->lbam;
113 fis[6] = tf->lbah;
114 fis[7] = tf->device;
115
116 fis[8] = tf->hob_lbal;
117 fis[9] = tf->hob_lbam;
118 fis[10] = tf->hob_lbah;
119 fis[11] = tf->hob_feature;
120
121 fis[12] = tf->nsect;
122 fis[13] = tf->hob_nsect;
123 fis[14] = 0;
124 fis[15] = tf->ctl;
125
126 fis[16] = 0;
127 fis[17] = 0;
128 fis[18] = 0;
129 fis[19] = 0;
130}
131
132/**
133 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
134 * @fis: Buffer from which data will be input
135 * @tf: Taskfile to output
136 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500137 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 *
139 * LOCKING:
140 * Inherited from caller.
141 */
142
Jeff Garzik057ace52005-10-22 14:27:05 -0400143void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 tf->command = fis[2]; /* status */
146 tf->feature = fis[3]; /* error */
147
148 tf->lbal = fis[4];
149 tf->lbam = fis[5];
150 tf->lbah = fis[6];
151 tf->device = fis[7];
152
153 tf->hob_lbal = fis[8];
154 tf->hob_lbam = fis[9];
155 tf->hob_lbah = fis[10];
156
157 tf->nsect = fis[12];
158 tf->hob_nsect = fis[13];
159}
160
Albert Lee8cbd6df2005-10-12 15:06:27 +0800161static const u8 ata_rw_cmds[] = {
162 /* pio multi */
163 ATA_CMD_READ_MULTI,
164 ATA_CMD_WRITE_MULTI,
165 ATA_CMD_READ_MULTI_EXT,
166 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100167 0,
168 0,
169 0,
170 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800171 /* pio */
172 ATA_CMD_PIO_READ,
173 ATA_CMD_PIO_WRITE,
174 ATA_CMD_PIO_READ_EXT,
175 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100176 0,
177 0,
178 0,
179 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800180 /* dma */
181 ATA_CMD_READ,
182 ATA_CMD_WRITE,
183 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100184 ATA_CMD_WRITE_EXT,
185 0,
186 0,
187 0,
188 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800189};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800192 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
193 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500195 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800196 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 *
198 * LOCKING:
199 * caller.
200 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100201int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800203 struct ata_taskfile *tf = &qc->tf;
204 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100205 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100207 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500208
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100209 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800210 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
211 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Albert Lee8cbd6df2005-10-12 15:06:27 +0800213 if (dev->flags & ATA_DFLAG_PIO) {
214 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100215 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000216 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
217 /* Unable to use DMA due to host limitation */
218 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800219 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800220 } else {
221 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100222 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100225 cmd = ata_rw_cmds[index + fua + lba48 + write];
226 if (cmd) {
227 tf->command = cmd;
228 return 0;
229 }
230 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
Tejun Heocb95d562006-03-06 04:31:56 +0900233/**
234 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
235 * @pio_mask: pio_mask
236 * @mwdma_mask: mwdma_mask
237 * @udma_mask: udma_mask
238 *
239 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
240 * unsigned int xfer_mask.
241 *
242 * LOCKING:
243 * None.
244 *
245 * RETURNS:
246 * Packed xfer_mask.
247 */
248static unsigned int ata_pack_xfermask(unsigned int pio_mask,
249 unsigned int mwdma_mask,
250 unsigned int udma_mask)
251{
252 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
253 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
254 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
255}
256
Tejun Heoc0489e42006-03-24 14:07:49 +0900257/**
258 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
259 * @xfer_mask: xfer_mask to unpack
260 * @pio_mask: resulting pio_mask
261 * @mwdma_mask: resulting mwdma_mask
262 * @udma_mask: resulting udma_mask
263 *
264 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
265 * Any NULL distination masks will be ignored.
266 */
267static void ata_unpack_xfermask(unsigned int xfer_mask,
268 unsigned int *pio_mask,
269 unsigned int *mwdma_mask,
270 unsigned int *udma_mask)
271{
272 if (pio_mask)
273 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
274 if (mwdma_mask)
275 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
276 if (udma_mask)
277 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
278}
279
Tejun Heocb95d562006-03-06 04:31:56 +0900280static const struct ata_xfer_ent {
Tejun Heobe9a50c82006-03-31 22:48:52 +0900281 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900282 u8 base;
283} ata_xfer_tbl[] = {
284 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
285 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
286 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
287 { -1, },
288};
289
290/**
291 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
292 * @xfer_mask: xfer_mask of interest
293 *
294 * Return matching XFER_* value for @xfer_mask. Only the highest
295 * bit of @xfer_mask is considered.
296 *
297 * LOCKING:
298 * None.
299 *
300 * RETURNS:
301 * Matching XFER_* value, 0 if no match found.
302 */
303static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
304{
305 int highbit = fls(xfer_mask) - 1;
306 const struct ata_xfer_ent *ent;
307
308 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
309 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
310 return ent->base + highbit - ent->shift;
311 return 0;
312}
313
314/**
315 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
316 * @xfer_mode: XFER_* of interest
317 *
318 * Return matching xfer_mask for @xfer_mode.
319 *
320 * LOCKING:
321 * None.
322 *
323 * RETURNS:
324 * Matching xfer_mask, 0 if no match found.
325 */
326static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
327{
328 const struct ata_xfer_ent *ent;
329
330 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
331 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
332 return 1 << (ent->shift + xfer_mode - ent->base);
333 return 0;
334}
335
336/**
337 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
338 * @xfer_mode: XFER_* of interest
339 *
340 * Return matching xfer_shift for @xfer_mode.
341 *
342 * LOCKING:
343 * None.
344 *
345 * RETURNS:
346 * Matching xfer_shift, -1 if no match found.
347 */
348static int ata_xfer_mode2shift(unsigned int xfer_mode)
349{
350 const struct ata_xfer_ent *ent;
351
352 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
353 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
354 return ent->shift;
355 return -1;
356}
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900359 * ata_mode_string - convert xfer_mask to string
360 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 *
362 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900363 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *
365 * LOCKING:
366 * None.
367 *
368 * RETURNS:
369 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900370 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900372static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Tejun Heo75f554b2006-03-06 04:31:57 +0900374 static const char * const xfer_mode_str[] = {
375 "PIO0",
376 "PIO1",
377 "PIO2",
378 "PIO3",
379 "PIO4",
380 "MWDMA0",
381 "MWDMA1",
382 "MWDMA2",
383 "UDMA/16",
384 "UDMA/25",
385 "UDMA/33",
386 "UDMA/44",
387 "UDMA/66",
388 "UDMA/100",
389 "UDMA/133",
390 "UDMA7",
391 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900392 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900394 highbit = fls(xfer_mask) - 1;
395 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
396 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
Tejun Heo4c360c82006-04-01 01:38:17 +0900400static const char *sata_spd_string(unsigned int spd)
401{
402 static const char * const spd_str[] = {
403 "1.5 Gbps",
404 "3.0 Gbps",
405 };
406
407 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
408 return "<unknown>";
409 return spd_str[spd - 1];
410}
411
Tejun Heo3373efd2006-05-15 20:57:53 +0900412void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900413{
Tejun Heoe1211e32006-04-01 01:38:18 +0900414 if (ata_dev_enabled(dev)) {
Tejun Heof15a1da2006-05-15 20:57:56 +0900415 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo0b8efb02006-03-24 15:25:31 +0900416 dev->class++;
417 }
418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/**
421 * ata_pio_devchk - PATA device presence detection
422 * @ap: ATA channel to examine
423 * @device: Device to examine (starting at zero)
424 *
425 * This technique was originally described in
426 * Hale Landis's ATADRVR (www.ata-atapi.com), and
427 * later found its way into the ATA/ATAPI spec.
428 *
429 * Write a pattern to the ATA shadow registers,
430 * and if a device is present, it will respond by
431 * correctly storing and echoing back the
432 * ATA shadow register contents.
433 *
434 * LOCKING:
435 * caller.
436 */
437
438static unsigned int ata_pio_devchk(struct ata_port *ap,
439 unsigned int device)
440{
441 struct ata_ioports *ioaddr = &ap->ioaddr;
442 u8 nsect, lbal;
443
444 ap->ops->dev_select(ap, device);
445
446 outb(0x55, ioaddr->nsect_addr);
447 outb(0xaa, ioaddr->lbal_addr);
448
449 outb(0xaa, ioaddr->nsect_addr);
450 outb(0x55, ioaddr->lbal_addr);
451
452 outb(0x55, ioaddr->nsect_addr);
453 outb(0xaa, ioaddr->lbal_addr);
454
455 nsect = inb(ioaddr->nsect_addr);
456 lbal = inb(ioaddr->lbal_addr);
457
458 if ((nsect == 0x55) && (lbal == 0xaa))
459 return 1; /* we found a device */
460
461 return 0; /* nothing found */
462}
463
464/**
465 * ata_mmio_devchk - PATA device presence detection
466 * @ap: ATA channel to examine
467 * @device: Device to examine (starting at zero)
468 *
469 * This technique was originally described in
470 * Hale Landis's ATADRVR (www.ata-atapi.com), and
471 * later found its way into the ATA/ATAPI spec.
472 *
473 * Write a pattern to the ATA shadow registers,
474 * and if a device is present, it will respond by
475 * correctly storing and echoing back the
476 * ATA shadow register contents.
477 *
478 * LOCKING:
479 * caller.
480 */
481
482static unsigned int ata_mmio_devchk(struct ata_port *ap,
483 unsigned int device)
484{
485 struct ata_ioports *ioaddr = &ap->ioaddr;
486 u8 nsect, lbal;
487
488 ap->ops->dev_select(ap, device);
489
490 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
491 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
492
493 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
494 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
495
496 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
497 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
498
499 nsect = readb((void __iomem *) ioaddr->nsect_addr);
500 lbal = readb((void __iomem *) ioaddr->lbal_addr);
501
502 if ((nsect == 0x55) && (lbal == 0xaa))
503 return 1; /* we found a device */
504
505 return 0; /* nothing found */
506}
507
508/**
509 * ata_devchk - PATA device presence detection
510 * @ap: ATA channel to examine
511 * @device: Device to examine (starting at zero)
512 *
513 * Dispatch ATA device presence detection, depending
514 * on whether we are using PIO or MMIO to talk to the
515 * ATA shadow registers.
516 *
517 * LOCKING:
518 * caller.
519 */
520
521static unsigned int ata_devchk(struct ata_port *ap,
522 unsigned int device)
523{
524 if (ap->flags & ATA_FLAG_MMIO)
525 return ata_mmio_devchk(ap, device);
526 return ata_pio_devchk(ap, device);
527}
528
529/**
530 * ata_dev_classify - determine device type based on ATA-spec signature
531 * @tf: ATA taskfile register set for device to be identified
532 *
533 * Determine from taskfile register contents whether a device is
534 * ATA or ATAPI, as per "Signature and persistence" section
535 * of ATA/PI spec (volume 1, sect 5.14).
536 *
537 * LOCKING:
538 * None.
539 *
540 * RETURNS:
541 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
542 * the event of failure.
543 */
544
Jeff Garzik057ace52005-10-22 14:27:05 -0400545unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 /* Apple's open source Darwin code hints that some devices only
548 * put a proper signature into the LBA mid/high registers,
549 * So, we only check those. It's sufficient for uniqueness.
550 */
551
552 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
553 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
554 DPRINTK("found ATA device by sig\n");
555 return ATA_DEV_ATA;
556 }
557
558 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
559 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
560 DPRINTK("found ATAPI device by sig\n");
561 return ATA_DEV_ATAPI;
562 }
563
564 DPRINTK("unknown device\n");
565 return ATA_DEV_UNKNOWN;
566}
567
568/**
569 * ata_dev_try_classify - Parse returned ATA device signature
570 * @ap: ATA channel to examine
571 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900572 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 *
574 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
575 * an ATA/ATAPI-defined set of values is placed in the ATA
576 * shadow registers, indicating the results of device detection
577 * and diagnostics.
578 *
579 * Select the ATA device, and read the values from the ATA shadow
580 * registers. Then parse according to the Error register value,
581 * and the spec-defined values examined by ata_dev_classify().
582 *
583 * LOCKING:
584 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900585 *
586 * RETURNS:
587 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 */
589
Tejun Heob4dc7622006-01-24 17:05:22 +0900590static unsigned int
591ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 struct ata_taskfile tf;
594 unsigned int class;
595 u8 err;
596
597 ap->ops->dev_select(ap, device);
598
599 memset(&tf, 0, sizeof(tf));
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400602 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900603 if (r_err)
604 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 /* see if device passed diags */
607 if (err == 1)
608 /* do nothing */ ;
609 else if ((device == 0) && (err == 0x81))
610 /* do nothing */ ;
611 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900612 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Tejun Heob4dc7622006-01-24 17:05:22 +0900614 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900618 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900620 return ATA_DEV_NONE;
621 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900625 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 * @id: IDENTIFY DEVICE results we will examine
627 * @s: string into which data is output
628 * @ofs: offset into identify device page
629 * @len: length of string to return. must be an even number.
630 *
631 * The strings in the IDENTIFY DEVICE page are broken up into
632 * 16-bit chunks. Run through the string, and output each
633 * 8-bit chunk linearly, regardless of platform.
634 *
635 * LOCKING:
636 * caller.
637 */
638
Tejun Heo6a62a042006-02-13 10:02:46 +0900639void ata_id_string(const u16 *id, unsigned char *s,
640 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 unsigned int c;
643
644 while (len > 0) {
645 c = id[ofs] >> 8;
646 *s = c;
647 s++;
648
649 c = id[ofs] & 0xff;
650 *s = c;
651 s++;
652
653 ofs++;
654 len -= 2;
655 }
656}
657
Tejun Heo0e949ff2006-02-12 22:47:04 +0900658/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900659 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900660 * @id: IDENTIFY DEVICE results we will examine
661 * @s: string into which data is output
662 * @ofs: offset into identify device page
663 * @len: length of string to return. must be an odd number.
664 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900665 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900666 * trims trailing spaces and terminates the resulting string with
667 * null. @len must be actual maximum length (even number) + 1.
668 *
669 * LOCKING:
670 * caller.
671 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900672void ata_id_c_string(const u16 *id, unsigned char *s,
673 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900674{
675 unsigned char *p;
676
677 WARN_ON(!(len & 1));
678
Tejun Heo6a62a042006-02-13 10:02:46 +0900679 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900680
681 p = s + strnlen(s, len - 1);
682 while (p > s && p[-1] == ' ')
683 p--;
684 *p = '\0';
685}
Edward Falk0baab862005-06-02 18:17:13 -0400686
Tejun Heo29407402006-02-12 22:47:04 +0900687static u64 ata_id_n_sectors(const u16 *id)
688{
689 if (ata_id_has_lba(id)) {
690 if (ata_id_has_lba48(id))
691 return ata_id_u64(id, 100);
692 else
693 return ata_id_u32(id, 60);
694 } else {
695 if (ata_id_current_chs_valid(id))
696 return ata_id_u32(id, 57);
697 else
698 return id[1] * id[3] * id[6];
699 }
700}
701
Edward Falk0baab862005-06-02 18:17:13 -0400702/**
703 * ata_noop_dev_select - Select device 0/1 on ATA bus
704 * @ap: ATA channel to manipulate
705 * @device: ATA device (numbered from zero) to select
706 *
707 * This function performs no actual function.
708 *
709 * May be used as the dev_select() entry in ata_port_operations.
710 *
711 * LOCKING:
712 * caller.
713 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
715{
716}
717
Edward Falk0baab862005-06-02 18:17:13 -0400718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719/**
720 * ata_std_dev_select - Select device 0/1 on ATA bus
721 * @ap: ATA channel to manipulate
722 * @device: ATA device (numbered from zero) to select
723 *
724 * Use the method defined in the ATA specification to
725 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400726 * ATA channel. Works with both PIO and MMIO.
727 *
728 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 *
730 * LOCKING:
731 * caller.
732 */
733
734void ata_std_dev_select (struct ata_port *ap, unsigned int device)
735{
736 u8 tmp;
737
738 if (device == 0)
739 tmp = ATA_DEVICE_OBS;
740 else
741 tmp = ATA_DEVICE_OBS | ATA_DEV1;
742
743 if (ap->flags & ATA_FLAG_MMIO) {
744 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
745 } else {
746 outb(tmp, ap->ioaddr.device_addr);
747 }
748 ata_pause(ap); /* needed; also flushes, for mmio */
749}
750
751/**
752 * ata_dev_select - Select device 0/1 on ATA bus
753 * @ap: ATA channel to manipulate
754 * @device: ATA device (numbered from zero) to select
755 * @wait: non-zero to wait for Status register BSY bit to clear
756 * @can_sleep: non-zero if context allows sleeping
757 *
758 * Use the method defined in the ATA specification to
759 * make either device 0, or device 1, active on the
760 * ATA channel.
761 *
762 * This is a high-level version of ata_std_dev_select(),
763 * which additionally provides the services of inserting
764 * the proper pauses and status polling, where needed.
765 *
766 * LOCKING:
767 * caller.
768 */
769
770void ata_dev_select(struct ata_port *ap, unsigned int device,
771 unsigned int wait, unsigned int can_sleep)
772{
773 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
774 ap->id, device, wait);
775
776 if (wait)
777 ata_wait_idle(ap);
778
779 ap->ops->dev_select(ap, device);
780
781 if (wait) {
782 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
783 msleep(150);
784 ata_wait_idle(ap);
785 }
786}
787
788/**
789 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900790 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900792 * Dump selected 16-bit words from the given IDENTIFY DEVICE
793 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 *
795 * LOCKING:
796 * caller.
797 */
798
Tejun Heo0bd33002006-02-12 22:47:05 +0900799static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 DPRINTK("49==0x%04x "
802 "53==0x%04x "
803 "63==0x%04x "
804 "64==0x%04x "
805 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900806 id[49],
807 id[53],
808 id[63],
809 id[64],
810 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 DPRINTK("80==0x%04x "
812 "81==0x%04x "
813 "82==0x%04x "
814 "83==0x%04x "
815 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900816 id[80],
817 id[81],
818 id[82],
819 id[83],
820 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 DPRINTK("88==0x%04x "
822 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900823 id[88],
824 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Tejun Heocb95d562006-03-06 04:31:56 +0900827/**
828 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
829 * @id: IDENTIFY data to compute xfer mask from
830 *
831 * Compute the xfermask for this device. This is not as trivial
832 * as it seems if we must consider early devices correctly.
833 *
834 * FIXME: pre IDE drive timing (do we care ?).
835 *
836 * LOCKING:
837 * None.
838 *
839 * RETURNS:
840 * Computed xfermask
841 */
842static unsigned int ata_id_xfermask(const u16 *id)
843{
844 unsigned int pio_mask, mwdma_mask, udma_mask;
845
846 /* Usual case. Word 53 indicates word 64 is valid */
847 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
848 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
849 pio_mask <<= 3;
850 pio_mask |= 0x7;
851 } else {
852 /* If word 64 isn't valid then Word 51 high byte holds
853 * the PIO timing number for the maximum. Turn it into
854 * a mask.
855 */
856 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
857
858 /* But wait.. there's more. Design your standards by
859 * committee and you too can get a free iordy field to
860 * process. However its the speeds not the modes that
861 * are supported... Note drivers using the timing API
862 * will get this right anyway
863 */
864 }
865
866 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900867
868 udma_mask = 0;
869 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
870 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900871
872 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
873}
874
Tejun Heo86e45b62006-03-05 15:29:09 +0900875/**
876 * ata_port_queue_task - Queue port_task
877 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -0700878 * @fn: workqueue function to be scheduled
879 * @data: data value to pass to workqueue function
880 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +0900881 *
882 * Schedule @fn(@data) for execution after @delay jiffies using
883 * port_task. There is one port_task per port and it's the
884 * user(low level driver)'s responsibility to make sure that only
885 * one task is active at any given time.
886 *
887 * libata core layer takes care of synchronization between
888 * port_task and EH. ata_port_queue_task() may be ignored for EH
889 * synchronization.
890 *
891 * LOCKING:
892 * Inherited from caller.
893 */
894void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
895 unsigned long delay)
896{
897 int rc;
898
Tejun Heo2e755f62006-03-05 15:29:09 +0900899 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900900 return;
901
902 PREPARE_WORK(&ap->port_task, fn, data);
903
904 if (!delay)
905 rc = queue_work(ata_wq, &ap->port_task);
906 else
907 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
908
909 /* rc == 0 means that another user is using port task */
910 WARN_ON(rc == 0);
911}
912
913/**
914 * ata_port_flush_task - Flush port_task
915 * @ap: The ata_port to flush port_task for
916 *
917 * After this function completes, port_task is guranteed not to
918 * be running or scheduled.
919 *
920 * LOCKING:
921 * Kernel thread context (may sleep)
922 */
923void ata_port_flush_task(struct ata_port *ap)
924{
925 unsigned long flags;
926
927 DPRINTK("ENTER\n");
928
929 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900930 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900931 spin_unlock_irqrestore(&ap->host_set->lock, flags);
932
933 DPRINTK("flush #1\n");
934 flush_workqueue(ata_wq);
935
936 /*
937 * At this point, if a task is running, it's guaranteed to see
938 * the FLUSH flag; thus, it will never queue pio tasks again.
939 * Cancel and flush.
940 */
941 if (!cancel_delayed_work(&ap->port_task)) {
942 DPRINTK("flush #2\n");
943 flush_workqueue(ata_wq);
944 }
945
946 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900947 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900948 spin_unlock_irqrestore(&ap->host_set->lock, flags);
949
950 DPRINTK("EXIT\n");
951}
952
Tejun Heo77853bf2006-01-23 13:09:36 +0900953void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900954{
Tejun Heo77853bf2006-01-23 13:09:36 +0900955 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900956
Tejun Heoa2a7a662005-12-13 14:48:31 +0900957 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900958}
959
960/**
961 * ata_exec_internal - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900962 * @dev: Device to which the command is sent
963 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900964 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900965 * @dma_dir: Data tranfer direction of the command
966 * @buf: Data buffer of the command
967 * @buflen: Length of data buffer
968 *
969 * Executes libata internal command with timeout. @tf contains
970 * command on entry and result on return. Timeout and error
971 * conditions are reported via return value. No recovery action
972 * is taken after a command times out. It's caller's duty to
973 * clean up after timeout.
974 *
975 * LOCKING:
976 * None. Should be called with kernel context, might sleep.
977 */
978
Tejun Heo3373efd2006-05-15 20:57:53 +0900979unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900980 struct ata_taskfile *tf, const u8 *cdb,
981 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900982{
Tejun Heo3373efd2006-05-15 20:57:53 +0900983 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900984 u8 command = tf->command;
985 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +0900986 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +0900987 u32 preempted_sactive, preempted_qc_active;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900988 DECLARE_COMPLETION(wait);
989 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900990 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +0900991 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900992
993 spin_lock_irqsave(&ap->host_set->lock, flags);
994
Tejun Heoe3180492006-05-15 20:58:09 +0900995 /* no internal command while frozen */
996 if (ap->flags & ATA_FLAG_FROZEN) {
997 spin_unlock_irqrestore(&ap->host_set->lock, flags);
998 return AC_ERR_SYSTEM;
999 }
1000
Tejun Heo2ab7db12006-05-15 20:58:02 +09001001 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001002
Tejun Heo2ab7db12006-05-15 20:58:02 +09001003 /* XXX: Tag 0 is used for drivers with legacy EH as some
1004 * drivers choke if any other tag is given. This breaks
1005 * ata_tag_internal() test for those drivers. Don't use new
1006 * EH stuff without converting to it.
1007 */
1008 if (ap->ops->error_handler)
1009 tag = ATA_TAG_INTERNAL;
1010 else
1011 tag = 0;
1012
Tejun Heo6cec4a32006-05-15 21:03:41 +09001013 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001014 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001015 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001016
1017 qc->tag = tag;
1018 qc->scsicmd = NULL;
1019 qc->ap = ap;
1020 qc->dev = dev;
1021 ata_qc_reinit(qc);
1022
1023 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001024 preempted_sactive = ap->sactive;
1025 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001026 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001027 ap->sactive = 0;
1028 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001029
1030 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001031 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001032 if (cdb)
1033 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001034 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001035 qc->dma_dir = dma_dir;
1036 if (dma_dir != DMA_NONE) {
1037 ata_sg_init_one(qc, buf, buflen);
1038 qc->nsect = buflen / ATA_SECT_SIZE;
1039 }
1040
Tejun Heo77853bf2006-01-23 13:09:36 +09001041 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001042 qc->complete_fn = ata_qc_complete_internal;
1043
Tejun Heo8e0e6942006-03-31 20:41:11 +09001044 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001045
1046 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1047
Tejun Heod95a7172006-05-15 20:58:14 +09001048 rc = wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL);
Albert Lee41ade502006-03-14 11:19:04 +08001049
Tejun Heod95a7172006-05-15 20:58:14 +09001050 ata_port_flush_task(ap);
1051
1052 if (!rc) {
Tejun Heoa2a7a662005-12-13 14:48:31 +09001053 spin_lock_irqsave(&ap->host_set->lock, flags);
1054
1055 /* We're racing with irq here. If we lose, the
1056 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001057 * twice. If we win, the port is frozen and will be
1058 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001059 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001060 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001061 qc->err_mask |= AC_ERR_TIMEOUT;
1062
1063 if (ap->ops->error_handler)
1064 ata_port_freeze(ap);
1065 else
1066 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001067
1068 ata_dev_printk(dev, KERN_WARNING,
1069 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001070 }
1071
1072 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1073 }
1074
Tejun Heod95a7172006-05-15 20:58:14 +09001075 /* do post_internal_cmd */
1076 if (ap->ops->post_internal_cmd)
1077 ap->ops->post_internal_cmd(qc);
1078
1079 if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) {
1080 ata_dev_printk(dev, KERN_WARNING, "zero err_mask for failed "
1081 "internal command, assuming AC_ERR_OTHER\n");
1082 qc->err_mask |= AC_ERR_OTHER;
1083 }
1084
Tejun Heo15869302006-05-15 20:57:33 +09001085 /* finish up */
1086 spin_lock_irqsave(&ap->host_set->lock, flags);
1087
Tejun Heoe61e0672006-05-15 20:57:40 +09001088 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001089 err_mask = qc->err_mask;
1090
1091 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001092 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001093 ap->sactive = preempted_sactive;
1094 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001095
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001096 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1097 * Until those drivers are fixed, we detect the condition
1098 * here, fail the command with AC_ERR_SYSTEM and reenable the
1099 * port.
1100 *
1101 * Note that this doesn't change any behavior as internal
1102 * command failure results in disabling the device in the
1103 * higher layer for LLDDs without new reset/EH callbacks.
1104 *
1105 * Kill the following code as soon as those drivers are fixed.
1106 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001107 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001108 err_mask |= AC_ERR_SYSTEM;
1109 ata_port_probe(ap);
1110 }
1111
Tejun Heo15869302006-05-15 20:57:33 +09001112 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1113
Tejun Heo77853bf2006-01-23 13:09:36 +09001114 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001115}
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001118 * ata_pio_need_iordy - check if iordy needed
1119 * @adev: ATA device
1120 *
1121 * Check if the current speed of the device requires IORDY. Used
1122 * by various controllers for chip configuration.
1123 */
1124
1125unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1126{
1127 int pio;
1128 int speed = adev->pio_mode - XFER_PIO_0;
1129
1130 if (speed < 2)
1131 return 0;
1132 if (speed > 2)
1133 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001134
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001135 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1136
1137 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1138 pio = adev->id[ATA_ID_EIDE_PIO];
1139 /* Is the speed faster than the drive allows non IORDY ? */
1140 if (pio) {
1141 /* This is cycle times not frequency - watch the logic! */
1142 if (pio > 240) /* PIO2 is 240nS per cycle */
1143 return 1;
1144 return 0;
1145 }
1146 }
1147 return 0;
1148}
1149
1150/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001151 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001152 * @dev: target device
1153 * @p_class: pointer to class of the target device (may be changed)
1154 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001155 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001156 *
1157 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1158 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001159 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1160 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001161 *
1162 * LOCKING:
1163 * Kernel thread context (may sleep)
1164 *
1165 * RETURNS:
1166 * 0 on success, -errno otherwise.
1167 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001168static int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1169 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001170{
Tejun Heo3373efd2006-05-15 20:57:53 +09001171 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001172 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001173 struct ata_taskfile tf;
1174 unsigned int err_mask = 0;
1175 const char *reason;
1176 int rc;
1177
1178 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1179
Tejun Heo49016ac2006-02-21 02:12:11 +09001180 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1181
1182 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001183 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001184
1185 switch (class) {
1186 case ATA_DEV_ATA:
1187 tf.command = ATA_CMD_ID_ATA;
1188 break;
1189 case ATA_DEV_ATAPI:
1190 tf.command = ATA_CMD_ID_ATAPI;
1191 break;
1192 default:
1193 rc = -ENODEV;
1194 reason = "unsupported class";
1195 goto err_out;
1196 }
1197
1198 tf.protocol = ATA_PROT_PIO;
1199
Tejun Heo3373efd2006-05-15 20:57:53 +09001200 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001201 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001202 if (err_mask) {
1203 rc = -EIO;
1204 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001205 goto err_out;
1206 }
1207
1208 swap_buf_le16(id, ATA_ID_WORDS);
1209
Tejun Heo49016ac2006-02-21 02:12:11 +09001210 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001211 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001212 rc = -EINVAL;
1213 reason = "device reports illegal type";
1214 goto err_out;
1215 }
1216
1217 if (post_reset && class == ATA_DEV_ATA) {
1218 /*
1219 * The exact sequence expected by certain pre-ATA4 drives is:
1220 * SRST RESET
1221 * IDENTIFY
1222 * INITIALIZE DEVICE PARAMETERS
1223 * anything else..
1224 * Some drives were very specific about that exact sequence.
1225 */
1226 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001227 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001228 if (err_mask) {
1229 rc = -EIO;
1230 reason = "INIT_DEV_PARAMS failed";
1231 goto err_out;
1232 }
1233
1234 /* current CHS translation info (id[53-58]) might be
1235 * changed. reread the identify device info.
1236 */
1237 post_reset = 0;
1238 goto retry;
1239 }
1240 }
1241
1242 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001243
Tejun Heo49016ac2006-02-21 02:12:11 +09001244 return 0;
1245
1246 err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09001247 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
1248 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001249 return rc;
1250}
1251
Tejun Heo3373efd2006-05-15 20:57:53 +09001252static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001253{
Tejun Heo3373efd2006-05-15 20:57:53 +09001254 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001255}
1256
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001257static void ata_dev_config_ncq(struct ata_device *dev,
1258 char *desc, size_t desc_sz)
1259{
1260 struct ata_port *ap = dev->ap;
1261 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1262
1263 if (!ata_id_has_ncq(dev->id)) {
1264 desc[0] = '\0';
1265 return;
1266 }
1267
1268 if (ap->flags & ATA_FLAG_NCQ) {
1269 hdepth = min(ap->host->can_queue, ATA_MAX_QUEUE - 1);
1270 dev->flags |= ATA_DFLAG_NCQ;
1271 }
1272
1273 if (hdepth >= ddepth)
1274 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1275 else
1276 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1277}
1278
Tejun Heo49016ac2006-02-21 02:12:11 +09001279/**
Tejun Heoffeae412006-03-01 16:09:35 +09001280 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001281 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001282 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 *
Tejun Heoffeae412006-03-01 16:09:35 +09001284 * Configure @dev according to @dev->id. Generic and low-level
1285 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 *
1287 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001288 * Kernel thread context (may sleep)
1289 *
1290 * RETURNS:
1291 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001293static int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Tejun Heo3373efd2006-05-15 20:57:53 +09001295 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001296 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001297 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001298 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Tejun Heoe1211e32006-04-01 01:38:18 +09001300 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001302 ap->id, dev->devno);
1303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305
Tejun Heoffeae412006-03-01 16:09:35 +09001306 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001308 /* print device capabilities */
1309 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001310 ata_dev_printk(dev, KERN_DEBUG, "cfg 49:%04x 82:%04x 83:%04x "
1311 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1312 id[49], id[82], id[83], id[84],
1313 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001314
Tejun Heo208a9932006-03-05 17:55:58 +09001315 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001316 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001317 dev->max_sectors = 0;
1318 dev->cdb_len = 0;
1319 dev->n_sectors = 0;
1320 dev->cylinders = 0;
1321 dev->heads = 0;
1322 dev->sectors = 0;
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 /*
1325 * common ATA, ATAPI feature tests
1326 */
1327
Tejun Heoff8854b2006-03-06 04:31:56 +09001328 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001329 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Tejun Heo1148c3a2006-03-13 19:48:04 +09001331 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 /* ATA-specific feature tests */
1334 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001335 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001336
Tejun Heo1148c3a2006-03-13 19:48:04 +09001337 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001338 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001339 char ncq_desc[20];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001340
Tejun Heo4c2d7212006-03-05 17:55:58 +09001341 lba_desc = "LBA";
1342 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001343 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001344 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001345 lba_desc = "LBA48";
1346 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001347
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001348 /* config NCQ */
1349 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1350
Albert Lee8bf62ec2005-05-12 15:29:42 -04001351 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001352 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001353 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001354 "max %s, %Lu sectors: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001355 ata_id_major_version(id),
1356 ata_mode_string(xfer_mask),
1357 (unsigned long long)dev->n_sectors,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001358 lba_desc, ncq_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001359 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001360 /* CHS */
1361
1362 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001363 dev->cylinders = id[1];
1364 dev->heads = id[3];
1365 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001366
Tejun Heo1148c3a2006-03-13 19:48:04 +09001367 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001368 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001369 dev->cylinders = id[54];
1370 dev->heads = id[55];
1371 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001372 }
1373
1374 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001375 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001376 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1377 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1378 ata_id_major_version(id),
1379 ata_mode_string(xfer_mask),
1380 (unsigned long long)dev->n_sectors,
1381 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
1383
Albert Lee07f6f7d2005-11-01 19:33:20 +08001384 if (dev->id[59] & 0x100) {
1385 dev->multi_count = dev->id[59] & 0xff;
1386 DPRINTK("ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001387 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001388 }
1389
Tejun Heo6e7846e2006-02-12 23:32:58 +09001390 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392
1393 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001394 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001395 char *cdb_intr_string = "";
1396
Tejun Heo1148c3a2006-03-13 19:48:04 +09001397 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001399 ata_dev_printk(dev, KERN_WARNING,
1400 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001401 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 goto err_out_nosup;
1403 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001404 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Albert Lee08a556d2006-03-31 13:29:04 +08001406 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001407 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001408 cdb_intr_string = ", CDB intr";
1409 }
Albert Lee312f7da2005-09-27 17:38:03 +08001410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001412 if (print_info)
Tejun Heo12436c32006-05-15 20:59:15 +09001413 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1414 ata_mode_string(xfer_mask),
1415 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417
Tejun Heo6e7846e2006-02-12 23:32:58 +09001418 ap->host->max_cmd_len = 0;
1419 for (i = 0; i < ATA_MAX_DEVICES; i++)
1420 ap->host->max_cmd_len = max_t(unsigned int,
1421 ap->host->max_cmd_len,
1422 ap->device[i].cdb_len);
1423
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001424 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001425 if (ata_dev_knobble(dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001426 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001427 ata_dev_printk(dev, KERN_INFO,
1428 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001429 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001430 dev->max_sectors = ATA_MAX_SECTORS;
1431 }
1432
1433 if (ap->ops->dev_config)
1434 ap->ops->dev_config(ap, dev);
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001437 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001441 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
1444/**
1445 * ata_bus_probe - Reset and probe ATA bus
1446 * @ap: Bus to probe
1447 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001448 * Master ATA bus probing function. Initiates a hardware-dependent
1449 * bus reset, then attempts to identify any devices found on
1450 * the bus.
1451 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001453 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 *
1455 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001456 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 */
1458
1459static int ata_bus_probe(struct ata_port *ap)
1460{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001461 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001462 int tries[ATA_MAX_DEVICES];
1463 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001464 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Tejun Heo28ca5c52006-03-01 16:09:36 +09001466 ata_port_probe(ap);
1467
Tejun Heo14d2bac2006-04-02 17:54:46 +09001468 for (i = 0; i < ATA_MAX_DEVICES; i++)
1469 tries[i] = ATA_PROBE_MAX_TRIES;
1470
1471 retry:
1472 down_xfermask = 0;
1473
Tejun Heo20444702006-03-13 01:57:01 +09001474 /* reset and determine device classes */
1475 for (i = 0; i < ATA_MAX_DEVICES; i++)
1476 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001477
Tejun Heo20444702006-03-13 01:57:01 +09001478 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001479 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001480 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001481 ata_port_printk(ap, KERN_ERR,
1482 "reset failed (errno=%d)\n", rc);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001483 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001484 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001485 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001486 ap->ops->phy_reset(ap);
1487
Tejun Heof8c2c422006-05-15 20:57:30 +09001488 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1489 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo28ca5c52006-03-01 16:09:36 +09001490 classes[i] = ap->device[i].class;
Tejun Heof8c2c422006-05-15 20:57:30 +09001491 ap->device[i].class = ATA_DEV_UNKNOWN;
1492 }
Tejun Heo20444702006-03-13 01:57:01 +09001493
Tejun Heo28ca5c52006-03-01 16:09:36 +09001494 ata_port_probe(ap);
1495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Tejun Heo20444702006-03-13 01:57:01 +09001497 for (i = 0; i < ATA_MAX_DEVICES; i++)
1498 if (classes[i] == ATA_DEV_UNKNOWN)
1499 classes[i] = ATA_DEV_NONE;
1500
Tejun Heo28ca5c52006-03-01 16:09:36 +09001501 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001503 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001504
Tejun Heoec573752006-04-11 22:26:29 +09001505 if (tries[i])
1506 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001507
Tejun Heoe1211e32006-04-01 01:38:18 +09001508 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001509 continue;
1510
Tejun Heo3373efd2006-05-15 20:57:53 +09001511 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001512 if (rc)
1513 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001514
Tejun Heo3373efd2006-05-15 20:57:53 +09001515 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001516 if (rc)
1517 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001520 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001521 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001522 if (rc) {
1523 down_xfermask = 1;
1524 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001527 for (i = 0; i < ATA_MAX_DEVICES; i++)
1528 if (ata_dev_enabled(&ap->device[i]))
1529 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001530
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001531 /* no device present, disable port */
1532 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001534 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001535
1536 fail:
1537 switch (rc) {
1538 case -EINVAL:
1539 case -ENODEV:
1540 tries[dev->devno] = 0;
1541 break;
1542 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001543 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001544 /* fall through */
1545 default:
1546 tries[dev->devno]--;
1547 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001548 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001549 tries[dev->devno] = 0;
1550 }
1551
Tejun Heoec573752006-04-11 22:26:29 +09001552 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001553 ata_down_xfermask_limit(dev, 1);
1554 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001555 }
1556
Tejun Heo14d2bac2006-04-02 17:54:46 +09001557 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
1560/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001561 * ata_port_probe - Mark port as enabled
1562 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001564 * Modify @ap data structure such that the system
1565 * thinks that the entire port is enabled.
1566 *
1567 * LOCKING: host_set lock, or some other form of
1568 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 */
1570
1571void ata_port_probe(struct ata_port *ap)
1572{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001573 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
1576/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001577 * sata_print_link_status - Print SATA link status
1578 * @ap: SATA port to printk link status about
1579 *
1580 * This function prints link speed and status of a SATA link.
1581 *
1582 * LOCKING:
1583 * None.
1584 */
1585static void sata_print_link_status(struct ata_port *ap)
1586{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001587 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001588
Tejun Heo81952c52006-05-15 20:57:47 +09001589 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001590 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001591 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001592
Tejun Heo81952c52006-05-15 20:57:47 +09001593 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001594 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001595 ata_port_printk(ap, KERN_INFO,
1596 "SATA link up %s (SStatus %X SControl %X)\n",
1597 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001598 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001599 ata_port_printk(ap, KERN_INFO,
1600 "SATA link down (SStatus %X SControl %X)\n",
1601 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001602 }
1603}
1604
1605/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001606 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1607 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001609 * This function issues commands to standard SATA Sxxx
1610 * PHY registers, to wake up the phy (and device), and
1611 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 *
1613 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001614 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 *
1616 */
1617void __sata_phy_reset(struct ata_port *ap)
1618{
1619 u32 sstatus;
1620 unsigned long timeout = jiffies + (HZ * 5);
1621
1622 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001623 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001624 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001625 /* Couldn't find anything in SATA I/II specs, but
1626 * AHCI-1.1 10.4.2 says at least 1 ms. */
1627 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
Tejun Heo81952c52006-05-15 20:57:47 +09001629 /* phy wake/clear reset */
1630 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 /* wait for phy to become ready, if necessary */
1633 do {
1634 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001635 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if ((sstatus & 0xf) != 1)
1637 break;
1638 } while (time_before(jiffies, timeout));
1639
Tejun Heo3be680b2005-12-19 22:35:02 +09001640 /* print link status */
1641 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001642
Tejun Heo3be680b2005-12-19 22:35:02 +09001643 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001644 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001646 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Tejun Heo198e0fe2006-04-02 18:51:52 +09001649 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 return;
1651
1652 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1653 ata_port_disable(ap);
1654 return;
1655 }
1656
1657 ap->cbl = ATA_CBL_SATA;
1658}
1659
1660/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001661 * sata_phy_reset - Reset SATA bus.
1662 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001664 * This function resets the SATA bus, and then probes
1665 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 *
1667 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001668 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 *
1670 */
1671void sata_phy_reset(struct ata_port *ap)
1672{
1673 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001674 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return;
1676 ata_bus_reset(ap);
1677}
1678
1679/**
Alan Coxebdfca62006-03-23 15:38:34 +00001680 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001681 * @adev: device
1682 *
1683 * Obtain the other device on the same cable, or if none is
1684 * present NULL is returned
1685 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001686
Tejun Heo3373efd2006-05-15 20:57:53 +09001687struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001688{
Tejun Heo3373efd2006-05-15 20:57:53 +09001689 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001690 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001691 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001692 return NULL;
1693 return pair;
1694}
1695
1696/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001697 * ata_port_disable - Disable port.
1698 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001700 * Modify @ap data structure such that the system
1701 * thinks that the entire port is disabled, and should
1702 * never attempt to probe or communicate with devices
1703 * on this port.
1704 *
1705 * LOCKING: host_set lock, or some other form of
1706 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 */
1708
1709void ata_port_disable(struct ata_port *ap)
1710{
1711 ap->device[0].class = ATA_DEV_NONE;
1712 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001713 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
1715
Tejun Heo1c3fae42006-04-02 20:53:28 +09001716/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001717 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001718 * @ap: Port to adjust SATA spd limit for
1719 *
1720 * Adjust SATA spd limit of @ap downward. Note that this
1721 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001722 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001723 *
1724 * LOCKING:
1725 * Inherited from caller.
1726 *
1727 * RETURNS:
1728 * 0 on success, negative errno on failure
1729 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001730int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001731{
Tejun Heo81952c52006-05-15 20:57:47 +09001732 u32 sstatus, spd, mask;
1733 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001734
Tejun Heo81952c52006-05-15 20:57:47 +09001735 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1736 if (rc)
1737 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001738
1739 mask = ap->sata_spd_limit;
1740 if (mask <= 1)
1741 return -EINVAL;
1742 highbit = fls(mask) - 1;
1743 mask &= ~(1 << highbit);
1744
Tejun Heo81952c52006-05-15 20:57:47 +09001745 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001746 if (spd <= 1)
1747 return -EINVAL;
1748 spd--;
1749 mask &= (1 << spd) - 1;
1750 if (!mask)
1751 return -EINVAL;
1752
1753 ap->sata_spd_limit = mask;
1754
Tejun Heof15a1da2006-05-15 20:57:56 +09001755 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1756 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001757
1758 return 0;
1759}
1760
Tejun Heo3c567b72006-05-15 20:57:23 +09001761static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001762{
1763 u32 spd, limit;
1764
1765 if (ap->sata_spd_limit == UINT_MAX)
1766 limit = 0;
1767 else
1768 limit = fls(ap->sata_spd_limit);
1769
1770 spd = (*scontrol >> 4) & 0xf;
1771 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1772
1773 return spd != limit;
1774}
1775
1776/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001777 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001778 * @ap: Port in question
1779 *
1780 * Test whether the spd limit in SControl matches
1781 * @ap->sata_spd_limit. This function is used to determine
1782 * whether hardreset is necessary to apply SATA spd
1783 * configuration.
1784 *
1785 * LOCKING:
1786 * Inherited from caller.
1787 *
1788 * RETURNS:
1789 * 1 if SATA spd configuration is needed, 0 otherwise.
1790 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001791int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001792{
1793 u32 scontrol;
1794
Tejun Heo81952c52006-05-15 20:57:47 +09001795 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001796 return 0;
1797
Tejun Heo3c567b72006-05-15 20:57:23 +09001798 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001799}
1800
1801/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001802 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001803 * @ap: Port to set SATA spd for
1804 *
1805 * Set SATA spd of @ap according to sata_spd_limit.
1806 *
1807 * LOCKING:
1808 * Inherited from caller.
1809 *
1810 * RETURNS:
1811 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001812 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001813 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001814int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001815{
1816 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001817 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001818
Tejun Heo81952c52006-05-15 20:57:47 +09001819 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1820 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001821
Tejun Heo3c567b72006-05-15 20:57:23 +09001822 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001823 return 0;
1824
Tejun Heo81952c52006-05-15 20:57:47 +09001825 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1826 return rc;
1827
Tejun Heo1c3fae42006-04-02 20:53:28 +09001828 return 1;
1829}
1830
Alan Cox452503f2005-10-21 19:01:32 -04001831/*
1832 * This mode timing computation functionality is ported over from
1833 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1834 */
1835/*
1836 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1837 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1838 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001839 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001840 */
1841
1842static const struct ata_timing ata_timing[] = {
1843
1844 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1845 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1846 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1847 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1848
1849 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1850 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1851 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1852
1853/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001854
Alan Cox452503f2005-10-21 19:01:32 -04001855 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1856 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1857 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001858
Alan Cox452503f2005-10-21 19:01:32 -04001859 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1860 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1861 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1862
1863/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1864 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1865 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1866
1867 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1868 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1869 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1870
1871/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1872
1873 { 0xFF }
1874};
1875
1876#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1877#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1878
1879static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1880{
1881 q->setup = EZ(t->setup * 1000, T);
1882 q->act8b = EZ(t->act8b * 1000, T);
1883 q->rec8b = EZ(t->rec8b * 1000, T);
1884 q->cyc8b = EZ(t->cyc8b * 1000, T);
1885 q->active = EZ(t->active * 1000, T);
1886 q->recover = EZ(t->recover * 1000, T);
1887 q->cycle = EZ(t->cycle * 1000, T);
1888 q->udma = EZ(t->udma * 1000, UT);
1889}
1890
1891void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1892 struct ata_timing *m, unsigned int what)
1893{
1894 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1895 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1896 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1897 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1898 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1899 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1900 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1901 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1902}
1903
1904static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1905{
1906 const struct ata_timing *t;
1907
1908 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001909 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001910 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001911 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001912}
1913
1914int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1915 struct ata_timing *t, int T, int UT)
1916{
1917 const struct ata_timing *s;
1918 struct ata_timing p;
1919
1920 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001921 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001922 */
Alan Cox452503f2005-10-21 19:01:32 -04001923
1924 if (!(s = ata_timing_find_mode(speed)))
1925 return -EINVAL;
1926
Albert Lee75b1f2f2005-11-16 17:06:18 +08001927 memcpy(t, s, sizeof(*s));
1928
Alan Cox452503f2005-10-21 19:01:32 -04001929 /*
1930 * If the drive is an EIDE drive, it can tell us it needs extended
1931 * PIO/MW_DMA cycle timing.
1932 */
1933
1934 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1935 memset(&p, 0, sizeof(p));
1936 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1937 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1938 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1939 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1940 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1941 }
1942 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1943 }
1944
1945 /*
1946 * Convert the timing to bus clock counts.
1947 */
1948
Albert Lee75b1f2f2005-11-16 17:06:18 +08001949 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001950
1951 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001952 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1953 * S.M.A.R.T * and some other commands. We have to ensure that the
1954 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001955 */
1956
1957 if (speed > XFER_PIO_4) {
1958 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1959 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1960 }
1961
1962 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001963 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001964 */
1965
1966 if (t->act8b + t->rec8b < t->cyc8b) {
1967 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1968 t->rec8b = t->cyc8b - t->act8b;
1969 }
1970
1971 if (t->active + t->recover < t->cycle) {
1972 t->active += (t->cycle - (t->active + t->recover)) / 2;
1973 t->recover = t->cycle - t->active;
1974 }
1975
1976 return 0;
1977}
1978
Tejun Heocf176e12006-04-02 17:54:46 +09001979/**
1980 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09001981 * @dev: Device to adjust xfer masks
1982 * @force_pio0: Force PIO0
1983 *
1984 * Adjust xfer masks of @dev downward. Note that this function
1985 * does not apply the change. Invoking ata_set_mode() afterwards
1986 * will apply the limit.
1987 *
1988 * LOCKING:
1989 * Inherited from caller.
1990 *
1991 * RETURNS:
1992 * 0 on success, negative errno on failure
1993 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001994int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09001995{
1996 unsigned long xfer_mask;
1997 int highbit;
1998
1999 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2000 dev->udma_mask);
2001
2002 if (!xfer_mask)
2003 goto fail;
2004 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2005 if (xfer_mask & ATA_MASK_UDMA)
2006 xfer_mask &= ~ATA_MASK_MWDMA;
2007
2008 highbit = fls(xfer_mask) - 1;
2009 xfer_mask &= ~(1 << highbit);
2010 if (force_pio0)
2011 xfer_mask &= 1 << ATA_SHIFT_PIO;
2012 if (!xfer_mask)
2013 goto fail;
2014
2015 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2016 &dev->udma_mask);
2017
Tejun Heof15a1da2006-05-15 20:57:56 +09002018 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2019 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002020
2021 return 0;
2022
2023 fail:
2024 return -EINVAL;
2025}
2026
Tejun Heo3373efd2006-05-15 20:57:53 +09002027static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
Tejun Heo83206a22006-03-24 15:25:31 +09002029 unsigned int err_mask;
2030 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Tejun Heoe8384602006-04-02 18:51:53 +09002032 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (dev->xfer_shift == ATA_SHIFT_PIO)
2034 dev->flags |= ATA_DFLAG_PIO;
2035
Tejun Heo3373efd2006-05-15 20:57:53 +09002036 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002037 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002038 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2039 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002040 return -EIO;
2041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Tejun Heo3373efd2006-05-15 20:57:53 +09002043 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002044 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002045 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002046
Tejun Heo23e71c32006-03-06 04:31:57 +09002047 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2048 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Tejun Heof15a1da2006-05-15 20:57:56 +09002050 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2051 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002052 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055/**
2056 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2057 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002058 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002060 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2061 * ata_set_mode() fails, pointer to the failing device is
2062 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002063 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002065 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002066 *
2067 * RETURNS:
2068 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002070int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071{
Tejun Heoe8e06192006-04-01 01:38:18 +09002072 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002073 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Tejun Heo3adcebb2006-05-15 20:57:37 +09002075 /* has private set_mode? */
2076 if (ap->ops->set_mode) {
2077 /* FIXME: make ->set_mode handle no device case and
2078 * return error code and failing device on failure.
2079 */
2080 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2081 if (ata_dev_enabled(&ap->device[i])) {
2082 ap->ops->set_mode(ap);
2083 break;
2084 }
2085 }
2086 return 0;
2087 }
2088
Tejun Heoa6d5a512006-03-06 04:31:57 +09002089 /* step 1: calculate xfer_mask */
2090 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002091 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002092
Tejun Heoe8e06192006-04-01 01:38:18 +09002093 dev = &ap->device[i];
2094
Tejun Heoe1211e32006-04-01 01:38:18 +09002095 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002096 continue;
2097
Tejun Heo3373efd2006-05-15 20:57:53 +09002098 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002099
Tejun Heoacf356b2006-03-24 14:07:50 +09002100 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2101 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2102 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2103 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002104
Tejun Heo4f659772006-04-01 01:38:18 +09002105 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002106 if (dev->dma_mode)
2107 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002108 }
Tejun Heo4f659772006-04-01 01:38:18 +09002109 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002110 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002111
2112 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002113 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2114 dev = &ap->device[i];
2115 if (!ata_dev_enabled(dev))
2116 continue;
2117
2118 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002119 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002120 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002121 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002122 }
2123
2124 dev->xfer_mode = dev->pio_mode;
2125 dev->xfer_shift = ATA_SHIFT_PIO;
2126 if (ap->ops->set_piomode)
2127 ap->ops->set_piomode(ap, dev);
2128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Tejun Heoa6d5a512006-03-06 04:31:57 +09002130 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002131 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2132 dev = &ap->device[i];
2133
2134 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2135 continue;
2136
2137 dev->xfer_mode = dev->dma_mode;
2138 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2139 if (ap->ops->set_dmamode)
2140 ap->ops->set_dmamode(ap, dev);
2141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002144 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002145 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Tejun Heoe1211e32006-04-01 01:38:18 +09002147 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002148 continue;
2149
Tejun Heo3373efd2006-05-15 20:57:53 +09002150 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002151 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002152 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Tejun Heoe8e06192006-04-01 01:38:18 +09002155 /* Record simplex status. If we selected DMA then the other
2156 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002157 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002158 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2159 ap->host_set->simplex_claimed = 1;
2160
Tejun Heoe8e06192006-04-01 01:38:18 +09002161 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 if (ap->ops->post_set_mode)
2163 ap->ops->post_set_mode(ap);
2164
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002165 out:
2166 if (rc)
2167 *r_failed_dev = dev;
2168 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
2171/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002172 * ata_tf_to_host - issue ATA taskfile to host controller
2173 * @ap: port to which command is being issued
2174 * @tf: ATA taskfile register set
2175 *
2176 * Issues ATA taskfile register set to ATA host controller,
2177 * with proper synchronization with interrupt handler and
2178 * other threads.
2179 *
2180 * LOCKING:
2181 * spin_lock_irqsave(host_set lock)
2182 */
2183
2184static inline void ata_tf_to_host(struct ata_port *ap,
2185 const struct ata_taskfile *tf)
2186{
2187 ap->ops->tf_load(ap, tf);
2188 ap->ops->exec_command(ap, tf);
2189}
2190
2191/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 * ata_busy_sleep - sleep until BSY clears, or timeout
2193 * @ap: port containing status register to be polled
2194 * @tmout_pat: impatience timeout
2195 * @tmout: overall timeout
2196 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002197 * Sleep until ATA Status register bit BSY clears,
2198 * or a timeout occurs.
2199 *
2200 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 */
2202
Tejun Heo6f8b9952006-01-24 17:05:21 +09002203unsigned int ata_busy_sleep (struct ata_port *ap,
2204 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
2206 unsigned long timer_start, timeout;
2207 u8 status;
2208
2209 status = ata_busy_wait(ap, ATA_BUSY, 300);
2210 timer_start = jiffies;
2211 timeout = timer_start + tmout_pat;
2212 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2213 msleep(50);
2214 status = ata_busy_wait(ap, ATA_BUSY, 3);
2215 }
2216
2217 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002218 ata_port_printk(ap, KERN_WARNING,
2219 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221 timeout = timer_start + tmout;
2222 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2223 msleep(50);
2224 status = ata_chk_status(ap);
2225 }
2226
2227 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002228 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2229 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 return 1;
2231 }
2232
2233 return 0;
2234}
2235
2236static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2237{
2238 struct ata_ioports *ioaddr = &ap->ioaddr;
2239 unsigned int dev0 = devmask & (1 << 0);
2240 unsigned int dev1 = devmask & (1 << 1);
2241 unsigned long timeout;
2242
2243 /* if device 0 was found in ata_devchk, wait for its
2244 * BSY bit to clear
2245 */
2246 if (dev0)
2247 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2248
2249 /* if device 1 was found in ata_devchk, wait for
2250 * register access, then wait for BSY to clear
2251 */
2252 timeout = jiffies + ATA_TMOUT_BOOT;
2253 while (dev1) {
2254 u8 nsect, lbal;
2255
2256 ap->ops->dev_select(ap, 1);
2257 if (ap->flags & ATA_FLAG_MMIO) {
2258 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2259 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2260 } else {
2261 nsect = inb(ioaddr->nsect_addr);
2262 lbal = inb(ioaddr->lbal_addr);
2263 }
2264 if ((nsect == 1) && (lbal == 1))
2265 break;
2266 if (time_after(jiffies, timeout)) {
2267 dev1 = 0;
2268 break;
2269 }
2270 msleep(50); /* give drive a breather */
2271 }
2272 if (dev1)
2273 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2274
2275 /* is all this really necessary? */
2276 ap->ops->dev_select(ap, 0);
2277 if (dev1)
2278 ap->ops->dev_select(ap, 1);
2279 if (dev0)
2280 ap->ops->dev_select(ap, 0);
2281}
2282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283static unsigned int ata_bus_softreset(struct ata_port *ap,
2284 unsigned int devmask)
2285{
2286 struct ata_ioports *ioaddr = &ap->ioaddr;
2287
2288 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2289
2290 /* software reset. causes dev0 to be selected */
2291 if (ap->flags & ATA_FLAG_MMIO) {
2292 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2293 udelay(20); /* FIXME: flush */
2294 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2295 udelay(20); /* FIXME: flush */
2296 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2297 } else {
2298 outb(ap->ctl, ioaddr->ctl_addr);
2299 udelay(10);
2300 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2301 udelay(10);
2302 outb(ap->ctl, ioaddr->ctl_addr);
2303 }
2304
2305 /* spec mandates ">= 2ms" before checking status.
2306 * We wait 150ms, because that was the magic delay used for
2307 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2308 * between when the ATA command register is written, and then
2309 * status is checked. Because waiting for "a while" before
2310 * checking status is fine, post SRST, we perform this magic
2311 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002312 *
2313 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 */
2315 msleep(150);
2316
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002317 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002318 * the bus shows 0xFF because the odd clown forgets the D7
2319 * pulldown resistor.
2320 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002321 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002322 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002323 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002324 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 ata_bus_post_reset(ap, devmask);
2327
2328 return 0;
2329}
2330
2331/**
2332 * ata_bus_reset - reset host port and associated ATA channel
2333 * @ap: port to reset
2334 *
2335 * This is typically the first time we actually start issuing
2336 * commands to the ATA channel. We wait for BSY to clear, then
2337 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2338 * result. Determine what devices, if any, are on the channel
2339 * by looking at the device 0/1 error register. Look at the signature
2340 * stored in each device's taskfile registers, to determine if
2341 * the device is ATA or ATAPI.
2342 *
2343 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002344 * PCI/etc. bus probe sem.
2345 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 *
2347 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002348 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 */
2350
2351void ata_bus_reset(struct ata_port *ap)
2352{
2353 struct ata_ioports *ioaddr = &ap->ioaddr;
2354 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2355 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002356 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
2358 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2359
2360 /* determine if device 0/1 are present */
2361 if (ap->flags & ATA_FLAG_SATA_RESET)
2362 dev0 = 1;
2363 else {
2364 dev0 = ata_devchk(ap, 0);
2365 if (slave_possible)
2366 dev1 = ata_devchk(ap, 1);
2367 }
2368
2369 if (dev0)
2370 devmask |= (1 << 0);
2371 if (dev1)
2372 devmask |= (1 << 1);
2373
2374 /* select device 0 again */
2375 ap->ops->dev_select(ap, 0);
2376
2377 /* issue bus reset */
2378 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002379 if (ata_bus_softreset(ap, devmask))
2380 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
2382 /*
2383 * determine by signature whether we have ATA or ATAPI devices
2384 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002385 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002387 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 /* re-enable interrupts */
2390 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2391 ata_irq_on(ap);
2392
2393 /* is double-select really necessary? */
2394 if (ap->device[1].class != ATA_DEV_NONE)
2395 ap->ops->dev_select(ap, 1);
2396 if (ap->device[0].class != ATA_DEV_NONE)
2397 ap->ops->dev_select(ap, 0);
2398
2399 /* if no devices were detected, disable this port */
2400 if ((ap->device[0].class == ATA_DEV_NONE) &&
2401 (ap->device[1].class == ATA_DEV_NONE))
2402 goto err_out;
2403
2404 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2405 /* set up device control for ATA_FLAG_SATA_RESET */
2406 if (ap->flags & ATA_FLAG_MMIO)
2407 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2408 else
2409 outb(ap->ctl, ioaddr->ctl_addr);
2410 }
2411
2412 DPRINTK("EXIT\n");
2413 return;
2414
2415err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002416 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 ap->ops->port_disable(ap);
2418
2419 DPRINTK("EXIT\n");
2420}
2421
Tejun Heo7a7921e2006-02-02 18:20:00 +09002422static int sata_phy_resume(struct ata_port *ap)
2423{
2424 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo852ee162006-04-01 01:38:18 +09002425 u32 scontrol, sstatus;
Tejun Heo81952c52006-05-15 20:57:47 +09002426 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002427
Tejun Heo81952c52006-05-15 20:57:47 +09002428 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2429 return rc;
2430
Tejun Heo852ee162006-04-01 01:38:18 +09002431 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002432
2433 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2434 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002435
2436 /* Wait for phy to become ready, if necessary. */
2437 do {
2438 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09002439 if ((rc = sata_scr_read(ap, SCR_STATUS, &sstatus)))
2440 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002441 if ((sstatus & 0xf) != 1)
2442 return 0;
2443 } while (time_before(jiffies, timeout));
2444
Tejun Heo81952c52006-05-15 20:57:47 +09002445 return -EBUSY;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002446}
2447
Tejun Heoc2bd5802006-01-24 17:05:22 +09002448/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002449 * ata_std_probeinit - initialize probing
2450 * @ap: port to be probed
2451 *
2452 * @ap is about to be probed. Initialize it. This function is
2453 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002454 *
2455 * NOTE!!! Do not use this function as probeinit if a low level
2456 * driver implements only hardreset. Just pass NULL as probeinit
2457 * in that case. Using this function is probably okay but doing
2458 * so makes reset sequence different from the original
2459 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002460 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002461void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002462{
Tejun Heo81952c52006-05-15 20:57:47 +09002463 u32 scontrol;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002464
Tejun Heo81952c52006-05-15 20:57:47 +09002465 /* resume link */
2466 sata_phy_resume(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002467
Tejun Heo81952c52006-05-15 20:57:47 +09002468 /* init sata_spd_limit to the current value */
2469 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
2470 int spd = (scontrol >> 4) & 0xf;
2471 ap->sata_spd_limit &= (1 << spd) - 1;
Tejun Heo3a397462006-02-10 23:58:48 +09002472 }
Tejun Heo81952c52006-05-15 20:57:47 +09002473
2474 /* wait for device */
2475 if (ata_port_online(ap))
2476 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Tejun Heo8a19ac82006-02-02 18:20:00 +09002477}
2478
2479/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002480 * ata_std_softreset - reset host port via ATA SRST
2481 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002482 * @classes: resulting classes of attached devices
2483 *
2484 * Reset host port using ATA SRST. This function is to be used
2485 * as standard callback for ata_drive_*_reset() functions.
2486 *
2487 * LOCKING:
2488 * Kernel thread context (may sleep)
2489 *
2490 * RETURNS:
2491 * 0 on success, -errno otherwise.
2492 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002493int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002494{
2495 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2496 unsigned int devmask = 0, err_mask;
2497 u8 err;
2498
2499 DPRINTK("ENTER\n");
2500
Tejun Heo81952c52006-05-15 20:57:47 +09002501 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002502 classes[0] = ATA_DEV_NONE;
2503 goto out;
2504 }
2505
Tejun Heoc2bd5802006-01-24 17:05:22 +09002506 /* determine if device 0/1 are present */
2507 if (ata_devchk(ap, 0))
2508 devmask |= (1 << 0);
2509 if (slave_possible && ata_devchk(ap, 1))
2510 devmask |= (1 << 1);
2511
Tejun Heoc2bd5802006-01-24 17:05:22 +09002512 /* select device 0 again */
2513 ap->ops->dev_select(ap, 0);
2514
2515 /* issue bus reset */
2516 DPRINTK("about to softreset, devmask=%x\n", devmask);
2517 err_mask = ata_bus_softreset(ap, devmask);
2518 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002519 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2520 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002521 return -EIO;
2522 }
2523
2524 /* determine by signature whether we have ATA or ATAPI devices */
2525 classes[0] = ata_dev_try_classify(ap, 0, &err);
2526 if (slave_possible && err != 0x81)
2527 classes[1] = ata_dev_try_classify(ap, 1, &err);
2528
Tejun Heo3a397462006-02-10 23:58:48 +09002529 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002530 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2531 return 0;
2532}
2533
2534/**
2535 * sata_std_hardreset - reset host port via SATA phy reset
2536 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002537 * @class: resulting class of attached device
2538 *
2539 * SATA phy-reset host port using DET bits of SControl register.
2540 * This function is to be used as standard callback for
2541 * ata_drive_*_reset().
2542 *
2543 * LOCKING:
2544 * Kernel thread context (may sleep)
2545 *
2546 * RETURNS:
2547 * 0 on success, -errno otherwise.
2548 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002549int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002550{
Tejun Heo852ee162006-04-01 01:38:18 +09002551 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002552 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002553
Tejun Heoc2bd5802006-01-24 17:05:22 +09002554 DPRINTK("ENTER\n");
2555
Tejun Heo3c567b72006-05-15 20:57:23 +09002556 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002557 /* SATA spec says nothing about how to reconfigure
2558 * spd. To be on the safe side, turn off phy during
2559 * reconfiguration. This works for at least ICH7 AHCI
2560 * and Sil3124.
2561 */
Tejun Heo81952c52006-05-15 20:57:47 +09002562 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2563 return rc;
2564
Tejun Heo1c3fae42006-04-02 20:53:28 +09002565 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002566
2567 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2568 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002569
Tejun Heo3c567b72006-05-15 20:57:23 +09002570 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002571 }
2572
2573 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002574 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2575 return rc;
2576
Tejun Heo852ee162006-04-01 01:38:18 +09002577 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002578
2579 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2580 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002581
Tejun Heo1c3fae42006-04-02 20:53:28 +09002582 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002583 * 10.4.2 says at least 1 ms.
2584 */
2585 msleep(1);
2586
Tejun Heo1c3fae42006-04-02 20:53:28 +09002587 /* bring phy back */
Tejun Heo7a7921e2006-02-02 18:20:00 +09002588 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002589
Tejun Heoc2bd5802006-01-24 17:05:22 +09002590 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002591 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002592 *class = ATA_DEV_NONE;
2593 DPRINTK("EXIT, link offline\n");
2594 return 0;
2595 }
2596
2597 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002598 ata_port_printk(ap, KERN_ERR,
2599 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002600 return -EIO;
2601 }
2602
Tejun Heo3a397462006-02-10 23:58:48 +09002603 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2604
Tejun Heoc2bd5802006-01-24 17:05:22 +09002605 *class = ata_dev_try_classify(ap, 0, NULL);
2606
2607 DPRINTK("EXIT, class=%u\n", *class);
2608 return 0;
2609}
2610
2611/**
2612 * ata_std_postreset - standard postreset callback
2613 * @ap: the target ata_port
2614 * @classes: classes of attached devices
2615 *
2616 * This function is invoked after a successful reset. Note that
2617 * the device might have been reset more than once using
2618 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002619 *
2620 * This function is to be used as standard callback for
2621 * ata_drive_*_reset().
2622 *
2623 * LOCKING:
2624 * Kernel thread context (may sleep)
2625 */
2626void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2627{
Tejun Heodc2b3512006-05-15 20:58:00 +09002628 u32 serror;
2629
Tejun Heoc2bd5802006-01-24 17:05:22 +09002630 DPRINTK("ENTER\n");
2631
Tejun Heoc2bd5802006-01-24 17:05:22 +09002632 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002633 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002634
Tejun Heodc2b3512006-05-15 20:58:00 +09002635 /* clear SError */
2636 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2637 sata_scr_write(ap, SCR_ERROR, serror);
2638
Tejun Heo3a397462006-02-10 23:58:48 +09002639 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09002640 if (!ap->ops->error_handler) {
2641 /* FIXME: hack. create a hook instead */
2642 if (ap->ioaddr.ctl_addr)
2643 ata_irq_on(ap);
2644 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002645
2646 /* is double-select really necessary? */
2647 if (classes[0] != ATA_DEV_NONE)
2648 ap->ops->dev_select(ap, 1);
2649 if (classes[1] != ATA_DEV_NONE)
2650 ap->ops->dev_select(ap, 0);
2651
Tejun Heo3a397462006-02-10 23:58:48 +09002652 /* bail out if no device is present */
2653 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2654 DPRINTK("EXIT, no device\n");
2655 return;
2656 }
2657
2658 /* set up device control */
2659 if (ap->ioaddr.ctl_addr) {
2660 if (ap->flags & ATA_FLAG_MMIO)
2661 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2662 else
2663 outb(ap->ctl, ap->ioaddr.ctl_addr);
2664 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002665
2666 DPRINTK("EXIT\n");
2667}
2668
2669/**
2670 * ata_std_probe_reset - standard probe reset method
2671 * @ap: prot to perform probe-reset
2672 * @classes: resulting classes of attached devices
2673 *
2674 * The stock off-the-shelf ->probe_reset method.
2675 *
2676 * LOCKING:
2677 * Kernel thread context (may sleep)
2678 *
2679 * RETURNS:
2680 * 0 on success, -errno otherwise.
2681 */
2682int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2683{
2684 ata_reset_fn_t hardreset;
2685
2686 hardreset = NULL;
Tejun Heo81952c52006-05-15 20:57:47 +09002687 if (sata_scr_valid(ap))
Tejun Heoc2bd5802006-01-24 17:05:22 +09002688 hardreset = sata_std_hardreset;
2689
Tejun Heo8a19ac82006-02-02 18:20:00 +09002690 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002691 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002692 ata_std_postreset, classes);
2693}
2694
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002695int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
Tejun Heo96bd39e2006-05-15 20:57:38 +09002696 unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002697{
2698 int i, rc;
2699
2700 for (i = 0; i < ATA_MAX_DEVICES; i++)
2701 classes[i] = ATA_DEV_UNKNOWN;
2702
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002703 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002704 if (rc)
2705 return rc;
2706
2707 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2708 * is complete and convert all ATA_DEV_UNKNOWN to
2709 * ATA_DEV_NONE.
2710 */
2711 for (i = 0; i < ATA_MAX_DEVICES; i++)
2712 if (classes[i] != ATA_DEV_UNKNOWN)
2713 break;
2714
2715 if (i < ATA_MAX_DEVICES)
2716 for (i = 0; i < ATA_MAX_DEVICES; i++)
2717 if (classes[i] == ATA_DEV_UNKNOWN)
2718 classes[i] = ATA_DEV_NONE;
2719
Tejun Heo9974e7c2006-04-01 01:38:17 +09002720 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002721}
2722
2723/**
2724 * ata_drive_probe_reset - Perform probe reset with given methods
2725 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002726 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002727 * @softreset: softreset method (can be NULL)
2728 * @hardreset: hardreset method (can be NULL)
2729 * @postreset: postreset method (can be NULL)
2730 * @classes: resulting classes of attached devices
2731 *
2732 * Reset the specified port and classify attached devices using
2733 * given methods. This function prefers softreset but tries all
2734 * possible reset sequences to reset and classify devices. This
2735 * function is intended to be used for constructing ->probe_reset
2736 * callback by low level drivers.
2737 *
2738 * Reset methods should follow the following rules.
2739 *
2740 * - Return 0 on sucess, -errno on failure.
2741 * - If classification is supported, fill classes[] with
2742 * recognized class codes.
2743 * - If classification is not supported, leave classes[] alone.
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002744 *
2745 * LOCKING:
2746 * Kernel thread context (may sleep)
2747 *
2748 * RETURNS:
2749 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2750 * if classification fails, and any error code from reset
2751 * methods.
2752 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002753int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002754 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2755 ata_postreset_fn_t postreset, unsigned int *classes)
2756{
2757 int rc = -EINVAL;
2758
Tejun Heoe3180492006-05-15 20:58:09 +09002759 ata_eh_freeze_port(ap);
2760
Tejun Heo7944ea92006-02-02 18:20:00 +09002761 if (probeinit)
2762 probeinit(ap);
2763
Tejun Heo3c567b72006-05-15 20:57:23 +09002764 if (softreset && !sata_set_spd_needed(ap)) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002765 rc = ata_do_reset(ap, softreset, classes);
Tejun Heo9974e7c2006-04-01 01:38:17 +09002766 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2767 goto done;
Tejun Heof15a1da2006-05-15 20:57:56 +09002768 ata_port_printk(ap, KERN_INFO, "softreset failed, "
2769 "will try hardreset in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002770 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002771 }
2772
2773 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002774 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002775
Tejun Heo90dac022006-04-02 17:54:46 +09002776 while (1) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002777 rc = ata_do_reset(ap, hardreset, classes);
Tejun Heo90dac022006-04-02 17:54:46 +09002778 if (rc == 0) {
2779 if (classes[0] != ATA_DEV_UNKNOWN)
2780 goto done;
2781 break;
2782 }
2783
Tejun Heo3c567b72006-05-15 20:57:23 +09002784 if (sata_down_spd_limit(ap))
Tejun Heo90dac022006-04-02 17:54:46 +09002785 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002786
Tejun Heof15a1da2006-05-15 20:57:56 +09002787 ata_port_printk(ap, KERN_INFO, "hardreset failed, "
2788 "will retry in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002789 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002790 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002791
Tejun Heoedbabd82006-04-02 20:55:02 +09002792 if (softreset) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002793 ata_port_printk(ap, KERN_INFO,
2794 "hardreset succeeded without classification, "
2795 "will retry softreset in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002796 ssleep(5);
2797
Tejun Heo96bd39e2006-05-15 20:57:38 +09002798 rc = ata_do_reset(ap, softreset, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002799 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002800
Tejun Heo9974e7c2006-04-01 01:38:17 +09002801 done:
Tejun Heo96bd39e2006-05-15 20:57:38 +09002802 if (rc == 0) {
2803 if (postreset)
2804 postreset(ap, classes);
Tejun Heoe3180492006-05-15 20:58:09 +09002805
2806 ata_eh_thaw_port(ap);
2807
Tejun Heo96bd39e2006-05-15 20:57:38 +09002808 if (classes[0] == ATA_DEV_UNKNOWN)
2809 rc = -ENODEV;
2810 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002811 return rc;
2812}
2813
Tejun Heo623a3122006-03-05 17:55:58 +09002814/**
2815 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002816 * @dev: device to compare against
2817 * @new_class: class of the new device
2818 * @new_id: IDENTIFY page of the new device
2819 *
2820 * Compare @new_class and @new_id against @dev and determine
2821 * whether @dev is the device indicated by @new_class and
2822 * @new_id.
2823 *
2824 * LOCKING:
2825 * None.
2826 *
2827 * RETURNS:
2828 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2829 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002830static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2831 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002832{
2833 const u16 *old_id = dev->id;
2834 unsigned char model[2][41], serial[2][21];
2835 u64 new_n_sectors;
2836
2837 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002838 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2839 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002840 return 0;
2841 }
2842
2843 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2844 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2845 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2846 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2847 new_n_sectors = ata_id_n_sectors(new_id);
2848
2849 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002850 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2851 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002852 return 0;
2853 }
2854
2855 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002856 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2857 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002858 return 0;
2859 }
2860
2861 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002862 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2863 "%llu != %llu\n",
2864 (unsigned long long)dev->n_sectors,
2865 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002866 return 0;
2867 }
2868
2869 return 1;
2870}
2871
2872/**
2873 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002874 * @dev: device to revalidate
2875 * @post_reset: is this revalidation after reset?
2876 *
2877 * Re-read IDENTIFY page and make sure @dev is still attached to
2878 * the port.
2879 *
2880 * LOCKING:
2881 * Kernel thread context (may sleep)
2882 *
2883 * RETURNS:
2884 * 0 on success, negative errno otherwise
2885 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002886int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002887{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002888 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002889 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002890 int rc;
2891
Tejun Heo5eb45c02006-04-02 18:51:52 +09002892 if (!ata_dev_enabled(dev)) {
2893 rc = -ENODEV;
2894 goto fail;
2895 }
Tejun Heo623a3122006-03-05 17:55:58 +09002896
Tejun Heofe635c72006-05-15 20:57:35 +09002897 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002898 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002899 if (rc)
2900 goto fail;
2901
2902 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002903 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002904 rc = -ENODEV;
2905 goto fail;
2906 }
2907
Tejun Heofe635c72006-05-15 20:57:35 +09002908 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002909
2910 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002911 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002912 if (rc == 0)
2913 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002914
2915 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002916 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002917 return rc;
2918}
2919
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002920static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002921 "WDC AC11000H", NULL,
2922 "WDC AC22100H", NULL,
2923 "WDC AC32500H", NULL,
2924 "WDC AC33100H", NULL,
2925 "WDC AC31600H", NULL,
2926 "WDC AC32100H", "24.09P07",
2927 "WDC AC23200L", "21.10N21",
2928 "Compaq CRD-8241B", NULL,
2929 "CRD-8400B", NULL,
2930 "CRD-8480B", NULL,
2931 "CRD-8482B", NULL,
2932 "CRD-84", NULL,
2933 "SanDisk SDP3B", NULL,
2934 "SanDisk SDP3B-64", NULL,
2935 "SANYO CD-ROM CRD", NULL,
2936 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002937 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002938 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002939 "Toshiba CD-ROM XM-6202B", NULL,
2940 "TOSHIBA CD-ROM XM-1702BC", NULL,
2941 "CD-532E-A", NULL,
2942 "E-IDE CD-ROM CR-840", NULL,
2943 "CD-ROM Drive/F5A", NULL,
2944 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002945 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002946 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002947 "SanDisk SDP3B-64", NULL,
2948 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2949 "_NEC DV5800A", NULL,
2950 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002952
Alan Coxf4b15fe2006-03-22 15:54:04 +00002953static int ata_strim(char *s, size_t len)
2954{
2955 len = strnlen(s, len);
2956
2957 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2958 while ((len > 0) && (s[len - 1] == ' ')) {
2959 len--;
2960 s[len] = 0;
2961 }
2962 return len;
2963}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Jeff Garzik057ace52005-10-22 14:27:05 -04002965static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002967 unsigned char model_num[40];
2968 unsigned char model_rev[16];
2969 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 int i;
2971
Alan Coxf4b15fe2006-03-22 15:54:04 +00002972 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2973 sizeof(model_num));
2974 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2975 sizeof(model_rev));
2976 nlen = ata_strim(model_num, sizeof(model_num));
2977 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Alan Coxf4b15fe2006-03-22 15:54:04 +00002979 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2980 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2981 if (ata_dma_blacklist[i+1] == NULL)
2982 return 1;
2983 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2984 return 1;
2985 }
2986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 return 0;
2988}
2989
Tejun Heoa6d5a512006-03-06 04:31:57 +09002990/**
2991 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09002992 * @dev: Device to compute xfermask for
2993 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002994 * Compute supported xfermask of @dev and store it in
2995 * dev->*_mask. This function is responsible for applying all
2996 * known limits including host controller limits, device
2997 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002998 *
Tejun Heo600511e2006-03-25 11:14:07 +09002999 * FIXME: The current implementation limits all transfer modes to
3000 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09003001 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09003002 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09003003 * LOCKING:
3004 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003005 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003006static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007{
Tejun Heo3373efd2006-05-15 20:57:53 +09003008 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003009 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003010 unsigned long xfer_mask;
3011 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Tejun Heo565083e2006-04-02 17:54:47 +09003013 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3014 ap->mwdma_mask, ap->udma_mask);
3015
3016 /* Apply cable rule here. Don't apply it early because when
3017 * we handle hot plug the cable type can itself change.
3018 */
3019 if (ap->cbl == ATA_CBL_PATA40)
3020 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Alan Cox5444a6f2006-03-27 18:58:20 +01003022 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09003023 for (i = 0; i < ATA_MAX_DEVICES; i++) {
3024 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09003025
3026 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003027 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09003028
3029 if (ata_dev_disabled(d)) {
3030 /* to avoid violating device selection timing */
3031 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3032 UINT_MAX, UINT_MAX);
3033 continue;
3034 }
3035
3036 xfer_mask &= ata_pack_xfermask(d->pio_mask,
3037 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003038 xfer_mask &= ata_id_xfermask(d->id);
3039 if (ata_dma_blacklisted(d))
3040 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 }
3042
Tejun Heoa6d5a512006-03-06 04:31:57 +09003043 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09003044 ata_dev_printk(dev, KERN_WARNING,
3045 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09003046
Alan Cox5444a6f2006-03-27 18:58:20 +01003047 if (hs->flags & ATA_HOST_SIMPLEX) {
3048 if (hs->simplex_claimed)
3049 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3050 }
Tejun Heo565083e2006-04-02 17:54:47 +09003051
Alan Cox5444a6f2006-03-27 18:58:20 +01003052 if (ap->ops->mode_filter)
3053 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3054
Tejun Heo565083e2006-04-02 17:54:47 +09003055 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3056 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057}
3058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 * @dev: Device to which command will be sent
3062 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003063 * Issue SET FEATURES - XFER MODE command to device @dev
3064 * on port @ap.
3065 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003067 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003068 *
3069 * RETURNS:
3070 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 */
3072
Tejun Heo3373efd2006-05-15 20:57:53 +09003073static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074{
Tejun Heoa0123702005-12-13 14:49:31 +09003075 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003076 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
3078 /* set up set-features taskfile */
3079 DPRINTK("set features - xfer mode\n");
3080
Tejun Heo3373efd2006-05-15 20:57:53 +09003081 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003082 tf.command = ATA_CMD_SET_FEATURES;
3083 tf.feature = SETFEATURES_XFER;
3084 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3085 tf.protocol = ATA_PROT_NODATA;
3086 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Tejun Heo3373efd2006-05-15 20:57:53 +09003088 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Tejun Heo83206a22006-03-24 15:25:31 +09003090 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3091 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092}
3093
3094/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04003095 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ec2005-05-12 15:29:42 -04003096 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003097 * @heads: Number of heads (taskfile parameter)
3098 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003099 *
3100 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003101 * Kernel thread context (may sleep)
3102 *
3103 * RETURNS:
3104 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003105 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003106static unsigned int ata_dev_init_params(struct ata_device *dev,
3107 u16 heads, u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003108{
Tejun Heoa0123702005-12-13 14:49:31 +09003109 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003110 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003111
3112 /* Number of sectors per track 1-255. Number of heads 1-16 */
3113 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003114 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003115
3116 /* set up init dev params taskfile */
3117 DPRINTK("init dev params \n");
3118
Tejun Heo3373efd2006-05-15 20:57:53 +09003119 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003120 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3121 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3122 tf.protocol = ATA_PROT_NODATA;
3123 tf.nsect = sectors;
3124 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003125
Tejun Heo3373efd2006-05-15 20:57:53 +09003126 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003127
Tejun Heo6aff8f12006-02-15 18:24:09 +09003128 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3129 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003130}
3131
3132/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003133 * ata_sg_clean - Unmap DMA memory associated with command
3134 * @qc: Command containing DMA memory to be released
3135 *
3136 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 *
3138 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003139 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 */
3141
3142static void ata_sg_clean(struct ata_queued_cmd *qc)
3143{
3144 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003145 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003147 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Tejun Heoa4631472006-02-11 19:11:13 +09003149 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3150 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
3152 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003153 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003155 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003157 /* if we padded the buffer out to 32-bit bound, and data
3158 * xfer direction is from-device, we must copy from the
3159 * pad buffer back into the supplied buffer
3160 */
3161 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3162 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3163
3164 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003165 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003166 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003167 /* restore last sg */
3168 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3169 if (pad_buf) {
3170 struct scatterlist *psg = &qc->pad_sgent;
3171 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3172 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003173 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003174 }
3175 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003176 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003177 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003178 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3179 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003180 /* restore sg */
3181 sg->length += qc->pad_len;
3182 if (pad_buf)
3183 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3184 pad_buf, qc->pad_len);
3185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003188 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189}
3190
3191/**
3192 * ata_fill_sg - Fill PCI IDE PRD table
3193 * @qc: Metadata associated with taskfile to be transferred
3194 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003195 * Fill PCI IDE PRD (scatter-gather) table with segments
3196 * associated with the current disk command.
3197 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003199 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 *
3201 */
3202static void ata_fill_sg(struct ata_queued_cmd *qc)
3203{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003205 struct scatterlist *sg;
3206 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Tejun Heoa4631472006-02-11 19:11:13 +09003208 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003209 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
3211 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003212 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 u32 addr, offset;
3214 u32 sg_len, len;
3215
3216 /* determine if physical DMA addr spans 64K boundary.
3217 * Note h/w doesn't support 64-bit, so we unconditionally
3218 * truncate dma_addr_t to u32.
3219 */
3220 addr = (u32) sg_dma_address(sg);
3221 sg_len = sg_dma_len(sg);
3222
3223 while (sg_len) {
3224 offset = addr & 0xffff;
3225 len = sg_len;
3226 if ((offset + sg_len) > 0x10000)
3227 len = 0x10000 - offset;
3228
3229 ap->prd[idx].addr = cpu_to_le32(addr);
3230 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3231 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3232
3233 idx++;
3234 sg_len -= len;
3235 addr += len;
3236 }
3237 }
3238
3239 if (idx)
3240 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3241}
3242/**
3243 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3244 * @qc: Metadata associated with taskfile to check
3245 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003246 * Allow low-level driver to filter ATA PACKET commands, returning
3247 * a status indicating whether or not it is OK to use DMA for the
3248 * supplied PACKET command.
3249 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003251 * spin_lock_irqsave(host_set lock)
3252 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 * RETURNS: 0 when ATAPI DMA can be used
3254 * nonzero otherwise
3255 */
3256int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3257{
3258 struct ata_port *ap = qc->ap;
3259 int rc = 0; /* Assume ATAPI DMA is OK by default */
3260
3261 if (ap->ops->check_atapi_dma)
3262 rc = ap->ops->check_atapi_dma(qc);
3263
Albert Leec2bbc552006-03-25 17:56:55 +08003264 /* We don't support polling DMA.
3265 * Use PIO if the LLDD handles only interrupts in
3266 * the HSM_ST_LAST state and the ATAPI device
3267 * generates CDB interrupts.
3268 */
3269 if ((ap->flags & ATA_FLAG_PIO_POLLING) &&
3270 (qc->dev->flags & ATA_DFLAG_CDB_INTR))
3271 rc = 1;
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 return rc;
3274}
3275/**
3276 * ata_qc_prep - Prepare taskfile for submission
3277 * @qc: Metadata associated with taskfile to be prepared
3278 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003279 * Prepare ATA taskfile for submission.
3280 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 * LOCKING:
3282 * spin_lock_irqsave(host_set lock)
3283 */
3284void ata_qc_prep(struct ata_queued_cmd *qc)
3285{
3286 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3287 return;
3288
3289 ata_fill_sg(qc);
3290}
3291
Brian Kinge46834c2006-03-17 17:04:03 -06003292void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3293
Jeff Garzik0cba6322005-05-30 19:49:12 -04003294/**
3295 * ata_sg_init_one - Associate command with memory buffer
3296 * @qc: Command to be associated
3297 * @buf: Memory buffer
3298 * @buflen: Length of memory buffer, in bytes.
3299 *
3300 * Initialize the data-related elements of queued_cmd @qc
3301 * to point to a single memory buffer, @buf of byte length @buflen.
3302 *
3303 * LOCKING:
3304 * spin_lock_irqsave(host_set lock)
3305 */
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3308{
3309 struct scatterlist *sg;
3310
3311 qc->flags |= ATA_QCFLAG_SINGLE;
3312
3313 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003314 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003316 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 qc->buf_virt = buf;
3318
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003319 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003320 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321}
3322
Jeff Garzik0cba6322005-05-30 19:49:12 -04003323/**
3324 * ata_sg_init - Associate command with scatter-gather table.
3325 * @qc: Command to be associated
3326 * @sg: Scatter-gather table.
3327 * @n_elem: Number of elements in s/g table.
3328 *
3329 * Initialize the data-related elements of queued_cmd @qc
3330 * to point to a scatter-gather table @sg, containing @n_elem
3331 * elements.
3332 *
3333 * LOCKING:
3334 * spin_lock_irqsave(host_set lock)
3335 */
3336
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3338 unsigned int n_elem)
3339{
3340 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003341 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003343 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344}
3345
3346/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003347 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3348 * @qc: Command with memory buffer to be mapped.
3349 *
3350 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 *
3352 * LOCKING:
3353 * spin_lock_irqsave(host_set lock)
3354 *
3355 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003356 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 */
3358
3359static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3360{
3361 struct ata_port *ap = qc->ap;
3362 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003363 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003365 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003367 /* we must lengthen transfers to end on a 32-bit boundary */
3368 qc->pad_len = sg->length & 3;
3369 if (qc->pad_len) {
3370 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3371 struct scatterlist *psg = &qc->pad_sgent;
3372
Tejun Heoa4631472006-02-11 19:11:13 +09003373 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003374
3375 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3376
3377 if (qc->tf.flags & ATA_TFLAG_WRITE)
3378 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3379 qc->pad_len);
3380
3381 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3382 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3383 /* trim sg */
3384 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003385 if (sg->length == 0)
3386 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003387
3388 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3389 sg->length, qc->pad_len);
3390 }
3391
Tejun Heo2e242fa2006-02-20 23:48:38 +09003392 if (trim_sg) {
3393 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003394 goto skip_map;
3395 }
3396
Brian King2f1f6102006-03-23 17:30:15 -06003397 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003398 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003399 if (dma_mapping_error(dma_address)) {
3400 /* restore sg */
3401 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
3405 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003406 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Tejun Heo2e242fa2006-02-20 23:48:38 +09003408skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3410 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3411
3412 return 0;
3413}
3414
3415/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003416 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3417 * @qc: Command with scatter-gather table to be mapped.
3418 *
3419 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 *
3421 * LOCKING:
3422 * spin_lock_irqsave(host_set lock)
3423 *
3424 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003425 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 *
3427 */
3428
3429static int ata_sg_setup(struct ata_queued_cmd *qc)
3430{
3431 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003432 struct scatterlist *sg = qc->__sg;
3433 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003434 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
3436 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003437 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003439 /* we must lengthen transfers to end on a 32-bit boundary */
3440 qc->pad_len = lsg->length & 3;
3441 if (qc->pad_len) {
3442 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3443 struct scatterlist *psg = &qc->pad_sgent;
3444 unsigned int offset;
3445
Tejun Heoa4631472006-02-11 19:11:13 +09003446 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003447
3448 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3449
3450 /*
3451 * psg->page/offset are used to copy to-be-written
3452 * data in this function or read data in ata_sg_clean.
3453 */
3454 offset = lsg->offset + lsg->length - qc->pad_len;
3455 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3456 psg->offset = offset_in_page(offset);
3457
3458 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3459 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3460 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003461 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003462 }
3463
3464 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3465 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3466 /* trim last sg */
3467 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003468 if (lsg->length == 0)
3469 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003470
3471 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3472 qc->n_elem - 1, lsg->length, qc->pad_len);
3473 }
3474
Jeff Garzike1410f22005-11-14 14:06:26 -05003475 pre_n_elem = qc->n_elem;
3476 if (trim_sg && pre_n_elem)
3477 pre_n_elem--;
3478
3479 if (!pre_n_elem) {
3480 n_elem = 0;
3481 goto skip_map;
3482 }
3483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003485 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003486 if (n_elem < 1) {
3487 /* restore last sg */
3488 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
3492 DPRINTK("%d sg elements mapped\n", n_elem);
3493
Jeff Garzike1410f22005-11-14 14:06:26 -05003494skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 qc->n_elem = n_elem;
3496
3497 return 0;
3498}
3499
3500/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003501 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003502 * @buf: Buffer to swap
3503 * @buf_words: Number of 16-bit words in buffer.
3504 *
3505 * Swap halves of 16-bit words if needed to convert from
3506 * little-endian byte order to native cpu byte order, or
3507 * vice-versa.
3508 *
3509 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003510 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003511 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512void swap_buf_le16(u16 *buf, unsigned int buf_words)
3513{
3514#ifdef __BIG_ENDIAN
3515 unsigned int i;
3516
3517 for (i = 0; i < buf_words; i++)
3518 buf[i] = le16_to_cpu(buf[i]);
3519#endif /* __BIG_ENDIAN */
3520}
3521
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003522/**
3523 * ata_mmio_data_xfer - Transfer data by MMIO
3524 * @ap: port to read/write
3525 * @buf: data buffer
3526 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003527 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003528 *
3529 * Transfer data from/to the device data register by MMIO.
3530 *
3531 * LOCKING:
3532 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003533 */
3534
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3536 unsigned int buflen, int write_data)
3537{
3538 unsigned int i;
3539 unsigned int words = buflen >> 1;
3540 u16 *buf16 = (u16 *) buf;
3541 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3542
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003543 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 if (write_data) {
3545 for (i = 0; i < words; i++)
3546 writew(le16_to_cpu(buf16[i]), mmio);
3547 } else {
3548 for (i = 0; i < words; i++)
3549 buf16[i] = cpu_to_le16(readw(mmio));
3550 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003551
3552 /* Transfer trailing 1 byte, if any. */
3553 if (unlikely(buflen & 0x01)) {
3554 u16 align_buf[1] = { 0 };
3555 unsigned char *trailing_buf = buf + buflen - 1;
3556
3557 if (write_data) {
3558 memcpy(align_buf, trailing_buf, 1);
3559 writew(le16_to_cpu(align_buf[0]), mmio);
3560 } else {
3561 align_buf[0] = cpu_to_le16(readw(mmio));
3562 memcpy(trailing_buf, align_buf, 1);
3563 }
3564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565}
3566
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003567/**
3568 * ata_pio_data_xfer - Transfer data by PIO
3569 * @ap: port to read/write
3570 * @buf: data buffer
3571 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003572 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003573 *
3574 * Transfer data from/to the device data register by PIO.
3575 *
3576 * LOCKING:
3577 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003578 */
3579
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3581 unsigned int buflen, int write_data)
3582{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003583 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003585 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003587 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003589 insw(ap->ioaddr.data_addr, buf, words);
3590
3591 /* Transfer trailing 1 byte, if any. */
3592 if (unlikely(buflen & 0x01)) {
3593 u16 align_buf[1] = { 0 };
3594 unsigned char *trailing_buf = buf + buflen - 1;
3595
3596 if (write_data) {
3597 memcpy(align_buf, trailing_buf, 1);
3598 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3599 } else {
3600 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3601 memcpy(trailing_buf, align_buf, 1);
3602 }
3603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604}
3605
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003606/**
3607 * ata_data_xfer - Transfer data from/to the data register.
3608 * @ap: port to read/write
3609 * @buf: data buffer
3610 * @buflen: buffer length
3611 * @do_write: read/write
3612 *
3613 * Transfer data from/to the device data register.
3614 *
3615 * LOCKING:
3616 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003617 */
3618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3620 unsigned int buflen, int do_write)
3621{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003622 /* Make the crap hardware pay the costs not the good stuff */
3623 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3624 unsigned long flags;
3625 local_irq_save(flags);
3626 if (ap->flags & ATA_FLAG_MMIO)
3627 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3628 else
3629 ata_pio_data_xfer(ap, buf, buflen, do_write);
3630 local_irq_restore(flags);
3631 } else {
3632 if (ap->flags & ATA_FLAG_MMIO)
3633 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3634 else
3635 ata_pio_data_xfer(ap, buf, buflen, do_write);
3636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637}
3638
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003639/**
3640 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3641 * @qc: Command on going
3642 *
3643 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3644 *
3645 * LOCKING:
3646 * Inherited from caller.
3647 */
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649static void ata_pio_sector(struct ata_queued_cmd *qc)
3650{
3651 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003652 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 struct ata_port *ap = qc->ap;
3654 struct page *page;
3655 unsigned int offset;
3656 unsigned char *buf;
3657
3658 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003659 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
3661 page = sg[qc->cursg].page;
3662 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3663
3664 /* get the current page and offset */
3665 page = nth_page(page, (offset >> PAGE_SHIFT));
3666 offset %= PAGE_SIZE;
3667
Albert Lee7282aa42005-10-09 09:46:07 -04003668 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3669
Albert Lee91b8b312005-10-09 09:48:44 -04003670 if (PageHighMem(page)) {
3671 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003672
Albert Lee91b8b312005-10-09 09:48:44 -04003673 local_irq_save(flags);
3674 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003675
Albert Lee91b8b312005-10-09 09:48:44 -04003676 /* do the actual data transfer */
3677 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3678
3679 kunmap_atomic(buf, KM_IRQ0);
3680 local_irq_restore(flags);
3681 } else {
3682 buf = page_address(page);
3683 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
3686 qc->cursect++;
3687 qc->cursg_ofs++;
3688
Albert Lee32529e02005-05-26 03:49:42 -04003689 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 qc->cursg++;
3691 qc->cursg_ofs = 0;
3692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003695/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003696 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3697 * @qc: Command on going
3698 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003699 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08003700 * ATA device for the DRQ request.
3701 *
3702 * LOCKING:
3703 * Inherited from caller.
3704 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
Albert Lee07f6f7d2005-11-01 19:33:20 +08003706static void ata_pio_sectors(struct ata_queued_cmd *qc)
3707{
3708 if (is_multi_taskfile(&qc->tf)) {
3709 /* READ/WRITE MULTIPLE */
3710 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
Jeff Garzik587005d2006-02-11 18:17:32 -05003712 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003713
3714 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3715 while (nsect--)
3716 ata_pio_sector(qc);
3717 } else
3718 ata_pio_sector(qc);
3719}
3720
3721/**
Albert Leec71c1852005-10-04 06:03:45 -04003722 * atapi_send_cdb - Write CDB bytes to hardware
3723 * @ap: Port to which ATAPI device is attached.
3724 * @qc: Taskfile currently active
3725 *
3726 * When device has indicated its readiness to accept
3727 * a CDB, this function is called. Send the CDB.
3728 *
3729 * LOCKING:
3730 * caller.
3731 */
3732
3733static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3734{
3735 /* send SCSI cdb */
3736 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003737 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003738
Jeff Garzikdb024d52006-02-13 00:23:57 -05003739 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003740 ata_altstatus(ap); /* flush */
3741
3742 switch (qc->tf.protocol) {
3743 case ATA_PROT_ATAPI:
3744 ap->hsm_task_state = HSM_ST;
3745 break;
3746 case ATA_PROT_ATAPI_NODATA:
3747 ap->hsm_task_state = HSM_ST_LAST;
3748 break;
3749 case ATA_PROT_ATAPI_DMA:
3750 ap->hsm_task_state = HSM_ST_LAST;
3751 /* initiate bmdma */
3752 ap->ops->bmdma_start(qc);
3753 break;
3754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755}
3756
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003757/**
3758 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3759 * @qc: Command on going
3760 * @bytes: number of bytes
3761 *
3762 * Transfer Transfer data from/to the ATAPI device.
3763 *
3764 * LOCKING:
3765 * Inherited from caller.
3766 *
3767 */
3768
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3770{
3771 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003772 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 struct ata_port *ap = qc->ap;
3774 struct page *page;
3775 unsigned char *buf;
3776 unsigned int offset, count;
3777
Albert Lee563a6e12005-08-12 14:17:50 +08003778 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003779 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
3781next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003782 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003783 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003784 * The end of qc->sg is reached and the device expects
3785 * more data to transfer. In order not to overrun qc->sg
3786 * and fulfill length specified in the byte count register,
3787 * - for read case, discard trailing data from the device
3788 * - for write case, padding zero data to the device
3789 */
3790 u16 pad_buf[1] = { 0 };
3791 unsigned int words = bytes >> 1;
3792 unsigned int i;
3793
3794 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003795 ata_dev_printk(qc->dev, KERN_WARNING,
3796 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003797
3798 for (i = 0; i < words; i++)
3799 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3800
Albert Lee14be71f2005-09-27 17:36:35 +08003801 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003802 return;
3803 }
3804
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003805 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 page = sg->page;
3808 offset = sg->offset + qc->cursg_ofs;
3809
3810 /* get the current page and offset */
3811 page = nth_page(page, (offset >> PAGE_SHIFT));
3812 offset %= PAGE_SIZE;
3813
Albert Lee6952df02005-06-06 15:56:03 +08003814 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003815 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
3817 /* don't cross page boundaries */
3818 count = min(count, (unsigned int)PAGE_SIZE - offset);
3819
Albert Lee7282aa42005-10-09 09:46:07 -04003820 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3821
Albert Lee91b8b312005-10-09 09:48:44 -04003822 if (PageHighMem(page)) {
3823 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003824
Albert Lee91b8b312005-10-09 09:48:44 -04003825 local_irq_save(flags);
3826 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003827
Albert Lee91b8b312005-10-09 09:48:44 -04003828 /* do the actual data transfer */
3829 ata_data_xfer(ap, buf + offset, count, do_write);
3830
3831 kunmap_atomic(buf, KM_IRQ0);
3832 local_irq_restore(flags);
3833 } else {
3834 buf = page_address(page);
3835 ata_data_xfer(ap, buf + offset, count, do_write);
3836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
3838 bytes -= count;
3839 qc->curbytes += count;
3840 qc->cursg_ofs += count;
3841
Albert Lee32529e02005-05-26 03:49:42 -04003842 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 qc->cursg++;
3844 qc->cursg_ofs = 0;
3845 }
3846
Albert Lee563a6e12005-08-12 14:17:50 +08003847 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849}
3850
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003851/**
3852 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3853 * @qc: Command on going
3854 *
3855 * Transfer Transfer data from/to the ATAPI device.
3856 *
3857 * LOCKING:
3858 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003859 */
3860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3862{
3863 struct ata_port *ap = qc->ap;
3864 struct ata_device *dev = qc->dev;
3865 unsigned int ireason, bc_lo, bc_hi, bytes;
3866 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3867
Albert Leeeec4c3f2006-05-18 17:51:10 +08003868 /* Abuse qc->result_tf for temp storage of intermediate TF
3869 * here to save some kernel stack usage.
3870 * For normal completion, qc->result_tf is not relevant. For
3871 * error, qc->result_tf is later overwritten by ata_qc_complete().
3872 * So, the correctness of qc->result_tf is not affected.
3873 */
3874 ap->ops->tf_read(ap, &qc->result_tf);
3875 ireason = qc->result_tf.nsect;
3876 bc_lo = qc->result_tf.lbam;
3877 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 bytes = (bc_hi << 8) | bc_lo;
3879
3880 /* shall be cleared to zero, indicating xfer of data */
3881 if (ireason & (1 << 0))
3882 goto err_out;
3883
3884 /* make sure transfer direction matches expected */
3885 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3886 if (do_write != i_write)
3887 goto err_out;
3888
Albert Lee312f7da2005-09-27 17:38:03 +08003889 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3890
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 __atapi_pio_bytes(qc, bytes);
3892
3893 return;
3894
3895err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003896 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003897 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003898 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899}
3900
3901/**
Albert Leec234fb02006-03-25 17:58:38 +08003902 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3903 * @ap: the target ata_port
3904 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 *
Albert Leec234fb02006-03-25 17:58:38 +08003906 * RETURNS:
3907 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 */
Albert Leec234fb02006-03-25 17:58:38 +08003909
3910static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911{
Albert Leec234fb02006-03-25 17:58:38 +08003912 if (qc->tf.flags & ATA_TFLAG_POLLING)
3913 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
Albert Leec234fb02006-03-25 17:58:38 +08003915 if (ap->hsm_task_state == HSM_ST_FIRST) {
3916 if (qc->tf.protocol == ATA_PROT_PIO &&
3917 (qc->tf.flags & ATA_TFLAG_WRITE))
3918 return 1;
3919
3920 if (is_atapi_taskfile(&qc->tf) &&
3921 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3922 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 }
3924
Albert Leec234fb02006-03-25 17:58:38 +08003925 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926}
3927
Albert Leec234fb02006-03-25 17:58:38 +08003928/**
Tejun Heoc17ea202006-05-15 20:59:29 +09003929 * ata_hsm_qc_complete - finish a qc running on standard HSM
3930 * @qc: Command to complete
3931 * @in_wq: 1 if called from workqueue, 0 otherwise
3932 *
3933 * Finish @qc which is running on standard HSM.
3934 *
3935 * LOCKING:
3936 * If @in_wq is zero, spin_lock_irqsave(host_set lock).
3937 * Otherwise, none on entry and grabs host lock.
3938 */
3939static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
3940{
3941 struct ata_port *ap = qc->ap;
3942 unsigned long flags;
3943
3944 if (ap->ops->error_handler) {
3945 if (in_wq) {
3946 spin_lock_irqsave(&ap->host_set->lock, flags);
3947
3948 /* EH might have kicked in while host_set lock
3949 * is released.
3950 */
3951 qc = ata_qc_from_tag(ap, qc->tag);
3952 if (qc) {
3953 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
3954 ata_irq_on(ap);
3955 ata_qc_complete(qc);
3956 } else
3957 ata_port_freeze(ap);
3958 }
3959
3960 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3961 } else {
3962 if (likely(!(qc->err_mask & AC_ERR_HSM)))
3963 ata_qc_complete(qc);
3964 else
3965 ata_port_freeze(ap);
3966 }
3967 } else {
3968 if (in_wq) {
3969 spin_lock_irqsave(&ap->host_set->lock, flags);
3970 ata_irq_on(ap);
3971 ata_qc_complete(qc);
3972 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3973 } else
3974 ata_qc_complete(qc);
3975 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003976
3977 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09003978}
3979
3980/**
Albert Leebb5cb292006-03-25 17:48:02 +08003981 * ata_hsm_move - move the HSM to the next state.
3982 * @ap: the target ata_port
3983 * @qc: qc on going
3984 * @status: current device status
3985 * @in_wq: 1 if called from workqueue, 0 otherwise
3986 *
3987 * RETURNS:
3988 * 1 when poll next status needed, 0 otherwise.
3989 */
3990
3991static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
3992 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993{
Albert Leebb5cb292006-03-25 17:48:02 +08003994 unsigned long flags = 0;
3995 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Albert Lee6912ccd2006-03-25 17:45:49 +08003997 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08003998
Albert Leebb5cb292006-03-25 17:48:02 +08003999 /* Make sure ata_qc_issue_prot() does not throw things
4000 * like DMA polling into the workqueue. Notice that
4001 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004002 */
Albert Leec234fb02006-03-25 17:58:38 +08004003 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004004
Albert Leee2cec772006-03-25 17:43:49 +08004005fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004006 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
4007 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Albert Leee2cec772006-03-25 17:43:49 +08004009 switch (ap->hsm_task_state) {
4010 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004011 /* Send first data block or PACKET CDB */
4012
4013 /* If polling, we will stay in the work queue after
4014 * sending the data. Otherwise, interrupt handler
4015 * takes over after sending the data.
4016 */
4017 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4018
Albert Leee2cec772006-03-25 17:43:49 +08004019 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004020 if (unlikely((status & ATA_DRQ) == 0)) {
4021 /* handle BSY=0, DRQ=0 as error */
4022 if (likely(status & (ATA_ERR | ATA_DF)))
4023 /* device stops HSM for abort/error */
4024 qc->err_mask |= AC_ERR_DEV;
4025 else
4026 /* HSM violation. Let EH handle this */
4027 qc->err_mask |= AC_ERR_HSM;
4028
Albert Leee2cec772006-03-25 17:43:49 +08004029 ap->hsm_task_state = HSM_ST_ERR;
4030 goto fsm_start;
4031 }
4032
Albert Lee71601952006-03-25 18:11:12 +08004033 /* Device should not ask for data transfer (DRQ=1)
4034 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004035 * We ignore DRQ here and stop the HSM by
4036 * changing hsm_task_state to HSM_ST_ERR and
4037 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004038 */
4039 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4040 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4041 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004042 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004043 ap->hsm_task_state = HSM_ST_ERR;
4044 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004045 }
4046
Albert Leebb5cb292006-03-25 17:48:02 +08004047 /* Send the CDB (atapi) or the first data block (ata pio out).
4048 * During the state transition, interrupt handler shouldn't
4049 * be invoked before the data transfer is complete and
4050 * hsm_task_state is changed. Hence, the following locking.
4051 */
4052 if (in_wq)
4053 spin_lock_irqsave(&ap->host_set->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004054
Albert Leebb5cb292006-03-25 17:48:02 +08004055 if (qc->tf.protocol == ATA_PROT_PIO) {
4056 /* PIO data out protocol.
4057 * send first data block.
4058 */
4059
4060 /* ata_pio_sectors() might change the state
4061 * to HSM_ST_LAST. so, the state is changed here
4062 * before ata_pio_sectors().
4063 */
4064 ap->hsm_task_state = HSM_ST;
4065 ata_pio_sectors(qc);
4066 ata_altstatus(ap); /* flush */
4067 } else
4068 /* send CDB */
4069 atapi_send_cdb(ap, qc);
4070
4071 if (in_wq)
4072 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4073
4074 /* if polling, ata_pio_task() handles the rest.
4075 * otherwise, interrupt handler takes over from here.
4076 */
Albert Leee2cec772006-03-25 17:43:49 +08004077 break;
4078
4079 case HSM_ST:
4080 /* complete command or read/write the data register */
4081 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4082 /* ATAPI PIO protocol */
4083 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004084 /* No more data to transfer or device error.
4085 * Device error will be tagged in HSM_ST_LAST.
4086 */
Albert Leee2cec772006-03-25 17:43:49 +08004087 ap->hsm_task_state = HSM_ST_LAST;
4088 goto fsm_start;
4089 }
4090
Albert Lee71601952006-03-25 18:11:12 +08004091 /* Device should not ask for data transfer (DRQ=1)
4092 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004093 * We ignore DRQ here and stop the HSM by
4094 * changing hsm_task_state to HSM_ST_ERR and
4095 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004096 */
4097 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4098 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4099 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004100 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004101 ap->hsm_task_state = HSM_ST_ERR;
4102 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004103 }
4104
Albert Leee2cec772006-03-25 17:43:49 +08004105 atapi_pio_bytes(qc);
4106
4107 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4108 /* bad ireason reported by device */
4109 goto fsm_start;
4110
4111 } else {
4112 /* ATA PIO protocol */
4113 if (unlikely((status & ATA_DRQ) == 0)) {
4114 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004115 if (likely(status & (ATA_ERR | ATA_DF)))
4116 /* device stops HSM for abort/error */
4117 qc->err_mask |= AC_ERR_DEV;
4118 else
4119 /* HSM violation. Let EH handle this */
4120 qc->err_mask |= AC_ERR_HSM;
4121
Albert Leee2cec772006-03-25 17:43:49 +08004122 ap->hsm_task_state = HSM_ST_ERR;
4123 goto fsm_start;
4124 }
4125
Albert Leeeee6c322006-04-01 17:38:43 +08004126 /* For PIO reads, some devices may ask for
4127 * data transfer (DRQ=1) alone with ERR=1.
4128 * We respect DRQ here and transfer one
4129 * block of junk data before changing the
4130 * hsm_task_state to HSM_ST_ERR.
4131 *
4132 * For PIO writes, ERR=1 DRQ=1 doesn't make
4133 * sense since the data block has been
4134 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004135 */
4136 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004137 /* data might be corrputed */
4138 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004139
4140 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4141 ata_pio_sectors(qc);
4142 ata_altstatus(ap);
4143 status = ata_wait_idle(ap);
4144 }
4145
Albert Lee3655d1d2006-05-19 11:43:04 +08004146 if (status & (ATA_BUSY | ATA_DRQ))
4147 qc->err_mask |= AC_ERR_HSM;
4148
Albert Leeeee6c322006-04-01 17:38:43 +08004149 /* ata_pio_sectors() might change the
4150 * state to HSM_ST_LAST. so, the state
4151 * is changed after ata_pio_sectors().
4152 */
4153 ap->hsm_task_state = HSM_ST_ERR;
4154 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004155 }
4156
Albert Leee2cec772006-03-25 17:43:49 +08004157 ata_pio_sectors(qc);
4158
4159 if (ap->hsm_task_state == HSM_ST_LAST &&
4160 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4161 /* all data read */
4162 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004163 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004164 goto fsm_start;
4165 }
4166 }
4167
4168 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004169 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004170 break;
4171
4172 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004173 if (unlikely(!ata_ok(status))) {
4174 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004175 ap->hsm_task_state = HSM_ST_ERR;
4176 goto fsm_start;
4177 }
4178
4179 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004180 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4181 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004182
Albert Lee6912ccd2006-03-25 17:45:49 +08004183 WARN_ON(qc->err_mask);
4184
Albert Leee2cec772006-03-25 17:43:49 +08004185 ap->hsm_task_state = HSM_ST_IDLE;
4186
4187 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004188 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004189
4190 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004191 break;
4192
4193 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004194 /* make sure qc->err_mask is available to
4195 * know what's wrong and recover
4196 */
4197 WARN_ON(qc->err_mask == 0);
4198
4199 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004200
Albert Lee999bb6f2006-03-25 18:07:48 +08004201 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004202 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004203
4204 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004205 break;
4206 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004207 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004208 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004209 }
4210
Albert Leebb5cb292006-03-25 17:48:02 +08004211 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212}
4213
4214static void ata_pio_task(void *_data)
4215{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004216 struct ata_queued_cmd *qc = _data;
4217 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004218 u8 status;
4219 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004220
4221fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004222 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
Albert Leea1af3732006-03-25 17:50:15 +08004224 /*
4225 * This is purely heuristic. This is a fast path.
4226 * Sometimes when we enter, BSY will be cleared in
4227 * a chk-status or two. If not, the drive is probably seeking
4228 * or something. Snooze for a couple msecs, then
4229 * chk-status again. If still busy, queue delayed work.
4230 */
4231 status = ata_busy_wait(ap, ATA_BUSY, 5);
4232 if (status & ATA_BUSY) {
4233 msleep(2);
4234 status = ata_busy_wait(ap, ATA_BUSY, 10);
4235 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004236 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004237 return;
4238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 }
4240
Albert Leea1af3732006-03-25 17:50:15 +08004241 /* move the HSM */
4242 poll_next = ata_hsm_move(ap, qc, status, 1);
4243
4244 /* another command or interrupt handler
4245 * may be running at this point.
4246 */
4247 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004248 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249}
4250
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 * ata_qc_new - Request an available ATA command, for queueing
4253 * @ap: Port associated with device @dev
4254 * @dev: Device from whom we request an available command structure
4255 *
4256 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004257 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 */
4259
4260static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4261{
4262 struct ata_queued_cmd *qc = NULL;
4263 unsigned int i;
4264
Tejun Heoe3180492006-05-15 20:58:09 +09004265 /* no command while frozen */
4266 if (unlikely(ap->flags & ATA_FLAG_FROZEN))
4267 return NULL;
4268
Tejun Heo2ab7db12006-05-15 20:58:02 +09004269 /* the last tag is reserved for internal command. */
4270 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004271 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004272 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 break;
4274 }
4275
4276 if (qc)
4277 qc->tag = i;
4278
4279 return qc;
4280}
4281
4282/**
4283 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 * @dev: Device from whom we request an available command structure
4285 *
4286 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004287 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 */
4289
Tejun Heo3373efd2006-05-15 20:57:53 +09004290struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291{
Tejun Heo3373efd2006-05-15 20:57:53 +09004292 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 struct ata_queued_cmd *qc;
4294
4295 qc = ata_qc_new(ap);
4296 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 qc->scsicmd = NULL;
4298 qc->ap = ap;
4299 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004301 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 }
4303
4304 return qc;
4305}
4306
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307/**
4308 * ata_qc_free - free unused ata_queued_cmd
4309 * @qc: Command to complete
4310 *
4311 * Designed to free unused ata_queued_cmd object
4312 * in case something prevents using it.
4313 *
4314 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004315 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 */
4317void ata_qc_free(struct ata_queued_cmd *qc)
4318{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004319 struct ata_port *ap = qc->ap;
4320 unsigned int tag;
4321
Tejun Heoa4631472006-02-11 19:11:13 +09004322 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323
Tejun Heo4ba946e2006-01-23 13:09:36 +09004324 qc->flags = 0;
4325 tag = qc->tag;
4326 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004327 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004328 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330}
4331
Tejun Heo76014422006-02-11 15:13:49 +09004332void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004334 struct ata_port *ap = qc->ap;
4335
Tejun Heoa4631472006-02-11 19:11:13 +09004336 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4337 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338
4339 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4340 ata_sg_clean(qc);
4341
Tejun Heo7401abf2006-05-15 20:57:32 +09004342 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004343 if (qc->tf.protocol == ATA_PROT_NCQ)
4344 ap->sactive &= ~(1 << qc->tag);
4345 else
4346 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004347
Albert Lee3f3791d2005-08-16 14:25:38 +08004348 /* atapi: mark qc as inactive to prevent the interrupt handler
4349 * from completing the command twice later, before the error handler
4350 * is called. (when rc != 0 and atapi request sense is needed)
4351 */
4352 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004353 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004354
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004356 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357}
4358
Tejun Heof686bcb2006-05-15 20:58:05 +09004359/**
4360 * ata_qc_complete - Complete an active ATA command
4361 * @qc: Command to complete
4362 * @err_mask: ATA Status register contents
4363 *
4364 * Indicate to the mid and upper layers that an ATA
4365 * command has completed, with either an ok or not-ok status.
4366 *
4367 * LOCKING:
4368 * spin_lock_irqsave(host_set lock)
4369 */
4370void ata_qc_complete(struct ata_queued_cmd *qc)
4371{
4372 struct ata_port *ap = qc->ap;
4373
4374 /* XXX: New EH and old EH use different mechanisms to
4375 * synchronize EH with regular execution path.
4376 *
4377 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4378 * Normal execution path is responsible for not accessing a
4379 * failed qc. libata core enforces the rule by returning NULL
4380 * from ata_qc_from_tag() for failed qcs.
4381 *
4382 * Old EH depends on ata_qc_complete() nullifying completion
4383 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4384 * not synchronize with interrupt handler. Only PIO task is
4385 * taken care of.
4386 */
4387 if (ap->ops->error_handler) {
4388 WARN_ON(ap->flags & ATA_FLAG_FROZEN);
4389
4390 if (unlikely(qc->err_mask))
4391 qc->flags |= ATA_QCFLAG_FAILED;
4392
4393 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4394 if (!ata_tag_internal(qc->tag)) {
4395 /* always fill result TF for failed qc */
4396 ap->ops->tf_read(ap, &qc->result_tf);
4397 ata_qc_schedule_eh(qc);
4398 return;
4399 }
4400 }
4401
4402 /* read result TF if requested */
4403 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4404 ap->ops->tf_read(ap, &qc->result_tf);
4405
4406 __ata_qc_complete(qc);
4407 } else {
4408 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4409 return;
4410
4411 /* read result TF if failed or requested */
4412 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4413 ap->ops->tf_read(ap, &qc->result_tf);
4414
4415 __ata_qc_complete(qc);
4416 }
4417}
4418
Tejun Heodedaf2b2006-05-15 21:03:43 +09004419/**
4420 * ata_qc_complete_multiple - Complete multiple qcs successfully
4421 * @ap: port in question
4422 * @qc_active: new qc_active mask
4423 * @finish_qc: LLDD callback invoked before completing a qc
4424 *
4425 * Complete in-flight commands. This functions is meant to be
4426 * called from low-level driver's interrupt routine to complete
4427 * requests normally. ap->qc_active and @qc_active is compared
4428 * and commands are completed accordingly.
4429 *
4430 * LOCKING:
4431 * spin_lock_irqsave(host_set lock)
4432 *
4433 * RETURNS:
4434 * Number of completed commands on success, -errno otherwise.
4435 */
4436int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4437 void (*finish_qc)(struct ata_queued_cmd *))
4438{
4439 int nr_done = 0;
4440 u32 done_mask;
4441 int i;
4442
4443 done_mask = ap->qc_active ^ qc_active;
4444
4445 if (unlikely(done_mask & qc_active)) {
4446 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4447 "(%08x->%08x)\n", ap->qc_active, qc_active);
4448 return -EINVAL;
4449 }
4450
4451 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4452 struct ata_queued_cmd *qc;
4453
4454 if (!(done_mask & (1 << i)))
4455 continue;
4456
4457 if ((qc = ata_qc_from_tag(ap, i))) {
4458 if (finish_qc)
4459 finish_qc(qc);
4460 ata_qc_complete(qc);
4461 nr_done++;
4462 }
4463 }
4464
4465 return nr_done;
4466}
4467
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4469{
4470 struct ata_port *ap = qc->ap;
4471
4472 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004473 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 case ATA_PROT_DMA:
4475 case ATA_PROT_ATAPI_DMA:
4476 return 1;
4477
4478 case ATA_PROT_ATAPI:
4479 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 if (ap->flags & ATA_FLAG_PIO_DMA)
4481 return 1;
4482
4483 /* fall through */
4484
4485 default:
4486 return 0;
4487 }
4488
4489 /* never reached */
4490}
4491
4492/**
4493 * ata_qc_issue - issue taskfile to device
4494 * @qc: command to issue to device
4495 *
4496 * Prepare an ATA command to submission to device.
4497 * This includes mapping the data into a DMA-able
4498 * area, filling in the S/G table, and finally
4499 * writing the taskfile to hardware, starting the command.
4500 *
4501 * LOCKING:
4502 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004504void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505{
4506 struct ata_port *ap = qc->ap;
4507
Tejun Heodedaf2b2006-05-15 21:03:43 +09004508 /* Make sure only one non-NCQ command is outstanding. The
4509 * check is skipped for old EH because it reuses active qc to
4510 * request ATAPI sense.
4511 */
4512 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4513
4514 if (qc->tf.protocol == ATA_PROT_NCQ) {
4515 WARN_ON(ap->sactive & (1 << qc->tag));
4516 ap->sactive |= 1 << qc->tag;
4517 } else {
4518 WARN_ON(ap->sactive);
4519 ap->active_tag = qc->tag;
4520 }
4521
Tejun Heoe4a70e72006-03-31 20:36:47 +09004522 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004523 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004524
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 if (ata_should_dma_map(qc)) {
4526 if (qc->flags & ATA_QCFLAG_SG) {
4527 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004528 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4530 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004531 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 }
4533 } else {
4534 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4535 }
4536
4537 ap->ops->qc_prep(qc);
4538
Tejun Heo8e0e6942006-03-31 20:41:11 +09004539 qc->err_mask |= ap->ops->qc_issue(qc);
4540 if (unlikely(qc->err_mask))
4541 goto err;
4542 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
Tejun Heo8e436af2006-01-23 13:09:36 +09004544sg_err:
4545 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004546 qc->err_mask |= AC_ERR_SYSTEM;
4547err:
4548 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549}
4550
4551/**
4552 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4553 * @qc: command to issue to device
4554 *
4555 * Using various libata functions and hooks, this function
4556 * starts an ATA command. ATA commands are grouped into
4557 * classes called "protocols", and issuing each type of protocol
4558 * is slightly different.
4559 *
Edward Falk0baab862005-06-02 18:17:13 -04004560 * May be used as the qc_issue() entry in ata_port_operations.
4561 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 * LOCKING:
4563 * spin_lock_irqsave(host_set lock)
4564 *
4565 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004566 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 */
4568
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004569unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570{
4571 struct ata_port *ap = qc->ap;
4572
Albert Leee50362e2005-09-27 17:39:50 +08004573 /* Use polling pio if the LLD doesn't handle
4574 * interrupt driven pio and atapi CDB interrupt.
4575 */
4576 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4577 switch (qc->tf.protocol) {
4578 case ATA_PROT_PIO:
4579 case ATA_PROT_ATAPI:
4580 case ATA_PROT_ATAPI_NODATA:
4581 qc->tf.flags |= ATA_TFLAG_POLLING;
4582 break;
4583 case ATA_PROT_ATAPI_DMA:
4584 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Leec2bbc552006-03-25 17:56:55 +08004585 /* see ata_check_atapi_dma() */
Albert Leee50362e2005-09-27 17:39:50 +08004586 BUG();
4587 break;
4588 default:
4589 break;
4590 }
4591 }
4592
Albert Lee312f7da2005-09-27 17:38:03 +08004593 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 ata_dev_select(ap, qc->dev->devno, 1, 0);
4595
Albert Lee312f7da2005-09-27 17:38:03 +08004596 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 switch (qc->tf.protocol) {
4598 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004599 if (qc->tf.flags & ATA_TFLAG_POLLING)
4600 ata_qc_set_polling(qc);
4601
Jeff Garzike5338252005-10-30 21:37:17 -05004602 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004603 ap->hsm_task_state = HSM_ST_LAST;
4604
4605 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004606 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004607
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 break;
4609
4610 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004611 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004612
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4614 ap->ops->bmdma_setup(qc); /* set up bmdma */
4615 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004616 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 break;
4618
Albert Lee312f7da2005-09-27 17:38:03 +08004619 case ATA_PROT_PIO:
4620 if (qc->tf.flags & ATA_TFLAG_POLLING)
4621 ata_qc_set_polling(qc);
4622
Jeff Garzike5338252005-10-30 21:37:17 -05004623 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004624
Albert Lee54f00382005-09-30 19:14:19 +08004625 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4626 /* PIO data out protocol */
4627 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004628 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004629
4630 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004631 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004632 */
Albert Lee312f7da2005-09-27 17:38:03 +08004633 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004634 /* PIO data in protocol */
4635 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004636
Albert Lee54f00382005-09-30 19:14:19 +08004637 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004638 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004639
Albert Lee54f00382005-09-30 19:14:19 +08004640 /* if polling, ata_pio_task() handles the rest.
4641 * otherwise, interrupt handler takes over from here.
4642 */
Albert Lee312f7da2005-09-27 17:38:03 +08004643 }
4644
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 break;
4646
4647 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004649 if (qc->tf.flags & ATA_TFLAG_POLLING)
4650 ata_qc_set_polling(qc);
4651
Jeff Garzike5338252005-10-30 21:37:17 -05004652 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004653
Albert Lee312f7da2005-09-27 17:38:03 +08004654 ap->hsm_task_state = HSM_ST_FIRST;
4655
4656 /* send cdb by polling if no cdb interrupt */
4657 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4658 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004659 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 break;
4661
4662 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004663 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004664
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4666 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004667 ap->hsm_task_state = HSM_ST_FIRST;
4668
4669 /* send cdb by polling if no cdb interrupt */
4670 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004671 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 break;
4673
4674 default:
4675 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004676 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 }
4678
4679 return 0;
4680}
4681
4682/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 * ata_host_intr - Handle host interrupt for given (port, task)
4684 * @ap: Port on which interrupt arrived (possibly...)
4685 * @qc: Taskfile currently active in engine
4686 *
4687 * Handle host interrupt for given queued command. Currently,
4688 * only DMA interrupts are handled. All other commands are
4689 * handled via polling with interrupts disabled (nIEN bit).
4690 *
4691 * LOCKING:
4692 * spin_lock_irqsave(host_set lock)
4693 *
4694 * RETURNS:
4695 * One if interrupt was handled, zero if not (shared irq).
4696 */
4697
4698inline unsigned int ata_host_intr (struct ata_port *ap,
4699 struct ata_queued_cmd *qc)
4700{
Albert Lee312f7da2005-09-27 17:38:03 +08004701 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Albert Lee312f7da2005-09-27 17:38:03 +08004703 VPRINTK("ata%u: protocol %d task_state %d\n",
4704 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705
Albert Lee312f7da2005-09-27 17:38:03 +08004706 /* Check whether we are expecting interrupt in this state */
4707 switch (ap->hsm_task_state) {
4708 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004709 /* Some pre-ATAPI-4 devices assert INTRQ
4710 * at this state when ready to receive CDB.
4711 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712
Albert Lee312f7da2005-09-27 17:38:03 +08004713 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4714 * The flag was turned on only for atapi devices.
4715 * No need to check is_atapi_taskfile(&qc->tf) again.
4716 */
4717 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004720 case HSM_ST_LAST:
4721 if (qc->tf.protocol == ATA_PROT_DMA ||
4722 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4723 /* check status of DMA engine */
4724 host_stat = ap->ops->bmdma_status(ap);
4725 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
Albert Lee312f7da2005-09-27 17:38:03 +08004727 /* if it's not our irq... */
4728 if (!(host_stat & ATA_DMA_INTR))
4729 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730
Albert Lee312f7da2005-09-27 17:38:03 +08004731 /* before we do anything else, clear DMA-Start bit */
4732 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004733
4734 if (unlikely(host_stat & ATA_DMA_ERR)) {
4735 /* error when transfering data to/from memory */
4736 qc->err_mask |= AC_ERR_HOST_BUS;
4737 ap->hsm_task_state = HSM_ST_ERR;
4738 }
Albert Lee312f7da2005-09-27 17:38:03 +08004739 }
4740 break;
4741 case HSM_ST:
4742 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 default:
4744 goto idle_irq;
4745 }
4746
Albert Lee312f7da2005-09-27 17:38:03 +08004747 /* check altstatus */
4748 status = ata_altstatus(ap);
4749 if (status & ATA_BUSY)
4750 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751
Albert Lee312f7da2005-09-27 17:38:03 +08004752 /* check main status, clearing INTRQ */
4753 status = ata_chk_status(ap);
4754 if (unlikely(status & ATA_BUSY))
4755 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
Albert Lee312f7da2005-09-27 17:38:03 +08004757 /* ack bmdma irq events */
4758 ap->ops->irq_clear(ap);
4759
Albert Leebb5cb292006-03-25 17:48:02 +08004760 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 return 1; /* irq handled */
4762
4763idle_irq:
4764 ap->stats.idle_irq++;
4765
4766#ifdef ATA_IRQ_TRAP
4767 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004769 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004770 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 }
4772#endif
4773 return 0; /* irq not handled */
4774}
4775
4776/**
4777 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004778 * @irq: irq line (unused)
4779 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 * @regs: unused
4781 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004782 * Default interrupt handler for PCI IDE devices. Calls
4783 * ata_host_intr() for each port that is not disabled.
4784 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004786 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 *
4788 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004789 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790 */
4791
4792irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4793{
4794 struct ata_host_set *host_set = dev_instance;
4795 unsigned int i;
4796 unsigned int handled = 0;
4797 unsigned long flags;
4798
4799 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4800 spin_lock_irqsave(&host_set->lock, flags);
4801
4802 for (i = 0; i < host_set->n_ports; i++) {
4803 struct ata_port *ap;
4804
4805 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004806 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004807 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 struct ata_queued_cmd *qc;
4809
4810 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004811 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004812 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 handled |= ata_host_intr(ap, qc);
4814 }
4815 }
4816
4817 spin_unlock_irqrestore(&host_set->lock, flags);
4818
4819 return IRQ_RETVAL(handled);
4820}
4821
Tejun Heo34bf2172006-05-15 20:57:46 +09004822/**
4823 * sata_scr_valid - test whether SCRs are accessible
4824 * @ap: ATA port to test SCR accessibility for
4825 *
4826 * Test whether SCRs are accessible for @ap.
4827 *
4828 * LOCKING:
4829 * None.
4830 *
4831 * RETURNS:
4832 * 1 if SCRs are accessible, 0 otherwise.
4833 */
4834int sata_scr_valid(struct ata_port *ap)
4835{
4836 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4837}
4838
4839/**
4840 * sata_scr_read - read SCR register of the specified port
4841 * @ap: ATA port to read SCR for
4842 * @reg: SCR to read
4843 * @val: Place to store read value
4844 *
4845 * Read SCR register @reg of @ap into *@val. This function is
4846 * guaranteed to succeed if the cable type of the port is SATA
4847 * and the port implements ->scr_read.
4848 *
4849 * LOCKING:
4850 * None.
4851 *
4852 * RETURNS:
4853 * 0 on success, negative errno on failure.
4854 */
4855int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4856{
4857 if (sata_scr_valid(ap)) {
4858 *val = ap->ops->scr_read(ap, reg);
4859 return 0;
4860 }
4861 return -EOPNOTSUPP;
4862}
4863
4864/**
4865 * sata_scr_write - write SCR register of the specified port
4866 * @ap: ATA port to write SCR for
4867 * @reg: SCR to write
4868 * @val: value to write
4869 *
4870 * Write @val to SCR register @reg of @ap. This function is
4871 * guaranteed to succeed if the cable type of the port is SATA
4872 * and the port implements ->scr_read.
4873 *
4874 * LOCKING:
4875 * None.
4876 *
4877 * RETURNS:
4878 * 0 on success, negative errno on failure.
4879 */
4880int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4881{
4882 if (sata_scr_valid(ap)) {
4883 ap->ops->scr_write(ap, reg, val);
4884 return 0;
4885 }
4886 return -EOPNOTSUPP;
4887}
4888
4889/**
4890 * sata_scr_write_flush - write SCR register of the specified port and flush
4891 * @ap: ATA port to write SCR for
4892 * @reg: SCR to write
4893 * @val: value to write
4894 *
4895 * This function is identical to sata_scr_write() except that this
4896 * function performs flush after writing to the register.
4897 *
4898 * LOCKING:
4899 * None.
4900 *
4901 * RETURNS:
4902 * 0 on success, negative errno on failure.
4903 */
4904int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4905{
4906 if (sata_scr_valid(ap)) {
4907 ap->ops->scr_write(ap, reg, val);
4908 ap->ops->scr_read(ap, reg);
4909 return 0;
4910 }
4911 return -EOPNOTSUPP;
4912}
4913
4914/**
4915 * ata_port_online - test whether the given port is online
4916 * @ap: ATA port to test
4917 *
4918 * Test whether @ap is online. Note that this function returns 0
4919 * if online status of @ap cannot be obtained, so
4920 * ata_port_online(ap) != !ata_port_offline(ap).
4921 *
4922 * LOCKING:
4923 * None.
4924 *
4925 * RETURNS:
4926 * 1 if the port online status is available and online.
4927 */
4928int ata_port_online(struct ata_port *ap)
4929{
4930 u32 sstatus;
4931
4932 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4933 return 1;
4934 return 0;
4935}
4936
4937/**
4938 * ata_port_offline - test whether the given port is offline
4939 * @ap: ATA port to test
4940 *
4941 * Test whether @ap is offline. Note that this function returns
4942 * 0 if offline status of @ap cannot be obtained, so
4943 * ata_port_online(ap) != !ata_port_offline(ap).
4944 *
4945 * LOCKING:
4946 * None.
4947 *
4948 * RETURNS:
4949 * 1 if the port offline status is available and offline.
4950 */
4951int ata_port_offline(struct ata_port *ap)
4952{
4953 u32 sstatus;
4954
4955 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4956 return 1;
4957 return 0;
4958}
Edward Falk0baab862005-06-02 18:17:13 -04004959
Jens Axboe9b847542006-01-06 09:28:07 +01004960/*
4961 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4962 * without filling any other registers
4963 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004964static int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Jens Axboe9b847542006-01-06 09:28:07 +01004965{
4966 struct ata_taskfile tf;
4967 int err;
4968
Tejun Heo3373efd2006-05-15 20:57:53 +09004969 ata_tf_init(dev, &tf);
Jens Axboe9b847542006-01-06 09:28:07 +01004970
4971 tf.command = cmd;
4972 tf.flags |= ATA_TFLAG_DEVICE;
4973 tf.protocol = ATA_PROT_NODATA;
4974
Tejun Heo3373efd2006-05-15 20:57:53 +09004975 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004976 if (err)
Tejun Heof15a1da2006-05-15 20:57:56 +09004977 ata_dev_printk(dev, KERN_ERR, "%s: ata command failed: %d\n",
4978 __FUNCTION__, err);
Jens Axboe9b847542006-01-06 09:28:07 +01004979
4980 return err;
4981}
4982
Tejun Heo3373efd2006-05-15 20:57:53 +09004983static int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004984{
4985 u8 cmd;
4986
4987 if (!ata_try_flush_cache(dev))
4988 return 0;
4989
4990 if (ata_id_has_flush_ext(dev->id))
4991 cmd = ATA_CMD_FLUSH_EXT;
4992 else
4993 cmd = ATA_CMD_FLUSH;
4994
Tejun Heo3373efd2006-05-15 20:57:53 +09004995 return ata_do_simple_cmd(dev, cmd);
Jens Axboe9b847542006-01-06 09:28:07 +01004996}
4997
Tejun Heo3373efd2006-05-15 20:57:53 +09004998static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004999{
Tejun Heo3373efd2006-05-15 20:57:53 +09005000 return ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
Jens Axboe9b847542006-01-06 09:28:07 +01005001}
5002
Tejun Heo3373efd2006-05-15 20:57:53 +09005003static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005004{
Tejun Heo3373efd2006-05-15 20:57:53 +09005005 return ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
Jens Axboe9b847542006-01-06 09:28:07 +01005006}
5007
5008/**
5009 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005010 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01005011 *
5012 * Kick the drive back into action, by sending it an idle immediate
5013 * command and making sure its transfer mode matches between drive
5014 * and host.
5015 *
5016 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005017int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005018{
Tejun Heo3373efd2006-05-15 20:57:53 +09005019 struct ata_port *ap = dev->ap;
5020
Jens Axboe9b847542006-01-06 09:28:07 +01005021 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005022 struct ata_device *failed_dev;
Jens Axboe9b847542006-01-06 09:28:07 +01005023 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09005024 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09005025 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005026 }
Tejun Heoe1211e32006-04-01 01:38:18 +09005027 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005028 return 0;
5029 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005030 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005031
5032 return 0;
5033}
5034
5035/**
5036 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005037 * @dev: the device to suspend
Randy Dunlape2a7f772006-05-18 10:50:18 -07005038 * @state: target power management state
Jens Axboe9b847542006-01-06 09:28:07 +01005039 *
5040 * Flush the cache on the drive, if appropriate, then issue a
5041 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01005042 */
Tejun Heo3373efd2006-05-15 20:57:53 +09005043int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01005044{
Tejun Heo3373efd2006-05-15 20:57:53 +09005045 struct ata_port *ap = dev->ap;
5046
Tejun Heoe1211e32006-04-01 01:38:18 +09005047 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01005048 return 0;
5049 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09005050 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005051
Nigel Cunningham082776e2006-03-23 23:22:16 +10005052 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09005053 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01005054 ap->flags |= ATA_FLAG_SUSPENDED;
5055 return 0;
5056}
5057
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005058/**
5059 * ata_port_start - Set port up for dma.
5060 * @ap: Port to initialize
5061 *
5062 * Called just after data structures for each port are
5063 * initialized. Allocates space for PRD table.
5064 *
5065 * May be used as the port_start() entry in ata_port_operations.
5066 *
5067 * LOCKING:
5068 * Inherited from caller.
5069 */
5070
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071int ata_port_start (struct ata_port *ap)
5072{
Brian King2f1f6102006-03-23 17:30:15 -06005073 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005074 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075
5076 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
5077 if (!ap->prd)
5078 return -ENOMEM;
5079
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005080 rc = ata_pad_alloc(ap, dev);
5081 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005082 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005083 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005084 }
5085
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
5087
5088 return 0;
5089}
5090
Edward Falk0baab862005-06-02 18:17:13 -04005091
5092/**
5093 * ata_port_stop - Undo ata_port_start()
5094 * @ap: Port to shut down
5095 *
5096 * Frees the PRD table.
5097 *
5098 * May be used as the port_stop() entry in ata_port_operations.
5099 *
5100 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005101 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005102 */
5103
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104void ata_port_stop (struct ata_port *ap)
5105{
Brian King2f1f6102006-03-23 17:30:15 -06005106 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107
5108 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005109 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110}
5111
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005112void ata_host_stop (struct ata_host_set *host_set)
5113{
5114 if (host_set->mmio_base)
5115 iounmap(host_set->mmio_base);
5116}
5117
5118
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119/**
5120 * ata_host_remove - Unregister SCSI host structure with upper layers
5121 * @ap: Port to unregister
5122 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
5123 *
5124 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005125 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 */
5127
5128static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
5129{
5130 struct Scsi_Host *sh = ap->host;
5131
5132 DPRINTK("ENTER\n");
5133
5134 if (do_unregister)
5135 scsi_remove_host(sh);
5136
5137 ap->ops->port_stop(ap);
5138}
5139
5140/**
5141 * ata_host_init - Initialize an ata_port structure
5142 * @ap: Structure to initialize
5143 * @host: associated SCSI mid-layer structure
5144 * @host_set: Collection of hosts to which @ap belongs
5145 * @ent: Probe information provided by low-level driver
5146 * @port_no: Port number associated with this ata_port
5147 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005148 * Initialize a new ata_port structure, and its associated
5149 * scsi_host.
5150 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005152 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 */
5154
5155static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
5156 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04005157 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158{
5159 unsigned int i;
5160
5161 host->max_id = 16;
5162 host->max_lun = 1;
5163 host->max_channel = 1;
5164 host->unique_id = ata_unique_id++;
5165 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02005166
Tejun Heo198e0fe2006-04-02 18:51:52 +09005167 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 ap->id = host->unique_id;
5169 ap->host = host;
5170 ap->ctl = ATA_DEVCTL_OBS;
5171 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06005172 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173 ap->port_no = port_no;
5174 ap->hard_port_no =
5175 ent->legacy_mode ? ent->hard_port_no : port_no;
5176 ap->pio_mask = ent->pio_mask;
5177 ap->mwdma_mask = ent->mwdma_mask;
5178 ap->udma_mask = ent->udma_mask;
5179 ap->flags |= ent->host_flags;
5180 ap->ops = ent->port_ops;
Tejun Heo1c3fae42006-04-02 20:53:28 +09005181 ap->sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 ap->active_tag = ATA_TAG_POISON;
5183 ap->last_ctl = 0xFF;
5184
Tejun Heo86e45b62006-03-05 15:29:09 +09005185 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005186 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
Tejun Heo838df622006-05-15 20:57:44 +09005188 /* set cable type */
5189 ap->cbl = ATA_CBL_NONE;
5190 if (ap->flags & ATA_FLAG_SATA)
5191 ap->cbl = ATA_CBL_SATA;
5192
Tejun Heoacf356b2006-03-24 14:07:50 +09005193 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5194 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005195 dev->ap = ap;
Tejun Heoacf356b2006-03-24 14:07:50 +09005196 dev->devno = i;
5197 dev->pio_mask = UINT_MAX;
5198 dev->mwdma_mask = UINT_MAX;
5199 dev->udma_mask = UINT_MAX;
5200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
5202#ifdef ATA_IRQ_TRAP
5203 ap->stats.unhandled_irq = 1;
5204 ap->stats.idle_irq = 1;
5205#endif
5206
5207 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5208}
5209
5210/**
5211 * ata_host_add - Attach low-level ATA driver to system
5212 * @ent: Information provided by low-level driver
5213 * @host_set: Collections of ports to which we add
5214 * @port_no: Port number associated with this host
5215 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005216 * Attach low-level ATA driver to system.
5217 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005219 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 *
5221 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005222 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 */
5224
Jeff Garzik057ace52005-10-22 14:27:05 -04005225static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 struct ata_host_set *host_set,
5227 unsigned int port_no)
5228{
5229 struct Scsi_Host *host;
5230 struct ata_port *ap;
5231 int rc;
5232
5233 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005234
5235 if (!ent->port_ops->probe_reset &&
5236 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
5237 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5238 port_no);
5239 return NULL;
5240 }
5241
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5243 if (!host)
5244 return NULL;
5245
Tejun Heo30afc842006-03-18 18:40:14 +09005246 host->transportt = &ata_scsi_transport_template;
5247
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005248 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249
5250 ata_host_init(ap, host, host_set, ent, port_no);
5251
5252 rc = ap->ops->port_start(ap);
5253 if (rc)
5254 goto err_out;
5255
5256 return ap;
5257
5258err_out:
5259 scsi_host_put(host);
5260 return NULL;
5261}
5262
5263/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005264 * ata_device_add - Register hardware device with ATA and SCSI layers
5265 * @ent: Probe information describing hardware device to be registered
5266 *
5267 * This function processes the information provided in the probe
5268 * information struct @ent, allocates the necessary ATA and SCSI
5269 * host information structures, initializes them, and registers
5270 * everything with requisite kernel subsystems.
5271 *
5272 * This function requests irqs, probes the ATA bus, and probes
5273 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 *
5275 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005276 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 *
5278 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005279 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 */
5281
Jeff Garzik057ace52005-10-22 14:27:05 -04005282int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283{
5284 unsigned int count = 0, i;
5285 struct device *dev = ent->dev;
5286 struct ata_host_set *host_set;
5287
5288 DPRINTK("ENTER\n");
5289 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005290 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5292 if (!host_set)
5293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 spin_lock_init(&host_set->lock);
5295
5296 host_set->dev = dev;
5297 host_set->n_ports = ent->n_ports;
5298 host_set->irq = ent->irq;
5299 host_set->mmio_base = ent->mmio_base;
5300 host_set->private_data = ent->private_data;
5301 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01005302 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
5304 /* register each port bound to this device */
5305 for (i = 0; i < ent->n_ports; i++) {
5306 struct ata_port *ap;
5307 unsigned long xfer_mode_mask;
5308
5309 ap = ata_host_add(ent, host_set, i);
5310 if (!ap)
5311 goto err_out;
5312
5313 host_set->ports[i] = ap;
5314 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5315 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5316 (ap->pio_mask << ATA_SHIFT_PIO);
5317
5318 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005319 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
5320 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
5321 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5322 ata_mode_string(xfer_mode_mask),
5323 ap->ioaddr.cmd_addr,
5324 ap->ioaddr.ctl_addr,
5325 ap->ioaddr.bmdma_addr,
5326 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327
5328 ata_chk_status(ap);
5329 host_set->ops->irq_clear(ap);
Tejun Heoe3180492006-05-15 20:58:09 +09005330 ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331 count++;
5332 }
5333
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005334 if (!count)
5335 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336
5337 /* obtain irq, that is shared between channels */
5338 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
5339 DRV_NAME, host_set))
5340 goto err_out;
5341
5342 /* perform each probe synchronously */
5343 DPRINTK("probe begin\n");
5344 for (i = 0; i < count; i++) {
5345 struct ata_port *ap;
5346 int rc;
5347
5348 ap = host_set->ports[i];
5349
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005350 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005352 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353
5354 if (rc) {
5355 /* FIXME: do something useful here?
5356 * Current libata behavior will
5357 * tear down everything when
5358 * the module is removed
5359 * or the h/w is unplugged.
5360 */
5361 }
5362
5363 rc = scsi_add_host(ap->host, dev);
5364 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005365 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366 /* FIXME: do something useful here */
5367 /* FIXME: handle unconditional calls to
5368 * scsi_scan_host and ata_host_remove, below,
5369 * at the very least
5370 */
5371 }
5372 }
5373
5374 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005375 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 for (i = 0; i < count; i++) {
5377 struct ata_port *ap = host_set->ports[i];
5378
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005379 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380 }
5381
5382 dev_set_drvdata(dev, host_set);
5383
5384 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5385 return ent->n_ports; /* success */
5386
5387err_out:
5388 for (i = 0; i < count; i++) {
5389 ata_host_remove(host_set->ports[i], 1);
5390 scsi_host_put(host_set->ports[i]->host);
5391 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005392err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 kfree(host_set);
5394 VPRINTK("EXIT, returning 0\n");
5395 return 0;
5396}
5397
5398/**
Alan Cox17b14452005-09-15 15:44:00 +01005399 * ata_host_set_remove - PCI layer callback for device removal
5400 * @host_set: ATA host set that was removed
5401 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005402 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005403 * objects.
5404 *
5405 * LOCKING:
5406 * Inherited from calling layer (may sleep).
5407 */
5408
Alan Cox17b14452005-09-15 15:44:00 +01005409void ata_host_set_remove(struct ata_host_set *host_set)
5410{
5411 struct ata_port *ap;
5412 unsigned int i;
5413
5414 for (i = 0; i < host_set->n_ports; i++) {
5415 ap = host_set->ports[i];
5416 scsi_remove_host(ap->host);
5417 }
5418
5419 free_irq(host_set->irq, host_set);
5420
5421 for (i = 0; i < host_set->n_ports; i++) {
5422 ap = host_set->ports[i];
5423
5424 ata_scsi_release(ap->host);
5425
5426 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5427 struct ata_ioports *ioaddr = &ap->ioaddr;
5428
5429 if (ioaddr->cmd_addr == 0x1f0)
5430 release_region(0x1f0, 8);
5431 else if (ioaddr->cmd_addr == 0x170)
5432 release_region(0x170, 8);
5433 }
5434
5435 scsi_host_put(ap->host);
5436 }
5437
5438 if (host_set->ops->host_stop)
5439 host_set->ops->host_stop(host_set);
5440
5441 kfree(host_set);
5442}
5443
5444/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445 * ata_scsi_release - SCSI layer callback hook for host unload
5446 * @host: libata host to be unloaded
5447 *
5448 * Performs all duties necessary to shut down a libata port...
5449 * Kill port kthread, disable port, and release resources.
5450 *
5451 * LOCKING:
5452 * Inherited from SCSI layer.
5453 *
5454 * RETURNS:
5455 * One.
5456 */
5457
5458int ata_scsi_release(struct Scsi_Host *host)
5459{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005460 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461
5462 DPRINTK("ENTER\n");
5463
5464 ap->ops->port_disable(ap);
5465 ata_host_remove(ap, 0);
5466
5467 DPRINTK("EXIT\n");
5468 return 1;
5469}
5470
5471/**
5472 * ata_std_ports - initialize ioaddr with standard port offsets.
5473 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005474 *
5475 * Utility function which initializes data_addr, error_addr,
5476 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5477 * device_addr, status_addr, and command_addr to standard offsets
5478 * relative to cmd_addr.
5479 *
5480 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481 */
Edward Falk0baab862005-06-02 18:17:13 -04005482
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483void ata_std_ports(struct ata_ioports *ioaddr)
5484{
5485 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5486 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5487 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5488 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5489 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5490 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5491 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5492 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5493 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5494 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5495}
5496
Edward Falk0baab862005-06-02 18:17:13 -04005497
Jeff Garzik374b1872005-08-30 05:42:52 -04005498#ifdef CONFIG_PCI
5499
5500void ata_pci_host_stop (struct ata_host_set *host_set)
5501{
5502 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5503
5504 pci_iounmap(pdev, host_set->mmio_base);
5505}
5506
Edward Falk0baab862005-06-02 18:17:13 -04005507/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 * ata_pci_remove_one - PCI layer callback for device removal
5509 * @pdev: PCI device that was removed
5510 *
5511 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005512 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 * Handle this by unregistering all objects associated
5514 * with this PCI device. Free those objects. Then finally
5515 * release PCI resources and disable device.
5516 *
5517 * LOCKING:
5518 * Inherited from PCI layer (may sleep).
5519 */
5520
5521void ata_pci_remove_one (struct pci_dev *pdev)
5522{
5523 struct device *dev = pci_dev_to_dev(pdev);
5524 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525
Alan Cox17b14452005-09-15 15:44:00 +01005526 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527 pci_release_regions(pdev);
5528 pci_disable_device(pdev);
5529 dev_set_drvdata(dev, NULL);
5530}
5531
5532/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005533int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534{
5535 unsigned long tmp = 0;
5536
5537 switch (bits->width) {
5538 case 1: {
5539 u8 tmp8 = 0;
5540 pci_read_config_byte(pdev, bits->reg, &tmp8);
5541 tmp = tmp8;
5542 break;
5543 }
5544 case 2: {
5545 u16 tmp16 = 0;
5546 pci_read_config_word(pdev, bits->reg, &tmp16);
5547 tmp = tmp16;
5548 break;
5549 }
5550 case 4: {
5551 u32 tmp32 = 0;
5552 pci_read_config_dword(pdev, bits->reg, &tmp32);
5553 tmp = tmp32;
5554 break;
5555 }
5556
5557 default:
5558 return -EINVAL;
5559 }
5560
5561 tmp &= bits->mask;
5562
5563 return (tmp == bits->val) ? 1 : 0;
5564}
Jens Axboe9b847542006-01-06 09:28:07 +01005565
5566int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5567{
5568 pci_save_state(pdev);
5569 pci_disable_device(pdev);
5570 pci_set_power_state(pdev, PCI_D3hot);
5571 return 0;
5572}
5573
5574int ata_pci_device_resume(struct pci_dev *pdev)
5575{
5576 pci_set_power_state(pdev, PCI_D0);
5577 pci_restore_state(pdev);
5578 pci_enable_device(pdev);
5579 pci_set_master(pdev);
5580 return 0;
5581}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582#endif /* CONFIG_PCI */
5583
5584
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585static int __init ata_init(void)
5586{
5587 ata_wq = create_workqueue("ata");
5588 if (!ata_wq)
5589 return -ENOMEM;
5590
5591 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5592 return 0;
5593}
5594
5595static void __exit ata_exit(void)
5596{
5597 destroy_workqueue(ata_wq);
5598}
5599
5600module_init(ata_init);
5601module_exit(ata_exit);
5602
Jeff Garzik67846b32005-10-05 02:58:32 -04005603static unsigned long ratelimit_time;
5604static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5605
5606int ata_ratelimit(void)
5607{
5608 int rc;
5609 unsigned long flags;
5610
5611 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5612
5613 if (time_after(jiffies, ratelimit_time)) {
5614 rc = 1;
5615 ratelimit_time = jiffies + (HZ/5);
5616 } else
5617 rc = 0;
5618
5619 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5620
5621 return rc;
5622}
5623
Tejun Heoc22daff2006-04-11 22:22:29 +09005624/**
5625 * ata_wait_register - wait until register value changes
5626 * @reg: IO-mapped register
5627 * @mask: Mask to apply to read register value
5628 * @val: Wait condition
5629 * @interval_msec: polling interval in milliseconds
5630 * @timeout_msec: timeout in milliseconds
5631 *
5632 * Waiting for some bits of register to change is a common
5633 * operation for ATA controllers. This function reads 32bit LE
5634 * IO-mapped register @reg and tests for the following condition.
5635 *
5636 * (*@reg & mask) != val
5637 *
5638 * If the condition is met, it returns; otherwise, the process is
5639 * repeated after @interval_msec until timeout.
5640 *
5641 * LOCKING:
5642 * Kernel thread context (may sleep)
5643 *
5644 * RETURNS:
5645 * The final register value.
5646 */
5647u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5648 unsigned long interval_msec,
5649 unsigned long timeout_msec)
5650{
5651 unsigned long timeout;
5652 u32 tmp;
5653
5654 tmp = ioread32(reg);
5655
5656 /* Calculate timeout _after_ the first read to make sure
5657 * preceding writes reach the controller before starting to
5658 * eat away the timeout.
5659 */
5660 timeout = jiffies + (timeout_msec * HZ) / 1000;
5661
5662 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5663 msleep(interval_msec);
5664 tmp = ioread32(reg);
5665 }
5666
5667 return tmp;
5668}
5669
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670/*
5671 * libata is essentially a library of internal helper functions for
5672 * low-level ATA host controller drivers. As such, the API/ABI is
5673 * likely to change as new drivers are added and updated.
5674 * Do not depend on ABI/API stability.
5675 */
5676
5677EXPORT_SYMBOL_GPL(ata_std_bios_param);
5678EXPORT_SYMBOL_GPL(ata_std_ports);
5679EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005680EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681EXPORT_SYMBOL_GPL(ata_sg_init);
5682EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heof686bcb2006-05-15 20:58:05 +09005683EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005684EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686EXPORT_SYMBOL_GPL(ata_tf_load);
5687EXPORT_SYMBOL_GPL(ata_tf_read);
5688EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5689EXPORT_SYMBOL_GPL(ata_std_dev_select);
5690EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5691EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5692EXPORT_SYMBOL_GPL(ata_check_status);
5693EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694EXPORT_SYMBOL_GPL(ata_exec_command);
5695EXPORT_SYMBOL_GPL(ata_port_start);
5696EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005697EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698EXPORT_SYMBOL_GPL(ata_interrupt);
5699EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005700EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5702EXPORT_SYMBOL_GPL(ata_bmdma_start);
5703EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5704EXPORT_SYMBOL_GPL(ata_bmdma_status);
5705EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09005706EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
5707EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
5708EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
5709EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
5710EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005712EXPORT_SYMBOL_GPL(sata_set_spd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713EXPORT_SYMBOL_GPL(sata_phy_reset);
5714EXPORT_SYMBOL_GPL(__sata_phy_reset);
5715EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005716EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005717EXPORT_SYMBOL_GPL(ata_std_softreset);
5718EXPORT_SYMBOL_GPL(sata_std_hardreset);
5719EXPORT_SYMBOL_GPL(ata_std_postreset);
5720EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005721EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005722EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005723EXPORT_SYMBOL_GPL(ata_dev_classify);
5724EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005726EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005727EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005728EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005729EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5731EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09005733EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734EXPORT_SYMBOL_GPL(ata_scsi_release);
5735EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005736EXPORT_SYMBOL_GPL(sata_scr_valid);
5737EXPORT_SYMBOL_GPL(sata_scr_read);
5738EXPORT_SYMBOL_GPL(sata_scr_write);
5739EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5740EXPORT_SYMBOL_GPL(ata_port_online);
5741EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005742EXPORT_SYMBOL_GPL(ata_id_string);
5743EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5745
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005746EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005747EXPORT_SYMBOL_GPL(ata_timing_compute);
5748EXPORT_SYMBOL_GPL(ata_timing_merge);
5749
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750#ifdef CONFIG_PCI
5751EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005752EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5754EXPORT_SYMBOL_GPL(ata_pci_init_one);
5755EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005756EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5757EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005758EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5759EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005761
5762EXPORT_SYMBOL_GPL(ata_device_suspend);
5763EXPORT_SYMBOL_GPL(ata_device_resume);
5764EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5765EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005766
Tejun Heoece1d632006-04-02 18:51:53 +09005767EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005768EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5769EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09005770EXPORT_SYMBOL_GPL(ata_port_freeze);
5771EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
5772EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09005773EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5774EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09005775EXPORT_SYMBOL_GPL(ata_do_eh);