blob: 5d38a6cc5736ae6a62de85e5d4ed6f28ee4c8d10 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include <linux/config.h>
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/pci.h>
39#include <linux/init.h>
40#include <linux/list.h>
41#include <linux/mm.h>
42#include <linux/highmem.h>
43#include <linux/spinlock.h>
44#include <linux/blkdev.h>
45#include <linux/delay.h>
46#include <linux/timer.h>
47#include <linux/interrupt.h>
48#include <linux/completion.h>
49#include <linux/suspend.h>
50#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040051#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100052#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "scsi_priv.h"
Jeff Garzik193515d2005-11-07 00:59:37 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_host.h>
57#include <linux/libata.h>
58#include <asm/io.h>
59#include <asm/semaphore.h>
60#include <asm/byteorder.h>
61
62#include "libata.h"
63
Tejun Heo6aff8f12006-02-15 18:24:09 +090064static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +080065 struct ata_device *dev,
66 u16 heads,
67 u16 sectors);
Tejun Heo83206a22006-03-24 15:25:31 +090068static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
69 struct ata_device *dev);
Tejun Heoacf356b2006-03-24 14:07:50 +090070static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72static unsigned int ata_unique_id = 1;
73static struct workqueue_struct *ata_wq;
74
Jeff Garzik418dc1f2006-03-11 20:50:08 -050075int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040076module_param(atapi_enabled, int, 0444);
77MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
78
Albert Lee95de7192006-04-04 10:57:18 +080079int atapi_dmadir = 0;
80module_param(atapi_dmadir, int, 0444);
81MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
82
Jeff Garzikc3c013a2006-02-27 22:31:19 -050083int libata_fua = 0;
84module_param_named(fua, libata_fua, int, 0444);
85MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087MODULE_AUTHOR("Jeff Garzik");
88MODULE_DESCRIPTION("Library module for ATA devices");
89MODULE_LICENSE("GPL");
90MODULE_VERSION(DRV_VERSION);
91
Edward Falk0baab862005-06-02 18:17:13 -040092
93/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
95 * @tf: Taskfile to convert
96 * @fis: Buffer into which data will output
97 * @pmp: Port multiplier port
98 *
99 * Converts a standard ATA taskfile to a Serial ATA
100 * FIS structure (Register - Host to Device).
101 *
102 * LOCKING:
103 * Inherited from caller.
104 */
105
Jeff Garzik057ace52005-10-22 14:27:05 -0400106void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 fis[0] = 0x27; /* Register - Host to Device FIS */
109 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
110 bit 7 indicates Command FIS */
111 fis[2] = tf->command;
112 fis[3] = tf->feature;
113
114 fis[4] = tf->lbal;
115 fis[5] = tf->lbam;
116 fis[6] = tf->lbah;
117 fis[7] = tf->device;
118
119 fis[8] = tf->hob_lbal;
120 fis[9] = tf->hob_lbam;
121 fis[10] = tf->hob_lbah;
122 fis[11] = tf->hob_feature;
123
124 fis[12] = tf->nsect;
125 fis[13] = tf->hob_nsect;
126 fis[14] = 0;
127 fis[15] = tf->ctl;
128
129 fis[16] = 0;
130 fis[17] = 0;
131 fis[18] = 0;
132 fis[19] = 0;
133}
134
135/**
136 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
137 * @fis: Buffer from which data will be input
138 * @tf: Taskfile to output
139 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500140 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 *
142 * LOCKING:
143 * Inherited from caller.
144 */
145
Jeff Garzik057ace52005-10-22 14:27:05 -0400146void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 tf->command = fis[2]; /* status */
149 tf->feature = fis[3]; /* error */
150
151 tf->lbal = fis[4];
152 tf->lbam = fis[5];
153 tf->lbah = fis[6];
154 tf->device = fis[7];
155
156 tf->hob_lbal = fis[8];
157 tf->hob_lbam = fis[9];
158 tf->hob_lbah = fis[10];
159
160 tf->nsect = fis[12];
161 tf->hob_nsect = fis[13];
162}
163
Albert Lee8cbd6df2005-10-12 15:06:27 +0800164static const u8 ata_rw_cmds[] = {
165 /* pio multi */
166 ATA_CMD_READ_MULTI,
167 ATA_CMD_WRITE_MULTI,
168 ATA_CMD_READ_MULTI_EXT,
169 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100170 0,
171 0,
172 0,
173 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800174 /* pio */
175 ATA_CMD_PIO_READ,
176 ATA_CMD_PIO_WRITE,
177 ATA_CMD_PIO_READ_EXT,
178 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100179 0,
180 0,
181 0,
182 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800183 /* dma */
184 ATA_CMD_READ,
185 ATA_CMD_WRITE,
186 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100187 ATA_CMD_WRITE_EXT,
188 0,
189 0,
190 0,
191 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800192};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800195 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
196 * @qc: command to examine and configure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500198 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800199 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 *
201 * LOCKING:
202 * caller.
203 */
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100204int ata_rwcmd_protocol(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Albert Lee8cbd6df2005-10-12 15:06:27 +0800206 struct ata_taskfile *tf = &qc->tf;
207 struct ata_device *dev = qc->dev;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100208 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100210 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500211
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100212 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800213 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
214 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Albert Lee8cbd6df2005-10-12 15:06:27 +0800216 if (dev->flags & ATA_DFLAG_PIO) {
217 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100218 index = dev->multi_count ? 0 : 8;
Alan Cox8d238e02006-01-17 20:50:31 +0000219 } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) {
220 /* Unable to use DMA due to host limitation */
221 tf->protocol = ATA_PROT_PIO;
Albert Leeaef9d532006-02-08 16:37:43 +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, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291};
292
293/**
Tejun Heocb95d562006-03-06 04:31:56 +0900294 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
295 * @xfer_mask: xfer_mask of interest
296 *
297 * Return matching XFER_* value for @xfer_mask. Only the highest
298 * bit of @xfer_mask is considered.
299 *
300 * LOCKING:
301 * None.
302 *
303 * RETURNS:
304 * Matching XFER_* value, 0 if no match found.
305 */
306static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
307{
308 int highbit = fls(xfer_mask) - 1;
309 const struct ata_xfer_ent *ent;
310
311 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
312 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
313 return ent->base + highbit - ent->shift;
314 return 0;
315}
316
317/**
318 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
319 * @xfer_mode: XFER_* of interest
320 *
321 * Return matching xfer_mask for @xfer_mode.
322 *
323 * LOCKING:
324 * None.
325 *
326 * RETURNS:
327 * Matching xfer_mask, 0 if no match found.
328 */
329static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
330{
331 const struct ata_xfer_ent *ent;
332
333 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
334 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
335 return 1 << (ent->shift + xfer_mode - ent->base);
336 return 0;
337}
338
339/**
340 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
341 * @xfer_mode: XFER_* of interest
342 *
343 * Return matching xfer_shift for @xfer_mode.
344 *
345 * LOCKING:
346 * None.
347 *
348 * RETURNS:
349 * Matching xfer_shift, -1 if no match found.
350 */
351static int ata_xfer_mode2shift(unsigned int xfer_mode)
352{
353 const struct ata_xfer_ent *ent;
354
355 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
356 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
357 return ent->shift;
358 return -1;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900362 * ata_mode_string - convert xfer_mask to string
363 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *
365 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900366 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
368 * LOCKING:
369 * None.
370 *
371 * RETURNS:
372 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900373 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900375static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Tejun Heo75f554b2006-03-06 04:31:57 +0900377 static const char * const xfer_mode_str[] = {
378 "PIO0",
379 "PIO1",
380 "PIO2",
381 "PIO3",
382 "PIO4",
383 "MWDMA0",
384 "MWDMA1",
385 "MWDMA2",
386 "UDMA/16",
387 "UDMA/25",
388 "UDMA/33",
389 "UDMA/44",
390 "UDMA/66",
391 "UDMA/100",
392 "UDMA/133",
393 "UDMA7",
394 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900395 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900397 highbit = fls(xfer_mask) - 1;
398 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
399 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Tejun Heo4c360c82006-04-01 01:38:17 +0900403static const char *sata_spd_string(unsigned int spd)
404{
405 static const char * const spd_str[] = {
406 "1.5 Gbps",
407 "3.0 Gbps",
408 };
409
410 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
411 return "<unknown>";
412 return spd_str[spd - 1];
413}
414
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900415void ata_dev_disable(struct ata_port *ap, struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900416{
Tejun Heoe1211e32006-04-01 01:38:18 +0900417 if (ata_dev_enabled(dev)) {
Tejun Heo0b8efb02006-03-24 15:25:31 +0900418 printk(KERN_WARNING "ata%u: dev %u disabled\n",
419 ap->id, dev->devno);
420 dev->class++;
421 }
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/**
425 * ata_pio_devchk - PATA device presence detection
426 * @ap: ATA channel to examine
427 * @device: Device to examine (starting at zero)
428 *
429 * This technique was originally described in
430 * Hale Landis's ATADRVR (www.ata-atapi.com), and
431 * later found its way into the ATA/ATAPI spec.
432 *
433 * Write a pattern to the ATA shadow registers,
434 * and if a device is present, it will respond by
435 * correctly storing and echoing back the
436 * ATA shadow register contents.
437 *
438 * LOCKING:
439 * caller.
440 */
441
442static unsigned int ata_pio_devchk(struct ata_port *ap,
443 unsigned int device)
444{
445 struct ata_ioports *ioaddr = &ap->ioaddr;
446 u8 nsect, lbal;
447
448 ap->ops->dev_select(ap, device);
449
450 outb(0x55, ioaddr->nsect_addr);
451 outb(0xaa, ioaddr->lbal_addr);
452
453 outb(0xaa, ioaddr->nsect_addr);
454 outb(0x55, ioaddr->lbal_addr);
455
456 outb(0x55, ioaddr->nsect_addr);
457 outb(0xaa, ioaddr->lbal_addr);
458
459 nsect = inb(ioaddr->nsect_addr);
460 lbal = inb(ioaddr->lbal_addr);
461
462 if ((nsect == 0x55) && (lbal == 0xaa))
463 return 1; /* we found a device */
464
465 return 0; /* nothing found */
466}
467
468/**
469 * ata_mmio_devchk - PATA device presence detection
470 * @ap: ATA channel to examine
471 * @device: Device to examine (starting at zero)
472 *
473 * This technique was originally described in
474 * Hale Landis's ATADRVR (www.ata-atapi.com), and
475 * later found its way into the ATA/ATAPI spec.
476 *
477 * Write a pattern to the ATA shadow registers,
478 * and if a device is present, it will respond by
479 * correctly storing and echoing back the
480 * ATA shadow register contents.
481 *
482 * LOCKING:
483 * caller.
484 */
485
486static unsigned int ata_mmio_devchk(struct ata_port *ap,
487 unsigned int device)
488{
489 struct ata_ioports *ioaddr = &ap->ioaddr;
490 u8 nsect, lbal;
491
492 ap->ops->dev_select(ap, device);
493
494 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
495 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
496
497 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
498 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
499
500 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
501 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
502
503 nsect = readb((void __iomem *) ioaddr->nsect_addr);
504 lbal = readb((void __iomem *) ioaddr->lbal_addr);
505
506 if ((nsect == 0x55) && (lbal == 0xaa))
507 return 1; /* we found a device */
508
509 return 0; /* nothing found */
510}
511
512/**
513 * ata_devchk - PATA device presence detection
514 * @ap: ATA channel to examine
515 * @device: Device to examine (starting at zero)
516 *
517 * Dispatch ATA device presence detection, depending
518 * on whether we are using PIO or MMIO to talk to the
519 * ATA shadow registers.
520 *
521 * LOCKING:
522 * caller.
523 */
524
525static unsigned int ata_devchk(struct ata_port *ap,
526 unsigned int device)
527{
528 if (ap->flags & ATA_FLAG_MMIO)
529 return ata_mmio_devchk(ap, device);
530 return ata_pio_devchk(ap, device);
531}
532
533/**
534 * ata_dev_classify - determine device type based on ATA-spec signature
535 * @tf: ATA taskfile register set for device to be identified
536 *
537 * Determine from taskfile register contents whether a device is
538 * ATA or ATAPI, as per "Signature and persistence" section
539 * of ATA/PI spec (volume 1, sect 5.14).
540 *
541 * LOCKING:
542 * None.
543 *
544 * RETURNS:
545 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
546 * the event of failure.
547 */
548
Jeff Garzik057ace52005-10-22 14:27:05 -0400549unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 /* Apple's open source Darwin code hints that some devices only
552 * put a proper signature into the LBA mid/high registers,
553 * So, we only check those. It's sufficient for uniqueness.
554 */
555
556 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
557 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
558 DPRINTK("found ATA device by sig\n");
559 return ATA_DEV_ATA;
560 }
561
562 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
563 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
564 DPRINTK("found ATAPI device by sig\n");
565 return ATA_DEV_ATAPI;
566 }
567
568 DPRINTK("unknown device\n");
569 return ATA_DEV_UNKNOWN;
570}
571
572/**
573 * ata_dev_try_classify - Parse returned ATA device signature
574 * @ap: ATA channel to examine
575 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900576 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 *
578 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
579 * an ATA/ATAPI-defined set of values is placed in the ATA
580 * shadow registers, indicating the results of device detection
581 * and diagnostics.
582 *
583 * Select the ATA device, and read the values from the ATA shadow
584 * registers. Then parse according to the Error register value,
585 * and the spec-defined values examined by ata_dev_classify().
586 *
587 * LOCKING:
588 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900589 *
590 * RETURNS:
591 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
593
Tejun Heob4dc7622006-01-24 17:05:22 +0900594static unsigned int
595ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 struct ata_taskfile tf;
598 unsigned int class;
599 u8 err;
600
601 ap->ops->dev_select(ap, device);
602
603 memset(&tf, 0, sizeof(tf));
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400606 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900607 if (r_err)
608 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /* see if device passed diags */
611 if (err == 1)
612 /* do nothing */ ;
613 else if ((device == 0) && (err == 0x81))
614 /* do nothing */ ;
615 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900616 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Tejun Heob4dc7622006-01-24 17:05:22 +0900618 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900622 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900624 return ATA_DEV_NONE;
625 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900629 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 * @id: IDENTIFY DEVICE results we will examine
631 * @s: string into which data is output
632 * @ofs: offset into identify device page
633 * @len: length of string to return. must be an even number.
634 *
635 * The strings in the IDENTIFY DEVICE page are broken up into
636 * 16-bit chunks. Run through the string, and output each
637 * 8-bit chunk linearly, regardless of platform.
638 *
639 * LOCKING:
640 * caller.
641 */
642
Tejun Heo6a62a042006-02-13 10:02:46 +0900643void ata_id_string(const u16 *id, unsigned char *s,
644 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 unsigned int c;
647
648 while (len > 0) {
649 c = id[ofs] >> 8;
650 *s = c;
651 s++;
652
653 c = id[ofs] & 0xff;
654 *s = c;
655 s++;
656
657 ofs++;
658 len -= 2;
659 }
660}
661
Tejun Heo0e949ff2006-02-12 22:47:04 +0900662/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900663 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900664 * @id: IDENTIFY DEVICE results we will examine
665 * @s: string into which data is output
666 * @ofs: offset into identify device page
667 * @len: length of string to return. must be an odd number.
668 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900669 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900670 * trims trailing spaces and terminates the resulting string with
671 * null. @len must be actual maximum length (even number) + 1.
672 *
673 * LOCKING:
674 * caller.
675 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900676void ata_id_c_string(const u16 *id, unsigned char *s,
677 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900678{
679 unsigned char *p;
680
681 WARN_ON(!(len & 1));
682
Tejun Heo6a62a042006-02-13 10:02:46 +0900683 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900684
685 p = s + strnlen(s, len - 1);
686 while (p > s && p[-1] == ' ')
687 p--;
688 *p = '\0';
689}
Edward Falk0baab862005-06-02 18:17:13 -0400690
Tejun Heo29407402006-02-12 22:47:04 +0900691static u64 ata_id_n_sectors(const u16 *id)
692{
693 if (ata_id_has_lba(id)) {
694 if (ata_id_has_lba48(id))
695 return ata_id_u64(id, 100);
696 else
697 return ata_id_u32(id, 60);
698 } else {
699 if (ata_id_current_chs_valid(id))
700 return ata_id_u32(id, 57);
701 else
702 return id[1] * id[3] * id[6];
703 }
704}
Edward Falk0baab862005-06-02 18:17:13 -0400705
706/**
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
Alan Cox11e29e22005-10-21 18:46:32 -0400834 *
Tejun Heocb95d562006-03-06 04:31:56 +0900835 * 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
Alan Cox11e29e22005-10-21 18:46:32 -0400845 */
Tejun Heocb95d562006-03-06 04:31:56 +0900846static unsigned int ata_id_xfermask(const u16 *id)
Alan Cox11e29e22005-10-21 18:46:32 -0400847{
Tejun Heocb95d562006-03-06 04:31:56 +0900848 unsigned int pio_mask, mwdma_mask, udma_mask;
Alan Cox11e29e22005-10-21 18:46:32 -0400849
Alan Coxffa29452006-01-09 17:14:40 +0000850 /* Usual case. Word 53 indicates word 64 is valid */
Tejun Heocb95d562006-03-06 04:31:56 +0900851 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 */
Alan Cox11e29e22005-10-21 18:46:32 -0400868 }
869
Tejun Heocb95d562006-03-06 04:31:56 +0900870 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;
Alan Cox11e29e22005-10-21 18:46:32 -0400875
Tejun Heocb95d562006-03-06 04:31:56 +0900876 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
Tejun Heoc18d06f2006-02-02 00:56:10 +0900877}
878
879/**
Tejun Heo86e45b62006-03-05 15:29:09 +0900880 * ata_port_queue_task - Queue port_task
881 * @ap: The ata_port to queue port_task for
Tejun Heoc18d06f2006-02-02 00:56:10 +0900882 *
Tejun Heo86e45b62006-03-05 15:29:09 +0900883 * 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.
Tejun Heoc18d06f2006-02-02 00:56:10 +0900920 *
921 * LOCKING:
922 * Kernel thread context (may sleep)
923 */
Tejun Heo86e45b62006-03-05 15:29:09 +0900924void ata_port_flush_task(struct ata_port *ap)
Tejun Heoc18d06f2006-02-02 00:56:10 +0900925{
Tejun Heoc18d06f2006-02-02 00:56:10 +0900926 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 Heoc18d06f2006-02-02 00:56:10 +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 */
Tejun Heo86e45b62006-03-05 15:29:09 +0900942 if (!cancel_delayed_work(&ap->port_task)) {
Tejun Heoc18d06f2006-02-02 00:56:10 +0900943 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 Heoc18d06f2006-02-02 00:56:10 +0900949 spin_unlock_irqrestore(&ap->host_set->lock, flags);
950
951 DPRINTK("EXIT\n");
Tejun Heo95064372006-01-23 13:09:37 +0900952}
953
Tejun Heo77853bf2006-01-23 13:09:36 +0900954void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Jeff Garzik64f043d2005-11-17 10:50:01 -0500955{
Tejun Heo77853bf2006-01-23 13:09:36 +0900956 struct completion *waiting = qc->private_data;
Jeff Garzik64f043d2005-11-17 10:50:01 -0500957
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}
Jeff Garzik64f043d2005-11-17 10:50:01 -0500961
Tejun Heoa2a7a662005-12-13 14:48:31 +0900962/**
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
Tejun Heod69cf372006-04-02 18:51:53 +0900967 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +0900968 * @dma_dir: Data tranfer direction of the command
969 * @buf: Data buffer of the command
970 * @buflen: Length of data buffer
971 *
972 * Executes libata internal command with timeout. @tf contains
973 * command on entry and result on return. Timeout and error
974 * conditions are reported via return value. No recovery action
975 * is taken after a command times out. It's caller's duty to
976 * clean up after timeout.
977 *
978 * LOCKING:
979 * None. Should be called with kernel context, might sleep.
980 */
981
Tejun Heo1ad8e7f2006-04-02 18:51:53 +0900982unsigned ata_exec_internal(struct ata_port *ap, struct ata_device *dev,
983 struct ata_taskfile *tf, const u8 *cdb,
984 int dma_dir, void *buf, unsigned int buflen)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900985{
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;
Tejun Heod69cf372006-04-02 18:51:53 +0900998 if (cdb)
999 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001000 qc->dma_dir = dma_dir;
1001 if (dma_dir != DMA_NONE) {
1002 ata_sg_init_one(qc, buf, buflen);
1003 qc->nsect = buflen / ATA_SECT_SIZE;
Jeff Garzik64f043d2005-11-17 10:50:01 -05001004 }
1005
Tejun Heo77853bf2006-01-23 13:09:36 +09001006 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001007 qc->complete_fn = ata_qc_complete_internal;
1008
Tejun Heo8e0e6942006-03-31 20:41:11 +09001009 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001010
1011 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1012
1013 if (!wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL)) {
Albert Lee41ade502006-03-14 11:19:04 +08001014 ata_port_flush_task(ap);
1015
Tejun Heoa2a7a662005-12-13 14:48:31 +09001016 spin_lock_irqsave(&ap->host_set->lock, flags);
1017
1018 /* We're racing with irq here. If we lose, the
1019 * following test prevents us from completing the qc
1020 * again. If completion irq occurs after here but
1021 * before the caller cleans up, it will result in a
1022 * spurious interrupt. We can live with that.
1023 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001024 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heo11a56d22006-01-23 13:09:36 +09001025 qc->err_mask = AC_ERR_TIMEOUT;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001026 ata_qc_complete(qc);
1027 printk(KERN_WARNING "ata%u: qc timeout (cmd 0x%x)\n",
1028 ap->id, command);
1029 }
1030
1031 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1032 }
1033
Tejun Heo77853bf2006-01-23 13:09:36 +09001034 *tf = qc->tf;
1035 err_mask = qc->err_mask;
1036
1037 ata_qc_free(qc);
1038
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001039 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1040 * Until those drivers are fixed, we detect the condition
1041 * here, fail the command with AC_ERR_SYSTEM and reenable the
1042 * port.
1043 *
1044 * Note that this doesn't change any behavior as internal
1045 * command failure results in disabling the device in the
1046 * higher layer for LLDDs without new reset/EH callbacks.
1047 *
1048 * Kill the following code as soon as those drivers are fixed.
1049 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001050 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001051 err_mask |= AC_ERR_SYSTEM;
1052 ata_port_probe(ap);
1053 }
1054
Tejun Heo77853bf2006-01-23 13:09:36 +09001055 return err_mask;
Jeff Garzik64f043d2005-11-17 10:50:01 -05001056}
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001059 * ata_pio_need_iordy - check if iordy needed
1060 * @adev: ATA device
1061 *
1062 * Check if the current speed of the device requires IORDY. Used
1063 * by various controllers for chip configuration.
1064 */
1065
1066unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1067{
1068 int pio;
1069 int speed = adev->pio_mode - XFER_PIO_0;
1070
1071 if (speed < 2)
1072 return 0;
1073 if (speed > 2)
1074 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001075
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001076 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1077
1078 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1079 pio = adev->id[ATA_ID_EIDE_PIO];
1080 /* Is the speed faster than the drive allows non IORDY ? */
1081 if (pio) {
1082 /* This is cycle times not frequency - watch the logic! */
1083 if (pio > 240) /* PIO2 is 240nS per cycle */
1084 return 1;
1085 return 0;
1086 }
1087 }
1088 return 0;
1089}
1090
1091/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001092 * ata_dev_read_id - Read ID data from the specified device
1093 * @ap: port on which target device resides
1094 * @dev: target device
1095 * @p_class: pointer to class of the target device (may be changed)
1096 * @post_reset: is this read ID post-reset?
Tejun Heod9572b12006-03-01 16:09:35 +09001097 * @p_id: read IDENTIFY page (newly allocated)
Tejun Heo49016ac2006-02-21 02:12:11 +09001098 *
1099 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1100 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001101 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1102 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001103 *
1104 * LOCKING:
1105 * Kernel thread context (may sleep)
1106 *
1107 * RETURNS:
1108 * 0 on success, -errno otherwise.
1109 */
1110static int ata_dev_read_id(struct ata_port *ap, struct ata_device *dev,
Tejun Heod9572b12006-03-01 16:09:35 +09001111 unsigned int *p_class, int post_reset, u16 **p_id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001112{
1113 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001114 struct ata_taskfile tf;
1115 unsigned int err_mask = 0;
Tejun Heod9572b12006-03-01 16:09:35 +09001116 u16 *id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001117 const char *reason;
1118 int rc;
1119
1120 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
1121
Tejun Heo49016ac2006-02-21 02:12:11 +09001122 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1123
Tejun Heod9572b12006-03-01 16:09:35 +09001124 id = kmalloc(sizeof(id[0]) * ATA_ID_WORDS, GFP_KERNEL);
1125 if (id == NULL) {
1126 rc = -ENOMEM;
1127 reason = "out of memory";
1128 goto err_out;
1129 }
1130
Tejun Heo49016ac2006-02-21 02:12:11 +09001131 retry:
1132 ata_tf_init(ap, &tf, dev->devno);
1133
1134 switch (class) {
1135 case ATA_DEV_ATA:
1136 tf.command = ATA_CMD_ID_ATA;
1137 break;
1138 case ATA_DEV_ATAPI:
1139 tf.command = ATA_CMD_ID_ATAPI;
1140 break;
1141 default:
1142 rc = -ENODEV;
1143 reason = "unsupported class";
1144 goto err_out;
1145 }
1146
1147 tf.protocol = ATA_PROT_PIO;
1148
Tejun Heod69cf372006-04-02 18:51:53 +09001149 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001150 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001151 if (err_mask) {
1152 rc = -EIO;
1153 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001154 goto err_out;
1155 }
1156
1157 swap_buf_le16(id, ATA_ID_WORDS);
1158
Tejun Heo49016ac2006-02-21 02:12:11 +09001159 /* sanity check */
Alan Cox692785e2006-03-27 18:49:19 +01001160 if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001161 rc = -EINVAL;
1162 reason = "device reports illegal type";
1163 goto err_out;
1164 }
1165
1166 if (post_reset && class == ATA_DEV_ATA) {
1167 /*
1168 * The exact sequence expected by certain pre-ATA4 drives is:
1169 * SRST RESET
1170 * IDENTIFY
1171 * INITIALIZE DEVICE PARAMETERS
1172 * anything else..
1173 * Some drives were very specific about that exact sequence.
1174 */
1175 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Albert Lee00b6f5e2006-03-27 16:39:18 +08001176 err_mask = ata_dev_init_params(ap, dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001177 if (err_mask) {
1178 rc = -EIO;
1179 reason = "INIT_DEV_PARAMS failed";
1180 goto err_out;
1181 }
1182
1183 /* current CHS translation info (id[53-58]) might be
1184 * changed. reread the identify device info.
1185 */
1186 post_reset = 0;
1187 goto retry;
1188 }
1189 }
1190
1191 *p_class = class;
Tejun Heod9572b12006-03-01 16:09:35 +09001192 *p_id = id;
Tejun Heo49016ac2006-02-21 02:12:11 +09001193 return 0;
1194
1195 err_out:
1196 printk(KERN_WARNING "ata%u: dev %u failed to IDENTIFY (%s)\n",
1197 ap->id, dev->devno, reason);
Tejun Heod9572b12006-03-01 16:09:35 +09001198 kfree(id);
Tejun Heo49016ac2006-02-21 02:12:11 +09001199 return rc;
1200}
1201
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001202static inline u8 ata_dev_knobble(const struct ata_port *ap,
1203 struct ata_device *dev)
1204{
1205 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
1206}
1207
Tejun Heo49016ac2006-02-21 02:12:11 +09001208/**
Tejun Heoffeae412006-03-01 16:09:35 +09001209 * ata_dev_configure - Configure the specified ATA/ATAPI device
1210 * @ap: Port on which target device resides
1211 * @dev: Target device to configure
Tejun Heo4c2d7212006-03-05 17:55:58 +09001212 * @print_info: Enable device info printout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 *
Tejun Heoffeae412006-03-01 16:09:35 +09001214 * Configure @dev according to @dev->id. Generic and low-level
1215 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 *
1217 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001218 * Kernel thread context (may sleep)
1219 *
1220 * RETURNS:
1221 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001223static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev,
1224 int print_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Tejun Heo1148c3a2006-03-13 19:48:04 +09001226 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001227 unsigned int xfer_mask;
Tejun Heo6e7846e2006-02-12 23:32:58 +09001228 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Tejun Heoe1211e32006-04-01 01:38:18 +09001230 if (!ata_dev_enabled(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n",
Tejun Heoffeae412006-03-01 16:09:35 +09001232 ap->id, dev->devno);
1233 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235
Tejun Heoffeae412006-03-01 16:09:35 +09001236 DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001238 /* print device capabilities */
1239 if (print_info)
1240 printk(KERN_DEBUG "ata%u: dev %u cfg 49:%04x 82:%04x 83:%04x "
1241 "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n",
1242 ap->id, dev->devno, id[49], id[82], id[83],
1243 id[84], id[85], id[86], id[87], id[88]);
1244
Tejun Heo208a9932006-03-05 17:55:58 +09001245 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001246 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001247 dev->max_sectors = 0;
1248 dev->cdb_len = 0;
1249 dev->n_sectors = 0;
1250 dev->cylinders = 0;
1251 dev->heads = 0;
1252 dev->sectors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 /*
1255 * common ATA, ATAPI feature tests
1256 */
1257
Tejun Heoff8854b2006-03-06 04:31:56 +09001258 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001259 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Tejun Heo1148c3a2006-03-13 19:48:04 +09001261 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 /* ATA-specific feature tests */
1264 if (dev->class == ATA_DEV_ATA) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001265 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001266
Tejun Heo1148c3a2006-03-13 19:48:04 +09001267 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001268 const char *lba_desc;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001269
Tejun Heo4c2d7212006-03-05 17:55:58 +09001270 lba_desc = "LBA";
1271 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001272 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001273 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001274 lba_desc = "LBA48";
1275 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001276
1277 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001278 if (print_info)
1279 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1280 "max %s, %Lu sectors: %s\n",
1281 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001282 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001283 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001284 (unsigned long long)dev->n_sectors,
1285 lba_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001286 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001287 /* CHS */
1288
1289 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001290 dev->cylinders = id[1];
1291 dev->heads = id[3];
1292 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001293
Tejun Heo1148c3a2006-03-13 19:48:04 +09001294 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001295 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001296 dev->cylinders = id[54];
1297 dev->heads = id[55];
1298 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001299 }
1300
1301 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001302 if (print_info)
1303 printk(KERN_INFO "ata%u: dev %u ATA-%d, "
1304 "max %s, %Lu sectors: CHS %u/%u/%u\n",
1305 ap->id, dev->devno,
Tejun Heo1148c3a2006-03-13 19:48:04 +09001306 ata_id_major_version(id),
Tejun Heoff8854b2006-03-06 04:31:56 +09001307 ata_mode_string(xfer_mask),
Tejun Heo4c2d7212006-03-05 17:55:58 +09001308 (unsigned long long)dev->n_sectors,
1309 dev->cylinders, dev->heads, dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311
Albert Lee07f6f7d2005-11-01 19:33:20 +08001312 if (dev->id[59] & 0x100) {
1313 dev->multi_count = dev->id[59] & 0xff;
1314 DPRINTK("ata%u: dev %u multi count %u\n",
Albert Lee999bb6f2006-03-25 18:07:48 +08001315 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001316 }
1317
Albert Lee13ee4622006-03-25 17:39:34 +08001318 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320
1321 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001322 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001323 char *cdb_intr_string = "";
1324
Tejun Heo1148c3a2006-03-13 19:48:04 +09001325 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1327 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
Tejun Heoffeae412006-03-01 16:09:35 +09001328 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 goto err_out_nosup;
1330 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001331 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Albert Lee08a556d2006-03-31 13:29:04 +08001333 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001334 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001335 cdb_intr_string = ", CDB intr";
1336 }
Albert Lee312f7da2005-09-27 17:38:03 +08001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001339 if (print_info)
Albert Lee08a556d2006-03-31 13:29:04 +08001340 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s%s\n",
1341 ap->id, dev->devno, ata_mode_string(xfer_mask),
1342 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344
Tejun Heo6e7846e2006-02-12 23:32:58 +09001345 ap->host->max_cmd_len = 0;
1346 for (i = 0; i < ATA_MAX_DEVICES; i++)
1347 ap->host->max_cmd_len = max_t(unsigned int,
1348 ap->host->max_cmd_len,
1349 ap->device[i].cdb_len);
1350
Brad Campbell6f2f3812005-05-12 15:07:47 -04001351 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001352 if (ata_dev_knobble(ap, dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001353 if (print_info)
1354 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1355 ap->id, dev->devno);
Tejun Heo5a529132006-03-24 14:07:50 +09001356 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001357 dev->max_sectors = ATA_MAX_SECTORS;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001358 }
1359
1360 if (ap->ops->dev_config)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001361 ap->ops->dev_config(ap, dev);
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001368 return rc;
Brad Campbell6f2f3812005-05-12 15:07:47 -04001369}
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371/**
1372 * ata_bus_probe - Reset and probe ATA bus
1373 * @ap: Bus to probe
1374 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001375 * Master ATA bus probing function. Initiates a hardware-dependent
1376 * bus reset, then attempts to identify any devices found on
1377 * the bus.
1378 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001380 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 *
1382 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001383 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 */
1385
1386static int ata_bus_probe(struct ata_port *ap)
1387{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001388 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001389 int tries[ATA_MAX_DEVICES];
1390 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001391 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Tejun Heo28ca5c52006-03-01 16:09:36 +09001393 ata_port_probe(ap);
1394
Tejun Heo14d2bac2006-04-02 17:54:46 +09001395 for (i = 0; i < ATA_MAX_DEVICES; i++)
1396 tries[i] = ATA_PROBE_MAX_TRIES;
1397
1398 retry:
1399 down_xfermask = 0;
1400
Tejun Heo20444702006-03-13 01:57:01 +09001401 /* reset and determine device classes */
1402 for (i = 0; i < ATA_MAX_DEVICES; i++)
1403 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001404
Tejun Heo20444702006-03-13 01:57:01 +09001405 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001406 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001407 if (rc) {
1408 printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1409 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001410 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001411 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001412 ap->ops->phy_reset(ap);
1413
Tejun Heo198e0fe2006-04-02 18:51:52 +09001414 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo20444702006-03-13 01:57:01 +09001415 for (i = 0; i < ATA_MAX_DEVICES; i++)
Tejun Heo28ca5c52006-03-01 16:09:36 +09001416 classes[i] = ap->device[i].class;
Tejun Heo20444702006-03-13 01:57:01 +09001417
Tejun Heo28ca5c52006-03-01 16:09:36 +09001418 ata_port_probe(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420
Tejun Heo20444702006-03-13 01:57:01 +09001421 for (i = 0; i < ATA_MAX_DEVICES; i++)
1422 if (classes[i] == ATA_DEV_UNKNOWN)
1423 classes[i] = ATA_DEV_NONE;
1424
Tejun Heo28ca5c52006-03-01 16:09:36 +09001425 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001427 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001428
Tejun Heoec573752006-04-11 22:26:29 +09001429 if (tries[i])
1430 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001431
Tejun Heoe1211e32006-04-01 01:38:18 +09001432 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001433 continue;
1434
Tejun Heo14d2bac2006-04-02 17:54:46 +09001435 kfree(dev->id);
1436 dev->id = NULL;
1437 rc = ata_dev_read_id(ap, dev, &dev->class, 1, &dev->id);
1438 if (rc)
1439 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001440
Tejun Heo14d2bac2006-04-02 17:54:46 +09001441 rc = ata_dev_configure(ap, dev, 1);
1442 if (rc)
1443 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
1445
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001446 /* configure transfer mode */
1447 if (ap->ops->set_mode) {
1448 /* FIXME: make ->set_mode handle no device case and
1449 * return error code and failing device on failure as
1450 * ata_set_mode() does.
1451 */
Tejun Heo14d2bac2006-04-02 17:54:46 +09001452 for (i = 0; i < ATA_MAX_DEVICES; i++)
1453 if (ata_dev_enabled(&ap->device[i])) {
1454 ap->ops->set_mode(ap);
1455 break;
1456 }
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001457 rc = 0;
Tejun Heo51713d32006-04-11 22:26:29 +09001458 } else
Tejun Heo14d2bac2006-04-02 17:54:46 +09001459 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001460
1461 if (rc) {
1462 down_xfermask = 1;
1463 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001466 for (i = 0; i < ATA_MAX_DEVICES; i++)
1467 if (ata_dev_enabled(&ap->device[i]))
1468 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001469
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001470 /* no device present, disable port */
1471 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001473 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001474
1475 fail:
1476 switch (rc) {
1477 case -EINVAL:
1478 case -ENODEV:
1479 tries[dev->devno] = 0;
1480 break;
1481 case -EIO:
1482 ata_down_sata_spd_limit(ap);
1483 /* fall through */
1484 default:
1485 tries[dev->devno]--;
1486 if (down_xfermask &&
1487 ata_down_xfermask_limit(ap, dev, tries[dev->devno] == 1))
1488 tries[dev->devno] = 0;
1489 }
1490
Tejun Heoec573752006-04-11 22:26:29 +09001491 if (!tries[dev->devno]) {
1492 ata_down_xfermask_limit(ap, dev, 1);
1493 ata_dev_disable(ap, dev);
1494 }
1495
Tejun Heo14d2bac2006-04-02 17:54:46 +09001496 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
1499/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001500 * ata_port_probe - Mark port as enabled
1501 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001503 * Modify @ap data structure such that the system
1504 * thinks that the entire port is enabled.
1505 *
1506 * LOCKING: host_set lock, or some other form of
1507 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
1509
1510void ata_port_probe(struct ata_port *ap)
1511{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001512 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
1515/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001516 * sata_print_link_status - Print SATA link status
1517 * @ap: SATA port to printk link status about
1518 *
1519 * This function prints link speed and status of a SATA link.
1520 *
1521 * LOCKING:
1522 * None.
1523 */
1524static void sata_print_link_status(struct ata_port *ap)
1525{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001526 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001527
1528 if (!ap->ops->scr_read)
1529 return;
1530
1531 sstatus = scr_read(ap, SCR_STATUS);
Tejun Heo6d5f9732006-04-03 00:09:41 +09001532 scontrol = scr_read(ap, SCR_CONTROL);
Tejun Heo3be680b2005-12-19 22:35:02 +09001533
1534 if (sata_dev_present(ap)) {
1535 tmp = (sstatus >> 4) & 0xf;
Tejun Heo6d5f9732006-04-03 00:09:41 +09001536 printk(KERN_INFO
1537 "ata%u: SATA link up %s (SStatus %X SControl %X)\n",
1538 ap->id, sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001539 } else {
Tejun Heo6d5f9732006-04-03 00:09:41 +09001540 printk(KERN_INFO
1541 "ata%u: SATA link down (SStatus %X SControl %X)\n",
1542 ap->id, sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001543 }
1544}
1545
1546/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001547 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1548 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001550 * This function issues commands to standard SATA Sxxx
1551 * PHY registers, to wake up the phy (and device), and
1552 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 *
1554 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001555 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 *
1557 */
1558void __sata_phy_reset(struct ata_port *ap)
1559{
1560 u32 sstatus;
1561 unsigned long timeout = jiffies + (HZ * 5);
1562
1563 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001564 /* issue phy wake/reset */
1565 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001566 /* Couldn't find anything in SATA I/II specs, but
1567 * AHCI-1.1 10.4.2 says at least 1 ms. */
1568 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
Brett Russcdcca892005-03-28 15:10:27 -05001570 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 /* wait for phy to become ready, if necessary */
1573 do {
1574 msleep(200);
1575 sstatus = scr_read(ap, SCR_STATUS);
1576 if ((sstatus & 0xf) != 1)
1577 break;
1578 } while (time_before(jiffies, timeout));
1579
Tejun Heo3be680b2005-12-19 22:35:02 +09001580 /* print link status */
1581 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001582
Tejun Heo3be680b2005-12-19 22:35:02 +09001583 /* TODO: phy layer with polling, timeouts, etc. */
1584 if (sata_dev_present(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001586 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Tejun Heo198e0fe2006-04-02 18:51:52 +09001589 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 return;
1591
1592 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1593 ata_port_disable(ap);
1594 return;
1595 }
1596
1597 ap->cbl = ATA_CBL_SATA;
1598}
1599
1600/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001601 * sata_phy_reset - Reset SATA bus.
1602 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001604 * This function resets the SATA bus, and then probes
1605 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 *
1607 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001608 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 *
1610 */
1611void sata_phy_reset(struct ata_port *ap)
1612{
1613 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001614 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return;
1616 ata_bus_reset(ap);
1617}
1618
1619/**
Alan Coxebdfca62006-03-23 15:38:34 +00001620 * ata_dev_pair - return other device on cable
1621 * @ap: port
1622 * @adev: device
1623 *
1624 * Obtain the other device on the same cable, or if none is
1625 * present NULL is returned
1626 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001627
Alan Coxebdfca62006-03-23 15:38:34 +00001628struct ata_device *ata_dev_pair(struct ata_port *ap, struct ata_device *adev)
1629{
1630 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001631 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001632 return NULL;
1633 return pair;
1634}
1635
1636/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001637 * ata_port_disable - Disable port.
1638 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001640 * Modify @ap data structure such that the system
1641 * thinks that the entire port is disabled, and should
1642 * never attempt to probe or communicate with devices
1643 * on this port.
1644 *
1645 * LOCKING: host_set lock, or some other form of
1646 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 */
1648
1649void ata_port_disable(struct ata_port *ap)
1650{
1651 ap->device[0].class = ATA_DEV_NONE;
1652 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001653 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654}
1655
Tejun Heo1c3fae42006-04-02 20:53:28 +09001656/**
1657 * ata_down_sata_spd_limit - adjust SATA spd limit downward
1658 * @ap: Port to adjust SATA spd limit for
1659 *
1660 * Adjust SATA spd limit of @ap downward. Note that this
1661 * function only adjusts the limit. The change must be applied
1662 * using ata_set_sata_spd().
1663 *
1664 * LOCKING:
1665 * Inherited from caller.
1666 *
1667 * RETURNS:
1668 * 0 on success, negative errno on failure
1669 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001670int ata_down_sata_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001671{
1672 u32 spd, mask;
1673 int highbit;
1674
1675 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1676 return -EOPNOTSUPP;
1677
1678 mask = ap->sata_spd_limit;
1679 if (mask <= 1)
1680 return -EINVAL;
1681 highbit = fls(mask) - 1;
1682 mask &= ~(1 << highbit);
1683
1684 spd = (scr_read(ap, SCR_STATUS) >> 4) & 0xf;
1685 if (spd <= 1)
1686 return -EINVAL;
1687 spd--;
1688 mask &= (1 << spd) - 1;
1689 if (!mask)
1690 return -EINVAL;
1691
1692 ap->sata_spd_limit = mask;
1693
1694 printk(KERN_WARNING "ata%u: limiting SATA link speed to %s\n",
1695 ap->id, sata_spd_string(fls(mask)));
1696
1697 return 0;
1698}
1699
1700static int __ata_set_sata_spd_needed(struct ata_port *ap, u32 *scontrol)
1701{
1702 u32 spd, limit;
1703
1704 if (ap->sata_spd_limit == UINT_MAX)
1705 limit = 0;
1706 else
1707 limit = fls(ap->sata_spd_limit);
1708
1709 spd = (*scontrol >> 4) & 0xf;
1710 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1711
1712 return spd != limit;
1713}
1714
1715/**
1716 * ata_set_sata_spd_needed - is SATA spd configuration needed
1717 * @ap: Port in question
1718 *
1719 * Test whether the spd limit in SControl matches
1720 * @ap->sata_spd_limit. This function is used to determine
1721 * whether hardreset is necessary to apply SATA spd
1722 * configuration.
1723 *
1724 * LOCKING:
1725 * Inherited from caller.
1726 *
1727 * RETURNS:
1728 * 1 if SATA spd configuration is needed, 0 otherwise.
1729 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001730int ata_set_sata_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001731{
1732 u32 scontrol;
1733
1734 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1735 return 0;
1736
1737 scontrol = scr_read(ap, SCR_CONTROL);
1738
1739 return __ata_set_sata_spd_needed(ap, &scontrol);
1740}
1741
1742/**
1743 * ata_set_sata_spd - set SATA spd according to spd limit
1744 * @ap: Port to set SATA spd for
1745 *
1746 * Set SATA spd of @ap according to sata_spd_limit.
1747 *
1748 * LOCKING:
1749 * Inherited from caller.
1750 *
1751 * RETURNS:
1752 * 0 if spd doesn't need to be changed, 1 if spd has been
1753 * changed. -EOPNOTSUPP if SCR registers are inaccessible.
1754 */
Tejun Heo499a86a2006-04-11 22:32:18 +09001755int ata_set_sata_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001756{
1757 u32 scontrol;
1758
1759 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1760 return -EOPNOTSUPP;
1761
1762 scontrol = scr_read(ap, SCR_CONTROL);
1763 if (!__ata_set_sata_spd_needed(ap, &scontrol))
1764 return 0;
1765
1766 scr_write(ap, SCR_CONTROL, scontrol);
1767 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
Alan Cox452503f2005-10-21 19:01:32 -04001770/*
1771 * This mode timing computation functionality is ported over from
1772 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1773 */
1774/*
1775 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1776 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1777 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001778 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001779 */
1780
1781static const struct ata_timing ata_timing[] = {
1782
1783 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1784 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1785 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1786 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1787
1788 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1789 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1790 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1791
1792/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001793
Alan Cox452503f2005-10-21 19:01:32 -04001794 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1795 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1796 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001797
Alan Cox452503f2005-10-21 19:01:32 -04001798 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1799 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1800 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1801
1802/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1803 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1804 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1805
1806 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1807 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1808 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1809
1810/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1811
1812 { 0xFF }
1813};
1814
1815#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1816#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1817
1818static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1819{
1820 q->setup = EZ(t->setup * 1000, T);
1821 q->act8b = EZ(t->act8b * 1000, T);
1822 q->rec8b = EZ(t->rec8b * 1000, T);
1823 q->cyc8b = EZ(t->cyc8b * 1000, T);
1824 q->active = EZ(t->active * 1000, T);
1825 q->recover = EZ(t->recover * 1000, T);
1826 q->cycle = EZ(t->cycle * 1000, T);
1827 q->udma = EZ(t->udma * 1000, UT);
1828}
1829
1830void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1831 struct ata_timing *m, unsigned int what)
1832{
1833 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1834 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1835 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1836 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1837 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1838 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1839 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1840 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1841}
1842
1843static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1844{
1845 const struct ata_timing *t;
1846
1847 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001848 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001849 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001850 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001851}
1852
1853int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1854 struct ata_timing *t, int T, int UT)
1855{
1856 const struct ata_timing *s;
1857 struct ata_timing p;
1858
1859 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001860 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001861 */
Alan Cox452503f2005-10-21 19:01:32 -04001862
1863 if (!(s = ata_timing_find_mode(speed)))
1864 return -EINVAL;
1865
Albert Lee75b1f2f2005-11-16 17:06:18 +08001866 memcpy(t, s, sizeof(*s));
1867
Alan Cox452503f2005-10-21 19:01:32 -04001868 /*
1869 * If the drive is an EIDE drive, it can tell us it needs extended
1870 * PIO/MW_DMA cycle timing.
1871 */
1872
1873 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1874 memset(&p, 0, sizeof(p));
1875 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1876 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1877 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1878 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1879 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1880 }
1881 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1882 }
1883
1884 /*
1885 * Convert the timing to bus clock counts.
1886 */
1887
Albert Lee75b1f2f2005-11-16 17:06:18 +08001888 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001889
1890 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001891 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1892 * S.M.A.R.T * and some other commands. We have to ensure that the
1893 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001894 */
1895
1896 if (speed > XFER_PIO_4) {
1897 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1898 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1899 }
1900
1901 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001902 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001903 */
1904
1905 if (t->act8b + t->rec8b < t->cyc8b) {
1906 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1907 t->rec8b = t->cyc8b - t->act8b;
1908 }
1909
1910 if (t->active + t->recover < t->cycle) {
1911 t->active += (t->cycle - (t->active + t->recover)) / 2;
1912 t->recover = t->cycle - t->active;
1913 }
1914
1915 return 0;
1916}
1917
Tejun Heocf176e12006-04-02 17:54:46 +09001918/**
1919 * ata_down_xfermask_limit - adjust dev xfer masks downward
1920 * @ap: Port associated with device @dev
1921 * @dev: Device to adjust xfer masks
1922 * @force_pio0: Force PIO0
1923 *
1924 * Adjust xfer masks of @dev downward. Note that this function
1925 * does not apply the change. Invoking ata_set_mode() afterwards
1926 * will apply the limit.
1927 *
1928 * LOCKING:
1929 * Inherited from caller.
1930 *
1931 * RETURNS:
1932 * 0 on success, negative errno on failure
1933 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001934int ata_down_xfermask_limit(struct ata_port *ap, struct ata_device *dev,
1935 int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09001936{
1937 unsigned long xfer_mask;
1938 int highbit;
1939
1940 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
1941 dev->udma_mask);
1942
1943 if (!xfer_mask)
1944 goto fail;
1945 /* don't gear down to MWDMA from UDMA, go directly to PIO */
1946 if (xfer_mask & ATA_MASK_UDMA)
1947 xfer_mask &= ~ATA_MASK_MWDMA;
1948
1949 highbit = fls(xfer_mask) - 1;
1950 xfer_mask &= ~(1 << highbit);
1951 if (force_pio0)
1952 xfer_mask &= 1 << ATA_SHIFT_PIO;
1953 if (!xfer_mask)
1954 goto fail;
1955
1956 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
1957 &dev->udma_mask);
1958
1959 printk(KERN_WARNING "ata%u: dev %u limiting speed to %s\n",
1960 ap->id, dev->devno, ata_mode_string(xfer_mask));
1961
1962 return 0;
1963
1964 fail:
1965 return -EINVAL;
1966}
1967
Tejun Heo83206a22006-03-24 15:25:31 +09001968static int ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969{
Tejun Heo83206a22006-03-24 15:25:31 +09001970 unsigned int err_mask;
1971 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Tejun Heoe8384602006-04-02 18:51:53 +09001973 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 if (dev->xfer_shift == ATA_SHIFT_PIO)
1975 dev->flags |= ATA_DFLAG_PIO;
1976
Tejun Heo83206a22006-03-24 15:25:31 +09001977 err_mask = ata_dev_set_xfermode(ap, dev);
1978 if (err_mask) {
1979 printk(KERN_ERR
1980 "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1981 ap->id, err_mask);
1982 return -EIO;
1983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Tejun Heo83206a22006-03-24 15:25:31 +09001985 rc = ata_dev_revalidate(ap, dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09001986 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09001987 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Tejun Heo23e71c32006-03-06 04:31:57 +09001989 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1990 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
Tejun Heo23e71c32006-03-06 04:31:57 +09001993 ap->id, dev->devno,
1994 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001995 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998/**
1999 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2000 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002001 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002003 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2004 * ata_set_mode() fails, pointer to the failing device is
2005 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002008 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002009 *
2010 * RETURNS:
2011 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002013int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014{
Tejun Heoe8e06192006-04-01 01:38:18 +09002015 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002016 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Tejun Heoa6d5a512006-03-06 04:31:57 +09002018 /* step 1: calculate xfer_mask */
2019 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002020 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002021
Tejun Heoe8e06192006-04-01 01:38:18 +09002022 dev = &ap->device[i];
2023
Tejun Heoe1211e32006-04-01 01:38:18 +09002024 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002025 continue;
2026
Tejun Heoacf356b2006-03-24 14:07:50 +09002027 ata_dev_xfermask(ap, dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002028
Tejun Heoacf356b2006-03-24 14:07:50 +09002029 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2030 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2031 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2032 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002033
Tejun Heo4f659772006-04-01 01:38:18 +09002034 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002035 if (dev->dma_mode)
2036 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002037 }
Tejun Heo4f659772006-04-01 01:38:18 +09002038 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002039 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002040
2041 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002042 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2043 dev = &ap->device[i];
2044 if (!ata_dev_enabled(dev))
2045 continue;
2046
2047 if (!dev->pio_mode) {
2048 printk(KERN_WARNING "ata%u: dev %u no PIO support\n",
2049 ap->id, dev->devno);
2050 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002051 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002052 }
2053
2054 dev->xfer_mode = dev->pio_mode;
2055 dev->xfer_shift = ATA_SHIFT_PIO;
2056 if (ap->ops->set_piomode)
2057 ap->ops->set_piomode(ap, dev);
2058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Tejun Heoa6d5a512006-03-06 04:31:57 +09002060 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002061 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2062 dev = &ap->device[i];
2063
2064 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2065 continue;
2066
2067 dev->xfer_mode = dev->dma_mode;
2068 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2069 if (ap->ops->set_dmamode)
2070 ap->ops->set_dmamode(ap, dev);
2071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002074 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002075 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Tejun Heoe1211e32006-04-01 01:38:18 +09002077 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002078 continue;
2079
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002080 rc = ata_dev_set_mode(ap, dev);
2081 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002082 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Tejun Heoe8e06192006-04-01 01:38:18 +09002085 /* Record simplex status. If we selected DMA then the other
2086 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002087 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002088 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2089 ap->host_set->simplex_claimed = 1;
2090
Tejun Heoe8e06192006-04-01 01:38:18 +09002091 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (ap->ops->post_set_mode)
2093 ap->ops->post_set_mode(ap);
2094
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002095 out:
2096 if (rc)
2097 *r_failed_dev = dev;
2098 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
2101/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002102 * ata_tf_to_host - issue ATA taskfile to host controller
2103 * @ap: port to which command is being issued
2104 * @tf: ATA taskfile register set
2105 *
2106 * Issues ATA taskfile register set to ATA host controller,
2107 * with proper synchronization with interrupt handler and
2108 * other threads.
2109 *
2110 * LOCKING:
2111 * spin_lock_irqsave(host_set lock)
2112 */
2113
2114static inline void ata_tf_to_host(struct ata_port *ap,
2115 const struct ata_taskfile *tf)
2116{
2117 ap->ops->tf_load(ap, tf);
2118 ap->ops->exec_command(ap, tf);
2119}
2120
2121/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 * ata_busy_sleep - sleep until BSY clears, or timeout
2123 * @ap: port containing status register to be polled
2124 * @tmout_pat: impatience timeout
2125 * @tmout: overall timeout
2126 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002127 * Sleep until ATA Status register bit BSY clears,
2128 * or a timeout occurs.
2129 *
2130 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 */
2132
Tejun Heo6f8b9952006-01-24 17:05:21 +09002133unsigned int ata_busy_sleep (struct ata_port *ap,
2134 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136 unsigned long timer_start, timeout;
2137 u8 status;
2138
2139 status = ata_busy_wait(ap, ATA_BUSY, 300);
2140 timer_start = jiffies;
2141 timeout = timer_start + tmout_pat;
2142 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2143 msleep(50);
2144 status = ata_busy_wait(ap, ATA_BUSY, 3);
2145 }
2146
2147 if (status & ATA_BUSY)
2148 printk(KERN_WARNING "ata%u is slow to respond, "
2149 "please be patient\n", ap->id);
2150
2151 timeout = timer_start + tmout;
2152 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2153 msleep(50);
2154 status = ata_chk_status(ap);
2155 }
2156
2157 if (status & ATA_BUSY) {
2158 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
2159 ap->id, tmout / HZ);
2160 return 1;
2161 }
2162
2163 return 0;
2164}
2165
2166static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2167{
2168 struct ata_ioports *ioaddr = &ap->ioaddr;
2169 unsigned int dev0 = devmask & (1 << 0);
2170 unsigned int dev1 = devmask & (1 << 1);
2171 unsigned long timeout;
2172
2173 /* if device 0 was found in ata_devchk, wait for its
2174 * BSY bit to clear
2175 */
2176 if (dev0)
2177 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2178
2179 /* if device 1 was found in ata_devchk, wait for
2180 * register access, then wait for BSY to clear
2181 */
2182 timeout = jiffies + ATA_TMOUT_BOOT;
2183 while (dev1) {
2184 u8 nsect, lbal;
2185
2186 ap->ops->dev_select(ap, 1);
2187 if (ap->flags & ATA_FLAG_MMIO) {
2188 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2189 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2190 } else {
2191 nsect = inb(ioaddr->nsect_addr);
2192 lbal = inb(ioaddr->lbal_addr);
2193 }
2194 if ((nsect == 1) && (lbal == 1))
2195 break;
2196 if (time_after(jiffies, timeout)) {
2197 dev1 = 0;
2198 break;
2199 }
2200 msleep(50); /* give drive a breather */
2201 }
2202 if (dev1)
2203 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2204
2205 /* is all this really necessary? */
2206 ap->ops->dev_select(ap, 0);
2207 if (dev1)
2208 ap->ops->dev_select(ap, 1);
2209 if (dev0)
2210 ap->ops->dev_select(ap, 0);
2211}
2212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213static unsigned int ata_bus_softreset(struct ata_port *ap,
2214 unsigned int devmask)
2215{
2216 struct ata_ioports *ioaddr = &ap->ioaddr;
2217
2218 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2219
2220 /* software reset. causes dev0 to be selected */
2221 if (ap->flags & ATA_FLAG_MMIO) {
2222 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2223 udelay(20); /* FIXME: flush */
2224 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2225 udelay(20); /* FIXME: flush */
2226 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2227 } else {
2228 outb(ap->ctl, ioaddr->ctl_addr);
2229 udelay(10);
2230 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2231 udelay(10);
2232 outb(ap->ctl, ioaddr->ctl_addr);
2233 }
2234
2235 /* spec mandates ">= 2ms" before checking status.
2236 * We wait 150ms, because that was the magic delay used for
2237 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2238 * between when the ATA command register is written, and then
2239 * status is checked. Because waiting for "a while" before
2240 * checking status is fine, post SRST, we perform this magic
2241 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002242 *
2243 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 */
2245 msleep(150);
2246
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002247 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002248 * the bus shows 0xFF because the odd clown forgets the D7
2249 * pulldown resistor.
2250 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002251 if (ata_check_status(ap) == 0xFF) {
2252 printk(KERN_ERR "ata%u: SRST failed (status 0xFF)\n", ap->id);
Tejun Heo298a41c2006-03-25 02:58:13 +09002253 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002254 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 ata_bus_post_reset(ap, devmask);
2257
2258 return 0;
2259}
2260
2261/**
2262 * ata_bus_reset - reset host port and associated ATA channel
2263 * @ap: port to reset
2264 *
2265 * This is typically the first time we actually start issuing
2266 * commands to the ATA channel. We wait for BSY to clear, then
2267 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2268 * result. Determine what devices, if any, are on the channel
2269 * by looking at the device 0/1 error register. Look at the signature
2270 * stored in each device's taskfile registers, to determine if
2271 * the device is ATA or ATAPI.
2272 *
2273 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002274 * PCI/etc. bus probe sem.
2275 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 *
2277 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002278 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 */
2280
2281void ata_bus_reset(struct ata_port *ap)
2282{
2283 struct ata_ioports *ioaddr = &ap->ioaddr;
2284 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2285 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002286 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2289
2290 /* determine if device 0/1 are present */
2291 if (ap->flags & ATA_FLAG_SATA_RESET)
2292 dev0 = 1;
2293 else {
2294 dev0 = ata_devchk(ap, 0);
2295 if (slave_possible)
2296 dev1 = ata_devchk(ap, 1);
2297 }
2298
2299 if (dev0)
2300 devmask |= (1 << 0);
2301 if (dev1)
2302 devmask |= (1 << 1);
2303
2304 /* select device 0 again */
2305 ap->ops->dev_select(ap, 0);
2306
2307 /* issue bus reset */
2308 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002309 if (ata_bus_softreset(ap, devmask))
2310 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312 /*
2313 * determine by signature whether we have ATA or ATAPI devices
2314 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002315 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002317 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 /* re-enable interrupts */
2320 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2321 ata_irq_on(ap);
2322
2323 /* is double-select really necessary? */
2324 if (ap->device[1].class != ATA_DEV_NONE)
2325 ap->ops->dev_select(ap, 1);
2326 if (ap->device[0].class != ATA_DEV_NONE)
2327 ap->ops->dev_select(ap, 0);
2328
2329 /* if no devices were detected, disable this port */
2330 if ((ap->device[0].class == ATA_DEV_NONE) &&
2331 (ap->device[1].class == ATA_DEV_NONE))
2332 goto err_out;
2333
2334 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2335 /* set up device control for ATA_FLAG_SATA_RESET */
2336 if (ap->flags & ATA_FLAG_MMIO)
2337 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2338 else
2339 outb(ap->ctl, ioaddr->ctl_addr);
2340 }
2341
2342 DPRINTK("EXIT\n");
2343 return;
2344
2345err_out:
2346 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2347 ap->ops->port_disable(ap);
2348
2349 DPRINTK("EXIT\n");
2350}
2351
Tejun Heo7a7921e2006-02-02 18:20:00 +09002352static int sata_phy_resume(struct ata_port *ap)
2353{
2354 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo852ee162006-04-01 01:38:18 +09002355 u32 scontrol, sstatus;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002356
Tejun Heo852ee162006-04-01 01:38:18 +09002357 scontrol = scr_read(ap, SCR_CONTROL);
2358 scontrol = (scontrol & 0x0f0) | 0x300;
2359 scr_write_flush(ap, SCR_CONTROL, scontrol);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002360
2361 /* Wait for phy to become ready, if necessary. */
2362 do {
2363 msleep(200);
2364 sstatus = scr_read(ap, SCR_STATUS);
2365 if ((sstatus & 0xf) != 1)
2366 return 0;
2367 } while (time_before(jiffies, timeout));
2368
2369 return -1;
2370}
2371
Tejun Heoc2bd5802006-01-24 17:05:22 +09002372/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002373 * ata_std_probeinit - initialize probing
2374 * @ap: port to be probed
2375 *
2376 * @ap is about to be probed. Initialize it. This function is
2377 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002378 *
2379 * NOTE!!! Do not use this function as probeinit if a low level
2380 * driver implements only hardreset. Just pass NULL as probeinit
2381 * in that case. Using this function is probably okay but doing
2382 * so makes reset sequence different from the original
2383 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002384 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002385void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002386{
Alan Cox17efc5f2006-03-27 19:01:32 +01002387 if ((ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002388 u32 spd;
2389
Tejun Heodb70fef2006-04-11 22:16:44 +09002390 /* set cable type and resume link */
2391 ap->cbl = ATA_CBL_SATA;
Tejun Heo8a19ac82006-02-02 18:20:00 +09002392 sata_phy_resume(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002393
Tejun Heodb70fef2006-04-11 22:16:44 +09002394 /* init sata_spd_limit to the current value */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002395 spd = (scr_read(ap, SCR_CONTROL) & 0xf0) >> 4;
2396 if (spd)
2397 ap->sata_spd_limit &= (1 << spd) - 1;
2398
Tejun Heodb70fef2006-04-11 22:16:44 +09002399 /* wait for device */
Tejun Heo3a397462006-02-10 23:58:48 +09002400 if (sata_dev_present(ap))
2401 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2402 }
Tejun Heo8a19ac82006-02-02 18:20:00 +09002403}
2404
2405/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002406 * ata_std_softreset - reset host port via ATA SRST
2407 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002408 * @classes: resulting classes of attached devices
2409 *
2410 * Reset host port using ATA SRST. This function is to be used
2411 * as standard callback for ata_drive_*_reset() functions.
2412 *
2413 * LOCKING:
2414 * Kernel thread context (may sleep)
2415 *
2416 * RETURNS:
2417 * 0 on success, -errno otherwise.
2418 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002419int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002420{
2421 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2422 unsigned int devmask = 0, err_mask;
2423 u8 err;
2424
2425 DPRINTK("ENTER\n");
2426
Tejun Heo3a397462006-02-10 23:58:48 +09002427 if (ap->ops->scr_read && !sata_dev_present(ap)) {
2428 classes[0] = ATA_DEV_NONE;
2429 goto out;
2430 }
2431
Tejun Heoc2bd5802006-01-24 17:05:22 +09002432 /* determine if device 0/1 are present */
2433 if (ata_devchk(ap, 0))
2434 devmask |= (1 << 0);
2435 if (slave_possible && ata_devchk(ap, 1))
2436 devmask |= (1 << 1);
2437
Tejun Heoc2bd5802006-01-24 17:05:22 +09002438 /* select device 0 again */
2439 ap->ops->dev_select(ap, 0);
2440
2441 /* issue bus reset */
2442 DPRINTK("about to softreset, devmask=%x\n", devmask);
2443 err_mask = ata_bus_softreset(ap, devmask);
2444 if (err_mask) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002445 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2446 ap->id, err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002447 return -EIO;
2448 }
2449
2450 /* determine by signature whether we have ATA or ATAPI devices */
2451 classes[0] = ata_dev_try_classify(ap, 0, &err);
2452 if (slave_possible && err != 0x81)
2453 classes[1] = ata_dev_try_classify(ap, 1, &err);
2454
Tejun Heo3a397462006-02-10 23:58:48 +09002455 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002456 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2457 return 0;
2458}
2459
2460/**
2461 * sata_std_hardreset - reset host port via SATA phy reset
2462 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002463 * @class: resulting class of attached device
2464 *
2465 * SATA phy-reset host port using DET bits of SControl register.
2466 * This function is to be used as standard callback for
2467 * ata_drive_*_reset().
2468 *
2469 * LOCKING:
2470 * Kernel thread context (may sleep)
2471 *
2472 * RETURNS:
2473 * 0 on success, -errno otherwise.
2474 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002475int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002476{
Tejun Heo852ee162006-04-01 01:38:18 +09002477 u32 scontrol;
2478
Tejun Heoc2bd5802006-01-24 17:05:22 +09002479 DPRINTK("ENTER\n");
2480
Tejun Heo1c3fae42006-04-02 20:53:28 +09002481 if (ata_set_sata_spd_needed(ap)) {
2482 /* SATA spec says nothing about how to reconfigure
2483 * spd. To be on the safe side, turn off phy during
2484 * reconfiguration. This works for at least ICH7 AHCI
2485 * and Sil3124.
2486 */
2487 scontrol = scr_read(ap, SCR_CONTROL);
2488 scontrol = (scontrol & 0x0f0) | 0x302;
2489 scr_write_flush(ap, SCR_CONTROL, scontrol);
2490
2491 ata_set_sata_spd(ap);
2492 }
2493
2494 /* issue phy wake/reset */
Tejun Heo852ee162006-04-01 01:38:18 +09002495 scontrol = scr_read(ap, SCR_CONTROL);
2496 scontrol = (scontrol & 0x0f0) | 0x301;
2497 scr_write_flush(ap, SCR_CONTROL, scontrol);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002498
Tejun Heo1c3fae42006-04-02 20:53:28 +09002499 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002500 * 10.4.2 says at least 1 ms.
2501 */
2502 msleep(1);
2503
Tejun Heo1c3fae42006-04-02 20:53:28 +09002504 /* bring phy back */
Tejun Heo7a7921e2006-02-02 18:20:00 +09002505 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002506
Tejun Heoc2bd5802006-01-24 17:05:22 +09002507 /* TODO: phy layer with polling, timeouts, etc. */
2508 if (!sata_dev_present(ap)) {
2509 *class = ATA_DEV_NONE;
2510 DPRINTK("EXIT, link offline\n");
2511 return 0;
2512 }
2513
2514 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heo987d2f02006-04-11 22:16:45 +09002515 printk(KERN_ERR
2516 "ata%u: COMRESET failed (device not ready)\n", ap->id);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002517 return -EIO;
2518 }
2519
Tejun Heo3a397462006-02-10 23:58:48 +09002520 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2521
Tejun Heoc2bd5802006-01-24 17:05:22 +09002522 *class = ata_dev_try_classify(ap, 0, NULL);
2523
2524 DPRINTK("EXIT, class=%u\n", *class);
2525 return 0;
2526}
2527
2528/**
2529 * ata_std_postreset - standard postreset callback
2530 * @ap: the target ata_port
2531 * @classes: classes of attached devices
2532 *
2533 * This function is invoked after a successful reset. Note that
2534 * the device might have been reset more than once using
2535 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002536 *
2537 * This function is to be used as standard callback for
2538 * ata_drive_*_reset().
2539 *
2540 * LOCKING:
2541 * Kernel thread context (may sleep)
2542 */
2543void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2544{
2545 DPRINTK("ENTER\n");
2546
Tejun Heoc2bd5802006-01-24 17:05:22 +09002547 /* print link status */
2548 if (ap->cbl == ATA_CBL_SATA)
2549 sata_print_link_status(ap);
2550
Tejun Heo3a397462006-02-10 23:58:48 +09002551 /* re-enable interrupts */
2552 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2553 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002554
2555 /* is double-select really necessary? */
2556 if (classes[0] != ATA_DEV_NONE)
2557 ap->ops->dev_select(ap, 1);
2558 if (classes[1] != ATA_DEV_NONE)
2559 ap->ops->dev_select(ap, 0);
2560
Tejun Heo3a397462006-02-10 23:58:48 +09002561 /* bail out if no device is present */
2562 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2563 DPRINTK("EXIT, no device\n");
2564 return;
2565 }
2566
2567 /* set up device control */
2568 if (ap->ioaddr.ctl_addr) {
2569 if (ap->flags & ATA_FLAG_MMIO)
2570 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2571 else
2572 outb(ap->ctl, ap->ioaddr.ctl_addr);
2573 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002574
2575 DPRINTK("EXIT\n");
2576}
2577
2578/**
2579 * ata_std_probe_reset - standard probe reset method
2580 * @ap: prot to perform probe-reset
2581 * @classes: resulting classes of attached devices
2582 *
2583 * The stock off-the-shelf ->probe_reset method.
2584 *
2585 * LOCKING:
2586 * Kernel thread context (may sleep)
2587 *
2588 * RETURNS:
2589 * 0 on success, -errno otherwise.
2590 */
2591int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2592{
2593 ata_reset_fn_t hardreset;
2594
2595 hardreset = NULL;
Tejun Heodb70fef2006-04-11 22:16:44 +09002596 if (ap->cbl == ATA_CBL_SATA && ap->ops->scr_read)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002597 hardreset = sata_std_hardreset;
2598
Tejun Heo8a19ac82006-02-02 18:20:00 +09002599 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002600 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002601 ata_std_postreset, classes);
2602}
2603
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002604int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
2605 ata_postreset_fn_t postreset, unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002606{
2607 int i, rc;
2608
2609 for (i = 0; i < ATA_MAX_DEVICES; i++)
2610 classes[i] = ATA_DEV_UNKNOWN;
2611
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002612 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002613 if (rc)
2614 return rc;
2615
2616 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2617 * is complete and convert all ATA_DEV_UNKNOWN to
2618 * ATA_DEV_NONE.
2619 */
2620 for (i = 0; i < ATA_MAX_DEVICES; i++)
2621 if (classes[i] != ATA_DEV_UNKNOWN)
2622 break;
2623
2624 if (i < ATA_MAX_DEVICES)
2625 for (i = 0; i < ATA_MAX_DEVICES; i++)
2626 if (classes[i] == ATA_DEV_UNKNOWN)
2627 classes[i] = ATA_DEV_NONE;
2628
2629 if (postreset)
2630 postreset(ap, classes);
2631
Tejun Heo9974e7c2006-04-01 01:38:17 +09002632 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002633}
2634
2635/**
2636 * ata_drive_probe_reset - Perform probe reset with given methods
2637 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002638 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002639 * @softreset: softreset method (can be NULL)
2640 * @hardreset: hardreset method (can be NULL)
2641 * @postreset: postreset method (can be NULL)
2642 * @classes: resulting classes of attached devices
2643 *
2644 * Reset the specified port and classify attached devices using
2645 * given methods. This function prefers softreset but tries all
2646 * possible reset sequences to reset and classify devices. This
2647 * function is intended to be used for constructing ->probe_reset
2648 * callback by low level drivers.
2649 *
2650 * Reset methods should follow the following rules.
2651 *
2652 * - Return 0 on sucess, -errno on failure.
2653 * - If classification is supported, fill classes[] with
2654 * recognized class codes.
2655 * - If classification is not supported, leave classes[] alone.
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002656 *
2657 * LOCKING:
2658 * Kernel thread context (may sleep)
2659 *
2660 * RETURNS:
2661 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2662 * if classification fails, and any error code from reset
2663 * methods.
2664 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002665int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002666 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2667 ata_postreset_fn_t postreset, unsigned int *classes)
2668{
2669 int rc = -EINVAL;
2670
Tejun Heo7944ea92006-02-02 18:20:00 +09002671 if (probeinit)
2672 probeinit(ap);
2673
Tejun Heo90dac022006-04-02 17:54:46 +09002674 if (softreset && !ata_set_sata_spd_needed(ap)) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002675 rc = ata_do_reset(ap, softreset, postreset, classes);
Tejun Heo9974e7c2006-04-01 01:38:17 +09002676 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2677 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002678 printk(KERN_INFO "ata%u: softreset failed, will try "
2679 "hardreset in 5 secs\n", ap->id);
2680 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002681 }
2682
2683 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002684 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002685
Tejun Heo90dac022006-04-02 17:54:46 +09002686 while (1) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002687 rc = ata_do_reset(ap, hardreset, postreset, classes);
Tejun Heo90dac022006-04-02 17:54:46 +09002688 if (rc == 0) {
2689 if (classes[0] != ATA_DEV_UNKNOWN)
2690 goto done;
2691 break;
2692 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002693
Tejun Heo90dac022006-04-02 17:54:46 +09002694 if (ata_down_sata_spd_limit(ap))
2695 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002696
2697 printk(KERN_INFO "ata%u: hardreset failed, will retry "
2698 "in 5 secs\n", ap->id);
2699 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002700 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002701
Tejun Heoedbabd82006-04-02 20:55:02 +09002702 if (softreset) {
2703 printk(KERN_INFO "ata%u: hardreset succeeded without "
2704 "classification, will retry softreset in 5 secs\n",
2705 ap->id);
2706 ssleep(5);
2707
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002708 rc = ata_do_reset(ap, softreset, postreset, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002709 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002710
Tejun Heo9974e7c2006-04-01 01:38:17 +09002711 done:
2712 if (rc == 0 && classes[0] == ATA_DEV_UNKNOWN)
2713 rc = -ENODEV;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002714 return rc;
2715}
2716
Tejun Heo623a3122006-03-05 17:55:58 +09002717/**
2718 * ata_dev_same_device - Determine whether new ID matches configured device
2719 * @ap: port on which the device to compare against resides
2720 * @dev: device to compare against
2721 * @new_class: class of the new device
2722 * @new_id: IDENTIFY page of the new device
2723 *
2724 * Compare @new_class and @new_id against @dev and determine
2725 * whether @dev is the device indicated by @new_class and
2726 * @new_id.
2727 *
2728 * LOCKING:
2729 * None.
2730 *
2731 * RETURNS:
2732 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2733 */
2734static int ata_dev_same_device(struct ata_port *ap, struct ata_device *dev,
2735 unsigned int new_class, const u16 *new_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
Tejun Heo623a3122006-03-05 17:55:58 +09002737 const u16 *old_id = dev->id;
2738 unsigned char model[2][41], serial[2][21];
2739 u64 new_n_sectors;
2740
2741 if (dev->class != new_class) {
2742 printk(KERN_INFO
2743 "ata%u: dev %u class mismatch %d != %d\n",
2744 ap->id, dev->devno, dev->class, new_class);
2745 return 0;
2746 }
2747
2748 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2749 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2750 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2751 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2752 new_n_sectors = ata_id_n_sectors(new_id);
2753
2754 if (strcmp(model[0], model[1])) {
2755 printk(KERN_INFO
2756 "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2757 ap->id, dev->devno, model[0], model[1]);
2758 return 0;
2759 }
2760
2761 if (strcmp(serial[0], serial[1])) {
2762 printk(KERN_INFO
2763 "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2764 ap->id, dev->devno, serial[0], serial[1]);
2765 return 0;
2766 }
2767
2768 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2769 printk(KERN_INFO
2770 "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2771 ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2772 (unsigned long long)new_n_sectors);
2773 return 0;
2774 }
2775
2776 return 1;
2777}
2778
2779/**
2780 * ata_dev_revalidate - Revalidate ATA device
2781 * @ap: port on which the device to revalidate resides
2782 * @dev: device to revalidate
2783 * @post_reset: is this revalidation after reset?
2784 *
2785 * Re-read IDENTIFY page and make sure @dev is still attached to
2786 * the port.
2787 *
2788 * LOCKING:
2789 * Kernel thread context (may sleep)
2790 *
2791 * RETURNS:
2792 * 0 on success, negative errno otherwise
2793 */
2794int ata_dev_revalidate(struct ata_port *ap, struct ata_device *dev,
2795 int post_reset)
2796{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002797 unsigned int class = dev->class;
2798 u16 *id = NULL;
Tejun Heo623a3122006-03-05 17:55:58 +09002799 int rc;
2800
Tejun Heo5eb45c02006-04-02 18:51:52 +09002801 if (!ata_dev_enabled(dev)) {
2802 rc = -ENODEV;
2803 goto fail;
2804 }
Tejun Heo623a3122006-03-05 17:55:58 +09002805
2806 /* allocate & read ID data */
2807 rc = ata_dev_read_id(ap, dev, &class, post_reset, &id);
2808 if (rc)
2809 goto fail;
2810
2811 /* is the device still there? */
2812 if (!ata_dev_same_device(ap, dev, class, id)) {
2813 rc = -ENODEV;
2814 goto fail;
2815 }
2816
2817 kfree(dev->id);
2818 dev->id = id;
2819
2820 /* configure device according to the new ID */
Tejun Heo5eb45c02006-04-02 18:51:52 +09002821 rc = ata_dev_configure(ap, dev, 0);
2822 if (rc == 0)
2823 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002824
2825 fail:
2826 printk(KERN_ERR "ata%u: dev %u revalidation failed (errno=%d)\n",
2827 ap->id, dev->devno, rc);
2828 kfree(id);
2829 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830}
2831
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002832static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002833 "WDC AC11000H", NULL,
2834 "WDC AC22100H", NULL,
2835 "WDC AC32500H", NULL,
2836 "WDC AC33100H", NULL,
2837 "WDC AC31600H", NULL,
2838 "WDC AC32100H", "24.09P07",
2839 "WDC AC23200L", "21.10N21",
2840 "Compaq CRD-8241B", NULL,
2841 "CRD-8400B", NULL,
2842 "CRD-8480B", NULL,
2843 "CRD-8482B", NULL,
2844 "CRD-84", NULL,
2845 "SanDisk SDP3B", NULL,
2846 "SanDisk SDP3B-64", NULL,
2847 "SANYO CD-ROM CRD", NULL,
2848 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002849 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002850 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002851 "Toshiba CD-ROM XM-6202B", NULL,
2852 "TOSHIBA CD-ROM XM-1702BC", NULL,
2853 "CD-532E-A", NULL,
2854 "E-IDE CD-ROM CR-840", NULL,
2855 "CD-ROM Drive/F5A", NULL,
2856 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002857 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002858 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002859 "SanDisk SDP3B-64", NULL,
2860 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2861 "_NEC DV5800A", NULL,
2862 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002864
Alan Coxf4b15fe2006-03-22 15:54:04 +00002865static int ata_strim(char *s, size_t len)
2866{
2867 len = strnlen(s, len);
2868
2869 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2870 while ((len > 0) && (s[len - 1] == ' ')) {
2871 len--;
2872 s[len] = 0;
2873 }
2874 return len;
2875}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Jeff Garzik057ace52005-10-22 14:27:05 -04002877static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002879 unsigned char model_num[40];
2880 unsigned char model_rev[16];
2881 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 int i;
2883
Alan Coxf4b15fe2006-03-22 15:54:04 +00002884 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2885 sizeof(model_num));
2886 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2887 sizeof(model_rev));
2888 nlen = ata_strim(model_num, sizeof(model_num));
2889 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Alan Coxf4b15fe2006-03-22 15:54:04 +00002891 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2892 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2893 if (ata_dma_blacklist[i+1] == NULL)
2894 return 1;
2895 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2896 return 1;
2897 }
2898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 return 0;
2900}
2901
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09002903 * ata_dev_xfermask - Compute supported xfermask of the given device
2904 * @ap: Port on which the device to compute xfermask for resides
2905 * @dev: Device to compute xfermask for
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002907 * Compute supported xfermask of @dev and store it in
2908 * dev->*_mask. This function is responsible for applying all
2909 * known limits including host controller limits, device
2910 * blacklist, etc...
Jeff Garzik0cba6322005-05-30 19:49:12 -04002911 *
Tejun Heo600511e2006-03-25 11:14:07 +09002912 * FIXME: The current implementation limits all transfer modes to
2913 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002914 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002915 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 * LOCKING:
Tejun Heoa6d5a512006-03-06 04:31:57 +09002917 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 */
Tejun Heoacf356b2006-03-24 14:07:50 +09002919static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920{
Alan Cox5444a6f2006-03-27 18:58:20 +01002921 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002922 unsigned long xfer_mask;
2923 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Tejun Heo565083e2006-04-02 17:54:47 +09002925 xfer_mask = ata_pack_xfermask(ap->pio_mask,
2926 ap->mwdma_mask, ap->udma_mask);
2927
2928 /* Apply cable rule here. Don't apply it early because when
2929 * we handle hot plug the cable type can itself change.
2930 */
2931 if (ap->cbl == ATA_CBL_PATA40)
2932 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Alan Cox5444a6f2006-03-27 18:58:20 +01002934 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002935 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2936 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09002937
2938 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002939 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09002940
2941 if (ata_dev_disabled(d)) {
2942 /* to avoid violating device selection timing */
2943 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2944 UINT_MAX, UINT_MAX);
2945 continue;
2946 }
2947
2948 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2949 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002950 xfer_mask &= ata_id_xfermask(d->id);
2951 if (ata_dma_blacklisted(d))
2952 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 }
2954
Tejun Heoa6d5a512006-03-06 04:31:57 +09002955 if (ata_dma_blacklisted(dev))
2956 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2957 "disabling DMA\n", ap->id, dev->devno);
2958
Alan Cox5444a6f2006-03-27 18:58:20 +01002959 if (hs->flags & ATA_HOST_SIMPLEX) {
2960 if (hs->simplex_claimed)
2961 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2962 }
Tejun Heo565083e2006-04-02 17:54:47 +09002963
Alan Cox5444a6f2006-03-27 18:58:20 +01002964 if (ap->ops->mode_filter)
2965 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
2966
Tejun Heo565083e2006-04-02 17:54:47 +09002967 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
2968 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969}
2970
2971/**
2972 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2973 * @ap: Port associated with device @dev
2974 * @dev: Device to which command will be sent
2975 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002976 * Issue SET FEATURES - XFER MODE command to device @dev
2977 * on port @ap.
2978 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002980 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002981 *
2982 * RETURNS:
2983 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 */
2985
Tejun Heo83206a22006-03-24 15:25:31 +09002986static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
2987 struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988{
Tejun Heoa0123702005-12-13 14:49:31 +09002989 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002990 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
2992 /* set up set-features taskfile */
2993 DPRINTK("set features - xfer mode\n");
2994
Tejun Heoa0123702005-12-13 14:49:31 +09002995 ata_tf_init(ap, &tf, dev->devno);
2996 tf.command = ATA_CMD_SET_FEATURES;
2997 tf.feature = SETFEATURES_XFER;
2998 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2999 tf.protocol = ATA_PROT_NODATA;
3000 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Tejun Heod69cf372006-04-02 18:51:53 +09003002 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Tejun Heo83206a22006-03-24 15:25:31 +09003004 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3005 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006}
3007
3008/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04003009 * ata_dev_init_params - Issue INIT DEV PARAMS command
3010 * @ap: Port associated with device @dev
3011 * @dev: Device to which command will be sent
3012 *
3013 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003014 * Kernel thread context (may sleep)
3015 *
3016 * RETURNS:
3017 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003018 */
3019
Tejun Heo6aff8f12006-02-15 18:24:09 +09003020static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +08003021 struct ata_device *dev,
3022 u16 heads,
3023 u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003024{
Tejun Heoa0123702005-12-13 14:49:31 +09003025 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003026 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003027
3028 /* Number of sectors per track 1-255. Number of heads 1-16 */
3029 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003030 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003031
3032 /* set up init dev params taskfile */
3033 DPRINTK("init dev params \n");
3034
Tejun Heoa0123702005-12-13 14:49:31 +09003035 ata_tf_init(ap, &tf, dev->devno);
3036 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3037 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3038 tf.protocol = ATA_PROT_NODATA;
3039 tf.nsect = sectors;
3040 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003041
Tejun Heod69cf372006-04-02 18:51:53 +09003042 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003043
Tejun Heo6aff8f12006-02-15 18:24:09 +09003044 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3045 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003046}
3047
3048/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003049 * ata_sg_clean - Unmap DMA memory associated with command
3050 * @qc: Command containing DMA memory to be released
3051 *
3052 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 *
3054 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003055 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 */
3057
3058static void ata_sg_clean(struct ata_queued_cmd *qc)
3059{
3060 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003061 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003063 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
Tejun Heoa4631472006-02-11 19:11:13 +09003065 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3066 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
3068 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003069 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003071 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003073 /* if we padded the buffer out to 32-bit bound, and data
3074 * xfer direction is from-device, we must copy from the
3075 * pad buffer back into the supplied buffer
3076 */
3077 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3078 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3079
3080 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003081 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003082 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003083 /* restore last sg */
3084 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3085 if (pad_buf) {
3086 struct scatterlist *psg = &qc->pad_sgent;
3087 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3088 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003089 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003090 }
3091 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003092 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003093 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003094 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3095 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003096 /* restore sg */
3097 sg->length += qc->pad_len;
3098 if (pad_buf)
3099 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3100 pad_buf, qc->pad_len);
3101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
3103 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003104 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105}
3106
3107/**
3108 * ata_fill_sg - Fill PCI IDE PRD table
3109 * @qc: Metadata associated with taskfile to be transferred
3110 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003111 * Fill PCI IDE PRD (scatter-gather) table with segments
3112 * associated with the current disk command.
3113 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003115 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 *
3117 */
3118static void ata_fill_sg(struct ata_queued_cmd *qc)
3119{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003121 struct scatterlist *sg;
3122 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Tejun Heoa4631472006-02-11 19:11:13 +09003124 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003125 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
3127 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003128 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 u32 addr, offset;
3130 u32 sg_len, len;
3131
3132 /* determine if physical DMA addr spans 64K boundary.
3133 * Note h/w doesn't support 64-bit, so we unconditionally
3134 * truncate dma_addr_t to u32.
3135 */
3136 addr = (u32) sg_dma_address(sg);
3137 sg_len = sg_dma_len(sg);
3138
3139 while (sg_len) {
3140 offset = addr & 0xffff;
3141 len = sg_len;
3142 if ((offset + sg_len) > 0x10000)
3143 len = 0x10000 - offset;
3144
3145 ap->prd[idx].addr = cpu_to_le32(addr);
3146 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3147 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3148
3149 idx++;
3150 sg_len -= len;
3151 addr += len;
3152 }
3153 }
3154
3155 if (idx)
3156 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3157}
3158/**
3159 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3160 * @qc: Metadata associated with taskfile to check
3161 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003162 * Allow low-level driver to filter ATA PACKET commands, returning
3163 * a status indicating whether or not it is OK to use DMA for the
3164 * supplied PACKET command.
3165 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003167 * spin_lock_irqsave(host_set lock)
3168 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 * RETURNS: 0 when ATAPI DMA can be used
3170 * nonzero otherwise
3171 */
3172int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3173{
3174 struct ata_port *ap = qc->ap;
3175 int rc = 0; /* Assume ATAPI DMA is OK by default */
3176
3177 if (ap->ops->check_atapi_dma)
3178 rc = ap->ops->check_atapi_dma(qc);
3179
Albert Leec2bbc552006-03-25 17:56:55 +08003180 /* We don't support polling DMA.
3181 * Use PIO if the LLDD handles only interrupts in
3182 * the HSM_ST_LAST state and the ATAPI device
3183 * generates CDB interrupts.
3184 */
3185 if ((ap->flags & ATA_FLAG_PIO_POLLING) &&
3186 (qc->dev->flags & ATA_DFLAG_CDB_INTR))
3187 rc = 1;
3188
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 return rc;
3190}
3191/**
3192 * ata_qc_prep - Prepare taskfile for submission
3193 * @qc: Metadata associated with taskfile to be prepared
3194 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003195 * Prepare ATA taskfile for submission.
3196 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 * LOCKING:
3198 * spin_lock_irqsave(host_set lock)
3199 */
3200void ata_qc_prep(struct ata_queued_cmd *qc)
3201{
3202 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3203 return;
3204
3205 ata_fill_sg(qc);
3206}
3207
Brian Kinge46834c2006-03-17 17:04:03 -06003208void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3209
Jeff Garzik0cba6322005-05-30 19:49:12 -04003210/**
3211 * ata_sg_init_one - Associate command with memory buffer
3212 * @qc: Command to be associated
3213 * @buf: Memory buffer
3214 * @buflen: Length of memory buffer, in bytes.
3215 *
3216 * Initialize the data-related elements of queued_cmd @qc
3217 * to point to a single memory buffer, @buf of byte length @buflen.
3218 *
3219 * LOCKING:
3220 * spin_lock_irqsave(host_set lock)
3221 */
3222
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3224{
3225 struct scatterlist *sg;
3226
3227 qc->flags |= ATA_QCFLAG_SINGLE;
3228
3229 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003230 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003232 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 qc->buf_virt = buf;
3234
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003235 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003236 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237}
3238
Jeff Garzik0cba6322005-05-30 19:49:12 -04003239/**
3240 * ata_sg_init - Associate command with scatter-gather table.
3241 * @qc: Command to be associated
3242 * @sg: Scatter-gather table.
3243 * @n_elem: Number of elements in s/g table.
3244 *
3245 * Initialize the data-related elements of queued_cmd @qc
3246 * to point to a scatter-gather table @sg, containing @n_elem
3247 * elements.
3248 *
3249 * LOCKING:
3250 * spin_lock_irqsave(host_set lock)
3251 */
3252
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3254 unsigned int n_elem)
3255{
3256 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003257 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003259 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260}
3261
3262/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003263 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3264 * @qc: Command with memory buffer to be mapped.
3265 *
3266 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 *
3268 * LOCKING:
3269 * spin_lock_irqsave(host_set lock)
3270 *
3271 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003272 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 */
3274
3275static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3276{
3277 struct ata_port *ap = qc->ap;
3278 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003279 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003281 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003283 /* we must lengthen transfers to end on a 32-bit boundary */
3284 qc->pad_len = sg->length & 3;
3285 if (qc->pad_len) {
3286 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3287 struct scatterlist *psg = &qc->pad_sgent;
3288
Tejun Heoa4631472006-02-11 19:11:13 +09003289 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003290
3291 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3292
3293 if (qc->tf.flags & ATA_TFLAG_WRITE)
3294 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3295 qc->pad_len);
3296
3297 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3298 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3299 /* trim sg */
3300 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003301 if (sg->length == 0)
3302 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003303
3304 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3305 sg->length, qc->pad_len);
3306 }
3307
Tejun Heo2e242fa2006-02-20 23:48:38 +09003308 if (trim_sg) {
3309 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003310 goto skip_map;
3311 }
3312
Brian King2f1f6102006-03-23 17:30:15 -06003313 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003314 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003315 if (dma_mapping_error(dma_address)) {
3316 /* restore sg */
3317 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
3321 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003322 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Tejun Heo2e242fa2006-02-20 23:48:38 +09003324skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3326 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3327
3328 return 0;
3329}
3330
3331/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003332 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3333 * @qc: Command with scatter-gather table to be mapped.
3334 *
3335 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 *
3337 * LOCKING:
3338 * spin_lock_irqsave(host_set lock)
3339 *
3340 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003341 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 *
3343 */
3344
3345static int ata_sg_setup(struct ata_queued_cmd *qc)
3346{
3347 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003348 struct scatterlist *sg = qc->__sg;
3349 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003350 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
3352 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003353 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003355 /* we must lengthen transfers to end on a 32-bit boundary */
3356 qc->pad_len = lsg->length & 3;
3357 if (qc->pad_len) {
3358 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3359 struct scatterlist *psg = &qc->pad_sgent;
3360 unsigned int offset;
3361
Tejun Heoa4631472006-02-11 19:11:13 +09003362 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003363
3364 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3365
3366 /*
3367 * psg->page/offset are used to copy to-be-written
3368 * data in this function or read data in ata_sg_clean.
3369 */
3370 offset = lsg->offset + lsg->length - qc->pad_len;
3371 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3372 psg->offset = offset_in_page(offset);
3373
3374 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3375 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3376 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003377 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003378 }
3379
3380 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3381 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3382 /* trim last sg */
3383 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003384 if (lsg->length == 0)
3385 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003386
3387 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3388 qc->n_elem - 1, lsg->length, qc->pad_len);
3389 }
3390
Jeff Garzike1410f22005-11-14 14:06:26 -05003391 pre_n_elem = qc->n_elem;
3392 if (trim_sg && pre_n_elem)
3393 pre_n_elem--;
3394
3395 if (!pre_n_elem) {
3396 n_elem = 0;
3397 goto skip_map;
3398 }
3399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003401 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003402 if (n_elem < 1) {
3403 /* restore last sg */
3404 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
3408 DPRINTK("%d sg elements mapped\n", n_elem);
3409
Jeff Garzike1410f22005-11-14 14:06:26 -05003410skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 qc->n_elem = n_elem;
3412
3413 return 0;
3414}
3415
3416/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003417 * ata_poll_qc_complete - turn irq back on and finish qc
3418 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003419 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003420 *
3421 * LOCKING:
3422 * None. (grabs host lock)
3423 */
3424
Albert Leea22e2eb2005-12-05 15:38:02 +08003425void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003426{
3427 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003428 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003429
Jeff Garzikb8f61532005-08-25 22:01:20 -04003430 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003431 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003432 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003433 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003434}
3435
3436/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003437 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003438 * @buf: Buffer to swap
3439 * @buf_words: Number of 16-bit words in buffer.
3440 *
3441 * Swap halves of 16-bit words if needed to convert from
3442 * little-endian byte order to native cpu byte order, or
3443 * vice-versa.
3444 *
3445 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003446 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003447 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448void swap_buf_le16(u16 *buf, unsigned int buf_words)
3449{
3450#ifdef __BIG_ENDIAN
3451 unsigned int i;
3452
3453 for (i = 0; i < buf_words; i++)
3454 buf[i] = le16_to_cpu(buf[i]);
3455#endif /* __BIG_ENDIAN */
3456}
3457
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003458/**
3459 * ata_mmio_data_xfer - Transfer data by MMIO
3460 * @ap: port to read/write
3461 * @buf: data buffer
3462 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003463 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003464 *
3465 * Transfer data from/to the device data register by MMIO.
3466 *
3467 * LOCKING:
3468 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003469 */
3470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3472 unsigned int buflen, int write_data)
3473{
3474 unsigned int i;
3475 unsigned int words = buflen >> 1;
3476 u16 *buf16 = (u16 *) buf;
3477 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3478
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003479 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 if (write_data) {
3481 for (i = 0; i < words; i++)
3482 writew(le16_to_cpu(buf16[i]), mmio);
3483 } else {
3484 for (i = 0; i < words; i++)
3485 buf16[i] = cpu_to_le16(readw(mmio));
3486 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003487
3488 /* Transfer trailing 1 byte, if any. */
3489 if (unlikely(buflen & 0x01)) {
3490 u16 align_buf[1] = { 0 };
3491 unsigned char *trailing_buf = buf + buflen - 1;
3492
3493 if (write_data) {
3494 memcpy(align_buf, trailing_buf, 1);
3495 writew(le16_to_cpu(align_buf[0]), mmio);
3496 } else {
3497 align_buf[0] = cpu_to_le16(readw(mmio));
3498 memcpy(trailing_buf, align_buf, 1);
3499 }
3500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501}
3502
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003503/**
3504 * ata_pio_data_xfer - Transfer data by PIO
3505 * @ap: port to read/write
3506 * @buf: data buffer
3507 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003508 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003509 *
3510 * Transfer data from/to the device data register by PIO.
3511 *
3512 * LOCKING:
3513 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003514 */
3515
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3517 unsigned int buflen, int write_data)
3518{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003519 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003521 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003523 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003525 insw(ap->ioaddr.data_addr, buf, words);
3526
3527 /* Transfer trailing 1 byte, if any. */
3528 if (unlikely(buflen & 0x01)) {
3529 u16 align_buf[1] = { 0 };
3530 unsigned char *trailing_buf = buf + buflen - 1;
3531
3532 if (write_data) {
3533 memcpy(align_buf, trailing_buf, 1);
3534 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3535 } else {
3536 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3537 memcpy(trailing_buf, align_buf, 1);
3538 }
3539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540}
3541
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003542/**
3543 * ata_data_xfer - Transfer data from/to the data register.
3544 * @ap: port to read/write
3545 * @buf: data buffer
3546 * @buflen: buffer length
3547 * @do_write: read/write
3548 *
3549 * Transfer data from/to the device data register.
3550 *
3551 * LOCKING:
3552 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003553 */
3554
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3556 unsigned int buflen, int do_write)
3557{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003558 /* Make the crap hardware pay the costs not the good stuff */
3559 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3560 unsigned long flags;
3561 local_irq_save(flags);
3562 if (ap->flags & ATA_FLAG_MMIO)
3563 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3564 else
3565 ata_pio_data_xfer(ap, buf, buflen, do_write);
3566 local_irq_restore(flags);
3567 } else {
3568 if (ap->flags & ATA_FLAG_MMIO)
3569 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3570 else
3571 ata_pio_data_xfer(ap, buf, buflen, do_write);
3572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573}
3574
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003575/**
3576 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3577 * @qc: Command on going
3578 *
3579 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3580 *
3581 * LOCKING:
3582 * Inherited from caller.
3583 */
3584
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585static void ata_pio_sector(struct ata_queued_cmd *qc)
3586{
3587 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003588 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 struct ata_port *ap = qc->ap;
3590 struct page *page;
3591 unsigned int offset;
3592 unsigned char *buf;
3593
3594 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003595 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
3597 page = sg[qc->cursg].page;
3598 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3599
3600 /* get the current page and offset */
3601 page = nth_page(page, (offset >> PAGE_SHIFT));
3602 offset %= PAGE_SIZE;
3603
Albert Lee7282aa42005-10-09 09:46:07 -04003604 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3605
Albert Lee91b8b312005-10-09 09:48:44 -04003606 if (PageHighMem(page)) {
3607 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003608
Albert Lee91b8b312005-10-09 09:48:44 -04003609 local_irq_save(flags);
3610 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003611
Albert Lee91b8b312005-10-09 09:48:44 -04003612 /* do the actual data transfer */
3613 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3614
3615 kunmap_atomic(buf, KM_IRQ0);
3616 local_irq_restore(flags);
3617 } else {
3618 buf = page_address(page);
3619 ata_data_xfer(ap, buf + offset, ATA_SECT_SIZE, do_write);
3620 }
Albert Lee7282aa42005-10-09 09:46:07 -04003621
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 qc->cursect++;
3623 qc->cursg_ofs++;
3624
Albert Lee32529e02005-05-26 03:49:42 -04003625 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 qc->cursg++;
3627 qc->cursg_ofs = 0;
3628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629}
3630
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003631/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003632 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3633 * @qc: Command on going
3634 *
3635 * Transfer one or many ATA_SECT_SIZE of data from/to the
3636 * ATA device for the DRQ request.
3637 *
3638 * LOCKING:
3639 * Inherited from caller.
3640 */
3641
3642static void ata_pio_sectors(struct ata_queued_cmd *qc)
3643{
3644 if (is_multi_taskfile(&qc->tf)) {
3645 /* READ/WRITE MULTIPLE */
3646 unsigned int nsect;
3647
Jeff Garzik587005d2006-02-11 18:17:32 -05003648 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003649
3650 nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count);
3651 while (nsect--)
3652 ata_pio_sector(qc);
3653 } else
3654 ata_pio_sector(qc);
3655}
3656
3657/**
Albert Leec71c1852005-10-04 06:03:45 -04003658 * atapi_send_cdb - Write CDB bytes to hardware
3659 * @ap: Port to which ATAPI device is attached.
3660 * @qc: Taskfile currently active
3661 *
3662 * When device has indicated its readiness to accept
3663 * a CDB, this function is called. Send the CDB.
3664 *
3665 * LOCKING:
3666 * caller.
3667 */
3668
3669static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3670{
3671 /* send SCSI cdb */
3672 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003673 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003674
Jeff Garzikdb024d52006-02-13 00:23:57 -05003675 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003676 ata_altstatus(ap); /* flush */
3677
3678 switch (qc->tf.protocol) {
3679 case ATA_PROT_ATAPI:
3680 ap->hsm_task_state = HSM_ST;
3681 break;
3682 case ATA_PROT_ATAPI_NODATA:
3683 ap->hsm_task_state = HSM_ST_LAST;
3684 break;
3685 case ATA_PROT_ATAPI_DMA:
3686 ap->hsm_task_state = HSM_ST_LAST;
3687 /* initiate bmdma */
3688 ap->ops->bmdma_start(qc);
3689 break;
3690 }
3691}
3692
3693/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003694 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3695 * @qc: Command on going
3696 * @bytes: number of bytes
3697 *
3698 * Transfer Transfer data from/to the ATAPI device.
3699 *
3700 * LOCKING:
3701 * Inherited from caller.
3702 *
3703 */
3704
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3706{
3707 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003708 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 struct ata_port *ap = qc->ap;
3710 struct page *page;
3711 unsigned char *buf;
3712 unsigned int offset, count;
3713
Albert Lee563a6e12005-08-12 14:17:50 +08003714 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003715 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716
3717next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003718 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003719 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003720 * The end of qc->sg is reached and the device expects
3721 * more data to transfer. In order not to overrun qc->sg
3722 * and fulfill length specified in the byte count register,
3723 * - for read case, discard trailing data from the device
3724 * - for write case, padding zero data to the device
3725 */
3726 u16 pad_buf[1] = { 0 };
3727 unsigned int words = bytes >> 1;
3728 unsigned int i;
3729
3730 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003731 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003732 ap->id, bytes);
3733
3734 for (i = 0; i < words; i++)
3735 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3736
Albert Lee14be71f2005-09-27 17:36:35 +08003737 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003738 return;
3739 }
3740
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003741 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 page = sg->page;
3744 offset = sg->offset + qc->cursg_ofs;
3745
3746 /* get the current page and offset */
3747 page = nth_page(page, (offset >> PAGE_SHIFT));
3748 offset %= PAGE_SIZE;
3749
Albert Lee6952df02005-06-06 15:56:03 +08003750 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003751 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
3753 /* don't cross page boundaries */
3754 count = min(count, (unsigned int)PAGE_SIZE - offset);
3755
Albert Lee7282aa42005-10-09 09:46:07 -04003756 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3757
Albert Lee91b8b312005-10-09 09:48:44 -04003758 if (PageHighMem(page)) {
3759 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003760
Albert Lee91b8b312005-10-09 09:48:44 -04003761 local_irq_save(flags);
3762 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003763
Albert Lee91b8b312005-10-09 09:48:44 -04003764 /* do the actual data transfer */
3765 ata_data_xfer(ap, buf + offset, count, do_write);
3766
3767 kunmap_atomic(buf, KM_IRQ0);
3768 local_irq_restore(flags);
3769 } else {
3770 buf = page_address(page);
3771 ata_data_xfer(ap, buf + offset, count, do_write);
3772 }
Albert Lee7282aa42005-10-09 09:46:07 -04003773
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 bytes -= count;
3775 qc->curbytes += count;
3776 qc->cursg_ofs += count;
3777
Albert Lee32529e02005-05-26 03:49:42 -04003778 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 qc->cursg++;
3780 qc->cursg_ofs = 0;
3781 }
3782
Albert Lee563a6e12005-08-12 14:17:50 +08003783 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785}
3786
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003787/**
3788 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3789 * @qc: Command on going
3790 *
3791 * Transfer Transfer data from/to the ATAPI device.
3792 *
3793 * LOCKING:
3794 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003795 */
3796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3798{
3799 struct ata_port *ap = qc->ap;
3800 struct ata_device *dev = qc->dev;
3801 unsigned int ireason, bc_lo, bc_hi, bytes;
3802 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3803
3804 ap->ops->tf_read(ap, &qc->tf);
3805 ireason = qc->tf.nsect;
3806 bc_lo = qc->tf.lbam;
3807 bc_hi = qc->tf.lbah;
3808 bytes = (bc_hi << 8) | bc_lo;
3809
3810 /* shall be cleared to zero, indicating xfer of data */
3811 if (ireason & (1 << 0))
3812 goto err_out;
3813
3814 /* make sure transfer direction matches expected */
3815 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3816 if (do_write != i_write)
3817 goto err_out;
3818
Albert Lee312f7da2005-09-27 17:38:03 +08003819 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
3820
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 __atapi_pio_bytes(qc, bytes);
3822
3823 return;
3824
3825err_out:
3826 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3827 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003828 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003829 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830}
3831
3832/**
Albert Leec234fb02006-03-25 17:58:38 +08003833 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
3834 * @ap: the target ata_port
3835 * @qc: qc on going
3836 *
3837 * RETURNS:
3838 * 1 if ok in workqueue, 0 otherwise.
3839 */
3840
3841static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
3842{
3843 if (qc->tf.flags & ATA_TFLAG_POLLING)
3844 return 1;
3845
3846 if (ap->hsm_task_state == HSM_ST_FIRST) {
3847 if (qc->tf.protocol == ATA_PROT_PIO &&
3848 (qc->tf.flags & ATA_TFLAG_WRITE))
3849 return 1;
3850
3851 if (is_atapi_taskfile(&qc->tf) &&
3852 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
3853 return 1;
3854 }
3855
3856 return 0;
3857}
3858
3859/**
Albert Leebb5cb292006-03-25 17:48:02 +08003860 * ata_hsm_move - move the HSM to the next state.
3861 * @ap: the target ata_port
3862 * @qc: qc on going
3863 * @status: current device status
3864 * @in_wq: 1 if called from workqueue, 0 otherwise
3865 *
3866 * RETURNS:
3867 * 1 when poll next status needed, 0 otherwise.
3868 */
3869
3870static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
3871 u8 status, int in_wq)
Albert Leee2cec772006-03-25 17:43:49 +08003872{
Albert Leebb5cb292006-03-25 17:48:02 +08003873 unsigned long flags = 0;
3874 int poll_next;
3875
Albert Lee6912ccd2006-03-25 17:45:49 +08003876 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
3877
Albert Leebb5cb292006-03-25 17:48:02 +08003878 /* Make sure ata_qc_issue_prot() does not throw things
3879 * like DMA polling into the workqueue. Notice that
3880 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
3881 */
Albert Leec234fb02006-03-25 17:58:38 +08003882 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Leebb5cb292006-03-25 17:48:02 +08003883
Albert Leee2cec772006-03-25 17:43:49 +08003884fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08003885 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
3886 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
3887
Albert Leee2cec772006-03-25 17:43:49 +08003888 switch (ap->hsm_task_state) {
3889 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08003890 /* Send first data block or PACKET CDB */
3891
3892 /* If polling, we will stay in the work queue after
3893 * sending the data. Otherwise, interrupt handler
3894 * takes over after sending the data.
3895 */
3896 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
3897
Albert Leee2cec772006-03-25 17:43:49 +08003898 /* check device status */
3899 if (unlikely((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ)) {
3900 /* Wrong status. Let EH handle this */
3901 qc->err_mask |= AC_ERR_HSM;
3902 ap->hsm_task_state = HSM_ST_ERR;
3903 goto fsm_start;
3904 }
3905
Albert Lee71601952006-03-25 18:11:12 +08003906 /* Device should not ask for data transfer (DRQ=1)
3907 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08003908 * We ignore DRQ here and stop the HSM by
3909 * changing hsm_task_state to HSM_ST_ERR and
3910 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08003911 */
3912 if (unlikely(status & (ATA_ERR | ATA_DF))) {
3913 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
3914 ap->id, status);
3915 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08003916 ap->hsm_task_state = HSM_ST_ERR;
3917 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08003918 }
3919
Albert Leebb5cb292006-03-25 17:48:02 +08003920 /* Send the CDB (atapi) or the first data block (ata pio out).
3921 * During the state transition, interrupt handler shouldn't
3922 * be invoked before the data transfer is complete and
3923 * hsm_task_state is changed. Hence, the following locking.
3924 */
3925 if (in_wq)
3926 spin_lock_irqsave(&ap->host_set->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08003927
Albert Leebb5cb292006-03-25 17:48:02 +08003928 if (qc->tf.protocol == ATA_PROT_PIO) {
3929 /* PIO data out protocol.
3930 * send first data block.
3931 */
3932
3933 /* ata_pio_sectors() might change the state
3934 * to HSM_ST_LAST. so, the state is changed here
3935 * before ata_pio_sectors().
3936 */
3937 ap->hsm_task_state = HSM_ST;
3938 ata_pio_sectors(qc);
3939 ata_altstatus(ap); /* flush */
3940 } else
3941 /* send CDB */
3942 atapi_send_cdb(ap, qc);
3943
3944 if (in_wq)
3945 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3946
3947 /* if polling, ata_pio_task() handles the rest.
3948 * otherwise, interrupt handler takes over from here.
3949 */
Albert Leee2cec772006-03-25 17:43:49 +08003950 break;
3951
3952 case HSM_ST:
3953 /* complete command or read/write the data register */
3954 if (qc->tf.protocol == ATA_PROT_ATAPI) {
3955 /* ATAPI PIO protocol */
3956 if ((status & ATA_DRQ) == 0) {
3957 /* no more data to transfer */
3958 ap->hsm_task_state = HSM_ST_LAST;
3959 goto fsm_start;
3960 }
3961
Albert Lee71601952006-03-25 18:11:12 +08003962 /* Device should not ask for data transfer (DRQ=1)
3963 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08003964 * We ignore DRQ here and stop the HSM by
3965 * changing hsm_task_state to HSM_ST_ERR and
3966 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08003967 */
3968 if (unlikely(status & (ATA_ERR | ATA_DF))) {
3969 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
3970 ap->id, status);
3971 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08003972 ap->hsm_task_state = HSM_ST_ERR;
3973 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08003974 }
3975
Albert Leee2cec772006-03-25 17:43:49 +08003976 atapi_pio_bytes(qc);
3977
3978 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
3979 /* bad ireason reported by device */
3980 goto fsm_start;
3981
3982 } else {
3983 /* ATA PIO protocol */
3984 if (unlikely((status & ATA_DRQ) == 0)) {
3985 /* handle BSY=0, DRQ=0 as error */
3986 qc->err_mask |= AC_ERR_HSM;
3987 ap->hsm_task_state = HSM_ST_ERR;
3988 goto fsm_start;
3989 }
3990
Albert Leeeee6c322006-04-01 17:38:43 +08003991 /* For PIO reads, some devices may ask for
3992 * data transfer (DRQ=1) alone with ERR=1.
3993 * We respect DRQ here and transfer one
3994 * block of junk data before changing the
3995 * hsm_task_state to HSM_ST_ERR.
3996 *
3997 * For PIO writes, ERR=1 DRQ=1 doesn't make
3998 * sense since the data block has been
3999 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004000 */
4001 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004002 /* data might be corrputed */
4003 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004004
4005 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4006 ata_pio_sectors(qc);
4007 ata_altstatus(ap);
4008 status = ata_wait_idle(ap);
4009 }
4010
4011 /* ata_pio_sectors() might change the
4012 * state to HSM_ST_LAST. so, the state
4013 * is changed after ata_pio_sectors().
4014 */
4015 ap->hsm_task_state = HSM_ST_ERR;
4016 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004017 }
4018
Albert Leee2cec772006-03-25 17:43:49 +08004019 ata_pio_sectors(qc);
4020
4021 if (ap->hsm_task_state == HSM_ST_LAST &&
4022 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4023 /* all data read */
4024 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004025 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004026 goto fsm_start;
4027 }
4028 }
4029
4030 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004031 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004032 break;
4033
4034 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004035 if (unlikely(!ata_ok(status))) {
4036 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004037 ap->hsm_task_state = HSM_ST_ERR;
4038 goto fsm_start;
4039 }
4040
4041 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004042 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4043 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004044
Albert Lee6912ccd2006-03-25 17:45:49 +08004045 WARN_ON(qc->err_mask);
4046
Albert Leee2cec772006-03-25 17:43:49 +08004047 ap->hsm_task_state = HSM_ST_IDLE;
4048
4049 /* complete taskfile transaction */
Albert Leebb5cb292006-03-25 17:48:02 +08004050 if (in_wq)
4051 ata_poll_qc_complete(qc);
4052 else
4053 ata_qc_complete(qc);
4054
4055 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004056 break;
4057
4058 case HSM_ST_ERR:
4059 if (qc->tf.command != ATA_CMD_PACKET)
Albert Lee4332a772006-04-03 17:43:24 +08004060 printk(KERN_ERR "ata%u: dev %u command error, drv_stat 0x%x\n",
4061 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004062
4063 /* make sure qc->err_mask is available to
4064 * know what's wrong and recover
4065 */
4066 WARN_ON(qc->err_mask == 0);
4067
4068 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004069
Albert Lee999bb6f2006-03-25 18:07:48 +08004070 /* complete taskfile transaction */
Albert Leebb5cb292006-03-25 17:48:02 +08004071 if (in_wq)
4072 ata_poll_qc_complete(qc);
4073 else
4074 ata_qc_complete(qc);
4075
4076 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004077 break;
4078 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004079 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004080 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004081 }
4082
Albert Leebb5cb292006-03-25 17:48:02 +08004083 return poll_next;
Albert Leee2cec772006-03-25 17:43:49 +08004084}
4085
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086static void ata_pio_task(void *_data)
4087{
Tejun Heoc91af2c2006-04-02 18:51:53 +09004088 struct ata_queued_cmd *qc = _data;
4089 struct ata_port *ap = qc->ap;
Albert Leea1af3732006-03-25 17:50:15 +08004090 u8 status;
4091 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004092
4093fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004094 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
Albert Leea1af3732006-03-25 17:50:15 +08004096 /*
4097 * This is purely heuristic. This is a fast path.
4098 * Sometimes when we enter, BSY will be cleared in
4099 * a chk-status or two. If not, the drive is probably seeking
4100 * or something. Snooze for a couple msecs, then
4101 * chk-status again. If still busy, queue delayed work.
4102 */
4103 status = ata_busy_wait(ap, ATA_BUSY, 5);
4104 if (status & ATA_BUSY) {
4105 msleep(2);
4106 status = ata_busy_wait(ap, ATA_BUSY, 10);
4107 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004108 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004109 return;
4110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 }
4112
Albert Leea1af3732006-03-25 17:50:15 +08004113 /* move the HSM */
4114 poll_next = ata_hsm_move(ap, qc, status, 1);
4115
4116 /* another command or interrupt handler
4117 * may be running at this point.
4118 */
4119 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004120 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121}
4122
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 * ata_qc_new - Request an available ATA command, for queueing
4125 * @ap: Port associated with device @dev
4126 * @dev: Device from whom we request an available command structure
4127 *
4128 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004129 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 */
4131
4132static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4133{
4134 struct ata_queued_cmd *qc = NULL;
4135 unsigned int i;
4136
4137 for (i = 0; i < ATA_MAX_QUEUE; i++)
4138 if (!test_and_set_bit(i, &ap->qactive)) {
4139 qc = ata_qc_from_tag(ap, i);
4140 break;
4141 }
4142
4143 if (qc)
4144 qc->tag = i;
4145
4146 return qc;
4147}
4148
4149/**
4150 * ata_qc_new_init - Request an available ATA command, and initialize it
4151 * @ap: Port associated with device @dev
4152 * @dev: Device from whom we request an available command structure
4153 *
4154 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004155 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 */
4157
4158struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
4159 struct ata_device *dev)
4160{
4161 struct ata_queued_cmd *qc;
4162
4163 qc = ata_qc_new(ap);
4164 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 qc->scsicmd = NULL;
4166 qc->ap = ap;
4167 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004169 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 }
4171
4172 return qc;
4173}
4174
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175/**
4176 * ata_qc_free - free unused ata_queued_cmd
4177 * @qc: Command to complete
4178 *
4179 * Designed to free unused ata_queued_cmd object
4180 * in case something prevents using it.
4181 *
4182 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004183 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 */
4185void ata_qc_free(struct ata_queued_cmd *qc)
4186{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004187 struct ata_port *ap = qc->ap;
4188 unsigned int tag;
4189
Tejun Heoa4631472006-02-11 19:11:13 +09004190 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191
Tejun Heo4ba946e2006-01-23 13:09:36 +09004192 qc->flags = 0;
4193 tag = qc->tag;
4194 if (likely(ata_tag_valid(tag))) {
4195 if (tag == ap->active_tag)
4196 ap->active_tag = ATA_TAG_POISON;
4197 qc->tag = ATA_TAG_POISON;
4198 clear_bit(tag, &ap->qactive);
4199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200}
4201
Tejun Heo76014422006-02-11 15:13:49 +09004202void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203{
Tejun Heoa4631472006-02-11 19:11:13 +09004204 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4205 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
4207 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4208 ata_sg_clean(qc);
4209
Albert Lee3f3791d2005-08-16 14:25:38 +08004210 /* atapi: mark qc as inactive to prevent the interrupt handler
4211 * from completing the command twice later, before the error handler
4212 * is called. (when rc != 0 and atapi request sense is needed)
4213 */
4214 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4215
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004217 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218}
4219
4220static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4221{
4222 struct ata_port *ap = qc->ap;
4223
4224 switch (qc->tf.protocol) {
4225 case ATA_PROT_DMA:
4226 case ATA_PROT_ATAPI_DMA:
4227 return 1;
4228
4229 case ATA_PROT_ATAPI:
4230 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 if (ap->flags & ATA_FLAG_PIO_DMA)
4232 return 1;
4233
4234 /* fall through */
4235
4236 default:
4237 return 0;
4238 }
4239
4240 /* never reached */
4241}
4242
4243/**
4244 * ata_qc_issue - issue taskfile to device
4245 * @qc: command to issue to device
4246 *
4247 * Prepare an ATA command to submission to device.
4248 * This includes mapping the data into a DMA-able
4249 * area, filling in the S/G table, and finally
4250 * writing the taskfile to hardware, starting the command.
4251 *
4252 * LOCKING:
4253 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004255void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256{
4257 struct ata_port *ap = qc->ap;
4258
Tejun Heoe4a70e72006-03-31 20:36:47 +09004259 qc->ap->active_tag = qc->tag;
4260 qc->flags |= ATA_QCFLAG_ACTIVE;
4261
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 if (ata_should_dma_map(qc)) {
4263 if (qc->flags & ATA_QCFLAG_SG) {
4264 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004265 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4267 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004268 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 }
4270 } else {
4271 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4272 }
4273
4274 ap->ops->qc_prep(qc);
4275
Tejun Heo8e0e6942006-03-31 20:41:11 +09004276 qc->err_mask |= ap->ops->qc_issue(qc);
4277 if (unlikely(qc->err_mask))
4278 goto err;
4279 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
Tejun Heo8e436af2006-01-23 13:09:36 +09004281sg_err:
4282 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004283 qc->err_mask |= AC_ERR_SYSTEM;
4284err:
4285 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286}
4287
4288/**
4289 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4290 * @qc: command to issue to device
4291 *
4292 * Using various libata functions and hooks, this function
4293 * starts an ATA command. ATA commands are grouped into
4294 * classes called "protocols", and issuing each type of protocol
4295 * is slightly different.
4296 *
Edward Falk0baab862005-06-02 18:17:13 -04004297 * May be used as the qc_issue() entry in ata_port_operations.
4298 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 * LOCKING:
4300 * spin_lock_irqsave(host_set lock)
4301 *
4302 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004303 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 */
4305
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004306unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307{
4308 struct ata_port *ap = qc->ap;
4309
Albert Leee50362e2005-09-27 17:39:50 +08004310 /* Use polling pio if the LLD doesn't handle
4311 * interrupt driven pio and atapi CDB interrupt.
4312 */
4313 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4314 switch (qc->tf.protocol) {
4315 case ATA_PROT_PIO:
4316 case ATA_PROT_ATAPI:
4317 case ATA_PROT_ATAPI_NODATA:
4318 qc->tf.flags |= ATA_TFLAG_POLLING;
4319 break;
4320 case ATA_PROT_ATAPI_DMA:
4321 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Leec2bbc552006-03-25 17:56:55 +08004322 /* see ata_check_atapi_dma() */
Albert Leee50362e2005-09-27 17:39:50 +08004323 BUG();
4324 break;
4325 default:
4326 break;
4327 }
4328 }
4329
Albert Lee312f7da2005-09-27 17:38:03 +08004330 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 ata_dev_select(ap, qc->dev->devno, 1, 0);
4332
Albert Lee312f7da2005-09-27 17:38:03 +08004333 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 switch (qc->tf.protocol) {
4335 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004336 if (qc->tf.flags & ATA_TFLAG_POLLING)
4337 ata_qc_set_polling(qc);
4338
Jeff Garzike5338252005-10-30 21:37:17 -05004339 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004340 ap->hsm_task_state = HSM_ST_LAST;
4341
4342 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004343 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004344
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 break;
4346
4347 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004348 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004349
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4351 ap->ops->bmdma_setup(qc); /* set up bmdma */
4352 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004353 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 break;
4355
Albert Lee312f7da2005-09-27 17:38:03 +08004356 case ATA_PROT_PIO:
4357 if (qc->tf.flags & ATA_TFLAG_POLLING)
4358 ata_qc_set_polling(qc);
4359
Jeff Garzike5338252005-10-30 21:37:17 -05004360 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004361
Albert Lee54f00382005-09-30 19:14:19 +08004362 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4363 /* PIO data out protocol */
4364 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004365 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004366
4367 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004368 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004369 */
Albert Lee312f7da2005-09-27 17:38:03 +08004370 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004371 /* PIO data in protocol */
4372 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004373
Albert Lee54f00382005-09-30 19:14:19 +08004374 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004375 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004376
Albert Lee54f00382005-09-30 19:14:19 +08004377 /* if polling, ata_pio_task() handles the rest.
4378 * otherwise, interrupt handler takes over from here.
4379 */
Albert Lee312f7da2005-09-27 17:38:03 +08004380 }
4381
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 break;
4383
4384 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004386 if (qc->tf.flags & ATA_TFLAG_POLLING)
4387 ata_qc_set_polling(qc);
4388
Jeff Garzike5338252005-10-30 21:37:17 -05004389 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004390
Albert Lee312f7da2005-09-27 17:38:03 +08004391 ap->hsm_task_state = HSM_ST_FIRST;
4392
4393 /* send cdb by polling if no cdb interrupt */
4394 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4395 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004396 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 break;
4398
4399 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004400 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004401
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4403 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004404 ap->hsm_task_state = HSM_ST_FIRST;
4405
4406 /* send cdb by polling if no cdb interrupt */
4407 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004408 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 break;
4410
4411 default:
4412 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004413 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 }
4415
4416 return 0;
4417}
4418
4419/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 * ata_host_intr - Handle host interrupt for given (port, task)
4421 * @ap: Port on which interrupt arrived (possibly...)
4422 * @qc: Taskfile currently active in engine
4423 *
4424 * Handle host interrupt for given queued command. Currently,
4425 * only DMA interrupts are handled. All other commands are
4426 * handled via polling with interrupts disabled (nIEN bit).
4427 *
4428 * LOCKING:
4429 * spin_lock_irqsave(host_set lock)
4430 *
4431 * RETURNS:
4432 * One if interrupt was handled, zero if not (shared irq).
4433 */
4434
4435inline unsigned int ata_host_intr (struct ata_port *ap,
4436 struct ata_queued_cmd *qc)
4437{
Albert Lee312f7da2005-09-27 17:38:03 +08004438 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439
Albert Lee312f7da2005-09-27 17:38:03 +08004440 VPRINTK("ata%u: protocol %d task_state %d\n",
4441 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
Albert Lee312f7da2005-09-27 17:38:03 +08004443 /* Check whether we are expecting interrupt in this state */
4444 switch (ap->hsm_task_state) {
4445 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004446 /* Some pre-ATAPI-4 devices assert INTRQ
4447 * at this state when ready to receive CDB.
4448 */
4449
Albert Lee312f7da2005-09-27 17:38:03 +08004450 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4451 * The flag was turned on only for atapi devices.
4452 * No need to check is_atapi_taskfile(&qc->tf) again.
4453 */
4454 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 goto idle_irq;
Albert Lee312f7da2005-09-27 17:38:03 +08004456 break;
4457 case HSM_ST_LAST:
4458 if (qc->tf.protocol == ATA_PROT_DMA ||
4459 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4460 /* check status of DMA engine */
4461 host_stat = ap->ops->bmdma_status(ap);
4462 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Albert Lee312f7da2005-09-27 17:38:03 +08004464 /* if it's not our irq... */
4465 if (!(host_stat & ATA_DMA_INTR))
4466 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Albert Lee312f7da2005-09-27 17:38:03 +08004468 /* before we do anything else, clear DMA-Start bit */
4469 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004470
4471 if (unlikely(host_stat & ATA_DMA_ERR)) {
4472 /* error when transfering data to/from memory */
4473 qc->err_mask |= AC_ERR_HOST_BUS;
4474 ap->hsm_task_state = HSM_ST_ERR;
4475 }
Albert Lee312f7da2005-09-27 17:38:03 +08004476 }
4477 break;
4478 case HSM_ST:
4479 break;
4480 default:
4481 goto idle_irq;
4482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483
Albert Lee312f7da2005-09-27 17:38:03 +08004484 /* check altstatus */
4485 status = ata_altstatus(ap);
4486 if (status & ATA_BUSY)
4487 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Albert Lee312f7da2005-09-27 17:38:03 +08004489 /* check main status, clearing INTRQ */
4490 status = ata_chk_status(ap);
4491 if (unlikely(status & ATA_BUSY))
4492 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493
Albert Lee312f7da2005-09-27 17:38:03 +08004494 /* ack bmdma irq events */
4495 ap->ops->irq_clear(ap);
4496
Albert Leebb5cb292006-03-25 17:48:02 +08004497 ata_hsm_move(ap, qc, status, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 return 1; /* irq handled */
4499
4500idle_irq:
4501 ap->stats.idle_irq++;
4502
4503#ifdef ATA_IRQ_TRAP
4504 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 ata_irq_ack(ap, 0); /* debug trap */
4506 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
Alan Cox23cfce82006-03-21 16:06:53 +00004507 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 }
4509#endif
4510 return 0; /* irq not handled */
4511}
4512
4513/**
4514 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004515 * @irq: irq line (unused)
4516 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 * @regs: unused
4518 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004519 * Default interrupt handler for PCI IDE devices. Calls
4520 * ata_host_intr() for each port that is not disabled.
4521 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004523 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 *
4525 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004526 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 */
4528
4529irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4530{
4531 struct ata_host_set *host_set = dev_instance;
4532 unsigned int i;
4533 unsigned int handled = 0;
4534 unsigned long flags;
4535
4536 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4537 spin_lock_irqsave(&host_set->lock, flags);
4538
4539 for (i = 0; i < host_set->n_ports; i++) {
4540 struct ata_port *ap;
4541
4542 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004543 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04004544 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 struct ata_queued_cmd *qc;
4546
4547 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08004548 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08004549 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 handled |= ata_host_intr(ap, qc);
4551 }
4552 }
4553
4554 spin_unlock_irqrestore(&host_set->lock, flags);
4555
4556 return IRQ_RETVAL(handled);
4557}
4558
Edward Falk0baab862005-06-02 18:17:13 -04004559
Jens Axboe9b847542006-01-06 09:28:07 +01004560/*
4561 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4562 * without filling any other registers
4563 */
4564static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4565 u8 cmd)
4566{
4567 struct ata_taskfile tf;
4568 int err;
4569
4570 ata_tf_init(ap, &tf, dev->devno);
4571
4572 tf.command = cmd;
4573 tf.flags |= ATA_TFLAG_DEVICE;
4574 tf.protocol = ATA_PROT_NODATA;
4575
Tejun Heod69cf372006-04-02 18:51:53 +09004576 err = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004577 if (err)
4578 printk(KERN_ERR "%s: ata command failed: %d\n",
4579 __FUNCTION__, err);
4580
4581 return err;
4582}
4583
4584static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4585{
4586 u8 cmd;
4587
4588 if (!ata_try_flush_cache(dev))
4589 return 0;
4590
4591 if (ata_id_has_flush_ext(dev->id))
4592 cmd = ATA_CMD_FLUSH_EXT;
4593 else
4594 cmd = ATA_CMD_FLUSH;
4595
4596 return ata_do_simple_cmd(ap, dev, cmd);
4597}
4598
4599static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4600{
4601 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4602}
4603
4604static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4605{
4606 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4607}
4608
4609/**
4610 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004611 * @ap: port the device is connected to
4612 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004613 *
4614 * Kick the drive back into action, by sending it an idle immediate
4615 * command and making sure its transfer mode matches between drive
4616 * and host.
4617 *
4618 */
4619int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4620{
4621 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004622 struct ata_device *failed_dev;
Jens Axboe9b847542006-01-06 09:28:07 +01004623 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004624 while (ata_set_mode(ap, &failed_dev))
4625 ata_dev_disable(ap, failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004626 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004627 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004628 return 0;
4629 if (dev->class == ATA_DEV_ATA)
4630 ata_start_drive(ap, dev);
4631
4632 return 0;
4633}
4634
4635/**
4636 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004637 * @ap: port the device is connected to
4638 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004639 *
4640 * Flush the cache on the drive, if appropriate, then issue a
4641 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004642 */
Nigel Cunningham082776e2006-03-23 23:22:16 +10004643int ata_device_suspend(struct ata_port *ap, struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004644{
Tejun Heoe1211e32006-04-01 01:38:18 +09004645 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004646 return 0;
4647 if (dev->class == ATA_DEV_ATA)
4648 ata_flush_cache(ap, dev);
4649
Nigel Cunningham082776e2006-03-23 23:22:16 +10004650 if (state.event != PM_EVENT_FREEZE)
4651 ata_standby_drive(ap, dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004652 ap->flags |= ATA_FLAG_SUSPENDED;
4653 return 0;
4654}
4655
Albert Lee332b5a52006-02-08 16:51:34 +08004656/**
4657 * ata_port_start - Set port up for dma.
4658 * @ap: Port to initialize
4659 *
4660 * Called just after data structures for each port are
4661 * initialized. Allocates space for PRD table.
4662 *
4663 * May be used as the port_start() entry in ata_port_operations.
4664 *
4665 * LOCKING:
4666 * Inherited from caller.
4667 */
4668
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669int ata_port_start (struct ata_port *ap)
4670{
Brian King2f1f6102006-03-23 17:30:15 -06004671 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004672 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
4674 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4675 if (!ap->prd)
4676 return -ENOMEM;
4677
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004678 rc = ata_pad_alloc(ap, dev);
4679 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004680 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004681 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004682 }
4683
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4685
4686 return 0;
4687}
4688
Edward Falk0baab862005-06-02 18:17:13 -04004689
4690/**
4691 * ata_port_stop - Undo ata_port_start()
4692 * @ap: Port to shut down
4693 *
4694 * Frees the PRD table.
4695 *
4696 * May be used as the port_stop() entry in ata_port_operations.
4697 *
4698 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004699 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004700 */
4701
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702void ata_port_stop (struct ata_port *ap)
4703{
Brian King2f1f6102006-03-23 17:30:15 -06004704 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705
4706 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004707 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708}
4709
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004710void ata_host_stop (struct ata_host_set *host_set)
4711{
4712 if (host_set->mmio_base)
4713 iounmap(host_set->mmio_base);
4714}
4715
4716
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717/**
4718 * ata_host_remove - Unregister SCSI host structure with upper layers
4719 * @ap: Port to unregister
4720 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4721 *
4722 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004723 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 */
4725
4726static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4727{
4728 struct Scsi_Host *sh = ap->host;
4729
4730 DPRINTK("ENTER\n");
4731
4732 if (do_unregister)
4733 scsi_remove_host(sh);
4734
4735 ap->ops->port_stop(ap);
4736}
4737
4738/**
4739 * ata_host_init - Initialize an ata_port structure
4740 * @ap: Structure to initialize
4741 * @host: associated SCSI mid-layer structure
4742 * @host_set: Collection of hosts to which @ap belongs
4743 * @ent: Probe information provided by low-level driver
4744 * @port_no: Port number associated with this ata_port
4745 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004746 * Initialize a new ata_port structure, and its associated
4747 * scsi_host.
4748 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004750 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 */
4752
4753static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4754 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004755 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756{
4757 unsigned int i;
4758
4759 host->max_id = 16;
4760 host->max_lun = 1;
4761 host->max_channel = 1;
4762 host->unique_id = ata_unique_id++;
4763 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004764
Tejun Heo198e0fe2006-04-02 18:51:52 +09004765 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 ap->id = host->unique_id;
4767 ap->host = host;
4768 ap->ctl = ATA_DEVCTL_OBS;
4769 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06004770 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 ap->port_no = port_no;
4772 ap->hard_port_no =
4773 ent->legacy_mode ? ent->hard_port_no : port_no;
4774 ap->pio_mask = ent->pio_mask;
4775 ap->mwdma_mask = ent->mwdma_mask;
4776 ap->udma_mask = ent->udma_mask;
4777 ap->flags |= ent->host_flags;
4778 ap->ops = ent->port_ops;
4779 ap->cbl = ATA_CBL_NONE;
Tejun Heo1c3fae42006-04-02 20:53:28 +09004780 ap->sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 ap->active_tag = ATA_TAG_POISON;
4782 ap->last_ctl = 0xFF;
4783
Tejun Heo86e45b62006-03-05 15:29:09 +09004784 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004785 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
Tejun Heoacf356b2006-03-24 14:07:50 +09004787 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4788 struct ata_device *dev = &ap->device[i];
4789 dev->devno = i;
4790 dev->pio_mask = UINT_MAX;
4791 dev->mwdma_mask = UINT_MAX;
4792 dev->udma_mask = UINT_MAX;
4793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
4795#ifdef ATA_IRQ_TRAP
4796 ap->stats.unhandled_irq = 1;
4797 ap->stats.idle_irq = 1;
4798#endif
4799
4800 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4801}
4802
4803/**
4804 * ata_host_add - Attach low-level ATA driver to system
4805 * @ent: Information provided by low-level driver
4806 * @host_set: Collections of ports to which we add
4807 * @port_no: Port number associated with this host
4808 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004809 * Attach low-level ATA driver to system.
4810 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004812 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 *
4814 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004815 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 */
4817
Jeff Garzik057ace52005-10-22 14:27:05 -04004818static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819 struct ata_host_set *host_set,
4820 unsigned int port_no)
4821{
4822 struct Scsi_Host *host;
4823 struct ata_port *ap;
4824 int rc;
4825
4826 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09004827
4828 if (!ent->port_ops->probe_reset &&
4829 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4830 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4831 port_no);
4832 return NULL;
4833 }
4834
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4836 if (!host)
4837 return NULL;
4838
Tejun Heo30afc842006-03-18 18:40:14 +09004839 host->transportt = &ata_scsi_transport_template;
4840
Jeff Garzik35bb94b2006-04-11 13:12:34 -04004841 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842
4843 ata_host_init(ap, host, host_set, ent, port_no);
4844
4845 rc = ap->ops->port_start(ap);
4846 if (rc)
4847 goto err_out;
4848
4849 return ap;
4850
4851err_out:
4852 scsi_host_put(host);
4853 return NULL;
4854}
4855
4856/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004857 * ata_device_add - Register hardware device with ATA and SCSI layers
4858 * @ent: Probe information describing hardware device to be registered
4859 *
4860 * This function processes the information provided in the probe
4861 * information struct @ent, allocates the necessary ATA and SCSI
4862 * host information structures, initializes them, and registers
4863 * everything with requisite kernel subsystems.
4864 *
4865 * This function requests irqs, probes the ATA bus, and probes
4866 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 *
4868 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004869 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 *
4871 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004872 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 */
4874
Jeff Garzik057ace52005-10-22 14:27:05 -04004875int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876{
4877 unsigned int count = 0, i;
4878 struct device *dev = ent->dev;
4879 struct ata_host_set *host_set;
4880
4881 DPRINTK("ENTER\n");
4882 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004883 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4885 if (!host_set)
4886 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 spin_lock_init(&host_set->lock);
4888
4889 host_set->dev = dev;
4890 host_set->n_ports = ent->n_ports;
4891 host_set->irq = ent->irq;
4892 host_set->mmio_base = ent->mmio_base;
4893 host_set->private_data = ent->private_data;
4894 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01004895 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
4897 /* register each port bound to this device */
4898 for (i = 0; i < ent->n_ports; i++) {
4899 struct ata_port *ap;
4900 unsigned long xfer_mode_mask;
4901
4902 ap = ata_host_add(ent, host_set, i);
4903 if (!ap)
4904 goto err_out;
4905
4906 host_set->ports[i] = ap;
4907 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4908 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4909 (ap->pio_mask << ATA_SHIFT_PIO);
4910
4911 /* print per-port info to dmesg */
4912 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4913 "bmdma 0x%lX irq %lu\n",
4914 ap->id,
4915 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4916 ata_mode_string(xfer_mode_mask),
4917 ap->ioaddr.cmd_addr,
4918 ap->ioaddr.ctl_addr,
4919 ap->ioaddr.bmdma_addr,
4920 ent->irq);
4921
4922 ata_chk_status(ap);
4923 host_set->ops->irq_clear(ap);
4924 count++;
4925 }
4926
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004927 if (!count)
4928 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929
4930 /* obtain irq, that is shared between channels */
4931 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4932 DRV_NAME, host_set))
4933 goto err_out;
4934
4935 /* perform each probe synchronously */
4936 DPRINTK("probe begin\n");
4937 for (i = 0; i < count; i++) {
4938 struct ata_port *ap;
4939 int rc;
4940
4941 ap = host_set->ports[i];
4942
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004943 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004945 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946
4947 if (rc) {
4948 /* FIXME: do something useful here?
4949 * Current libata behavior will
4950 * tear down everything when
4951 * the module is removed
4952 * or the h/w is unplugged.
4953 */
4954 }
4955
4956 rc = scsi_add_host(ap->host, dev);
4957 if (rc) {
4958 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4959 ap->id);
4960 /* FIXME: do something useful here */
4961 /* FIXME: handle unconditional calls to
4962 * scsi_scan_host and ata_host_remove, below,
4963 * at the very least
4964 */
4965 }
4966 }
4967
4968 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004969 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970 for (i = 0; i < count; i++) {
4971 struct ata_port *ap = host_set->ports[i];
4972
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004973 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 }
4975
4976 dev_set_drvdata(dev, host_set);
4977
4978 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4979 return ent->n_ports; /* success */
4980
4981err_out:
4982 for (i = 0; i < count; i++) {
4983 ata_host_remove(host_set->ports[i], 1);
4984 scsi_host_put(host_set->ports[i]->host);
4985 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004986err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 kfree(host_set);
4988 VPRINTK("EXIT, returning 0\n");
4989 return 0;
4990}
4991
4992/**
Alan Cox17b14452005-09-15 15:44:00 +01004993 * ata_host_set_remove - PCI layer callback for device removal
4994 * @host_set: ATA host set that was removed
4995 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004996 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01004997 * objects.
4998 *
4999 * LOCKING:
5000 * Inherited from calling layer (may sleep).
5001 */
5002
Alan Cox17b14452005-09-15 15:44:00 +01005003void ata_host_set_remove(struct ata_host_set *host_set)
5004{
5005 struct ata_port *ap;
5006 unsigned int i;
5007
5008 for (i = 0; i < host_set->n_ports; i++) {
5009 ap = host_set->ports[i];
5010 scsi_remove_host(ap->host);
5011 }
5012
5013 free_irq(host_set->irq, host_set);
5014
5015 for (i = 0; i < host_set->n_ports; i++) {
5016 ap = host_set->ports[i];
5017
5018 ata_scsi_release(ap->host);
5019
5020 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
5021 struct ata_ioports *ioaddr = &ap->ioaddr;
5022
5023 if (ioaddr->cmd_addr == 0x1f0)
5024 release_region(0x1f0, 8);
5025 else if (ioaddr->cmd_addr == 0x170)
5026 release_region(0x170, 8);
5027 }
5028
5029 scsi_host_put(ap->host);
5030 }
5031
5032 if (host_set->ops->host_stop)
5033 host_set->ops->host_stop(host_set);
5034
5035 kfree(host_set);
5036}
5037
5038/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 * ata_scsi_release - SCSI layer callback hook for host unload
5040 * @host: libata host to be unloaded
5041 *
5042 * Performs all duties necessary to shut down a libata port...
5043 * Kill port kthread, disable port, and release resources.
5044 *
5045 * LOCKING:
5046 * Inherited from SCSI layer.
5047 *
5048 * RETURNS:
5049 * One.
5050 */
5051
5052int ata_scsi_release(struct Scsi_Host *host)
5053{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04005054 struct ata_port *ap = ata_shost_to_port(host);
Tejun Heod9572b12006-03-01 16:09:35 +09005055 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
5057 DPRINTK("ENTER\n");
5058
5059 ap->ops->port_disable(ap);
5060 ata_host_remove(ap, 0);
Tejun Heod9572b12006-03-01 16:09:35 +09005061 for (i = 0; i < ATA_MAX_DEVICES; i++)
5062 kfree(ap->device[i].id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
5064 DPRINTK("EXIT\n");
5065 return 1;
5066}
5067
5068/**
5069 * ata_std_ports - initialize ioaddr with standard port offsets.
5070 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005071 *
5072 * Utility function which initializes data_addr, error_addr,
5073 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5074 * device_addr, status_addr, and command_addr to standard offsets
5075 * relative to cmd_addr.
5076 *
5077 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 */
Edward Falk0baab862005-06-02 18:17:13 -04005079
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080void ata_std_ports(struct ata_ioports *ioaddr)
5081{
5082 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5083 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5084 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5085 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5086 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5087 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5088 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5089 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5090 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5091 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5092}
5093
Edward Falk0baab862005-06-02 18:17:13 -04005094
Jeff Garzik374b1872005-08-30 05:42:52 -04005095#ifdef CONFIG_PCI
5096
5097void ata_pci_host_stop (struct ata_host_set *host_set)
5098{
5099 struct pci_dev *pdev = to_pci_dev(host_set->dev);
5100
5101 pci_iounmap(pdev, host_set->mmio_base);
5102}
5103
Edward Falk0baab862005-06-02 18:17:13 -04005104/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 * ata_pci_remove_one - PCI layer callback for device removal
5106 * @pdev: PCI device that was removed
5107 *
5108 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005109 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 * Handle this by unregistering all objects associated
5111 * with this PCI device. Free those objects. Then finally
5112 * release PCI resources and disable device.
5113 *
5114 * LOCKING:
5115 * Inherited from PCI layer (may sleep).
5116 */
5117
5118void ata_pci_remove_one (struct pci_dev *pdev)
5119{
5120 struct device *dev = pci_dev_to_dev(pdev);
5121 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
Alan Cox17b14452005-09-15 15:44:00 +01005123 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 pci_release_regions(pdev);
5125 pci_disable_device(pdev);
5126 dev_set_drvdata(dev, NULL);
5127}
5128
5129/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005130int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131{
5132 unsigned long tmp = 0;
5133
5134 switch (bits->width) {
5135 case 1: {
5136 u8 tmp8 = 0;
5137 pci_read_config_byte(pdev, bits->reg, &tmp8);
5138 tmp = tmp8;
5139 break;
5140 }
5141 case 2: {
5142 u16 tmp16 = 0;
5143 pci_read_config_word(pdev, bits->reg, &tmp16);
5144 tmp = tmp16;
5145 break;
5146 }
5147 case 4: {
5148 u32 tmp32 = 0;
5149 pci_read_config_dword(pdev, bits->reg, &tmp32);
5150 tmp = tmp32;
5151 break;
5152 }
5153
5154 default:
5155 return -EINVAL;
5156 }
5157
5158 tmp &= bits->mask;
5159
5160 return (tmp == bits->val) ? 1 : 0;
5161}
Jens Axboe9b847542006-01-06 09:28:07 +01005162
5163int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
5164{
5165 pci_save_state(pdev);
5166 pci_disable_device(pdev);
5167 pci_set_power_state(pdev, PCI_D3hot);
5168 return 0;
5169}
5170
5171int ata_pci_device_resume(struct pci_dev *pdev)
5172{
5173 pci_set_power_state(pdev, PCI_D0);
5174 pci_restore_state(pdev);
5175 pci_enable_device(pdev);
5176 pci_set_master(pdev);
5177 return 0;
5178}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179#endif /* CONFIG_PCI */
5180
5181
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182static int __init ata_init(void)
5183{
5184 ata_wq = create_workqueue("ata");
5185 if (!ata_wq)
5186 return -ENOMEM;
5187
5188 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5189 return 0;
5190}
5191
5192static void __exit ata_exit(void)
5193{
5194 destroy_workqueue(ata_wq);
5195}
5196
5197module_init(ata_init);
5198module_exit(ata_exit);
5199
Jeff Garzik67846b32005-10-05 02:58:32 -04005200static unsigned long ratelimit_time;
5201static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5202
5203int ata_ratelimit(void)
5204{
5205 int rc;
5206 unsigned long flags;
5207
5208 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5209
5210 if (time_after(jiffies, ratelimit_time)) {
5211 rc = 1;
5212 ratelimit_time = jiffies + (HZ/5);
5213 } else
5214 rc = 0;
5215
5216 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5217
5218 return rc;
5219}
5220
Tejun Heoc22daff2006-04-11 22:22:29 +09005221/**
5222 * ata_wait_register - wait until register value changes
5223 * @reg: IO-mapped register
5224 * @mask: Mask to apply to read register value
5225 * @val: Wait condition
5226 * @interval_msec: polling interval in milliseconds
5227 * @timeout_msec: timeout in milliseconds
5228 *
5229 * Waiting for some bits of register to change is a common
5230 * operation for ATA controllers. This function reads 32bit LE
5231 * IO-mapped register @reg and tests for the following condition.
5232 *
5233 * (*@reg & mask) != val
5234 *
5235 * If the condition is met, it returns; otherwise, the process is
5236 * repeated after @interval_msec until timeout.
5237 *
5238 * LOCKING:
5239 * Kernel thread context (may sleep)
5240 *
5241 * RETURNS:
5242 * The final register value.
5243 */
5244u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5245 unsigned long interval_msec,
5246 unsigned long timeout_msec)
5247{
5248 unsigned long timeout;
5249 u32 tmp;
5250
5251 tmp = ioread32(reg);
5252
5253 /* Calculate timeout _after_ the first read to make sure
5254 * preceding writes reach the controller before starting to
5255 * eat away the timeout.
5256 */
5257 timeout = jiffies + (timeout_msec * HZ) / 1000;
5258
5259 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5260 msleep(interval_msec);
5261 tmp = ioread32(reg);
5262 }
5263
5264 return tmp;
5265}
5266
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267/*
5268 * libata is essentially a library of internal helper functions for
5269 * low-level ATA host controller drivers. As such, the API/ABI is
5270 * likely to change as new drivers are added and updated.
5271 * Do not depend on ABI/API stability.
5272 */
5273
5274EXPORT_SYMBOL_GPL(ata_std_bios_param);
5275EXPORT_SYMBOL_GPL(ata_std_ports);
5276EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005277EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278EXPORT_SYMBOL_GPL(ata_sg_init);
5279EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo76014422006-02-11 15:13:49 +09005280EXPORT_SYMBOL_GPL(__ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282EXPORT_SYMBOL_GPL(ata_tf_load);
5283EXPORT_SYMBOL_GPL(ata_tf_read);
5284EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5285EXPORT_SYMBOL_GPL(ata_std_dev_select);
5286EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5287EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5288EXPORT_SYMBOL_GPL(ata_check_status);
5289EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290EXPORT_SYMBOL_GPL(ata_exec_command);
5291EXPORT_SYMBOL_GPL(ata_port_start);
5292EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005293EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294EXPORT_SYMBOL_GPL(ata_interrupt);
5295EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005296EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5298EXPORT_SYMBOL_GPL(ata_bmdma_start);
5299EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5300EXPORT_SYMBOL_GPL(ata_bmdma_status);
5301EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5302EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo499a86a2006-04-11 22:32:18 +09005303EXPORT_SYMBOL_GPL(ata_set_sata_spd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304EXPORT_SYMBOL_GPL(sata_phy_reset);
5305EXPORT_SYMBOL_GPL(__sata_phy_reset);
5306EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005307EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005308EXPORT_SYMBOL_GPL(ata_std_softreset);
5309EXPORT_SYMBOL_GPL(sata_std_hardreset);
5310EXPORT_SYMBOL_GPL(ata_std_postreset);
5311EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005312EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005313EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005314EXPORT_SYMBOL_GPL(ata_dev_classify);
5315EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005317EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005318EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005319EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005320EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5322EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5324EXPORT_SYMBOL_GPL(ata_scsi_release);
5325EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo6a62a042006-02-13 10:02:46 +09005326EXPORT_SYMBOL_GPL(ata_id_string);
5327EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5329
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005330EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005331EXPORT_SYMBOL_GPL(ata_timing_compute);
5332EXPORT_SYMBOL_GPL(ata_timing_merge);
5333
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334#ifdef CONFIG_PCI
5335EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005336EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5338EXPORT_SYMBOL_GPL(ata_pci_init_one);
5339EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005340EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5341EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005342EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5343EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005345
5346EXPORT_SYMBOL_GPL(ata_device_suspend);
5347EXPORT_SYMBOL_GPL(ata_device_resume);
5348EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5349EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005350
5351EXPORT_SYMBOL_GPL(ata_scsi_error);
5352EXPORT_SYMBOL_GPL(ata_eng_timeout);
5353EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5354EXPORT_SYMBOL_GPL(ata_eh_qc_retry);