blob: 4ced962db812c365796cdf9e3469f03d849fb8a8 [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 Heo0b8efb02006-03-24 15:25:31 +0900415 printk(KERN_WARNING "ata%u: dev %u disabled\n",
Tejun Heo3373efd2006-05-15 20:57:53 +0900416 dev->ap->id, dev->devno);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900417 dev->class++;
418 }
419}
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/**
422 * ata_pio_devchk - PATA device presence detection
423 * @ap: ATA channel to examine
424 * @device: Device to examine (starting at zero)
425 *
426 * This technique was originally described in
427 * Hale Landis's ATADRVR (www.ata-atapi.com), and
428 * later found its way into the ATA/ATAPI spec.
429 *
430 * Write a pattern to the ATA shadow registers,
431 * and if a device is present, it will respond by
432 * correctly storing and echoing back the
433 * ATA shadow register contents.
434 *
435 * LOCKING:
436 * caller.
437 */
438
439static unsigned int ata_pio_devchk(struct ata_port *ap,
440 unsigned int device)
441{
442 struct ata_ioports *ioaddr = &ap->ioaddr;
443 u8 nsect, lbal;
444
445 ap->ops->dev_select(ap, device);
446
447 outb(0x55, ioaddr->nsect_addr);
448 outb(0xaa, ioaddr->lbal_addr);
449
450 outb(0xaa, ioaddr->nsect_addr);
451 outb(0x55, ioaddr->lbal_addr);
452
453 outb(0x55, ioaddr->nsect_addr);
454 outb(0xaa, ioaddr->lbal_addr);
455
456 nsect = inb(ioaddr->nsect_addr);
457 lbal = inb(ioaddr->lbal_addr);
458
459 if ((nsect == 0x55) && (lbal == 0xaa))
460 return 1; /* we found a device */
461
462 return 0; /* nothing found */
463}
464
465/**
466 * ata_mmio_devchk - PATA device presence detection
467 * @ap: ATA channel to examine
468 * @device: Device to examine (starting at zero)
469 *
470 * This technique was originally described in
471 * Hale Landis's ATADRVR (www.ata-atapi.com), and
472 * later found its way into the ATA/ATAPI spec.
473 *
474 * Write a pattern to the ATA shadow registers,
475 * and if a device is present, it will respond by
476 * correctly storing and echoing back the
477 * ATA shadow register contents.
478 *
479 * LOCKING:
480 * caller.
481 */
482
483static unsigned int ata_mmio_devchk(struct ata_port *ap,
484 unsigned int device)
485{
486 struct ata_ioports *ioaddr = &ap->ioaddr;
487 u8 nsect, lbal;
488
489 ap->ops->dev_select(ap, device);
490
491 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
492 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
493
494 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
495 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
496
497 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
498 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
499
500 nsect = readb((void __iomem *) ioaddr->nsect_addr);
501 lbal = readb((void __iomem *) ioaddr->lbal_addr);
502
503 if ((nsect == 0x55) && (lbal == 0xaa))
504 return 1; /* we found a device */
505
506 return 0; /* nothing found */
507}
508
509/**
510 * ata_devchk - PATA device presence detection
511 * @ap: ATA channel to examine
512 * @device: Device to examine (starting at zero)
513 *
514 * Dispatch ATA device presence detection, depending
515 * on whether we are using PIO or MMIO to talk to the
516 * ATA shadow registers.
517 *
518 * LOCKING:
519 * caller.
520 */
521
522static unsigned int ata_devchk(struct ata_port *ap,
523 unsigned int device)
524{
525 if (ap->flags & ATA_FLAG_MMIO)
526 return ata_mmio_devchk(ap, device);
527 return ata_pio_devchk(ap, device);
528}
529
530/**
531 * ata_dev_classify - determine device type based on ATA-spec signature
532 * @tf: ATA taskfile register set for device to be identified
533 *
534 * Determine from taskfile register contents whether a device is
535 * ATA or ATAPI, as per "Signature and persistence" section
536 * of ATA/PI spec (volume 1, sect 5.14).
537 *
538 * LOCKING:
539 * None.
540 *
541 * RETURNS:
542 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
543 * the event of failure.
544 */
545
Jeff Garzik057ace52005-10-22 14:27:05 -0400546unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 /* Apple's open source Darwin code hints that some devices only
549 * put a proper signature into the LBA mid/high registers,
550 * So, we only check those. It's sufficient for uniqueness.
551 */
552
553 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
554 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
555 DPRINTK("found ATA device by sig\n");
556 return ATA_DEV_ATA;
557 }
558
559 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
560 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
561 DPRINTK("found ATAPI device by sig\n");
562 return ATA_DEV_ATAPI;
563 }
564
565 DPRINTK("unknown device\n");
566 return ATA_DEV_UNKNOWN;
567}
568
569/**
570 * ata_dev_try_classify - Parse returned ATA device signature
571 * @ap: ATA channel to examine
572 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900573 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 *
575 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
576 * an ATA/ATAPI-defined set of values is placed in the ATA
577 * shadow registers, indicating the results of device detection
578 * and diagnostics.
579 *
580 * Select the ATA device, and read the values from the ATA shadow
581 * registers. Then parse according to the Error register value,
582 * and the spec-defined values examined by ata_dev_classify().
583 *
584 * LOCKING:
585 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900586 *
587 * RETURNS:
588 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
590
Tejun Heob4dc7622006-01-24 17:05:22 +0900591static unsigned int
592ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 struct ata_taskfile tf;
595 unsigned int class;
596 u8 err;
597
598 ap->ops->dev_select(ap, device);
599
600 memset(&tf, 0, sizeof(tf));
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400603 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900604 if (r_err)
605 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 /* see if device passed diags */
608 if (err == 1)
609 /* do nothing */ ;
610 else if ((device == 0) && (err == 0x81))
611 /* do nothing */ ;
612 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900613 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Tejun Heob4dc7622006-01-24 17:05:22 +0900615 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900619 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900621 return ATA_DEV_NONE;
622 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900626 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 * @id: IDENTIFY DEVICE results we will examine
628 * @s: string into which data is output
629 * @ofs: offset into identify device page
630 * @len: length of string to return. must be an even number.
631 *
632 * The strings in the IDENTIFY DEVICE page are broken up into
633 * 16-bit chunks. Run through the string, and output each
634 * 8-bit chunk linearly, regardless of platform.
635 *
636 * LOCKING:
637 * caller.
638 */
639
Tejun Heo6a62a042006-02-13 10:02:46 +0900640void ata_id_string(const u16 *id, unsigned char *s,
641 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 unsigned int c;
644
645 while (len > 0) {
646 c = id[ofs] >> 8;
647 *s = c;
648 s++;
649
650 c = id[ofs] & 0xff;
651 *s = c;
652 s++;
653
654 ofs++;
655 len -= 2;
656 }
657}
658
Tejun Heo0e949ff2006-02-12 22:47:04 +0900659/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900660 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900661 * @id: IDENTIFY DEVICE results we will examine
662 * @s: string into which data is output
663 * @ofs: offset into identify device page
664 * @len: length of string to return. must be an odd number.
665 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900666 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900667 * trims trailing spaces and terminates the resulting string with
668 * null. @len must be actual maximum length (even number) + 1.
669 *
670 * LOCKING:
671 * caller.
672 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900673void ata_id_c_string(const u16 *id, unsigned char *s,
674 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900675{
676 unsigned char *p;
677
678 WARN_ON(!(len & 1));
679
Tejun Heo6a62a042006-02-13 10:02:46 +0900680 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900681
682 p = s + strnlen(s, len - 1);
683 while (p > s && p[-1] == ' ')
684 p--;
685 *p = '\0';
686}
Edward Falk0baab862005-06-02 18:17:13 -0400687
Tejun Heo29407402006-02-12 22:47:04 +0900688static u64 ata_id_n_sectors(const u16 *id)
689{
690 if (ata_id_has_lba(id)) {
691 if (ata_id_has_lba48(id))
692 return ata_id_u64(id, 100);
693 else
694 return ata_id_u32(id, 60);
695 } else {
696 if (ata_id_current_chs_valid(id))
697 return ata_id_u32(id, 57);
698 else
699 return id[1] * id[3] * id[6];
700 }
701}
702
Edward Falk0baab862005-06-02 18:17:13 -0400703/**
704 * ata_noop_dev_select - Select device 0/1 on ATA bus
705 * @ap: ATA channel to manipulate
706 * @device: ATA device (numbered from zero) to select
707 *
708 * This function performs no actual function.
709 *
710 * May be used as the dev_select() entry in ata_port_operations.
711 *
712 * LOCKING:
713 * caller.
714 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
716{
717}
718
Edward Falk0baab862005-06-02 18:17:13 -0400719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720/**
721 * ata_std_dev_select - Select device 0/1 on ATA bus
722 * @ap: ATA channel to manipulate
723 * @device: ATA device (numbered from zero) to select
724 *
725 * Use the method defined in the ATA specification to
726 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400727 * ATA channel. Works with both PIO and MMIO.
728 *
729 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 *
731 * LOCKING:
732 * caller.
733 */
734
735void ata_std_dev_select (struct ata_port *ap, unsigned int device)
736{
737 u8 tmp;
738
739 if (device == 0)
740 tmp = ATA_DEVICE_OBS;
741 else
742 tmp = ATA_DEVICE_OBS | ATA_DEV1;
743
744 if (ap->flags & ATA_FLAG_MMIO) {
745 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
746 } else {
747 outb(tmp, ap->ioaddr.device_addr);
748 }
749 ata_pause(ap); /* needed; also flushes, for mmio */
750}
751
752/**
753 * ata_dev_select - Select device 0/1 on ATA bus
754 * @ap: ATA channel to manipulate
755 * @device: ATA device (numbered from zero) to select
756 * @wait: non-zero to wait for Status register BSY bit to clear
757 * @can_sleep: non-zero if context allows sleeping
758 *
759 * Use the method defined in the ATA specification to
760 * make either device 0, or device 1, active on the
761 * ATA channel.
762 *
763 * This is a high-level version of ata_std_dev_select(),
764 * which additionally provides the services of inserting
765 * the proper pauses and status polling, where needed.
766 *
767 * LOCKING:
768 * caller.
769 */
770
771void ata_dev_select(struct ata_port *ap, unsigned int device,
772 unsigned int wait, unsigned int can_sleep)
773{
774 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
775 ap->id, device, wait);
776
777 if (wait)
778 ata_wait_idle(ap);
779
780 ap->ops->dev_select(ap, device);
781
782 if (wait) {
783 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
784 msleep(150);
785 ata_wait_idle(ap);
786 }
787}
788
789/**
790 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900791 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900793 * Dump selected 16-bit words from the given IDENTIFY DEVICE
794 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 *
796 * LOCKING:
797 * caller.
798 */
799
Tejun Heo0bd33002006-02-12 22:47:05 +0900800static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 DPRINTK("49==0x%04x "
803 "53==0x%04x "
804 "63==0x%04x "
805 "64==0x%04x "
806 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900807 id[49],
808 id[53],
809 id[63],
810 id[64],
811 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 DPRINTK("80==0x%04x "
813 "81==0x%04x "
814 "82==0x%04x "
815 "83==0x%04x "
816 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900817 id[80],
818 id[81],
819 id[82],
820 id[83],
821 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 DPRINTK("88==0x%04x "
823 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900824 id[88],
825 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Tejun Heocb95d562006-03-06 04:31:56 +0900828/**
829 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
830 * @id: IDENTIFY data to compute xfer mask from
831 *
832 * Compute the xfermask for this device. This is not as trivial
833 * as it seems if we must consider early devices correctly.
834 *
835 * FIXME: pre IDE drive timing (do we care ?).
836 *
837 * LOCKING:
838 * None.
839 *
840 * RETURNS:
841 * Computed xfermask
842 */
843static unsigned int ata_id_xfermask(const u16 *id)
844{
845 unsigned int pio_mask, mwdma_mask, udma_mask;
846
847 /* Usual case. Word 53 indicates word 64 is valid */
848 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
849 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
850 pio_mask <<= 3;
851 pio_mask |= 0x7;
852 } else {
853 /* If word 64 isn't valid then Word 51 high byte holds
854 * the PIO timing number for the maximum. Turn it into
855 * a mask.
856 */
857 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
858
859 /* But wait.. there's more. Design your standards by
860 * committee and you too can get a free iordy field to
861 * process. However its the speeds not the modes that
862 * are supported... Note drivers using the timing API
863 * will get this right anyway
864 */
865 }
866
867 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900868
869 udma_mask = 0;
870 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
871 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900872
873 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
874}
875
Tejun Heo86e45b62006-03-05 15:29:09 +0900876/**
877 * ata_port_queue_task - Queue port_task
878 * @ap: The ata_port to queue port_task for
879 *
880 * Schedule @fn(@data) for execution after @delay jiffies using
881 * port_task. There is one port_task per port and it's the
882 * user(low level driver)'s responsibility to make sure that only
883 * one task is active at any given time.
884 *
885 * libata core layer takes care of synchronization between
886 * port_task and EH. ata_port_queue_task() may be ignored for EH
887 * synchronization.
888 *
889 * LOCKING:
890 * Inherited from caller.
891 */
892void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
893 unsigned long delay)
894{
895 int rc;
896
Tejun Heo2e755f62006-03-05 15:29:09 +0900897 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900898 return;
899
900 PREPARE_WORK(&ap->port_task, fn, data);
901
902 if (!delay)
903 rc = queue_work(ata_wq, &ap->port_task);
904 else
905 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
906
907 /* rc == 0 means that another user is using port task */
908 WARN_ON(rc == 0);
909}
910
911/**
912 * ata_port_flush_task - Flush port_task
913 * @ap: The ata_port to flush port_task for
914 *
915 * After this function completes, port_task is guranteed not to
916 * be running or scheduled.
917 *
918 * LOCKING:
919 * Kernel thread context (may sleep)
920 */
921void ata_port_flush_task(struct ata_port *ap)
922{
923 unsigned long flags;
924
925 DPRINTK("ENTER\n");
926
927 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900928 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900929 spin_unlock_irqrestore(&ap->host_set->lock, flags);
930
931 DPRINTK("flush #1\n");
932 flush_workqueue(ata_wq);
933
934 /*
935 * At this point, if a task is running, it's guaranteed to see
936 * the FLUSH flag; thus, it will never queue pio tasks again.
937 * Cancel and flush.
938 */
939 if (!cancel_delayed_work(&ap->port_task)) {
940 DPRINTK("flush #2\n");
941 flush_workqueue(ata_wq);
942 }
943
944 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900945 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900946 spin_unlock_irqrestore(&ap->host_set->lock, flags);
947
948 DPRINTK("EXIT\n");
949}
950
Tejun Heo77853bf2006-01-23 13:09:36 +0900951void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900952{
Tejun Heo77853bf2006-01-23 13:09:36 +0900953 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900954
Tejun Heoa2a7a662005-12-13 14:48:31 +0900955 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900956}
957
958/**
959 * ata_exec_internal - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900960 * @dev: Device to which the command is sent
961 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +0900962 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900963 * @dma_dir: Data tranfer direction of the command
964 * @buf: Data buffer of the command
965 * @buflen: Length of data buffer
966 *
967 * Executes libata internal command with timeout. @tf contains
968 * command on entry and result on return. Timeout and error
969 * conditions are reported via return value. No recovery action
970 * is taken after a command times out. It's caller's duty to
971 * clean up after timeout.
972 *
973 * LOCKING:
974 * None. Should be called with kernel context, might sleep.
975 */
976
Tejun Heo3373efd2006-05-15 20:57:53 +0900977unsigned ata_exec_internal(struct ata_device *dev,
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900978 struct ata_taskfile *tf, const u8 *cdb,
979 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900980{
Tejun Heo3373efd2006-05-15 20:57:53 +0900981 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900982 u8 command = tf->command;
983 struct ata_queued_cmd *qc;
984 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 Heo3373efd2006-05-15 20:57:53 +0900990 qc = ata_qc_new_init(dev);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900991 BUG_ON(qc == NULL);
992
993 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +0900994 if (cdb)
995 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +0900996 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900997 qc->dma_dir = dma_dir;
998 if (dma_dir != DMA_NONE) {
999 ata_sg_init_one(qc, buf, buflen);
1000 qc->nsect = buflen / ATA_SECT_SIZE;
1001 }
1002
Tejun Heo77853bf2006-01-23 13:09:36 +09001003 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001004 qc->complete_fn = ata_qc_complete_internal;
1005
Tejun Heo8e0e6942006-03-31 20:41:11 +09001006 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001007
1008 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1009
1010 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
Albert Lee41ade502006-03-14 11:19:04 +08001011 ata_port_flush_task(ap);
1012
Tejun Heoa2a7a662005-12-13 14:48:31 +09001013 spin_lock_irqsave(&ap->host_set->lock, flags);
1014
1015 /* We're racing with irq here. If we lose, the
1016 * following test prevents us from completing the qc
1017 * again. If completion irq occurs after here but
1018 * before the caller cleans up, it will result in a
1019 * spurious interrupt. We can live with that.
1020 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001021 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heo11a56d22006-01-23 13:09:36 +09001022 qc->err_mask = AC_ERR_TIMEOUT;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001023 ata_qc_complete(qc);
1024 printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1025 ap->id, command);
1026 }
1027
1028 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1029 }
1030
Tejun Heo15869302006-05-15 20:57:33 +09001031 /* finish up */
1032 spin_lock_irqsave(&ap->host_set->lock, flags);
1033
Tejun Heoe61e0672006-05-15 20:57:40 +09001034 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001035 err_mask = qc->err_mask;
1036
1037 ata_qc_free(qc);
1038
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001039 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1040 * Until those drivers are fixed, we detect the condition
1041 * here, fail the command with AC_ERR_SYSTEM and reenable the
1042 * port.
1043 *
1044 * Note that this doesn't change any behavior as internal
1045 * command failure results in disabling the device in the
1046 * higher layer for LLDDs without new reset/EH callbacks.
1047 *
1048 * Kill the following code as soon as those drivers are fixed.
1049 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001050 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001051 err_mask |= AC_ERR_SYSTEM;
1052 ata_port_probe(ap);
1053 }
1054
Tejun Heo15869302006-05-15 20:57:33 +09001055 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1056
Tejun Heo77853bf2006-01-23 13:09:36 +09001057 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001058}
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001061 * ata_pio_need_iordy - check if iordy needed
1062 * @adev: ATA device
1063 *
1064 * Check if the current speed of the device requires IORDY. Used
1065 * by various controllers for chip configuration.
1066 */
1067
1068unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1069{
1070 int pio;
1071 int speed = adev->pio_mode - XFER_PIO_0;
1072
1073 if (speed < 2)
1074 return 0;
1075 if (speed > 2)
1076 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001077
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001078 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1079
1080 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1081 pio = adev->id[ATA_ID_EIDE_PIO];
1082 /* Is the speed faster than the drive allows non IORDY ? */
1083 if (pio) {
1084 /* This is cycle times not frequency - watch the logic! */
1085 if (pio > 240) /* PIO2 is 240nS per cycle */
1086 return 1;
1087 return 0;
1088 }
1089 }
1090 return 0;
1091}
1092
1093/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001094 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001095 * @dev: target device
1096 * @p_class: pointer to class of the target device (may be changed)
1097 * @post_reset: is this read ID post-reset?
Tejun Heofe635c72006-05-15 20:57:35 +09001098 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001099 *
1100 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1101 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001102 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1103 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001104 *
1105 * LOCKING:
1106 * Kernel thread context (may sleep)
1107 *
1108 * RETURNS:
1109 * 0 on success, -errno otherwise.
1110 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001111static int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
1112 int post_reset, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001113{
Tejun Heo3373efd2006-05-15 20:57:53 +09001114 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001115 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001116 struct ata_taskfile tf;
1117 unsigned int err_mask = 0;
1118 const char *reason;
1119 int rc;
1120
1121 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1122
Tejun Heo49016ac2006-02-21 02:12:11 +09001123 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1124
1125 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001126 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001127
1128 switch (class) {
1129 case ATA_DEV_ATA:
1130 tf.command = ATA_CMD_ID_ATA;
1131 break;
1132 case ATA_DEV_ATAPI:
1133 tf.command = ATA_CMD_ID_ATAPI;
1134 break;
1135 default:
1136 rc = -ENODEV;
1137 reason = "unsupported class";
1138 goto err_out;
1139 }
1140
1141 tf.protocol = ATA_PROT_PIO;
1142
Tejun Heo3373efd2006-05-15 20:57:53 +09001143 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001144 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001145 if (err_mask) {
1146 rc = -EIO;
1147 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001148 goto err_out;
1149 }
1150
1151 swap_buf_le16(id, ATA_ID_WORDS);
1152
Tejun Heo49016ac2006-02-21 02:12:11 +09001153 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001154 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001155 rc = -EINVAL;
1156 reason = "device reports illegal type";
1157 goto err_out;
1158 }
1159
1160 if (post_reset && class == ATA_DEV_ATA) {
1161 /*
1162 * The exact sequence expected by certain pre-ATA4 drives is:
1163 * SRST RESET
1164 * IDENTIFY
1165 * INITIALIZE DEVICE PARAMETERS
1166 * anything else..
1167 * Some drives were very specific about that exact sequence.
1168 */
1169 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001170 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001171 if (err_mask) {
1172 rc = -EIO;
1173 reason = "INIT_DEV_PARAMS failed";
1174 goto err_out;
1175 }
1176
1177 /* current CHS translation info (id[53-58]) might be
1178 * changed. reread the identify device info.
1179 */
1180 post_reset = 0;
1181 goto retry;
1182 }
1183 }
1184
1185 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001186
Tejun Heo49016ac2006-02-21 02:12:11 +09001187 return 0;
1188
1189 err_out:
1190 printk(KERN_WARNING "ata%u: dev %u failed to IDENTIFY (%s)\n",
1191 ap->id, dev->devno, reason);
Tejun Heo49016ac2006-02-21 02:12:11 +09001192 return rc;
1193}
1194
Tejun Heo3373efd2006-05-15 20:57:53 +09001195static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001196{
Tejun Heo3373efd2006-05-15 20:57:53 +09001197 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001198}
1199
Tejun Heo49016ac2006-02-21 02:12:11 +09001200/**
Tejun Heoffeae412006-03-01 16:09:35 +09001201 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001202 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001203 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 *
Tejun Heoffeae412006-03-01 16:09:35 +09001205 * Configure @dev according to @dev->id. Generic and low-level
1206 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 *
1208 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001209 * Kernel thread context (may sleep)
1210 *
1211 * RETURNS:
1212 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001214static int ata_dev_configure(struct ata_device *dev, int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Tejun Heo3373efd2006-05-15 20:57:53 +09001216 struct ata_port *ap = dev->ap;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001217 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001218 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001219 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Tejun Heoe1211e32006-04-01 01:38:18 +09001221 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001223 ap->id, dev->devno);
1224 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
1226
Tejun Heoffeae412006-03-01 16:09:35 +09001227 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001229 /* print device capabilities */
1230 if (print_info)
1231 printk(KERN_DEBUG "ata%u: dev %u cfg 49:%04x 82:%04x 83:%04x "
1232 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1233 ap->id, dev->devno, id[49], id[82], id[83],
1234 id[84], id[85], id[86], id[87], id[88]);
1235
Tejun Heo208a9932006-03-05 17:55:58 +09001236 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001237 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001238 dev->max_sectors = 0;
1239 dev->cdb_len = 0;
1240 dev->n_sectors = 0;
1241 dev->cylinders = 0;
1242 dev->heads = 0;
1243 dev->sectors = 0;
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /*
1246 * common ATA, ATAPI feature tests
1247 */
1248
Tejun Heoff8854b2006-03-06 04:31:56 +09001249 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001250 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Tejun Heo1148c3a2006-03-13 19:48:04 +09001252 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 /* ATA-specific feature tests */
1255 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001256 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001257
Tejun Heo1148c3a2006-03-13 19:48:04 +09001258 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001259 const char *lba_desc;
Albert Lee8bf62ece2005-05-12 15:29:42 -04001260
Tejun Heo4c2d7212006-03-05 17:55:58 +09001261 lba_desc = "LBA";
1262 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001263 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001264 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001265 lba_desc = "LBA48";
1266 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001267
1268 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001269 if (print_info)
1270 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1271 "max %s, %Lu sectors: %s\n",
1272 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001273 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001274 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001275 (unsigned long long)dev->n_sectors,
1276 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001277 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001278 /* CHS */
1279
1280 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001281 dev->cylinders = id[1];
1282 dev->heads = id[3];
1283 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001284
Tejun Heo1148c3a2006-03-13 19:48:04 +09001285 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001286 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001287 dev->cylinders = id[54];
1288 dev->heads = id[55];
1289 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001290 }
1291
1292 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001293 if (print_info)
1294 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1295 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1296 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001297 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001298 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001299 (unsigned long long)dev->n_sectors,
1300 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302
Tejun Heo6e7846e2006-02-12 23:32:58 +09001303 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305
1306 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001307 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001308 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1310 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
Tejun Heoffeae412006-03-01 16:09:35 +09001311 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 goto err_out_nosup;
1313 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001314 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001317 if (print_info)
1318 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
Tejun Heoff8854b2006-03-06 04:31:56 +09001319 ap->id, dev->devno, ata_mode_string(xfer_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321
Tejun Heo6e7846e2006-02-12 23:32:58 +09001322 ap->host->max_cmd_len = 0;
1323 for (i = 0; i < ATA_MAX_DEVICES; i++)
1324 ap->host->max_cmd_len = max_t(unsigned int,
1325 ap->host->max_cmd_len,
1326 ap->device[i].cdb_len);
1327
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001328 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001329 if (ata_dev_knobble(dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001330 if (print_info)
1331 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1332 ap->id, dev->devno);
Tejun Heo5a529132006-03-24 14:07:50 +09001333 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001334 dev->max_sectors = ATA_MAX_SECTORS;
1335 }
1336
1337 if (ap->ops->dev_config)
1338 ap->ops->dev_config(ap, dev);
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001341 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001345 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
1348/**
1349 * ata_bus_probe - Reset and probe ATA bus
1350 * @ap: Bus to probe
1351 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001352 * Master ATA bus probing function. Initiates a hardware-dependent
1353 * bus reset, then attempts to identify any devices found on
1354 * the bus.
1355 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001357 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 *
1359 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001360 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 */
1362
1363static int ata_bus_probe(struct ata_port *ap)
1364{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001365 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001366 int tries[ATA_MAX_DEVICES];
1367 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001368 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Tejun Heo28ca5c52006-03-01 16:09:36 +09001370 ata_port_probe(ap);
1371
Tejun Heo14d2bac2006-04-02 17:54:46 +09001372 for (i = 0; i < ATA_MAX_DEVICES; i++)
1373 tries[i] = ATA_PROBE_MAX_TRIES;
1374
1375 retry:
1376 down_xfermask = 0;
1377
Tejun Heo20444702006-03-13 01:57:01 +09001378 /* reset and determine device classes */
1379 for (i = 0; i < ATA_MAX_DEVICES; i++)
1380 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001381
Tejun Heo20444702006-03-13 01:57:01 +09001382 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001383 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001384 if (rc) {
1385 printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1386 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001387 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001388 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001389 ap->ops->phy_reset(ap);
1390
Tejun Heof8c2c422006-05-15 20:57:30 +09001391 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1392 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo28ca5c52006-03-01 16:09:36 +09001393 classes[i] = ap->device[i].class;
Tejun Heof8c2c422006-05-15 20:57:30 +09001394 ap->device[i].class = ATA_DEV_UNKNOWN;
1395 }
Tejun Heo20444702006-03-13 01:57:01 +09001396
Tejun Heo28ca5c52006-03-01 16:09:36 +09001397 ata_port_probe(ap);
1398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Tejun Heo20444702006-03-13 01:57:01 +09001400 for (i = 0; i < ATA_MAX_DEVICES; i++)
1401 if (classes[i] == ATA_DEV_UNKNOWN)
1402 classes[i] = ATA_DEV_NONE;
1403
Tejun Heo28ca5c52006-03-01 16:09:36 +09001404 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001406 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001407
Tejun Heoec573752006-04-11 22:26:29 +09001408 if (tries[i])
1409 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001410
Tejun Heoe1211e32006-04-01 01:38:18 +09001411 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001412 continue;
1413
Tejun Heo3373efd2006-05-15 20:57:53 +09001414 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001415 if (rc)
1416 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001417
Tejun Heo3373efd2006-05-15 20:57:53 +09001418 rc = ata_dev_configure(dev, 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001419 if (rc)
1420 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001423 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001424 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001425 if (rc) {
1426 down_xfermask = 1;
1427 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001430 for (i = 0; i < ATA_MAX_DEVICES; i++)
1431 if (ata_dev_enabled(&ap->device[i]))
1432 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001433
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001434 /* no device present, disable port */
1435 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001437 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001438
1439 fail:
1440 switch (rc) {
1441 case -EINVAL:
1442 case -ENODEV:
1443 tries[dev->devno] = 0;
1444 break;
1445 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001446 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001447 /* fall through */
1448 default:
1449 tries[dev->devno]--;
1450 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001451 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001452 tries[dev->devno] = 0;
1453 }
1454
Tejun Heoec573752006-04-11 22:26:29 +09001455 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001456 ata_down_xfermask_limit(dev, 1);
1457 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001458 }
1459
Tejun Heo14d2bac2006-04-02 17:54:46 +09001460 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
1463/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001464 * ata_port_probe - Mark port as enabled
1465 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001467 * Modify @ap data structure such that the system
1468 * thinks that the entire port is enabled.
1469 *
1470 * LOCKING: host_set lock, or some other form of
1471 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 */
1473
1474void ata_port_probe(struct ata_port *ap)
1475{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001476 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477}
1478
1479/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001480 * sata_print_link_status - Print SATA link status
1481 * @ap: SATA port to printk link status about
1482 *
1483 * This function prints link speed and status of a SATA link.
1484 *
1485 * LOCKING:
1486 * None.
1487 */
1488static void sata_print_link_status(struct ata_port *ap)
1489{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001490 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001491
Tejun Heo81952c52006-05-15 20:57:47 +09001492 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001493 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001494 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001495
Tejun Heo81952c52006-05-15 20:57:47 +09001496 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001497 tmp = (sstatus >> 4) & 0xf;
Tejun Heo6d5f9732006-04-03 00:09:41 +09001498 printk(KERN_INFO
1499 "ata%u: SATA link up %s (SStatus %X SControl %X)\n",
1500 ap->id, sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001501 } else {
Tejun Heo6d5f9732006-04-03 00:09:41 +09001502 printk(KERN_INFO
1503 "ata%u: SATA link down (SStatus %X SControl %X)\n",
1504 ap->id, sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001505 }
1506}
1507
1508/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001509 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1510 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001512 * This function issues commands to standard SATA Sxxx
1513 * PHY registers, to wake up the phy (and device), and
1514 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 *
1516 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001517 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 *
1519 */
1520void __sata_phy_reset(struct ata_port *ap)
1521{
1522 u32 sstatus;
1523 unsigned long timeout = jiffies + (HZ * 5);
1524
1525 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05001526 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001527 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001528 /* Couldn't find anything in SATA I/II specs, but
1529 * AHCI-1.1 10.4.2 says at least 1 ms. */
1530 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Tejun Heo81952c52006-05-15 20:57:47 +09001532 /* phy wake/clear reset */
1533 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 /* wait for phy to become ready, if necessary */
1536 do {
1537 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001538 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if ((sstatus & 0xf) != 1)
1540 break;
1541 } while (time_before(jiffies, timeout));
1542
Tejun Heo3be680b2005-12-19 22:35:02 +09001543 /* print link status */
1544 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001545
Tejun Heo3be680b2005-12-19 22:35:02 +09001546 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001547 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001549 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Tejun Heo198e0fe2006-04-02 18:51:52 +09001552 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 return;
1554
1555 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1556 ata_port_disable(ap);
1557 return;
1558 }
1559
1560 ap->cbl = ATA_CBL_SATA;
1561}
1562
1563/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001564 * sata_phy_reset - Reset SATA bus.
1565 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001567 * This function resets the SATA bus, and then probes
1568 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 *
1570 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001571 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 *
1573 */
1574void sata_phy_reset(struct ata_port *ap)
1575{
1576 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001577 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return;
1579 ata_bus_reset(ap);
1580}
1581
1582/**
Alan Coxebdfca62006-03-23 15:38:34 +00001583 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001584 * @adev: device
1585 *
1586 * Obtain the other device on the same cable, or if none is
1587 * present NULL is returned
1588 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001589
Tejun Heo3373efd2006-05-15 20:57:53 +09001590struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001591{
Tejun Heo3373efd2006-05-15 20:57:53 +09001592 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001593 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001594 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001595 return NULL;
1596 return pair;
1597}
1598
1599/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001600 * ata_port_disable - Disable port.
1601 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001603 * Modify @ap data structure such that the system
1604 * thinks that the entire port is disabled, and should
1605 * never attempt to probe or communicate with devices
1606 * on this port.
1607 *
1608 * LOCKING: host_set lock, or some other form of
1609 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 */
1611
1612void ata_port_disable(struct ata_port *ap)
1613{
1614 ap->device[0].class = ATA_DEV_NONE;
1615 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001616 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
Tejun Heo1c3fae42006-04-02 20:53:28 +09001619/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001620 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09001621 * @ap: Port to adjust SATA spd limit for
1622 *
1623 * Adjust SATA spd limit of @ap downward. Note that this
1624 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09001625 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09001626 *
1627 * LOCKING:
1628 * Inherited from caller.
1629 *
1630 * RETURNS:
1631 * 0 on success, negative errno on failure
1632 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001633int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001634{
Tejun Heo81952c52006-05-15 20:57:47 +09001635 u32 sstatus, spd, mask;
1636 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001637
Tejun Heo81952c52006-05-15 20:57:47 +09001638 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
1639 if (rc)
1640 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001641
1642 mask = ap->sata_spd_limit;
1643 if (mask <= 1)
1644 return -EINVAL;
1645 highbit = fls(mask) - 1;
1646 mask &= ~(1 << highbit);
1647
Tejun Heo81952c52006-05-15 20:57:47 +09001648 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001649 if (spd <= 1)
1650 return -EINVAL;
1651 spd--;
1652 mask &= (1 << spd) - 1;
1653 if (!mask)
1654 return -EINVAL;
1655
1656 ap->sata_spd_limit = mask;
1657
1658 printk(KERN_WARNING "ata%u: limiting SATA link speed to %s\n",
1659 ap->id, sata_spd_string(fls(mask)));
1660
1661 return 0;
1662}
1663
Tejun Heo3c567b72006-05-15 20:57:23 +09001664static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001665{
1666 u32 spd, limit;
1667
1668 if (ap->sata_spd_limit == UINT_MAX)
1669 limit = 0;
1670 else
1671 limit = fls(ap->sata_spd_limit);
1672
1673 spd = (*scontrol >> 4) & 0xf;
1674 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1675
1676 return spd != limit;
1677}
1678
1679/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001680 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09001681 * @ap: Port in question
1682 *
1683 * Test whether the spd limit in SControl matches
1684 * @ap->sata_spd_limit. This function is used to determine
1685 * whether hardreset is necessary to apply SATA spd
1686 * configuration.
1687 *
1688 * LOCKING:
1689 * Inherited from caller.
1690 *
1691 * RETURNS:
1692 * 1 if SATA spd configuration is needed, 0 otherwise.
1693 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001694int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001695{
1696 u32 scontrol;
1697
Tejun Heo81952c52006-05-15 20:57:47 +09001698 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001699 return 0;
1700
Tejun Heo3c567b72006-05-15 20:57:23 +09001701 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09001702}
1703
1704/**
Tejun Heo3c567b72006-05-15 20:57:23 +09001705 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09001706 * @ap: Port to set SATA spd for
1707 *
1708 * Set SATA spd of @ap according to sata_spd_limit.
1709 *
1710 * LOCKING:
1711 * Inherited from caller.
1712 *
1713 * RETURNS:
1714 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09001715 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09001716 */
Tejun Heo3c567b72006-05-15 20:57:23 +09001717int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001718{
1719 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09001720 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001721
Tejun Heo81952c52006-05-15 20:57:47 +09001722 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
1723 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09001724
Tejun Heo3c567b72006-05-15 20:57:23 +09001725 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09001726 return 0;
1727
Tejun Heo81952c52006-05-15 20:57:47 +09001728 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
1729 return rc;
1730
Tejun Heo1c3fae42006-04-02 20:53:28 +09001731 return 1;
1732}
1733
Alan Cox452503f2005-10-21 19:01:32 -04001734/*
1735 * This mode timing computation functionality is ported over from
1736 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1737 */
1738/*
1739 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1740 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1741 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001742 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001743 */
1744
1745static const struct ata_timing ata_timing[] = {
1746
1747 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1748 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1749 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1750 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1751
1752 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1753 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1754 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1755
1756/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001757
Alan Cox452503f2005-10-21 19:01:32 -04001758 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1759 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1760 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001761
Alan Cox452503f2005-10-21 19:01:32 -04001762 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1763 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1764 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1765
1766/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1767 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1768 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1769
1770 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1771 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1772 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1773
1774/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1775
1776 { 0xFF }
1777};
1778
1779#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1780#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1781
1782static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1783{
1784 q->setup = EZ(t->setup * 1000, T);
1785 q->act8b = EZ(t->act8b * 1000, T);
1786 q->rec8b = EZ(t->rec8b * 1000, T);
1787 q->cyc8b = EZ(t->cyc8b * 1000, T);
1788 q->active = EZ(t->active * 1000, T);
1789 q->recover = EZ(t->recover * 1000, T);
1790 q->cycle = EZ(t->cycle * 1000, T);
1791 q->udma = EZ(t->udma * 1000, UT);
1792}
1793
1794void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1795 struct ata_timing *m, unsigned int what)
1796{
1797 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1798 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1799 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1800 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1801 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1802 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1803 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1804 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1805}
1806
1807static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1808{
1809 const struct ata_timing *t;
1810
1811 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001812 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001813 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001814 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001815}
1816
1817int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1818 struct ata_timing *t, int T, int UT)
1819{
1820 const struct ata_timing *s;
1821 struct ata_timing p;
1822
1823 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001824 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001825 */
Alan Cox452503f2005-10-21 19:01:32 -04001826
1827 if (!(s = ata_timing_find_mode(speed)))
1828 return -EINVAL;
1829
Albert Lee75b1f2f2005-11-16 17:06:18 +08001830 memcpy(t, s, sizeof(*s));
1831
Alan Cox452503f2005-10-21 19:01:32 -04001832 /*
1833 * If the drive is an EIDE drive, it can tell us it needs extended
1834 * PIO/MW_DMA cycle timing.
1835 */
1836
1837 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1838 memset(&p, 0, sizeof(p));
1839 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1840 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1841 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1842 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1843 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1844 }
1845 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1846 }
1847
1848 /*
1849 * Convert the timing to bus clock counts.
1850 */
1851
Albert Lee75b1f2f2005-11-16 17:06:18 +08001852 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001853
1854 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001855 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1856 * S.M.A.R.T * and some other commands. We have to ensure that the
1857 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001858 */
1859
1860 if (speed > XFER_PIO_4) {
1861 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1862 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1863 }
1864
1865 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001866 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001867 */
1868
1869 if (t->act8b + t->rec8b < t->cyc8b) {
1870 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1871 t->rec8b = t->cyc8b - t->act8b;
1872 }
1873
1874 if (t->active + t->recover < t->cycle) {
1875 t->active += (t->cycle - (t->active + t->recover)) / 2;
1876 t->recover = t->cycle - t->active;
1877 }
1878
1879 return 0;
1880}
1881
Tejun Heocf176e12006-04-02 17:54:46 +09001882/**
1883 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09001884 * @dev: Device to adjust xfer masks
1885 * @force_pio0: Force PIO0
1886 *
1887 * Adjust xfer masks of @dev downward. Note that this function
1888 * does not apply the change. Invoking ata_set_mode() afterwards
1889 * will apply the limit.
1890 *
1891 * LOCKING:
1892 * Inherited from caller.
1893 *
1894 * RETURNS:
1895 * 0 on success, negative errno on failure
1896 */
Tejun Heo3373efd2006-05-15 20:57:53 +09001897int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09001898{
Tejun Heo3373efd2006-05-15 20:57:53 +09001899 struct ata_port *ap = dev->ap;
Tejun Heocf176e12006-04-02 17:54:46 +09001900 unsigned long xfer_mask;
1901 int highbit;
1902
1903 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
1904 dev->udma_mask);
1905
1906 if (!xfer_mask)
1907 goto fail;
1908 /* don't gear down to MWDMA from UDMA, go directly to PIO */
1909 if (xfer_mask & ATA_MASK_UDMA)
1910 xfer_mask &= ~ATA_MASK_MWDMA;
1911
1912 highbit = fls(xfer_mask) - 1;
1913 xfer_mask &= ~(1 << highbit);
1914 if (force_pio0)
1915 xfer_mask &= 1 << ATA_SHIFT_PIO;
1916 if (!xfer_mask)
1917 goto fail;
1918
1919 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
1920 &dev->udma_mask);
1921
1922 printk(KERN_WARNING "ata%u: dev %u limiting speed to %s\n",
1923 ap->id, dev->devno, ata_mode_string(xfer_mask));
1924
1925 return 0;
1926
1927 fail:
1928 return -EINVAL;
1929}
1930
Tejun Heo3373efd2006-05-15 20:57:53 +09001931static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Tejun Heo3373efd2006-05-15 20:57:53 +09001933 struct ata_port *ap = dev->ap;
Tejun Heo83206a22006-03-24 15:25:31 +09001934 unsigned int err_mask;
1935 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Tejun Heoe8384602006-04-02 18:51:53 +09001937 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (dev->xfer_shift == ATA_SHIFT_PIO)
1939 dev->flags |= ATA_DFLAG_PIO;
1940
Tejun Heo3373efd2006-05-15 20:57:53 +09001941 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09001942 if (err_mask) {
1943 printk(KERN_ERR
1944 "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1945 ap->id, err_mask);
1946 return -EIO;
1947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Tejun Heo3373efd2006-05-15 20:57:53 +09001949 rc = ata_dev_revalidate(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09001950 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09001951 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09001952
Tejun Heo23e71c32006-03-06 04:31:57 +09001953 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1954 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
Tejun Heo23e71c32006-03-06 04:31:57 +09001957 ap->id, dev->devno,
1958 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001959 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962/**
1963 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1964 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001965 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001967 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
1968 * ata_set_mode() fails, pointer to the failing device is
1969 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04001970 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001972 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001973 *
1974 * RETURNS:
1975 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001977int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Tejun Heoe8e06192006-04-01 01:38:18 +09001979 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001980 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
Tejun Heo3adcebb2006-05-15 20:57:37 +09001982 /* has private set_mode? */
1983 if (ap->ops->set_mode) {
1984 /* FIXME: make ->set_mode handle no device case and
1985 * return error code and failing device on failure.
1986 */
1987 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1988 if (ata_dev_enabled(&ap->device[i])) {
1989 ap->ops->set_mode(ap);
1990 break;
1991 }
1992 }
1993 return 0;
1994 }
1995
Tejun Heoa6d5a512006-03-06 04:31:57 +09001996 /* step 1: calculate xfer_mask */
1997 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09001998 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09001999
Tejun Heoe8e06192006-04-01 01:38:18 +09002000 dev = &ap->device[i];
2001
Tejun Heoe1211e32006-04-01 01:38:18 +09002002 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002003 continue;
2004
Tejun Heo3373efd2006-05-15 20:57:53 +09002005 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002006
Tejun Heoacf356b2006-03-24 14:07:50 +09002007 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2008 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2009 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2010 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002011
Tejun Heo4f659772006-04-01 01:38:18 +09002012 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002013 if (dev->dma_mode)
2014 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002015 }
Tejun Heo4f659772006-04-01 01:38:18 +09002016 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002017 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002018
2019 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002020 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2021 dev = &ap->device[i];
2022 if (!ata_dev_enabled(dev))
2023 continue;
2024
2025 if (!dev->pio_mode) {
2026 printk(KERN_WARNING "ata%u: dev %u no PIO support\n",
2027 ap->id, dev->devno);
2028 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002029 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002030 }
2031
2032 dev->xfer_mode = dev->pio_mode;
2033 dev->xfer_shift = ATA_SHIFT_PIO;
2034 if (ap->ops->set_piomode)
2035 ap->ops->set_piomode(ap, dev);
2036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Tejun Heoa6d5a512006-03-06 04:31:57 +09002038 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002039 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2040 dev = &ap->device[i];
2041
2042 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2043 continue;
2044
2045 dev->xfer_mode = dev->dma_mode;
2046 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2047 if (ap->ops->set_dmamode)
2048 ap->ops->set_dmamode(ap, dev);
2049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002052 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002053 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Tejun Heoe1211e32006-04-01 01:38:18 +09002055 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002056 continue;
2057
Tejun Heo3373efd2006-05-15 20:57:53 +09002058 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002059 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002060 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Tejun Heoe8e06192006-04-01 01:38:18 +09002063 /* Record simplex status. If we selected DMA then the other
2064 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002065 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002066 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2067 ap->host_set->simplex_claimed = 1;
2068
Tejun Heoe8e06192006-04-01 01:38:18 +09002069 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 if (ap->ops->post_set_mode)
2071 ap->ops->post_set_mode(ap);
2072
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002073 out:
2074 if (rc)
2075 *r_failed_dev = dev;
2076 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
2079/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002080 * ata_tf_to_host - issue ATA taskfile to host controller
2081 * @ap: port to which command is being issued
2082 * @tf: ATA taskfile register set
2083 *
2084 * Issues ATA taskfile register set to ATA host controller,
2085 * with proper synchronization with interrupt handler and
2086 * other threads.
2087 *
2088 * LOCKING:
2089 * spin_lock_irqsave(host_set lock)
2090 */
2091
2092static inline void ata_tf_to_host(struct ata_port *ap,
2093 const struct ata_taskfile *tf)
2094{
2095 ap->ops->tf_load(ap, tf);
2096 ap->ops->exec_command(ap, tf);
2097}
2098
2099/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 * ata_busy_sleep - sleep until BSY clears, or timeout
2101 * @ap: port containing status register to be polled
2102 * @tmout_pat: impatience timeout
2103 * @tmout: overall timeout
2104 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002105 * Sleep until ATA Status register bit BSY clears,
2106 * or a timeout occurs.
2107 *
2108 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 */
2110
Tejun Heo6f8b9952006-01-24 17:05:21 +09002111unsigned int ata_busy_sleep (struct ata_port *ap,
2112 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
2114 unsigned long timer_start, timeout;
2115 u8 status;
2116
2117 status = ata_busy_wait(ap, ATA_BUSY, 300);
2118 timer_start = jiffies;
2119 timeout = timer_start + tmout_pat;
2120 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2121 msleep(50);
2122 status = ata_busy_wait(ap, ATA_BUSY, 3);
2123 }
2124
2125 if (status & ATA_BUSY)
2126 printk(KERN_WARNING "ata%u is slow to respond, "
2127 "please be patient\n", ap->id);
2128
2129 timeout = timer_start + tmout;
2130 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2131 msleep(50);
2132 status = ata_chk_status(ap);
2133 }
2134
2135 if (status & ATA_BUSY) {
2136 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
2137 ap->id, tmout / HZ);
2138 return 1;
2139 }
2140
2141 return 0;
2142}
2143
2144static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2145{
2146 struct ata_ioports *ioaddr = &ap->ioaddr;
2147 unsigned int dev0 = devmask & (1 << 0);
2148 unsigned int dev1 = devmask & (1 << 1);
2149 unsigned long timeout;
2150
2151 /* if device 0 was found in ata_devchk, wait for its
2152 * BSY bit to clear
2153 */
2154 if (dev0)
2155 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2156
2157 /* if device 1 was found in ata_devchk, wait for
2158 * register access, then wait for BSY to clear
2159 */
2160 timeout = jiffies + ATA_TMOUT_BOOT;
2161 while (dev1) {
2162 u8 nsect, lbal;
2163
2164 ap->ops->dev_select(ap, 1);
2165 if (ap->flags & ATA_FLAG_MMIO) {
2166 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2167 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2168 } else {
2169 nsect = inb(ioaddr->nsect_addr);
2170 lbal = inb(ioaddr->lbal_addr);
2171 }
2172 if ((nsect == 1) && (lbal == 1))
2173 break;
2174 if (time_after(jiffies, timeout)) {
2175 dev1 = 0;
2176 break;
2177 }
2178 msleep(50); /* give drive a breather */
2179 }
2180 if (dev1)
2181 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2182
2183 /* is all this really necessary? */
2184 ap->ops->dev_select(ap, 0);
2185 if (dev1)
2186 ap->ops->dev_select(ap, 1);
2187 if (dev0)
2188 ap->ops->dev_select(ap, 0);
2189}
2190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191static unsigned int ata_bus_softreset(struct ata_port *ap,
2192 unsigned int devmask)
2193{
2194 struct ata_ioports *ioaddr = &ap->ioaddr;
2195
2196 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2197
2198 /* software reset. causes dev0 to be selected */
2199 if (ap->flags & ATA_FLAG_MMIO) {
2200 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2201 udelay(20); /* FIXME: flush */
2202 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2203 udelay(20); /* FIXME: flush */
2204 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2205 } else {
2206 outb(ap->ctl, ioaddr->ctl_addr);
2207 udelay(10);
2208 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2209 udelay(10);
2210 outb(ap->ctl, ioaddr->ctl_addr);
2211 }
2212
2213 /* spec mandates ">= 2ms" before checking status.
2214 * We wait 150ms, because that was the magic delay used for
2215 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2216 * between when the ATA command register is written, and then
2217 * status is checked. Because waiting for "a while" before
2218 * checking status is fine, post SRST, we perform this magic
2219 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002220 *
2221 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 */
2223 msleep(150);
2224
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002225 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002226 * the bus shows 0xFF because the odd clown forgets the D7
2227 * pulldown resistor.
2228 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002229 if (ata_check_status(ap) == 0xFF) {
2230 printk(KERN_ERR "ata%u: SRST failed (status 0xFF)\n", ap->id);
Tejun Heo298a41c2006-03-25 02:58:13 +09002231 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002232 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 ata_bus_post_reset(ap, devmask);
2235
2236 return 0;
2237}
2238
2239/**
2240 * ata_bus_reset - reset host port and associated ATA channel
2241 * @ap: port to reset
2242 *
2243 * This is typically the first time we actually start issuing
2244 * commands to the ATA channel. We wait for BSY to clear, then
2245 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2246 * result. Determine what devices, if any, are on the channel
2247 * by looking at the device 0/1 error register. Look at the signature
2248 * stored in each device's taskfile registers, to determine if
2249 * the device is ATA or ATAPI.
2250 *
2251 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002252 * PCI/etc. bus probe sem.
2253 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 *
2255 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002256 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 */
2258
2259void ata_bus_reset(struct ata_port *ap)
2260{
2261 struct ata_ioports *ioaddr = &ap->ioaddr;
2262 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2263 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002264 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
2266 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2267
2268 /* determine if device 0/1 are present */
2269 if (ap->flags & ATA_FLAG_SATA_RESET)
2270 dev0 = 1;
2271 else {
2272 dev0 = ata_devchk(ap, 0);
2273 if (slave_possible)
2274 dev1 = ata_devchk(ap, 1);
2275 }
2276
2277 if (dev0)
2278 devmask |= (1 << 0);
2279 if (dev1)
2280 devmask |= (1 << 1);
2281
2282 /* select device 0 again */
2283 ap->ops->dev_select(ap, 0);
2284
2285 /* issue bus reset */
2286 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002287 if (ata_bus_softreset(ap, devmask))
2288 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
2290 /*
2291 * determine by signature whether we have ATA or ATAPI devices
2292 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002293 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002295 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
2297 /* re-enable interrupts */
2298 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2299 ata_irq_on(ap);
2300
2301 /* is double-select really necessary? */
2302 if (ap->device[1].class != ATA_DEV_NONE)
2303 ap->ops->dev_select(ap, 1);
2304 if (ap->device[0].class != ATA_DEV_NONE)
2305 ap->ops->dev_select(ap, 0);
2306
2307 /* if no devices were detected, disable this port */
2308 if ((ap->device[0].class == ATA_DEV_NONE) &&
2309 (ap->device[1].class == ATA_DEV_NONE))
2310 goto err_out;
2311
2312 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2313 /* set up device control for ATA_FLAG_SATA_RESET */
2314 if (ap->flags & ATA_FLAG_MMIO)
2315 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2316 else
2317 outb(ap->ctl, ioaddr->ctl_addr);
2318 }
2319
2320 DPRINTK("EXIT\n");
2321 return;
2322
2323err_out:
2324 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2325 ap->ops->port_disable(ap);
2326
2327 DPRINTK("EXIT\n");
2328}
2329
Tejun Heo7a7921e2006-02-02 18:20:00 +09002330static int sata_phy_resume(struct ata_port *ap)
2331{
2332 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo852ee162006-04-01 01:38:18 +09002333 u32 scontrol, sstatus;
Tejun Heo81952c52006-05-15 20:57:47 +09002334 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002335
Tejun Heo81952c52006-05-15 20:57:47 +09002336 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2337 return rc;
2338
Tejun Heo852ee162006-04-01 01:38:18 +09002339 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002340
2341 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2342 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002343
2344 /* Wait for phy to become ready, if necessary. */
2345 do {
2346 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09002347 if ((rc = sata_scr_read(ap, SCR_STATUS, &sstatus)))
2348 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002349 if ((sstatus & 0xf) != 1)
2350 return 0;
2351 } while (time_before(jiffies, timeout));
2352
Tejun Heo81952c52006-05-15 20:57:47 +09002353 return -EBUSY;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002354}
2355
Tejun Heoc2bd5802006-01-24 17:05:22 +09002356/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002357 * ata_std_probeinit - initialize probing
2358 * @ap: port to be probed
2359 *
2360 * @ap is about to be probed. Initialize it. This function is
2361 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002362 *
2363 * NOTE!!! Do not use this function as probeinit if a low level
2364 * driver implements only hardreset. Just pass NULL as probeinit
2365 * in that case. Using this function is probably okay but doing
2366 * so makes reset sequence different from the original
2367 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002368 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002369void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002370{
Tejun Heo81952c52006-05-15 20:57:47 +09002371 u32 scontrol;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002372
Tejun Heo81952c52006-05-15 20:57:47 +09002373 /* resume link */
2374 sata_phy_resume(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002375
Tejun Heo81952c52006-05-15 20:57:47 +09002376 /* init sata_spd_limit to the current value */
2377 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
2378 int spd = (scontrol >> 4) & 0xf;
2379 ap->sata_spd_limit &= (1 << spd) - 1;
Tejun Heo3a397462006-02-10 23:58:48 +09002380 }
Tejun Heo81952c52006-05-15 20:57:47 +09002381
2382 /* wait for device */
2383 if (ata_port_online(ap))
2384 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
Tejun Heo8a19ac82006-02-02 18:20:00 +09002385}
2386
2387/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002388 * ata_std_softreset - reset host port via ATA SRST
2389 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002390 * @classes: resulting classes of attached devices
2391 *
2392 * Reset host port using ATA SRST. This function is to be used
2393 * as standard callback for ata_drive_*_reset() functions.
2394 *
2395 * LOCKING:
2396 * Kernel thread context (may sleep)
2397 *
2398 * RETURNS:
2399 * 0 on success, -errno otherwise.
2400 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002401int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002402{
2403 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2404 unsigned int devmask = 0, err_mask;
2405 u8 err;
2406
2407 DPRINTK("ENTER\n");
2408
Tejun Heo81952c52006-05-15 20:57:47 +09002409 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002410 classes[0] = ATA_DEV_NONE;
2411 goto out;
2412 }
2413
Tejun Heoc2bd5802006-01-24 17:05:22 +09002414 /* determine if device 0/1 are present */
2415 if (ata_devchk(ap, 0))
2416 devmask |= (1 << 0);
2417 if (slave_possible && ata_devchk(ap, 1))
2418 devmask |= (1 << 1);
2419
Tejun Heoc2bd5802006-01-24 17:05:22 +09002420 /* select device 0 again */
2421 ap->ops->dev_select(ap, 0);
2422
2423 /* issue bus reset */
2424 DPRINTK("about to softreset, devmask=%x\n", devmask);
2425 err_mask = ata_bus_softreset(ap, devmask);
2426 if (err_mask) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002427 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2428 ap->id, err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002429 return -EIO;
2430 }
2431
2432 /* determine by signature whether we have ATA or ATAPI devices */
2433 classes[0] = ata_dev_try_classify(ap, 0, &err);
2434 if (slave_possible && err != 0x81)
2435 classes[1] = ata_dev_try_classify(ap, 1, &err);
2436
Tejun Heo3a397462006-02-10 23:58:48 +09002437 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002438 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2439 return 0;
2440}
2441
2442/**
2443 * sata_std_hardreset - reset host port via SATA phy reset
2444 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002445 * @class: resulting class of attached device
2446 *
2447 * SATA phy-reset host port using DET bits of SControl register.
2448 * This function is to be used as standard callback for
2449 * ata_drive_*_reset().
2450 *
2451 * LOCKING:
2452 * Kernel thread context (may sleep)
2453 *
2454 * RETURNS:
2455 * 0 on success, -errno otherwise.
2456 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002457int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002458{
Tejun Heo852ee162006-04-01 01:38:18 +09002459 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002460 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002461
Tejun Heoc2bd5802006-01-24 17:05:22 +09002462 DPRINTK("ENTER\n");
2463
Tejun Heo3c567b72006-05-15 20:57:23 +09002464 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002465 /* SATA spec says nothing about how to reconfigure
2466 * spd. To be on the safe side, turn off phy during
2467 * reconfiguration. This works for at least ICH7 AHCI
2468 * and Sil3124.
2469 */
Tejun Heo81952c52006-05-15 20:57:47 +09002470 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2471 return rc;
2472
Tejun Heo1c3fae42006-04-02 20:53:28 +09002473 scontrol = (scontrol & 0x0f0) | 0x302;
Tejun Heo81952c52006-05-15 20:57:47 +09002474
2475 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2476 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002477
Tejun Heo3c567b72006-05-15 20:57:23 +09002478 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002479 }
2480
2481 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002482 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2483 return rc;
2484
Tejun Heo852ee162006-04-01 01:38:18 +09002485 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002486
2487 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
2488 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002489
Tejun Heo1c3fae42006-04-02 20:53:28 +09002490 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002491 * 10.4.2 says at least 1 ms.
2492 */
2493 msleep(1);
2494
Tejun Heo1c3fae42006-04-02 20:53:28 +09002495 /* bring phy back */
Tejun Heo7a7921e2006-02-02 18:20:00 +09002496 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002497
Tejun Heoc2bd5802006-01-24 17:05:22 +09002498 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002499 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09002500 *class = ATA_DEV_NONE;
2501 DPRINTK("EXIT, link offline\n");
2502 return 0;
2503 }
2504
2505 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heo987d2f02006-04-11 22:16:45 +09002506 printk(KERN_ERR
2507 "ata%u: COMRESET failed (device not ready)\n", ap->id);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002508 return -EIO;
2509 }
2510
Tejun Heo3a397462006-02-10 23:58:48 +09002511 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2512
Tejun Heoc2bd5802006-01-24 17:05:22 +09002513 *class = ata_dev_try_classify(ap, 0, NULL);
2514
2515 DPRINTK("EXIT, class=%u\n", *class);
2516 return 0;
2517}
2518
2519/**
2520 * ata_std_postreset - standard postreset callback
2521 * @ap: the target ata_port
2522 * @classes: classes of attached devices
2523 *
2524 * This function is invoked after a successful reset. Note that
2525 * the device might have been reset more than once using
2526 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002527 *
2528 * This function is to be used as standard callback for
2529 * ata_drive_*_reset().
2530 *
2531 * LOCKING:
2532 * Kernel thread context (may sleep)
2533 */
2534void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2535{
2536 DPRINTK("ENTER\n");
2537
Tejun Heoc2bd5802006-01-24 17:05:22 +09002538 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09002539 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002540
Tejun Heo3a397462006-02-10 23:58:48 +09002541 /* re-enable interrupts */
2542 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2543 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002544
2545 /* is double-select really necessary? */
2546 if (classes[0] != ATA_DEV_NONE)
2547 ap->ops->dev_select(ap, 1);
2548 if (classes[1] != ATA_DEV_NONE)
2549 ap->ops->dev_select(ap, 0);
2550
Tejun Heo3a397462006-02-10 23:58:48 +09002551 /* bail out if no device is present */
2552 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2553 DPRINTK("EXIT, no device\n");
2554 return;
2555 }
2556
2557 /* set up device control */
2558 if (ap->ioaddr.ctl_addr) {
2559 if (ap->flags & ATA_FLAG_MMIO)
2560 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2561 else
2562 outb(ap->ctl, ap->ioaddr.ctl_addr);
2563 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002564
2565 DPRINTK("EXIT\n");
2566}
2567
2568/**
2569 * ata_std_probe_reset - standard probe reset method
2570 * @ap: prot to perform probe-reset
2571 * @classes: resulting classes of attached devices
2572 *
2573 * The stock off-the-shelf ->probe_reset method.
2574 *
2575 * LOCKING:
2576 * Kernel thread context (may sleep)
2577 *
2578 * RETURNS:
2579 * 0 on success, -errno otherwise.
2580 */
2581int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2582{
2583 ata_reset_fn_t hardreset;
2584
2585 hardreset = NULL;
Tejun Heo81952c52006-05-15 20:57:47 +09002586 if (sata_scr_valid(ap))
Tejun Heoc2bd5802006-01-24 17:05:22 +09002587 hardreset = sata_std_hardreset;
2588
Tejun Heo8a19ac82006-02-02 18:20:00 +09002589 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002590 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002591 ata_std_postreset, classes);
2592}
2593
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002594int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
Tejun Heo96bd39e2006-05-15 20:57:38 +09002595 unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002596{
2597 int i, rc;
2598
2599 for (i = 0; i < ATA_MAX_DEVICES; i++)
2600 classes[i] = ATA_DEV_UNKNOWN;
2601
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002602 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002603 if (rc)
2604 return rc;
2605
2606 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2607 * is complete and convert all ATA_DEV_UNKNOWN to
2608 * ATA_DEV_NONE.
2609 */
2610 for (i = 0; i < ATA_MAX_DEVICES; i++)
2611 if (classes[i] != ATA_DEV_UNKNOWN)
2612 break;
2613
2614 if (i < ATA_MAX_DEVICES)
2615 for (i = 0; i < ATA_MAX_DEVICES; i++)
2616 if (classes[i] == ATA_DEV_UNKNOWN)
2617 classes[i] = ATA_DEV_NONE;
2618
Tejun Heo9974e7c2006-04-01 01:38:17 +09002619 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002620}
2621
2622/**
2623 * ata_drive_probe_reset - Perform probe reset with given methods
2624 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002625 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002626 * @softreset: softreset method (can be NULL)
2627 * @hardreset: hardreset method (can be NULL)
2628 * @postreset: postreset method (can be NULL)
2629 * @classes: resulting classes of attached devices
2630 *
2631 * Reset the specified port and classify attached devices using
2632 * given methods. This function prefers softreset but tries all
2633 * possible reset sequences to reset and classify devices. This
2634 * function is intended to be used for constructing ->probe_reset
2635 * callback by low level drivers.
2636 *
2637 * Reset methods should follow the following rules.
2638 *
2639 * - Return 0 on sucess, -errno on failure.
2640 * - If classification is supported, fill classes[] with
2641 * recognized class codes.
2642 * - If classification is not supported, leave classes[] alone.
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002643 *
2644 * LOCKING:
2645 * Kernel thread context (may sleep)
2646 *
2647 * RETURNS:
2648 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2649 * if classification fails, and any error code from reset
2650 * methods.
2651 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002652int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002653 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2654 ata_postreset_fn_t postreset, unsigned int *classes)
2655{
2656 int rc = -EINVAL;
2657
Tejun Heo7944ea92006-02-02 18:20:00 +09002658 if (probeinit)
2659 probeinit(ap);
2660
Tejun Heo3c567b72006-05-15 20:57:23 +09002661 if (softreset && !sata_set_spd_needed(ap)) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002662 rc = ata_do_reset(ap, softreset, classes);
Tejun Heo9974e7c2006-04-01 01:38:17 +09002663 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2664 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002665 printk(KERN_INFO "ata%u: softreset failed, will try "
2666 "hardreset in 5 secs\n", ap->id);
2667 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002668 }
2669
2670 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002671 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002672
Tejun Heo90dac022006-04-02 17:54:46 +09002673 while (1) {
Tejun Heo96bd39e2006-05-15 20:57:38 +09002674 rc = ata_do_reset(ap, hardreset, classes);
Tejun Heo90dac022006-04-02 17:54:46 +09002675 if (rc == 0) {
2676 if (classes[0] != ATA_DEV_UNKNOWN)
2677 goto done;
2678 break;
2679 }
2680
Tejun Heo3c567b72006-05-15 20:57:23 +09002681 if (sata_down_spd_limit(ap))
Tejun Heo90dac022006-04-02 17:54:46 +09002682 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002683
2684 printk(KERN_INFO "ata%u: hardreset failed, will retry "
2685 "in 5 secs\n", ap->id);
2686 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002687 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002688
Tejun Heoedbabd82006-04-02 20:55:02 +09002689 if (softreset) {
2690 printk(KERN_INFO "ata%u: hardreset succeeded without "
2691 "classification, will retry softreset in 5 secs\n",
2692 ap->id);
2693 ssleep(5);
2694
Tejun Heo96bd39e2006-05-15 20:57:38 +09002695 rc = ata_do_reset(ap, softreset, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002696 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002697
Tejun Heo9974e7c2006-04-01 01:38:17 +09002698 done:
Tejun Heo96bd39e2006-05-15 20:57:38 +09002699 if (rc == 0) {
2700 if (postreset)
2701 postreset(ap, classes);
2702 if (classes[0] == ATA_DEV_UNKNOWN)
2703 rc = -ENODEV;
2704 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002705 return rc;
2706}
2707
Tejun Heo623a3122006-03-05 17:55:58 +09002708/**
2709 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09002710 * @dev: device to compare against
2711 * @new_class: class of the new device
2712 * @new_id: IDENTIFY page of the new device
2713 *
2714 * Compare @new_class and @new_id against @dev and determine
2715 * whether @dev is the device indicated by @new_class and
2716 * @new_id.
2717 *
2718 * LOCKING:
2719 * None.
2720 *
2721 * RETURNS:
2722 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2723 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002724static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
2725 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09002726{
Tejun Heo3373efd2006-05-15 20:57:53 +09002727 struct ata_port *ap = dev->ap;
Tejun Heo623a3122006-03-05 17:55:58 +09002728 const u16 *old_id = dev->id;
2729 unsigned char model[2][41], serial[2][21];
2730 u64 new_n_sectors;
2731
2732 if (dev->class != new_class) {
2733 printk(KERN_INFO
2734 "ata%u: dev %u class mismatch %d != %d\n",
2735 ap->id, dev->devno, dev->class, new_class);
2736 return 0;
2737 }
2738
2739 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2740 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2741 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2742 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2743 new_n_sectors = ata_id_n_sectors(new_id);
2744
2745 if (strcmp(model[0], model[1])) {
2746 printk(KERN_INFO
2747 "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2748 ap->id, dev->devno, model[0], model[1]);
2749 return 0;
2750 }
2751
2752 if (strcmp(serial[0], serial[1])) {
2753 printk(KERN_INFO
2754 "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2755 ap->id, dev->devno, serial[0], serial[1]);
2756 return 0;
2757 }
2758
2759 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2760 printk(KERN_INFO
2761 "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2762 ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2763 (unsigned long long)new_n_sectors);
2764 return 0;
2765 }
2766
2767 return 1;
2768}
2769
2770/**
2771 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09002772 * @dev: device to revalidate
2773 * @post_reset: is this revalidation after reset?
2774 *
2775 * Re-read IDENTIFY page and make sure @dev is still attached to
2776 * the port.
2777 *
2778 * LOCKING:
2779 * Kernel thread context (may sleep)
2780 *
2781 * RETURNS:
2782 * 0 on success, negative errno otherwise
2783 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002784int ata_dev_revalidate(struct ata_device *dev, int post_reset)
Tejun Heo623a3122006-03-05 17:55:58 +09002785{
Tejun Heo3373efd2006-05-15 20:57:53 +09002786 struct ata_port *ap = dev->ap;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002787 unsigned int class = dev->class;
Tejun Heofe635c72006-05-15 20:57:35 +09002788 u16 *id = (void *)ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09002789 int rc;
2790
Tejun Heo5eb45c02006-04-02 18:51:52 +09002791 if (!ata_dev_enabled(dev)) {
2792 rc = -ENODEV;
2793 goto fail;
2794 }
Tejun Heo623a3122006-03-05 17:55:58 +09002795
Tejun Heofe635c72006-05-15 20:57:35 +09002796 /* read ID data */
Tejun Heo3373efd2006-05-15 20:57:53 +09002797 rc = ata_dev_read_id(dev, &class, post_reset, id);
Tejun Heo623a3122006-03-05 17:55:58 +09002798 if (rc)
2799 goto fail;
2800
2801 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09002802 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09002803 rc = -ENODEV;
2804 goto fail;
2805 }
2806
Tejun Heofe635c72006-05-15 20:57:35 +09002807 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09002808
2809 /* configure device according to the new ID */
Tejun Heo3373efd2006-05-15 20:57:53 +09002810 rc = ata_dev_configure(dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09002811 if (rc == 0)
2812 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002813
2814 fail:
2815 printk(KERN_ERR "ata%u: dev %u revalidation failed (errno=%d)\n",
2816 ap->id, dev->devno, rc);
Tejun Heo623a3122006-03-05 17:55:58 +09002817 return rc;
2818}
2819
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002820static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002821 "WDC AC11000H", NULL,
2822 "WDC AC22100H", NULL,
2823 "WDC AC32500H", NULL,
2824 "WDC AC33100H", NULL,
2825 "WDC AC31600H", NULL,
2826 "WDC AC32100H", "24.09P07",
2827 "WDC AC23200L", "21.10N21",
2828 "Compaq CRD-8241B", NULL,
2829 "CRD-8400B", NULL,
2830 "CRD-8480B", NULL,
2831 "CRD-8482B", NULL,
2832 "CRD-84", NULL,
2833 "SanDisk SDP3B", NULL,
2834 "SanDisk SDP3B-64", NULL,
2835 "SANYO CD-ROM CRD", NULL,
2836 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002837 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002838 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002839 "Toshiba CD-ROM XM-6202B", NULL,
2840 "TOSHIBA CD-ROM XM-1702BC", NULL,
2841 "CD-532E-A", NULL,
2842 "E-IDE CD-ROM CR-840", NULL,
2843 "CD-ROM Drive/F5A", NULL,
2844 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002845 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002846 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002847 "SanDisk SDP3B-64", NULL,
2848 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2849 "_NEC DV5800A", NULL,
2850 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002852
Alan Coxf4b15fe2006-03-22 15:54:04 +00002853static int ata_strim(char *s, size_t len)
2854{
2855 len = strnlen(s, len);
2856
2857 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2858 while ((len > 0) && (s[len - 1] == ' ')) {
2859 len--;
2860 s[len] = 0;
2861 }
2862 return len;
2863}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Jeff Garzik057ace52005-10-22 14:27:05 -04002865static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002867 unsigned char model_num[40];
2868 unsigned char model_rev[16];
2869 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 int i;
2871
Alan Coxf4b15fe2006-03-22 15:54:04 +00002872 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2873 sizeof(model_num));
2874 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2875 sizeof(model_rev));
2876 nlen = ata_strim(model_num, sizeof(model_num));
2877 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Alan Coxf4b15fe2006-03-22 15:54:04 +00002879 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2880 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2881 if (ata_dma_blacklist[i+1] == NULL)
2882 return 1;
2883 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2884 return 1;
2885 }
2886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 return 0;
2888}
2889
Tejun Heoa6d5a512006-03-06 04:31:57 +09002890/**
2891 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09002892 * @dev: Device to compute xfermask for
2893 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002894 * Compute supported xfermask of @dev and store it in
2895 * dev->*_mask. This function is responsible for applying all
2896 * known limits including host controller limits, device
2897 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002898 *
Tejun Heo600511e2006-03-25 11:14:07 +09002899 * FIXME: The current implementation limits all transfer modes to
2900 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002901 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002902 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09002903 * LOCKING:
2904 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09002905 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002906static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907{
Tejun Heo3373efd2006-05-15 20:57:53 +09002908 struct ata_port *ap = dev->ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002909 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002910 unsigned long xfer_mask;
2911 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Tejun Heo565083e2006-04-02 17:54:47 +09002913 xfer_mask = ata_pack_xfermask(ap->pio_mask,
2914 ap->mwdma_mask, ap->udma_mask);
2915
2916 /* Apply cable rule here. Don't apply it early because when
2917 * we handle hot plug the cable type can itself change.
2918 */
2919 if (ap->cbl == ATA_CBL_PATA40)
2920 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Alan Cox5444a6f2006-03-27 18:58:20 +01002922 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002923 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2924 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09002925
2926 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002927 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09002928
2929 if (ata_dev_disabled(d)) {
2930 /* to avoid violating device selection timing */
2931 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2932 UINT_MAX, UINT_MAX);
2933 continue;
2934 }
2935
2936 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2937 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002938 xfer_mask &= ata_id_xfermask(d->id);
2939 if (ata_dma_blacklisted(d))
2940 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 }
2942
Tejun Heoa6d5a512006-03-06 04:31:57 +09002943 if (ata_dma_blacklisted(dev))
2944 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2945 "disabling DMA\n", ap->id, dev->devno);
2946
Alan Cox5444a6f2006-03-27 18:58:20 +01002947 if (hs->flags & ATA_HOST_SIMPLEX) {
2948 if (hs->simplex_claimed)
2949 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2950 }
Tejun Heo565083e2006-04-02 17:54:47 +09002951
Alan Cox5444a6f2006-03-27 18:58:20 +01002952 if (ap->ops->mode_filter)
2953 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
2954
Tejun Heo565083e2006-04-02 17:54:47 +09002955 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
2956 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957}
2958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 * @dev: Device to which command will be sent
2962 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002963 * Issue SET FEATURES - XFER MODE command to device @dev
2964 * on port @ap.
2965 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002967 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002968 *
2969 * RETURNS:
2970 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 */
2972
Tejun Heo3373efd2006-05-15 20:57:53 +09002973static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
Tejun Heoa0123702005-12-13 14:49:31 +09002975 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002976 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978 /* set up set-features taskfile */
2979 DPRINTK("set features - xfer mode\n");
2980
Tejun Heo3373efd2006-05-15 20:57:53 +09002981 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09002982 tf.command = ATA_CMD_SET_FEATURES;
2983 tf.feature = SETFEATURES_XFER;
2984 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2985 tf.protocol = ATA_PROT_NODATA;
2986 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Tejun Heo3373efd2006-05-15 20:57:53 +09002988 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Tejun Heo83206a22006-03-24 15:25:31 +09002990 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2991 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992}
2993
2994/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04002995 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04002996 * @dev: Device to which command will be sent
Tejun Heo3373efd2006-05-15 20:57:53 +09002997 * @heads: Number of heads
2998 * @sectors: Number of sectors
Albert Lee8bf62ece2005-05-12 15:29:42 -04002999 *
3000 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003001 * Kernel thread context (may sleep)
3002 *
3003 * RETURNS:
3004 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003005 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003006static unsigned int ata_dev_init_params(struct ata_device *dev,
3007 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003008{
Tejun Heoa0123702005-12-13 14:49:31 +09003009 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003010 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003011
3012 /* Number of sectors per track 1-255. Number of heads 1-16 */
3013 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003014 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003015
3016 /* set up init dev params taskfile */
3017 DPRINTK("init dev params \n");
3018
Tejun Heo3373efd2006-05-15 20:57:53 +09003019 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003020 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3021 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3022 tf.protocol = ATA_PROT_NODATA;
3023 tf.nsect = sectors;
3024 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003025
Tejun Heo3373efd2006-05-15 20:57:53 +09003026 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003027
Tejun Heo6aff8f12006-02-15 18:24:09 +09003028 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3029 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003030}
3031
3032/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003033 * ata_sg_clean - Unmap DMA memory associated with command
3034 * @qc: Command containing DMA memory to be released
3035 *
3036 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 *
3038 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003039 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 */
3041
3042static void ata_sg_clean(struct ata_queued_cmd *qc)
3043{
3044 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003045 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003047 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Tejun Heoa46314742006-02-11 19:11:13 +09003049 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3050 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
3052 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003053 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003055 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003057 /* if we padded the buffer out to 32-bit bound, and data
3058 * xfer direction is from-device, we must copy from the
3059 * pad buffer back into the supplied buffer
3060 */
3061 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3062 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3063
3064 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003065 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003066 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003067 /* restore last sg */
3068 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3069 if (pad_buf) {
3070 struct scatterlist *psg = &qc->pad_sgent;
3071 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3072 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003073 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003074 }
3075 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003076 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003077 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003078 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3079 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003080 /* restore sg */
3081 sg->length += qc->pad_len;
3082 if (pad_buf)
3083 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3084 pad_buf, qc->pad_len);
3085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
3087 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003088 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089}
3090
3091/**
3092 * ata_fill_sg - Fill PCI IDE PRD table
3093 * @qc: Metadata associated with taskfile to be transferred
3094 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003095 * Fill PCI IDE PRD (scatter-gather) table with segments
3096 * associated with the current disk command.
3097 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003099 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 *
3101 */
3102static void ata_fill_sg(struct ata_queued_cmd *qc)
3103{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003105 struct scatterlist *sg;
3106 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Tejun Heoa46314742006-02-11 19:11:13 +09003108 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003109 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
3111 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003112 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 u32 addr, offset;
3114 u32 sg_len, len;
3115
3116 /* determine if physical DMA addr spans 64K boundary.
3117 * Note h/w doesn't support 64-bit, so we unconditionally
3118 * truncate dma_addr_t to u32.
3119 */
3120 addr = (u32) sg_dma_address(sg);
3121 sg_len = sg_dma_len(sg);
3122
3123 while (sg_len) {
3124 offset = addr & 0xffff;
3125 len = sg_len;
3126 if ((offset + sg_len) > 0x10000)
3127 len = 0x10000 - offset;
3128
3129 ap->prd[idx].addr = cpu_to_le32(addr);
3130 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3131 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3132
3133 idx++;
3134 sg_len -= len;
3135 addr += len;
3136 }
3137 }
3138
3139 if (idx)
3140 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3141}
3142/**
3143 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3144 * @qc: Metadata associated with taskfile to check
3145 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003146 * Allow low-level driver to filter ATA PACKET commands, returning
3147 * a status indicating whether or not it is OK to use DMA for the
3148 * supplied PACKET command.
3149 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003151 * spin_lock_irqsave(host_set lock)
3152 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 * RETURNS: 0 when ATAPI DMA can be used
3154 * nonzero otherwise
3155 */
3156int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3157{
3158 struct ata_port *ap = qc->ap;
3159 int rc = 0; /* Assume ATAPI DMA is OK by default */
3160
3161 if (ap->ops->check_atapi_dma)
3162 rc = ap->ops->check_atapi_dma(qc);
3163
3164 return rc;
3165}
3166/**
3167 * ata_qc_prep - Prepare taskfile for submission
3168 * @qc: Metadata associated with taskfile to be prepared
3169 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003170 * Prepare ATA taskfile for submission.
3171 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 * LOCKING:
3173 * spin_lock_irqsave(host_set lock)
3174 */
3175void ata_qc_prep(struct ata_queued_cmd *qc)
3176{
3177 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3178 return;
3179
3180 ata_fill_sg(qc);
3181}
3182
Brian Kinge46834c2006-03-17 17:04:03 -06003183void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3184
Jeff Garzik0cba6322005-05-30 19:49:12 -04003185/**
3186 * ata_sg_init_one - Associate command with memory buffer
3187 * @qc: Command to be associated
3188 * @buf: Memory buffer
3189 * @buflen: Length of memory buffer, in bytes.
3190 *
3191 * Initialize the data-related elements of queued_cmd @qc
3192 * to point to a single memory buffer, @buf of byte length @buflen.
3193 *
3194 * LOCKING:
3195 * spin_lock_irqsave(host_set lock)
3196 */
3197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3199{
3200 struct scatterlist *sg;
3201
3202 qc->flags |= ATA_QCFLAG_SINGLE;
3203
3204 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003205 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003207 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 qc->buf_virt = buf;
3209
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003210 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003211 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212}
3213
Jeff Garzik0cba6322005-05-30 19:49:12 -04003214/**
3215 * ata_sg_init - Associate command with scatter-gather table.
3216 * @qc: Command to be associated
3217 * @sg: Scatter-gather table.
3218 * @n_elem: Number of elements in s/g table.
3219 *
3220 * Initialize the data-related elements of queued_cmd @qc
3221 * to point to a scatter-gather table @sg, containing @n_elem
3222 * elements.
3223 *
3224 * LOCKING:
3225 * spin_lock_irqsave(host_set lock)
3226 */
3227
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3229 unsigned int n_elem)
3230{
3231 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003232 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003234 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235}
3236
3237/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003238 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3239 * @qc: Command with memory buffer to be mapped.
3240 *
3241 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 *
3243 * LOCKING:
3244 * spin_lock_irqsave(host_set lock)
3245 *
3246 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003247 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 */
3249
3250static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3251{
3252 struct ata_port *ap = qc->ap;
3253 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003254 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003256 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003258 /* we must lengthen transfers to end on a 32-bit boundary */
3259 qc->pad_len = sg->length & 3;
3260 if (qc->pad_len) {
3261 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3262 struct scatterlist *psg = &qc->pad_sgent;
3263
Tejun Heoa46314742006-02-11 19:11:13 +09003264 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003265
3266 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3267
3268 if (qc->tf.flags & ATA_TFLAG_WRITE)
3269 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3270 qc->pad_len);
3271
3272 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3273 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3274 /* trim sg */
3275 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003276 if (sg->length == 0)
3277 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003278
3279 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3280 sg->length, qc->pad_len);
3281 }
3282
Tejun Heo2e242fa2006-02-20 23:48:38 +09003283 if (trim_sg) {
3284 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003285 goto skip_map;
3286 }
3287
Brian King2f1f6102006-03-23 17:30:15 -06003288 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003289 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003290 if (dma_mapping_error(dma_address)) {
3291 /* restore sg */
3292 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
3296 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003297 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
Tejun Heo2e242fa2006-02-20 23:48:38 +09003299skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3301 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3302
3303 return 0;
3304}
3305
3306/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003307 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3308 * @qc: Command with scatter-gather table to be mapped.
3309 *
3310 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 *
3312 * LOCKING:
3313 * spin_lock_irqsave(host_set lock)
3314 *
3315 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003316 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 *
3318 */
3319
3320static int ata_sg_setup(struct ata_queued_cmd *qc)
3321{
3322 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003323 struct scatterlist *sg = qc->__sg;
3324 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003325 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
3327 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa46314742006-02-11 19:11:13 +09003328 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003330 /* we must lengthen transfers to end on a 32-bit boundary */
3331 qc->pad_len = lsg->length & 3;
3332 if (qc->pad_len) {
3333 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3334 struct scatterlist *psg = &qc->pad_sgent;
3335 unsigned int offset;
3336
Tejun Heoa46314742006-02-11 19:11:13 +09003337 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003338
3339 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3340
3341 /*
3342 * psg->page/offset are used to copy to-be-written
3343 * data in this function or read data in ata_sg_clean.
3344 */
3345 offset = lsg->offset + lsg->length - qc->pad_len;
3346 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3347 psg->offset = offset_in_page(offset);
3348
3349 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3350 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3351 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003352 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003353 }
3354
3355 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3356 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3357 /* trim last sg */
3358 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003359 if (lsg->length == 0)
3360 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003361
3362 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3363 qc->n_elem - 1, lsg->length, qc->pad_len);
3364 }
3365
Jeff Garzike1410f22005-11-14 14:06:26 -05003366 pre_n_elem = qc->n_elem;
3367 if (trim_sg && pre_n_elem)
3368 pre_n_elem--;
3369
3370 if (!pre_n_elem) {
3371 n_elem = 0;
3372 goto skip_map;
3373 }
3374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003376 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003377 if (n_elem < 1) {
3378 /* restore last sg */
3379 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
3383 DPRINTK("%d sg elements mapped\n", n_elem);
3384
Jeff Garzike1410f22005-11-14 14:06:26 -05003385skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 qc->n_elem = n_elem;
3387
3388 return 0;
3389}
3390
3391/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003392 * ata_poll_qc_complete - turn irq back on and finish qc
3393 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003394 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003395 *
3396 * LOCKING:
3397 * None. (grabs host lock)
3398 */
3399
Albert Leea22e2eb2005-12-05 15:38:02 +08003400void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003401{
3402 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003403 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003404
Jeff Garzikb8f61532005-08-25 22:01:20 -04003405 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003406 ap->flags &= ~ATA_FLAG_NOINTR;
3407 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003408 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003409 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003410}
3411
3412/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003413 * ata_pio_poll - poll using PIO, depending on current state
Tejun Heoc91af2c2006-04-02 18:51:53 +09003414 * @qc: qc in progress
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 *
3416 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003417 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 *
3419 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003420 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003422static unsigned long ata_pio_poll(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003424 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08003426 unsigned int poll_state = HSM_ST_UNKNOWN;
3427 unsigned int reg_state = HSM_ST_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
Albert Lee14be71f2005-09-27 17:36:35 +08003429 switch (ap->hsm_task_state) {
3430 case HSM_ST:
3431 case HSM_ST_POLL:
3432 poll_state = HSM_ST_POLL;
3433 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 break;
Albert Lee14be71f2005-09-27 17:36:35 +08003435 case HSM_ST_LAST:
3436 case HSM_ST_LAST_POLL:
3437 poll_state = HSM_ST_LAST_POLL;
3438 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 break;
3440 default:
3441 BUG();
3442 break;
3443 }
3444
3445 status = ata_chk_status(ap);
3446 if (status & ATA_BUSY) {
3447 if (time_after(jiffies, ap->pio_task_timeout)) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003448 qc->err_mask |= AC_ERR_TIMEOUT;
Albert Lee7c398332005-11-09 13:03:30 +08003449 ap->hsm_task_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 return 0;
3451 }
Albert Lee14be71f2005-09-27 17:36:35 +08003452 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 return ATA_SHORT_PAUSE;
3454 }
3455
Albert Lee14be71f2005-09-27 17:36:35 +08003456 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 return 0;
3458}
3459
3460/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003461 * ata_pio_complete - check if drive is busy or idle
Tejun Heoc91af2c2006-04-02 18:51:53 +09003462 * @qc: qc to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 *
3464 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003465 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003466 *
3467 * RETURNS:
3468 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003470static int ata_pio_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003472 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 u8 drv_stat;
3474
3475 /*
Alan Cox31433ea2005-08-26 15:56:47 +01003476 * This is purely heuristic. This is a fast path. Sometimes when
3477 * we enter, BSY will be cleared in a chk-status or two. If not,
3478 * the drive is probably seeking or something. Snooze for a couple
3479 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003480 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 */
Albert Leefe79e682005-12-06 11:34:59 +08003482 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3483 if (drv_stat & ATA_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 msleep(2);
Albert Leefe79e682005-12-06 11:34:59 +08003485 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3486 if (drv_stat & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003487 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 }
3491 }
3492
3493 drv_stat = ata_wait_idle(ap);
3494 if (!ata_ok(drv_stat)) {
Albert Lee1c848982005-12-05 15:40:15 +08003495 qc->err_mask |= __ac_err_mask(drv_stat);
Albert Lee14be71f2005-09-27 17:36:35 +08003496 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003497 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 }
3499
Albert Lee14be71f2005-09-27 17:36:35 +08003500 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501
Tejun Heoa46314742006-02-11 19:11:13 +09003502 WARN_ON(qc->err_mask);
Albert Leea22e2eb2005-12-05 15:38:02 +08003503 ata_poll_qc_complete(qc);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003504
3505 /* another command may start at this point */
3506
3507 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508}
3509
Edward Falk0baab862005-06-02 18:17:13 -04003510
3511/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003512 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003513 * @buf: Buffer to swap
3514 * @buf_words: Number of 16-bit words in buffer.
3515 *
3516 * Swap halves of 16-bit words if needed to convert from
3517 * little-endian byte order to native cpu byte order, or
3518 * vice-versa.
3519 *
3520 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003521 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003522 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523void swap_buf_le16(u16 *buf, unsigned int buf_words)
3524{
3525#ifdef __BIG_ENDIAN
3526 unsigned int i;
3527
3528 for (i = 0; i < buf_words; i++)
3529 buf[i] = le16_to_cpu(buf[i]);
3530#endif /* __BIG_ENDIAN */
3531}
3532
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003533/**
3534 * ata_mmio_data_xfer - Transfer data by MMIO
3535 * @ap: port to read/write
3536 * @buf: data buffer
3537 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003538 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003539 *
3540 * Transfer data from/to the device data register by MMIO.
3541 *
3542 * LOCKING:
3543 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003544 */
3545
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3547 unsigned int buflen, int write_data)
3548{
3549 unsigned int i;
3550 unsigned int words = buflen >> 1;
3551 u16 *buf16 = (u16 *) buf;
3552 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3553
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003554 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 if (write_data) {
3556 for (i = 0; i < words; i++)
3557 writew(le16_to_cpu(buf16[i]), mmio);
3558 } else {
3559 for (i = 0; i < words; i++)
3560 buf16[i] = cpu_to_le16(readw(mmio));
3561 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003562
3563 /* Transfer trailing 1 byte, if any. */
3564 if (unlikely(buflen & 0x01)) {
3565 u16 align_buf[1] = { 0 };
3566 unsigned char *trailing_buf = buf + buflen - 1;
3567
3568 if (write_data) {
3569 memcpy(align_buf, trailing_buf, 1);
3570 writew(le16_to_cpu(align_buf[0]), mmio);
3571 } else {
3572 align_buf[0] = cpu_to_le16(readw(mmio));
3573 memcpy(trailing_buf, align_buf, 1);
3574 }
3575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576}
3577
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003578/**
3579 * ata_pio_data_xfer - Transfer data by PIO
3580 * @ap: port to read/write
3581 * @buf: data buffer
3582 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003583 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003584 *
3585 * Transfer data from/to the device data register by PIO.
3586 *
3587 * LOCKING:
3588 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003589 */
3590
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3592 unsigned int buflen, int write_data)
3593{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003594 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003596 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003598 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003600 insw(ap->ioaddr.data_addr, buf, words);
3601
3602 /* Transfer trailing 1 byte, if any. */
3603 if (unlikely(buflen & 0x01)) {
3604 u16 align_buf[1] = { 0 };
3605 unsigned char *trailing_buf = buf + buflen - 1;
3606
3607 if (write_data) {
3608 memcpy(align_buf, trailing_buf, 1);
3609 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3610 } else {
3611 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3612 memcpy(trailing_buf, align_buf, 1);
3613 }
3614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615}
3616
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003617/**
3618 * ata_data_xfer - Transfer data from/to the data register.
3619 * @ap: port to read/write
3620 * @buf: data buffer
3621 * @buflen: buffer length
3622 * @do_write: read/write
3623 *
3624 * Transfer data from/to the device data register.
3625 *
3626 * LOCKING:
3627 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003628 */
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3631 unsigned int buflen, int do_write)
3632{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003633 /* Make the crap hardware pay the costs not the good stuff */
3634 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3635 unsigned long flags;
3636 local_irq_save(flags);
3637 if (ap->flags & ATA_FLAG_MMIO)
3638 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3639 else
3640 ata_pio_data_xfer(ap, buf, buflen, do_write);
3641 local_irq_restore(flags);
3642 } else {
3643 if (ap->flags & ATA_FLAG_MMIO)
3644 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3645 else
3646 ata_pio_data_xfer(ap, buf, buflen, do_write);
3647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648}
3649
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003650/**
3651 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3652 * @qc: Command on going
3653 *
3654 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3655 *
3656 * LOCKING:
3657 * Inherited from caller.
3658 */
3659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660static void ata_pio_sector(struct ata_queued_cmd *qc)
3661{
3662 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003663 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 struct ata_port *ap = qc->ap;
3665 struct page *page;
3666 unsigned int offset;
3667 unsigned char *buf;
3668
3669 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003670 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
3672 page = sg[qc->cursg].page;
3673 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3674
3675 /* get the current page and offset */
3676 page = nth_page(page, (offset >> PAGE_SHIFT));
3677 offset %= PAGE_SIZE;
3678
3679 buf = kmap(page) + offset;
3680
3681 qc->cursect++;
3682 qc->cursg_ofs++;
3683
Albert Lee32529e02005-05-26 03:49:42 -04003684 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 qc->cursg++;
3686 qc->cursg_ofs = 0;
3687 }
3688
3689 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3690
3691 /* do the actual data transfer */
3692 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3693 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3694
3695 kunmap(page);
3696}
3697
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003698/**
3699 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3700 * @qc: Command on going
3701 * @bytes: number of bytes
3702 *
3703 * Transfer Transfer data from/to the ATAPI device.
3704 *
3705 * LOCKING:
3706 * Inherited from caller.
3707 *
3708 */
3709
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3711{
3712 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003713 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 struct ata_port *ap = qc->ap;
3715 struct page *page;
3716 unsigned char *buf;
3717 unsigned int offset, count;
3718
Albert Lee563a6e12005-08-12 14:17:50 +08003719 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003720 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
3722next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003723 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003724 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003725 * The end of qc->sg is reached and the device expects
3726 * more data to transfer. In order not to overrun qc->sg
3727 * and fulfill length specified in the byte count register,
3728 * - for read case, discard trailing data from the device
3729 * - for write case, padding zero data to the device
3730 */
3731 u16 pad_buf[1] = { 0 };
3732 unsigned int words = bytes >> 1;
3733 unsigned int i;
3734
3735 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003736 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003737 ap->id, bytes);
3738
3739 for (i = 0; i < words; i++)
3740 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3741
Albert Lee14be71f2005-09-27 17:36:35 +08003742 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003743 return;
3744 }
3745
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003746 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 page = sg->page;
3749 offset = sg->offset + qc->cursg_ofs;
3750
3751 /* get the current page and offset */
3752 page = nth_page(page, (offset >> PAGE_SHIFT));
3753 offset %= PAGE_SIZE;
3754
Albert Lee6952df02005-06-06 15:56:03 +08003755 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003756 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
3758 /* don't cross page boundaries */
3759 count = min(count, (unsigned int)PAGE_SIZE - offset);
3760
3761 buf = kmap(page) + offset;
3762
3763 bytes -= count;
3764 qc->curbytes += count;
3765 qc->cursg_ofs += count;
3766
Albert Lee32529e02005-05-26 03:49:42 -04003767 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 qc->cursg++;
3769 qc->cursg_ofs = 0;
3770 }
3771
3772 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3773
3774 /* do the actual data transfer */
3775 ata_data_xfer(ap, buf, count, do_write);
3776
3777 kunmap(page);
3778
Albert Lee563a6e12005-08-12 14:17:50 +08003779 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781}
3782
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003783/**
3784 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3785 * @qc: Command on going
3786 *
3787 * Transfer Transfer data from/to the ATAPI device.
3788 *
3789 * LOCKING:
3790 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003791 */
3792
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3794{
3795 struct ata_port *ap = qc->ap;
3796 struct ata_device *dev = qc->dev;
3797 unsigned int ireason, bc_lo, bc_hi, bytes;
3798 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3799
3800 ap->ops->tf_read(ap, &qc->tf);
3801 ireason = qc->tf.nsect;
3802 bc_lo = qc->tf.lbam;
3803 bc_hi = qc->tf.lbah;
3804 bytes = (bc_hi << 8) | bc_lo;
3805
3806 /* shall be cleared to zero, indicating xfer of data */
3807 if (ireason & (1 << 0))
3808 goto err_out;
3809
3810 /* make sure transfer direction matches expected */
3811 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3812 if (do_write != i_write)
3813 goto err_out;
3814
3815 __atapi_pio_bytes(qc, bytes);
3816
3817 return;
3818
3819err_out:
3820 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3821 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003822 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003823 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824}
3825
3826/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003827 * ata_pio_block - start PIO on a block
Tejun Heoc91af2c2006-04-02 18:51:53 +09003828 * @qc: qc to transfer block for
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 *
3830 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003831 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003833static void ata_pio_block(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003835 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 u8 status;
3837
3838 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003839 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 * Sometimes when we enter, BSY will be cleared in
3841 * a chk-status or two. If not, the drive is probably seeking
3842 * or something. Snooze for a couple msecs, then
3843 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003844 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 */
3846 status = ata_busy_wait(ap, ATA_BUSY, 5);
3847 if (status & ATA_BUSY) {
3848 msleep(2);
3849 status = ata_busy_wait(ap, ATA_BUSY, 10);
3850 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003851 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3853 return;
3854 }
3855 }
3856
Albert Leefe79e682005-12-06 11:34:59 +08003857 /* check error */
3858 if (status & (ATA_ERR | ATA_DF)) {
3859 qc->err_mask |= AC_ERR_DEV;
3860 ap->hsm_task_state = HSM_ST_ERR;
3861 return;
3862 }
3863
3864 /* transfer data if any */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 if (is_atapi_taskfile(&qc->tf)) {
Albert Leefe79e682005-12-06 11:34:59 +08003866 /* DRQ=0 means no more data to transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003868 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 return;
3870 }
3871
3872 atapi_pio_bytes(qc);
3873 } else {
3874 /* handle BSY=0, DRQ=0 as error */
3875 if ((status & ATA_DRQ) == 0) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003876 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003877 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 return;
3879 }
3880
3881 ata_pio_sector(qc);
3882 }
3883}
3884
Tejun Heoc91af2c2006-04-02 18:51:53 +09003885static void ata_pio_error(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003887 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Albert Lee0565c262006-02-13 18:55:25 +08003889 if (qc->tf.command != ATA_CMD_PACKET)
Tejun Heod63cb4a2006-04-02 18:51:52 +09003890 printk(KERN_WARNING "ata%u: dev %u PIO error\n",
3891 ap->id, qc->dev->devno);
Albert Lee0565c262006-02-13 18:55:25 +08003892
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003893 /* make sure qc->err_mask is available to
Albert Lee1c848982005-12-05 15:40:15 +08003894 * know what's wrong and recover
3895 */
Tejun Heoa46314742006-02-11 19:11:13 +09003896 WARN_ON(qc->err_mask == 0);
Albert Lee1c848982005-12-05 15:40:15 +08003897
Albert Lee14be71f2005-09-27 17:36:35 +08003898 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899
Albert Leea22e2eb2005-12-05 15:38:02 +08003900 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901}
3902
3903static void ata_pio_task(void *_data)
3904{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003905 struct ata_queued_cmd *qc = _data;
3906 struct ata_port *ap = qc->ap;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003907 unsigned long timeout;
3908 int qc_completed;
3909
3910fsm_start:
3911 timeout = 0;
3912 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Albert Lee14be71f2005-09-27 17:36:35 +08003914 switch (ap->hsm_task_state) {
3915 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 return;
3917
Albert Lee14be71f2005-09-27 17:36:35 +08003918 case HSM_ST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003919 ata_pio_block(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 break;
3921
Albert Lee14be71f2005-09-27 17:36:35 +08003922 case HSM_ST_LAST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003923 qc_completed = ata_pio_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 break;
3925
Albert Lee14be71f2005-09-27 17:36:35 +08003926 case HSM_ST_POLL:
3927 case HSM_ST_LAST_POLL:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003928 timeout = ata_pio_poll(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 break;
3930
Albert Lee14be71f2005-09-27 17:36:35 +08003931 case HSM_ST_TMOUT:
3932 case HSM_ST_ERR:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003933 ata_pio_error(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 return;
3935 }
3936
3937 if (timeout)
Tejun Heoc91af2c2006-04-02 18:51:53 +09003938 ata_port_queue_task(ap, ata_pio_task, qc, timeout);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003939 else if (!qc_completed)
3940 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941}
3942
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943/**
Tejun Heo8061f5f2006-03-05 15:29:09 +09003944 * atapi_packet_task - Write CDB bytes to hardware
Tejun Heoc91af2c2006-04-02 18:51:53 +09003945 * @_data: qc in progress
Tejun Heo8061f5f2006-03-05 15:29:09 +09003946 *
3947 * When device has indicated its readiness to accept
3948 * a CDB, this function is called. Send the CDB.
3949 * If DMA is to be performed, exit immediately.
3950 * Otherwise, we are in polling mode, so poll
3951 * status under operation succeeds or fails.
3952 *
3953 * LOCKING:
3954 * Kernel thread context (may sleep)
3955 */
Tejun Heo8061f5f2006-03-05 15:29:09 +09003956static void atapi_packet_task(void *_data)
3957{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003958 struct ata_queued_cmd *qc = _data;
3959 struct ata_port *ap = qc->ap;
Tejun Heo8061f5f2006-03-05 15:29:09 +09003960 u8 status;
3961
Tejun Heo8061f5f2006-03-05 15:29:09 +09003962 /* sleep-wait for BSY to clear */
3963 DPRINTK("busy wait\n");
3964 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
3965 qc->err_mask |= AC_ERR_TIMEOUT;
3966 goto err_out;
3967 }
3968
3969 /* make sure DRQ is set */
3970 status = ata_chk_status(ap);
3971 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
3972 qc->err_mask |= AC_ERR_HSM;
3973 goto err_out;
3974 }
3975
3976 /* send SCSI cdb */
3977 DPRINTK("send cdb\n");
3978 WARN_ON(qc->dev->cdb_len < 12);
3979
3980 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
3981 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
3982 unsigned long flags;
3983
3984 /* Once we're done issuing command and kicking bmdma,
3985 * irq handler takes over. To not lose irq, we need
3986 * to clear NOINTR flag before sending cdb, but
3987 * interrupt handler shouldn't be invoked before we're
3988 * finished. Hence, the following locking.
3989 */
3990 spin_lock_irqsave(&ap->host_set->lock, flags);
3991 ap->flags &= ~ATA_FLAG_NOINTR;
3992 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
3993 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
3994 ap->ops->bmdma_start(qc); /* initiate bmdma */
3995 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3996 } else {
3997 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
3998
3999 /* PIO commands are handled by polling */
4000 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004001 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Tejun Heo8061f5f2006-03-05 15:29:09 +09004002 }
4003
4004 return;
4005
4006err_out:
4007 ata_poll_qc_complete(qc);
4008}
4009
4010/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 * ata_qc_new - Request an available ATA command, for queueing
4012 * @ap: Port associated with device @dev
4013 * @dev: Device from whom we request an available command structure
4014 *
4015 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004016 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 */
4018
4019static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4020{
4021 struct ata_queued_cmd *qc = NULL;
4022 unsigned int i;
4023
4024 for (i = 0; i < ATA_MAX_QUEUE; i++)
4025 if (!test_and_set_bit(i, &ap->qactive)) {
4026 qc = ata_qc_from_tag(ap, i);
4027 break;
4028 }
4029
4030 if (qc)
4031 qc->tag = i;
4032
4033 return qc;
4034}
4035
4036/**
4037 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 * @dev: Device from whom we request an available command structure
4039 *
4040 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004041 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 */
4043
Tejun Heo3373efd2006-05-15 20:57:53 +09004044struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045{
Tejun Heo3373efd2006-05-15 20:57:53 +09004046 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 struct ata_queued_cmd *qc;
4048
4049 qc = ata_qc_new(ap);
4050 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 qc->scsicmd = NULL;
4052 qc->ap = ap;
4053 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004055 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 }
4057
4058 return qc;
4059}
4060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061/**
4062 * ata_qc_free - free unused ata_queued_cmd
4063 * @qc: Command to complete
4064 *
4065 * Designed to free unused ata_queued_cmd object
4066 * in case something prevents using it.
4067 *
4068 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004069 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 */
4071void ata_qc_free(struct ata_queued_cmd *qc)
4072{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004073 struct ata_port *ap = qc->ap;
4074 unsigned int tag;
4075
Tejun Heoa46314742006-02-11 19:11:13 +09004076 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Tejun Heo4ba946e2006-01-23 13:09:36 +09004078 qc->flags = 0;
4079 tag = qc->tag;
4080 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004081 qc->tag = ATA_TAG_POISON;
4082 clear_bit(tag, &ap->qactive);
4083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084}
4085
Tejun Heo76014422006-02-11 15:13:49 +09004086void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087{
Tejun Heoa46314742006-02-11 19:11:13 +09004088 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4089 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
4091 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4092 ata_sg_clean(qc);
4093
Tejun Heo7401abf2006-05-15 20:57:32 +09004094 /* command should be marked inactive atomically with qc completion */
4095 qc->ap->active_tag = ATA_TAG_POISON;
4096
Albert Lee3f3791d2005-08-16 14:25:38 +08004097 /* atapi: mark qc as inactive to prevent the interrupt handler
4098 * from completing the command twice later, before the error handler
4099 * is called. (when rc != 0 and atapi request sense is needed)
4100 */
4101 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4102
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004104 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105}
4106
4107static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4108{
4109 struct ata_port *ap = qc->ap;
4110
4111 switch (qc->tf.protocol) {
4112 case ATA_PROT_DMA:
4113 case ATA_PROT_ATAPI_DMA:
4114 return 1;
4115
4116 case ATA_PROT_ATAPI:
4117 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 if (ap->flags & ATA_FLAG_PIO_DMA)
4119 return 1;
4120
4121 /* fall through */
4122
4123 default:
4124 return 0;
4125 }
4126
4127 /* never reached */
4128}
4129
4130/**
4131 * ata_qc_issue - issue taskfile to device
4132 * @qc: command to issue to device
4133 *
4134 * Prepare an ATA command to submission to device.
4135 * This includes mapping the data into a DMA-able
4136 * area, filling in the S/G table, and finally
4137 * writing the taskfile to hardware, starting the command.
4138 *
4139 * LOCKING:
4140 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004142void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143{
4144 struct ata_port *ap = qc->ap;
4145
Tejun Heoe4a70e72006-03-31 20:36:47 +09004146 qc->ap->active_tag = qc->tag;
4147 qc->flags |= ATA_QCFLAG_ACTIVE;
4148
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 if (ata_should_dma_map(qc)) {
4150 if (qc->flags & ATA_QCFLAG_SG) {
4151 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004152 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4154 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004155 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 }
4157 } else {
4158 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4159 }
4160
4161 ap->ops->qc_prep(qc);
4162
Tejun Heo8e0e6942006-03-31 20:41:11 +09004163 qc->err_mask |= ap->ops->qc_issue(qc);
4164 if (unlikely(qc->err_mask))
4165 goto err;
4166 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
Tejun Heo8e436af2006-01-23 13:09:36 +09004168sg_err:
4169 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004170 qc->err_mask |= AC_ERR_SYSTEM;
4171err:
4172 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173}
4174
4175/**
4176 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4177 * @qc: command to issue to device
4178 *
4179 * Using various libata functions and hooks, this function
4180 * starts an ATA command. ATA commands are grouped into
4181 * classes called "protocols", and issuing each type of protocol
4182 * is slightly different.
4183 *
Edward Falk0baab862005-06-02 18:17:13 -04004184 * May be used as the qc_issue() entry in ata_port_operations.
4185 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 * LOCKING:
4187 * spin_lock_irqsave(host_set lock)
4188 *
4189 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004190 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 */
4192
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004193unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194{
4195 struct ata_port *ap = qc->ap;
4196
4197 ata_dev_select(ap, qc->dev->devno, 1, 0);
4198
4199 switch (qc->tf.protocol) {
4200 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05004201 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 break;
4203
4204 case ATA_PROT_DMA:
4205 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4206 ap->ops->bmdma_setup(qc); /* set up bmdma */
4207 ap->ops->bmdma_start(qc); /* initiate bmdma */
4208 break;
4209
4210 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
4211 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004212 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08004213 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004214 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 break;
4216
4217 case ATA_PROT_ATAPI:
4218 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004219 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004220 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 break;
4222
4223 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09004224 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05004225 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004226 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 break;
4228
4229 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09004230 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4232 ap->ops->bmdma_setup(qc); /* set up bmdma */
Tejun Heoc91af2c2006-04-02 18:51:53 +09004233 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 break;
4235
4236 default:
4237 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004238 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 }
4240
4241 return 0;
4242}
4243
4244/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 * ata_host_intr - Handle host interrupt for given (port, task)
4246 * @ap: Port on which interrupt arrived (possibly...)
4247 * @qc: Taskfile currently active in engine
4248 *
4249 * Handle host interrupt for given queued command. Currently,
4250 * only DMA interrupts are handled. All other commands are
4251 * handled via polling with interrupts disabled (nIEN bit).
4252 *
4253 * LOCKING:
4254 * spin_lock_irqsave(host_set lock)
4255 *
4256 * RETURNS:
4257 * One if interrupt was handled, zero if not (shared irq).
4258 */
4259
4260inline unsigned int ata_host_intr (struct ata_port *ap,
4261 struct ata_queued_cmd *qc)
4262{
4263 u8 status, host_stat;
4264
4265 switch (qc->tf.protocol) {
4266
4267 case ATA_PROT_DMA:
4268 case ATA_PROT_ATAPI_DMA:
4269 case ATA_PROT_ATAPI:
4270 /* check status of DMA engine */
4271 host_stat = ap->ops->bmdma_status(ap);
4272 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4273
4274 /* if it's not our irq... */
4275 if (!(host_stat & ATA_DMA_INTR))
4276 goto idle_irq;
4277
4278 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004279 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
4281 /* fall through */
4282
4283 case ATA_PROT_ATAPI_NODATA:
4284 case ATA_PROT_NODATA:
4285 /* check altstatus */
4286 status = ata_altstatus(ap);
4287 if (status & ATA_BUSY)
4288 goto idle_irq;
4289
4290 /* check main status, clearing INTRQ */
4291 status = ata_chk_status(ap);
4292 if (unlikely(status & ATA_BUSY))
4293 goto idle_irq;
4294 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4295 ap->id, qc->tf.protocol, status);
4296
4297 /* ack bmdma irq events */
4298 ap->ops->irq_clear(ap);
4299
4300 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004301 qc->err_mask |= ac_err_mask(status);
4302 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 break;
4304
4305 default:
4306 goto idle_irq;
4307 }
4308
4309 return 1; /* irq handled */
4310
4311idle_irq:
4312 ap->stats.idle_irq++;
4313
4314#ifdef ATA_IRQ_TRAP
4315 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 ata_irq_ack(ap, 0); /* debug trap */
4317 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
Alan Cox23cfce82006-03-21 16:06:53 +00004318 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 }
4320#endif
4321 return 0; /* irq not handled */
4322}
4323
4324/**
4325 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004326 * @irq: irq line (unused)
4327 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 * @regs: unused
4329 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004330 * Default interrupt handler for PCI IDE devices. Calls
4331 * ata_host_intr() for each port that is not disabled.
4332 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004334 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 *
4336 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004337 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 */
4339
4340irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4341{
4342 struct ata_host_set *host_set = dev_instance;
4343 unsigned int i;
4344 unsigned int handled = 0;
4345 unsigned long flags;
4346
4347 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4348 spin_lock_irqsave(&host_set->lock, flags);
4349
4350 for (i = 0; i < host_set->n_ports; i++) {
4351 struct ata_port *ap;
4352
4353 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004354 if (ap &&
Tejun Heo198e0fe2006-04-02 18:51:52 +09004355 !(ap->flags & (ATA_FLAG_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 struct ata_queued_cmd *qc;
4357
4358 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08004359 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4360 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 handled |= ata_host_intr(ap, qc);
4362 }
4363 }
4364
4365 spin_unlock_irqrestore(&host_set->lock, flags);
4366
4367 return IRQ_RETVAL(handled);
4368}
4369
Tejun Heo34bf2172006-05-15 20:57:46 +09004370/**
4371 * sata_scr_valid - test whether SCRs are accessible
4372 * @ap: ATA port to test SCR accessibility for
4373 *
4374 * Test whether SCRs are accessible for @ap.
4375 *
4376 * LOCKING:
4377 * None.
4378 *
4379 * RETURNS:
4380 * 1 if SCRs are accessible, 0 otherwise.
4381 */
4382int sata_scr_valid(struct ata_port *ap)
4383{
4384 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
4385}
4386
4387/**
4388 * sata_scr_read - read SCR register of the specified port
4389 * @ap: ATA port to read SCR for
4390 * @reg: SCR to read
4391 * @val: Place to store read value
4392 *
4393 * Read SCR register @reg of @ap into *@val. This function is
4394 * guaranteed to succeed if the cable type of the port is SATA
4395 * and the port implements ->scr_read.
4396 *
4397 * LOCKING:
4398 * None.
4399 *
4400 * RETURNS:
4401 * 0 on success, negative errno on failure.
4402 */
4403int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
4404{
4405 if (sata_scr_valid(ap)) {
4406 *val = ap->ops->scr_read(ap, reg);
4407 return 0;
4408 }
4409 return -EOPNOTSUPP;
4410}
4411
4412/**
4413 * sata_scr_write - write SCR register of the specified port
4414 * @ap: ATA port to write SCR for
4415 * @reg: SCR to write
4416 * @val: value to write
4417 *
4418 * Write @val to SCR register @reg of @ap. This function is
4419 * guaranteed to succeed if the cable type of the port is SATA
4420 * and the port implements ->scr_read.
4421 *
4422 * LOCKING:
4423 * None.
4424 *
4425 * RETURNS:
4426 * 0 on success, negative errno on failure.
4427 */
4428int sata_scr_write(struct ata_port *ap, int reg, u32 val)
4429{
4430 if (sata_scr_valid(ap)) {
4431 ap->ops->scr_write(ap, reg, val);
4432 return 0;
4433 }
4434 return -EOPNOTSUPP;
4435}
4436
4437/**
4438 * sata_scr_write_flush - write SCR register of the specified port and flush
4439 * @ap: ATA port to write SCR for
4440 * @reg: SCR to write
4441 * @val: value to write
4442 *
4443 * This function is identical to sata_scr_write() except that this
4444 * function performs flush after writing to the register.
4445 *
4446 * LOCKING:
4447 * None.
4448 *
4449 * RETURNS:
4450 * 0 on success, negative errno on failure.
4451 */
4452int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
4453{
4454 if (sata_scr_valid(ap)) {
4455 ap->ops->scr_write(ap, reg, val);
4456 ap->ops->scr_read(ap, reg);
4457 return 0;
4458 }
4459 return -EOPNOTSUPP;
4460}
4461
4462/**
4463 * ata_port_online - test whether the given port is online
4464 * @ap: ATA port to test
4465 *
4466 * Test whether @ap is online. Note that this function returns 0
4467 * if online status of @ap cannot be obtained, so
4468 * ata_port_online(ap) != !ata_port_offline(ap).
4469 *
4470 * LOCKING:
4471 * None.
4472 *
4473 * RETURNS:
4474 * 1 if the port online status is available and online.
4475 */
4476int ata_port_online(struct ata_port *ap)
4477{
4478 u32 sstatus;
4479
4480 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
4481 return 1;
4482 return 0;
4483}
4484
4485/**
4486 * ata_port_offline - test whether the given port is offline
4487 * @ap: ATA port to test
4488 *
4489 * Test whether @ap is offline. Note that this function returns
4490 * 0 if offline status of @ap cannot be obtained, so
4491 * ata_port_online(ap) != !ata_port_offline(ap).
4492 *
4493 * LOCKING:
4494 * None.
4495 *
4496 * RETURNS:
4497 * 1 if the port offline status is available and offline.
4498 */
4499int ata_port_offline(struct ata_port *ap)
4500{
4501 u32 sstatus;
4502
4503 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
4504 return 1;
4505 return 0;
4506}
Edward Falk0baab862005-06-02 18:17:13 -04004507
Jens Axboe9b847542006-01-06 09:28:07 +01004508/*
4509 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4510 * without filling any other registers
4511 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004512static int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Jens Axboe9b847542006-01-06 09:28:07 +01004513{
4514 struct ata_taskfile tf;
4515 int err;
4516
Tejun Heo3373efd2006-05-15 20:57:53 +09004517 ata_tf_init(dev, &tf);
Jens Axboe9b847542006-01-06 09:28:07 +01004518
4519 tf.command = cmd;
4520 tf.flags |= ATA_TFLAG_DEVICE;
4521 tf.protocol = ATA_PROT_NODATA;
4522
Tejun Heo3373efd2006-05-15 20:57:53 +09004523 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004524 if (err)
4525 printk(KERN_ERR "%s: ata command failed: %d\n",
4526 __FUNCTION__, err);
4527
4528 return err;
4529}
4530
Tejun Heo3373efd2006-05-15 20:57:53 +09004531static int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004532{
4533 u8 cmd;
4534
4535 if (!ata_try_flush_cache(dev))
4536 return 0;
4537
4538 if (ata_id_has_flush_ext(dev->id))
4539 cmd = ATA_CMD_FLUSH_EXT;
4540 else
4541 cmd = ATA_CMD_FLUSH;
4542
Tejun Heo3373efd2006-05-15 20:57:53 +09004543 return ata_do_simple_cmd(dev, cmd);
Jens Axboe9b847542006-01-06 09:28:07 +01004544}
4545
Tejun Heo3373efd2006-05-15 20:57:53 +09004546static int ata_standby_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004547{
Tejun Heo3373efd2006-05-15 20:57:53 +09004548 return ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1);
Jens Axboe9b847542006-01-06 09:28:07 +01004549}
4550
Tejun Heo3373efd2006-05-15 20:57:53 +09004551static int ata_start_drive(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004552{
Tejun Heo3373efd2006-05-15 20:57:53 +09004553 return ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE);
Jens Axboe9b847542006-01-06 09:28:07 +01004554}
4555
4556/**
4557 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004558 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004559 *
4560 * Kick the drive back into action, by sending it an idle immediate
4561 * command and making sure its transfer mode matches between drive
4562 * and host.
4563 *
4564 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004565int ata_device_resume(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004566{
Tejun Heo3373efd2006-05-15 20:57:53 +09004567 struct ata_port *ap = dev->ap;
4568
Jens Axboe9b847542006-01-06 09:28:07 +01004569 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004570 struct ata_device *failed_dev;
Jens Axboe9b847542006-01-06 09:28:07 +01004571 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004572 while (ata_set_mode(ap, &failed_dev))
Tejun Heo3373efd2006-05-15 20:57:53 +09004573 ata_dev_disable(failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004574 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004575 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004576 return 0;
4577 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09004578 ata_start_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004579
4580 return 0;
4581}
4582
4583/**
4584 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004585 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004586 *
4587 * Flush the cache on the drive, if appropriate, then issue a
4588 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004589 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004590int ata_device_suspend(struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004591{
Tejun Heo3373efd2006-05-15 20:57:53 +09004592 struct ata_port *ap = dev->ap;
4593
Tejun Heoe1211e32006-04-01 01:38:18 +09004594 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004595 return 0;
4596 if (dev->class == ATA_DEV_ATA)
Tejun Heo3373efd2006-05-15 20:57:53 +09004597 ata_flush_cache(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004598
Nigel Cunningham082776e2006-03-23 23:22:16 +10004599 if (state.event != PM_EVENT_FREEZE)
Tejun Heo3373efd2006-05-15 20:57:53 +09004600 ata_standby_drive(dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004601 ap->flags |= ATA_FLAG_SUSPENDED;
4602 return 0;
4603}
4604
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004605/**
4606 * ata_port_start - Set port up for dma.
4607 * @ap: Port to initialize
4608 *
4609 * Called just after data structures for each port are
4610 * initialized. Allocates space for PRD table.
4611 *
4612 * May be used as the port_start() entry in ata_port_operations.
4613 *
4614 * LOCKING:
4615 * Inherited from caller.
4616 */
4617
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618int ata_port_start (struct ata_port *ap)
4619{
Brian King2f1f6102006-03-23 17:30:15 -06004620 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004621 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
4623 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4624 if (!ap->prd)
4625 return -ENOMEM;
4626
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004627 rc = ata_pad_alloc(ap, dev);
4628 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004629 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004630 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004631 }
4632
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4634
4635 return 0;
4636}
4637
Edward Falk0baab862005-06-02 18:17:13 -04004638
4639/**
4640 * ata_port_stop - Undo ata_port_start()
4641 * @ap: Port to shut down
4642 *
4643 * Frees the PRD table.
4644 *
4645 * May be used as the port_stop() entry in ata_port_operations.
4646 *
4647 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004648 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004649 */
4650
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651void ata_port_stop (struct ata_port *ap)
4652{
Brian King2f1f6102006-03-23 17:30:15 -06004653 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
4655 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004656 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657}
4658
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004659void ata_host_stop (struct ata_host_set *host_set)
4660{
4661 if (host_set->mmio_base)
4662 iounmap(host_set->mmio_base);
4663}
4664
4665
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666/**
4667 * ata_host_remove - Unregister SCSI host structure with upper layers
4668 * @ap: Port to unregister
4669 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4670 *
4671 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004672 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 */
4674
4675static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4676{
4677 struct Scsi_Host *sh = ap->host;
4678
4679 DPRINTK("ENTER\n");
4680
4681 if (do_unregister)
4682 scsi_remove_host(sh);
4683
4684 ap->ops->port_stop(ap);
4685}
4686
4687/**
4688 * ata_host_init - Initialize an ata_port structure
4689 * @ap: Structure to initialize
4690 * @host: associated SCSI mid-layer structure
4691 * @host_set: Collection of hosts to which @ap belongs
4692 * @ent: Probe information provided by low-level driver
4693 * @port_no: Port number associated with this ata_port
4694 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004695 * Initialize a new ata_port structure, and its associated
4696 * scsi_host.
4697 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004699 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 */
4701
4702static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4703 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004704 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705{
4706 unsigned int i;
4707
4708 host->max_id = 16;
4709 host->max_lun = 1;
4710 host->max_channel = 1;
4711 host->unique_id = ata_unique_id++;
4712 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004713
Tejun Heo198e0fe2006-04-02 18:51:52 +09004714 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 ap->id = host->unique_id;
4716 ap->host = host;
4717 ap->ctl = ATA_DEVCTL_OBS;
4718 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06004719 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 ap->port_no = port_no;
4721 ap->hard_port_no =
4722 ent->legacy_mode ? ent->hard_port_no : port_no;
4723 ap->pio_mask = ent->pio_mask;
4724 ap->mwdma_mask = ent->mwdma_mask;
4725 ap->udma_mask = ent->udma_mask;
4726 ap->flags |= ent->host_flags;
4727 ap->ops = ent->port_ops;
Tejun Heo1c3fae42006-04-02 20:53:28 +09004728 ap->sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 ap->active_tag = ATA_TAG_POISON;
4730 ap->last_ctl = 0xFF;
4731
Tejun Heo86e45b62006-03-05 15:29:09 +09004732 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004733 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
Tejun Heo838df622006-05-15 20:57:44 +09004735 /* set cable type */
4736 ap->cbl = ATA_CBL_NONE;
4737 if (ap->flags & ATA_FLAG_SATA)
4738 ap->cbl = ATA_CBL_SATA;
4739
Tejun Heoacf356b2006-03-24 14:07:50 +09004740 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4741 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09004742 dev->ap = ap;
Tejun Heoacf356b2006-03-24 14:07:50 +09004743 dev->devno = i;
4744 dev->pio_mask = UINT_MAX;
4745 dev->mwdma_mask = UINT_MAX;
4746 dev->udma_mask = UINT_MAX;
4747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748
4749#ifdef ATA_IRQ_TRAP
4750 ap->stats.unhandled_irq = 1;
4751 ap->stats.idle_irq = 1;
4752#endif
4753
4754 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4755}
4756
4757/**
4758 * ata_host_add - Attach low-level ATA driver to system
4759 * @ent: Information provided by low-level driver
4760 * @host_set: Collections of ports to which we add
4761 * @port_no: Port number associated with this host
4762 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004763 * Attach low-level ATA driver to system.
4764 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004766 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 *
4768 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004769 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 */
4771
Jeff Garzik057ace52005-10-22 14:27:05 -04004772static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 struct ata_host_set *host_set,
4774 unsigned int port_no)
4775{
4776 struct Scsi_Host *host;
4777 struct ata_port *ap;
4778 int rc;
4779
4780 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09004781
4782 if (!ent->port_ops->probe_reset &&
4783 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4784 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4785 port_no);
4786 return NULL;
4787 }
4788
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4790 if (!host)
4791 return NULL;
4792
Tejun Heo30afc842006-03-18 18:40:14 +09004793 host->transportt = &ata_scsi_transport_template;
4794
Jeff Garzik35bb94b2006-04-11 13:12:34 -04004795 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796
4797 ata_host_init(ap, host, host_set, ent, port_no);
4798
4799 rc = ap->ops->port_start(ap);
4800 if (rc)
4801 goto err_out;
4802
4803 return ap;
4804
4805err_out:
4806 scsi_host_put(host);
4807 return NULL;
4808}
4809
4810/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004811 * ata_device_add - Register hardware device with ATA and SCSI layers
4812 * @ent: Probe information describing hardware device to be registered
4813 *
4814 * This function processes the information provided in the probe
4815 * information struct @ent, allocates the necessary ATA and SCSI
4816 * host information structures, initializes them, and registers
4817 * everything with requisite kernel subsystems.
4818 *
4819 * This function requests irqs, probes the ATA bus, and probes
4820 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 *
4822 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004823 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 *
4825 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004826 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827 */
4828
Jeff Garzik057ace52005-10-22 14:27:05 -04004829int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830{
4831 unsigned int count = 0, i;
4832 struct device *dev = ent->dev;
4833 struct ata_host_set *host_set;
4834
4835 DPRINTK("ENTER\n");
4836 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004837 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4839 if (!host_set)
4840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 spin_lock_init(&host_set->lock);
4842
4843 host_set->dev = dev;
4844 host_set->n_ports = ent->n_ports;
4845 host_set->irq = ent->irq;
4846 host_set->mmio_base = ent->mmio_base;
4847 host_set->private_data = ent->private_data;
4848 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01004849 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
4851 /* register each port bound to this device */
4852 for (i = 0; i < ent->n_ports; i++) {
4853 struct ata_port *ap;
4854 unsigned long xfer_mode_mask;
4855
4856 ap = ata_host_add(ent, host_set, i);
4857 if (!ap)
4858 goto err_out;
4859
4860 host_set->ports[i] = ap;
4861 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4862 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4863 (ap->pio_mask << ATA_SHIFT_PIO);
4864
4865 /* print per-port info to dmesg */
4866 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4867 "bmdma 0x%lX irq %lu\n",
4868 ap->id,
4869 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4870 ata_mode_string(xfer_mode_mask),
4871 ap->ioaddr.cmd_addr,
4872 ap->ioaddr.ctl_addr,
4873 ap->ioaddr.bmdma_addr,
4874 ent->irq);
4875
4876 ata_chk_status(ap);
4877 host_set->ops->irq_clear(ap);
4878 count++;
4879 }
4880
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004881 if (!count)
4882 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
4884 /* obtain irq, that is shared between channels */
4885 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4886 DRV_NAME, host_set))
4887 goto err_out;
4888
4889 /* perform each probe synchronously */
4890 DPRINTK("probe begin\n");
4891 for (i = 0; i < count; i++) {
4892 struct ata_port *ap;
4893 int rc;
4894
4895 ap = host_set->ports[i];
4896
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004897 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004899 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900
4901 if (rc) {
4902 /* FIXME: do something useful here?
4903 * Current libata behavior will
4904 * tear down everything when
4905 * the module is removed
4906 * or the h/w is unplugged.
4907 */
4908 }
4909
4910 rc = scsi_add_host(ap->host, dev);
4911 if (rc) {
4912 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4913 ap->id);
4914 /* FIXME: do something useful here */
4915 /* FIXME: handle unconditional calls to
4916 * scsi_scan_host and ata_host_remove, below,
4917 * at the very least
4918 */
4919 }
4920 }
4921
4922 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004923 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 for (i = 0; i < count; i++) {
4925 struct ata_port *ap = host_set->ports[i];
4926
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004927 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 }
4929
4930 dev_set_drvdata(dev, host_set);
4931
4932 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4933 return ent->n_ports; /* success */
4934
4935err_out:
4936 for (i = 0; i < count; i++) {
4937 ata_host_remove(host_set->ports[i], 1);
4938 scsi_host_put(host_set->ports[i]->host);
4939 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004940err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 kfree(host_set);
4942 VPRINTK("EXIT, returning 0\n");
4943 return 0;
4944}
4945
4946/**
Alan Cox17b14452005-09-15 15:44:00 +01004947 * ata_host_set_remove - PCI layer callback for device removal
4948 * @host_set: ATA host set that was removed
4949 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004950 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01004951 * objects.
4952 *
4953 * LOCKING:
4954 * Inherited from calling layer (may sleep).
4955 */
4956
Alan Cox17b14452005-09-15 15:44:00 +01004957void ata_host_set_remove(struct ata_host_set *host_set)
4958{
4959 struct ata_port *ap;
4960 unsigned int i;
4961
4962 for (i = 0; i < host_set->n_ports; i++) {
4963 ap = host_set->ports[i];
4964 scsi_remove_host(ap->host);
4965 }
4966
4967 free_irq(host_set->irq, host_set);
4968
4969 for (i = 0; i < host_set->n_ports; i++) {
4970 ap = host_set->ports[i];
4971
4972 ata_scsi_release(ap->host);
4973
4974 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4975 struct ata_ioports *ioaddr = &ap->ioaddr;
4976
4977 if (ioaddr->cmd_addr == 0x1f0)
4978 release_region(0x1f0, 8);
4979 else if (ioaddr->cmd_addr == 0x170)
4980 release_region(0x170, 8);
4981 }
4982
4983 scsi_host_put(ap->host);
4984 }
4985
4986 if (host_set->ops->host_stop)
4987 host_set->ops->host_stop(host_set);
4988
4989 kfree(host_set);
4990}
4991
4992/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 * ata_scsi_release - SCSI layer callback hook for host unload
4994 * @host: libata host to be unloaded
4995 *
4996 * Performs all duties necessary to shut down a libata port...
4997 * Kill port kthread, disable port, and release resources.
4998 *
4999 * LOCKING:
5000 * Inherited from SCSI layer.
5001 *
5002 * RETURNS:
5003 * One.
5004 */
5005
5006int ata_scsi_release(struct Scsi_Host *host)
5007{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005008 struct ata_port *ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009
5010 DPRINTK("ENTER\n");
5011
5012 ap->ops->port_disable(ap);
5013 ata_host_remove(ap, 0);
5014
5015 DPRINTK("EXIT\n");
5016 return 1;
5017}
5018
5019/**
5020 * ata_std_ports - initialize ioaddr with standard port offsets.
5021 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005022 *
5023 * Utility function which initializes data_addr, error_addr,
5024 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5025 * device_addr, status_addr, and command_addr to standard offsets
5026 * relative to cmd_addr.
5027 *
5028 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 */
Edward Falk0baab862005-06-02 18:17:13 -04005030
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031void ata_std_ports(struct ata_ioports *ioaddr)
5032{
5033 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5034 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5035 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5036 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5037 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5038 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5039 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5040 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5041 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5042 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5043}
5044
Edward Falk0baab862005-06-02 18:17:13 -04005045
Jeff Garzik374b1872005-08-30 05:42:52 -04005046#ifdef CONFIG_PCI
5047
5048void ata_pci_host_stop (struct ata_host_set *host_set)
5049{
5050 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5051
5052 pci_iounmap(pdev, host_set->mmio_base);
5053}
5054
Edward Falk0baab862005-06-02 18:17:13 -04005055/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 * ata_pci_remove_one - PCI layer callback for device removal
5057 * @pdev: PCI device that was removed
5058 *
5059 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005060 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 * Handle this by unregistering all objects associated
5062 * with this PCI device. Free those objects. Then finally
5063 * release PCI resources and disable device.
5064 *
5065 * LOCKING:
5066 * Inherited from PCI layer (may sleep).
5067 */
5068
5069void ata_pci_remove_one (struct pci_dev *pdev)
5070{
5071 struct device *dev = pci_dev_to_dev(pdev);
5072 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
Alan Cox17b14452005-09-15 15:44:00 +01005074 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 pci_release_regions(pdev);
5076 pci_disable_device(pdev);
5077 dev_set_drvdata(dev, NULL);
5078}
5079
5080/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005081int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082{
5083 unsigned long tmp = 0;
5084
5085 switch (bits->width) {
5086 case 1: {
5087 u8 tmp8 = 0;
5088 pci_read_config_byte(pdev, bits->reg, &tmp8);
5089 tmp = tmp8;
5090 break;
5091 }
5092 case 2: {
5093 u16 tmp16 = 0;
5094 pci_read_config_word(pdev, bits->reg, &tmp16);
5095 tmp = tmp16;
5096 break;
5097 }
5098 case 4: {
5099 u32 tmp32 = 0;
5100 pci_read_config_dword(pdev, bits->reg, &tmp32);
5101 tmp = tmp32;
5102 break;
5103 }
5104
5105 default:
5106 return -EINVAL;
5107 }
5108
5109 tmp &= bits->mask;
5110
5111 return (tmp == bits->val) ? 1 : 0;
5112}
Jens Axboe9b847542006-01-06 09:28:07 +01005113
5114int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5115{
5116 pci_save_state(pdev);
5117 pci_disable_device(pdev);
5118 pci_set_power_state(pdev, PCI_D3hot);
5119 return 0;
5120}
5121
5122int ata_pci_device_resume(struct pci_dev *pdev)
5123{
5124 pci_set_power_state(pdev, PCI_D0);
5125 pci_restore_state(pdev);
5126 pci_enable_device(pdev);
5127 pci_set_master(pdev);
5128 return 0;
5129}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130#endif /* CONFIG_PCI */
5131
5132
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133static int __init ata_init(void)
5134{
5135 ata_wq = create_workqueue("ata");
5136 if (!ata_wq)
5137 return -ENOMEM;
5138
5139 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5140 return 0;
5141}
5142
5143static void __exit ata_exit(void)
5144{
5145 destroy_workqueue(ata_wq);
5146}
5147
5148module_init(ata_init);
5149module_exit(ata_exit);
5150
Jeff Garzik67846b32005-10-05 02:58:32 -04005151static unsigned long ratelimit_time;
5152static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5153
5154int ata_ratelimit(void)
5155{
5156 int rc;
5157 unsigned long flags;
5158
5159 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5160
5161 if (time_after(jiffies, ratelimit_time)) {
5162 rc = 1;
5163 ratelimit_time = jiffies + (HZ/5);
5164 } else
5165 rc = 0;
5166
5167 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5168
5169 return rc;
5170}
5171
Tejun Heoc22daff2006-04-11 22:22:29 +09005172/**
5173 * ata_wait_register - wait until register value changes
5174 * @reg: IO-mapped register
5175 * @mask: Mask to apply to read register value
5176 * @val: Wait condition
5177 * @interval_msec: polling interval in milliseconds
5178 * @timeout_msec: timeout in milliseconds
5179 *
5180 * Waiting for some bits of register to change is a common
5181 * operation for ATA controllers. This function reads 32bit LE
5182 * IO-mapped register @reg and tests for the following condition.
5183 *
5184 * (*@reg & mask) != val
5185 *
5186 * If the condition is met, it returns; otherwise, the process is
5187 * repeated after @interval_msec until timeout.
5188 *
5189 * LOCKING:
5190 * Kernel thread context (may sleep)
5191 *
5192 * RETURNS:
5193 * The final register value.
5194 */
5195u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5196 unsigned long interval_msec,
5197 unsigned long timeout_msec)
5198{
5199 unsigned long timeout;
5200 u32 tmp;
5201
5202 tmp = ioread32(reg);
5203
5204 /* Calculate timeout _after_ the first read to make sure
5205 * preceding writes reach the controller before starting to
5206 * eat away the timeout.
5207 */
5208 timeout = jiffies + (timeout_msec * HZ) / 1000;
5209
5210 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5211 msleep(interval_msec);
5212 tmp = ioread32(reg);
5213 }
5214
5215 return tmp;
5216}
5217
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218/*
5219 * libata is essentially a library of internal helper functions for
5220 * low-level ATA host controller drivers. As such, the API/ABI is
5221 * likely to change as new drivers are added and updated.
5222 * Do not depend on ABI/API stability.
5223 */
5224
5225EXPORT_SYMBOL_GPL(ata_std_bios_param);
5226EXPORT_SYMBOL_GPL(ata_std_ports);
5227EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005228EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229EXPORT_SYMBOL_GPL(ata_sg_init);
5230EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo76014422006-02-11 15:13:49 +09005231EXPORT_SYMBOL_GPL(__ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233EXPORT_SYMBOL_GPL(ata_tf_load);
5234EXPORT_SYMBOL_GPL(ata_tf_read);
5235EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5236EXPORT_SYMBOL_GPL(ata_std_dev_select);
5237EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5238EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5239EXPORT_SYMBOL_GPL(ata_check_status);
5240EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241EXPORT_SYMBOL_GPL(ata_exec_command);
5242EXPORT_SYMBOL_GPL(ata_port_start);
5243EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005244EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245EXPORT_SYMBOL_GPL(ata_interrupt);
5246EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005247EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5249EXPORT_SYMBOL_GPL(ata_bmdma_start);
5250EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5251EXPORT_SYMBOL_GPL(ata_bmdma_status);
5252EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5253EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09005254EXPORT_SYMBOL_GPL(sata_set_spd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255EXPORT_SYMBOL_GPL(sata_phy_reset);
5256EXPORT_SYMBOL_GPL(__sata_phy_reset);
5257EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005258EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005259EXPORT_SYMBOL_GPL(ata_std_softreset);
5260EXPORT_SYMBOL_GPL(sata_std_hardreset);
5261EXPORT_SYMBOL_GPL(ata_std_postreset);
5262EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005263EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005264EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005265EXPORT_SYMBOL_GPL(ata_dev_classify);
5266EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005268EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005269EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005270EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005271EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5273EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5275EXPORT_SYMBOL_GPL(ata_scsi_release);
5276EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09005277EXPORT_SYMBOL_GPL(sata_scr_valid);
5278EXPORT_SYMBOL_GPL(sata_scr_read);
5279EXPORT_SYMBOL_GPL(sata_scr_write);
5280EXPORT_SYMBOL_GPL(sata_scr_write_flush);
5281EXPORT_SYMBOL_GPL(ata_port_online);
5282EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6a62a042006-02-13 10:02:46 +09005283EXPORT_SYMBOL_GPL(ata_id_string);
5284EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5286
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005287EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005288EXPORT_SYMBOL_GPL(ata_timing_compute);
5289EXPORT_SYMBOL_GPL(ata_timing_merge);
5290
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291#ifdef CONFIG_PCI
5292EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005293EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5295EXPORT_SYMBOL_GPL(ata_pci_init_one);
5296EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005297EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5298EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005299EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5300EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005302
5303EXPORT_SYMBOL_GPL(ata_device_suspend);
5304EXPORT_SYMBOL_GPL(ata_device_resume);
5305EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5306EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005307
Tejun Heoece1d632006-04-02 18:51:53 +09005308EXPORT_SYMBOL_GPL(ata_eng_timeout);
5309EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5310EXPORT_SYMBOL_GPL(ata_eh_qc_retry);