blob: 9c97783462d650b473355d1baf20b38bebea2d6d [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 Heobe9a50c2006-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
878 *
879 * Schedule @fn(@data) for execution after @delay jiffies using
880 * port_task. There is one port_task per port and it's the
881 * user(low level driver)'s responsibility to make sure that only
882 * one task is active at any given time.
883 *
884 * libata core layer takes care of synchronization between
885 * port_task and EH. ata_port_queue_task() may be ignored for EH
886 * synchronization.
887 *
888 * LOCKING:
889 * Inherited from caller.
890 */
891void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
892 unsigned long delay)
893{
894 int rc;
895
Tejun Heo2e755f62006-03-05 15:29:09 +0900896 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900897 return;
898
899 PREPARE_WORK(&ap->port_task, fn, data);
900
901 if (!delay)
902 rc = queue_work(ata_wq, &ap->port_task);
903 else
904 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
905
906 /* rc == 0 means that another user is using port task */
907 WARN_ON(rc == 0);
908}
909
910/**
911 * ata_port_flush_task - Flush port_task
912 * @ap: The ata_port to flush port_task for
913 *
914 * After this function completes, port_task is guranteed not to
915 * be running or scheduled.
916 *
917 * LOCKING:
918 * Kernel thread context (may sleep)
919 */
920void ata_port_flush_task(struct ata_port *ap)
921{
922 unsigned long flags;
923
924 DPRINTK("ENTER\n");
925
926 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900927 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900928 spin_unlock_irqrestore(&ap->host_set->lock, flags);
929
930 DPRINTK("flush #1\n");
931 flush_workqueue(ata_wq);
932
933 /*
934 * At this point, if a task is running, it's guaranteed to see
935 * the FLUSH flag; thus, it will never queue pio tasks again.
936 * Cancel and flush.
937 */
938 if (!cancel_delayed_work(&ap->port_task)) {
939 DPRINTK("flush #2\n");
940 flush_workqueue(ata_wq);
941 }
942
943 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900944 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900945 spin_unlock_irqrestore(&ap->host_set->lock, flags);
946
947 DPRINTK("EXIT\n");
948}
949
Tejun Heo77853bf2006-01-23 13:09:36 +0900950void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900951{
Tejun Heo77853bf2006-01-23 13:09:36 +0900952 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900953
Tejun Heoa2a7a662005-12-13 14:48:31 +0900954 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900955}
956
957/**
958 * ata_exec_internal - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900959 * @dev: Device to which the command is sent
960 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900961 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900962 * @dma_dir: Data tranfer direction of the command
963 * @buf: Data buffer of the command
964 * @buflen: Length of data buffer
965 *
966 * Executes libata internal command with timeout. @tf contains
967 * command on entry and result on return. Timeout and error
968 * conditions are reported via return value. No recovery action
969 * is taken after a command times out. It's caller's duty to
970 * clean up after timeout.
971 *
972 * LOCKING:
973 * None. Should be called with kernel context, might sleep.
974 */
975
Tejun Heo3373efd2006-05-15 20:57:53 +0900976unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900977 struct ata_taskfile *tf, const u8 *cdb,
978 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900979{
Tejun Heo3373efd2006-05-15 20:57:53 +0900980 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900981 u8 command = tf->command;
982 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +0900983 unsigned int tag, preempted_tag;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900984 DECLARE_COMPLETION(wait);
985 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900986 unsigned int err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900987
988 spin_lock_irqsave(&ap->host_set->lock, flags);
989
Tejun Heo2ab7db12006-05-15 20:58:02 +0900990 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +0900991
Tejun Heo2ab7db12006-05-15 20:58:02 +0900992 /* XXX: Tag 0 is used for drivers with legacy EH as some
993 * drivers choke if any other tag is given. This breaks
994 * ata_tag_internal() test for those drivers. Don't use new
995 * EH stuff without converting to it.
996 */
997 if (ap->ops->error_handler)
998 tag = ATA_TAG_INTERNAL;
999 else
1000 tag = 0;
1001
1002 if (test_and_set_bit(tag, &ap->qactive))
1003 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001004 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001005
1006 qc->tag = tag;
1007 qc->scsicmd = NULL;
1008 qc->ap = ap;
1009 qc->dev = dev;
1010 ata_qc_reinit(qc);
1011
1012 preempted_tag = ap->active_tag;
1013 ap->active_tag = ATA_TAG_POISON;
1014
1015 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001016 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001017 if (cdb)
1018 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001019 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001020 qc->dma_dir = dma_dir;
1021 if (dma_dir != DMA_NONE) {
1022 ata_sg_init_one(qc, buf, buflen);
1023 qc->nsect = buflen / ATA_SECT_SIZE;
1024 }
1025
Tejun Heo77853bf2006-01-23 13:09:36 +09001026 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001027 qc->complete_fn = ata_qc_complete_internal;
1028
Tejun Heo8e0e6942006-03-31 20:41:11 +09001029 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001030
1031 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1032
1033 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
Albert Lee41ade502006-03-14 11:19:04 +08001034 ata_port_flush_task(ap);
1035
Tejun Heoa2a7a662005-12-13 14:48:31 +09001036 spin_lock_irqsave(&ap->host_set->lock, flags);
1037
1038 /* We're racing with irq here. If we lose, the
1039 * following test prevents us from completing the qc
1040 * again. If completion irq occurs after here but
1041 * before the caller cleans up, it will result in a
1042 * spurious interrupt. We can live with that.
1043 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001044 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heo11a56d22006-01-23 13:09:36 +09001045 qc->err_mask = AC_ERR_TIMEOUT;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001046 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001047
1048 ata_dev_printk(dev, KERN_WARNING,
1049 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001050 }
1051
1052 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1053 }
1054
Tejun Heo15869302006-05-15 20:57:33 +09001055 /* finish up */
1056 spin_lock_irqsave(&ap->host_set->lock, flags);
1057
Tejun Heoe61e0672006-05-15 20:57:40 +09001058 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001059 err_mask = qc->err_mask;
1060
1061 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001062 ap->active_tag = preempted_tag;
Tejun Heo77853bf2006-01-23 13:09:36 +09001063
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001064 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1065 * Until those drivers are fixed, we detect the condition
1066 * here, fail the command with AC_ERR_SYSTEM and reenable the
1067 * port.
1068 *
1069 * Note that this doesn't change any behavior as internal
1070 * command failure results in disabling the device in the
1071 * higher layer for LLDDs without new reset/EH callbacks.
1072 *
1073 * Kill the following code as soon as those drivers are fixed.
1074 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001075 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001076 err_mask |= AC_ERR_SYSTEM;
1077 ata_port_probe(ap);
1078 }
1079
Tejun Heo15869302006-05-15 20:57:33 +09001080 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1081
Tejun Heo77853bf2006-01-23 13:09:36 +09001082 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001083}
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001086 * ata_pio_need_iordy - check if iordy needed
1087 * @adev: ATA device
1088 *
1089 * Check if the current speed of the device requires IORDY. Used
1090 * by various controllers for chip configuration.
1091 */
1092
1093unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1094{
1095 int pio;
1096 int speed = adev->pio_mode - XFER_PIO_0;
1097
1098 if (speed < 2)
1099 return 0;
1100 if (speed > 2)
1101 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001102
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001103 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1104
1105 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1106 pio = adev->id[ATA_ID_EIDE_PIO];
1107 /* Is the speed faster than the drive allows non IORDY ? */
1108 if (pio) {
1109 /* This is cycle times not frequency - watch the logic! */
1110 if (pio > 240) /* PIO2 is 240nS per cycle */
1111 return 1;
1112 return 0;
1113 }
1114 }
1115 return 0;
1116}
1117
1118/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001119 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001120 * @dev: target device
1121 * @p_class: pointer to class of the target device (may be changed)
1122 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001123 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001124 *
1125 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1126 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001127 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1128 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001129 *
1130 * LOCKING:
1131 * Kernel thread context (may sleep)
1132 *
1133 * RETURNS:
1134 * 0 on success, -errno otherwise.
1135 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001136static int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1137 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001138{
Tejun Heo3373efd2006-05-15 20:57:53 +09001139 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001140 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001141 struct ata_taskfile tf;
1142 unsigned int err_mask = 0;
1143 const char *reason;
1144 int rc;
1145
1146 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1147
Tejun Heo49016ac2006-02-21 02:12:11 +09001148 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1149
1150 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001151 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001152
1153 switch (class) {
1154 case ATA_DEV_ATA:
1155 tf.command = ATA_CMD_ID_ATA;
1156 break;
1157 case ATA_DEV_ATAPI:
1158 tf.command = ATA_CMD_ID_ATAPI;
1159 break;
1160 default:
1161 rc = -ENODEV;
1162 reason = "unsupported class";
1163 goto err_out;
1164 }
1165
1166 tf.protocol = ATA_PROT_PIO;
1167
Tejun Heo3373efd2006-05-15 20:57:53 +09001168 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001169 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001170 if (err_mask) {
1171 rc = -EIO;
1172 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001173 goto err_out;
1174 }
1175
1176 swap_buf_le16(id, ATA_ID_WORDS);
1177
Tejun Heo49016ac2006-02-21 02:12:11 +09001178 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001179 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001180 rc = -EINVAL;
1181 reason = "device reports illegal type";
1182 goto err_out;
1183 }
1184
1185 if (post_reset && class == ATA_DEV_ATA) {
1186 /*
1187 * The exact sequence expected by certain pre-ATA4 drives is:
1188 * SRST RESET
1189 * IDENTIFY
1190 * INITIALIZE DEVICE PARAMETERS
1191 * anything else..
1192 * Some drives were very specific about that exact sequence.
1193 */
1194 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001195 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001196 if (err_mask) {
1197 rc = -EIO;
1198 reason = "INIT_DEV_PARAMS failed";
1199 goto err_out;
1200 }
1201
1202 /* current CHS translation info (id[53-58]) might be
1203 * changed. reread the identify device info.
1204 */
1205 post_reset = 0;
1206 goto retry;
1207 }
1208 }
1209
1210 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001211
Tejun Heo49016ac2006-02-21 02:12:11 +09001212 return 0;
1213
1214 err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09001215 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
1216 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001217 return rc;
1218}
1219
Tejun Heo3373efd2006-05-15 20:57:53 +09001220static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001221{
Tejun Heo3373efd2006-05-15 20:57:53 +09001222 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001223}
1224
Tejun Heo49016ac2006-02-21 02:12:11 +09001225/**
Tejun Heoffeae412006-03-01 16:09:35 +09001226 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001227 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001228 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 *
Tejun Heoffeae412006-03-01 16:09:35 +09001230 * Configure @dev according to @dev->id. Generic and low-level
1231 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 *
1233 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001234 * Kernel thread context (may sleep)
1235 *
1236 * RETURNS:
1237 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001239static int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Tejun Heo3373efd2006-05-15 20:57:53 +09001241 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001242 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001243 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001244 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Tejun Heoe1211e32006-04-01 01:38:18 +09001246 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001248 ap->id, dev->devno);
1249 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251
Tejun Heoffeae412006-03-01 16:09:35 +09001252 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001254 /* print device capabilities */
1255 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001256 ata_dev_printk(dev, KERN_DEBUG, "cfg 49:%04x 82:%04x 83:%04x "
1257 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1258 id[49], id[82], id[83], id[84],
1259 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001260
Tejun Heo208a9932006-03-05 17:55:58 +09001261 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001262 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001263 dev->max_sectors = 0;
1264 dev->cdb_len = 0;
1265 dev->n_sectors = 0;
1266 dev->cylinders = 0;
1267 dev->heads = 0;
1268 dev->sectors = 0;
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 /*
1271 * common ATA, ATAPI feature tests
1272 */
1273
Tejun Heoff8854b2006-03-06 04:31:56 +09001274 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001275 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Tejun Heo1148c3a2006-03-13 19:48:04 +09001277 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 /* ATA-specific feature tests */
1280 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001281 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001282
Tejun Heo1148c3a2006-03-13 19:48:04 +09001283 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001284 const char *lba_desc;
Albert Lee8bf62ece2005-05-12 15:29:42 -04001285
Tejun Heo4c2d7212006-03-05 17:55:58 +09001286 lba_desc = "LBA";
1287 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001288 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001289 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001290 lba_desc = "LBA48";
1291 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001292
1293 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001294 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001295 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1296 "max %s, %Lu sectors: %s\n",
1297 ata_id_major_version(id),
1298 ata_mode_string(xfer_mask),
1299 (unsigned long long)dev->n_sectors,
1300 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001301 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001302 /* CHS */
1303
1304 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001305 dev->cylinders = id[1];
1306 dev->heads = id[3];
1307 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001308
Tejun Heo1148c3a2006-03-13 19:48:04 +09001309 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001310 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001311 dev->cylinders = id[54];
1312 dev->heads = id[55];
1313 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001314 }
1315
1316 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001317 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001318 ata_dev_printk(dev, KERN_INFO, "ATA-%d, "
1319 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1320 ata_id_major_version(id),
1321 ata_mode_string(xfer_mask),
1322 (unsigned long long)dev->n_sectors,
1323 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
1325
Tejun Heo6e7846e2006-02-12 23:32:58 +09001326 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328
1329 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001330 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001331 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001333 ata_dev_printk(dev, KERN_WARNING,
1334 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001335 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 goto err_out_nosup;
1337 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001338 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001341 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001342 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s\n",
1343 ata_mode_string(xfer_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345
Tejun Heo6e7846e2006-02-12 23:32:58 +09001346 ap->host->max_cmd_len = 0;
1347 for (i = 0; i < ATA_MAX_DEVICES; i++)
1348 ap->host->max_cmd_len = max_t(unsigned int,
1349 ap->host->max_cmd_len,
1350 ap->device[i].cdb_len);
1351
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001352 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001353 if (ata_dev_knobble(dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001354 if (print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001355 ata_dev_printk(dev, KERN_INFO,
1356 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001357 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001358 dev->max_sectors = ATA_MAX_SECTORS;
1359 }
1360
1361 if (ap->ops->dev_config)
1362 ap->ops->dev_config(ap, dev);
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001369 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372/**
1373 * ata_bus_probe - Reset and probe ATA bus
1374 * @ap: Bus to probe
1375 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001376 * Master ATA bus probing function. Initiates a hardware-dependent
1377 * bus reset, then attempts to identify any devices found on
1378 * the bus.
1379 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001381 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 *
1383 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001384 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 */
1386
1387static int ata_bus_probe(struct ata_port *ap)
1388{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001389 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001390 int tries[ATA_MAX_DEVICES];
1391 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001392 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Tejun Heo28ca5c52006-03-01 16:09:36 +09001394 ata_port_probe(ap);
1395
Tejun Heo14d2bac2006-04-02 17:54:46 +09001396 for (i = 0; i < ATA_MAX_DEVICES; i++)
1397 tries[i] = ATA_PROBE_MAX_TRIES;
1398
1399 retry:
1400 down_xfermask = 0;
1401
Tejun Heo20444702006-03-13 01:57:01 +09001402 /* reset and determine device classes */
1403 for (i = 0; i < ATA_MAX_DEVICES; i++)
1404 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001405
Tejun Heo20444702006-03-13 01:57:01 +09001406 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001407 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001408 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001409 ata_port_printk(ap, KERN_ERR,
1410 "reset failed (errno=%d)\n", rc);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001411 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001412 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001413 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001414 ap->ops->phy_reset(ap);
1415
Tejun Heof8c2c422006-05-15 20:57:30 +09001416 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1417 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo28ca5c52006-03-01 16:09:36 +09001418 classes[i] = ap->device[i].class;
Tejun Heof8c2c422006-05-15 20:57:30 +09001419 ap->device[i].class = ATA_DEV_UNKNOWN;
1420 }
Tejun Heo20444702006-03-13 01:57:01 +09001421
Tejun Heo28ca5c52006-03-01 16:09:36 +09001422 ata_port_probe(ap);
1423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Tejun Heo20444702006-03-13 01:57:01 +09001425 for (i = 0; i < ATA_MAX_DEVICES; i++)
1426 if (classes[i] == ATA_DEV_UNKNOWN)
1427 classes[i] = ATA_DEV_NONE;
1428
Tejun Heo28ca5c52006-03-01 16:09:36 +09001429 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001431 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001432
Tejun Heoec573752006-04-11 22:26:29 +09001433 if (tries[i])
1434 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001435
Tejun Heoe1211e32006-04-01 01:38:18 +09001436 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001437 continue;
1438
Tejun Heo3373efd2006-05-15 20:57:53 +09001439 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001440 if (rc)
1441 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001442
Tejun Heo3373efd2006-05-15 20:57:53 +09001443 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001444 if (rc)
1445 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001448 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001449 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001450 if (rc) {
1451 down_xfermask = 1;
1452 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001455 for (i = 0; i < ATA_MAX_DEVICES; i++)
1456 if (ata_dev_enabled(&ap->device[i]))
1457 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001458
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001459 /* no device present, disable port */
1460 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001462 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001463
1464 fail:
1465 switch (rc) {
1466 case -EINVAL:
1467 case -ENODEV:
1468 tries[dev->devno] = 0;
1469 break;
1470 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001471 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001472 /* fall through */
1473 default:
1474 tries[dev->devno]--;
1475 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001476 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001477 tries[dev->devno] = 0;
1478 }
1479
Tejun Heoec573752006-04-11 22:26:29 +09001480 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001481 ata_down_xfermask_limit(dev, 1);
1482 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001483 }
1484
Tejun Heo14d2bac2006-04-02 17:54:46 +09001485 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
1487
1488/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001489 * ata_port_probe - Mark port as enabled
1490 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001492 * Modify @ap data structure such that the system
1493 * thinks that the entire port is enabled.
1494 *
1495 * LOCKING: host_set lock, or some other form of
1496 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 */
1498
1499void ata_port_probe(struct ata_port *ap)
1500{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001501 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
1504/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001505 * sata_print_link_status - Print SATA link status
1506 * @ap: SATA port to printk link status about
1507 *
1508 * This function prints link speed and status of a SATA link.
1509 *
1510 * LOCKING:
1511 * None.
1512 */
1513static void sata_print_link_status(struct ata_port *ap)
1514{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001515 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001516
Tejun Heo81952c52006-05-15 20:57:47 +09001517 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001518 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001519 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001520
Tejun Heo81952c52006-05-15 20:57:47 +09001521 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001522 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001523 ata_port_printk(ap, KERN_INFO,
1524 "SATA link up %s (SStatus %X SControl %X)\n",
1525 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001526 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001527 ata_port_printk(ap, KERN_INFO,
1528 "SATA link down (SStatus %X SControl %X)\n",
1529 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001530 }
1531}
1532
1533/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001534 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1535 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001537 * This function issues commands to standard SATA Sxxx
1538 * PHY registers, to wake up the phy (and device), and
1539 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 *
1541 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001542 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 *
1544 */
1545void __sata_phy_reset(struct ata_port *ap)
1546{
1547 u32 sstatus;
1548 unsigned long timeout = jiffies + (HZ * 5);
1549
1550 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05001551 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001552 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001553 /* Couldn't find anything in SATA I/II specs, but
1554 * AHCI-1.1 10.4.2 says at least 1 ms. */
1555 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
Tejun Heo81952c52006-05-15 20:57:47 +09001557 /* phy wake/clear reset */
1558 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 /* wait for phy to become ready, if necessary */
1561 do {
1562 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001563 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if ((sstatus & 0xf) != 1)
1565 break;
1566 } while (time_before(jiffies, timeout));
1567
Tejun Heo3be680b2005-12-19 22:35:02 +09001568 /* print link status */
1569 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001570
Tejun Heo3be680b2005-12-19 22:35:02 +09001571 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001572 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001574 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Tejun Heo198e0fe2006-04-02 18:51:52 +09001577 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return;
1579
1580 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1581 ata_port_disable(ap);
1582 return;
1583 }
1584
1585 ap->cbl = ATA_CBL_SATA;
1586}
1587
1588/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001589 * sata_phy_reset - Reset SATA bus.
1590 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001592 * This function resets the SATA bus, and then probes
1593 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 *
1595 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001596 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 *
1598 */
1599void sata_phy_reset(struct ata_port *ap)
1600{
1601 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001602 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 return;
1604 ata_bus_reset(ap);
1605}
1606
1607/**
Alan Coxebdfca6e2006-03-23 15:38:34 +00001608 * ata_dev_pair - return other device on cable
Alan Coxebdfca6e2006-03-23 15:38:34 +00001609 * @adev: device
1610 *
1611 * Obtain the other device on the same cable, or if none is
1612 * present NULL is returned
1613 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001614
Tejun Heo3373efd2006-05-15 20:57:53 +09001615struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca6e2006-03-23 15:38:34 +00001616{
Tejun Heo3373efd2006-05-15 20:57:53 +09001617 struct ata_port *ap = adev->ap;
Alan Coxebdfca6e2006-03-23 15:38:34 +00001618 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001619 if (!ata_dev_enabled(pair))
Alan Coxebdfca6e2006-03-23 15:38:34 +00001620 return NULL;
1621 return pair;
1622}
1623
1624/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001625 * ata_port_disable - Disable port.
1626 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001628 * Modify @ap data structure such that the system
1629 * thinks that the entire port is disabled, and should
1630 * never attempt to probe or communicate with devices
1631 * on this port.
1632 *
1633 * LOCKING: host_set lock, or some other form of
1634 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 */
1636
1637void ata_port_disable(struct ata_port *ap)
1638{
1639 ap->device[0].class = ATA_DEV_NONE;
1640 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001641 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
Tejun Heo1c3fae42006-04-02 20:53:28 +09001644/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001645 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001646 * @ap: Port to adjust SATA spd limit for
1647 *
1648 * Adjust SATA spd limit of @ap downward. Note that this
1649 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001650 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001651 *
1652 * LOCKING:
1653 * Inherited from caller.
1654 *
1655 * RETURNS:
1656 * 0 on success, negative errno on failure
1657 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001658int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001659{
Tejun Heo81952c52006-05-15 20:57:47 +09001660 u32 sstatus, spd, mask;
1661 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001662
Tejun Heo81952c52006-05-15 20:57:47 +09001663 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1664 if (rc)
1665 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001666
1667 mask = ap->sata_spd_limit;
1668 if (mask <= 1)
1669 return -EINVAL;
1670 highbit = fls(mask) - 1;
1671 mask &= ~(1 << highbit);
1672
Tejun Heo81952c52006-05-15 20:57:47 +09001673 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001674 if (spd <= 1)
1675 return -EINVAL;
1676 spd--;
1677 mask &= (1 << spd) - 1;
1678 if (!mask)
1679 return -EINVAL;
1680
1681 ap->sata_spd_limit = mask;
1682
Tejun Heof15a1da2006-05-15 20:57:56 +09001683 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
1684 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09001685
1686 return 0;
1687}
1688
Tejun Heo3c567b72006-05-15 20:57:23 +09001689static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001690{
1691 u32 spd, limit;
1692
1693 if (ap->sata_spd_limit == UINT_MAX)
1694 limit = 0;
1695 else
1696 limit = fls(ap->sata_spd_limit);
1697
1698 spd = (*scontrol >> 4) & 0xf;
1699 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1700
1701 return spd != limit;
1702}
1703
1704/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001705 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001706 * @ap: Port in question
1707 *
1708 * Test whether the spd limit in SControl matches
1709 * @ap->sata_spd_limit. This function is used to determine
1710 * whether hardreset is necessary to apply SATA spd
1711 * configuration.
1712 *
1713 * LOCKING:
1714 * Inherited from caller.
1715 *
1716 * RETURNS:
1717 * 1 if SATA spd configuration is needed, 0 otherwise.
1718 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001719int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001720{
1721 u32 scontrol;
1722
Tejun Heo81952c52006-05-15 20:57:47 +09001723 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001724 return 0;
1725
Tejun Heo3c567b72006-05-15 20:57:23 +09001726 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001727}
1728
1729/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001730 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001731 * @ap: Port to set SATA spd for
1732 *
1733 * Set SATA spd of @ap according to sata_spd_limit.
1734 *
1735 * LOCKING:
1736 * Inherited from caller.
1737 *
1738 * RETURNS:
1739 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001740 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001741 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001742int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001743{
1744 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001745 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001746
Tejun Heo81952c52006-05-15 20:57:47 +09001747 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1748 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001749
Tejun Heo3c567b72006-05-15 20:57:23 +09001750 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001751 return 0;
1752
Tejun Heo81952c52006-05-15 20:57:47 +09001753 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1754 return rc;
1755
Tejun Heo1c3fae42006-04-02 20:53:28 +09001756 return 1;
1757}
1758
Alan Cox452503f2005-10-21 19:01:32 -04001759/*
1760 * This mode timing computation functionality is ported over from
1761 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1762 */
1763/*
1764 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1765 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1766 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001767 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001768 */
1769
1770static const struct ata_timing ata_timing[] = {
1771
1772 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1773 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1774 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1775 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1776
1777 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1778 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1779 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1780
1781/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001782
Alan Cox452503f2005-10-21 19:01:32 -04001783 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1784 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1785 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001786
Alan Cox452503f2005-10-21 19:01:32 -04001787 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1788 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1789 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1790
1791/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1792 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1793 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1794
1795 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1796 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1797 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1798
1799/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1800
1801 { 0xFF }
1802};
1803
1804#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1805#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1806
1807static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1808{
1809 q->setup = EZ(t->setup * 1000, T);
1810 q->act8b = EZ(t->act8b * 1000, T);
1811 q->rec8b = EZ(t->rec8b * 1000, T);
1812 q->cyc8b = EZ(t->cyc8b * 1000, T);
1813 q->active = EZ(t->active * 1000, T);
1814 q->recover = EZ(t->recover * 1000, T);
1815 q->cycle = EZ(t->cycle * 1000, T);
1816 q->udma = EZ(t->udma * 1000, UT);
1817}
1818
1819void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1820 struct ata_timing *m, unsigned int what)
1821{
1822 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1823 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1824 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1825 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1826 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1827 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1828 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1829 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1830}
1831
1832static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1833{
1834 const struct ata_timing *t;
1835
1836 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001837 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001838 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001839 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001840}
1841
1842int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1843 struct ata_timing *t, int T, int UT)
1844{
1845 const struct ata_timing *s;
1846 struct ata_timing p;
1847
1848 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001849 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001850 */
Alan Cox452503f2005-10-21 19:01:32 -04001851
1852 if (!(s = ata_timing_find_mode(speed)))
1853 return -EINVAL;
1854
Albert Lee75b1f2f2005-11-16 17:06:18 +08001855 memcpy(t, s, sizeof(*s));
1856
Alan Cox452503f2005-10-21 19:01:32 -04001857 /*
1858 * If the drive is an EIDE drive, it can tell us it needs extended
1859 * PIO/MW_DMA cycle timing.
1860 */
1861
1862 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1863 memset(&p, 0, sizeof(p));
1864 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1865 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1866 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1867 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1868 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1869 }
1870 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1871 }
1872
1873 /*
1874 * Convert the timing to bus clock counts.
1875 */
1876
Albert Lee75b1f2f2005-11-16 17:06:18 +08001877 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001878
1879 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001880 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1881 * S.M.A.R.T * and some other commands. We have to ensure that the
1882 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001883 */
1884
1885 if (speed > XFER_PIO_4) {
1886 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1887 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1888 }
1889
1890 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001891 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001892 */
1893
1894 if (t->act8b + t->rec8b < t->cyc8b) {
1895 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1896 t->rec8b = t->cyc8b - t->act8b;
1897 }
1898
1899 if (t->active + t->recover < t->cycle) {
1900 t->active += (t->cycle - (t->active + t->recover)) / 2;
1901 t->recover = t->cycle - t->active;
1902 }
1903
1904 return 0;
1905}
1906
Tejun Heocf176e12006-04-02 17:54:46 +09001907/**
1908 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09001909 * @dev: Device to adjust xfer masks
1910 * @force_pio0: Force PIO0
1911 *
1912 * Adjust xfer masks of @dev downward. Note that this function
1913 * does not apply the change. Invoking ata_set_mode() afterwards
1914 * will apply the limit.
1915 *
1916 * LOCKING:
1917 * Inherited from caller.
1918 *
1919 * RETURNS:
1920 * 0 on success, negative errno on failure
1921 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001922int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09001923{
1924 unsigned long xfer_mask;
1925 int highbit;
1926
1927 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
1928 dev->udma_mask);
1929
1930 if (!xfer_mask)
1931 goto fail;
1932 /* don't gear down to MWDMA from UDMA, go directly to PIO */
1933 if (xfer_mask & ATA_MASK_UDMA)
1934 xfer_mask &= ~ATA_MASK_MWDMA;
1935
1936 highbit = fls(xfer_mask) - 1;
1937 xfer_mask &= ~(1 << highbit);
1938 if (force_pio0)
1939 xfer_mask &= 1 << ATA_SHIFT_PIO;
1940 if (!xfer_mask)
1941 goto fail;
1942
1943 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
1944 &dev->udma_mask);
1945
Tejun Heof15a1da2006-05-15 20:57:56 +09001946 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
1947 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09001948
1949 return 0;
1950
1951 fail:
1952 return -EINVAL;
1953}
1954
Tejun Heo3373efd2006-05-15 20:57:53 +09001955static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
Tejun Heo83206a22006-03-24 15:25:31 +09001957 unsigned int err_mask;
1958 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Tejun Heoe8384602006-04-02 18:51:53 +09001960 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (dev->xfer_shift == ATA_SHIFT_PIO)
1962 dev->flags |= ATA_DFLAG_PIO;
1963
Tejun Heo3373efd2006-05-15 20:57:53 +09001964 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09001965 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001966 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
1967 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09001968 return -EIO;
1969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Tejun Heo3373efd2006-05-15 20:57:53 +09001971 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09001972 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09001973 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09001974
Tejun Heo23e71c32006-03-06 04:31:57 +09001975 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1976 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Tejun Heof15a1da2006-05-15 20:57:56 +09001978 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
1979 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001980 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981}
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983/**
1984 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1985 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001986 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001988 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
1989 * ata_set_mode() fails, pointer to the failing device is
1990 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04001991 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001993 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001994 *
1995 * RETURNS:
1996 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001998int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
Tejun Heoe8e06192006-04-01 01:38:18 +09002000 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002001 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Tejun Heo3adcebb2006-05-15 20:57:37 +09002003 /* has private set_mode? */
2004 if (ap->ops->set_mode) {
2005 /* FIXME: make ->set_mode handle no device case and
2006 * return error code and failing device on failure.
2007 */
2008 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2009 if (ata_dev_enabled(&ap->device[i])) {
2010 ap->ops->set_mode(ap);
2011 break;
2012 }
2013 }
2014 return 0;
2015 }
2016
Tejun Heoa6d5a512006-03-06 04:31:57 +09002017 /* step 1: calculate xfer_mask */
2018 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002019 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002020
Tejun Heoe8e06192006-04-01 01:38:18 +09002021 dev = &ap->device[i];
2022
Tejun Heoe1211e32006-04-01 01:38:18 +09002023 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002024 continue;
2025
Tejun Heo3373efd2006-05-15 20:57:53 +09002026 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002027
Tejun Heoacf356b2006-03-24 14:07:50 +09002028 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2029 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2030 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2031 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002032
Tejun Heo4f659772006-04-01 01:38:18 +09002033 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002034 if (dev->dma_mode)
2035 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002036 }
Tejun Heo4f659772006-04-01 01:38:18 +09002037 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002038 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002039
2040 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002041 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2042 dev = &ap->device[i];
2043 if (!ata_dev_enabled(dev))
2044 continue;
2045
2046 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002047 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002048 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002049 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002050 }
2051
2052 dev->xfer_mode = dev->pio_mode;
2053 dev->xfer_shift = ATA_SHIFT_PIO;
2054 if (ap->ops->set_piomode)
2055 ap->ops->set_piomode(ap, dev);
2056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Tejun Heoa6d5a512006-03-06 04:31:57 +09002058 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002059 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2060 dev = &ap->device[i];
2061
2062 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2063 continue;
2064
2065 dev->xfer_mode = dev->dma_mode;
2066 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2067 if (ap->ops->set_dmamode)
2068 ap->ops->set_dmamode(ap, dev);
2069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002072 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002073 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Tejun Heoe1211e32006-04-01 01:38:18 +09002075 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002076 continue;
2077
Tejun Heo3373efd2006-05-15 20:57:53 +09002078 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002079 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002080 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Tejun Heoe8e06192006-04-01 01:38:18 +09002083 /* Record simplex status. If we selected DMA then the other
2084 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002085 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002086 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2087 ap->host_set->simplex_claimed = 1;
2088
Tejun Heoe8e06192006-04-01 01:38:18 +09002089 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 if (ap->ops->post_set_mode)
2091 ap->ops->post_set_mode(ap);
2092
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002093 out:
2094 if (rc)
2095 *r_failed_dev = dev;
2096 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097}
2098
2099/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002100 * ata_tf_to_host - issue ATA taskfile to host controller
2101 * @ap: port to which command is being issued
2102 * @tf: ATA taskfile register set
2103 *
2104 * Issues ATA taskfile register set to ATA host controller,
2105 * with proper synchronization with interrupt handler and
2106 * other threads.
2107 *
2108 * LOCKING:
2109 * spin_lock_irqsave(host_set lock)
2110 */
2111
2112static inline void ata_tf_to_host(struct ata_port *ap,
2113 const struct ata_taskfile *tf)
2114{
2115 ap->ops->tf_load(ap, tf);
2116 ap->ops->exec_command(ap, tf);
2117}
2118
2119/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 * ata_busy_sleep - sleep until BSY clears, or timeout
2121 * @ap: port containing status register to be polled
2122 * @tmout_pat: impatience timeout
2123 * @tmout: overall timeout
2124 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002125 * Sleep until ATA Status register bit BSY clears,
2126 * or a timeout occurs.
2127 *
2128 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 */
2130
Tejun Heo6f8b9952006-01-24 17:05:21 +09002131unsigned int ata_busy_sleep (struct ata_port *ap,
2132 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
2134 unsigned long timer_start, timeout;
2135 u8 status;
2136
2137 status = ata_busy_wait(ap, ATA_BUSY, 300);
2138 timer_start = jiffies;
2139 timeout = timer_start + tmout_pat;
2140 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2141 msleep(50);
2142 status = ata_busy_wait(ap, ATA_BUSY, 3);
2143 }
2144
2145 if (status & ATA_BUSY)
Tejun Heof15a1da2006-05-15 20:57:56 +09002146 ata_port_printk(ap, KERN_WARNING,
2147 "port is slow to respond, please be patient\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 timeout = timer_start + tmout;
2150 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2151 msleep(50);
2152 status = ata_chk_status(ap);
2153 }
2154
2155 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002156 ata_port_printk(ap, KERN_ERR, "port failed to respond "
2157 "(%lu secs)\n", tmout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 return 1;
2159 }
2160
2161 return 0;
2162}
2163
2164static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2165{
2166 struct ata_ioports *ioaddr = &ap->ioaddr;
2167 unsigned int dev0 = devmask & (1 << 0);
2168 unsigned int dev1 = devmask & (1 << 1);
2169 unsigned long timeout;
2170
2171 /* if device 0 was found in ata_devchk, wait for its
2172 * BSY bit to clear
2173 */
2174 if (dev0)
2175 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2176
2177 /* if device 1 was found in ata_devchk, wait for
2178 * register access, then wait for BSY to clear
2179 */
2180 timeout = jiffies + ATA_TMOUT_BOOT;
2181 while (dev1) {
2182 u8 nsect, lbal;
2183
2184 ap->ops->dev_select(ap, 1);
2185 if (ap->flags & ATA_FLAG_MMIO) {
2186 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2187 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2188 } else {
2189 nsect = inb(ioaddr->nsect_addr);
2190 lbal = inb(ioaddr->lbal_addr);
2191 }
2192 if ((nsect == 1) && (lbal == 1))
2193 break;
2194 if (time_after(jiffies, timeout)) {
2195 dev1 = 0;
2196 break;
2197 }
2198 msleep(50); /* give drive a breather */
2199 }
2200 if (dev1)
2201 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2202
2203 /* is all this really necessary? */
2204 ap->ops->dev_select(ap, 0);
2205 if (dev1)
2206 ap->ops->dev_select(ap, 1);
2207 if (dev0)
2208 ap->ops->dev_select(ap, 0);
2209}
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211static unsigned int ata_bus_softreset(struct ata_port *ap,
2212 unsigned int devmask)
2213{
2214 struct ata_ioports *ioaddr = &ap->ioaddr;
2215
2216 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2217
2218 /* software reset. causes dev0 to be selected */
2219 if (ap->flags & ATA_FLAG_MMIO) {
2220 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2221 udelay(20); /* FIXME: flush */
2222 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2223 udelay(20); /* FIXME: flush */
2224 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2225 } else {
2226 outb(ap->ctl, ioaddr->ctl_addr);
2227 udelay(10);
2228 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2229 udelay(10);
2230 outb(ap->ctl, ioaddr->ctl_addr);
2231 }
2232
2233 /* spec mandates ">= 2ms" before checking status.
2234 * We wait 150ms, because that was the magic delay used for
2235 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2236 * between when the ATA command register is written, and then
2237 * status is checked. Because waiting for "a while" before
2238 * checking status is fine, post SRST, we perform this magic
2239 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002240 *
2241 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 */
2243 msleep(150);
2244
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002245 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002246 * the bus shows 0xFF because the odd clown forgets the D7
2247 * pulldown resistor.
2248 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002249 if (ata_check_status(ap) == 0xFF) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002250 ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n");
Tejun Heo298a41c2006-03-25 02:58:13 +09002251 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002252 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 ata_bus_post_reset(ap, devmask);
2255
2256 return 0;
2257}
2258
2259/**
2260 * ata_bus_reset - reset host port and associated ATA channel
2261 * @ap: port to reset
2262 *
2263 * This is typically the first time we actually start issuing
2264 * commands to the ATA channel. We wait for BSY to clear, then
2265 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2266 * result. Determine what devices, if any, are on the channel
2267 * by looking at the device 0/1 error register. Look at the signature
2268 * stored in each device's taskfile registers, to determine if
2269 * the device is ATA or ATAPI.
2270 *
2271 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002272 * PCI/etc. bus probe sem.
2273 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 *
2275 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002276 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 */
2278
2279void ata_bus_reset(struct ata_port *ap)
2280{
2281 struct ata_ioports *ioaddr = &ap->ioaddr;
2282 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2283 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002284 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2287
2288 /* determine if device 0/1 are present */
2289 if (ap->flags & ATA_FLAG_SATA_RESET)
2290 dev0 = 1;
2291 else {
2292 dev0 = ata_devchk(ap, 0);
2293 if (slave_possible)
2294 dev1 = ata_devchk(ap, 1);
2295 }
2296
2297 if (dev0)
2298 devmask |= (1 << 0);
2299 if (dev1)
2300 devmask |= (1 << 1);
2301
2302 /* select device 0 again */
2303 ap->ops->dev_select(ap, 0);
2304
2305 /* issue bus reset */
2306 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002307 if (ata_bus_softreset(ap, devmask))
2308 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
2310 /*
2311 * determine by signature whether we have ATA or ATAPI devices
2312 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002313 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002315 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317 /* re-enable interrupts */
2318 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2319 ata_irq_on(ap);
2320
2321 /* is double-select really necessary? */
2322 if (ap->device[1].class != ATA_DEV_NONE)
2323 ap->ops->dev_select(ap, 1);
2324 if (ap->device[0].class != ATA_DEV_NONE)
2325 ap->ops->dev_select(ap, 0);
2326
2327 /* if no devices were detected, disable this port */
2328 if ((ap->device[0].class == ATA_DEV_NONE) &&
2329 (ap->device[1].class == ATA_DEV_NONE))
2330 goto err_out;
2331
2332 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2333 /* set up device control for ATA_FLAG_SATA_RESET */
2334 if (ap->flags & ATA_FLAG_MMIO)
2335 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2336 else
2337 outb(ap->ctl, ioaddr->ctl_addr);
2338 }
2339
2340 DPRINTK("EXIT\n");
2341 return;
2342
2343err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002344 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 ap->ops->port_disable(ap);
2346
2347 DPRINTK("EXIT\n");
2348}
2349
Tejun Heo7a7921e2006-02-02 18:20:00 +09002350static int sata_phy_resume(struct ata_port *ap)
2351{
2352 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo852ee16a2006-04-01 01:38:18 +09002353 u32 scontrol, sstatus;
Tejun Heo81952c52006-05-15 20:57:47 +09002354 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002355
Tejun Heo81952c52006-05-15 20:57:47 +09002356 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2357 return rc;
2358
Tejun Heo852ee16a2006-04-01 01:38:18 +09002359 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002360
2361 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2362 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002363
2364 /* Wait for phy to become ready, if necessary. */
2365 do {
2366 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09002367 if ((rc = sata_scr_read(ap, SCR_STATUS, &sstatus)))
2368 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002369 if ((sstatus & 0xf) != 1)
2370 return 0;
2371 } while (time_before(jiffies, timeout));
2372
Tejun Heo81952c52006-05-15 20:57:47 +09002373 return -EBUSY;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002374}
2375
Tejun Heoc2bd5802006-01-24 17:05:22 +09002376/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002377 * ata_std_probeinit - initialize probing
2378 * @ap: port to be probed
2379 *
2380 * @ap is about to be probed. Initialize it. This function is
2381 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002382 *
2383 * NOTE!!! Do not use this function as probeinit if a low level
2384 * driver implements only hardreset. Just pass NULL as probeinit
2385 * in that case. Using this function is probably okay but doing
2386 * so makes reset sequence different from the original
2387 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002388 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002389void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002390{
Tejun Heo81952c52006-05-15 20:57:47 +09002391 u32 scontrol;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002392
Tejun Heo81952c52006-05-15 20:57:47 +09002393 /* resume link */
2394 sata_phy_resume(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002395
Tejun Heo81952c52006-05-15 20:57:47 +09002396 /* init sata_spd_limit to the current value */
2397 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
2398 int spd = (scontrol >> 4) & 0xf;
2399 ap->sata_spd_limit &= (1 << spd) - 1;
Tejun Heo3a397462006-02-10 23:58:48 +09002400 }
Tejun Heo81952c52006-05-15 20:57:47 +09002401
2402 /* wait for device */
2403 if (ata_port_online(ap))
2404 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Tejun Heo8a19ac82006-02-02 18:20:00 +09002405}
2406
2407/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002408 * ata_std_softreset - reset host port via ATA SRST
2409 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002410 * @classes: resulting classes of attached devices
2411 *
2412 * Reset host port using ATA SRST. This function is to be used
2413 * as standard callback for ata_drive_*_reset() functions.
2414 *
2415 * LOCKING:
2416 * Kernel thread context (may sleep)
2417 *
2418 * RETURNS:
2419 * 0 on success, -errno otherwise.
2420 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002421int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002422{
2423 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2424 unsigned int devmask = 0, err_mask;
2425 u8 err;
2426
2427 DPRINTK("ENTER\n");
2428
Tejun Heo81952c52006-05-15 20:57:47 +09002429 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002430 classes[0] = ATA_DEV_NONE;
2431 goto out;
2432 }
2433
Tejun Heoc2bd5802006-01-24 17:05:22 +09002434 /* determine if device 0/1 are present */
2435 if (ata_devchk(ap, 0))
2436 devmask |= (1 << 0);
2437 if (slave_possible && ata_devchk(ap, 1))
2438 devmask |= (1 << 1);
2439
Tejun Heoc2bd5802006-01-24 17:05:22 +09002440 /* select device 0 again */
2441 ap->ops->dev_select(ap, 0);
2442
2443 /* issue bus reset */
2444 DPRINTK("about to softreset, devmask=%x\n", devmask);
2445 err_mask = ata_bus_softreset(ap, devmask);
2446 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002447 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2448 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002449 return -EIO;
2450 }
2451
2452 /* determine by signature whether we have ATA or ATAPI devices */
2453 classes[0] = ata_dev_try_classify(ap, 0, &err);
2454 if (slave_possible && err != 0x81)
2455 classes[1] = ata_dev_try_classify(ap, 1, &err);
2456
Tejun Heo3a397462006-02-10 23:58:48 +09002457 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002458 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2459 return 0;
2460}
2461
2462/**
2463 * sata_std_hardreset - reset host port via SATA phy reset
2464 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002465 * @class: resulting class of attached device
2466 *
2467 * SATA phy-reset host port using DET bits of SControl register.
2468 * This function is to be used as standard callback for
2469 * ata_drive_*_reset().
2470 *
2471 * LOCKING:
2472 * Kernel thread context (may sleep)
2473 *
2474 * RETURNS:
2475 * 0 on success, -errno otherwise.
2476 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002477int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002478{
Tejun Heo852ee16a2006-04-01 01:38:18 +09002479 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002480 int rc;
Tejun Heo852ee16a2006-04-01 01:38:18 +09002481
Tejun Heoc2bd5802006-01-24 17:05:22 +09002482 DPRINTK("ENTER\n");
2483
Tejun Heo3c567b72006-05-15 20:57:23 +09002484 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002485 /* SATA spec says nothing about how to reconfigure
2486 * spd. To be on the safe side, turn off phy during
2487 * reconfiguration. This works for at least ICH7 AHCI
2488 * and Sil3124.
2489 */
Tejun Heo81952c52006-05-15 20:57:47 +09002490 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2491 return rc;
2492
Tejun Heo1c3fae42006-04-02 20:53:28 +09002493 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002494
2495 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2496 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002497
Tejun Heo3c567b72006-05-15 20:57:23 +09002498 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002499 }
2500
2501 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002502 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2503 return rc;
2504
Tejun Heo852ee16a2006-04-01 01:38:18 +09002505 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002506
2507 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2508 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002509
Tejun Heo1c3fae42006-04-02 20:53:28 +09002510 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002511 * 10.4.2 says at least 1 ms.
2512 */
2513 msleep(1);
2514
Tejun Heo1c3fae42006-04-02 20:53:28 +09002515 /* bring phy back */
Tejun Heo7a7921e2006-02-02 18:20:00 +09002516 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002517
Tejun Heoc2bd5802006-01-24 17:05:22 +09002518 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002519 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002520 *class = ATA_DEV_NONE;
2521 DPRINTK("EXIT, link offline\n");
2522 return 0;
2523 }
2524
2525 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002526 ata_port_printk(ap, KERN_ERR,
2527 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09002528 return -EIO;
2529 }
2530
Tejun Heo3a397462006-02-10 23:58:48 +09002531 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2532
Tejun Heoc2bd5802006-01-24 17:05:22 +09002533 *class = ata_dev_try_classify(ap, 0, NULL);
2534
2535 DPRINTK("EXIT, class=%u\n", *class);
2536 return 0;
2537}
2538
2539/**
2540 * ata_std_postreset - standard postreset callback
2541 * @ap: the target ata_port
2542 * @classes: classes of attached devices
2543 *
2544 * This function is invoked after a successful reset. Note that
2545 * the device might have been reset more than once using
2546 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002547 *
2548 * This function is to be used as standard callback for
2549 * ata_drive_*_reset().
2550 *
2551 * LOCKING:
2552 * Kernel thread context (may sleep)
2553 */
2554void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2555{
Tejun Heodc2b3512006-05-15 20:58:00 +09002556 u32 serror;
2557
Tejun Heoc2bd5802006-01-24 17:05:22 +09002558 DPRINTK("ENTER\n");
2559
Tejun Heoc2bd5802006-01-24 17:05:22 +09002560 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002561 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002562
Tejun Heodc2b3512006-05-15 20:58:00 +09002563 /* clear SError */
2564 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
2565 sata_scr_write(ap, SCR_ERROR, serror);
2566
Tejun Heo3a397462006-02-10 23:58:48 +09002567 /* re-enable interrupts */
2568 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2569 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002570
2571 /* is double-select really necessary? */
2572 if (classes[0] != ATA_DEV_NONE)
2573 ap->ops->dev_select(ap, 1);
2574 if (classes[1] != ATA_DEV_NONE)
2575 ap->ops->dev_select(ap, 0);
2576
Tejun Heo3a397462006-02-10 23:58:48 +09002577 /* bail out if no device is present */
2578 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2579 DPRINTK("EXIT, no device\n");
2580 return;
2581 }
2582
2583 /* set up device control */
2584 if (ap->ioaddr.ctl_addr) {
2585 if (ap->flags & ATA_FLAG_MMIO)
2586 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2587 else
2588 outb(ap->ctl, ap->ioaddr.ctl_addr);
2589 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002590
2591 DPRINTK("EXIT\n");
2592}
2593
2594/**
2595 * ata_std_probe_reset - standard probe reset method
2596 * @ap: prot to perform probe-reset
2597 * @classes: resulting classes of attached devices
2598 *
2599 * The stock off-the-shelf ->probe_reset method.
2600 *
2601 * LOCKING:
2602 * Kernel thread context (may sleep)
2603 *
2604 * RETURNS:
2605 * 0 on success, -errno otherwise.
2606 */
2607int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2608{
2609 ata_reset_fn_t hardreset;
2610
2611 hardreset = NULL;
Tejun Heo81952c52006-05-15 20:57:47 +09002612 if (sata_scr_valid(ap))
Tejun Heoc2bd5802006-01-24 17:05:22 +09002613 hardreset = sata_std_hardreset;
2614
Tejun Heo8a19ac82006-02-02 18:20:00 +09002615 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002616 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002617 ata_std_postreset, classes);
2618}
2619
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002620int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
Tejun Heo96bd39e2006-05-15 20:57:38 +09002621 unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002622{
2623 int i, rc;
2624
2625 for (i = 0; i < ATA_MAX_DEVICES; i++)
2626 classes[i] = ATA_DEV_UNKNOWN;
2627
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002628 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002629 if (rc)
2630 return rc;
2631
2632 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2633 * is complete and convert all ATA_DEV_UNKNOWN to
2634 * ATA_DEV_NONE.
2635 */
2636 for (i = 0; i < ATA_MAX_DEVICES; i++)
2637 if (classes[i] != ATA_DEV_UNKNOWN)
2638 break;
2639
2640 if (i < ATA_MAX_DEVICES)
2641 for (i = 0; i < ATA_MAX_DEVICES; i++)
2642 if (classes[i] == ATA_DEV_UNKNOWN)
2643 classes[i] = ATA_DEV_NONE;
2644
Tejun Heo9974e7c2006-04-01 01:38:17 +09002645 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002646}
2647
2648/**
2649 * ata_drive_probe_reset - Perform probe reset with given methods
2650 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002651 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002652 * @softreset: softreset method (can be NULL)
2653 * @hardreset: hardreset method (can be NULL)
2654 * @postreset: postreset method (can be NULL)
2655 * @classes: resulting classes of attached devices
2656 *
2657 * Reset the specified port and classify attached devices using
2658 * given methods. This function prefers softreset but tries all
2659 * possible reset sequences to reset and classify devices. This
2660 * function is intended to be used for constructing ->probe_reset
2661 * callback by low level drivers.
2662 *
2663 * Reset methods should follow the following rules.
2664 *
2665 * - Return 0 on sucess, -errno on failure.
2666 * - If classification is supported, fill classes[] with
2667 * recognized class codes.
2668 * - If classification is not supported, leave classes[] alone.
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002669 *
2670 * LOCKING:
2671 * Kernel thread context (may sleep)
2672 *
2673 * RETURNS:
2674 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2675 * if classification fails, and any error code from reset
2676 * methods.
2677 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002678int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002679 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2680 ata_postreset_fn_t postreset, unsigned int *classes)
2681{
2682 int rc = -EINVAL;
2683
Tejun Heo7944ea92006-02-02 18:20:00 +09002684 if (probeinit)
2685 probeinit(ap);
2686
Tejun Heo3c567b72006-05-15 20:57:23 +09002687 if (softreset && !sata_set_spd_needed(ap)) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002688 rc = ata_do_reset(ap, softreset, classes);
Tejun Heo9974e7c2006-04-01 01:38:17 +09002689 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2690 goto done;
Tejun Heof15a1da2006-05-15 20:57:56 +09002691 ata_port_printk(ap, KERN_INFO, "softreset failed, "
2692 "will try hardreset in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002693 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002694 }
2695
2696 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002697 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002698
Tejun Heo90dac022006-04-02 17:54:46 +09002699 while (1) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002700 rc = ata_do_reset(ap, hardreset, classes);
Tejun Heo90dac022006-04-02 17:54:46 +09002701 if (rc == 0) {
2702 if (classes[0] != ATA_DEV_UNKNOWN)
2703 goto done;
2704 break;
2705 }
2706
Tejun Heo3c567b72006-05-15 20:57:23 +09002707 if (sata_down_spd_limit(ap))
Tejun Heo90dac022006-04-02 17:54:46 +09002708 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002709
Tejun Heof15a1da2006-05-15 20:57:56 +09002710 ata_port_printk(ap, KERN_INFO, "hardreset failed, "
2711 "will retry in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002712 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002713 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002714
Tejun Heoedbabd82006-04-02 20:55:02 +09002715 if (softreset) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002716 ata_port_printk(ap, KERN_INFO,
2717 "hardreset succeeded without classification, "
2718 "will retry softreset in 5 secs\n");
Tejun Heoedbabd82006-04-02 20:55:02 +09002719 ssleep(5);
2720
Tejun Heo96bd39e2006-05-15 20:57:38 +09002721 rc = ata_do_reset(ap, softreset, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002722 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002723
Tejun Heo9974e7c2006-04-01 01:38:17 +09002724 done:
Tejun Heo96bd39e2006-05-15 20:57:38 +09002725 if (rc == 0) {
2726 if (postreset)
2727 postreset(ap, classes);
2728 if (classes[0] == ATA_DEV_UNKNOWN)
2729 rc = -ENODEV;
2730 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002731 return rc;
2732}
2733
Tejun Heo623a3122006-03-05 17:55:58 +09002734/**
2735 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002736 * @dev: device to compare against
2737 * @new_class: class of the new device
2738 * @new_id: IDENTIFY page of the new device
2739 *
2740 * Compare @new_class and @new_id against @dev and determine
2741 * whether @dev is the device indicated by @new_class and
2742 * @new_id.
2743 *
2744 * LOCKING:
2745 * None.
2746 *
2747 * RETURNS:
2748 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2749 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002750static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2751 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002752{
2753 const u16 *old_id = dev->id;
2754 unsigned char model[2][41], serial[2][21];
2755 u64 new_n_sectors;
2756
2757 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002758 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
2759 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09002760 return 0;
2761 }
2762
2763 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2764 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2765 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2766 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2767 new_n_sectors = ata_id_n_sectors(new_id);
2768
2769 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002770 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
2771 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002772 return 0;
2773 }
2774
2775 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002776 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
2777 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09002778 return 0;
2779 }
2780
2781 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002782 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
2783 "%llu != %llu\n",
2784 (unsigned long long)dev->n_sectors,
2785 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09002786 return 0;
2787 }
2788
2789 return 1;
2790}
2791
2792/**
2793 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002794 * @dev: device to revalidate
2795 * @post_reset: is this revalidation after reset?
2796 *
2797 * Re-read IDENTIFY page and make sure @dev is still attached to
2798 * the port.
2799 *
2800 * LOCKING:
2801 * Kernel thread context (may sleep)
2802 *
2803 * RETURNS:
2804 * 0 on success, negative errno otherwise
2805 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002806int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002807{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002808 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09002809 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002810 int rc;
2811
Tejun Heo5eb45c02006-04-02 18:51:52 +09002812 if (!ata_dev_enabled(dev)) {
2813 rc = -ENODEV;
2814 goto fail;
2815 }
Tejun Heo623a3122006-03-05 17:55:58 +09002816
Tejun Heofe635c72006-05-15 20:57:35 +09002817 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002818 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002819 if (rc)
2820 goto fail;
2821
2822 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002823 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002824 rc = -ENODEV;
2825 goto fail;
2826 }
2827
Tejun Heofe635c72006-05-15 20:57:35 +09002828 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002829
2830 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002831 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002832 if (rc == 0)
2833 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002834
2835 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09002836 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002837 return rc;
2838}
2839
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002840static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002841 "WDC AC11000H", NULL,
2842 "WDC AC22100H", NULL,
2843 "WDC AC32500H", NULL,
2844 "WDC AC33100H", NULL,
2845 "WDC AC31600H", NULL,
2846 "WDC AC32100H", "24.09P07",
2847 "WDC AC23200L", "21.10N21",
2848 "Compaq CRD-8241B", NULL,
2849 "CRD-8400B", NULL,
2850 "CRD-8480B", NULL,
2851 "CRD-8482B", NULL,
2852 "CRD-84", NULL,
2853 "SanDisk SDP3B", NULL,
2854 "SanDisk SDP3B-64", NULL,
2855 "SANYO CD-ROM CRD", NULL,
2856 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002857 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002858 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002859 "Toshiba CD-ROM XM-6202B", NULL,
2860 "TOSHIBA CD-ROM XM-1702BC", NULL,
2861 "CD-532E-A", NULL,
2862 "E-IDE CD-ROM CR-840", NULL,
2863 "CD-ROM Drive/F5A", NULL,
2864 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002865 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002866 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002867 "SanDisk SDP3B-64", NULL,
2868 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2869 "_NEC DV5800A", NULL,
2870 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002872
Alan Coxf4b15fe2006-03-22 15:54:04 +00002873static int ata_strim(char *s, size_t len)
2874{
2875 len = strnlen(s, len);
2876
2877 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2878 while ((len > 0) && (s[len - 1] == ' ')) {
2879 len--;
2880 s[len] = 0;
2881 }
2882 return len;
2883}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Jeff Garzik057ace52005-10-22 14:27:05 -04002885static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002887 unsigned char model_num[40];
2888 unsigned char model_rev[16];
2889 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 int i;
2891
Alan Coxf4b15fe2006-03-22 15:54:04 +00002892 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2893 sizeof(model_num));
2894 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2895 sizeof(model_rev));
2896 nlen = ata_strim(model_num, sizeof(model_num));
2897 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
Alan Coxf4b15fe2006-03-22 15:54:04 +00002899 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2900 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2901 if (ata_dma_blacklist[i+1] == NULL)
2902 return 1;
2903 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2904 return 1;
2905 }
2906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return 0;
2908}
2909
Tejun Heoa6d5a512006-03-06 04:31:57 +09002910/**
2911 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09002912 * @dev: Device to compute xfermask for
2913 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002914 * Compute supported xfermask of @dev and store it in
2915 * dev->*_mask. This function is responsible for applying all
2916 * known limits including host controller limits, device
2917 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002918 *
Tejun Heo600511e2006-03-25 11:14:07 +09002919 * FIXME: The current implementation limits all transfer modes to
2920 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002921 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002922 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09002923 * LOCKING:
2924 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09002925 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002926static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
Tejun Heo3373efd2006-05-15 20:57:53 +09002928 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002929 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002930 unsigned long xfer_mask;
2931 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Tejun Heo565083e2006-04-02 17:54:47 +09002933 xfer_mask = ata_pack_xfermask(ap->pio_mask,
2934 ap->mwdma_mask, ap->udma_mask);
2935
2936 /* Apply cable rule here. Don't apply it early because when
2937 * we handle hot plug the cable type can itself change.
2938 */
2939 if (ap->cbl == ATA_CBL_PATA40)
2940 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
Alan Cox5444a6f2006-03-27 18:58:20 +01002942 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002943 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2944 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09002945
2946 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002947 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09002948
2949 if (ata_dev_disabled(d)) {
2950 /* to avoid violating device selection timing */
2951 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2952 UINT_MAX, UINT_MAX);
2953 continue;
2954 }
2955
2956 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2957 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002958 xfer_mask &= ata_id_xfermask(d->id);
2959 if (ata_dma_blacklisted(d))
2960 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 }
2962
Tejun Heoa6d5a512006-03-06 04:31:57 +09002963 if (ata_dma_blacklisted(dev))
Tejun Heof15a1da2006-05-15 20:57:56 +09002964 ata_dev_printk(dev, KERN_WARNING,
2965 "device is on DMA blacklist, disabling DMA\n");
Tejun Heoa6d5a512006-03-06 04:31:57 +09002966
Alan Cox5444a6f2006-03-27 18:58:20 +01002967 if (hs->flags & ATA_HOST_SIMPLEX) {
2968 if (hs->simplex_claimed)
2969 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2970 }
Tejun Heo565083e2006-04-02 17:54:47 +09002971
Alan Cox5444a6f2006-03-27 18:58:20 +01002972 if (ap->ops->mode_filter)
2973 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
2974
Tejun Heo565083e2006-04-02 17:54:47 +09002975 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
2976 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977}
2978
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 * @dev: Device to which command will be sent
2982 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002983 * Issue SET FEATURES - XFER MODE command to device @dev
2984 * on port @ap.
2985 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002987 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002988 *
2989 * RETURNS:
2990 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 */
2992
Tejun Heo3373efd2006-05-15 20:57:53 +09002993static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
Tejun Heoa0123702005-12-13 14:49:31 +09002995 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002996 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
2998 /* set up set-features taskfile */
2999 DPRINTK("set features - xfer mode\n");
3000
Tejun Heo3373efd2006-05-15 20:57:53 +09003001 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003002 tf.command = ATA_CMD_SET_FEATURES;
3003 tf.feature = SETFEATURES_XFER;
3004 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3005 tf.protocol = ATA_PROT_NODATA;
3006 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
Tejun Heo3373efd2006-05-15 20:57:53 +09003008 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Tejun Heo83206a22006-03-24 15:25:31 +09003010 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3011 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012}
3013
3014/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003015 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003016 * @dev: Device to which command will be sent
Tejun Heo3373efd2006-05-15 20:57:53 +09003017 * @heads: Number of heads
3018 * @sectors: Number of sectors
Albert Lee8bf62ece2005-05-12 15:29:42 -04003019 *
3020 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003021 * Kernel thread context (may sleep)
3022 *
3023 * RETURNS:
3024 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003025 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003026static unsigned int ata_dev_init_params(struct ata_device *dev,
3027 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003028{
Tejun Heoa0123702005-12-13 14:49:31 +09003029 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003030 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003031
3032 /* Number of sectors per track 1-255. Number of heads 1-16 */
3033 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003034 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003035
3036 /* set up init dev params taskfile */
3037 DPRINTK("init dev params \n");
3038
Tejun Heo3373efd2006-05-15 20:57:53 +09003039 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003040 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3041 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3042 tf.protocol = ATA_PROT_NODATA;
3043 tf.nsect = sectors;
3044 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003045
Tejun Heo3373efd2006-05-15 20:57:53 +09003046 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003047
Tejun Heo6aff8f12006-02-15 18:24:09 +09003048 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3049 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003050}
3051
3052/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003053 * ata_sg_clean - Unmap DMA memory associated with command
3054 * @qc: Command containing DMA memory to be released
3055 *
3056 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 *
3058 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003059 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 */
3061
3062static void ata_sg_clean(struct ata_queued_cmd *qc)
3063{
3064 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003065 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003067 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Tejun Heoa46314742006-02-11 19:11:13 +09003069 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3070 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
3072 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003073 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003075 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003077 /* if we padded the buffer out to 32-bit bound, and data
3078 * xfer direction is from-device, we must copy from the
3079 * pad buffer back into the supplied buffer
3080 */
3081 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3082 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3083
3084 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003085 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003086 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003087 /* restore last sg */
3088 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3089 if (pad_buf) {
3090 struct scatterlist *psg = &qc->pad_sgent;
3091 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3092 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003093 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003094 }
3095 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003096 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003097 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003098 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3099 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003100 /* restore sg */
3101 sg->length += qc->pad_len;
3102 if (pad_buf)
3103 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3104 pad_buf, qc->pad_len);
3105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
3107 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003108 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109}
3110
3111/**
3112 * ata_fill_sg - Fill PCI IDE PRD table
3113 * @qc: Metadata associated with taskfile to be transferred
3114 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003115 * Fill PCI IDE PRD (scatter-gather) table with segments
3116 * associated with the current disk command.
3117 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003119 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 *
3121 */
3122static void ata_fill_sg(struct ata_queued_cmd *qc)
3123{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003125 struct scatterlist *sg;
3126 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
Tejun Heoa46314742006-02-11 19:11:13 +09003128 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003129 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
3131 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003132 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 u32 addr, offset;
3134 u32 sg_len, len;
3135
3136 /* determine if physical DMA addr spans 64K boundary.
3137 * Note h/w doesn't support 64-bit, so we unconditionally
3138 * truncate dma_addr_t to u32.
3139 */
3140 addr = (u32) sg_dma_address(sg);
3141 sg_len = sg_dma_len(sg);
3142
3143 while (sg_len) {
3144 offset = addr & 0xffff;
3145 len = sg_len;
3146 if ((offset + sg_len) > 0x10000)
3147 len = 0x10000 - offset;
3148
3149 ap->prd[idx].addr = cpu_to_le32(addr);
3150 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3151 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3152
3153 idx++;
3154 sg_len -= len;
3155 addr += len;
3156 }
3157 }
3158
3159 if (idx)
3160 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3161}
3162/**
3163 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3164 * @qc: Metadata associated with taskfile to check
3165 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003166 * Allow low-level driver to filter ATA PACKET commands, returning
3167 * a status indicating whether or not it is OK to use DMA for the
3168 * supplied PACKET command.
3169 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003171 * spin_lock_irqsave(host_set lock)
3172 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 * RETURNS: 0 when ATAPI DMA can be used
3174 * nonzero otherwise
3175 */
3176int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3177{
3178 struct ata_port *ap = qc->ap;
3179 int rc = 0; /* Assume ATAPI DMA is OK by default */
3180
3181 if (ap->ops->check_atapi_dma)
3182 rc = ap->ops->check_atapi_dma(qc);
3183
3184 return rc;
3185}
3186/**
3187 * ata_qc_prep - Prepare taskfile for submission
3188 * @qc: Metadata associated with taskfile to be prepared
3189 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003190 * Prepare ATA taskfile for submission.
3191 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 * LOCKING:
3193 * spin_lock_irqsave(host_set lock)
3194 */
3195void ata_qc_prep(struct ata_queued_cmd *qc)
3196{
3197 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3198 return;
3199
3200 ata_fill_sg(qc);
3201}
3202
Brian Kinge46834c2006-03-17 17:04:03 -06003203void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3204
Jeff Garzik0cba6322005-05-30 19:49:12 -04003205/**
3206 * ata_sg_init_one - Associate command with memory buffer
3207 * @qc: Command to be associated
3208 * @buf: Memory buffer
3209 * @buflen: Length of memory buffer, in bytes.
3210 *
3211 * Initialize the data-related elements of queued_cmd @qc
3212 * to point to a single memory buffer, @buf of byte length @buflen.
3213 *
3214 * LOCKING:
3215 * spin_lock_irqsave(host_set lock)
3216 */
3217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3219{
3220 struct scatterlist *sg;
3221
3222 qc->flags |= ATA_QCFLAG_SINGLE;
3223
3224 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003225 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003227 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 qc->buf_virt = buf;
3229
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003230 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003231 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232}
3233
Jeff Garzik0cba6322005-05-30 19:49:12 -04003234/**
3235 * ata_sg_init - Associate command with scatter-gather table.
3236 * @qc: Command to be associated
3237 * @sg: Scatter-gather table.
3238 * @n_elem: Number of elements in s/g table.
3239 *
3240 * Initialize the data-related elements of queued_cmd @qc
3241 * to point to a scatter-gather table @sg, containing @n_elem
3242 * elements.
3243 *
3244 * LOCKING:
3245 * spin_lock_irqsave(host_set lock)
3246 */
3247
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3249 unsigned int n_elem)
3250{
3251 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003252 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003254 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255}
3256
3257/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003258 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3259 * @qc: Command with memory buffer to be mapped.
3260 *
3261 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 *
3263 * LOCKING:
3264 * spin_lock_irqsave(host_set lock)
3265 *
3266 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003267 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 */
3269
3270static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3271{
3272 struct ata_port *ap = qc->ap;
3273 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003274 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003276 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003278 /* we must lengthen transfers to end on a 32-bit boundary */
3279 qc->pad_len = sg->length & 3;
3280 if (qc->pad_len) {
3281 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3282 struct scatterlist *psg = &qc->pad_sgent;
3283
Tejun Heoa46314742006-02-11 19:11:13 +09003284 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003285
3286 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3287
3288 if (qc->tf.flags & ATA_TFLAG_WRITE)
3289 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3290 qc->pad_len);
3291
3292 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3293 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3294 /* trim sg */
3295 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003296 if (sg->length == 0)
3297 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003298
3299 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3300 sg->length, qc->pad_len);
3301 }
3302
Tejun Heo2e242fa2006-02-20 23:48:38 +09003303 if (trim_sg) {
3304 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003305 goto skip_map;
3306 }
3307
Brian King2f1f6102006-03-23 17:30:15 -06003308 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003309 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003310 if (dma_mapping_error(dma_address)) {
3311 /* restore sg */
3312 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
3316 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003317 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Tejun Heo2e242fa2006-02-20 23:48:38 +09003319skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3321 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3322
3323 return 0;
3324}
3325
3326/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003327 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3328 * @qc: Command with scatter-gather table to be mapped.
3329 *
3330 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 *
3332 * LOCKING:
3333 * spin_lock_irqsave(host_set lock)
3334 *
3335 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003336 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 *
3338 */
3339
3340static int ata_sg_setup(struct ata_queued_cmd *qc)
3341{
3342 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003343 struct scatterlist *sg = qc->__sg;
3344 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003345 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
3347 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa46314742006-02-11 19:11:13 +09003348 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003350 /* we must lengthen transfers to end on a 32-bit boundary */
3351 qc->pad_len = lsg->length & 3;
3352 if (qc->pad_len) {
3353 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3354 struct scatterlist *psg = &qc->pad_sgent;
3355 unsigned int offset;
3356
Tejun Heoa46314742006-02-11 19:11:13 +09003357 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003358
3359 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3360
3361 /*
3362 * psg->page/offset are used to copy to-be-written
3363 * data in this function or read data in ata_sg_clean.
3364 */
3365 offset = lsg->offset + lsg->length - qc->pad_len;
3366 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3367 psg->offset = offset_in_page(offset);
3368
3369 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3370 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3371 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003372 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003373 }
3374
3375 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3376 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3377 /* trim last sg */
3378 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003379 if (lsg->length == 0)
3380 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003381
3382 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3383 qc->n_elem - 1, lsg->length, qc->pad_len);
3384 }
3385
Jeff Garzike1410f22005-11-14 14:06:26 -05003386 pre_n_elem = qc->n_elem;
3387 if (trim_sg && pre_n_elem)
3388 pre_n_elem--;
3389
3390 if (!pre_n_elem) {
3391 n_elem = 0;
3392 goto skip_map;
3393 }
3394
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003396 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003397 if (n_elem < 1) {
3398 /* restore last sg */
3399 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
3403 DPRINTK("%d sg elements mapped\n", n_elem);
3404
Jeff Garzike1410f22005-11-14 14:06:26 -05003405skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 qc->n_elem = n_elem;
3407
3408 return 0;
3409}
3410
3411/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003412 * ata_poll_qc_complete - turn irq back on and finish qc
3413 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003414 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003415 *
3416 * LOCKING:
3417 * None. (grabs host lock)
3418 */
3419
Albert Leea22e2eb2005-12-05 15:38:02 +08003420void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003421{
3422 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003423 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003424
Jeff Garzikb8f61532005-08-25 22:01:20 -04003425 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003426 ap->flags &= ~ATA_FLAG_NOINTR;
3427 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003428 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003429 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003430}
3431
3432/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003433 * ata_pio_poll - poll using PIO, depending on current state
Tejun Heoc91af2c2006-04-02 18:51:53 +09003434 * @qc: qc in progress
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 *
3436 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003437 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 *
3439 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003440 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003442static unsigned long ata_pio_poll(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003444 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08003446 unsigned int poll_state = HSM_ST_UNKNOWN;
3447 unsigned int reg_state = HSM_ST_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448
Albert Lee14be71f2005-09-27 17:36:35 +08003449 switch (ap->hsm_task_state) {
3450 case HSM_ST:
3451 case HSM_ST_POLL:
3452 poll_state = HSM_ST_POLL;
3453 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 break;
Albert Lee14be71f2005-09-27 17:36:35 +08003455 case HSM_ST_LAST:
3456 case HSM_ST_LAST_POLL:
3457 poll_state = HSM_ST_LAST_POLL;
3458 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 break;
3460 default:
3461 BUG();
3462 break;
3463 }
3464
3465 status = ata_chk_status(ap);
3466 if (status & ATA_BUSY) {
3467 if (time_after(jiffies, ap->pio_task_timeout)) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003468 qc->err_mask |= AC_ERR_TIMEOUT;
Albert Lee7c398332005-11-09 13:03:30 +08003469 ap->hsm_task_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 return 0;
3471 }
Albert Lee14be71f2005-09-27 17:36:35 +08003472 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 return ATA_SHORT_PAUSE;
3474 }
3475
Albert Lee14be71f2005-09-27 17:36:35 +08003476 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 return 0;
3478}
3479
3480/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003481 * ata_pio_complete - check if drive is busy or idle
Tejun Heoc91af2c2006-04-02 18:51:53 +09003482 * @qc: qc to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 *
3484 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003485 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003486 *
3487 * RETURNS:
3488 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003490static int ata_pio_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003492 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 u8 drv_stat;
3494
3495 /*
Alan Cox31433ea2005-08-26 15:56:47 +01003496 * This is purely heuristic. This is a fast path. Sometimes when
3497 * we enter, BSY will be cleared in a chk-status or two. If not,
3498 * the drive is probably seeking or something. Snooze for a couple
3499 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003500 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 */
Albert Leefe79e682005-12-06 11:34:59 +08003502 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3503 if (drv_stat & ATA_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 msleep(2);
Albert Leefe79e682005-12-06 11:34:59 +08003505 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3506 if (drv_stat & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003507 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 }
3511 }
3512
3513 drv_stat = ata_wait_idle(ap);
3514 if (!ata_ok(drv_stat)) {
Albert Lee1c848982005-12-05 15:40:15 +08003515 qc->err_mask |= __ac_err_mask(drv_stat);
Albert Lee14be71f2005-09-27 17:36:35 +08003516 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003517 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 }
3519
Albert Lee14be71f2005-09-27 17:36:35 +08003520 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
Tejun Heoa46314742006-02-11 19:11:13 +09003522 WARN_ON(qc->err_mask);
Albert Leea22e2eb2005-12-05 15:38:02 +08003523 ata_poll_qc_complete(qc);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003524
3525 /* another command may start at this point */
3526
3527 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528}
3529
Edward Falk0baab862005-06-02 18:17:13 -04003530
3531/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003532 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003533 * @buf: Buffer to swap
3534 * @buf_words: Number of 16-bit words in buffer.
3535 *
3536 * Swap halves of 16-bit words if needed to convert from
3537 * little-endian byte order to native cpu byte order, or
3538 * vice-versa.
3539 *
3540 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003541 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003542 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543void swap_buf_le16(u16 *buf, unsigned int buf_words)
3544{
3545#ifdef __BIG_ENDIAN
3546 unsigned int i;
3547
3548 for (i = 0; i < buf_words; i++)
3549 buf[i] = le16_to_cpu(buf[i]);
3550#endif /* __BIG_ENDIAN */
3551}
3552
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003553/**
3554 * ata_mmio_data_xfer - Transfer data by MMIO
3555 * @ap: port to read/write
3556 * @buf: data buffer
3557 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003558 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003559 *
3560 * Transfer data from/to the device data register by MMIO.
3561 *
3562 * LOCKING:
3563 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003564 */
3565
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3567 unsigned int buflen, int write_data)
3568{
3569 unsigned int i;
3570 unsigned int words = buflen >> 1;
3571 u16 *buf16 = (u16 *) buf;
3572 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3573
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003574 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 if (write_data) {
3576 for (i = 0; i < words; i++)
3577 writew(le16_to_cpu(buf16[i]), mmio);
3578 } else {
3579 for (i = 0; i < words; i++)
3580 buf16[i] = cpu_to_le16(readw(mmio));
3581 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003582
3583 /* Transfer trailing 1 byte, if any. */
3584 if (unlikely(buflen & 0x01)) {
3585 u16 align_buf[1] = { 0 };
3586 unsigned char *trailing_buf = buf + buflen - 1;
3587
3588 if (write_data) {
3589 memcpy(align_buf, trailing_buf, 1);
3590 writew(le16_to_cpu(align_buf[0]), mmio);
3591 } else {
3592 align_buf[0] = cpu_to_le16(readw(mmio));
3593 memcpy(trailing_buf, align_buf, 1);
3594 }
3595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596}
3597
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003598/**
3599 * ata_pio_data_xfer - Transfer data by PIO
3600 * @ap: port to read/write
3601 * @buf: data buffer
3602 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003603 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003604 *
3605 * Transfer data from/to the device data register by PIO.
3606 *
3607 * LOCKING:
3608 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003609 */
3610
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3612 unsigned int buflen, int write_data)
3613{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003614 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003616 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003618 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003620 insw(ap->ioaddr.data_addr, buf, words);
3621
3622 /* Transfer trailing 1 byte, if any. */
3623 if (unlikely(buflen & 0x01)) {
3624 u16 align_buf[1] = { 0 };
3625 unsigned char *trailing_buf = buf + buflen - 1;
3626
3627 if (write_data) {
3628 memcpy(align_buf, trailing_buf, 1);
3629 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3630 } else {
3631 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3632 memcpy(trailing_buf, align_buf, 1);
3633 }
3634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635}
3636
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003637/**
3638 * ata_data_xfer - Transfer data from/to the data register.
3639 * @ap: port to read/write
3640 * @buf: data buffer
3641 * @buflen: buffer length
3642 * @do_write: read/write
3643 *
3644 * Transfer data from/to the device data register.
3645 *
3646 * LOCKING:
3647 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003648 */
3649
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3651 unsigned int buflen, int do_write)
3652{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003653 /* Make the crap hardware pay the costs not the good stuff */
3654 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3655 unsigned long flags;
3656 local_irq_save(flags);
3657 if (ap->flags & ATA_FLAG_MMIO)
3658 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3659 else
3660 ata_pio_data_xfer(ap, buf, buflen, do_write);
3661 local_irq_restore(flags);
3662 } else {
3663 if (ap->flags & ATA_FLAG_MMIO)
3664 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3665 else
3666 ata_pio_data_xfer(ap, buf, buflen, do_write);
3667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668}
3669
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003670/**
3671 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3672 * @qc: Command on going
3673 *
3674 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3675 *
3676 * LOCKING:
3677 * Inherited from caller.
3678 */
3679
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680static void ata_pio_sector(struct ata_queued_cmd *qc)
3681{
3682 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003683 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 struct ata_port *ap = qc->ap;
3685 struct page *page;
3686 unsigned int offset;
3687 unsigned char *buf;
3688
3689 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003690 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
3692 page = sg[qc->cursg].page;
3693 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3694
3695 /* get the current page and offset */
3696 page = nth_page(page, (offset >> PAGE_SHIFT));
3697 offset %= PAGE_SIZE;
3698
3699 buf = kmap(page) + offset;
3700
3701 qc->cursect++;
3702 qc->cursg_ofs++;
3703
Albert Lee32529e02005-05-26 03:49:42 -04003704 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 qc->cursg++;
3706 qc->cursg_ofs = 0;
3707 }
3708
3709 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3710
3711 /* do the actual data transfer */
3712 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3713 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3714
3715 kunmap(page);
3716}
3717
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003718/**
3719 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3720 * @qc: Command on going
3721 * @bytes: number of bytes
3722 *
3723 * Transfer Transfer data from/to the ATAPI device.
3724 *
3725 * LOCKING:
3726 * Inherited from caller.
3727 *
3728 */
3729
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3731{
3732 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003733 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 struct ata_port *ap = qc->ap;
3735 struct page *page;
3736 unsigned char *buf;
3737 unsigned int offset, count;
3738
Albert Lee563a6e12005-08-12 14:17:50 +08003739 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003740 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
3742next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003743 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003744 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003745 * The end of qc->sg is reached and the device expects
3746 * more data to transfer. In order not to overrun qc->sg
3747 * and fulfill length specified in the byte count register,
3748 * - for read case, discard trailing data from the device
3749 * - for write case, padding zero data to the device
3750 */
3751 u16 pad_buf[1] = { 0 };
3752 unsigned int words = bytes >> 1;
3753 unsigned int i;
3754
3755 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09003756 ata_dev_printk(qc->dev, KERN_WARNING,
3757 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08003758
3759 for (i = 0; i < words; i++)
3760 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3761
Albert Lee14be71f2005-09-27 17:36:35 +08003762 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003763 return;
3764 }
3765
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003766 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 page = sg->page;
3769 offset = sg->offset + qc->cursg_ofs;
3770
3771 /* get the current page and offset */
3772 page = nth_page(page, (offset >> PAGE_SHIFT));
3773 offset %= PAGE_SIZE;
3774
Albert Lee6952df02005-06-06 15:56:03 +08003775 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003776 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
3778 /* don't cross page boundaries */
3779 count = min(count, (unsigned int)PAGE_SIZE - offset);
3780
3781 buf = kmap(page) + offset;
3782
3783 bytes -= count;
3784 qc->curbytes += count;
3785 qc->cursg_ofs += count;
3786
Albert Lee32529e02005-05-26 03:49:42 -04003787 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 qc->cursg++;
3789 qc->cursg_ofs = 0;
3790 }
3791
3792 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3793
3794 /* do the actual data transfer */
3795 ata_data_xfer(ap, buf, count, do_write);
3796
3797 kunmap(page);
3798
Albert Lee563a6e12005-08-12 14:17:50 +08003799 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801}
3802
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003803/**
3804 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3805 * @qc: Command on going
3806 *
3807 * Transfer Transfer data from/to the ATAPI device.
3808 *
3809 * LOCKING:
3810 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003811 */
3812
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3814{
3815 struct ata_port *ap = qc->ap;
3816 struct ata_device *dev = qc->dev;
3817 unsigned int ireason, bc_lo, bc_hi, bytes;
3818 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3819
3820 ap->ops->tf_read(ap, &qc->tf);
3821 ireason = qc->tf.nsect;
3822 bc_lo = qc->tf.lbam;
3823 bc_hi = qc->tf.lbah;
3824 bytes = (bc_hi << 8) | bc_lo;
3825
3826 /* shall be cleared to zero, indicating xfer of data */
3827 if (ireason & (1 << 0))
3828 goto err_out;
3829
3830 /* make sure transfer direction matches expected */
3831 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3832 if (do_write != i_write)
3833 goto err_out;
3834
3835 __atapi_pio_bytes(qc, bytes);
3836
3837 return;
3838
3839err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003840 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09003841 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003842 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843}
3844
3845/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003846 * ata_pio_block - start PIO on a block
Tejun Heoc91af2c2006-04-02 18:51:53 +09003847 * @qc: qc to transfer block for
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 *
3849 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003850 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003852static void ata_pio_block(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003854 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 u8 status;
3856
3857 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003858 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 * Sometimes when we enter, BSY will be cleared in
3860 * a chk-status or two. If not, the drive is probably seeking
3861 * or something. Snooze for a couple msecs, then
3862 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003863 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 */
3865 status = ata_busy_wait(ap, ATA_BUSY, 5);
3866 if (status & ATA_BUSY) {
3867 msleep(2);
3868 status = ata_busy_wait(ap, ATA_BUSY, 10);
3869 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003870 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3872 return;
3873 }
3874 }
3875
Albert Leefe79e682005-12-06 11:34:59 +08003876 /* check error */
3877 if (status & (ATA_ERR | ATA_DF)) {
3878 qc->err_mask |= AC_ERR_DEV;
3879 ap->hsm_task_state = HSM_ST_ERR;
3880 return;
3881 }
3882
3883 /* transfer data if any */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 if (is_atapi_taskfile(&qc->tf)) {
Albert Leefe79e682005-12-06 11:34:59 +08003885 /* DRQ=0 means no more data to transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003887 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 return;
3889 }
3890
3891 atapi_pio_bytes(qc);
3892 } else {
3893 /* handle BSY=0, DRQ=0 as error */
3894 if ((status & ATA_DRQ) == 0) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003895 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003896 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 return;
3898 }
3899
3900 ata_pio_sector(qc);
3901 }
3902}
3903
Tejun Heoc91af2c2006-04-02 18:51:53 +09003904static void ata_pio_error(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003906 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Albert Lee0565c262006-02-13 18:55:25 +08003908 if (qc->tf.command != ATA_CMD_PACKET)
Tejun Heof15a1da2006-05-15 20:57:56 +09003909 ata_dev_printk(qc->dev, KERN_WARNING, "PIO error\n");
Albert Lee0565c262006-02-13 18:55:25 +08003910
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003911 /* make sure qc->err_mask is available to
Albert Lee1c848982005-12-05 15:40:15 +08003912 * know what's wrong and recover
3913 */
Tejun Heoa46314742006-02-11 19:11:13 +09003914 WARN_ON(qc->err_mask == 0);
Albert Lee1c848982005-12-05 15:40:15 +08003915
Albert Lee14be71f2005-09-27 17:36:35 +08003916 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Albert Leea22e2eb2005-12-05 15:38:02 +08003918 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919}
3920
3921static void ata_pio_task(void *_data)
3922{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003923 struct ata_queued_cmd *qc = _data;
3924 struct ata_port *ap = qc->ap;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003925 unsigned long timeout;
3926 int qc_completed;
3927
3928fsm_start:
3929 timeout = 0;
3930 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
Albert Lee14be71f2005-09-27 17:36:35 +08003932 switch (ap->hsm_task_state) {
3933 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 return;
3935
Albert Lee14be71f2005-09-27 17:36:35 +08003936 case HSM_ST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003937 ata_pio_block(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 break;
3939
Albert Lee14be71f2005-09-27 17:36:35 +08003940 case HSM_ST_LAST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003941 qc_completed = ata_pio_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 break;
3943
Albert Lee14be71f2005-09-27 17:36:35 +08003944 case HSM_ST_POLL:
3945 case HSM_ST_LAST_POLL:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003946 timeout = ata_pio_poll(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 break;
3948
Albert Lee14be71f2005-09-27 17:36:35 +08003949 case HSM_ST_TMOUT:
3950 case HSM_ST_ERR:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003951 ata_pio_error(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 return;
3953 }
3954
3955 if (timeout)
Tejun Heoc91af2c2006-04-02 18:51:53 +09003956 ata_port_queue_task(ap, ata_pio_task, qc, timeout);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003957 else if (!qc_completed)
3958 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959}
3960
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961/**
Tejun Heo8061f5f2006-03-05 15:29:09 +09003962 * atapi_packet_task - Write CDB bytes to hardware
Tejun Heoc91af2c2006-04-02 18:51:53 +09003963 * @_data: qc in progress
Tejun Heo8061f5f2006-03-05 15:29:09 +09003964 *
3965 * When device has indicated its readiness to accept
3966 * a CDB, this function is called. Send the CDB.
3967 * If DMA is to be performed, exit immediately.
3968 * Otherwise, we are in polling mode, so poll
3969 * status under operation succeeds or fails.
3970 *
3971 * LOCKING:
3972 * Kernel thread context (may sleep)
3973 */
Tejun Heo8061f5f2006-03-05 15:29:09 +09003974static void atapi_packet_task(void *_data)
3975{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003976 struct ata_queued_cmd *qc = _data;
3977 struct ata_port *ap = qc->ap;
Tejun Heo8061f5f2006-03-05 15:29:09 +09003978 u8 status;
3979
Tejun Heo8061f5f2006-03-05 15:29:09 +09003980 /* sleep-wait for BSY to clear */
3981 DPRINTK("busy wait\n");
3982 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
3983 qc->err_mask |= AC_ERR_TIMEOUT;
3984 goto err_out;
3985 }
3986
3987 /* make sure DRQ is set */
3988 status = ata_chk_status(ap);
3989 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
3990 qc->err_mask |= AC_ERR_HSM;
3991 goto err_out;
3992 }
3993
3994 /* send SCSI cdb */
3995 DPRINTK("send cdb\n");
3996 WARN_ON(qc->dev->cdb_len < 12);
3997
3998 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
3999 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
4000 unsigned long flags;
4001
4002 /* Once we're done issuing command and kicking bmdma,
4003 * irq handler takes over. To not lose irq, we need
4004 * to clear NOINTR flag before sending cdb, but
4005 * interrupt handler shouldn't be invoked before we're
4006 * finished. Hence, the following locking.
4007 */
4008 spin_lock_irqsave(&ap->host_set->lock, flags);
4009 ap->flags &= ~ATA_FLAG_NOINTR;
4010 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
4011 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
4012 ap->ops->bmdma_start(qc); /* initiate bmdma */
4013 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4014 } else {
4015 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
4016
4017 /* PIO commands are handled by polling */
4018 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004019 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Tejun Heo8061f5f2006-03-05 15:29:09 +09004020 }
4021
4022 return;
4023
4024err_out:
4025 ata_poll_qc_complete(qc);
4026}
4027
4028/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 * ata_qc_new - Request an available ATA command, for queueing
4030 * @ap: Port associated with device @dev
4031 * @dev: Device from whom we request an available command structure
4032 *
4033 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004034 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 */
4036
4037static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4038{
4039 struct ata_queued_cmd *qc = NULL;
4040 unsigned int i;
4041
Tejun Heo2ab7db12006-05-15 20:58:02 +09004042 /* the last tag is reserved for internal command. */
4043 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 if (!test_and_set_bit(i, &ap->qactive)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004045 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 break;
4047 }
4048
4049 if (qc)
4050 qc->tag = i;
4051
4052 return qc;
4053}
4054
4055/**
4056 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 * @dev: Device from whom we request an available command structure
4058 *
4059 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004060 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 */
4062
Tejun Heo3373efd2006-05-15 20:57:53 +09004063struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064{
Tejun Heo3373efd2006-05-15 20:57:53 +09004065 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 struct ata_queued_cmd *qc;
4067
4068 qc = ata_qc_new(ap);
4069 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 qc->scsicmd = NULL;
4071 qc->ap = ap;
4072 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004074 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 }
4076
4077 return qc;
4078}
4079
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080/**
4081 * ata_qc_free - free unused ata_queued_cmd
4082 * @qc: Command to complete
4083 *
4084 * Designed to free unused ata_queued_cmd object
4085 * in case something prevents using it.
4086 *
4087 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004088 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 */
4090void ata_qc_free(struct ata_queued_cmd *qc)
4091{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004092 struct ata_port *ap = qc->ap;
4093 unsigned int tag;
4094
Tejun Heoa46314742006-02-11 19:11:13 +09004095 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
Tejun Heo4ba946e2006-01-23 13:09:36 +09004097 qc->flags = 0;
4098 tag = qc->tag;
4099 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004100 qc->tag = ATA_TAG_POISON;
4101 clear_bit(tag, &ap->qactive);
4102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103}
4104
Tejun Heo76014422006-02-11 15:13:49 +09004105void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106{
Tejun Heoa46314742006-02-11 19:11:13 +09004107 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4108 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
4110 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4111 ata_sg_clean(qc);
4112
Tejun Heo7401abf2006-05-15 20:57:32 +09004113 /* command should be marked inactive atomically with qc completion */
4114 qc->ap->active_tag = ATA_TAG_POISON;
4115
Albert Lee3f3791d2005-08-16 14:25:38 +08004116 /* atapi: mark qc as inactive to prevent the interrupt handler
4117 * from completing the command twice later, before the error handler
4118 * is called. (when rc != 0 and atapi request sense is needed)
4119 */
4120 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4121
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004123 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124}
4125
Tejun Heof686bcb2006-05-15 20:58:05 +09004126/**
4127 * ata_qc_complete - Complete an active ATA command
4128 * @qc: Command to complete
4129 * @err_mask: ATA Status register contents
4130 *
4131 * Indicate to the mid and upper layers that an ATA
4132 * command has completed, with either an ok or not-ok status.
4133 *
4134 * LOCKING:
4135 * spin_lock_irqsave(host_set lock)
4136 */
4137void ata_qc_complete(struct ata_queued_cmd *qc)
4138{
4139 struct ata_port *ap = qc->ap;
4140
4141 /* XXX: New EH and old EH use different mechanisms to
4142 * synchronize EH with regular execution path.
4143 *
4144 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4145 * Normal execution path is responsible for not accessing a
4146 * failed qc. libata core enforces the rule by returning NULL
4147 * from ata_qc_from_tag() for failed qcs.
4148 *
4149 * Old EH depends on ata_qc_complete() nullifying completion
4150 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4151 * not synchronize with interrupt handler. Only PIO task is
4152 * taken care of.
4153 */
4154 if (ap->ops->error_handler) {
4155 WARN_ON(ap->flags & ATA_FLAG_FROZEN);
4156
4157 if (unlikely(qc->err_mask))
4158 qc->flags |= ATA_QCFLAG_FAILED;
4159
4160 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4161 if (!ata_tag_internal(qc->tag)) {
4162 /* always fill result TF for failed qc */
4163 ap->ops->tf_read(ap, &qc->result_tf);
4164 ata_qc_schedule_eh(qc);
4165 return;
4166 }
4167 }
4168
4169 /* read result TF if requested */
4170 if (qc->flags & ATA_QCFLAG_RESULT_TF)
4171 ap->ops->tf_read(ap, &qc->result_tf);
4172
4173 __ata_qc_complete(qc);
4174 } else {
4175 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4176 return;
4177
4178 /* read result TF if failed or requested */
4179 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
4180 ap->ops->tf_read(ap, &qc->result_tf);
4181
4182 __ata_qc_complete(qc);
4183 }
4184}
4185
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4187{
4188 struct ata_port *ap = qc->ap;
4189
4190 switch (qc->tf.protocol) {
4191 case ATA_PROT_DMA:
4192 case ATA_PROT_ATAPI_DMA:
4193 return 1;
4194
4195 case ATA_PROT_ATAPI:
4196 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 if (ap->flags & ATA_FLAG_PIO_DMA)
4198 return 1;
4199
4200 /* fall through */
4201
4202 default:
4203 return 0;
4204 }
4205
4206 /* never reached */
4207}
4208
4209/**
4210 * ata_qc_issue - issue taskfile to device
4211 * @qc: command to issue to device
4212 *
4213 * Prepare an ATA command to submission to device.
4214 * This includes mapping the data into a DMA-able
4215 * area, filling in the S/G table, and finally
4216 * writing the taskfile to hardware, starting the command.
4217 *
4218 * LOCKING:
4219 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004221void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222{
4223 struct ata_port *ap = qc->ap;
4224
Tejun Heoe4a70e72006-03-31 20:36:47 +09004225 qc->ap->active_tag = qc->tag;
4226 qc->flags |= ATA_QCFLAG_ACTIVE;
4227
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 if (ata_should_dma_map(qc)) {
4229 if (qc->flags & ATA_QCFLAG_SG) {
4230 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004231 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4233 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004234 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 }
4236 } else {
4237 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4238 }
4239
4240 ap->ops->qc_prep(qc);
4241
Tejun Heo8e0e6942006-03-31 20:41:11 +09004242 qc->err_mask |= ap->ops->qc_issue(qc);
4243 if (unlikely(qc->err_mask))
4244 goto err;
4245 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
Tejun Heo8e436af2006-01-23 13:09:36 +09004247sg_err:
4248 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004249 qc->err_mask |= AC_ERR_SYSTEM;
4250err:
4251 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252}
4253
4254/**
4255 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4256 * @qc: command to issue to device
4257 *
4258 * Using various libata functions and hooks, this function
4259 * starts an ATA command. ATA commands are grouped into
4260 * classes called "protocols", and issuing each type of protocol
4261 * is slightly different.
4262 *
Edward Falk0baab862005-06-02 18:17:13 -04004263 * May be used as the qc_issue() entry in ata_port_operations.
4264 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 * LOCKING:
4266 * spin_lock_irqsave(host_set lock)
4267 *
4268 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004269 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 */
4271
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004272unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273{
4274 struct ata_port *ap = qc->ap;
4275
4276 ata_dev_select(ap, qc->dev->devno, 1, 0);
4277
4278 switch (qc->tf.protocol) {
4279 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05004280 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 break;
4282
4283 case ATA_PROT_DMA:
4284 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4285 ap->ops->bmdma_setup(qc); /* set up bmdma */
4286 ap->ops->bmdma_start(qc); /* initiate bmdma */
4287 break;
4288
4289 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
4290 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004291 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08004292 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004293 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 break;
4295
4296 case ATA_PROT_ATAPI:
4297 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004298 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004299 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 break;
4301
4302 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09004303 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05004304 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004305 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 break;
4307
4308 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09004309 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4311 ap->ops->bmdma_setup(qc); /* set up bmdma */
Tejun Heoc91af2c2006-04-02 18:51:53 +09004312 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 break;
4314
4315 default:
4316 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004317 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 }
4319
4320 return 0;
4321}
4322
4323/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 * ata_host_intr - Handle host interrupt for given (port, task)
4325 * @ap: Port on which interrupt arrived (possibly...)
4326 * @qc: Taskfile currently active in engine
4327 *
4328 * Handle host interrupt for given queued command. Currently,
4329 * only DMA interrupts are handled. All other commands are
4330 * handled via polling with interrupts disabled (nIEN bit).
4331 *
4332 * LOCKING:
4333 * spin_lock_irqsave(host_set lock)
4334 *
4335 * RETURNS:
4336 * One if interrupt was handled, zero if not (shared irq).
4337 */
4338
4339inline unsigned int ata_host_intr (struct ata_port *ap,
4340 struct ata_queued_cmd *qc)
4341{
4342 u8 status, host_stat;
4343
4344 switch (qc->tf.protocol) {
4345
4346 case ATA_PROT_DMA:
4347 case ATA_PROT_ATAPI_DMA:
4348 case ATA_PROT_ATAPI:
4349 /* check status of DMA engine */
4350 host_stat = ap->ops->bmdma_status(ap);
4351 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4352
4353 /* if it's not our irq... */
4354 if (!(host_stat & ATA_DMA_INTR))
4355 goto idle_irq;
4356
4357 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004358 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359
4360 /* fall through */
4361
4362 case ATA_PROT_ATAPI_NODATA:
4363 case ATA_PROT_NODATA:
4364 /* check altstatus */
4365 status = ata_altstatus(ap);
4366 if (status & ATA_BUSY)
4367 goto idle_irq;
4368
4369 /* check main status, clearing INTRQ */
4370 status = ata_chk_status(ap);
4371 if (unlikely(status & ATA_BUSY))
4372 goto idle_irq;
4373 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4374 ap->id, qc->tf.protocol, status);
4375
4376 /* ack bmdma irq events */
4377 ap->ops->irq_clear(ap);
4378
4379 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004380 qc->err_mask |= ac_err_mask(status);
4381 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 break;
4383
4384 default:
4385 goto idle_irq;
4386 }
4387
4388 return 1; /* irq handled */
4389
4390idle_irq:
4391 ap->stats.idle_irq++;
4392
4393#ifdef ATA_IRQ_TRAP
4394 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09004396 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00004397 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 }
4399#endif
4400 return 0; /* irq not handled */
4401}
4402
4403/**
4404 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004405 * @irq: irq line (unused)
4406 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 * @regs: unused
4408 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004409 * Default interrupt handler for PCI IDE devices. Calls
4410 * ata_host_intr() for each port that is not disabled.
4411 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004413 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 *
4415 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004416 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 */
4418
4419irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4420{
4421 struct ata_host_set *host_set = dev_instance;
4422 unsigned int i;
4423 unsigned int handled = 0;
4424 unsigned long flags;
4425
4426 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4427 spin_lock_irqsave(&host_set->lock, flags);
4428
4429 for (i = 0; i < host_set->n_ports; i++) {
4430 struct ata_port *ap;
4431
4432 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004433 if (ap &&
Tejun Heo198e0fe2006-04-02 18:51:52 +09004434 !(ap->flags & (ATA_FLAG_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 struct ata_queued_cmd *qc;
4436
4437 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08004438 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4439 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 handled |= ata_host_intr(ap, qc);
4441 }
4442 }
4443
4444 spin_unlock_irqrestore(&host_set->lock, flags);
4445
4446 return IRQ_RETVAL(handled);
4447}
4448
Tejun Heo34bf2172006-05-15 20:57:46 +09004449/**
4450 * sata_scr_valid - test whether SCRs are accessible
4451 * @ap: ATA port to test SCR accessibility for
4452 *
4453 * Test whether SCRs are accessible for @ap.
4454 *
4455 * LOCKING:
4456 * None.
4457 *
4458 * RETURNS:
4459 * 1 if SCRs are accessible, 0 otherwise.
4460 */
4461int sata_scr_valid(struct ata_port *ap)
4462{
4463 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4464}
4465
4466/**
4467 * sata_scr_read - read SCR register of the specified port
4468 * @ap: ATA port to read SCR for
4469 * @reg: SCR to read
4470 * @val: Place to store read value
4471 *
4472 * Read SCR register @reg of @ap into *@val. This function is
4473 * guaranteed to succeed if the cable type of the port is SATA
4474 * and the port implements ->scr_read.
4475 *
4476 * LOCKING:
4477 * None.
4478 *
4479 * RETURNS:
4480 * 0 on success, negative errno on failure.
4481 */
4482int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4483{
4484 if (sata_scr_valid(ap)) {
4485 *val = ap->ops->scr_read(ap, reg);
4486 return 0;
4487 }
4488 return -EOPNOTSUPP;
4489}
4490
4491/**
4492 * sata_scr_write - write SCR register of the specified port
4493 * @ap: ATA port to write SCR for
4494 * @reg: SCR to write
4495 * @val: value to write
4496 *
4497 * Write @val to SCR register @reg of @ap. This function is
4498 * guaranteed to succeed if the cable type of the port is SATA
4499 * and the port implements ->scr_read.
4500 *
4501 * LOCKING:
4502 * None.
4503 *
4504 * RETURNS:
4505 * 0 on success, negative errno on failure.
4506 */
4507int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4508{
4509 if (sata_scr_valid(ap)) {
4510 ap->ops->scr_write(ap, reg, val);
4511 return 0;
4512 }
4513 return -EOPNOTSUPP;
4514}
4515
4516/**
4517 * sata_scr_write_flush - write SCR register of the specified port and flush
4518 * @ap: ATA port to write SCR for
4519 * @reg: SCR to write
4520 * @val: value to write
4521 *
4522 * This function is identical to sata_scr_write() except that this
4523 * function performs flush after writing to the register.
4524 *
4525 * LOCKING:
4526 * None.
4527 *
4528 * RETURNS:
4529 * 0 on success, negative errno on failure.
4530 */
4531int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4532{
4533 if (sata_scr_valid(ap)) {
4534 ap->ops->scr_write(ap, reg, val);
4535 ap->ops->scr_read(ap, reg);
4536 return 0;
4537 }
4538 return -EOPNOTSUPP;
4539}
4540
4541/**
4542 * ata_port_online - test whether the given port is online
4543 * @ap: ATA port to test
4544 *
4545 * Test whether @ap is online. Note that this function returns 0
4546 * if online status of @ap cannot be obtained, so
4547 * ata_port_online(ap) != !ata_port_offline(ap).
4548 *
4549 * LOCKING:
4550 * None.
4551 *
4552 * RETURNS:
4553 * 1 if the port online status is available and online.
4554 */
4555int ata_port_online(struct ata_port *ap)
4556{
4557 u32 sstatus;
4558
4559 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4560 return 1;
4561 return 0;
4562}
4563
4564/**
4565 * ata_port_offline - test whether the given port is offline
4566 * @ap: ATA port to test
4567 *
4568 * Test whether @ap is offline. Note that this function returns
4569 * 0 if offline status of @ap cannot be obtained, so
4570 * ata_port_online(ap) != !ata_port_offline(ap).
4571 *
4572 * LOCKING:
4573 * None.
4574 *
4575 * RETURNS:
4576 * 1 if the port offline status is available and offline.
4577 */
4578int ata_port_offline(struct ata_port *ap)
4579{
4580 u32 sstatus;
4581
4582 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4583 return 1;
4584 return 0;
4585}
Edward Falk0baab862005-06-02 18:17:13 -04004586
Jens Axboe9b847542006-01-06 09:28:07 +01004587/*
4588 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4589 * without filling any other registers
4590 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004591static int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Jens Axboe9b847542006-01-06 09:28:07 +01004592{
4593 struct ata_taskfile tf;
4594 int err;
4595
Tejun Heo3373efd2006-05-15 20:57:53 +09004596 ata_tf_init(dev, &tf);
Jens Axboe9b847542006-01-06 09:28:07 +01004597
4598 tf.command = cmd;
4599 tf.flags |= ATA_TFLAG_DEVICE;
4600 tf.protocol = ATA_PROT_NODATA;
4601
Tejun Heo3373efd2006-05-15 20:57:53 +09004602 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004603 if (err)
Tejun Heof15a1da2006-05-15 20:57:56 +09004604 ata_dev_printk(dev, KERN_ERR, "%s: ata command failed: %d\n",
4605 __FUNCTION__, err);
Jens Axboe9b847542006-01-06 09:28:07 +01004606
4607 return err;
4608}
4609
Tejun Heo3373efd2006-05-15 20:57:53 +09004610static int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004611{
4612 u8 cmd;
4613
4614 if (!ata_try_flush_cache(dev))
4615 return 0;
4616
4617 if (ata_id_has_flush_ext(dev->id))
4618 cmd = ATA_CMD_FLUSH_EXT;
4619 else
4620 cmd = ATA_CMD_FLUSH;
4621
Tejun Heo3373efd2006-05-15 20:57:53 +09004622 return ata_do_simple_cmd(dev, cmd);
Jens Axboe9b847542006-01-06 09:28:07 +01004623}
4624
Tejun Heo3373efd2006-05-15 20:57:53 +09004625static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004626{
Tejun Heo3373efd2006-05-15 20:57:53 +09004627 return ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
Jens Axboe9b847542006-01-06 09:28:07 +01004628}
4629
Tejun Heo3373efd2006-05-15 20:57:53 +09004630static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004631{
Tejun Heo3373efd2006-05-15 20:57:53 +09004632 return ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
Jens Axboe9b847542006-01-06 09:28:07 +01004633}
4634
4635/**
4636 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004637 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004638 *
4639 * Kick the drive back into action, by sending it an idle immediate
4640 * command and making sure its transfer mode matches between drive
4641 * and host.
4642 *
4643 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004644int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004645{
Tejun Heo3373efd2006-05-15 20:57:53 +09004646 struct ata_port *ap = dev->ap;
4647
Jens Axboe9b847542006-01-06 09:28:07 +01004648 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004649 struct ata_device *failed_dev;
Jens Axboe9b847542006-01-06 09:28:07 +01004650 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004651 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09004652 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004653 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004654 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004655 return 0;
4656 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09004657 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004658
4659 return 0;
4660}
4661
4662/**
4663 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004664 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004665 *
4666 * Flush the cache on the drive, if appropriate, then issue a
4667 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004668 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004669int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004670{
Tejun Heo3373efd2006-05-15 20:57:53 +09004671 struct ata_port *ap = dev->ap;
4672
Tejun Heoe1211e32006-04-01 01:38:18 +09004673 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004674 return 0;
4675 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09004676 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004677
Nigel Cunningham082776e2006-03-23 23:22:16 +10004678 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09004679 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004680 ap->flags |= ATA_FLAG_SUSPENDED;
4681 return 0;
4682}
4683
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004684/**
4685 * ata_port_start - Set port up for dma.
4686 * @ap: Port to initialize
4687 *
4688 * Called just after data structures for each port are
4689 * initialized. Allocates space for PRD table.
4690 *
4691 * May be used as the port_start() entry in ata_port_operations.
4692 *
4693 * LOCKING:
4694 * Inherited from caller.
4695 */
4696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697int ata_port_start (struct ata_port *ap)
4698{
Brian King2f1f6102006-03-23 17:30:15 -06004699 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004700 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701
4702 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4703 if (!ap->prd)
4704 return -ENOMEM;
4705
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004706 rc = ata_pad_alloc(ap, dev);
4707 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004708 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004709 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004710 }
4711
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4713
4714 return 0;
4715}
4716
Edward Falk0baab862005-06-02 18:17:13 -04004717
4718/**
4719 * ata_port_stop - Undo ata_port_start()
4720 * @ap: Port to shut down
4721 *
4722 * Frees the PRD table.
4723 *
4724 * May be used as the port_stop() entry in ata_port_operations.
4725 *
4726 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004727 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004728 */
4729
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730void ata_port_stop (struct ata_port *ap)
4731{
Brian King2f1f6102006-03-23 17:30:15 -06004732 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
4734 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004735 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736}
4737
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004738void ata_host_stop (struct ata_host_set *host_set)
4739{
4740 if (host_set->mmio_base)
4741 iounmap(host_set->mmio_base);
4742}
4743
4744
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745/**
4746 * ata_host_remove - Unregister SCSI host structure with upper layers
4747 * @ap: Port to unregister
4748 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4749 *
4750 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004751 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 */
4753
4754static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4755{
4756 struct Scsi_Host *sh = ap->host;
4757
4758 DPRINTK("ENTER\n");
4759
4760 if (do_unregister)
4761 scsi_remove_host(sh);
4762
4763 ap->ops->port_stop(ap);
4764}
4765
4766/**
4767 * ata_host_init - Initialize an ata_port structure
4768 * @ap: Structure to initialize
4769 * @host: associated SCSI mid-layer structure
4770 * @host_set: Collection of hosts to which @ap belongs
4771 * @ent: Probe information provided by low-level driver
4772 * @port_no: Port number associated with this ata_port
4773 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004774 * Initialize a new ata_port structure, and its associated
4775 * scsi_host.
4776 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004778 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 */
4780
4781static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4782 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004783 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784{
4785 unsigned int i;
4786
4787 host->max_id = 16;
4788 host->max_lun = 1;
4789 host->max_channel = 1;
4790 host->unique_id = ata_unique_id++;
4791 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004792
Tejun Heo198e0fe2006-04-02 18:51:52 +09004793 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 ap->id = host->unique_id;
4795 ap->host = host;
4796 ap->ctl = ATA_DEVCTL_OBS;
4797 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06004798 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 ap->port_no = port_no;
4800 ap->hard_port_no =
4801 ent->legacy_mode ? ent->hard_port_no : port_no;
4802 ap->pio_mask = ent->pio_mask;
4803 ap->mwdma_mask = ent->mwdma_mask;
4804 ap->udma_mask = ent->udma_mask;
4805 ap->flags |= ent->host_flags;
4806 ap->ops = ent->port_ops;
Tejun Heo1c3fae42006-04-02 20:53:28 +09004807 ap->sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 ap->active_tag = ATA_TAG_POISON;
4809 ap->last_ctl = 0xFF;
4810
Tejun Heo86e45b62006-03-05 15:29:09 +09004811 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004812 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813
Tejun Heo838df622006-05-15 20:57:44 +09004814 /* set cable type */
4815 ap->cbl = ATA_CBL_NONE;
4816 if (ap->flags & ATA_FLAG_SATA)
4817 ap->cbl = ATA_CBL_SATA;
4818
Tejun Heoacf356b2006-03-24 14:07:50 +09004819 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4820 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09004821 dev->ap = ap;
Tejun Heoacf356b2006-03-24 14:07:50 +09004822 dev->devno = i;
4823 dev->pio_mask = UINT_MAX;
4824 dev->mwdma_mask = UINT_MAX;
4825 dev->udma_mask = UINT_MAX;
4826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
4828#ifdef ATA_IRQ_TRAP
4829 ap->stats.unhandled_irq = 1;
4830 ap->stats.idle_irq = 1;
4831#endif
4832
4833 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4834}
4835
4836/**
4837 * ata_host_add - Attach low-level ATA driver to system
4838 * @ent: Information provided by low-level driver
4839 * @host_set: Collections of ports to which we add
4840 * @port_no: Port number associated with this host
4841 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004842 * Attach low-level ATA driver to system.
4843 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004845 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 *
4847 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004848 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 */
4850
Jeff Garzik057ace52005-10-22 14:27:05 -04004851static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 struct ata_host_set *host_set,
4853 unsigned int port_no)
4854{
4855 struct Scsi_Host *host;
4856 struct ata_port *ap;
4857 int rc;
4858
4859 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09004860
4861 if (!ent->port_ops->probe_reset &&
4862 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4863 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4864 port_no);
4865 return NULL;
4866 }
4867
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4869 if (!host)
4870 return NULL;
4871
Tejun Heo30afc842006-03-18 18:40:14 +09004872 host->transportt = &ata_scsi_transport_template;
4873
Jeff Garzik35bb94b2006-04-11 13:12:34 -04004874 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
4876 ata_host_init(ap, host, host_set, ent, port_no);
4877
4878 rc = ap->ops->port_start(ap);
4879 if (rc)
4880 goto err_out;
4881
4882 return ap;
4883
4884err_out:
4885 scsi_host_put(host);
4886 return NULL;
4887}
4888
4889/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004890 * ata_device_add - Register hardware device with ATA and SCSI layers
4891 * @ent: Probe information describing hardware device to be registered
4892 *
4893 * This function processes the information provided in the probe
4894 * information struct @ent, allocates the necessary ATA and SCSI
4895 * host information structures, initializes them, and registers
4896 * everything with requisite kernel subsystems.
4897 *
4898 * This function requests irqs, probes the ATA bus, and probes
4899 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 *
4901 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004902 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 *
4904 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004905 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 */
4907
Jeff Garzik057ace52005-10-22 14:27:05 -04004908int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909{
4910 unsigned int count = 0, i;
4911 struct device *dev = ent->dev;
4912 struct ata_host_set *host_set;
4913
4914 DPRINTK("ENTER\n");
4915 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004916 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4918 if (!host_set)
4919 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 spin_lock_init(&host_set->lock);
4921
4922 host_set->dev = dev;
4923 host_set->n_ports = ent->n_ports;
4924 host_set->irq = ent->irq;
4925 host_set->mmio_base = ent->mmio_base;
4926 host_set->private_data = ent->private_data;
4927 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01004928 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929
4930 /* register each port bound to this device */
4931 for (i = 0; i < ent->n_ports; i++) {
4932 struct ata_port *ap;
4933 unsigned long xfer_mode_mask;
4934
4935 ap = ata_host_add(ent, host_set, i);
4936 if (!ap)
4937 goto err_out;
4938
4939 host_set->ports[i] = ap;
4940 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4941 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4942 (ap->pio_mask << ATA_SHIFT_PIO);
4943
4944 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09004945 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
4946 "ctl 0x%lX bmdma 0x%lX irq %lu\n",
4947 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4948 ata_mode_string(xfer_mode_mask),
4949 ap->ioaddr.cmd_addr,
4950 ap->ioaddr.ctl_addr,
4951 ap->ioaddr.bmdma_addr,
4952 ent->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953
4954 ata_chk_status(ap);
4955 host_set->ops->irq_clear(ap);
4956 count++;
4957 }
4958
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004959 if (!count)
4960 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
4962 /* obtain irq, that is shared between channels */
4963 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4964 DRV_NAME, host_set))
4965 goto err_out;
4966
4967 /* perform each probe synchronously */
4968 DPRINTK("probe begin\n");
4969 for (i = 0; i < count; i++) {
4970 struct ata_port *ap;
4971 int rc;
4972
4973 ap = host_set->ports[i];
4974
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004975 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004977 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978
4979 if (rc) {
4980 /* FIXME: do something useful here?
4981 * Current libata behavior will
4982 * tear down everything when
4983 * the module is removed
4984 * or the h/w is unplugged.
4985 */
4986 }
4987
4988 rc = scsi_add_host(ap->host, dev);
4989 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09004990 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 /* FIXME: do something useful here */
4992 /* FIXME: handle unconditional calls to
4993 * scsi_scan_host and ata_host_remove, below,
4994 * at the very least
4995 */
4996 }
4997 }
4998
4999 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005000 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 for (i = 0; i < count; i++) {
5002 struct ata_port *ap = host_set->ports[i];
5003
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005004 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 }
5006
5007 dev_set_drvdata(dev, host_set);
5008
5009 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5010 return ent->n_ports; /* success */
5011
5012err_out:
5013 for (i = 0; i < count; i++) {
5014 ata_host_remove(host_set->ports[i], 1);
5015 scsi_host_put(host_set->ports[i]->host);
5016 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07005017err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 kfree(host_set);
5019 VPRINTK("EXIT, returning 0\n");
5020 return 0;
5021}
5022
5023/**
Alan Cox17b14452005-09-15 15:44:00 +01005024 * ata_host_set_remove - PCI layer callback for device removal
5025 * @host_set: ATA host set that was removed
5026 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005027 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01005028 * objects.
5029 *
5030 * LOCKING:
5031 * Inherited from calling layer (may sleep).
5032 */
5033
Alan Cox17b14452005-09-15 15:44:00 +01005034void ata_host_set_remove(struct ata_host_set *host_set)
5035{
5036 struct ata_port *ap;
5037 unsigned int i;
5038
5039 for (i = 0; i < host_set->n_ports; i++) {
5040 ap = host_set->ports[i];
5041 scsi_remove_host(ap->host);
5042 }
5043
5044 free_irq(host_set->irq, host_set);
5045
5046 for (i = 0; i < host_set->n_ports; i++) {
5047 ap = host_set->ports[i];
5048
5049 ata_scsi_release(ap->host);
5050
5051 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5052 struct ata_ioports *ioaddr = &ap->ioaddr;
5053
5054 if (ioaddr->cmd_addr == 0x1f0)
5055 release_region(0x1f0, 8);
5056 else if (ioaddr->cmd_addr == 0x170)
5057 release_region(0x170, 8);
5058 }
5059
5060 scsi_host_put(ap->host);
5061 }
5062
5063 if (host_set->ops->host_stop)
5064 host_set->ops->host_stop(host_set);
5065
5066 kfree(host_set);
5067}
5068
5069/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 * ata_scsi_release - SCSI layer callback hook for host unload
5071 * @host: libata host to be unloaded
5072 *
5073 * Performs all duties necessary to shut down a libata port...
5074 * Kill port kthread, disable port, and release resources.
5075 *
5076 * LOCKING:
5077 * Inherited from SCSI layer.
5078 *
5079 * RETURNS:
5080 * One.
5081 */
5082
5083int ata_scsi_release(struct Scsi_Host *host)
5084{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005085 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086
5087 DPRINTK("ENTER\n");
5088
5089 ap->ops->port_disable(ap);
5090 ata_host_remove(ap, 0);
5091
5092 DPRINTK("EXIT\n");
5093 return 1;
5094}
5095
5096/**
5097 * ata_std_ports - initialize ioaddr with standard port offsets.
5098 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005099 *
5100 * Utility function which initializes data_addr, error_addr,
5101 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5102 * device_addr, status_addr, and command_addr to standard offsets
5103 * relative to cmd_addr.
5104 *
5105 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 */
Edward Falk0baab862005-06-02 18:17:13 -04005107
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108void ata_std_ports(struct ata_ioports *ioaddr)
5109{
5110 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5111 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5112 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5113 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5114 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5115 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5116 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5117 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5118 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5119 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5120}
5121
Edward Falk0baab862005-06-02 18:17:13 -04005122
Jeff Garzik374b1872005-08-30 05:42:52 -04005123#ifdef CONFIG_PCI
5124
5125void ata_pci_host_stop (struct ata_host_set *host_set)
5126{
5127 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5128
5129 pci_iounmap(pdev, host_set->mmio_base);
5130}
5131
Edward Falk0baab862005-06-02 18:17:13 -04005132/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 * ata_pci_remove_one - PCI layer callback for device removal
5134 * @pdev: PCI device that was removed
5135 *
5136 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005137 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 * Handle this by unregistering all objects associated
5139 * with this PCI device. Free those objects. Then finally
5140 * release PCI resources and disable device.
5141 *
5142 * LOCKING:
5143 * Inherited from PCI layer (may sleep).
5144 */
5145
5146void ata_pci_remove_one (struct pci_dev *pdev)
5147{
5148 struct device *dev = pci_dev_to_dev(pdev);
5149 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150
Alan Cox17b14452005-09-15 15:44:00 +01005151 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 pci_release_regions(pdev);
5153 pci_disable_device(pdev);
5154 dev_set_drvdata(dev, NULL);
5155}
5156
5157/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005158int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159{
5160 unsigned long tmp = 0;
5161
5162 switch (bits->width) {
5163 case 1: {
5164 u8 tmp8 = 0;
5165 pci_read_config_byte(pdev, bits->reg, &tmp8);
5166 tmp = tmp8;
5167 break;
5168 }
5169 case 2: {
5170 u16 tmp16 = 0;
5171 pci_read_config_word(pdev, bits->reg, &tmp16);
5172 tmp = tmp16;
5173 break;
5174 }
5175 case 4: {
5176 u32 tmp32 = 0;
5177 pci_read_config_dword(pdev, bits->reg, &tmp32);
5178 tmp = tmp32;
5179 break;
5180 }
5181
5182 default:
5183 return -EINVAL;
5184 }
5185
5186 tmp &= bits->mask;
5187
5188 return (tmp == bits->val) ? 1 : 0;
5189}
Jens Axboe9b847542006-01-06 09:28:07 +01005190
5191int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5192{
5193 pci_save_state(pdev);
5194 pci_disable_device(pdev);
5195 pci_set_power_state(pdev, PCI_D3hot);
5196 return 0;
5197}
5198
5199int ata_pci_device_resume(struct pci_dev *pdev)
5200{
5201 pci_set_power_state(pdev, PCI_D0);
5202 pci_restore_state(pdev);
5203 pci_enable_device(pdev);
5204 pci_set_master(pdev);
5205 return 0;
5206}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207#endif /* CONFIG_PCI */
5208
5209
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210static int __init ata_init(void)
5211{
5212 ata_wq = create_workqueue("ata");
5213 if (!ata_wq)
5214 return -ENOMEM;
5215
5216 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5217 return 0;
5218}
5219
5220static void __exit ata_exit(void)
5221{
5222 destroy_workqueue(ata_wq);
5223}
5224
5225module_init(ata_init);
5226module_exit(ata_exit);
5227
Jeff Garzik67846b32005-10-05 02:58:32 -04005228static unsigned long ratelimit_time;
5229static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5230
5231int ata_ratelimit(void)
5232{
5233 int rc;
5234 unsigned long flags;
5235
5236 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5237
5238 if (time_after(jiffies, ratelimit_time)) {
5239 rc = 1;
5240 ratelimit_time = jiffies + (HZ/5);
5241 } else
5242 rc = 0;
5243
5244 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5245
5246 return rc;
5247}
5248
Tejun Heoc22daff2006-04-11 22:22:29 +09005249/**
5250 * ata_wait_register - wait until register value changes
5251 * @reg: IO-mapped register
5252 * @mask: Mask to apply to read register value
5253 * @val: Wait condition
5254 * @interval_msec: polling interval in milliseconds
5255 * @timeout_msec: timeout in milliseconds
5256 *
5257 * Waiting for some bits of register to change is a common
5258 * operation for ATA controllers. This function reads 32bit LE
5259 * IO-mapped register @reg and tests for the following condition.
5260 *
5261 * (*@reg & mask) != val
5262 *
5263 * If the condition is met, it returns; otherwise, the process is
5264 * repeated after @interval_msec until timeout.
5265 *
5266 * LOCKING:
5267 * Kernel thread context (may sleep)
5268 *
5269 * RETURNS:
5270 * The final register value.
5271 */
5272u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5273 unsigned long interval_msec,
5274 unsigned long timeout_msec)
5275{
5276 unsigned long timeout;
5277 u32 tmp;
5278
5279 tmp = ioread32(reg);
5280
5281 /* Calculate timeout _after_ the first read to make sure
5282 * preceding writes reach the controller before starting to
5283 * eat away the timeout.
5284 */
5285 timeout = jiffies + (timeout_msec * HZ) / 1000;
5286
5287 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5288 msleep(interval_msec);
5289 tmp = ioread32(reg);
5290 }
5291
5292 return tmp;
5293}
5294
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295/*
5296 * libata is essentially a library of internal helper functions for
5297 * low-level ATA host controller drivers. As such, the API/ABI is
5298 * likely to change as new drivers are added and updated.
5299 * Do not depend on ABI/API stability.
5300 */
5301
5302EXPORT_SYMBOL_GPL(ata_std_bios_param);
5303EXPORT_SYMBOL_GPL(ata_std_ports);
5304EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005305EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306EXPORT_SYMBOL_GPL(ata_sg_init);
5307EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heof686bcb2006-05-15 20:58:05 +09005308EXPORT_SYMBOL_GPL(ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310EXPORT_SYMBOL_GPL(ata_tf_load);
5311EXPORT_SYMBOL_GPL(ata_tf_read);
5312EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5313EXPORT_SYMBOL_GPL(ata_std_dev_select);
5314EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5315EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5316EXPORT_SYMBOL_GPL(ata_check_status);
5317EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318EXPORT_SYMBOL_GPL(ata_exec_command);
5319EXPORT_SYMBOL_GPL(ata_port_start);
5320EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005321EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322EXPORT_SYMBOL_GPL(ata_interrupt);
5323EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005324EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5326EXPORT_SYMBOL_GPL(ata_bmdma_start);
5327EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5328EXPORT_SYMBOL_GPL(ata_bmdma_status);
5329EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5330EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005331EXPORT_SYMBOL_GPL(sata_set_spd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332EXPORT_SYMBOL_GPL(sata_phy_reset);
5333EXPORT_SYMBOL_GPL(__sata_phy_reset);
5334EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005335EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005336EXPORT_SYMBOL_GPL(ata_std_softreset);
5337EXPORT_SYMBOL_GPL(sata_std_hardreset);
5338EXPORT_SYMBOL_GPL(ata_std_postreset);
5339EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005340EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005341EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005342EXPORT_SYMBOL_GPL(ata_dev_classify);
5343EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005345EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005346EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005347EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005348EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5350EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5352EXPORT_SYMBOL_GPL(ata_scsi_release);
5353EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005354EXPORT_SYMBOL_GPL(sata_scr_valid);
5355EXPORT_SYMBOL_GPL(sata_scr_read);
5356EXPORT_SYMBOL_GPL(sata_scr_write);
5357EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5358EXPORT_SYMBOL_GPL(ata_port_online);
5359EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005360EXPORT_SYMBOL_GPL(ata_id_string);
5361EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5363
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005364EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005365EXPORT_SYMBOL_GPL(ata_timing_compute);
5366EXPORT_SYMBOL_GPL(ata_timing_merge);
5367
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368#ifdef CONFIG_PCI
5369EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005370EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5372EXPORT_SYMBOL_GPL(ata_pci_init_one);
5373EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005374EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5375EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005376EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5377EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005379
5380EXPORT_SYMBOL_GPL(ata_device_suspend);
5381EXPORT_SYMBOL_GPL(ata_device_resume);
5382EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5383EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005384
Tejun Heoece1d632006-04-02 18:51:53 +09005385EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09005386EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
5387EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoece1d632006-04-02 18:51:53 +09005388EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5389EXPORT_SYMBOL_GPL(ata_eh_qc_retry);