blob: e9002a4174d03c76075470dd03db0236f0f14710 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include <linux/config.h>
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/pci.h>
39#include <linux/init.h>
40#include <linux/list.h>
41#include <linux/mm.h>
42#include <linux/highmem.h>
43#include <linux/spinlock.h>
44#include <linux/blkdev.h>
45#include <linux/delay.h>
46#include <linux/timer.h>
47#include <linux/interrupt.h>
48#include <linux/completion.h>
49#include <linux/suspend.h>
50#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040051#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100052#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_host.h>
57#include <linux/libata.h>
58#include <asm/io.h>
59#include <asm/semaphore.h>
60#include <asm/byteorder.h>
61
62#include "libata.h"
63
Tejun Heo6aff8f12006-02-15 18:24:09 +090064static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +080065 struct ata_device *dev,
66 u16 heads,
67 u16 sectors);
Tejun Heocf176e12006-04-02 17:54:46 +090068static int ata_down_xfermask_limit(struct ata_port *ap, struct ata_device *dev,
69 int force_pio0);
Tejun Heo1c3fae42006-04-02 20:53:28 +090070static int ata_down_sata_spd_limit(struct ata_port *ap);
Tejun Heoe82cbdb2006-04-01 01:38:18 +090071static int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev);
Tejun Heo83206a22006-03-24 15:25:31 +090072static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
73 struct ata_device *dev);
Tejun Heoacf356b2006-03-24 14:07:50 +090074static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76static unsigned int ata_unique_id = 1;
77static struct workqueue_struct *ata_wq;
78
Jeff Garzik418dc1f2006-03-11 20:50:08 -050079int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040080module_param(atapi_enabled, int, 0444);
81MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
82
Jeff Garzikc3c013a2006-02-27 22:31:19 -050083int libata_fua = 0;
84module_param_named(fua, libata_fua, int, 0444);
85MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087MODULE_AUTHOR("Jeff Garzik");
88MODULE_DESCRIPTION("Library module for ATA devices");
89MODULE_LICENSE("GPL");
90MODULE_VERSION(DRV_VERSION);
91
Edward Falk0baab862005-06-02 18:17:13 -040092
93/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
95 * @tf: Taskfile to convert
96 * @fis: Buffer into which data will output
97 * @pmp: Port multiplier port
98 *
99 * Converts a standard ATA taskfile to a Serial ATA
100 * FIS structure (Register - Host to Device).
101 *
102 * LOCKING:
103 * Inherited from caller.
104 */
105
Jeff Garzik057ace52005-10-22 14:27:05 -0400106void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 fis[0] = 0x27; /* Register - Host to Device FIS */
109 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
110 bit 7 indicates Command FIS */
111 fis[2] = tf->command;
112 fis[3] = tf->feature;
113
114 fis[4] = tf->lbal;
115 fis[5] = tf->lbam;
116 fis[6] = tf->lbah;
117 fis[7] = tf->device;
118
119 fis[8] = tf->hob_lbal;
120 fis[9] = tf->hob_lbam;
121 fis[10] = tf->hob_lbah;
122 fis[11] = tf->hob_feature;
123
124 fis[12] = tf->nsect;
125 fis[13] = tf->hob_nsect;
126 fis[14] = 0;
127 fis[15] = tf->ctl;
128
129 fis[16] = 0;
130 fis[17] = 0;
131 fis[18] = 0;
132 fis[19] = 0;
133}
134
135/**
136 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
137 * @fis: Buffer from which data will be input
138 * @tf: Taskfile to output
139 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500140 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 *
142 * LOCKING:
143 * Inherited from caller.
144 */
145
Jeff Garzik057ace52005-10-22 14:27:05 -0400146void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 tf->command = fis[2]; /* status */
149 tf->feature = fis[3]; /* error */
150
151 tf->lbal = fis[4];
152 tf->lbam = fis[5];
153 tf->lbah = fis[6];
154 tf->device = fis[7];
155
156 tf->hob_lbal = fis[8];
157 tf->hob_lbam = fis[9];
158 tf->hob_lbah = fis[10];
159
160 tf->nsect = fis[12];
161 tf->hob_nsect = fis[13];
162}
163
Albert Lee8cbd6df2005-10-12 15:06:27 +0800164static const u8 ata_rw_cmds[] = {
165 /* pio multi */
166 ATA_CMD_READ_MULTI,
167 ATA_CMD_WRITE_MULTI,
168 ATA_CMD_READ_MULTI_EXT,
169 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100170 0,
171 0,
172 0,
173 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800174 /* pio */
175 ATA_CMD_PIO_READ,
176 ATA_CMD_PIO_WRITE,
177 ATA_CMD_PIO_READ_EXT,
178 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100179 0,
180 0,
181 0,
182 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800183 /* dma */
184 ATA_CMD_READ,
185 ATA_CMD_WRITE,
186 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100187 ATA_CMD_WRITE_EXT,
188 0,
189 0,
190 0,
191 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800192};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800195 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
196 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500198 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800199 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 *
201 * LOCKING:
202 * caller.
203 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100204int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800206 struct ata_taskfile *tf = &qc->tf;
207 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100208 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100210 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500211
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100212 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800213 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
214 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Albert Lee8cbd6df2005-10-12 15:06:27 +0800216 if (dev->flags & ATA_DFLAG_PIO) {
217 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100218 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000219 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
220 /* Unable to use DMA due to host limitation */
221 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800222 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800223 } else {
224 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100225 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100228 cmd = ata_rw_cmds[index + fua + lba48 + write];
229 if (cmd) {
230 tf->command = cmd;
231 return 0;
232 }
233 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Tejun Heocb95d562006-03-06 04:31:56 +0900236/**
237 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
238 * @pio_mask: pio_mask
239 * @mwdma_mask: mwdma_mask
240 * @udma_mask: udma_mask
241 *
242 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
243 * unsigned int xfer_mask.
244 *
245 * LOCKING:
246 * None.
247 *
248 * RETURNS:
249 * Packed xfer_mask.
250 */
251static unsigned int ata_pack_xfermask(unsigned int pio_mask,
252 unsigned int mwdma_mask,
253 unsigned int udma_mask)
254{
255 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
256 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
257 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
258}
259
Tejun Heoc0489e42006-03-24 14:07:49 +0900260/**
261 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
262 * @xfer_mask: xfer_mask to unpack
263 * @pio_mask: resulting pio_mask
264 * @mwdma_mask: resulting mwdma_mask
265 * @udma_mask: resulting udma_mask
266 *
267 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
268 * Any NULL distination masks will be ignored.
269 */
270static void ata_unpack_xfermask(unsigned int xfer_mask,
271 unsigned int *pio_mask,
272 unsigned int *mwdma_mask,
273 unsigned int *udma_mask)
274{
275 if (pio_mask)
276 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
277 if (mwdma_mask)
278 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
279 if (udma_mask)
280 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
281}
282
Tejun Heocb95d562006-03-06 04:31:56 +0900283static const struct ata_xfer_ent {
Tejun Heobe9a50c82006-03-31 22:48:52 +0900284 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900285 u8 base;
286} ata_xfer_tbl[] = {
287 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
288 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
289 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
290 { -1, },
291};
292
293/**
294 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
295 * @xfer_mask: xfer_mask of interest
296 *
297 * Return matching XFER_* value for @xfer_mask. Only the highest
298 * bit of @xfer_mask is considered.
299 *
300 * LOCKING:
301 * None.
302 *
303 * RETURNS:
304 * Matching XFER_* value, 0 if no match found.
305 */
306static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
307{
308 int highbit = fls(xfer_mask) - 1;
309 const struct ata_xfer_ent *ent;
310
311 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
312 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
313 return ent->base + highbit - ent->shift;
314 return 0;
315}
316
317/**
318 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
319 * @xfer_mode: XFER_* of interest
320 *
321 * Return matching xfer_mask for @xfer_mode.
322 *
323 * LOCKING:
324 * None.
325 *
326 * RETURNS:
327 * Matching xfer_mask, 0 if no match found.
328 */
329static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
330{
331 const struct ata_xfer_ent *ent;
332
333 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
334 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
335 return 1 << (ent->shift + xfer_mode - ent->base);
336 return 0;
337}
338
339/**
340 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
341 * @xfer_mode: XFER_* of interest
342 *
343 * Return matching xfer_shift for @xfer_mode.
344 *
345 * LOCKING:
346 * None.
347 *
348 * RETURNS:
349 * Matching xfer_shift, -1 if no match found.
350 */
351static int ata_xfer_mode2shift(unsigned int xfer_mode)
352{
353 const struct ata_xfer_ent *ent;
354
355 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
356 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
357 return ent->shift;
358 return -1;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900362 * ata_mode_string - convert xfer_mask to string
363 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *
365 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900366 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
368 * LOCKING:
369 * None.
370 *
371 * RETURNS:
372 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900373 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900375static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Tejun Heo75f554b2006-03-06 04:31:57 +0900377 static const char * const xfer_mode_str[] = {
378 "PIO0",
379 "PIO1",
380 "PIO2",
381 "PIO3",
382 "PIO4",
383 "MWDMA0",
384 "MWDMA1",
385 "MWDMA2",
386 "UDMA/16",
387 "UDMA/25",
388 "UDMA/33",
389 "UDMA/44",
390 "UDMA/66",
391 "UDMA/100",
392 "UDMA/133",
393 "UDMA7",
394 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900395 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900397 highbit = fls(xfer_mask) - 1;
398 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
399 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Tejun Heo4c360c82006-04-01 01:38:17 +0900403static const char *sata_spd_string(unsigned int spd)
404{
405 static const char * const spd_str[] = {
406 "1.5 Gbps",
407 "3.0 Gbps",
408 };
409
410 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
411 return "<unknown>";
412 return spd_str[spd - 1];
413}
414
Tejun Heo0b8efb02006-03-24 15:25:31 +0900415static void ata_dev_disable(struct ata_port *ap, struct ata_device *dev)
416{
Tejun Heoe1211e32006-04-01 01:38:18 +0900417 if (ata_dev_enabled(dev)) {
Tejun Heo0b8efb02006-03-24 15:25:31 +0900418 printk(KERN_WARNING "ata%u: dev %u disabled\n",
419 ap->id, dev->devno);
420 dev->class++;
421 }
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/**
425 * ata_pio_devchk - PATA device presence detection
426 * @ap: ATA channel to examine
427 * @device: Device to examine (starting at zero)
428 *
429 * This technique was originally described in
430 * Hale Landis's ATADRVR (www.ata-atapi.com), and
431 * later found its way into the ATA/ATAPI spec.
432 *
433 * Write a pattern to the ATA shadow registers,
434 * and if a device is present, it will respond by
435 * correctly storing and echoing back the
436 * ATA shadow register contents.
437 *
438 * LOCKING:
439 * caller.
440 */
441
442static unsigned int ata_pio_devchk(struct ata_port *ap,
443 unsigned int device)
444{
445 struct ata_ioports *ioaddr = &ap->ioaddr;
446 u8 nsect, lbal;
447
448 ap->ops->dev_select(ap, device);
449
450 outb(0x55, ioaddr->nsect_addr);
451 outb(0xaa, ioaddr->lbal_addr);
452
453 outb(0xaa, ioaddr->nsect_addr);
454 outb(0x55, ioaddr->lbal_addr);
455
456 outb(0x55, ioaddr->nsect_addr);
457 outb(0xaa, ioaddr->lbal_addr);
458
459 nsect = inb(ioaddr->nsect_addr);
460 lbal = inb(ioaddr->lbal_addr);
461
462 if ((nsect == 0x55) && (lbal == 0xaa))
463 return 1; /* we found a device */
464
465 return 0; /* nothing found */
466}
467
468/**
469 * ata_mmio_devchk - PATA device presence detection
470 * @ap: ATA channel to examine
471 * @device: Device to examine (starting at zero)
472 *
473 * This technique was originally described in
474 * Hale Landis's ATADRVR (www.ata-atapi.com), and
475 * later found its way into the ATA/ATAPI spec.
476 *
477 * Write a pattern to the ATA shadow registers,
478 * and if a device is present, it will respond by
479 * correctly storing and echoing back the
480 * ATA shadow register contents.
481 *
482 * LOCKING:
483 * caller.
484 */
485
486static unsigned int ata_mmio_devchk(struct ata_port *ap,
487 unsigned int device)
488{
489 struct ata_ioports *ioaddr = &ap->ioaddr;
490 u8 nsect, lbal;
491
492 ap->ops->dev_select(ap, device);
493
494 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
495 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
496
497 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
498 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
499
500 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
501 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
502
503 nsect = readb((void __iomem *) ioaddr->nsect_addr);
504 lbal = readb((void __iomem *) ioaddr->lbal_addr);
505
506 if ((nsect == 0x55) && (lbal == 0xaa))
507 return 1; /* we found a device */
508
509 return 0; /* nothing found */
510}
511
512/**
513 * ata_devchk - PATA device presence detection
514 * @ap: ATA channel to examine
515 * @device: Device to examine (starting at zero)
516 *
517 * Dispatch ATA device presence detection, depending
518 * on whether we are using PIO or MMIO to talk to the
519 * ATA shadow registers.
520 *
521 * LOCKING:
522 * caller.
523 */
524
525static unsigned int ata_devchk(struct ata_port *ap,
526 unsigned int device)
527{
528 if (ap->flags & ATA_FLAG_MMIO)
529 return ata_mmio_devchk(ap, device);
530 return ata_pio_devchk(ap, device);
531}
532
533/**
534 * ata_dev_classify - determine device type based on ATA-spec signature
535 * @tf: ATA taskfile register set for device to be identified
536 *
537 * Determine from taskfile register contents whether a device is
538 * ATA or ATAPI, as per "Signature and persistence" section
539 * of ATA/PI spec (volume 1, sect 5.14).
540 *
541 * LOCKING:
542 * None.
543 *
544 * RETURNS:
545 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
546 * the event of failure.
547 */
548
Jeff Garzik057ace52005-10-22 14:27:05 -0400549unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 /* Apple's open source Darwin code hints that some devices only
552 * put a proper signature into the LBA mid/high registers,
553 * So, we only check those. It's sufficient for uniqueness.
554 */
555
556 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
557 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
558 DPRINTK("found ATA device by sig\n");
559 return ATA_DEV_ATA;
560 }
561
562 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
563 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
564 DPRINTK("found ATAPI device by sig\n");
565 return ATA_DEV_ATAPI;
566 }
567
568 DPRINTK("unknown device\n");
569 return ATA_DEV_UNKNOWN;
570}
571
572/**
573 * ata_dev_try_classify - Parse returned ATA device signature
574 * @ap: ATA channel to examine
575 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900576 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 *
578 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
579 * an ATA/ATAPI-defined set of values is placed in the ATA
580 * shadow registers, indicating the results of device detection
581 * and diagnostics.
582 *
583 * Select the ATA device, and read the values from the ATA shadow
584 * registers. Then parse according to the Error register value,
585 * and the spec-defined values examined by ata_dev_classify().
586 *
587 * LOCKING:
588 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900589 *
590 * RETURNS:
591 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
593
Tejun Heob4dc7622006-01-24 17:05:22 +0900594static unsigned int
595ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 struct ata_taskfile tf;
598 unsigned int class;
599 u8 err;
600
601 ap->ops->dev_select(ap, device);
602
603 memset(&tf, 0, sizeof(tf));
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400606 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900607 if (r_err)
608 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /* see if device passed diags */
611 if (err == 1)
612 /* do nothing */ ;
613 else if ((device == 0) && (err == 0x81))
614 /* do nothing */ ;
615 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900616 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Tejun Heob4dc7622006-01-24 17:05:22 +0900618 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900622 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900624 return ATA_DEV_NONE;
625 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900629 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 * @id: IDENTIFY DEVICE results we will examine
631 * @s: string into which data is output
632 * @ofs: offset into identify device page
633 * @len: length of string to return. must be an even number.
634 *
635 * The strings in the IDENTIFY DEVICE page are broken up into
636 * 16-bit chunks. Run through the string, and output each
637 * 8-bit chunk linearly, regardless of platform.
638 *
639 * LOCKING:
640 * caller.
641 */
642
Tejun Heo6a62a042006-02-13 10:02:46 +0900643void ata_id_string(const u16 *id, unsigned char *s,
644 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 unsigned int c;
647
648 while (len > 0) {
649 c = id[ofs] >> 8;
650 *s = c;
651 s++;
652
653 c = id[ofs] & 0xff;
654 *s = c;
655 s++;
656
657 ofs++;
658 len -= 2;
659 }
660}
661
Tejun Heo0e949ff2006-02-12 22:47:04 +0900662/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900663 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900664 * @id: IDENTIFY DEVICE results we will examine
665 * @s: string into which data is output
666 * @ofs: offset into identify device page
667 * @len: length of string to return. must be an odd number.
668 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900669 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900670 * trims trailing spaces and terminates the resulting string with
671 * null. @len must be actual maximum length (even number) + 1.
672 *
673 * LOCKING:
674 * caller.
675 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900676void ata_id_c_string(const u16 *id, unsigned char *s,
677 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900678{
679 unsigned char *p;
680
681 WARN_ON(!(len & 1));
682
Tejun Heo6a62a042006-02-13 10:02:46 +0900683 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900684
685 p = s + strnlen(s, len - 1);
686 while (p > s && p[-1] == ' ')
687 p--;
688 *p = '\0';
689}
Edward Falk0baab862005-06-02 18:17:13 -0400690
Tejun Heo29407402006-02-12 22:47:04 +0900691static u64 ata_id_n_sectors(const u16 *id)
692{
693 if (ata_id_has_lba(id)) {
694 if (ata_id_has_lba48(id))
695 return ata_id_u64(id, 100);
696 else
697 return ata_id_u32(id, 60);
698 } else {
699 if (ata_id_current_chs_valid(id))
700 return ata_id_u32(id, 57);
701 else
702 return id[1] * id[3] * id[6];
703 }
704}
705
Edward Falk0baab862005-06-02 18:17:13 -0400706/**
707 * ata_noop_dev_select - Select device 0/1 on ATA bus
708 * @ap: ATA channel to manipulate
709 * @device: ATA device (numbered from zero) to select
710 *
711 * This function performs no actual function.
712 *
713 * May be used as the dev_select() entry in ata_port_operations.
714 *
715 * LOCKING:
716 * caller.
717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
719{
720}
721
Edward Falk0baab862005-06-02 18:17:13 -0400722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723/**
724 * ata_std_dev_select - Select device 0/1 on ATA bus
725 * @ap: ATA channel to manipulate
726 * @device: ATA device (numbered from zero) to select
727 *
728 * Use the method defined in the ATA specification to
729 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400730 * ATA channel. Works with both PIO and MMIO.
731 *
732 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 *
734 * LOCKING:
735 * caller.
736 */
737
738void ata_std_dev_select (struct ata_port *ap, unsigned int device)
739{
740 u8 tmp;
741
742 if (device == 0)
743 tmp = ATA_DEVICE_OBS;
744 else
745 tmp = ATA_DEVICE_OBS | ATA_DEV1;
746
747 if (ap->flags & ATA_FLAG_MMIO) {
748 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
749 } else {
750 outb(tmp, ap->ioaddr.device_addr);
751 }
752 ata_pause(ap); /* needed; also flushes, for mmio */
753}
754
755/**
756 * ata_dev_select - Select device 0/1 on ATA bus
757 * @ap: ATA channel to manipulate
758 * @device: ATA device (numbered from zero) to select
759 * @wait: non-zero to wait for Status register BSY bit to clear
760 * @can_sleep: non-zero if context allows sleeping
761 *
762 * Use the method defined in the ATA specification to
763 * make either device 0, or device 1, active on the
764 * ATA channel.
765 *
766 * This is a high-level version of ata_std_dev_select(),
767 * which additionally provides the services of inserting
768 * the proper pauses and status polling, where needed.
769 *
770 * LOCKING:
771 * caller.
772 */
773
774void ata_dev_select(struct ata_port *ap, unsigned int device,
775 unsigned int wait, unsigned int can_sleep)
776{
777 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
778 ap->id, device, wait);
779
780 if (wait)
781 ata_wait_idle(ap);
782
783 ap->ops->dev_select(ap, device);
784
785 if (wait) {
786 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
787 msleep(150);
788 ata_wait_idle(ap);
789 }
790}
791
792/**
793 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900794 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900796 * Dump selected 16-bit words from the given IDENTIFY DEVICE
797 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 *
799 * LOCKING:
800 * caller.
801 */
802
Tejun Heo0bd33002006-02-12 22:47:05 +0900803static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 DPRINTK("49==0x%04x "
806 "53==0x%04x "
807 "63==0x%04x "
808 "64==0x%04x "
809 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900810 id[49],
811 id[53],
812 id[63],
813 id[64],
814 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 DPRINTK("80==0x%04x "
816 "81==0x%04x "
817 "82==0x%04x "
818 "83==0x%04x "
819 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900820 id[80],
821 id[81],
822 id[82],
823 id[83],
824 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 DPRINTK("88==0x%04x "
826 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900827 id[88],
828 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
Tejun Heocb95d562006-03-06 04:31:56 +0900831/**
832 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
833 * @id: IDENTIFY data to compute xfer mask from
834 *
835 * Compute the xfermask for this device. This is not as trivial
836 * as it seems if we must consider early devices correctly.
837 *
838 * FIXME: pre IDE drive timing (do we care ?).
839 *
840 * LOCKING:
841 * None.
842 *
843 * RETURNS:
844 * Computed xfermask
845 */
846static unsigned int ata_id_xfermask(const u16 *id)
847{
848 unsigned int pio_mask, mwdma_mask, udma_mask;
849
850 /* Usual case. Word 53 indicates word 64 is valid */
851 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
852 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
853 pio_mask <<= 3;
854 pio_mask |= 0x7;
855 } else {
856 /* If word 64 isn't valid then Word 51 high byte holds
857 * the PIO timing number for the maximum. Turn it into
858 * a mask.
859 */
860 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
861
862 /* But wait.. there's more. Design your standards by
863 * committee and you too can get a free iordy field to
864 * process. However its the speeds not the modes that
865 * are supported... Note drivers using the timing API
866 * will get this right anyway
867 */
868 }
869
870 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900871
872 udma_mask = 0;
873 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
874 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900875
876 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
877}
878
Tejun Heo86e45b62006-03-05 15:29:09 +0900879/**
880 * ata_port_queue_task - Queue port_task
881 * @ap: The ata_port to queue port_task for
882 *
883 * Schedule @fn(@data) for execution after @delay jiffies using
884 * port_task. There is one port_task per port and it's the
885 * user(low level driver)'s responsibility to make sure that only
886 * one task is active at any given time.
887 *
888 * libata core layer takes care of synchronization between
889 * port_task and EH. ata_port_queue_task() may be ignored for EH
890 * synchronization.
891 *
892 * LOCKING:
893 * Inherited from caller.
894 */
895void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
896 unsigned long delay)
897{
898 int rc;
899
Tejun Heo2e755f62006-03-05 15:29:09 +0900900 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900901 return;
902
903 PREPARE_WORK(&ap->port_task, fn, data);
904
905 if (!delay)
906 rc = queue_work(ata_wq, &ap->port_task);
907 else
908 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
909
910 /* rc == 0 means that another user is using port task */
911 WARN_ON(rc == 0);
912}
913
914/**
915 * ata_port_flush_task - Flush port_task
916 * @ap: The ata_port to flush port_task for
917 *
918 * After this function completes, port_task is guranteed not to
919 * be running or scheduled.
920 *
921 * LOCKING:
922 * Kernel thread context (may sleep)
923 */
924void ata_port_flush_task(struct ata_port *ap)
925{
926 unsigned long flags;
927
928 DPRINTK("ENTER\n");
929
930 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900931 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900932 spin_unlock_irqrestore(&ap->host_set->lock, flags);
933
934 DPRINTK("flush #1\n");
935 flush_workqueue(ata_wq);
936
937 /*
938 * At this point, if a task is running, it's guaranteed to see
939 * the FLUSH flag; thus, it will never queue pio tasks again.
940 * Cancel and flush.
941 */
942 if (!cancel_delayed_work(&ap->port_task)) {
943 DPRINTK("flush #2\n");
944 flush_workqueue(ata_wq);
945 }
946
947 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900948 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900949 spin_unlock_irqrestore(&ap->host_set->lock, flags);
950
951 DPRINTK("EXIT\n");
952}
953
Tejun Heo77853bf2006-01-23 13:09:36 +0900954void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900955{
Tejun Heo77853bf2006-01-23 13:09:36 +0900956 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900957
Tejun Heo77853bf2006-01-23 13:09:36 +0900958 qc->ap->ops->tf_read(qc->ap, &qc->tf);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900959 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900960}
961
962/**
963 * ata_exec_internal - execute libata internal command
964 * @ap: Port to which the command is sent
965 * @dev: Device to which the command is sent
966 * @tf: Taskfile registers for the command and the result
967 * @dma_dir: Data tranfer direction of the command
968 * @buf: Data buffer of the command
969 * @buflen: Length of data buffer
970 *
971 * Executes libata internal command with timeout. @tf contains
972 * command on entry and result on return. Timeout and error
973 * conditions are reported via return value. No recovery action
974 * is taken after a command times out. It's caller's duty to
975 * clean up after timeout.
976 *
977 * LOCKING:
978 * None. Should be called with kernel context, might sleep.
979 */
980
981static unsigned
982ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
983 struct ata_taskfile *tf,
984 int dma_dir, void *buf, unsigned int buflen)
985{
986 u8 command = tf->command;
987 struct ata_queued_cmd *qc;
988 DECLARE_COMPLETION(wait);
989 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +0900990 unsigned int err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900991
992 spin_lock_irqsave(&ap->host_set->lock, flags);
993
994 qc = ata_qc_new_init(ap, dev);
995 BUG_ON(qc == NULL);
996
997 qc->tf = *tf;
998 qc->dma_dir = dma_dir;
999 if (dma_dir != DMA_NONE) {
1000 ata_sg_init_one(qc, buf, buflen);
1001 qc->nsect = buflen / ATA_SECT_SIZE;
1002 }
1003
Tejun Heo77853bf2006-01-23 13:09:36 +09001004 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001005 qc->complete_fn = ata_qc_complete_internal;
1006
Tejun Heo8e0e6942006-03-31 20:41:11 +09001007 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001008
1009 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1010
1011 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
Albert Lee41ade502006-03-14 11:19:04 +08001012 ata_port_flush_task(ap);
1013
Tejun Heoa2a7a662005-12-13 14:48:31 +09001014 spin_lock_irqsave(&ap->host_set->lock, flags);
1015
1016 /* We're racing with irq here. If we lose, the
1017 * following test prevents us from completing the qc
1018 * again. If completion irq occurs after here but
1019 * before the caller cleans up, it will result in a
1020 * spurious interrupt. We can live with that.
1021 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001022 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heo11a56d22006-01-23 13:09:36 +09001023 qc->err_mask = AC_ERR_TIMEOUT;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001024 ata_qc_complete(qc);
1025 printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1026 ap->id, command);
1027 }
1028
1029 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1030 }
1031
Tejun Heo77853bf2006-01-23 13:09:36 +09001032 *tf = qc->tf;
1033 err_mask = qc->err_mask;
1034
1035 ata_qc_free(qc);
1036
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001037 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1038 * Until those drivers are fixed, we detect the condition
1039 * here, fail the command with AC_ERR_SYSTEM and reenable the
1040 * port.
1041 *
1042 * Note that this doesn't change any behavior as internal
1043 * command failure results in disabling the device in the
1044 * higher layer for LLDDs without new reset/EH callbacks.
1045 *
1046 * Kill the following code as soon as those drivers are fixed.
1047 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001048 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001049 err_mask |= AC_ERR_SYSTEM;
1050 ata_port_probe(ap);
1051 }
1052
Tejun Heo77853bf2006-01-23 13:09:36 +09001053 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001054}
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001057 * ata_pio_need_iordy - check if iordy needed
1058 * @adev: ATA device
1059 *
1060 * Check if the current speed of the device requires IORDY. Used
1061 * by various controllers for chip configuration.
1062 */
1063
1064unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1065{
1066 int pio;
1067 int speed = adev->pio_mode - XFER_PIO_0;
1068
1069 if (speed < 2)
1070 return 0;
1071 if (speed > 2)
1072 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001073
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001074 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1075
1076 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1077 pio = adev->id[ATA_ID_EIDE_PIO];
1078 /* Is the speed faster than the drive allows non IORDY ? */
1079 if (pio) {
1080 /* This is cycle times not frequency - watch the logic! */
1081 if (pio > 240) /* PIO2 is 240nS per cycle */
1082 return 1;
1083 return 0;
1084 }
1085 }
1086 return 0;
1087}
1088
1089/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001090 * ata_dev_read_id - Read ID data from the specified device
1091 * @ap: port on which target device resides
1092 * @dev: target device
1093 * @p_class: pointer to class of the target device (may be changed)
1094 * @post_reset: is this read ID post-reset?
Tejun Heod9572b12006-03-01 16:09:35 +09001095 * @p_id: read IDENTIFY page (newly allocated)
Tejun Heo49016ac2006-02-21 02:12:11 +09001096 *
1097 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1098 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001099 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1100 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001101 *
1102 * LOCKING:
1103 * Kernel thread context (may sleep)
1104 *
1105 * RETURNS:
1106 * 0 on success, -errno otherwise.
1107 */
1108static int ata_dev_read_id(struct ata_port *ap, struct ata_device *dev,
Tejun Heod9572b12006-03-01 16:09:35 +09001109 unsigned int *p_class, int post_reset, u16 **p_id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001110{
1111 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001112 struct ata_taskfile tf;
1113 unsigned int err_mask = 0;
Tejun Heod9572b12006-03-01 16:09:35 +09001114 u16 *id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001115 const char *reason;
1116 int rc;
1117
1118 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1119
Tejun Heo49016ac2006-02-21 02:12:11 +09001120 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1121
Tejun Heod9572b12006-03-01 16:09:35 +09001122 id = kmalloc(sizeof(id[0]) * ATA_ID_WORDS, GFP_KERNEL);
1123 if (id == NULL) {
1124 rc = -ENOMEM;
1125 reason = "out of memory";
1126 goto err_out;
1127 }
1128
Tejun Heo49016ac2006-02-21 02:12:11 +09001129 retry:
1130 ata_tf_init(ap, &tf, dev->devno);
1131
1132 switch (class) {
1133 case ATA_DEV_ATA:
1134 tf.command = ATA_CMD_ID_ATA;
1135 break;
1136 case ATA_DEV_ATAPI:
1137 tf.command = ATA_CMD_ID_ATAPI;
1138 break;
1139 default:
1140 rc = -ENODEV;
1141 reason = "unsupported class";
1142 goto err_out;
1143 }
1144
1145 tf.protocol = ATA_PROT_PIO;
1146
1147 err_mask = ata_exec_internal(ap, dev, &tf, DMA_FROM_DEVICE,
1148 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001149 if (err_mask) {
1150 rc = -EIO;
1151 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001152 goto err_out;
1153 }
1154
1155 swap_buf_le16(id, ATA_ID_WORDS);
1156
Tejun Heo49016ac2006-02-21 02:12:11 +09001157 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001158 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001159 rc = -EINVAL;
1160 reason = "device reports illegal type";
1161 goto err_out;
1162 }
1163
1164 if (post_reset && class == ATA_DEV_ATA) {
1165 /*
1166 * The exact sequence expected by certain pre-ATA4 drives is:
1167 * SRST RESET
1168 * IDENTIFY
1169 * INITIALIZE DEVICE PARAMETERS
1170 * anything else..
1171 * Some drives were very specific about that exact sequence.
1172 */
1173 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Albert Lee00b6f5e2006-03-27 16:39:18 +08001174 err_mask = ata_dev_init_params(ap, dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001175 if (err_mask) {
1176 rc = -EIO;
1177 reason = "INIT_DEV_PARAMS failed";
1178 goto err_out;
1179 }
1180
1181 /* current CHS translation info (id[53-58]) might be
1182 * changed. reread the identify device info.
1183 */
1184 post_reset = 0;
1185 goto retry;
1186 }
1187 }
1188
1189 *p_class = class;
Tejun Heod9572b12006-03-01 16:09:35 +09001190 *p_id = id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001191 return 0;
1192
1193 err_out:
1194 printk(KERN_WARNING "ata%u: dev %u failed to IDENTIFY (%s)\n",
1195 ap->id, dev->devno, reason);
Tejun Heod9572b12006-03-01 16:09:35 +09001196 kfree(id);
Tejun Heo49016ac2006-02-21 02:12:11 +09001197 return rc;
1198}
1199
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001200static inline u8 ata_dev_knobble(const struct ata_port *ap,
1201 struct ata_device *dev)
1202{
1203 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
1204}
1205
Tejun Heo49016ac2006-02-21 02:12:11 +09001206/**
Tejun Heoffeae412006-03-01 16:09:35 +09001207 * ata_dev_configure - Configure the specified ATA/ATAPI device
1208 * @ap: Port on which target device resides
1209 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001210 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 *
Tejun Heoffeae412006-03-01 16:09:35 +09001212 * Configure @dev according to @dev->id. Generic and low-level
1213 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 *
1215 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001216 * Kernel thread context (may sleep)
1217 *
1218 * RETURNS:
1219 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001221static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev,
1222 int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Tejun Heo1148c3a2006-03-13 19:48:04 +09001224 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001225 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001226 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Tejun Heoe1211e32006-04-01 01:38:18 +09001228 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001230 ap->id, dev->devno);
1231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233
Tejun Heoffeae412006-03-01 16:09:35 +09001234 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001236 /* print device capabilities */
1237 if (print_info)
1238 printk(KERN_DEBUG "ata%u: dev %u cfg 49:%04x 82:%04x 83:%04x "
1239 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1240 ap->id, dev->devno, id[49], id[82], id[83],
1241 id[84], id[85], id[86], id[87], id[88]);
1242
Tejun Heo208a9932006-03-05 17:55:58 +09001243 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001244 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001245 dev->max_sectors = 0;
1246 dev->cdb_len = 0;
1247 dev->n_sectors = 0;
1248 dev->cylinders = 0;
1249 dev->heads = 0;
1250 dev->sectors = 0;
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 /*
1253 * common ATA, ATAPI feature tests
1254 */
1255
Tejun Heoff8854b2006-03-06 04:31:56 +09001256 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001257 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Tejun Heo1148c3a2006-03-13 19:48:04 +09001259 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 /* ATA-specific feature tests */
1262 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001263 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001264
Tejun Heo1148c3a2006-03-13 19:48:04 +09001265 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001266 const char *lba_desc;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001267
Tejun Heo4c2d7212006-03-05 17:55:58 +09001268 lba_desc = "LBA";
1269 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001270 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001271 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001272 lba_desc = "LBA48";
1273 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001274
1275 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001276 if (print_info)
1277 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1278 "max %s, %Lu sectors: %s\n",
1279 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001280 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001281 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001282 (unsigned long long)dev->n_sectors,
1283 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001284 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001285 /* CHS */
1286
1287 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001288 dev->cylinders = id[1];
1289 dev->heads = id[3];
1290 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001291
Tejun Heo1148c3a2006-03-13 19:48:04 +09001292 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001293 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001294 dev->cylinders = id[54];
1295 dev->heads = id[55];
1296 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001297 }
1298
1299 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001300 if (print_info)
1301 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1302 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1303 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001304 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001305 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001306 (unsigned long long)dev->n_sectors,
1307 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
1309
Tejun Heo6e7846e2006-02-12 23:32:58 +09001310 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312
1313 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001314 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001315 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1317 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
Tejun Heoffeae412006-03-01 16:09:35 +09001318 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 goto err_out_nosup;
1320 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001321 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001324 if (print_info)
1325 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
Tejun Heoff8854b2006-03-06 04:31:56 +09001326 ap->id, dev->devno, ata_mode_string(xfer_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328
Tejun Heo6e7846e2006-02-12 23:32:58 +09001329 ap->host->max_cmd_len = 0;
1330 for (i = 0; i < ATA_MAX_DEVICES; i++)
1331 ap->host->max_cmd_len = max_t(unsigned int,
1332 ap->host->max_cmd_len,
1333 ap->device[i].cdb_len);
1334
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001335 /* limit bridge transfers to udma5, 200 sectors */
1336 if (ata_dev_knobble(ap, dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001337 if (print_info)
1338 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1339 ap->id, dev->devno);
Tejun Heo5a529132006-03-24 14:07:50 +09001340 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001341 dev->max_sectors = ATA_MAX_SECTORS;
1342 }
1343
1344 if (ap->ops->dev_config)
1345 ap->ops->dev_config(ap, dev);
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001348 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001352 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
1355/**
1356 * ata_bus_probe - Reset and probe ATA bus
1357 * @ap: Bus to probe
1358 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001359 * Master ATA bus probing function. Initiates a hardware-dependent
1360 * bus reset, then attempts to identify any devices found on
1361 * the bus.
1362 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001364 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 *
1366 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001367 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 */
1369
1370static int ata_bus_probe(struct ata_port *ap)
1371{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001372 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001373 int tries[ATA_MAX_DEVICES];
1374 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001375 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Tejun Heo28ca5c52006-03-01 16:09:36 +09001377 ata_port_probe(ap);
1378
Tejun Heo14d2bac2006-04-02 17:54:46 +09001379 for (i = 0; i < ATA_MAX_DEVICES; i++)
1380 tries[i] = ATA_PROBE_MAX_TRIES;
1381
1382 retry:
1383 down_xfermask = 0;
1384
Tejun Heo20444702006-03-13 01:57:01 +09001385 /* reset and determine device classes */
1386 for (i = 0; i < ATA_MAX_DEVICES; i++)
1387 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001388
Tejun Heo20444702006-03-13 01:57:01 +09001389 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001390 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001391 if (rc) {
1392 printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1393 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001394 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001395 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001396 ap->ops->phy_reset(ap);
1397
Tejun Heo198e0fe2006-04-02 18:51:52 +09001398 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo20444702006-03-13 01:57:01 +09001399 for (i = 0; i < ATA_MAX_DEVICES; i++)
Tejun Heo28ca5c52006-03-01 16:09:36 +09001400 classes[i] = ap->device[i].class;
Tejun Heo20444702006-03-13 01:57:01 +09001401
Tejun Heo28ca5c52006-03-01 16:09:36 +09001402 ata_port_probe(ap);
1403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Tejun Heo20444702006-03-13 01:57:01 +09001405 for (i = 0; i < ATA_MAX_DEVICES; i++)
1406 if (classes[i] == ATA_DEV_UNKNOWN)
1407 classes[i] = ATA_DEV_NONE;
1408
Tejun Heo28ca5c52006-03-01 16:09:36 +09001409 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001411 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001412 dev->class = classes[i];
1413
Tejun Heo14d2bac2006-04-02 17:54:46 +09001414 if (!tries[i]) {
1415 ata_down_xfermask_limit(ap, dev, 1);
1416 ata_dev_disable(ap, dev);
1417 }
1418
Tejun Heoe1211e32006-04-01 01:38:18 +09001419 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001420 continue;
1421
Tejun Heo14d2bac2006-04-02 17:54:46 +09001422 kfree(dev->id);
1423 dev->id = NULL;
1424 rc = ata_dev_read_id(ap, dev, &dev->class, 1, &dev->id);
1425 if (rc)
1426 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001427
Tejun Heo14d2bac2006-04-02 17:54:46 +09001428 rc = ata_dev_configure(ap, dev, 1);
1429 if (rc)
1430 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001433 /* configure transfer mode */
1434 if (ap->ops->set_mode) {
1435 /* FIXME: make ->set_mode handle no device case and
1436 * return error code and failing device on failure as
1437 * ata_set_mode() does.
1438 */
Tejun Heo14d2bac2006-04-02 17:54:46 +09001439 for (i = 0; i < ATA_MAX_DEVICES; i++)
1440 if (ata_dev_enabled(&ap->device[i])) {
1441 ap->ops->set_mode(ap);
1442 break;
1443 }
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001444 rc = 0;
1445 } else {
Tejun Heo14d2bac2006-04-02 17:54:46 +09001446 rc = ata_set_mode(ap, &dev);
1447 if (rc) {
1448 down_xfermask = 1;
1449 goto fail;
1450 }
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001453 for (i = 0; i < ATA_MAX_DEVICES; i++)
1454 if (ata_dev_enabled(&ap->device[i]))
1455 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001456
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001457 /* no device present, disable port */
1458 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001460 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001461
1462 fail:
1463 switch (rc) {
1464 case -EINVAL:
1465 case -ENODEV:
1466 tries[dev->devno] = 0;
1467 break;
1468 case -EIO:
1469 ata_down_sata_spd_limit(ap);
1470 /* fall through */
1471 default:
1472 tries[dev->devno]--;
1473 if (down_xfermask &&
1474 ata_down_xfermask_limit(ap, dev, tries[dev->devno] == 1))
1475 tries[dev->devno] = 0;
1476 }
1477
1478 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
1481/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001482 * ata_port_probe - Mark port as enabled
1483 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001485 * Modify @ap data structure such that the system
1486 * thinks that the entire port is enabled.
1487 *
1488 * LOCKING: host_set lock, or some other form of
1489 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 */
1491
1492void ata_port_probe(struct ata_port *ap)
1493{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001494 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
1497/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001498 * sata_print_link_status - Print SATA link status
1499 * @ap: SATA port to printk link status about
1500 *
1501 * This function prints link speed and status of a SATA link.
1502 *
1503 * LOCKING:
1504 * None.
1505 */
1506static void sata_print_link_status(struct ata_port *ap)
1507{
1508 u32 sstatus, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001509
1510 if (!ap->ops->scr_read)
1511 return;
1512
1513 sstatus = scr_read(ap, SCR_STATUS);
1514
1515 if (sata_dev_present(ap)) {
1516 tmp = (sstatus >> 4) & 0xf;
Tejun Heo4c360c82006-04-01 01:38:17 +09001517 printk(KERN_INFO "ata%u: SATA link up %s (SStatus %X)\n",
1518 ap->id, sata_spd_string(tmp), sstatus);
Tejun Heo3be680b2005-12-19 22:35:02 +09001519 } else {
1520 printk(KERN_INFO "ata%u: SATA link down (SStatus %X)\n",
1521 ap->id, sstatus);
1522 }
1523}
1524
1525/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001526 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1527 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001529 * This function issues commands to standard SATA Sxxx
1530 * PHY registers, to wake up the phy (and device), and
1531 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 *
1533 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001534 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 *
1536 */
1537void __sata_phy_reset(struct ata_port *ap)
1538{
1539 u32 sstatus;
1540 unsigned long timeout = jiffies + (HZ * 5);
1541
1542 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001543 /* issue phy wake/reset */
1544 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001545 /* Couldn't find anything in SATA I/II specs, but
1546 * AHCI-1.1 10.4.2 says at least 1 ms. */
1547 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
Brett Russcdcca892005-03-28 15:10:27 -05001549 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 /* wait for phy to become ready, if necessary */
1552 do {
1553 msleep(200);
1554 sstatus = scr_read(ap, SCR_STATUS);
1555 if ((sstatus & 0xf) != 1)
1556 break;
1557 } while (time_before(jiffies, timeout));
1558
Tejun Heo3be680b2005-12-19 22:35:02 +09001559 /* print link status */
1560 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001561
Tejun Heo3be680b2005-12-19 22:35:02 +09001562 /* TODO: phy layer with polling, timeouts, etc. */
1563 if (sata_dev_present(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001565 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Tejun Heo198e0fe2006-04-02 18:51:52 +09001568 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 return;
1570
1571 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1572 ata_port_disable(ap);
1573 return;
1574 }
1575
1576 ap->cbl = ATA_CBL_SATA;
1577}
1578
1579/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001580 * sata_phy_reset - Reset SATA bus.
1581 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001583 * This function resets the SATA bus, and then probes
1584 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 *
1586 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001587 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 *
1589 */
1590void sata_phy_reset(struct ata_port *ap)
1591{
1592 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001593 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return;
1595 ata_bus_reset(ap);
1596}
1597
1598/**
Alan Coxebdfca62006-03-23 15:38:34 +00001599 * ata_dev_pair - return other device on cable
1600 * @ap: port
1601 * @adev: device
1602 *
1603 * Obtain the other device on the same cable, or if none is
1604 * present NULL is returned
1605 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001606
Alan Coxebdfca62006-03-23 15:38:34 +00001607struct ata_device *ata_dev_pair(struct ata_port *ap, struct ata_device *adev)
1608{
1609 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001610 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001611 return NULL;
1612 return pair;
1613}
1614
1615/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001616 * ata_port_disable - Disable port.
1617 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001619 * Modify @ap data structure such that the system
1620 * thinks that the entire port is disabled, and should
1621 * never attempt to probe or communicate with devices
1622 * on this port.
1623 *
1624 * LOCKING: host_set lock, or some other form of
1625 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 */
1627
1628void ata_port_disable(struct ata_port *ap)
1629{
1630 ap->device[0].class = ATA_DEV_NONE;
1631 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001632 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
Tejun Heo1c3fae42006-04-02 20:53:28 +09001635/**
1636 * ata_down_sata_spd_limit - adjust SATA spd limit downward
1637 * @ap: Port to adjust SATA spd limit for
1638 *
1639 * Adjust SATA spd limit of @ap downward. Note that this
1640 * function only adjusts the limit. The change must be applied
1641 * using ata_set_sata_spd().
1642 *
1643 * LOCKING:
1644 * Inherited from caller.
1645 *
1646 * RETURNS:
1647 * 0 on success, negative errno on failure
1648 */
1649static int ata_down_sata_spd_limit(struct ata_port *ap)
1650{
1651 u32 spd, mask;
1652 int highbit;
1653
1654 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1655 return -EOPNOTSUPP;
1656
1657 mask = ap->sata_spd_limit;
1658 if (mask <= 1)
1659 return -EINVAL;
1660 highbit = fls(mask) - 1;
1661 mask &= ~(1 << highbit);
1662
1663 spd = (scr_read(ap, SCR_STATUS) >> 4) & 0xf;
1664 if (spd <= 1)
1665 return -EINVAL;
1666 spd--;
1667 mask &= (1 << spd) - 1;
1668 if (!mask)
1669 return -EINVAL;
1670
1671 ap->sata_spd_limit = mask;
1672
1673 printk(KERN_WARNING "ata%u: limiting SATA link speed to %s\n",
1674 ap->id, sata_spd_string(fls(mask)));
1675
1676 return 0;
1677}
1678
1679static int __ata_set_sata_spd_needed(struct ata_port *ap, u32 *scontrol)
1680{
1681 u32 spd, limit;
1682
1683 if (ap->sata_spd_limit == UINT_MAX)
1684 limit = 0;
1685 else
1686 limit = fls(ap->sata_spd_limit);
1687
1688 spd = (*scontrol >> 4) & 0xf;
1689 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1690
1691 return spd != limit;
1692}
1693
1694/**
1695 * ata_set_sata_spd_needed - is SATA spd configuration needed
1696 * @ap: Port in question
1697 *
1698 * Test whether the spd limit in SControl matches
1699 * @ap->sata_spd_limit. This function is used to determine
1700 * whether hardreset is necessary to apply SATA spd
1701 * configuration.
1702 *
1703 * LOCKING:
1704 * Inherited from caller.
1705 *
1706 * RETURNS:
1707 * 1 if SATA spd configuration is needed, 0 otherwise.
1708 */
1709static int ata_set_sata_spd_needed(struct ata_port *ap)
1710{
1711 u32 scontrol;
1712
1713 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1714 return 0;
1715
1716 scontrol = scr_read(ap, SCR_CONTROL);
1717
1718 return __ata_set_sata_spd_needed(ap, &scontrol);
1719}
1720
1721/**
1722 * ata_set_sata_spd - set SATA spd according to spd limit
1723 * @ap: Port to set SATA spd for
1724 *
1725 * Set SATA spd of @ap according to sata_spd_limit.
1726 *
1727 * LOCKING:
1728 * Inherited from caller.
1729 *
1730 * RETURNS:
1731 * 0 if spd doesn't need to be changed, 1 if spd has been
1732 * changed. -EOPNOTSUPP if SCR registers are inaccessible.
1733 */
1734static int ata_set_sata_spd(struct ata_port *ap)
1735{
1736 u32 scontrol;
1737
1738 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1739 return -EOPNOTSUPP;
1740
1741 scontrol = scr_read(ap, SCR_CONTROL);
1742 if (!__ata_set_sata_spd_needed(ap, &scontrol))
1743 return 0;
1744
1745 scr_write(ap, SCR_CONTROL, scontrol);
1746 return 1;
1747}
1748
Alan Cox452503f2005-10-21 19:01:32 -04001749/*
1750 * This mode timing computation functionality is ported over from
1751 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1752 */
1753/*
1754 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1755 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1756 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001757 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001758 */
1759
1760static const struct ata_timing ata_timing[] = {
1761
1762 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1763 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1764 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1765 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1766
1767 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1768 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1769 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1770
1771/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001772
Alan Cox452503f2005-10-21 19:01:32 -04001773 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1774 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1775 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001776
Alan Cox452503f2005-10-21 19:01:32 -04001777 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1778 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1779 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1780
1781/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1782 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1783 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1784
1785 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1786 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1787 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1788
1789/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1790
1791 { 0xFF }
1792};
1793
1794#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1795#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1796
1797static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1798{
1799 q->setup = EZ(t->setup * 1000, T);
1800 q->act8b = EZ(t->act8b * 1000, T);
1801 q->rec8b = EZ(t->rec8b * 1000, T);
1802 q->cyc8b = EZ(t->cyc8b * 1000, T);
1803 q->active = EZ(t->active * 1000, T);
1804 q->recover = EZ(t->recover * 1000, T);
1805 q->cycle = EZ(t->cycle * 1000, T);
1806 q->udma = EZ(t->udma * 1000, UT);
1807}
1808
1809void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1810 struct ata_timing *m, unsigned int what)
1811{
1812 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1813 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1814 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1815 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1816 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1817 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1818 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1819 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1820}
1821
1822static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1823{
1824 const struct ata_timing *t;
1825
1826 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001827 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001828 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001829 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001830}
1831
1832int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1833 struct ata_timing *t, int T, int UT)
1834{
1835 const struct ata_timing *s;
1836 struct ata_timing p;
1837
1838 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001839 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001840 */
Alan Cox452503f2005-10-21 19:01:32 -04001841
1842 if (!(s = ata_timing_find_mode(speed)))
1843 return -EINVAL;
1844
Albert Lee75b1f2f2005-11-16 17:06:18 +08001845 memcpy(t, s, sizeof(*s));
1846
Alan Cox452503f2005-10-21 19:01:32 -04001847 /*
1848 * If the drive is an EIDE drive, it can tell us it needs extended
1849 * PIO/MW_DMA cycle timing.
1850 */
1851
1852 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1853 memset(&p, 0, sizeof(p));
1854 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1855 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1856 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1857 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1858 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1859 }
1860 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1861 }
1862
1863 /*
1864 * Convert the timing to bus clock counts.
1865 */
1866
Albert Lee75b1f2f2005-11-16 17:06:18 +08001867 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001868
1869 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001870 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1871 * S.M.A.R.T * and some other commands. We have to ensure that the
1872 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001873 */
1874
1875 if (speed > XFER_PIO_4) {
1876 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1877 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1878 }
1879
1880 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001881 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001882 */
1883
1884 if (t->act8b + t->rec8b < t->cyc8b) {
1885 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1886 t->rec8b = t->cyc8b - t->act8b;
1887 }
1888
1889 if (t->active + t->recover < t->cycle) {
1890 t->active += (t->cycle - (t->active + t->recover)) / 2;
1891 t->recover = t->cycle - t->active;
1892 }
1893
1894 return 0;
1895}
1896
Tejun Heocf176e12006-04-02 17:54:46 +09001897/**
1898 * ata_down_xfermask_limit - adjust dev xfer masks downward
1899 * @ap: Port associated with device @dev
1900 * @dev: Device to adjust xfer masks
1901 * @force_pio0: Force PIO0
1902 *
1903 * Adjust xfer masks of @dev downward. Note that this function
1904 * does not apply the change. Invoking ata_set_mode() afterwards
1905 * will apply the limit.
1906 *
1907 * LOCKING:
1908 * Inherited from caller.
1909 *
1910 * RETURNS:
1911 * 0 on success, negative errno on failure
1912 */
1913static int ata_down_xfermask_limit(struct ata_port *ap, struct ata_device *dev,
1914 int force_pio0)
1915{
1916 unsigned long xfer_mask;
1917 int highbit;
1918
1919 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
1920 dev->udma_mask);
1921
1922 if (!xfer_mask)
1923 goto fail;
1924 /* don't gear down to MWDMA from UDMA, go directly to PIO */
1925 if (xfer_mask & ATA_MASK_UDMA)
1926 xfer_mask &= ~ATA_MASK_MWDMA;
1927
1928 highbit = fls(xfer_mask) - 1;
1929 xfer_mask &= ~(1 << highbit);
1930 if (force_pio0)
1931 xfer_mask &= 1 << ATA_SHIFT_PIO;
1932 if (!xfer_mask)
1933 goto fail;
1934
1935 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
1936 &dev->udma_mask);
1937
1938 printk(KERN_WARNING "ata%u: dev %u limiting speed to %s\n",
1939 ap->id, dev->devno, ata_mode_string(xfer_mask));
1940
1941 return 0;
1942
1943 fail:
1944 return -EINVAL;
1945}
1946
Tejun Heo83206a22006-03-24 15:25:31 +09001947static int ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
Tejun Heo83206a22006-03-24 15:25:31 +09001949 unsigned int err_mask;
1950 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Tejun Heoe8384602006-04-02 18:51:53 +09001952 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 if (dev->xfer_shift == ATA_SHIFT_PIO)
1954 dev->flags |= ATA_DFLAG_PIO;
1955
Tejun Heo83206a22006-03-24 15:25:31 +09001956 err_mask = ata_dev_set_xfermode(ap, dev);
1957 if (err_mask) {
1958 printk(KERN_ERR
1959 "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1960 ap->id, err_mask);
1961 return -EIO;
1962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Tejun Heo83206a22006-03-24 15:25:31 +09001964 rc = ata_dev_revalidate(ap, dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09001965 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09001966 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09001967
Tejun Heo23e71c32006-03-06 04:31:57 +09001968 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1969 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
Tejun Heo23e71c32006-03-06 04:31:57 +09001972 ap->id, dev->devno,
1973 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001974 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975}
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977/**
1978 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1979 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001980 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001982 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
1983 * ata_set_mode() fails, pointer to the failing device is
1984 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04001985 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001987 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001988 *
1989 * RETURNS:
1990 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 */
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001992static int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
Tejun Heoe8e06192006-04-01 01:38:18 +09001994 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001995 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Tejun Heoa6d5a512006-03-06 04:31:57 +09001997 /* step 1: calculate xfer_mask */
1998 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09001999 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002000
Tejun Heoe8e06192006-04-01 01:38:18 +09002001 dev = &ap->device[i];
2002
Tejun Heoe1211e32006-04-01 01:38:18 +09002003 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002004 continue;
2005
Tejun Heoacf356b2006-03-24 14:07:50 +09002006 ata_dev_xfermask(ap, dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002007
Tejun Heoacf356b2006-03-24 14:07:50 +09002008 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2009 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2010 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2011 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002012
Tejun Heo4f659772006-04-01 01:38:18 +09002013 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002014 if (dev->dma_mode)
2015 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002016 }
Tejun Heo4f659772006-04-01 01:38:18 +09002017 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002018 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002019
2020 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002021 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2022 dev = &ap->device[i];
2023 if (!ata_dev_enabled(dev))
2024 continue;
2025
2026 if (!dev->pio_mode) {
2027 printk(KERN_WARNING "ata%u: dev %u no PIO support\n",
2028 ap->id, dev->devno);
2029 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002030 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002031 }
2032
2033 dev->xfer_mode = dev->pio_mode;
2034 dev->xfer_shift = ATA_SHIFT_PIO;
2035 if (ap->ops->set_piomode)
2036 ap->ops->set_piomode(ap, dev);
2037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Tejun Heoa6d5a512006-03-06 04:31:57 +09002039 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002040 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2041 dev = &ap->device[i];
2042
2043 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2044 continue;
2045
2046 dev->xfer_mode = dev->dma_mode;
2047 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2048 if (ap->ops->set_dmamode)
2049 ap->ops->set_dmamode(ap, dev);
2050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002053 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002054 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Tejun Heoe1211e32006-04-01 01:38:18 +09002056 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002057 continue;
2058
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002059 rc = ata_dev_set_mode(ap, dev);
2060 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002061 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Tejun Heoe8e06192006-04-01 01:38:18 +09002064 /* Record simplex status. If we selected DMA then the other
2065 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002066 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002067 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2068 ap->host_set->simplex_claimed = 1;
2069
Tejun Heoe8e06192006-04-01 01:38:18 +09002070 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (ap->ops->post_set_mode)
2072 ap->ops->post_set_mode(ap);
2073
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002074 out:
2075 if (rc)
2076 *r_failed_dev = dev;
2077 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
2080/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002081 * ata_tf_to_host - issue ATA taskfile to host controller
2082 * @ap: port to which command is being issued
2083 * @tf: ATA taskfile register set
2084 *
2085 * Issues ATA taskfile register set to ATA host controller,
2086 * with proper synchronization with interrupt handler and
2087 * other threads.
2088 *
2089 * LOCKING:
2090 * spin_lock_irqsave(host_set lock)
2091 */
2092
2093static inline void ata_tf_to_host(struct ata_port *ap,
2094 const struct ata_taskfile *tf)
2095{
2096 ap->ops->tf_load(ap, tf);
2097 ap->ops->exec_command(ap, tf);
2098}
2099
2100/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 * ata_busy_sleep - sleep until BSY clears, or timeout
2102 * @ap: port containing status register to be polled
2103 * @tmout_pat: impatience timeout
2104 * @tmout: overall timeout
2105 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002106 * Sleep until ATA Status register bit BSY clears,
2107 * or a timeout occurs.
2108 *
2109 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 */
2111
Tejun Heo6f8b9952006-01-24 17:05:21 +09002112unsigned int ata_busy_sleep (struct ata_port *ap,
2113 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
2115 unsigned long timer_start, timeout;
2116 u8 status;
2117
2118 status = ata_busy_wait(ap, ATA_BUSY, 300);
2119 timer_start = jiffies;
2120 timeout = timer_start + tmout_pat;
2121 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2122 msleep(50);
2123 status = ata_busy_wait(ap, ATA_BUSY, 3);
2124 }
2125
2126 if (status & ATA_BUSY)
2127 printk(KERN_WARNING "ata%u is slow to respond, "
2128 "please be patient\n", ap->id);
2129
2130 timeout = timer_start + tmout;
2131 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2132 msleep(50);
2133 status = ata_chk_status(ap);
2134 }
2135
2136 if (status & ATA_BUSY) {
2137 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
2138 ap->id, tmout / HZ);
2139 return 1;
2140 }
2141
2142 return 0;
2143}
2144
2145static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2146{
2147 struct ata_ioports *ioaddr = &ap->ioaddr;
2148 unsigned int dev0 = devmask & (1 << 0);
2149 unsigned int dev1 = devmask & (1 << 1);
2150 unsigned long timeout;
2151
2152 /* if device 0 was found in ata_devchk, wait for its
2153 * BSY bit to clear
2154 */
2155 if (dev0)
2156 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2157
2158 /* if device 1 was found in ata_devchk, wait for
2159 * register access, then wait for BSY to clear
2160 */
2161 timeout = jiffies + ATA_TMOUT_BOOT;
2162 while (dev1) {
2163 u8 nsect, lbal;
2164
2165 ap->ops->dev_select(ap, 1);
2166 if (ap->flags & ATA_FLAG_MMIO) {
2167 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2168 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2169 } else {
2170 nsect = inb(ioaddr->nsect_addr);
2171 lbal = inb(ioaddr->lbal_addr);
2172 }
2173 if ((nsect == 1) && (lbal == 1))
2174 break;
2175 if (time_after(jiffies, timeout)) {
2176 dev1 = 0;
2177 break;
2178 }
2179 msleep(50); /* give drive a breather */
2180 }
2181 if (dev1)
2182 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2183
2184 /* is all this really necessary? */
2185 ap->ops->dev_select(ap, 0);
2186 if (dev1)
2187 ap->ops->dev_select(ap, 1);
2188 if (dev0)
2189 ap->ops->dev_select(ap, 0);
2190}
2191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192static unsigned int ata_bus_softreset(struct ata_port *ap,
2193 unsigned int devmask)
2194{
2195 struct ata_ioports *ioaddr = &ap->ioaddr;
2196
2197 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2198
2199 /* software reset. causes dev0 to be selected */
2200 if (ap->flags & ATA_FLAG_MMIO) {
2201 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2202 udelay(20); /* FIXME: flush */
2203 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2204 udelay(20); /* FIXME: flush */
2205 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2206 } else {
2207 outb(ap->ctl, ioaddr->ctl_addr);
2208 udelay(10);
2209 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2210 udelay(10);
2211 outb(ap->ctl, ioaddr->ctl_addr);
2212 }
2213
2214 /* spec mandates ">= 2ms" before checking status.
2215 * We wait 150ms, because that was the magic delay used for
2216 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2217 * between when the ATA command register is written, and then
2218 * status is checked. Because waiting for "a while" before
2219 * checking status is fine, post SRST, we perform this magic
2220 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002221 *
2222 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 */
2224 msleep(150);
2225
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002226 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002227 * the bus shows 0xFF because the odd clown forgets the D7
2228 * pulldown resistor.
2229 */
Alan Cox09c7ad72006-03-22 15:52:40 +00002230 if (ata_check_status(ap) == 0xFF)
Tejun Heo298a41c2006-03-25 02:58:13 +09002231 return AC_ERR_OTHER;
Alan Cox09c7ad72006-03-22 15:52:40 +00002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 ata_bus_post_reset(ap, devmask);
2234
2235 return 0;
2236}
2237
2238/**
2239 * ata_bus_reset - reset host port and associated ATA channel
2240 * @ap: port to reset
2241 *
2242 * This is typically the first time we actually start issuing
2243 * commands to the ATA channel. We wait for BSY to clear, then
2244 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2245 * result. Determine what devices, if any, are on the channel
2246 * by looking at the device 0/1 error register. Look at the signature
2247 * stored in each device's taskfile registers, to determine if
2248 * the device is ATA or ATAPI.
2249 *
2250 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002251 * PCI/etc. bus probe sem.
2252 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 *
2254 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002255 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 */
2257
2258void ata_bus_reset(struct ata_port *ap)
2259{
2260 struct ata_ioports *ioaddr = &ap->ioaddr;
2261 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2262 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002263 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2266
2267 /* determine if device 0/1 are present */
2268 if (ap->flags & ATA_FLAG_SATA_RESET)
2269 dev0 = 1;
2270 else {
2271 dev0 = ata_devchk(ap, 0);
2272 if (slave_possible)
2273 dev1 = ata_devchk(ap, 1);
2274 }
2275
2276 if (dev0)
2277 devmask |= (1 << 0);
2278 if (dev1)
2279 devmask |= (1 << 1);
2280
2281 /* select device 0 again */
2282 ap->ops->dev_select(ap, 0);
2283
2284 /* issue bus reset */
2285 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002286 if (ata_bus_softreset(ap, devmask))
2287 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 /*
2290 * determine by signature whether we have ATA or ATAPI devices
2291 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002292 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002294 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 /* re-enable interrupts */
2297 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2298 ata_irq_on(ap);
2299
2300 /* is double-select really necessary? */
2301 if (ap->device[1].class != ATA_DEV_NONE)
2302 ap->ops->dev_select(ap, 1);
2303 if (ap->device[0].class != ATA_DEV_NONE)
2304 ap->ops->dev_select(ap, 0);
2305
2306 /* if no devices were detected, disable this port */
2307 if ((ap->device[0].class == ATA_DEV_NONE) &&
2308 (ap->device[1].class == ATA_DEV_NONE))
2309 goto err_out;
2310
2311 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2312 /* set up device control for ATA_FLAG_SATA_RESET */
2313 if (ap->flags & ATA_FLAG_MMIO)
2314 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2315 else
2316 outb(ap->ctl, ioaddr->ctl_addr);
2317 }
2318
2319 DPRINTK("EXIT\n");
2320 return;
2321
2322err_out:
2323 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2324 ap->ops->port_disable(ap);
2325
2326 DPRINTK("EXIT\n");
2327}
2328
Tejun Heo7a7921e2006-02-02 18:20:00 +09002329static int sata_phy_resume(struct ata_port *ap)
2330{
2331 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo852ee162006-04-01 01:38:18 +09002332 u32 scontrol, sstatus;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002333
Tejun Heo852ee162006-04-01 01:38:18 +09002334 scontrol = scr_read(ap, SCR_CONTROL);
2335 scontrol = (scontrol & 0x0f0) | 0x300;
2336 scr_write_flush(ap, SCR_CONTROL, scontrol);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002337
2338 /* Wait for phy to become ready, if necessary. */
2339 do {
2340 msleep(200);
2341 sstatus = scr_read(ap, SCR_STATUS);
2342 if ((sstatus & 0xf) != 1)
2343 return 0;
2344 } while (time_before(jiffies, timeout));
2345
2346 return -1;
2347}
2348
Tejun Heoc2bd5802006-01-24 17:05:22 +09002349/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002350 * ata_std_probeinit - initialize probing
2351 * @ap: port to be probed
2352 *
2353 * @ap is about to be probed. Initialize it. This function is
2354 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002355 *
2356 * NOTE!!! Do not use this function as probeinit if a low level
2357 * driver implements only hardreset. Just pass NULL as probeinit
2358 * in that case. Using this function is probably okay but doing
2359 * so makes reset sequence different from the original
2360 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002361 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002362void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002363{
Alan Cox17efc5f2006-03-27 19:01:32 +01002364 if ((ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002365 u32 spd;
2366
Tejun Heo8a19ac82006-02-02 18:20:00 +09002367 sata_phy_resume(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002368
2369 spd = (scr_read(ap, SCR_CONTROL) & 0xf0) >> 4;
2370 if (spd)
2371 ap->sata_spd_limit &= (1 << spd) - 1;
2372
Tejun Heo3a397462006-02-10 23:58:48 +09002373 if (sata_dev_present(ap))
2374 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2375 }
Tejun Heo8a19ac82006-02-02 18:20:00 +09002376}
2377
2378/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002379 * ata_std_softreset - reset host port via ATA SRST
2380 * @ap: port to reset
2381 * @verbose: fail verbosely
2382 * @classes: resulting classes of attached devices
2383 *
2384 * Reset host port using ATA SRST. This function is to be used
2385 * as standard callback for ata_drive_*_reset() functions.
2386 *
2387 * LOCKING:
2388 * Kernel thread context (may sleep)
2389 *
2390 * RETURNS:
2391 * 0 on success, -errno otherwise.
2392 */
2393int ata_std_softreset(struct ata_port *ap, int verbose, unsigned int *classes)
2394{
2395 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2396 unsigned int devmask = 0, err_mask;
2397 u8 err;
2398
2399 DPRINTK("ENTER\n");
2400
Tejun Heo3a397462006-02-10 23:58:48 +09002401 if (ap->ops->scr_read && !sata_dev_present(ap)) {
2402 classes[0] = ATA_DEV_NONE;
2403 goto out;
2404 }
2405
Tejun Heoc2bd5802006-01-24 17:05:22 +09002406 /* determine if device 0/1 are present */
2407 if (ata_devchk(ap, 0))
2408 devmask |= (1 << 0);
2409 if (slave_possible && ata_devchk(ap, 1))
2410 devmask |= (1 << 1);
2411
Tejun Heoc2bd5802006-01-24 17:05:22 +09002412 /* select device 0 again */
2413 ap->ops->dev_select(ap, 0);
2414
2415 /* issue bus reset */
2416 DPRINTK("about to softreset, devmask=%x\n", devmask);
2417 err_mask = ata_bus_softreset(ap, devmask);
2418 if (err_mask) {
2419 if (verbose)
2420 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2421 ap->id, err_mask);
2422 else
2423 DPRINTK("EXIT, softreset failed (err_mask=0x%x)\n",
2424 err_mask);
2425 return -EIO;
2426 }
2427
2428 /* determine by signature whether we have ATA or ATAPI devices */
2429 classes[0] = ata_dev_try_classify(ap, 0, &err);
2430 if (slave_possible && err != 0x81)
2431 classes[1] = ata_dev_try_classify(ap, 1, &err);
2432
Tejun Heo3a397462006-02-10 23:58:48 +09002433 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002434 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2435 return 0;
2436}
2437
2438/**
2439 * sata_std_hardreset - reset host port via SATA phy reset
2440 * @ap: port to reset
2441 * @verbose: fail verbosely
2442 * @class: resulting class of attached device
2443 *
2444 * SATA phy-reset host port using DET bits of SControl register.
2445 * This function is to be used as standard callback for
2446 * ata_drive_*_reset().
2447 *
2448 * LOCKING:
2449 * Kernel thread context (may sleep)
2450 *
2451 * RETURNS:
2452 * 0 on success, -errno otherwise.
2453 */
2454int sata_std_hardreset(struct ata_port *ap, int verbose, unsigned int *class)
2455{
Tejun Heo852ee162006-04-01 01:38:18 +09002456 u32 scontrol;
2457
Tejun Heoc2bd5802006-01-24 17:05:22 +09002458 DPRINTK("ENTER\n");
2459
Tejun Heo1c3fae42006-04-02 20:53:28 +09002460 if (ata_set_sata_spd_needed(ap)) {
2461 /* SATA spec says nothing about how to reconfigure
2462 * spd. To be on the safe side, turn off phy during
2463 * reconfiguration. This works for at least ICH7 AHCI
2464 * and Sil3124.
2465 */
2466 scontrol = scr_read(ap, SCR_CONTROL);
2467 scontrol = (scontrol & 0x0f0) | 0x302;
2468 scr_write_flush(ap, SCR_CONTROL, scontrol);
2469
2470 ata_set_sata_spd(ap);
2471 }
2472
2473 /* issue phy wake/reset */
Tejun Heo852ee162006-04-01 01:38:18 +09002474 scontrol = scr_read(ap, SCR_CONTROL);
2475 scontrol = (scontrol & 0x0f0) | 0x301;
2476 scr_write_flush(ap, SCR_CONTROL, scontrol);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002477
Tejun Heo1c3fae42006-04-02 20:53:28 +09002478 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002479 * 10.4.2 says at least 1 ms.
2480 */
2481 msleep(1);
2482
Tejun Heo1c3fae42006-04-02 20:53:28 +09002483 /* bring phy back */
Tejun Heo7a7921e2006-02-02 18:20:00 +09002484 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002485
Tejun Heoc2bd5802006-01-24 17:05:22 +09002486 /* TODO: phy layer with polling, timeouts, etc. */
2487 if (!sata_dev_present(ap)) {
2488 *class = ATA_DEV_NONE;
2489 DPRINTK("EXIT, link offline\n");
2490 return 0;
2491 }
2492
2493 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2494 if (verbose)
2495 printk(KERN_ERR "ata%u: COMRESET failed "
2496 "(device not ready)\n", ap->id);
2497 else
2498 DPRINTK("EXIT, device not ready\n");
2499 return -EIO;
2500 }
2501
Tejun Heo3a397462006-02-10 23:58:48 +09002502 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2503
Tejun Heoc2bd5802006-01-24 17:05:22 +09002504 *class = ata_dev_try_classify(ap, 0, NULL);
2505
2506 DPRINTK("EXIT, class=%u\n", *class);
2507 return 0;
2508}
2509
2510/**
2511 * ata_std_postreset - standard postreset callback
2512 * @ap: the target ata_port
2513 * @classes: classes of attached devices
2514 *
2515 * This function is invoked after a successful reset. Note that
2516 * the device might have been reset more than once using
2517 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002518 *
2519 * This function is to be used as standard callback for
2520 * ata_drive_*_reset().
2521 *
2522 * LOCKING:
2523 * Kernel thread context (may sleep)
2524 */
2525void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2526{
2527 DPRINTK("ENTER\n");
2528
Tejun Heo56497bd2006-02-15 15:01:42 +09002529 /* set cable type if it isn't already set */
Tejun Heoc2bd5802006-01-24 17:05:22 +09002530 if (ap->cbl == ATA_CBL_NONE && ap->flags & ATA_FLAG_SATA)
2531 ap->cbl = ATA_CBL_SATA;
2532
2533 /* print link status */
2534 if (ap->cbl == ATA_CBL_SATA)
2535 sata_print_link_status(ap);
2536
Tejun Heo3a397462006-02-10 23:58:48 +09002537 /* re-enable interrupts */
2538 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2539 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002540
2541 /* is double-select really necessary? */
2542 if (classes[0] != ATA_DEV_NONE)
2543 ap->ops->dev_select(ap, 1);
2544 if (classes[1] != ATA_DEV_NONE)
2545 ap->ops->dev_select(ap, 0);
2546
Tejun Heo3a397462006-02-10 23:58:48 +09002547 /* bail out if no device is present */
2548 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2549 DPRINTK("EXIT, no device\n");
2550 return;
2551 }
2552
2553 /* set up device control */
2554 if (ap->ioaddr.ctl_addr) {
2555 if (ap->flags & ATA_FLAG_MMIO)
2556 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2557 else
2558 outb(ap->ctl, ap->ioaddr.ctl_addr);
2559 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002560
2561 DPRINTK("EXIT\n");
2562}
2563
2564/**
2565 * ata_std_probe_reset - standard probe reset method
2566 * @ap: prot to perform probe-reset
2567 * @classes: resulting classes of attached devices
2568 *
2569 * The stock off-the-shelf ->probe_reset method.
2570 *
2571 * LOCKING:
2572 * Kernel thread context (may sleep)
2573 *
2574 * RETURNS:
2575 * 0 on success, -errno otherwise.
2576 */
2577int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2578{
2579 ata_reset_fn_t hardreset;
2580
2581 hardreset = NULL;
Tejun Heob911fc32006-02-02 18:20:00 +09002582 if (ap->flags & ATA_FLAG_SATA && ap->ops->scr_read)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002583 hardreset = sata_std_hardreset;
2584
Tejun Heo8a19ac82006-02-02 18:20:00 +09002585 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002586 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002587 ata_std_postreset, classes);
2588}
2589
Tejun Heo9974e7c2006-04-01 01:38:17 +09002590static int ata_do_reset(struct ata_port *ap,
2591 ata_reset_fn_t reset, ata_postreset_fn_t postreset,
2592 int verbose, unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002593{
2594 int i, rc;
2595
2596 for (i = 0; i < ATA_MAX_DEVICES; i++)
2597 classes[i] = ATA_DEV_UNKNOWN;
2598
Tejun Heo9974e7c2006-04-01 01:38:17 +09002599 rc = reset(ap, verbose, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002600 if (rc)
2601 return rc;
2602
2603 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2604 * is complete and convert all ATA_DEV_UNKNOWN to
2605 * ATA_DEV_NONE.
2606 */
2607 for (i = 0; i < ATA_MAX_DEVICES; i++)
2608 if (classes[i] != ATA_DEV_UNKNOWN)
2609 break;
2610
2611 if (i < ATA_MAX_DEVICES)
2612 for (i = 0; i < ATA_MAX_DEVICES; i++)
2613 if (classes[i] == ATA_DEV_UNKNOWN)
2614 classes[i] = ATA_DEV_NONE;
2615
2616 if (postreset)
2617 postreset(ap, classes);
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.
2643 * - If verbose is non-zero, print error message on failure;
2644 * otherwise, shut up.
2645 *
2646 * LOCKING:
2647 * Kernel thread context (may sleep)
2648 *
2649 * RETURNS:
2650 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2651 * if classification fails, and any error code from reset
2652 * methods.
2653 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002654int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002655 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2656 ata_postreset_fn_t postreset, unsigned int *classes)
2657{
2658 int rc = -EINVAL;
2659
Tejun Heo7944ea92006-02-02 18:20:00 +09002660 if (probeinit)
2661 probeinit(ap);
2662
Tejun Heo90dac022006-04-02 17:54:46 +09002663 if (softreset && !ata_set_sata_spd_needed(ap)) {
Tejun Heo9974e7c2006-04-01 01:38:17 +09002664 rc = ata_do_reset(ap, softreset, postreset, 0, classes);
2665 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2666 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002667 printk(KERN_INFO "ata%u: softreset failed, will try "
2668 "hardreset in 5 secs\n", ap->id);
2669 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002670 }
2671
2672 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002673 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002674
Tejun Heo90dac022006-04-02 17:54:46 +09002675 while (1) {
2676 rc = ata_do_reset(ap, hardreset, postreset, 0, classes);
2677 if (rc == 0) {
2678 if (classes[0] != ATA_DEV_UNKNOWN)
2679 goto done;
2680 break;
2681 }
2682
2683 if (ata_down_sata_spd_limit(ap))
2684 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002685
2686 printk(KERN_INFO "ata%u: hardreset failed, will retry "
2687 "in 5 secs\n", ap->id);
2688 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002689 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002690
Tejun Heoedbabd82006-04-02 20:55:02 +09002691 if (softreset) {
2692 printk(KERN_INFO "ata%u: hardreset succeeded without "
2693 "classification, will retry softreset in 5 secs\n",
2694 ap->id);
2695 ssleep(5);
2696
Tejun Heo9974e7c2006-04-01 01:38:17 +09002697 rc = ata_do_reset(ap, softreset, postreset, 0, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002698 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002699
Tejun Heo9974e7c2006-04-01 01:38:17 +09002700 done:
2701 if (rc == 0 && classes[0] == ATA_DEV_UNKNOWN)
2702 rc = -ENODEV;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002703 return rc;
2704}
2705
Tejun Heo623a3122006-03-05 17:55:58 +09002706/**
2707 * ata_dev_same_device - Determine whether new ID matches configured device
2708 * @ap: port on which the device to compare against resides
2709 * @dev: device to compare against
2710 * @new_class: class of the new device
2711 * @new_id: IDENTIFY page of the new device
2712 *
2713 * Compare @new_class and @new_id against @dev and determine
2714 * whether @dev is the device indicated by @new_class and
2715 * @new_id.
2716 *
2717 * LOCKING:
2718 * None.
2719 *
2720 * RETURNS:
2721 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2722 */
2723static int ata_dev_same_device(struct ata_port *ap, struct ata_device *dev,
2724 unsigned int new_class, const u16 *new_id)
2725{
2726 const u16 *old_id = dev->id;
2727 unsigned char model[2][41], serial[2][21];
2728 u64 new_n_sectors;
2729
2730 if (dev->class != new_class) {
2731 printk(KERN_INFO
2732 "ata%u: dev %u class mismatch %d != %d\n",
2733 ap->id, dev->devno, dev->class, new_class);
2734 return 0;
2735 }
2736
2737 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2738 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2739 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2740 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2741 new_n_sectors = ata_id_n_sectors(new_id);
2742
2743 if (strcmp(model[0], model[1])) {
2744 printk(KERN_INFO
2745 "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2746 ap->id, dev->devno, model[0], model[1]);
2747 return 0;
2748 }
2749
2750 if (strcmp(serial[0], serial[1])) {
2751 printk(KERN_INFO
2752 "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2753 ap->id, dev->devno, serial[0], serial[1]);
2754 return 0;
2755 }
2756
2757 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2758 printk(KERN_INFO
2759 "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2760 ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2761 (unsigned long long)new_n_sectors);
2762 return 0;
2763 }
2764
2765 return 1;
2766}
2767
2768/**
2769 * ata_dev_revalidate - Revalidate ATA device
2770 * @ap: port on which the device to revalidate resides
2771 * @dev: device to revalidate
2772 * @post_reset: is this revalidation after reset?
2773 *
2774 * Re-read IDENTIFY page and make sure @dev is still attached to
2775 * the port.
2776 *
2777 * LOCKING:
2778 * Kernel thread context (may sleep)
2779 *
2780 * RETURNS:
2781 * 0 on success, negative errno otherwise
2782 */
2783int ata_dev_revalidate(struct ata_port *ap, struct ata_device *dev,
2784 int post_reset)
2785{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002786 unsigned int class = dev->class;
2787 u16 *id = NULL;
Tejun Heo623a3122006-03-05 17:55:58 +09002788 int rc;
2789
Tejun Heo5eb45c02006-04-02 18:51:52 +09002790 if (!ata_dev_enabled(dev)) {
2791 rc = -ENODEV;
2792 goto fail;
2793 }
Tejun Heo623a3122006-03-05 17:55:58 +09002794
2795 /* allocate & read ID data */
2796 rc = ata_dev_read_id(ap, dev, &class, post_reset, &id);
2797 if (rc)
2798 goto fail;
2799
2800 /* is the device still there? */
2801 if (!ata_dev_same_device(ap, dev, class, id)) {
2802 rc = -ENODEV;
2803 goto fail;
2804 }
2805
2806 kfree(dev->id);
2807 dev->id = id;
2808
2809 /* configure device according to the new ID */
Tejun Heo5eb45c02006-04-02 18:51:52 +09002810 rc = ata_dev_configure(ap, dev, 0);
2811 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);
2817 kfree(id);
2818 return rc;
2819}
2820
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002821static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002822 "WDC AC11000H", NULL,
2823 "WDC AC22100H", NULL,
2824 "WDC AC32500H", NULL,
2825 "WDC AC33100H", NULL,
2826 "WDC AC31600H", NULL,
2827 "WDC AC32100H", "24.09P07",
2828 "WDC AC23200L", "21.10N21",
2829 "Compaq CRD-8241B", NULL,
2830 "CRD-8400B", NULL,
2831 "CRD-8480B", NULL,
2832 "CRD-8482B", NULL,
2833 "CRD-84", NULL,
2834 "SanDisk SDP3B", NULL,
2835 "SanDisk SDP3B-64", NULL,
2836 "SANYO CD-ROM CRD", NULL,
2837 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002838 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002839 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002840 "Toshiba CD-ROM XM-6202B", NULL,
2841 "TOSHIBA CD-ROM XM-1702BC", NULL,
2842 "CD-532E-A", NULL,
2843 "E-IDE CD-ROM CR-840", NULL,
2844 "CD-ROM Drive/F5A", NULL,
2845 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002846 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002847 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002848 "SanDisk SDP3B-64", NULL,
2849 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2850 "_NEC DV5800A", NULL,
2851 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002853
Alan Coxf4b15fe2006-03-22 15:54:04 +00002854static int ata_strim(char *s, size_t len)
2855{
2856 len = strnlen(s, len);
2857
2858 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2859 while ((len > 0) && (s[len - 1] == ' ')) {
2860 len--;
2861 s[len] = 0;
2862 }
2863 return len;
2864}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Jeff Garzik057ace52005-10-22 14:27:05 -04002866static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002868 unsigned char model_num[40];
2869 unsigned char model_rev[16];
2870 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 int i;
2872
Alan Coxf4b15fe2006-03-22 15:54:04 +00002873 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2874 sizeof(model_num));
2875 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2876 sizeof(model_rev));
2877 nlen = ata_strim(model_num, sizeof(model_num));
2878 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Alan Coxf4b15fe2006-03-22 15:54:04 +00002880 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2881 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2882 if (ata_dma_blacklist[i+1] == NULL)
2883 return 1;
2884 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2885 return 1;
2886 }
2887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 return 0;
2889}
2890
Tejun Heoa6d5a512006-03-06 04:31:57 +09002891/**
2892 * ata_dev_xfermask - Compute supported xfermask of the given device
2893 * @ap: Port on which the device to compute xfermask for resides
2894 * @dev: Device to compute xfermask for
2895 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002896 * Compute supported xfermask of @dev and store it in
2897 * dev->*_mask. This function is responsible for applying all
2898 * known limits including host controller limits, device
2899 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002900 *
Tejun Heo600511e2006-03-25 11:14:07 +09002901 * FIXME: The current implementation limits all transfer modes to
2902 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002903 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002904 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09002905 * LOCKING:
2906 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09002907 */
Tejun Heoacf356b2006-03-24 14:07:50 +09002908static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909{
Alan Cox5444a6f2006-03-27 18:58:20 +01002910 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002911 unsigned long xfer_mask;
2912 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
Tejun Heo565083e2006-04-02 17:54:47 +09002914 xfer_mask = ata_pack_xfermask(ap->pio_mask,
2915 ap->mwdma_mask, ap->udma_mask);
2916
2917 /* Apply cable rule here. Don't apply it early because when
2918 * we handle hot plug the cable type can itself change.
2919 */
2920 if (ap->cbl == ATA_CBL_PATA40)
2921 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Alan Cox5444a6f2006-03-27 18:58:20 +01002923 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002924 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2925 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09002926
2927 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002928 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09002929
2930 if (ata_dev_disabled(d)) {
2931 /* to avoid violating device selection timing */
2932 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2933 UINT_MAX, UINT_MAX);
2934 continue;
2935 }
2936
2937 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2938 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002939 xfer_mask &= ata_id_xfermask(d->id);
2940 if (ata_dma_blacklisted(d))
2941 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 }
2943
Tejun Heoa6d5a512006-03-06 04:31:57 +09002944 if (ata_dma_blacklisted(dev))
2945 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2946 "disabling DMA\n", ap->id, dev->devno);
2947
Alan Cox5444a6f2006-03-27 18:58:20 +01002948 if (hs->flags & ATA_HOST_SIMPLEX) {
2949 if (hs->simplex_claimed)
2950 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2951 }
Tejun Heo565083e2006-04-02 17:54:47 +09002952
Alan Cox5444a6f2006-03-27 18:58:20 +01002953 if (ap->ops->mode_filter)
2954 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
2955
Tejun Heo565083e2006-04-02 17:54:47 +09002956 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
2957 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958}
2959
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2962 * @ap: Port associated with device @dev
2963 * @dev: Device to which command will be sent
2964 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002965 * Issue SET FEATURES - XFER MODE command to device @dev
2966 * on port @ap.
2967 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002969 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002970 *
2971 * RETURNS:
2972 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 */
2974
Tejun Heo83206a22006-03-24 15:25:31 +09002975static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
2976 struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977{
Tejun Heoa0123702005-12-13 14:49:31 +09002978 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002979 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
2981 /* set up set-features taskfile */
2982 DPRINTK("set features - xfer mode\n");
2983
Tejun Heoa0123702005-12-13 14:49:31 +09002984 ata_tf_init(ap, &tf, dev->devno);
2985 tf.command = ATA_CMD_SET_FEATURES;
2986 tf.feature = SETFEATURES_XFER;
2987 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2988 tf.protocol = ATA_PROT_NODATA;
2989 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Tejun Heo83206a22006-03-24 15:25:31 +09002991 err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Tejun Heo83206a22006-03-24 15:25:31 +09002993 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2994 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995}
2996
2997/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04002998 * ata_dev_init_params - Issue INIT DEV PARAMS command
2999 * @ap: Port associated with device @dev
3000 * @dev: Device to which command will be sent
3001 *
3002 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003003 * Kernel thread context (may sleep)
3004 *
3005 * RETURNS:
3006 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003007 */
3008
Tejun Heo6aff8f12006-02-15 18:24:09 +09003009static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +08003010 struct ata_device *dev,
3011 u16 heads,
3012 u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003013{
Tejun Heoa0123702005-12-13 14:49:31 +09003014 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003015 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003016
3017 /* Number of sectors per track 1-255. Number of heads 1-16 */
3018 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003019 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003020
3021 /* set up init dev params taskfile */
3022 DPRINTK("init dev params \n");
3023
Tejun Heoa0123702005-12-13 14:49:31 +09003024 ata_tf_init(ap, &tf, dev->devno);
3025 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3026 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3027 tf.protocol = ATA_PROT_NODATA;
3028 tf.nsect = sectors;
3029 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003030
Tejun Heo6aff8f12006-02-15 18:24:09 +09003031 err_mask = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003032
Tejun Heo6aff8f12006-02-15 18:24:09 +09003033 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3034 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003035}
3036
3037/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003038 * ata_sg_clean - Unmap DMA memory associated with command
3039 * @qc: Command containing DMA memory to be released
3040 *
3041 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 *
3043 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003044 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 */
3046
3047static void ata_sg_clean(struct ata_queued_cmd *qc)
3048{
3049 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003050 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003052 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Tejun Heoa4631472006-02-11 19:11:13 +09003054 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3055 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
3057 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003058 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003060 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003062 /* if we padded the buffer out to 32-bit bound, and data
3063 * xfer direction is from-device, we must copy from the
3064 * pad buffer back into the supplied buffer
3065 */
3066 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3067 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3068
3069 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003070 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003071 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003072 /* restore last sg */
3073 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3074 if (pad_buf) {
3075 struct scatterlist *psg = &qc->pad_sgent;
3076 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3077 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003078 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003079 }
3080 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003081 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003082 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003083 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3084 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003085 /* restore sg */
3086 sg->length += qc->pad_len;
3087 if (pad_buf)
3088 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3089 pad_buf, qc->pad_len);
3090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
3092 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003093 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094}
3095
3096/**
3097 * ata_fill_sg - Fill PCI IDE PRD table
3098 * @qc: Metadata associated with taskfile to be transferred
3099 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003100 * Fill PCI IDE PRD (scatter-gather) table with segments
3101 * associated with the current disk command.
3102 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003104 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 *
3106 */
3107static void ata_fill_sg(struct ata_queued_cmd *qc)
3108{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003110 struct scatterlist *sg;
3111 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Tejun Heoa4631472006-02-11 19:11:13 +09003113 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003114 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
3116 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003117 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 u32 addr, offset;
3119 u32 sg_len, len;
3120
3121 /* determine if physical DMA addr spans 64K boundary.
3122 * Note h/w doesn't support 64-bit, so we unconditionally
3123 * truncate dma_addr_t to u32.
3124 */
3125 addr = (u32) sg_dma_address(sg);
3126 sg_len = sg_dma_len(sg);
3127
3128 while (sg_len) {
3129 offset = addr & 0xffff;
3130 len = sg_len;
3131 if ((offset + sg_len) > 0x10000)
3132 len = 0x10000 - offset;
3133
3134 ap->prd[idx].addr = cpu_to_le32(addr);
3135 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3136 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3137
3138 idx++;
3139 sg_len -= len;
3140 addr += len;
3141 }
3142 }
3143
3144 if (idx)
3145 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3146}
3147/**
3148 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3149 * @qc: Metadata associated with taskfile to check
3150 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003151 * Allow low-level driver to filter ATA PACKET commands, returning
3152 * a status indicating whether or not it is OK to use DMA for the
3153 * supplied PACKET command.
3154 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003156 * spin_lock_irqsave(host_set lock)
3157 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 * RETURNS: 0 when ATAPI DMA can be used
3159 * nonzero otherwise
3160 */
3161int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3162{
3163 struct ata_port *ap = qc->ap;
3164 int rc = 0; /* Assume ATAPI DMA is OK by default */
3165
3166 if (ap->ops->check_atapi_dma)
3167 rc = ap->ops->check_atapi_dma(qc);
3168
3169 return rc;
3170}
3171/**
3172 * ata_qc_prep - Prepare taskfile for submission
3173 * @qc: Metadata associated with taskfile to be prepared
3174 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003175 * Prepare ATA taskfile for submission.
3176 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 * LOCKING:
3178 * spin_lock_irqsave(host_set lock)
3179 */
3180void ata_qc_prep(struct ata_queued_cmd *qc)
3181{
3182 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3183 return;
3184
3185 ata_fill_sg(qc);
3186}
3187
Brian Kinge46834c2006-03-17 17:04:03 -06003188void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3189
Jeff Garzik0cba6322005-05-30 19:49:12 -04003190/**
3191 * ata_sg_init_one - Associate command with memory buffer
3192 * @qc: Command to be associated
3193 * @buf: Memory buffer
3194 * @buflen: Length of memory buffer, in bytes.
3195 *
3196 * Initialize the data-related elements of queued_cmd @qc
3197 * to point to a single memory buffer, @buf of byte length @buflen.
3198 *
3199 * LOCKING:
3200 * spin_lock_irqsave(host_set lock)
3201 */
3202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3204{
3205 struct scatterlist *sg;
3206
3207 qc->flags |= ATA_QCFLAG_SINGLE;
3208
3209 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003210 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003212 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 qc->buf_virt = buf;
3214
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003215 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003216 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217}
3218
Jeff Garzik0cba6322005-05-30 19:49:12 -04003219/**
3220 * ata_sg_init - Associate command with scatter-gather table.
3221 * @qc: Command to be associated
3222 * @sg: Scatter-gather table.
3223 * @n_elem: Number of elements in s/g table.
3224 *
3225 * Initialize the data-related elements of queued_cmd @qc
3226 * to point to a scatter-gather table @sg, containing @n_elem
3227 * elements.
3228 *
3229 * LOCKING:
3230 * spin_lock_irqsave(host_set lock)
3231 */
3232
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3234 unsigned int n_elem)
3235{
3236 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003237 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003239 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240}
3241
3242/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003243 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3244 * @qc: Command with memory buffer to be mapped.
3245 *
3246 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 *
3248 * LOCKING:
3249 * spin_lock_irqsave(host_set lock)
3250 *
3251 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003252 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 */
3254
3255static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3256{
3257 struct ata_port *ap = qc->ap;
3258 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003259 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003261 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003263 /* we must lengthen transfers to end on a 32-bit boundary */
3264 qc->pad_len = sg->length & 3;
3265 if (qc->pad_len) {
3266 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3267 struct scatterlist *psg = &qc->pad_sgent;
3268
Tejun Heoa4631472006-02-11 19:11:13 +09003269 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003270
3271 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3272
3273 if (qc->tf.flags & ATA_TFLAG_WRITE)
3274 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3275 qc->pad_len);
3276
3277 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3278 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3279 /* trim sg */
3280 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003281 if (sg->length == 0)
3282 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003283
3284 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3285 sg->length, qc->pad_len);
3286 }
3287
Tejun Heo2e242fa2006-02-20 23:48:38 +09003288 if (trim_sg) {
3289 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003290 goto skip_map;
3291 }
3292
Brian King2f1f6102006-03-23 17:30:15 -06003293 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003294 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003295 if (dma_mapping_error(dma_address)) {
3296 /* restore sg */
3297 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
3301 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003302 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
Tejun Heo2e242fa2006-02-20 23:48:38 +09003304skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3306 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3307
3308 return 0;
3309}
3310
3311/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003312 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3313 * @qc: Command with scatter-gather table to be mapped.
3314 *
3315 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 *
3317 * LOCKING:
3318 * spin_lock_irqsave(host_set lock)
3319 *
3320 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003321 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 *
3323 */
3324
3325static int ata_sg_setup(struct ata_queued_cmd *qc)
3326{
3327 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003328 struct scatterlist *sg = qc->__sg;
3329 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003330 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
3332 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003333 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003335 /* we must lengthen transfers to end on a 32-bit boundary */
3336 qc->pad_len = lsg->length & 3;
3337 if (qc->pad_len) {
3338 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3339 struct scatterlist *psg = &qc->pad_sgent;
3340 unsigned int offset;
3341
Tejun Heoa4631472006-02-11 19:11:13 +09003342 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003343
3344 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3345
3346 /*
3347 * psg->page/offset are used to copy to-be-written
3348 * data in this function or read data in ata_sg_clean.
3349 */
3350 offset = lsg->offset + lsg->length - qc->pad_len;
3351 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3352 psg->offset = offset_in_page(offset);
3353
3354 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3355 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3356 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003357 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003358 }
3359
3360 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3361 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3362 /* trim last sg */
3363 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003364 if (lsg->length == 0)
3365 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003366
3367 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3368 qc->n_elem - 1, lsg->length, qc->pad_len);
3369 }
3370
Jeff Garzike1410f22005-11-14 14:06:26 -05003371 pre_n_elem = qc->n_elem;
3372 if (trim_sg && pre_n_elem)
3373 pre_n_elem--;
3374
3375 if (!pre_n_elem) {
3376 n_elem = 0;
3377 goto skip_map;
3378 }
3379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003381 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003382 if (n_elem < 1) {
3383 /* restore last sg */
3384 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
3388 DPRINTK("%d sg elements mapped\n", n_elem);
3389
Jeff Garzike1410f22005-11-14 14:06:26 -05003390skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 qc->n_elem = n_elem;
3392
3393 return 0;
3394}
3395
3396/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003397 * ata_poll_qc_complete - turn irq back on and finish qc
3398 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003399 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003400 *
3401 * LOCKING:
3402 * None. (grabs host lock)
3403 */
3404
Albert Leea22e2eb2005-12-05 15:38:02 +08003405void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003406{
3407 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003408 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003409
Jeff Garzikb8f61532005-08-25 22:01:20 -04003410 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003411 ap->flags &= ~ATA_FLAG_NOINTR;
3412 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003413 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003414 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003415}
3416
3417/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003418 * ata_pio_poll - poll using PIO, depending on current state
Tejun Heoc91af2c2006-04-02 18:51:53 +09003419 * @qc: qc in progress
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 *
3421 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003422 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 *
3424 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003425 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003427static unsigned long ata_pio_poll(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003429 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08003431 unsigned int poll_state = HSM_ST_UNKNOWN;
3432 unsigned int reg_state = HSM_ST_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Albert Lee14be71f2005-09-27 17:36:35 +08003434 switch (ap->hsm_task_state) {
3435 case HSM_ST:
3436 case HSM_ST_POLL:
3437 poll_state = HSM_ST_POLL;
3438 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 break;
Albert Lee14be71f2005-09-27 17:36:35 +08003440 case HSM_ST_LAST:
3441 case HSM_ST_LAST_POLL:
3442 poll_state = HSM_ST_LAST_POLL;
3443 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 break;
3445 default:
3446 BUG();
3447 break;
3448 }
3449
3450 status = ata_chk_status(ap);
3451 if (status & ATA_BUSY) {
3452 if (time_after(jiffies, ap->pio_task_timeout)) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003453 qc->err_mask |= AC_ERR_TIMEOUT;
Albert Lee7c398332005-11-09 13:03:30 +08003454 ap->hsm_task_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 return 0;
3456 }
Albert Lee14be71f2005-09-27 17:36:35 +08003457 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 return ATA_SHORT_PAUSE;
3459 }
3460
Albert Lee14be71f2005-09-27 17:36:35 +08003461 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 return 0;
3463}
3464
3465/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003466 * ata_pio_complete - check if drive is busy or idle
Tejun Heoc91af2c2006-04-02 18:51:53 +09003467 * @qc: qc to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 *
3469 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003470 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003471 *
3472 * RETURNS:
3473 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003475static int ata_pio_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003477 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 u8 drv_stat;
3479
3480 /*
Alan Cox31433ea2005-08-26 15:56:47 +01003481 * This is purely heuristic. This is a fast path. Sometimes when
3482 * we enter, BSY will be cleared in a chk-status or two. If not,
3483 * the drive is probably seeking or something. Snooze for a couple
3484 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003485 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 */
Albert Leefe79e682005-12-06 11:34:59 +08003487 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3488 if (drv_stat & ATA_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 msleep(2);
Albert Leefe79e682005-12-06 11:34:59 +08003490 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3491 if (drv_stat & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003492 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003494 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 }
3496 }
3497
3498 drv_stat = ata_wait_idle(ap);
3499 if (!ata_ok(drv_stat)) {
Albert Lee1c848982005-12-05 15:40:15 +08003500 qc->err_mask |= __ac_err_mask(drv_stat);
Albert Lee14be71f2005-09-27 17:36:35 +08003501 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003502 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 }
3504
Albert Lee14be71f2005-09-27 17:36:35 +08003505 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
Tejun Heoa4631472006-02-11 19:11:13 +09003507 WARN_ON(qc->err_mask);
Albert Leea22e2eb2005-12-05 15:38:02 +08003508 ata_poll_qc_complete(qc);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003509
3510 /* another command may start at this point */
3511
3512 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513}
3514
Edward Falk0baab862005-06-02 18:17:13 -04003515
3516/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003517 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003518 * @buf: Buffer to swap
3519 * @buf_words: Number of 16-bit words in buffer.
3520 *
3521 * Swap halves of 16-bit words if needed to convert from
3522 * little-endian byte order to native cpu byte order, or
3523 * vice-versa.
3524 *
3525 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003526 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003527 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528void swap_buf_le16(u16 *buf, unsigned int buf_words)
3529{
3530#ifdef __BIG_ENDIAN
3531 unsigned int i;
3532
3533 for (i = 0; i < buf_words; i++)
3534 buf[i] = le16_to_cpu(buf[i]);
3535#endif /* __BIG_ENDIAN */
3536}
3537
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003538/**
3539 * ata_mmio_data_xfer - Transfer data by MMIO
3540 * @ap: port to read/write
3541 * @buf: data buffer
3542 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003543 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003544 *
3545 * Transfer data from/to the device data register by MMIO.
3546 *
3547 * LOCKING:
3548 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003549 */
3550
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3552 unsigned int buflen, int write_data)
3553{
3554 unsigned int i;
3555 unsigned int words = buflen >> 1;
3556 u16 *buf16 = (u16 *) buf;
3557 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3558
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003559 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 if (write_data) {
3561 for (i = 0; i < words; i++)
3562 writew(le16_to_cpu(buf16[i]), mmio);
3563 } else {
3564 for (i = 0; i < words; i++)
3565 buf16[i] = cpu_to_le16(readw(mmio));
3566 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003567
3568 /* Transfer trailing 1 byte, if any. */
3569 if (unlikely(buflen & 0x01)) {
3570 u16 align_buf[1] = { 0 };
3571 unsigned char *trailing_buf = buf + buflen - 1;
3572
3573 if (write_data) {
3574 memcpy(align_buf, trailing_buf, 1);
3575 writew(le16_to_cpu(align_buf[0]), mmio);
3576 } else {
3577 align_buf[0] = cpu_to_le16(readw(mmio));
3578 memcpy(trailing_buf, align_buf, 1);
3579 }
3580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581}
3582
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003583/**
3584 * ata_pio_data_xfer - Transfer data by PIO
3585 * @ap: port to read/write
3586 * @buf: data buffer
3587 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003588 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003589 *
3590 * Transfer data from/to the device data register by PIO.
3591 *
3592 * LOCKING:
3593 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003594 */
3595
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3597 unsigned int buflen, int write_data)
3598{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003599 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003601 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003603 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003605 insw(ap->ioaddr.data_addr, buf, words);
3606
3607 /* Transfer trailing 1 byte, if any. */
3608 if (unlikely(buflen & 0x01)) {
3609 u16 align_buf[1] = { 0 };
3610 unsigned char *trailing_buf = buf + buflen - 1;
3611
3612 if (write_data) {
3613 memcpy(align_buf, trailing_buf, 1);
3614 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3615 } else {
3616 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3617 memcpy(trailing_buf, align_buf, 1);
3618 }
3619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620}
3621
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003622/**
3623 * ata_data_xfer - Transfer data from/to the data register.
3624 * @ap: port to read/write
3625 * @buf: data buffer
3626 * @buflen: buffer length
3627 * @do_write: read/write
3628 *
3629 * Transfer data from/to the device data register.
3630 *
3631 * LOCKING:
3632 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003633 */
3634
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3636 unsigned int buflen, int do_write)
3637{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003638 /* Make the crap hardware pay the costs not the good stuff */
3639 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3640 unsigned long flags;
3641 local_irq_save(flags);
3642 if (ap->flags & ATA_FLAG_MMIO)
3643 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3644 else
3645 ata_pio_data_xfer(ap, buf, buflen, do_write);
3646 local_irq_restore(flags);
3647 } else {
3648 if (ap->flags & ATA_FLAG_MMIO)
3649 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3650 else
3651 ata_pio_data_xfer(ap, buf, buflen, do_write);
3652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653}
3654
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003655/**
3656 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3657 * @qc: Command on going
3658 *
3659 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3660 *
3661 * LOCKING:
3662 * Inherited from caller.
3663 */
3664
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665static void ata_pio_sector(struct ata_queued_cmd *qc)
3666{
3667 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003668 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 struct ata_port *ap = qc->ap;
3670 struct page *page;
3671 unsigned int offset;
3672 unsigned char *buf;
3673
3674 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003675 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
3677 page = sg[qc->cursg].page;
3678 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3679
3680 /* get the current page and offset */
3681 page = nth_page(page, (offset >> PAGE_SHIFT));
3682 offset %= PAGE_SIZE;
3683
3684 buf = kmap(page) + offset;
3685
3686 qc->cursect++;
3687 qc->cursg_ofs++;
3688
Albert Lee32529e02005-05-26 03:49:42 -04003689 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 qc->cursg++;
3691 qc->cursg_ofs = 0;
3692 }
3693
3694 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3695
3696 /* do the actual data transfer */
3697 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3698 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3699
3700 kunmap(page);
3701}
3702
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003703/**
3704 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3705 * @qc: Command on going
3706 * @bytes: number of bytes
3707 *
3708 * Transfer Transfer data from/to the ATAPI device.
3709 *
3710 * LOCKING:
3711 * Inherited from caller.
3712 *
3713 */
3714
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3716{
3717 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003718 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 struct ata_port *ap = qc->ap;
3720 struct page *page;
3721 unsigned char *buf;
3722 unsigned int offset, count;
3723
Albert Lee563a6e12005-08-12 14:17:50 +08003724 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003725 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
3727next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003728 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003729 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003730 * The end of qc->sg is reached and the device expects
3731 * more data to transfer. In order not to overrun qc->sg
3732 * and fulfill length specified in the byte count register,
3733 * - for read case, discard trailing data from the device
3734 * - for write case, padding zero data to the device
3735 */
3736 u16 pad_buf[1] = { 0 };
3737 unsigned int words = bytes >> 1;
3738 unsigned int i;
3739
3740 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003741 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003742 ap->id, bytes);
3743
3744 for (i = 0; i < words; i++)
3745 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3746
Albert Lee14be71f2005-09-27 17:36:35 +08003747 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003748 return;
3749 }
3750
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003751 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 page = sg->page;
3754 offset = sg->offset + qc->cursg_ofs;
3755
3756 /* get the current page and offset */
3757 page = nth_page(page, (offset >> PAGE_SHIFT));
3758 offset %= PAGE_SIZE;
3759
Albert Lee6952df02005-06-06 15:56:03 +08003760 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003761 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
3763 /* don't cross page boundaries */
3764 count = min(count, (unsigned int)PAGE_SIZE - offset);
3765
3766 buf = kmap(page) + offset;
3767
3768 bytes -= count;
3769 qc->curbytes += count;
3770 qc->cursg_ofs += count;
3771
Albert Lee32529e02005-05-26 03:49:42 -04003772 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 qc->cursg++;
3774 qc->cursg_ofs = 0;
3775 }
3776
3777 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3778
3779 /* do the actual data transfer */
3780 ata_data_xfer(ap, buf, count, do_write);
3781
3782 kunmap(page);
3783
Albert Lee563a6e12005-08-12 14:17:50 +08003784 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786}
3787
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003788/**
3789 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3790 * @qc: Command on going
3791 *
3792 * Transfer Transfer data from/to the ATAPI device.
3793 *
3794 * LOCKING:
3795 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003796 */
3797
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3799{
3800 struct ata_port *ap = qc->ap;
3801 struct ata_device *dev = qc->dev;
3802 unsigned int ireason, bc_lo, bc_hi, bytes;
3803 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3804
3805 ap->ops->tf_read(ap, &qc->tf);
3806 ireason = qc->tf.nsect;
3807 bc_lo = qc->tf.lbam;
3808 bc_hi = qc->tf.lbah;
3809 bytes = (bc_hi << 8) | bc_lo;
3810
3811 /* shall be cleared to zero, indicating xfer of data */
3812 if (ireason & (1 << 0))
3813 goto err_out;
3814
3815 /* make sure transfer direction matches expected */
3816 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3817 if (do_write != i_write)
3818 goto err_out;
3819
3820 __atapi_pio_bytes(qc, bytes);
3821
3822 return;
3823
3824err_out:
3825 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3826 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003827 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003828 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829}
3830
3831/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003832 * ata_pio_block - start PIO on a block
Tejun Heoc91af2c2006-04-02 18:51:53 +09003833 * @qc: qc to transfer block for
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 *
3835 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003836 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003838static void ata_pio_block(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003840 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 u8 status;
3842
3843 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003844 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 * Sometimes when we enter, BSY will be cleared in
3846 * a chk-status or two. If not, the drive is probably seeking
3847 * or something. Snooze for a couple msecs, then
3848 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003849 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 */
3851 status = ata_busy_wait(ap, ATA_BUSY, 5);
3852 if (status & ATA_BUSY) {
3853 msleep(2);
3854 status = ata_busy_wait(ap, ATA_BUSY, 10);
3855 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003856 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3858 return;
3859 }
3860 }
3861
Albert Leefe79e682005-12-06 11:34:59 +08003862 /* check error */
3863 if (status & (ATA_ERR | ATA_DF)) {
3864 qc->err_mask |= AC_ERR_DEV;
3865 ap->hsm_task_state = HSM_ST_ERR;
3866 return;
3867 }
3868
3869 /* transfer data if any */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 if (is_atapi_taskfile(&qc->tf)) {
Albert Leefe79e682005-12-06 11:34:59 +08003871 /* DRQ=0 means no more data to transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003873 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 return;
3875 }
3876
3877 atapi_pio_bytes(qc);
3878 } else {
3879 /* handle BSY=0, DRQ=0 as error */
3880 if ((status & ATA_DRQ) == 0) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003881 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003882 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 return;
3884 }
3885
3886 ata_pio_sector(qc);
3887 }
3888}
3889
Tejun Heoc91af2c2006-04-02 18:51:53 +09003890static void ata_pio_error(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003892 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Albert Lee0565c262006-02-13 18:55:25 +08003894 if (qc->tf.command != ATA_CMD_PACKET)
Tejun Heod63cb4a2006-04-02 18:51:52 +09003895 printk(KERN_WARNING "ata%u: dev %u PIO error\n",
3896 ap->id, qc->dev->devno);
Albert Lee0565c262006-02-13 18:55:25 +08003897
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003898 /* make sure qc->err_mask is available to
Albert Lee1c848982005-12-05 15:40:15 +08003899 * know what's wrong and recover
3900 */
Tejun Heoa4631472006-02-11 19:11:13 +09003901 WARN_ON(qc->err_mask == 0);
Albert Lee1c848982005-12-05 15:40:15 +08003902
Albert Lee14be71f2005-09-27 17:36:35 +08003903 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
Albert Leea22e2eb2005-12-05 15:38:02 +08003905 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906}
3907
3908static void ata_pio_task(void *_data)
3909{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003910 struct ata_queued_cmd *qc = _data;
3911 struct ata_port *ap = qc->ap;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003912 unsigned long timeout;
3913 int qc_completed;
3914
3915fsm_start:
3916 timeout = 0;
3917 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
Albert Lee14be71f2005-09-27 17:36:35 +08003919 switch (ap->hsm_task_state) {
3920 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 return;
3922
Albert Lee14be71f2005-09-27 17:36:35 +08003923 case HSM_ST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003924 ata_pio_block(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 break;
3926
Albert Lee14be71f2005-09-27 17:36:35 +08003927 case HSM_ST_LAST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003928 qc_completed = ata_pio_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 break;
3930
Albert Lee14be71f2005-09-27 17:36:35 +08003931 case HSM_ST_POLL:
3932 case HSM_ST_LAST_POLL:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003933 timeout = ata_pio_poll(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 break;
3935
Albert Lee14be71f2005-09-27 17:36:35 +08003936 case HSM_ST_TMOUT:
3937 case HSM_ST_ERR:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003938 ata_pio_error(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 return;
3940 }
3941
3942 if (timeout)
Tejun Heoc91af2c2006-04-02 18:51:53 +09003943 ata_port_queue_task(ap, ata_pio_task, qc, timeout);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003944 else if (!qc_completed)
3945 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946}
3947
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948/**
Tejun Heo8061f5f2006-03-05 15:29:09 +09003949 * atapi_packet_task - Write CDB bytes to hardware
Tejun Heoc91af2c2006-04-02 18:51:53 +09003950 * @_data: qc in progress
Tejun Heo8061f5f2006-03-05 15:29:09 +09003951 *
3952 * When device has indicated its readiness to accept
3953 * a CDB, this function is called. Send the CDB.
3954 * If DMA is to be performed, exit immediately.
3955 * Otherwise, we are in polling mode, so poll
3956 * status under operation succeeds or fails.
3957 *
3958 * LOCKING:
3959 * Kernel thread context (may sleep)
3960 */
Tejun Heo8061f5f2006-03-05 15:29:09 +09003961static void atapi_packet_task(void *_data)
3962{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003963 struct ata_queued_cmd *qc = _data;
3964 struct ata_port *ap = qc->ap;
Tejun Heo8061f5f2006-03-05 15:29:09 +09003965 u8 status;
3966
Tejun Heo8061f5f2006-03-05 15:29:09 +09003967 /* sleep-wait for BSY to clear */
3968 DPRINTK("busy wait\n");
3969 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
3970 qc->err_mask |= AC_ERR_TIMEOUT;
3971 goto err_out;
3972 }
3973
3974 /* make sure DRQ is set */
3975 status = ata_chk_status(ap);
3976 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
3977 qc->err_mask |= AC_ERR_HSM;
3978 goto err_out;
3979 }
3980
3981 /* send SCSI cdb */
3982 DPRINTK("send cdb\n");
3983 WARN_ON(qc->dev->cdb_len < 12);
3984
3985 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
3986 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
3987 unsigned long flags;
3988
3989 /* Once we're done issuing command and kicking bmdma,
3990 * irq handler takes over. To not lose irq, we need
3991 * to clear NOINTR flag before sending cdb, but
3992 * interrupt handler shouldn't be invoked before we're
3993 * finished. Hence, the following locking.
3994 */
3995 spin_lock_irqsave(&ap->host_set->lock, flags);
3996 ap->flags &= ~ATA_FLAG_NOINTR;
3997 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
3998 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
3999 ap->ops->bmdma_start(qc); /* initiate bmdma */
4000 spin_unlock_irqrestore(&ap->host_set->lock, flags);
4001 } else {
4002 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
4003
4004 /* PIO commands are handled by polling */
4005 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004006 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Tejun Heo8061f5f2006-03-05 15:29:09 +09004007 }
4008
4009 return;
4010
4011err_out:
4012 ata_poll_qc_complete(qc);
4013}
4014
4015/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 * ata_qc_timeout - Handle timeout of queued command
4017 * @qc: Command that timed out
4018 *
4019 * Some part of the kernel (currently, only the SCSI layer)
4020 * has noticed that the active command on port @ap has not
4021 * completed after a specified length of time. Handle this
4022 * condition by disabling DMA (if necessary) and completing
4023 * transactions, with error if necessary.
4024 *
4025 * This also handles the case of the "lost interrupt", where
4026 * for some reason (possibly hardware bug, possibly driver bug)
4027 * an interrupt was not delivered to the driver, even though the
4028 * transaction completed successfully.
4029 *
4030 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004031 * Inherited from SCSI layer (none, can sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 */
4033
4034static void ata_qc_timeout(struct ata_queued_cmd *qc)
4035{
4036 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04004037 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 u8 host_stat = 0, drv_stat;
Jeff Garzikb8f61532005-08-25 22:01:20 -04004039 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
4041 DPRINTK("ENTER\n");
4042
Tejun Heoc18d06f2006-02-02 00:56:10 +09004043 ap->hsm_task_state = HSM_ST_IDLE;
4044
Jeff Garzikb8f61532005-08-25 22:01:20 -04004045 spin_lock_irqsave(&host_set->lock, flags);
4046
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 switch (qc->tf.protocol) {
4048
4049 case ATA_PROT_DMA:
4050 case ATA_PROT_ATAPI_DMA:
4051 host_stat = ap->ops->bmdma_status(ap);
4052
4053 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004054 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
4056 /* fall through */
4057
4058 default:
4059 ata_altstatus(ap);
4060 drv_stat = ata_chk_status(ap);
4061
4062 /* ack bmdma irq events */
4063 ap->ops->irq_clear(ap);
4064
4065 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x\n",
4066 ap->id, qc->tf.command, drv_stat, host_stat);
4067
4068 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004069 qc->err_mask |= ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 break;
4071 }
Jeff Garzikb8f61532005-08-25 22:01:20 -04004072
4073 spin_unlock_irqrestore(&host_set->lock, flags);
4074
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004075 ata_eh_qc_complete(qc);
4076
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 DPRINTK("EXIT\n");
4078}
4079
4080/**
4081 * ata_eng_timeout - Handle timeout of queued command
4082 * @ap: Port on which timed-out command is active
4083 *
4084 * Some part of the kernel (currently, only the SCSI layer)
4085 * has noticed that the active command on port @ap has not
4086 * completed after a specified length of time. Handle this
4087 * condition by disabling DMA (if necessary) and completing
4088 * transactions, with error if necessary.
4089 *
4090 * This also handles the case of the "lost interrupt", where
4091 * for some reason (possibly hardware bug, possibly driver bug)
4092 * an interrupt was not delivered to the driver, even though the
4093 * transaction completed successfully.
4094 *
4095 * LOCKING:
4096 * Inherited from SCSI layer (none, can sleep)
4097 */
4098
4099void ata_eng_timeout(struct ata_port *ap)
4100{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 DPRINTK("ENTER\n");
4102
Tejun Heof6379022006-02-10 15:10:48 +09004103 ata_qc_timeout(ata_qc_from_tag(ap, ap->active_tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 DPRINTK("EXIT\n");
4106}
4107
4108/**
4109 * ata_qc_new - Request an available ATA command, for queueing
4110 * @ap: Port associated with device @dev
4111 * @dev: Device from whom we request an available command structure
4112 *
4113 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004114 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 */
4116
4117static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4118{
4119 struct ata_queued_cmd *qc = NULL;
4120 unsigned int i;
4121
4122 for (i = 0; i < ATA_MAX_QUEUE; i++)
4123 if (!test_and_set_bit(i, &ap->qactive)) {
4124 qc = ata_qc_from_tag(ap, i);
4125 break;
4126 }
4127
4128 if (qc)
4129 qc->tag = i;
4130
4131 return qc;
4132}
4133
4134/**
4135 * ata_qc_new_init - Request an available ATA command, and initialize it
4136 * @ap: Port associated with device @dev
4137 * @dev: Device from whom we request an available command structure
4138 *
4139 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004140 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 */
4142
4143struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
4144 struct ata_device *dev)
4145{
4146 struct ata_queued_cmd *qc;
4147
4148 qc = ata_qc_new(ap);
4149 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 qc->scsicmd = NULL;
4151 qc->ap = ap;
4152 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004154 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 }
4156
4157 return qc;
4158}
4159
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160/**
4161 * ata_qc_free - free unused ata_queued_cmd
4162 * @qc: Command to complete
4163 *
4164 * Designed to free unused ata_queued_cmd object
4165 * in case something prevents using it.
4166 *
4167 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004168 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 */
4170void ata_qc_free(struct ata_queued_cmd *qc)
4171{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004172 struct ata_port *ap = qc->ap;
4173 unsigned int tag;
4174
Tejun Heoa4631472006-02-11 19:11:13 +09004175 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
Tejun Heo4ba946e2006-01-23 13:09:36 +09004177 qc->flags = 0;
4178 tag = qc->tag;
4179 if (likely(ata_tag_valid(tag))) {
4180 if (tag == ap->active_tag)
4181 ap->active_tag = ATA_TAG_POISON;
4182 qc->tag = ATA_TAG_POISON;
4183 clear_bit(tag, &ap->qactive);
4184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185}
4186
Tejun Heo76014422006-02-11 15:13:49 +09004187void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188{
Tejun Heoa4631472006-02-11 19:11:13 +09004189 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4190 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191
4192 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4193 ata_sg_clean(qc);
4194
Albert Lee3f3791d2005-08-16 14:25:38 +08004195 /* atapi: mark qc as inactive to prevent the interrupt handler
4196 * from completing the command twice later, before the error handler
4197 * is called. (when rc != 0 and atapi request sense is needed)
4198 */
4199 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4200
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004202 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203}
4204
4205static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4206{
4207 struct ata_port *ap = qc->ap;
4208
4209 switch (qc->tf.protocol) {
4210 case ATA_PROT_DMA:
4211 case ATA_PROT_ATAPI_DMA:
4212 return 1;
4213
4214 case ATA_PROT_ATAPI:
4215 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 if (ap->flags & ATA_FLAG_PIO_DMA)
4217 return 1;
4218
4219 /* fall through */
4220
4221 default:
4222 return 0;
4223 }
4224
4225 /* never reached */
4226}
4227
4228/**
4229 * ata_qc_issue - issue taskfile to device
4230 * @qc: command to issue to device
4231 *
4232 * Prepare an ATA command to submission to device.
4233 * This includes mapping the data into a DMA-able
4234 * area, filling in the S/G table, and finally
4235 * writing the taskfile to hardware, starting the command.
4236 *
4237 * LOCKING:
4238 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004240void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241{
4242 struct ata_port *ap = qc->ap;
4243
Tejun Heoe4a70e72006-03-31 20:36:47 +09004244 qc->ap->active_tag = qc->tag;
4245 qc->flags |= ATA_QCFLAG_ACTIVE;
4246
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 if (ata_should_dma_map(qc)) {
4248 if (qc->flags & ATA_QCFLAG_SG) {
4249 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004250 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4252 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004253 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 }
4255 } else {
4256 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4257 }
4258
4259 ap->ops->qc_prep(qc);
4260
Tejun Heo8e0e6942006-03-31 20:41:11 +09004261 qc->err_mask |= ap->ops->qc_issue(qc);
4262 if (unlikely(qc->err_mask))
4263 goto err;
4264 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
Tejun Heo8e436af2006-01-23 13:09:36 +09004266sg_err:
4267 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004268 qc->err_mask |= AC_ERR_SYSTEM;
4269err:
4270 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271}
4272
4273/**
4274 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4275 * @qc: command to issue to device
4276 *
4277 * Using various libata functions and hooks, this function
4278 * starts an ATA command. ATA commands are grouped into
4279 * classes called "protocols", and issuing each type of protocol
4280 * is slightly different.
4281 *
Edward Falk0baab862005-06-02 18:17:13 -04004282 * May be used as the qc_issue() entry in ata_port_operations.
4283 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 * LOCKING:
4285 * spin_lock_irqsave(host_set lock)
4286 *
4287 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004288 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 */
4290
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004291unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292{
4293 struct ata_port *ap = qc->ap;
4294
4295 ata_dev_select(ap, qc->dev->devno, 1, 0);
4296
4297 switch (qc->tf.protocol) {
4298 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05004299 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 break;
4301
4302 case ATA_PROT_DMA:
4303 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4304 ap->ops->bmdma_setup(qc); /* set up bmdma */
4305 ap->ops->bmdma_start(qc); /* initiate bmdma */
4306 break;
4307
4308 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
4309 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004310 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08004311 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004312 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 break;
4314
4315 case ATA_PROT_ATAPI:
4316 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004317 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004318 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 break;
4320
4321 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09004322 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05004323 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004324 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 break;
4326
4327 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09004328 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4330 ap->ops->bmdma_setup(qc); /* set up bmdma */
Tejun Heoc91af2c2006-04-02 18:51:53 +09004331 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 break;
4333
4334 default:
4335 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004336 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 }
4338
4339 return 0;
4340}
4341
4342/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 * ata_host_intr - Handle host interrupt for given (port, task)
4344 * @ap: Port on which interrupt arrived (possibly...)
4345 * @qc: Taskfile currently active in engine
4346 *
4347 * Handle host interrupt for given queued command. Currently,
4348 * only DMA interrupts are handled. All other commands are
4349 * handled via polling with interrupts disabled (nIEN bit).
4350 *
4351 * LOCKING:
4352 * spin_lock_irqsave(host_set lock)
4353 *
4354 * RETURNS:
4355 * One if interrupt was handled, zero if not (shared irq).
4356 */
4357
4358inline unsigned int ata_host_intr (struct ata_port *ap,
4359 struct ata_queued_cmd *qc)
4360{
4361 u8 status, host_stat;
4362
4363 switch (qc->tf.protocol) {
4364
4365 case ATA_PROT_DMA:
4366 case ATA_PROT_ATAPI_DMA:
4367 case ATA_PROT_ATAPI:
4368 /* check status of DMA engine */
4369 host_stat = ap->ops->bmdma_status(ap);
4370 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4371
4372 /* if it's not our irq... */
4373 if (!(host_stat & ATA_DMA_INTR))
4374 goto idle_irq;
4375
4376 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004377 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378
4379 /* fall through */
4380
4381 case ATA_PROT_ATAPI_NODATA:
4382 case ATA_PROT_NODATA:
4383 /* check altstatus */
4384 status = ata_altstatus(ap);
4385 if (status & ATA_BUSY)
4386 goto idle_irq;
4387
4388 /* check main status, clearing INTRQ */
4389 status = ata_chk_status(ap);
4390 if (unlikely(status & ATA_BUSY))
4391 goto idle_irq;
4392 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4393 ap->id, qc->tf.protocol, status);
4394
4395 /* ack bmdma irq events */
4396 ap->ops->irq_clear(ap);
4397
4398 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004399 qc->err_mask |= ac_err_mask(status);
4400 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 break;
4402
4403 default:
4404 goto idle_irq;
4405 }
4406
4407 return 1; /* irq handled */
4408
4409idle_irq:
4410 ap->stats.idle_irq++;
4411
4412#ifdef ATA_IRQ_TRAP
4413 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 ata_irq_ack(ap, 0); /* debug trap */
4415 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
Alan Cox23cfce82006-03-21 16:06:53 +00004416 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 }
4418#endif
4419 return 0; /* irq not handled */
4420}
4421
4422/**
4423 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004424 * @irq: irq line (unused)
4425 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 * @regs: unused
4427 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004428 * Default interrupt handler for PCI IDE devices. Calls
4429 * ata_host_intr() for each port that is not disabled.
4430 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004432 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 *
4434 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004435 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 */
4437
4438irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4439{
4440 struct ata_host_set *host_set = dev_instance;
4441 unsigned int i;
4442 unsigned int handled = 0;
4443 unsigned long flags;
4444
4445 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4446 spin_lock_irqsave(&host_set->lock, flags);
4447
4448 for (i = 0; i < host_set->n_ports; i++) {
4449 struct ata_port *ap;
4450
4451 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004452 if (ap &&
Tejun Heo198e0fe2006-04-02 18:51:52 +09004453 !(ap->flags & (ATA_FLAG_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 struct ata_queued_cmd *qc;
4455
4456 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08004457 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4458 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 handled |= ata_host_intr(ap, qc);
4460 }
4461 }
4462
4463 spin_unlock_irqrestore(&host_set->lock, flags);
4464
4465 return IRQ_RETVAL(handled);
4466}
4467
Edward Falk0baab862005-06-02 18:17:13 -04004468
Jens Axboe9b847542006-01-06 09:28:07 +01004469/*
4470 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4471 * without filling any other registers
4472 */
4473static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4474 u8 cmd)
4475{
4476 struct ata_taskfile tf;
4477 int err;
4478
4479 ata_tf_init(ap, &tf, dev->devno);
4480
4481 tf.command = cmd;
4482 tf.flags |= ATA_TFLAG_DEVICE;
4483 tf.protocol = ATA_PROT_NODATA;
4484
4485 err = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
4486 if (err)
4487 printk(KERN_ERR "%s: ata command failed: %d\n",
4488 __FUNCTION__, err);
4489
4490 return err;
4491}
4492
4493static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4494{
4495 u8 cmd;
4496
4497 if (!ata_try_flush_cache(dev))
4498 return 0;
4499
4500 if (ata_id_has_flush_ext(dev->id))
4501 cmd = ATA_CMD_FLUSH_EXT;
4502 else
4503 cmd = ATA_CMD_FLUSH;
4504
4505 return ata_do_simple_cmd(ap, dev, cmd);
4506}
4507
4508static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4509{
4510 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4511}
4512
4513static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4514{
4515 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4516}
4517
4518/**
4519 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004520 * @ap: port the device is connected to
4521 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004522 *
4523 * Kick the drive back into action, by sending it an idle immediate
4524 * command and making sure its transfer mode matches between drive
4525 * and host.
4526 *
4527 */
4528int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4529{
4530 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004531 struct ata_device *failed_dev;
Jens Axboe9b847542006-01-06 09:28:07 +01004532 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004533 while (ata_set_mode(ap, &failed_dev))
4534 ata_dev_disable(ap, failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004535 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004536 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004537 return 0;
4538 if (dev->class == ATA_DEV_ATA)
4539 ata_start_drive(ap, dev);
4540
4541 return 0;
4542}
4543
4544/**
4545 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004546 * @ap: port the device is connected to
4547 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004548 *
4549 * Flush the cache on the drive, if appropriate, then issue a
4550 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004551 */
Nigel Cunningham082776e2006-03-23 23:22:16 +10004552int ata_device_suspend(struct ata_port *ap, struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004553{
Tejun Heoe1211e32006-04-01 01:38:18 +09004554 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004555 return 0;
4556 if (dev->class == ATA_DEV_ATA)
4557 ata_flush_cache(ap, dev);
4558
Nigel Cunningham082776e2006-03-23 23:22:16 +10004559 if (state.event != PM_EVENT_FREEZE)
4560 ata_standby_drive(ap, dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004561 ap->flags |= ATA_FLAG_SUSPENDED;
4562 return 0;
4563}
4564
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004565/**
4566 * ata_port_start - Set port up for dma.
4567 * @ap: Port to initialize
4568 *
4569 * Called just after data structures for each port are
4570 * initialized. Allocates space for PRD table.
4571 *
4572 * May be used as the port_start() entry in ata_port_operations.
4573 *
4574 * LOCKING:
4575 * Inherited from caller.
4576 */
4577
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578int ata_port_start (struct ata_port *ap)
4579{
Brian King2f1f6102006-03-23 17:30:15 -06004580 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004581 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
4583 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4584 if (!ap->prd)
4585 return -ENOMEM;
4586
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004587 rc = ata_pad_alloc(ap, dev);
4588 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004589 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004590 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004591 }
4592
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4594
4595 return 0;
4596}
4597
Edward Falk0baab862005-06-02 18:17:13 -04004598
4599/**
4600 * ata_port_stop - Undo ata_port_start()
4601 * @ap: Port to shut down
4602 *
4603 * Frees the PRD table.
4604 *
4605 * May be used as the port_stop() entry in ata_port_operations.
4606 *
4607 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004608 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004609 */
4610
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611void ata_port_stop (struct ata_port *ap)
4612{
Brian King2f1f6102006-03-23 17:30:15 -06004613 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
4615 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004616 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617}
4618
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004619void ata_host_stop (struct ata_host_set *host_set)
4620{
4621 if (host_set->mmio_base)
4622 iounmap(host_set->mmio_base);
4623}
4624
4625
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626/**
4627 * ata_host_remove - Unregister SCSI host structure with upper layers
4628 * @ap: Port to unregister
4629 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4630 *
4631 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004632 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 */
4634
4635static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4636{
4637 struct Scsi_Host *sh = ap->host;
4638
4639 DPRINTK("ENTER\n");
4640
4641 if (do_unregister)
4642 scsi_remove_host(sh);
4643
4644 ap->ops->port_stop(ap);
4645}
4646
4647/**
4648 * ata_host_init - Initialize an ata_port structure
4649 * @ap: Structure to initialize
4650 * @host: associated SCSI mid-layer structure
4651 * @host_set: Collection of hosts to which @ap belongs
4652 * @ent: Probe information provided by low-level driver
4653 * @port_no: Port number associated with this ata_port
4654 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004655 * Initialize a new ata_port structure, and its associated
4656 * scsi_host.
4657 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004659 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 */
4661
4662static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4663 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004664 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665{
4666 unsigned int i;
4667
4668 host->max_id = 16;
4669 host->max_lun = 1;
4670 host->max_channel = 1;
4671 host->unique_id = ata_unique_id++;
4672 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004673
Tejun Heo198e0fe2006-04-02 18:51:52 +09004674 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 ap->id = host->unique_id;
4676 ap->host = host;
4677 ap->ctl = ATA_DEVCTL_OBS;
4678 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06004679 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 ap->port_no = port_no;
4681 ap->hard_port_no =
4682 ent->legacy_mode ? ent->hard_port_no : port_no;
4683 ap->pio_mask = ent->pio_mask;
4684 ap->mwdma_mask = ent->mwdma_mask;
4685 ap->udma_mask = ent->udma_mask;
4686 ap->flags |= ent->host_flags;
4687 ap->ops = ent->port_ops;
4688 ap->cbl = ATA_CBL_NONE;
Tejun Heo1c3fae42006-04-02 20:53:28 +09004689 ap->sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 ap->active_tag = ATA_TAG_POISON;
4691 ap->last_ctl = 0xFF;
4692
Tejun Heo86e45b62006-03-05 15:29:09 +09004693 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004694 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695
Tejun Heoacf356b2006-03-24 14:07:50 +09004696 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4697 struct ata_device *dev = &ap->device[i];
4698 dev->devno = i;
4699 dev->pio_mask = UINT_MAX;
4700 dev->mwdma_mask = UINT_MAX;
4701 dev->udma_mask = UINT_MAX;
4702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703
4704#ifdef ATA_IRQ_TRAP
4705 ap->stats.unhandled_irq = 1;
4706 ap->stats.idle_irq = 1;
4707#endif
4708
4709 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4710}
4711
4712/**
4713 * ata_host_add - Attach low-level ATA driver to system
4714 * @ent: Information provided by low-level driver
4715 * @host_set: Collections of ports to which we add
4716 * @port_no: Port number associated with this host
4717 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004718 * Attach low-level ATA driver to system.
4719 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004721 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 *
4723 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004724 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 */
4726
Jeff Garzik057ace52005-10-22 14:27:05 -04004727static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 struct ata_host_set *host_set,
4729 unsigned int port_no)
4730{
4731 struct Scsi_Host *host;
4732 struct ata_port *ap;
4733 int rc;
4734
4735 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09004736
4737 if (!ent->port_ops->probe_reset &&
4738 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4739 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4740 port_no);
4741 return NULL;
4742 }
4743
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4745 if (!host)
4746 return NULL;
4747
Tejun Heo30afc842006-03-18 18:40:14 +09004748 host->transportt = &ata_scsi_transport_template;
4749
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 ap = (struct ata_port *) &host->hostdata[0];
4751
4752 ata_host_init(ap, host, host_set, ent, port_no);
4753
4754 rc = ap->ops->port_start(ap);
4755 if (rc)
4756 goto err_out;
4757
4758 return ap;
4759
4760err_out:
4761 scsi_host_put(host);
4762 return NULL;
4763}
4764
4765/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004766 * ata_device_add - Register hardware device with ATA and SCSI layers
4767 * @ent: Probe information describing hardware device to be registered
4768 *
4769 * This function processes the information provided in the probe
4770 * information struct @ent, allocates the necessary ATA and SCSI
4771 * host information structures, initializes them, and registers
4772 * everything with requisite kernel subsystems.
4773 *
4774 * This function requests irqs, probes the ATA bus, and probes
4775 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 *
4777 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004778 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 *
4780 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004781 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 */
4783
Jeff Garzik057ace52005-10-22 14:27:05 -04004784int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785{
4786 unsigned int count = 0, i;
4787 struct device *dev = ent->dev;
4788 struct ata_host_set *host_set;
4789
4790 DPRINTK("ENTER\n");
4791 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004792 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4794 if (!host_set)
4795 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 spin_lock_init(&host_set->lock);
4797
4798 host_set->dev = dev;
4799 host_set->n_ports = ent->n_ports;
4800 host_set->irq = ent->irq;
4801 host_set->mmio_base = ent->mmio_base;
4802 host_set->private_data = ent->private_data;
4803 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01004804 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805
4806 /* register each port bound to this device */
4807 for (i = 0; i < ent->n_ports; i++) {
4808 struct ata_port *ap;
4809 unsigned long xfer_mode_mask;
4810
4811 ap = ata_host_add(ent, host_set, i);
4812 if (!ap)
4813 goto err_out;
4814
4815 host_set->ports[i] = ap;
4816 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4817 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4818 (ap->pio_mask << ATA_SHIFT_PIO);
4819
4820 /* print per-port info to dmesg */
4821 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4822 "bmdma 0x%lX irq %lu\n",
4823 ap->id,
4824 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4825 ata_mode_string(xfer_mode_mask),
4826 ap->ioaddr.cmd_addr,
4827 ap->ioaddr.ctl_addr,
4828 ap->ioaddr.bmdma_addr,
4829 ent->irq);
4830
4831 ata_chk_status(ap);
4832 host_set->ops->irq_clear(ap);
4833 count++;
4834 }
4835
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004836 if (!count)
4837 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838
4839 /* obtain irq, that is shared between channels */
4840 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4841 DRV_NAME, host_set))
4842 goto err_out;
4843
4844 /* perform each probe synchronously */
4845 DPRINTK("probe begin\n");
4846 for (i = 0; i < count; i++) {
4847 struct ata_port *ap;
4848 int rc;
4849
4850 ap = host_set->ports[i];
4851
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004852 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004854 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
4856 if (rc) {
4857 /* FIXME: do something useful here?
4858 * Current libata behavior will
4859 * tear down everything when
4860 * the module is removed
4861 * or the h/w is unplugged.
4862 */
4863 }
4864
4865 rc = scsi_add_host(ap->host, dev);
4866 if (rc) {
4867 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4868 ap->id);
4869 /* FIXME: do something useful here */
4870 /* FIXME: handle unconditional calls to
4871 * scsi_scan_host and ata_host_remove, below,
4872 * at the very least
4873 */
4874 }
4875 }
4876
4877 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004878 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 for (i = 0; i < count; i++) {
4880 struct ata_port *ap = host_set->ports[i];
4881
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004882 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 }
4884
4885 dev_set_drvdata(dev, host_set);
4886
4887 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4888 return ent->n_ports; /* success */
4889
4890err_out:
4891 for (i = 0; i < count; i++) {
4892 ata_host_remove(host_set->ports[i], 1);
4893 scsi_host_put(host_set->ports[i]->host);
4894 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004895err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 kfree(host_set);
4897 VPRINTK("EXIT, returning 0\n");
4898 return 0;
4899}
4900
4901/**
Alan Cox17b14452005-09-15 15:44:00 +01004902 * ata_host_set_remove - PCI layer callback for device removal
4903 * @host_set: ATA host set that was removed
4904 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004905 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01004906 * objects.
4907 *
4908 * LOCKING:
4909 * Inherited from calling layer (may sleep).
4910 */
4911
Alan Cox17b14452005-09-15 15:44:00 +01004912void ata_host_set_remove(struct ata_host_set *host_set)
4913{
4914 struct ata_port *ap;
4915 unsigned int i;
4916
4917 for (i = 0; i < host_set->n_ports; i++) {
4918 ap = host_set->ports[i];
4919 scsi_remove_host(ap->host);
4920 }
4921
4922 free_irq(host_set->irq, host_set);
4923
4924 for (i = 0; i < host_set->n_ports; i++) {
4925 ap = host_set->ports[i];
4926
4927 ata_scsi_release(ap->host);
4928
4929 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4930 struct ata_ioports *ioaddr = &ap->ioaddr;
4931
4932 if (ioaddr->cmd_addr == 0x1f0)
4933 release_region(0x1f0, 8);
4934 else if (ioaddr->cmd_addr == 0x170)
4935 release_region(0x170, 8);
4936 }
4937
4938 scsi_host_put(ap->host);
4939 }
4940
4941 if (host_set->ops->host_stop)
4942 host_set->ops->host_stop(host_set);
4943
4944 kfree(host_set);
4945}
4946
4947/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 * ata_scsi_release - SCSI layer callback hook for host unload
4949 * @host: libata host to be unloaded
4950 *
4951 * Performs all duties necessary to shut down a libata port...
4952 * Kill port kthread, disable port, and release resources.
4953 *
4954 * LOCKING:
4955 * Inherited from SCSI layer.
4956 *
4957 * RETURNS:
4958 * One.
4959 */
4960
4961int ata_scsi_release(struct Scsi_Host *host)
4962{
4963 struct ata_port *ap = (struct ata_port *) &host->hostdata[0];
Tejun Heod9572b12006-03-01 16:09:35 +09004964 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965
4966 DPRINTK("ENTER\n");
4967
4968 ap->ops->port_disable(ap);
4969 ata_host_remove(ap, 0);
Tejun Heod9572b12006-03-01 16:09:35 +09004970 for (i = 0; i < ATA_MAX_DEVICES; i++)
4971 kfree(ap->device[i].id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972
4973 DPRINTK("EXIT\n");
4974 return 1;
4975}
4976
4977/**
4978 * ata_std_ports - initialize ioaddr with standard port offsets.
4979 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04004980 *
4981 * Utility function which initializes data_addr, error_addr,
4982 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4983 * device_addr, status_addr, and command_addr to standard offsets
4984 * relative to cmd_addr.
4985 *
4986 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 */
Edward Falk0baab862005-06-02 18:17:13 -04004988
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989void ata_std_ports(struct ata_ioports *ioaddr)
4990{
4991 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4992 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4993 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4994 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4995 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4996 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4997 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4998 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4999 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5000 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5001}
5002
Edward Falk0baab862005-06-02 18:17:13 -04005003
Jeff Garzik374b1872005-08-30 05:42:52 -04005004#ifdef CONFIG_PCI
5005
5006void ata_pci_host_stop (struct ata_host_set *host_set)
5007{
5008 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5009
5010 pci_iounmap(pdev, host_set->mmio_base);
5011}
5012
Edward Falk0baab862005-06-02 18:17:13 -04005013/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 * ata_pci_remove_one - PCI layer callback for device removal
5015 * @pdev: PCI device that was removed
5016 *
5017 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005018 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 * Handle this by unregistering all objects associated
5020 * with this PCI device. Free those objects. Then finally
5021 * release PCI resources and disable device.
5022 *
5023 * LOCKING:
5024 * Inherited from PCI layer (may sleep).
5025 */
5026
5027void ata_pci_remove_one (struct pci_dev *pdev)
5028{
5029 struct device *dev = pci_dev_to_dev(pdev);
5030 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
Alan Cox17b14452005-09-15 15:44:00 +01005032 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 pci_release_regions(pdev);
5034 pci_disable_device(pdev);
5035 dev_set_drvdata(dev, NULL);
5036}
5037
5038/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005039int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040{
5041 unsigned long tmp = 0;
5042
5043 switch (bits->width) {
5044 case 1: {
5045 u8 tmp8 = 0;
5046 pci_read_config_byte(pdev, bits->reg, &tmp8);
5047 tmp = tmp8;
5048 break;
5049 }
5050 case 2: {
5051 u16 tmp16 = 0;
5052 pci_read_config_word(pdev, bits->reg, &tmp16);
5053 tmp = tmp16;
5054 break;
5055 }
5056 case 4: {
5057 u32 tmp32 = 0;
5058 pci_read_config_dword(pdev, bits->reg, &tmp32);
5059 tmp = tmp32;
5060 break;
5061 }
5062
5063 default:
5064 return -EINVAL;
5065 }
5066
5067 tmp &= bits->mask;
5068
5069 return (tmp == bits->val) ? 1 : 0;
5070}
Jens Axboe9b847542006-01-06 09:28:07 +01005071
5072int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5073{
5074 pci_save_state(pdev);
5075 pci_disable_device(pdev);
5076 pci_set_power_state(pdev, PCI_D3hot);
5077 return 0;
5078}
5079
5080int ata_pci_device_resume(struct pci_dev *pdev)
5081{
5082 pci_set_power_state(pdev, PCI_D0);
5083 pci_restore_state(pdev);
5084 pci_enable_device(pdev);
5085 pci_set_master(pdev);
5086 return 0;
5087}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088#endif /* CONFIG_PCI */
5089
5090
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091static int __init ata_init(void)
5092{
5093 ata_wq = create_workqueue("ata");
5094 if (!ata_wq)
5095 return -ENOMEM;
5096
5097 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5098 return 0;
5099}
5100
5101static void __exit ata_exit(void)
5102{
5103 destroy_workqueue(ata_wq);
5104}
5105
5106module_init(ata_init);
5107module_exit(ata_exit);
5108
Jeff Garzik67846b32005-10-05 02:58:32 -04005109static unsigned long ratelimit_time;
5110static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5111
5112int ata_ratelimit(void)
5113{
5114 int rc;
5115 unsigned long flags;
5116
5117 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5118
5119 if (time_after(jiffies, ratelimit_time)) {
5120 rc = 1;
5121 ratelimit_time = jiffies + (HZ/5);
5122 } else
5123 rc = 0;
5124
5125 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5126
5127 return rc;
5128}
5129
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130/*
5131 * libata is essentially a library of internal helper functions for
5132 * low-level ATA host controller drivers. As such, the API/ABI is
5133 * likely to change as new drivers are added and updated.
5134 * Do not depend on ABI/API stability.
5135 */
5136
5137EXPORT_SYMBOL_GPL(ata_std_bios_param);
5138EXPORT_SYMBOL_GPL(ata_std_ports);
5139EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005140EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141EXPORT_SYMBOL_GPL(ata_sg_init);
5142EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo76014422006-02-11 15:13:49 +09005143EXPORT_SYMBOL_GPL(__ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
5145EXPORT_SYMBOL_GPL(ata_eng_timeout);
5146EXPORT_SYMBOL_GPL(ata_tf_load);
5147EXPORT_SYMBOL_GPL(ata_tf_read);
5148EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5149EXPORT_SYMBOL_GPL(ata_std_dev_select);
5150EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5151EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5152EXPORT_SYMBOL_GPL(ata_check_status);
5153EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154EXPORT_SYMBOL_GPL(ata_exec_command);
5155EXPORT_SYMBOL_GPL(ata_port_start);
5156EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005157EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158EXPORT_SYMBOL_GPL(ata_interrupt);
5159EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005160EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5162EXPORT_SYMBOL_GPL(ata_bmdma_start);
5163EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5164EXPORT_SYMBOL_GPL(ata_bmdma_status);
5165EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5166EXPORT_SYMBOL_GPL(ata_port_probe);
5167EXPORT_SYMBOL_GPL(sata_phy_reset);
5168EXPORT_SYMBOL_GPL(__sata_phy_reset);
5169EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005170EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005171EXPORT_SYMBOL_GPL(ata_std_softreset);
5172EXPORT_SYMBOL_GPL(sata_std_hardreset);
5173EXPORT_SYMBOL_GPL(ata_std_postreset);
5174EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005175EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005176EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005177EXPORT_SYMBOL_GPL(ata_dev_classify);
5178EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005180EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005181EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005182EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5184EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
5185EXPORT_SYMBOL_GPL(ata_scsi_error);
5186EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5187EXPORT_SYMBOL_GPL(ata_scsi_release);
5188EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo6a62a042006-02-13 10:02:46 +09005189EXPORT_SYMBOL_GPL(ata_id_string);
5190EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191EXPORT_SYMBOL_GPL(ata_scsi_simulate);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005192EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5193EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005195EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005196EXPORT_SYMBOL_GPL(ata_timing_compute);
5197EXPORT_SYMBOL_GPL(ata_timing_merge);
5198
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199#ifdef CONFIG_PCI
5200EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005201EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5203EXPORT_SYMBOL_GPL(ata_pci_init_one);
5204EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005205EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5206EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005207EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5208EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005210
5211EXPORT_SYMBOL_GPL(ata_device_suspend);
5212EXPORT_SYMBOL_GPL(ata_device_resume);
5213EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5214EXPORT_SYMBOL_GPL(ata_scsi_device_resume);