blob: 0075fe7404d5a735c28018a868b794da6dc92998 [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 Lee0565c262006-02-13 18:55:25 +0800222 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800223 } else {
224 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100225 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100228 cmd = ata_rw_cmds[index + fua + lba48 + write];
229 if (cmd) {
230 tf->command = cmd;
231 return 0;
232 }
233 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Tejun Heocb95d562006-03-06 04:31:56 +0900236/**
237 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
238 * @pio_mask: pio_mask
239 * @mwdma_mask: mwdma_mask
240 * @udma_mask: udma_mask
241 *
242 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
243 * unsigned int xfer_mask.
244 *
245 * LOCKING:
246 * None.
247 *
248 * RETURNS:
249 * Packed xfer_mask.
250 */
251static unsigned int ata_pack_xfermask(unsigned int pio_mask,
252 unsigned int mwdma_mask,
253 unsigned int udma_mask)
254{
255 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
256 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
257 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
258}
259
Tejun Heoc0489e42006-03-24 14:07:49 +0900260/**
261 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
262 * @xfer_mask: xfer_mask to unpack
263 * @pio_mask: resulting pio_mask
264 * @mwdma_mask: resulting mwdma_mask
265 * @udma_mask: resulting udma_mask
266 *
267 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
268 * Any NULL distination masks will be ignored.
269 */
270static void ata_unpack_xfermask(unsigned int xfer_mask,
271 unsigned int *pio_mask,
272 unsigned int *mwdma_mask,
273 unsigned int *udma_mask)
274{
275 if (pio_mask)
276 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
277 if (mwdma_mask)
278 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
279 if (udma_mask)
280 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
281}
282
Tejun Heocb95d562006-03-06 04:31:56 +0900283static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900284 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900285 u8 base;
286} ata_xfer_tbl[] = {
287 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
288 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
289 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
290 { -1, },
291};
292
293/**
294 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
295 * @xfer_mask: xfer_mask of interest
296 *
297 * Return matching XFER_* value for @xfer_mask. Only the highest
298 * bit of @xfer_mask is considered.
299 *
300 * LOCKING:
301 * None.
302 *
303 * RETURNS:
304 * Matching XFER_* value, 0 if no match found.
305 */
306static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
307{
308 int highbit = fls(xfer_mask) - 1;
309 const struct ata_xfer_ent *ent;
310
311 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
312 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
313 return ent->base + highbit - ent->shift;
314 return 0;
315}
316
317/**
318 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
319 * @xfer_mode: XFER_* of interest
320 *
321 * Return matching xfer_mask for @xfer_mode.
322 *
323 * LOCKING:
324 * None.
325 *
326 * RETURNS:
327 * Matching xfer_mask, 0 if no match found.
328 */
329static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
330{
331 const struct ata_xfer_ent *ent;
332
333 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
334 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
335 return 1 << (ent->shift + xfer_mode - ent->base);
336 return 0;
337}
338
339/**
340 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
341 * @xfer_mode: XFER_* of interest
342 *
343 * Return matching xfer_shift for @xfer_mode.
344 *
345 * LOCKING:
346 * None.
347 *
348 * RETURNS:
349 * Matching xfer_shift, -1 if no match found.
350 */
351static int ata_xfer_mode2shift(unsigned int xfer_mode)
352{
353 const struct ata_xfer_ent *ent;
354
355 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
356 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
357 return ent->shift;
358 return -1;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900362 * ata_mode_string - convert xfer_mask to string
363 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *
365 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900366 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
368 * LOCKING:
369 * None.
370 *
371 * RETURNS:
372 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900373 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900375static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Tejun Heo75f554b2006-03-06 04:31:57 +0900377 static const char * const xfer_mode_str[] = {
378 "PIO0",
379 "PIO1",
380 "PIO2",
381 "PIO3",
382 "PIO4",
383 "MWDMA0",
384 "MWDMA1",
385 "MWDMA2",
386 "UDMA/16",
387 "UDMA/25",
388 "UDMA/33",
389 "UDMA/44",
390 "UDMA/66",
391 "UDMA/100",
392 "UDMA/133",
393 "UDMA7",
394 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900395 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900397 highbit = fls(xfer_mask) - 1;
398 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
399 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Tejun Heo4c360c82006-04-01 01:38:17 +0900403static const char *sata_spd_string(unsigned int spd)
404{
405 static const char * const spd_str[] = {
406 "1.5 Gbps",
407 "3.0 Gbps",
408 };
409
410 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
411 return "<unknown>";
412 return spd_str[spd - 1];
413}
414
Tejun 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}
705
Edward Falk0baab862005-06-02 18:17:13 -0400706/**
707 * ata_noop_dev_select - Select device 0/1 on ATA bus
708 * @ap: ATA channel to manipulate
709 * @device: ATA device (numbered from zero) to select
710 *
711 * This function performs no actual function.
712 *
713 * May be used as the dev_select() entry in ata_port_operations.
714 *
715 * LOCKING:
716 * caller.
717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
719{
720}
721
Edward Falk0baab862005-06-02 18:17:13 -0400722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723/**
724 * ata_std_dev_select - Select device 0/1 on ATA bus
725 * @ap: ATA channel to manipulate
726 * @device: ATA device (numbered from zero) to select
727 *
728 * Use the method defined in the ATA specification to
729 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400730 * ATA channel. Works with both PIO and MMIO.
731 *
732 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 *
734 * LOCKING:
735 * caller.
736 */
737
738void ata_std_dev_select (struct ata_port *ap, unsigned int device)
739{
740 u8 tmp;
741
742 if (device == 0)
743 tmp = ATA_DEVICE_OBS;
744 else
745 tmp = ATA_DEVICE_OBS | ATA_DEV1;
746
747 if (ap->flags & ATA_FLAG_MMIO) {
748 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
749 } else {
750 outb(tmp, ap->ioaddr.device_addr);
751 }
752 ata_pause(ap); /* needed; also flushes, for mmio */
753}
754
755/**
756 * ata_dev_select - Select device 0/1 on ATA bus
757 * @ap: ATA channel to manipulate
758 * @device: ATA device (numbered from zero) to select
759 * @wait: non-zero to wait for Status register BSY bit to clear
760 * @can_sleep: non-zero if context allows sleeping
761 *
762 * Use the method defined in the ATA specification to
763 * make either device 0, or device 1, active on the
764 * ATA channel.
765 *
766 * This is a high-level version of ata_std_dev_select(),
767 * which additionally provides the services of inserting
768 * the proper pauses and status polling, where needed.
769 *
770 * LOCKING:
771 * caller.
772 */
773
774void ata_dev_select(struct ata_port *ap, unsigned int device,
775 unsigned int wait, unsigned int can_sleep)
776{
777 VPRINTK("ENTER, ata%u: device %u, wait %u\n",
778 ap->id, device, wait);
779
780 if (wait)
781 ata_wait_idle(ap);
782
783 ap->ops->dev_select(ap, device);
784
785 if (wait) {
786 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
787 msleep(150);
788 ata_wait_idle(ap);
789 }
790}
791
792/**
793 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900794 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900796 * Dump selected 16-bit words from the given IDENTIFY DEVICE
797 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 *
799 * LOCKING:
800 * caller.
801 */
802
Tejun Heo0bd33002006-02-12 22:47:05 +0900803static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 DPRINTK("49==0x%04x "
806 "53==0x%04x "
807 "63==0x%04x "
808 "64==0x%04x "
809 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900810 id[49],
811 id[53],
812 id[63],
813 id[64],
814 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 DPRINTK("80==0x%04x "
816 "81==0x%04x "
817 "82==0x%04x "
818 "83==0x%04x "
819 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900820 id[80],
821 id[81],
822 id[82],
823 id[83],
824 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 DPRINTK("88==0x%04x "
826 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900827 id[88],
828 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
Tejun Heocb95d562006-03-06 04:31:56 +0900831/**
832 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
833 * @id: IDENTIFY data to compute xfer mask from
834 *
835 * Compute the xfermask for this device. This is not as trivial
836 * as it seems if we must consider early devices correctly.
837 *
838 * FIXME: pre IDE drive timing (do we care ?).
839 *
840 * LOCKING:
841 * None.
842 *
843 * RETURNS:
844 * Computed xfermask
845 */
846static unsigned int ata_id_xfermask(const u16 *id)
847{
848 unsigned int pio_mask, mwdma_mask, udma_mask;
849
850 /* Usual case. Word 53 indicates word 64 is valid */
851 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
852 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
853 pio_mask <<= 3;
854 pio_mask |= 0x7;
855 } else {
856 /* If word 64 isn't valid then Word 51 high byte holds
857 * the PIO timing number for the maximum. Turn it into
858 * a mask.
859 */
860 pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ;
861
862 /* But wait.. there's more. Design your standards by
863 * committee and you too can get a free iordy field to
864 * process. However its the speeds not the modes that
865 * are supported... Note drivers using the timing API
866 * will get this right anyway
867 */
868 }
869
870 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900871
872 udma_mask = 0;
873 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
874 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900875
876 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
877}
878
Tejun Heo86e45b62006-03-05 15:29:09 +0900879/**
880 * ata_port_queue_task - Queue port_task
881 * @ap: The ata_port to queue port_task for
882 *
883 * Schedule @fn(@data) for execution after @delay jiffies using
884 * port_task. There is one port_task per port and it's the
885 * user(low level driver)'s responsibility to make sure that only
886 * one task is active at any given time.
887 *
888 * libata core layer takes care of synchronization between
889 * port_task and EH. ata_port_queue_task() may be ignored for EH
890 * synchronization.
891 *
892 * LOCKING:
893 * Inherited from caller.
894 */
895void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data,
896 unsigned long delay)
897{
898 int rc;
899
Tejun Heo2e755f62006-03-05 15:29:09 +0900900 if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +0900901 return;
902
903 PREPARE_WORK(&ap->port_task, fn, data);
904
905 if (!delay)
906 rc = queue_work(ata_wq, &ap->port_task);
907 else
908 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
909
910 /* rc == 0 means that another user is using port task */
911 WARN_ON(rc == 0);
912}
913
914/**
915 * ata_port_flush_task - Flush port_task
916 * @ap: The ata_port to flush port_task for
917 *
918 * After this function completes, port_task is guranteed not to
919 * be running or scheduled.
920 *
921 * LOCKING:
922 * Kernel thread context (may sleep)
923 */
924void ata_port_flush_task(struct ata_port *ap)
925{
926 unsigned long flags;
927
928 DPRINTK("ENTER\n");
929
930 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900931 ap->flags |= ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900932 spin_unlock_irqrestore(&ap->host_set->lock, flags);
933
934 DPRINTK("flush #1\n");
935 flush_workqueue(ata_wq);
936
937 /*
938 * At this point, if a task is running, it's guaranteed to see
939 * the FLUSH flag; thus, it will never queue pio tasks again.
940 * Cancel and flush.
941 */
942 if (!cancel_delayed_work(&ap->port_task)) {
943 DPRINTK("flush #2\n");
944 flush_workqueue(ata_wq);
945 }
946
947 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo2e755f62006-03-05 15:29:09 +0900948 ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK;
Tejun Heo86e45b62006-03-05 15:29:09 +0900949 spin_unlock_irqrestore(&ap->host_set->lock, flags);
950
951 DPRINTK("EXIT\n");
952}
953
Tejun Heo77853bf2006-01-23 13:09:36 +0900954void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +0900955{
Tejun Heo77853bf2006-01-23 13:09:36 +0900956 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +0900957
Tejun Heo77853bf2006-01-23 13:09:36 +0900958 qc->ap->ops->tf_read(qc->ap, &qc->tf);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900959 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +0900960}
961
962/**
963 * ata_exec_internal - execute libata internal command
964 * @ap: Port to which the command is sent
965 * @dev: Device to which the command is sent
966 * @tf: Taskfile registers for the command and the result
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;
1004 }
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 Heo1f7dd3e92006-03-24 15:25:30 +09001039 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1040 * Until those drivers are fixed, we detect the condition
1041 * here, fail the command with AC_ERR_SYSTEM and reenable the
1042 * port.
1043 *
1044 * Note that this doesn't change any behavior as internal
1045 * command failure results in disabling the device in the
1046 * higher layer for LLDDs without new reset/EH callbacks.
1047 *
1048 * Kill the following code as soon as those drivers are fixed.
1049 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001050 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001051 err_mask |= AC_ERR_SYSTEM;
1052 ata_port_probe(ap);
1053 }
1054
Tejun Heo77853bf2006-01-23 13:09:36 +09001055 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001056}
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;
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /*
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 Lee8bf62ece2005-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 Lee8bf62ece2005-05-12 15:29:42 -04001273 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001274 lba_desc = "LBA48";
1275 }
Albert Lee8bf62ece2005-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 Lee8bf62ece2005-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 Lee8bf62ece2005-05-12 15:29:42 -04001293
Tejun Heo1148c3a2006-03-13 19:48:04 +09001294 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-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 Lee8bf62ece2005-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
Tejun Heo6e7846e2006-02-12 23:32:58 +09001312 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314
1315 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001316 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo1148c3a2006-03-13 19:48:04 +09001317 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
1319 printk(KERN_WARNING "ata%u: unsupported CDB len\n", ap->id);
Tejun Heoffeae412006-03-01 16:09:35 +09001320 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 goto err_out_nosup;
1322 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001323 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 /* print device info to dmesg */
Tejun Heo4c2d7212006-03-05 17:55:58 +09001326 if (print_info)
1327 printk(KERN_INFO "ata%u: dev %u ATAPI, max %s\n",
Tejun Heoff8854b2006-03-06 04:31:56 +09001328 ap->id, dev->devno, ata_mode_string(xfer_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
1330
Tejun Heo6e7846e2006-02-12 23:32:58 +09001331 ap->host->max_cmd_len = 0;
1332 for (i = 0; i < ATA_MAX_DEVICES; i++)
1333 ap->host->max_cmd_len = max_t(unsigned int,
1334 ap->host->max_cmd_len,
1335 ap->device[i].cdb_len);
1336
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001337 /* limit bridge transfers to udma5, 200 sectors */
1338 if (ata_dev_knobble(ap, dev)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001339 if (print_info)
1340 printk(KERN_INFO "ata%u(%u): applying bridge limits\n",
1341 ap->id, dev->devno);
Tejun Heo5a529132006-03-24 14:07:50 +09001342 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001343 dev->max_sectors = ATA_MAX_SECTORS;
1344 }
1345
1346 if (ap->ops->dev_config)
1347 ap->ops->dev_config(ap, dev);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352err_out_nosup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 DPRINTK("EXIT, err\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001354 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
1357/**
1358 * ata_bus_probe - Reset and probe ATA bus
1359 * @ap: Bus to probe
1360 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001361 * Master ATA bus probing function. Initiates a hardware-dependent
1362 * bus reset, then attempts to identify any devices found on
1363 * the bus.
1364 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001366 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 *
1368 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001369 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 */
1371
1372static int ata_bus_probe(struct ata_port *ap)
1373{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001374 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001375 int tries[ATA_MAX_DEVICES];
1376 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001377 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Tejun Heo28ca5c52006-03-01 16:09:36 +09001379 ata_port_probe(ap);
1380
Tejun Heo14d2bac2006-04-02 17:54:46 +09001381 for (i = 0; i < ATA_MAX_DEVICES; i++)
1382 tries[i] = ATA_PROBE_MAX_TRIES;
1383
1384 retry:
1385 down_xfermask = 0;
1386
Tejun Heo20444702006-03-13 01:57:01 +09001387 /* reset and determine device classes */
1388 for (i = 0; i < ATA_MAX_DEVICES; i++)
1389 classes[i] = ATA_DEV_UNKNOWN;
Tejun Heo2061a472006-03-12 00:57:39 +09001390
Tejun Heo20444702006-03-13 01:57:01 +09001391 if (ap->ops->probe_reset) {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001392 rc = ap->ops->probe_reset(ap, classes);
Tejun Heo28ca5c52006-03-01 16:09:36 +09001393 if (rc) {
1394 printk("ata%u: reset failed (errno=%d)\n", ap->id, rc);
1395 return rc;
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001396 }
Tejun Heo28ca5c52006-03-01 16:09:36 +09001397 } else {
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001398 ap->ops->phy_reset(ap);
1399
Tejun Heo198e0fe2006-04-02 18:51:52 +09001400 if (!(ap->flags & ATA_FLAG_DISABLED))
Tejun Heo20444702006-03-13 01:57:01 +09001401 for (i = 0; i < ATA_MAX_DEVICES; i++)
Tejun Heo28ca5c52006-03-01 16:09:36 +09001402 classes[i] = ap->device[i].class;
Tejun Heo20444702006-03-13 01:57:01 +09001403
Tejun Heo28ca5c52006-03-01 16:09:36 +09001404 ata_port_probe(ap);
1405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Tejun Heo20444702006-03-13 01:57:01 +09001407 for (i = 0; i < ATA_MAX_DEVICES; i++)
1408 if (classes[i] == ATA_DEV_UNKNOWN)
1409 classes[i] = ATA_DEV_NONE;
1410
Tejun Heo28ca5c52006-03-01 16:09:36 +09001411 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001413 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001414 dev->class = classes[i];
1415
Tejun Heo14d2bac2006-04-02 17:54:46 +09001416 if (!tries[i]) {
1417 ata_down_xfermask_limit(ap, dev, 1);
1418 ata_dev_disable(ap, dev);
1419 }
1420
Tejun Heoe1211e32006-04-01 01:38:18 +09001421 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001422 continue;
1423
Tejun Heo14d2bac2006-04-02 17:54:46 +09001424 kfree(dev->id);
1425 dev->id = NULL;
1426 rc = ata_dev_read_id(ap, dev, &dev->class, 1, &dev->id);
1427 if (rc)
1428 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001429
Tejun Heo14d2bac2006-04-02 17:54:46 +09001430 rc = ata_dev_configure(ap, dev, 1);
1431 if (rc)
1432 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001435 /* configure transfer mode */
1436 if (ap->ops->set_mode) {
1437 /* FIXME: make ->set_mode handle no device case and
1438 * return error code and failing device on failure as
1439 * ata_set_mode() does.
1440 */
Tejun Heo14d2bac2006-04-02 17:54:46 +09001441 for (i = 0; i < ATA_MAX_DEVICES; i++)
1442 if (ata_dev_enabled(&ap->device[i])) {
1443 ap->ops->set_mode(ap);
1444 break;
1445 }
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001446 rc = 0;
1447 } else {
Tejun Heo14d2bac2006-04-02 17:54:46 +09001448 rc = ata_set_mode(ap, &dev);
1449 if (rc) {
1450 down_xfermask = 1;
1451 goto fail;
1452 }
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001455 for (i = 0; i < ATA_MAX_DEVICES; i++)
1456 if (ata_dev_enabled(&ap->device[i]))
1457 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001458
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001459 /* no device present, disable port */
1460 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001462 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001463
1464 fail:
1465 switch (rc) {
1466 case -EINVAL:
1467 case -ENODEV:
1468 tries[dev->devno] = 0;
1469 break;
1470 case -EIO:
1471 ata_down_sata_spd_limit(ap);
1472 /* fall through */
1473 default:
1474 tries[dev->devno]--;
1475 if (down_xfermask &&
1476 ata_down_xfermask_limit(ap, dev, tries[dev->devno] == 1))
1477 tries[dev->devno] = 0;
1478 }
1479
1480 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
1482
1483/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001484 * ata_port_probe - Mark port as enabled
1485 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001487 * Modify @ap data structure such that the system
1488 * thinks that the entire port is enabled.
1489 *
1490 * LOCKING: host_set lock, or some other form of
1491 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 */
1493
1494void ata_port_probe(struct ata_port *ap)
1495{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001496 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
1499/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001500 * sata_print_link_status - Print SATA link status
1501 * @ap: SATA port to printk link status about
1502 *
1503 * This function prints link speed and status of a SATA link.
1504 *
1505 * LOCKING:
1506 * None.
1507 */
1508static void sata_print_link_status(struct ata_port *ap)
1509{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001510 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001511
1512 if (!ap->ops->scr_read)
1513 return;
1514
1515 sstatus = scr_read(ap, SCR_STATUS);
Tejun Heo6d5f9732006-04-03 00:09:41 +09001516 scontrol = scr_read(ap, SCR_CONTROL);
Tejun Heo3be680b2005-12-19 22:35:02 +09001517
1518 if (sata_dev_present(ap)) {
1519 tmp = (sstatus >> 4) & 0xf;
Tejun Heo6d5f9732006-04-03 00:09:41 +09001520 printk(KERN_INFO
1521 "ata%u: SATA link up %s (SStatus %X SControl %X)\n",
1522 ap->id, sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001523 } else {
Tejun Heo6d5f9732006-04-03 00:09:41 +09001524 printk(KERN_INFO
1525 "ata%u: SATA link down (SStatus %X SControl %X)\n",
1526 ap->id, sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001527 }
1528}
1529
1530/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001531 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1532 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001534 * This function issues commands to standard SATA Sxxx
1535 * PHY registers, to wake up the phy (and device), and
1536 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 *
1538 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001539 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 *
1541 */
1542void __sata_phy_reset(struct ata_port *ap)
1543{
1544 u32 sstatus;
1545 unsigned long timeout = jiffies + (HZ * 5);
1546
1547 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05001548 /* issue phy wake/reset */
1549 scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001550 /* Couldn't find anything in SATA I/II specs, but
1551 * AHCI-1.1 10.4.2 says at least 1 ms. */
1552 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
Brett Russcdcca89e2005-03-28 15:10:27 -05001554 scr_write_flush(ap, SCR_CONTROL, 0x300); /* phy wake/clear reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556 /* wait for phy to become ready, if necessary */
1557 do {
1558 msleep(200);
1559 sstatus = scr_read(ap, SCR_STATUS);
1560 if ((sstatus & 0xf) != 1)
1561 break;
1562 } while (time_before(jiffies, timeout));
1563
Tejun Heo3be680b2005-12-19 22:35:02 +09001564 /* print link status */
1565 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001566
Tejun Heo3be680b2005-12-19 22:35:02 +09001567 /* TODO: phy layer with polling, timeouts, etc. */
1568 if (sata_dev_present(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001570 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Tejun Heo198e0fe2006-04-02 18:51:52 +09001573 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return;
1575
1576 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1577 ata_port_disable(ap);
1578 return;
1579 }
1580
1581 ap->cbl = ATA_CBL_SATA;
1582}
1583
1584/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001585 * sata_phy_reset - Reset SATA bus.
1586 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001588 * This function resets the SATA bus, and then probes
1589 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 *
1591 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001592 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 *
1594 */
1595void sata_phy_reset(struct ata_port *ap)
1596{
1597 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001598 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return;
1600 ata_bus_reset(ap);
1601}
1602
1603/**
Alan Coxebdfca62006-03-23 15:38:34 +00001604 * ata_dev_pair - return other device on cable
1605 * @ap: port
1606 * @adev: device
1607 *
1608 * Obtain the other device on the same cable, or if none is
1609 * present NULL is returned
1610 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001611
Alan Coxebdfca62006-03-23 15:38:34 +00001612struct ata_device *ata_dev_pair(struct ata_port *ap, struct ata_device *adev)
1613{
1614 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001615 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001616 return NULL;
1617 return pair;
1618}
1619
1620/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001621 * ata_port_disable - Disable port.
1622 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001624 * Modify @ap data structure such that the system
1625 * thinks that the entire port is disabled, and should
1626 * never attempt to probe or communicate with devices
1627 * on this port.
1628 *
1629 * LOCKING: host_set lock, or some other form of
1630 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 */
1632
1633void ata_port_disable(struct ata_port *ap)
1634{
1635 ap->device[0].class = ATA_DEV_NONE;
1636 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001637 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638}
1639
Tejun Heo1c3fae42006-04-02 20:53:28 +09001640/**
1641 * ata_down_sata_spd_limit - adjust SATA spd limit downward
1642 * @ap: Port to adjust SATA spd limit for
1643 *
1644 * Adjust SATA spd limit of @ap downward. Note that this
1645 * function only adjusts the limit. The change must be applied
1646 * using ata_set_sata_spd().
1647 *
1648 * LOCKING:
1649 * Inherited from caller.
1650 *
1651 * RETURNS:
1652 * 0 on success, negative errno on failure
1653 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001654int ata_down_sata_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001655{
1656 u32 spd, mask;
1657 int highbit;
1658
1659 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1660 return -EOPNOTSUPP;
1661
1662 mask = ap->sata_spd_limit;
1663 if (mask <= 1)
1664 return -EINVAL;
1665 highbit = fls(mask) - 1;
1666 mask &= ~(1 << highbit);
1667
1668 spd = (scr_read(ap, SCR_STATUS) >> 4) & 0xf;
1669 if (spd <= 1)
1670 return -EINVAL;
1671 spd--;
1672 mask &= (1 << spd) - 1;
1673 if (!mask)
1674 return -EINVAL;
1675
1676 ap->sata_spd_limit = mask;
1677
1678 printk(KERN_WARNING "ata%u: limiting SATA link speed to %s\n",
1679 ap->id, sata_spd_string(fls(mask)));
1680
1681 return 0;
1682}
1683
1684static int __ata_set_sata_spd_needed(struct ata_port *ap, u32 *scontrol)
1685{
1686 u32 spd, limit;
1687
1688 if (ap->sata_spd_limit == UINT_MAX)
1689 limit = 0;
1690 else
1691 limit = fls(ap->sata_spd_limit);
1692
1693 spd = (*scontrol >> 4) & 0xf;
1694 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
1695
1696 return spd != limit;
1697}
1698
1699/**
1700 * ata_set_sata_spd_needed - is SATA spd configuration needed
1701 * @ap: Port in question
1702 *
1703 * Test whether the spd limit in SControl matches
1704 * @ap->sata_spd_limit. This function is used to determine
1705 * whether hardreset is necessary to apply SATA spd
1706 * configuration.
1707 *
1708 * LOCKING:
1709 * Inherited from caller.
1710 *
1711 * RETURNS:
1712 * 1 if SATA spd configuration is needed, 0 otherwise.
1713 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001714int ata_set_sata_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09001715{
1716 u32 scontrol;
1717
1718 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1719 return 0;
1720
1721 scontrol = scr_read(ap, SCR_CONTROL);
1722
1723 return __ata_set_sata_spd_needed(ap, &scontrol);
1724}
1725
1726/**
1727 * ata_set_sata_spd - set SATA spd according to spd limit
1728 * @ap: Port to set SATA spd for
1729 *
1730 * Set SATA spd of @ap according to sata_spd_limit.
1731 *
1732 * LOCKING:
1733 * Inherited from caller.
1734 *
1735 * RETURNS:
1736 * 0 if spd doesn't need to be changed, 1 if spd has been
1737 * changed. -EOPNOTSUPP if SCR registers are inaccessible.
1738 */
1739static int ata_set_sata_spd(struct ata_port *ap)
1740{
1741 u32 scontrol;
1742
1743 if (ap->cbl != ATA_CBL_SATA || !ap->ops->scr_read)
1744 return -EOPNOTSUPP;
1745
1746 scontrol = scr_read(ap, SCR_CONTROL);
1747 if (!__ata_set_sata_spd_needed(ap, &scontrol))
1748 return 0;
1749
1750 scr_write(ap, SCR_CONTROL, scontrol);
1751 return 1;
1752}
1753
Alan Cox452503f2005-10-21 19:01:32 -04001754/*
1755 * This mode timing computation functionality is ported over from
1756 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
1757 */
1758/*
1759 * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
1760 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
1761 * for PIO 5, which is a nonstandard extension and UDMA6, which
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001762 * is currently supported only by Maxtor drives.
Alan Cox452503f2005-10-21 19:01:32 -04001763 */
1764
1765static const struct ata_timing ata_timing[] = {
1766
1767 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
1768 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
1769 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
1770 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
1771
1772 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
1773 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
1774 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
1775
1776/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001777
Alan Cox452503f2005-10-21 19:01:32 -04001778 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
1779 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
1780 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001781
Alan Cox452503f2005-10-21 19:01:32 -04001782 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
1783 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
1784 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
1785
1786/* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */
1787 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
1788 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
1789
1790 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
1791 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
1792 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
1793
1794/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
1795
1796 { 0xFF }
1797};
1798
1799#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
1800#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
1801
1802static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
1803{
1804 q->setup = EZ(t->setup * 1000, T);
1805 q->act8b = EZ(t->act8b * 1000, T);
1806 q->rec8b = EZ(t->rec8b * 1000, T);
1807 q->cyc8b = EZ(t->cyc8b * 1000, T);
1808 q->active = EZ(t->active * 1000, T);
1809 q->recover = EZ(t->recover * 1000, T);
1810 q->cycle = EZ(t->cycle * 1000, T);
1811 q->udma = EZ(t->udma * 1000, UT);
1812}
1813
1814void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
1815 struct ata_timing *m, unsigned int what)
1816{
1817 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
1818 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
1819 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
1820 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
1821 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
1822 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
1823 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
1824 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
1825}
1826
1827static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
1828{
1829 const struct ata_timing *t;
1830
1831 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04001832 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04001833 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001834 return t;
Alan Cox452503f2005-10-21 19:01:32 -04001835}
1836
1837int ata_timing_compute(struct ata_device *adev, unsigned short speed,
1838 struct ata_timing *t, int T, int UT)
1839{
1840 const struct ata_timing *s;
1841 struct ata_timing p;
1842
1843 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001844 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08001845 */
Alan Cox452503f2005-10-21 19:01:32 -04001846
1847 if (!(s = ata_timing_find_mode(speed)))
1848 return -EINVAL;
1849
Albert Lee75b1f2f2005-11-16 17:06:18 +08001850 memcpy(t, s, sizeof(*s));
1851
Alan Cox452503f2005-10-21 19:01:32 -04001852 /*
1853 * If the drive is an EIDE drive, it can tell us it needs extended
1854 * PIO/MW_DMA cycle timing.
1855 */
1856
1857 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
1858 memset(&p, 0, sizeof(p));
1859 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
1860 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
1861 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
1862 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
1863 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
1864 }
1865 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
1866 }
1867
1868 /*
1869 * Convert the timing to bus clock counts.
1870 */
1871
Albert Lee75b1f2f2005-11-16 17:06:18 +08001872 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04001873
1874 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001875 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
1876 * S.M.A.R.T * and some other commands. We have to ensure that the
1877 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04001878 */
1879
1880 if (speed > XFER_PIO_4) {
1881 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
1882 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
1883 }
1884
1885 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05001886 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04001887 */
1888
1889 if (t->act8b + t->rec8b < t->cyc8b) {
1890 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
1891 t->rec8b = t->cyc8b - t->act8b;
1892 }
1893
1894 if (t->active + t->recover < t->cycle) {
1895 t->active += (t->cycle - (t->active + t->recover)) / 2;
1896 t->recover = t->cycle - t->active;
1897 }
1898
1899 return 0;
1900}
1901
Tejun Heocf176e12006-04-02 17:54:46 +09001902/**
1903 * ata_down_xfermask_limit - adjust dev xfer masks downward
1904 * @ap: Port associated with device @dev
1905 * @dev: Device to adjust xfer masks
1906 * @force_pio0: Force PIO0
1907 *
1908 * Adjust xfer masks of @dev downward. Note that this function
1909 * does not apply the change. Invoking ata_set_mode() afterwards
1910 * will apply the limit.
1911 *
1912 * LOCKING:
1913 * Inherited from caller.
1914 *
1915 * RETURNS:
1916 * 0 on success, negative errno on failure
1917 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001918int ata_down_xfermask_limit(struct ata_port *ap, struct ata_device *dev,
1919 int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09001920{
1921 unsigned long xfer_mask;
1922 int highbit;
1923
1924 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
1925 dev->udma_mask);
1926
1927 if (!xfer_mask)
1928 goto fail;
1929 /* don't gear down to MWDMA from UDMA, go directly to PIO */
1930 if (xfer_mask & ATA_MASK_UDMA)
1931 xfer_mask &= ~ATA_MASK_MWDMA;
1932
1933 highbit = fls(xfer_mask) - 1;
1934 xfer_mask &= ~(1 << highbit);
1935 if (force_pio0)
1936 xfer_mask &= 1 << ATA_SHIFT_PIO;
1937 if (!xfer_mask)
1938 goto fail;
1939
1940 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
1941 &dev->udma_mask);
1942
1943 printk(KERN_WARNING "ata%u: dev %u limiting speed to %s\n",
1944 ap->id, dev->devno, ata_mode_string(xfer_mask));
1945
1946 return 0;
1947
1948 fail:
1949 return -EINVAL;
1950}
1951
Tejun Heo83206a22006-03-24 15:25:31 +09001952static int ata_dev_set_mode(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Tejun Heo83206a22006-03-24 15:25:31 +09001954 unsigned int err_mask;
1955 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Tejun Heoe8384602006-04-02 18:51:53 +09001957 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 if (dev->xfer_shift == ATA_SHIFT_PIO)
1959 dev->flags |= ATA_DFLAG_PIO;
1960
Tejun Heo83206a22006-03-24 15:25:31 +09001961 err_mask = ata_dev_set_xfermode(ap, dev);
1962 if (err_mask) {
1963 printk(KERN_ERR
1964 "ata%u: failed to set xfermode (err_mask=0x%x)\n",
1965 ap->id, err_mask);
1966 return -EIO;
1967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Tejun Heo83206a22006-03-24 15:25:31 +09001969 rc = ata_dev_revalidate(ap, dev, 0);
Tejun Heo5eb45c02006-04-02 18:51:52 +09001970 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09001971 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09001972
Tejun Heo23e71c32006-03-06 04:31:57 +09001973 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
1974 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976 printk(KERN_INFO "ata%u: dev %u configured for %s\n",
Tejun Heo23e71c32006-03-06 04:31:57 +09001977 ap->id, dev->devno,
1978 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09001979 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980}
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982/**
1983 * ata_set_mode - Program timings and issue SET FEATURES - XFER
1984 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001985 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001987 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
1988 * ata_set_mode() fails, pointer to the failing device is
1989 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04001990 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001992 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001993 *
1994 * RETURNS:
1995 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09001997int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
Tejun Heoe8e06192006-04-01 01:38:18 +09001999 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002000 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Tejun Heoa6d5a512006-03-06 04:31:57 +09002002 /* step 1: calculate xfer_mask */
2003 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002004 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002005
Tejun Heoe8e06192006-04-01 01:38:18 +09002006 dev = &ap->device[i];
2007
Tejun Heoe1211e32006-04-01 01:38:18 +09002008 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002009 continue;
2010
Tejun Heoacf356b2006-03-24 14:07:50 +09002011 ata_dev_xfermask(ap, dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002012
Tejun Heoacf356b2006-03-24 14:07:50 +09002013 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2014 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2015 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2016 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002017
Tejun Heo4f659772006-04-01 01:38:18 +09002018 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002019 if (dev->dma_mode)
2020 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002021 }
Tejun Heo4f659772006-04-01 01:38:18 +09002022 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002023 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002024
2025 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002026 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2027 dev = &ap->device[i];
2028 if (!ata_dev_enabled(dev))
2029 continue;
2030
2031 if (!dev->pio_mode) {
2032 printk(KERN_WARNING "ata%u: dev %u no PIO support\n",
2033 ap->id, dev->devno);
2034 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002035 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002036 }
2037
2038 dev->xfer_mode = dev->pio_mode;
2039 dev->xfer_shift = ATA_SHIFT_PIO;
2040 if (ap->ops->set_piomode)
2041 ap->ops->set_piomode(ap, dev);
2042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Tejun Heoa6d5a512006-03-06 04:31:57 +09002044 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002045 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2046 dev = &ap->device[i];
2047
2048 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2049 continue;
2050
2051 dev->xfer_mode = dev->dma_mode;
2052 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2053 if (ap->ops->set_dmamode)
2054 ap->ops->set_dmamode(ap, dev);
2055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
2057 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002058 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002059 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Tejun Heoe1211e32006-04-01 01:38:18 +09002061 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002062 continue;
2063
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002064 rc = ata_dev_set_mode(ap, dev);
2065 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002066 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Tejun Heoe8e06192006-04-01 01:38:18 +09002069 /* Record simplex status. If we selected DMA then the other
2070 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002071 */
Alan Cox5444a6f2006-03-27 18:58:20 +01002072 if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX))
2073 ap->host_set->simplex_claimed = 1;
2074
Tejun Heoe8e06192006-04-01 01:38:18 +09002075 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 if (ap->ops->post_set_mode)
2077 ap->ops->post_set_mode(ap);
2078
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002079 out:
2080 if (rc)
2081 *r_failed_dev = dev;
2082 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
2084
2085/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002086 * ata_tf_to_host - issue ATA taskfile to host controller
2087 * @ap: port to which command is being issued
2088 * @tf: ATA taskfile register set
2089 *
2090 * Issues ATA taskfile register set to ATA host controller,
2091 * with proper synchronization with interrupt handler and
2092 * other threads.
2093 *
2094 * LOCKING:
2095 * spin_lock_irqsave(host_set lock)
2096 */
2097
2098static inline void ata_tf_to_host(struct ata_port *ap,
2099 const struct ata_taskfile *tf)
2100{
2101 ap->ops->tf_load(ap, tf);
2102 ap->ops->exec_command(ap, tf);
2103}
2104
2105/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 * ata_busy_sleep - sleep until BSY clears, or timeout
2107 * @ap: port containing status register to be polled
2108 * @tmout_pat: impatience timeout
2109 * @tmout: overall timeout
2110 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002111 * Sleep until ATA Status register bit BSY clears,
2112 * or a timeout occurs.
2113 *
2114 * LOCKING: None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 */
2116
Tejun Heo6f8b9952006-01-24 17:05:21 +09002117unsigned int ata_busy_sleep (struct ata_port *ap,
2118 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
2120 unsigned long timer_start, timeout;
2121 u8 status;
2122
2123 status = ata_busy_wait(ap, ATA_BUSY, 300);
2124 timer_start = jiffies;
2125 timeout = timer_start + tmout_pat;
2126 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2127 msleep(50);
2128 status = ata_busy_wait(ap, ATA_BUSY, 3);
2129 }
2130
2131 if (status & ATA_BUSY)
2132 printk(KERN_WARNING "ata%u is slow to respond, "
2133 "please be patient\n", ap->id);
2134
2135 timeout = timer_start + tmout;
2136 while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
2137 msleep(50);
2138 status = ata_chk_status(ap);
2139 }
2140
2141 if (status & ATA_BUSY) {
2142 printk(KERN_ERR "ata%u failed to respond (%lu secs)\n",
2143 ap->id, tmout / HZ);
2144 return 1;
2145 }
2146
2147 return 0;
2148}
2149
2150static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2151{
2152 struct ata_ioports *ioaddr = &ap->ioaddr;
2153 unsigned int dev0 = devmask & (1 << 0);
2154 unsigned int dev1 = devmask & (1 << 1);
2155 unsigned long timeout;
2156
2157 /* if device 0 was found in ata_devchk, wait for its
2158 * BSY bit to clear
2159 */
2160 if (dev0)
2161 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2162
2163 /* if device 1 was found in ata_devchk, wait for
2164 * register access, then wait for BSY to clear
2165 */
2166 timeout = jiffies + ATA_TMOUT_BOOT;
2167 while (dev1) {
2168 u8 nsect, lbal;
2169
2170 ap->ops->dev_select(ap, 1);
2171 if (ap->flags & ATA_FLAG_MMIO) {
2172 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2173 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2174 } else {
2175 nsect = inb(ioaddr->nsect_addr);
2176 lbal = inb(ioaddr->lbal_addr);
2177 }
2178 if ((nsect == 1) && (lbal == 1))
2179 break;
2180 if (time_after(jiffies, timeout)) {
2181 dev1 = 0;
2182 break;
2183 }
2184 msleep(50); /* give drive a breather */
2185 }
2186 if (dev1)
2187 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2188
2189 /* is all this really necessary? */
2190 ap->ops->dev_select(ap, 0);
2191 if (dev1)
2192 ap->ops->dev_select(ap, 1);
2193 if (dev0)
2194 ap->ops->dev_select(ap, 0);
2195}
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197static unsigned int ata_bus_softreset(struct ata_port *ap,
2198 unsigned int devmask)
2199{
2200 struct ata_ioports *ioaddr = &ap->ioaddr;
2201
2202 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2203
2204 /* software reset. causes dev0 to be selected */
2205 if (ap->flags & ATA_FLAG_MMIO) {
2206 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2207 udelay(20); /* FIXME: flush */
2208 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2209 udelay(20); /* FIXME: flush */
2210 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2211 } else {
2212 outb(ap->ctl, ioaddr->ctl_addr);
2213 udelay(10);
2214 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2215 udelay(10);
2216 outb(ap->ctl, ioaddr->ctl_addr);
2217 }
2218
2219 /* spec mandates ">= 2ms" before checking status.
2220 * We wait 150ms, because that was the magic delay used for
2221 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2222 * between when the ATA command register is written, and then
2223 * status is checked. Because waiting for "a while" before
2224 * checking status is fine, post SRST, we perform this magic
2225 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002226 *
2227 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 */
2229 msleep(150);
2230
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002231 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002232 * the bus shows 0xFF because the odd clown forgets the D7
2233 * pulldown resistor.
2234 */
Tejun Heo987d2f02006-04-11 22:16:45 +09002235 if (ata_check_status(ap) == 0xFF) {
2236 printk(KERN_ERR "ata%u: SRST failed (status 0xFF)\n", ap->id);
Tejun Heo298a41c2006-03-25 02:58:13 +09002237 return AC_ERR_OTHER;
Tejun Heo987d2f02006-04-11 22:16:45 +09002238 }
Alan Cox09c7ad72006-03-22 15:52:40 +00002239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 ata_bus_post_reset(ap, devmask);
2241
2242 return 0;
2243}
2244
2245/**
2246 * ata_bus_reset - reset host port and associated ATA channel
2247 * @ap: port to reset
2248 *
2249 * This is typically the first time we actually start issuing
2250 * commands to the ATA channel. We wait for BSY to clear, then
2251 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2252 * result. Determine what devices, if any, are on the channel
2253 * by looking at the device 0/1 error register. Look at the signature
2254 * stored in each device's taskfile registers, to determine if
2255 * the device is ATA or ATAPI.
2256 *
2257 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002258 * PCI/etc. bus probe sem.
2259 * Obtains host_set lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 *
2261 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002262 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 */
2264
2265void ata_bus_reset(struct ata_port *ap)
2266{
2267 struct ata_ioports *ioaddr = &ap->ioaddr;
2268 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2269 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002270 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2273
2274 /* determine if device 0/1 are present */
2275 if (ap->flags & ATA_FLAG_SATA_RESET)
2276 dev0 = 1;
2277 else {
2278 dev0 = ata_devchk(ap, 0);
2279 if (slave_possible)
2280 dev1 = ata_devchk(ap, 1);
2281 }
2282
2283 if (dev0)
2284 devmask |= (1 << 0);
2285 if (dev1)
2286 devmask |= (1 << 1);
2287
2288 /* select device 0 again */
2289 ap->ops->dev_select(ap, 0);
2290
2291 /* issue bus reset */
2292 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002293 if (ata_bus_softreset(ap, devmask))
2294 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 /*
2297 * determine by signature whether we have ATA or ATAPI devices
2298 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002299 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002301 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303 /* re-enable interrupts */
2304 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2305 ata_irq_on(ap);
2306
2307 /* is double-select really necessary? */
2308 if (ap->device[1].class != ATA_DEV_NONE)
2309 ap->ops->dev_select(ap, 1);
2310 if (ap->device[0].class != ATA_DEV_NONE)
2311 ap->ops->dev_select(ap, 0);
2312
2313 /* if no devices were detected, disable this port */
2314 if ((ap->device[0].class == ATA_DEV_NONE) &&
2315 (ap->device[1].class == ATA_DEV_NONE))
2316 goto err_out;
2317
2318 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2319 /* set up device control for ATA_FLAG_SATA_RESET */
2320 if (ap->flags & ATA_FLAG_MMIO)
2321 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2322 else
2323 outb(ap->ctl, ioaddr->ctl_addr);
2324 }
2325
2326 DPRINTK("EXIT\n");
2327 return;
2328
2329err_out:
2330 printk(KERN_ERR "ata%u: disabling port\n", ap->id);
2331 ap->ops->port_disable(ap);
2332
2333 DPRINTK("EXIT\n");
2334}
2335
Tejun Heo7a7921e2006-02-02 18:20:00 +09002336static int sata_phy_resume(struct ata_port *ap)
2337{
2338 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo852ee162006-04-01 01:38:18 +09002339 u32 scontrol, sstatus;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002340
Tejun Heo852ee162006-04-01 01:38:18 +09002341 scontrol = scr_read(ap, SCR_CONTROL);
2342 scontrol = (scontrol & 0x0f0) | 0x300;
2343 scr_write_flush(ap, SCR_CONTROL, scontrol);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002344
2345 /* Wait for phy to become ready, if necessary. */
2346 do {
2347 msleep(200);
2348 sstatus = scr_read(ap, SCR_STATUS);
2349 if ((sstatus & 0xf) != 1)
2350 return 0;
2351 } while (time_before(jiffies, timeout));
2352
2353 return -1;
2354}
2355
Tejun Heoc2bd5802006-01-24 17:05:22 +09002356/**
Tejun Heo8a19ac82006-02-02 18:20:00 +09002357 * ata_std_probeinit - initialize probing
2358 * @ap: port to be probed
2359 *
2360 * @ap is about to be probed. Initialize it. This function is
2361 * to be used as standard callback for ata_drive_probe_reset().
Tejun Heo3a397462006-02-10 23:58:48 +09002362 *
2363 * NOTE!!! Do not use this function as probeinit if a low level
2364 * driver implements only hardreset. Just pass NULL as probeinit
2365 * in that case. Using this function is probably okay but doing
2366 * so makes reset sequence different from the original
2367 * ->phy_reset implementation and Jeff nervous. :-P
Tejun Heo8a19ac82006-02-02 18:20:00 +09002368 */
Alan Cox17efc5f2006-03-27 19:01:32 +01002369void ata_std_probeinit(struct ata_port *ap)
Tejun Heo8a19ac82006-02-02 18:20:00 +09002370{
Alan Cox17efc5f2006-03-27 19:01:32 +01002371 if ((ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002372 u32 spd;
2373
Tejun Heodb70fef2006-04-11 22:16:44 +09002374 /* set cable type and resume link */
2375 ap->cbl = ATA_CBL_SATA;
Tejun Heo8a19ac82006-02-02 18:20:00 +09002376 sata_phy_resume(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002377
Tejun Heodb70fef2006-04-11 22:16:44 +09002378 /* init sata_spd_limit to the current value */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002379 spd = (scr_read(ap, SCR_CONTROL) & 0xf0) >> 4;
2380 if (spd)
2381 ap->sata_spd_limit &= (1 << spd) - 1;
2382
Tejun Heodb70fef2006-04-11 22:16:44 +09002383 /* wait for device */
Tejun Heo3a397462006-02-10 23:58:48 +09002384 if (sata_dev_present(ap))
2385 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2386 }
Tejun Heo8a19ac82006-02-02 18:20:00 +09002387}
2388
2389/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09002390 * ata_std_softreset - reset host port via ATA SRST
2391 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002392 * @classes: resulting classes of attached devices
2393 *
2394 * Reset host port using ATA SRST. This function is to be used
2395 * as standard callback for ata_drive_*_reset() functions.
2396 *
2397 * LOCKING:
2398 * Kernel thread context (may sleep)
2399 *
2400 * RETURNS:
2401 * 0 on success, -errno otherwise.
2402 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002403int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002404{
2405 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2406 unsigned int devmask = 0, err_mask;
2407 u8 err;
2408
2409 DPRINTK("ENTER\n");
2410
Tejun Heo3a397462006-02-10 23:58:48 +09002411 if (ap->ops->scr_read && !sata_dev_present(ap)) {
2412 classes[0] = ATA_DEV_NONE;
2413 goto out;
2414 }
2415
Tejun Heoc2bd5802006-01-24 17:05:22 +09002416 /* determine if device 0/1 are present */
2417 if (ata_devchk(ap, 0))
2418 devmask |= (1 << 0);
2419 if (slave_possible && ata_devchk(ap, 1))
2420 devmask |= (1 << 1);
2421
Tejun Heoc2bd5802006-01-24 17:05:22 +09002422 /* select device 0 again */
2423 ap->ops->dev_select(ap, 0);
2424
2425 /* issue bus reset */
2426 DPRINTK("about to softreset, devmask=%x\n", devmask);
2427 err_mask = ata_bus_softreset(ap, devmask);
2428 if (err_mask) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002429 printk(KERN_ERR "ata%u: SRST failed (err_mask=0x%x)\n",
2430 ap->id, err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002431 return -EIO;
2432 }
2433
2434 /* determine by signature whether we have ATA or ATAPI devices */
2435 classes[0] = ata_dev_try_classify(ap, 0, &err);
2436 if (slave_possible && err != 0x81)
2437 classes[1] = ata_dev_try_classify(ap, 1, &err);
2438
Tejun Heo3a397462006-02-10 23:58:48 +09002439 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002440 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2441 return 0;
2442}
2443
2444/**
2445 * sata_std_hardreset - reset host port via SATA phy reset
2446 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002447 * @class: resulting class of attached device
2448 *
2449 * SATA phy-reset host port using DET bits of SControl register.
2450 * This function is to be used as standard callback for
2451 * ata_drive_*_reset().
2452 *
2453 * LOCKING:
2454 * Kernel thread context (may sleep)
2455 *
2456 * RETURNS:
2457 * 0 on success, -errno otherwise.
2458 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002459int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002460{
Tejun Heo852ee162006-04-01 01:38:18 +09002461 u32 scontrol;
2462
Tejun Heoc2bd5802006-01-24 17:05:22 +09002463 DPRINTK("ENTER\n");
2464
Tejun Heo1c3fae42006-04-02 20:53:28 +09002465 if (ata_set_sata_spd_needed(ap)) {
2466 /* SATA spec says nothing about how to reconfigure
2467 * spd. To be on the safe side, turn off phy during
2468 * reconfiguration. This works for at least ICH7 AHCI
2469 * and Sil3124.
2470 */
2471 scontrol = scr_read(ap, SCR_CONTROL);
2472 scontrol = (scontrol & 0x0f0) | 0x302;
2473 scr_write_flush(ap, SCR_CONTROL, scontrol);
2474
2475 ata_set_sata_spd(ap);
2476 }
2477
2478 /* issue phy wake/reset */
Tejun Heo852ee162006-04-01 01:38:18 +09002479 scontrol = scr_read(ap, SCR_CONTROL);
2480 scontrol = (scontrol & 0x0f0) | 0x301;
2481 scr_write_flush(ap, SCR_CONTROL, scontrol);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002482
Tejun Heo1c3fae42006-04-02 20:53:28 +09002483 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002484 * 10.4.2 says at least 1 ms.
2485 */
2486 msleep(1);
2487
Tejun Heo1c3fae42006-04-02 20:53:28 +09002488 /* bring phy back */
Tejun Heo7a7921e2006-02-02 18:20:00 +09002489 sata_phy_resume(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002490
Tejun Heoc2bd5802006-01-24 17:05:22 +09002491 /* TODO: phy layer with polling, timeouts, etc. */
2492 if (!sata_dev_present(ap)) {
2493 *class = ATA_DEV_NONE;
2494 DPRINTK("EXIT, link offline\n");
2495 return 0;
2496 }
2497
2498 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heo987d2f02006-04-11 22:16:45 +09002499 printk(KERN_ERR
2500 "ata%u: COMRESET failed (device not ready)\n", ap->id);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002501 return -EIO;
2502 }
2503
Tejun Heo3a397462006-02-10 23:58:48 +09002504 ap->ops->dev_select(ap, 0); /* probably unnecessary */
2505
Tejun Heoc2bd5802006-01-24 17:05:22 +09002506 *class = ata_dev_try_classify(ap, 0, NULL);
2507
2508 DPRINTK("EXIT, class=%u\n", *class);
2509 return 0;
2510}
2511
2512/**
2513 * ata_std_postreset - standard postreset callback
2514 * @ap: the target ata_port
2515 * @classes: classes of attached devices
2516 *
2517 * This function is invoked after a successful reset. Note that
2518 * the device might have been reset more than once using
2519 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002520 *
2521 * This function is to be used as standard callback for
2522 * ata_drive_*_reset().
2523 *
2524 * LOCKING:
2525 * Kernel thread context (may sleep)
2526 */
2527void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
2528{
2529 DPRINTK("ENTER\n");
2530
Tejun Heoc2bd5802006-01-24 17:05:22 +09002531 /* print link status */
2532 if (ap->cbl == ATA_CBL_SATA)
2533 sata_print_link_status(ap);
2534
Tejun Heo3a397462006-02-10 23:58:48 +09002535 /* re-enable interrupts */
2536 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2537 ata_irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002538
2539 /* is double-select really necessary? */
2540 if (classes[0] != ATA_DEV_NONE)
2541 ap->ops->dev_select(ap, 1);
2542 if (classes[1] != ATA_DEV_NONE)
2543 ap->ops->dev_select(ap, 0);
2544
Tejun Heo3a397462006-02-10 23:58:48 +09002545 /* bail out if no device is present */
2546 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
2547 DPRINTK("EXIT, no device\n");
2548 return;
2549 }
2550
2551 /* set up device control */
2552 if (ap->ioaddr.ctl_addr) {
2553 if (ap->flags & ATA_FLAG_MMIO)
2554 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
2555 else
2556 outb(ap->ctl, ap->ioaddr.ctl_addr);
2557 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09002558
2559 DPRINTK("EXIT\n");
2560}
2561
2562/**
2563 * ata_std_probe_reset - standard probe reset method
2564 * @ap: prot to perform probe-reset
2565 * @classes: resulting classes of attached devices
2566 *
2567 * The stock off-the-shelf ->probe_reset method.
2568 *
2569 * LOCKING:
2570 * Kernel thread context (may sleep)
2571 *
2572 * RETURNS:
2573 * 0 on success, -errno otherwise.
2574 */
2575int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes)
2576{
2577 ata_reset_fn_t hardreset;
2578
2579 hardreset = NULL;
Tejun Heodb70fef2006-04-11 22:16:44 +09002580 if (ap->cbl == ATA_CBL_SATA && ap->ops->scr_read)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002581 hardreset = sata_std_hardreset;
2582
Tejun Heo8a19ac82006-02-02 18:20:00 +09002583 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo7944ea92006-02-02 18:20:00 +09002584 ata_std_softreset, hardreset,
Tejun Heoc2bd5802006-01-24 17:05:22 +09002585 ata_std_postreset, classes);
2586}
2587
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002588int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
2589 ata_postreset_fn_t postreset, unsigned int *classes)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002590{
2591 int i, rc;
2592
2593 for (i = 0; i < ATA_MAX_DEVICES; i++)
2594 classes[i] = ATA_DEV_UNKNOWN;
2595
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002596 rc = reset(ap, classes);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002597 if (rc)
2598 return rc;
2599
2600 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
2601 * is complete and convert all ATA_DEV_UNKNOWN to
2602 * ATA_DEV_NONE.
2603 */
2604 for (i = 0; i < ATA_MAX_DEVICES; i++)
2605 if (classes[i] != ATA_DEV_UNKNOWN)
2606 break;
2607
2608 if (i < ATA_MAX_DEVICES)
2609 for (i = 0; i < ATA_MAX_DEVICES; i++)
2610 if (classes[i] == ATA_DEV_UNKNOWN)
2611 classes[i] = ATA_DEV_NONE;
2612
2613 if (postreset)
2614 postreset(ap, classes);
2615
Tejun Heo9974e7c2006-04-01 01:38:17 +09002616 return 0;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002617}
2618
2619/**
2620 * ata_drive_probe_reset - Perform probe reset with given methods
2621 * @ap: port to reset
Tejun Heo7944ea92006-02-02 18:20:00 +09002622 * @probeinit: probeinit method (can be NULL)
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002623 * @softreset: softreset method (can be NULL)
2624 * @hardreset: hardreset method (can be NULL)
2625 * @postreset: postreset method (can be NULL)
2626 * @classes: resulting classes of attached devices
2627 *
2628 * Reset the specified port and classify attached devices using
2629 * given methods. This function prefers softreset but tries all
2630 * possible reset sequences to reset and classify devices. This
2631 * function is intended to be used for constructing ->probe_reset
2632 * callback by low level drivers.
2633 *
2634 * Reset methods should follow the following rules.
2635 *
2636 * - Return 0 on sucess, -errno on failure.
2637 * - If classification is supported, fill classes[] with
2638 * recognized class codes.
2639 * - If classification is not supported, leave classes[] alone.
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002640 *
2641 * LOCKING:
2642 * Kernel thread context (may sleep)
2643 *
2644 * RETURNS:
2645 * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV
2646 * if classification fails, and any error code from reset
2647 * methods.
2648 */
Tejun Heo7944ea92006-02-02 18:20:00 +09002649int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002650 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2651 ata_postreset_fn_t postreset, unsigned int *classes)
2652{
2653 int rc = -EINVAL;
2654
Tejun Heo7944ea92006-02-02 18:20:00 +09002655 if (probeinit)
2656 probeinit(ap);
2657
Tejun Heo90dac022006-04-02 17:54:46 +09002658 if (softreset && !ata_set_sata_spd_needed(ap)) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002659 rc = ata_do_reset(ap, softreset, postreset, classes);
Tejun Heo9974e7c2006-04-01 01:38:17 +09002660 if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN)
2661 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002662 printk(KERN_INFO "ata%u: softreset failed, will try "
2663 "hardreset in 5 secs\n", ap->id);
2664 ssleep(5);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002665 }
2666
2667 if (!hardreset)
Tejun Heo9974e7c2006-04-01 01:38:17 +09002668 goto done;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002669
Tejun Heo90dac022006-04-02 17:54:46 +09002670 while (1) {
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002671 rc = ata_do_reset(ap, hardreset, postreset, classes);
Tejun Heo90dac022006-04-02 17:54:46 +09002672 if (rc == 0) {
2673 if (classes[0] != ATA_DEV_UNKNOWN)
2674 goto done;
2675 break;
2676 }
2677
2678 if (ata_down_sata_spd_limit(ap))
2679 goto done;
Tejun Heoedbabd82006-04-02 20:55:02 +09002680
2681 printk(KERN_INFO "ata%u: hardreset failed, will retry "
2682 "in 5 secs\n", ap->id);
2683 ssleep(5);
Tejun Heo90dac022006-04-02 17:54:46 +09002684 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002685
Tejun Heoedbabd82006-04-02 20:55:02 +09002686 if (softreset) {
2687 printk(KERN_INFO "ata%u: hardreset succeeded without "
2688 "classification, will retry softreset in 5 secs\n",
2689 ap->id);
2690 ssleep(5);
2691
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002692 rc = ata_do_reset(ap, softreset, postreset, classes);
Tejun Heoedbabd82006-04-02 20:55:02 +09002693 }
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002694
Tejun Heo9974e7c2006-04-01 01:38:17 +09002695 done:
2696 if (rc == 0 && classes[0] == ATA_DEV_UNKNOWN)
2697 rc = -ENODEV;
Tejun Heoa62c0fc2006-01-24 17:05:22 +09002698 return rc;
2699}
2700
Tejun Heo623a3122006-03-05 17:55:58 +09002701/**
2702 * ata_dev_same_device - Determine whether new ID matches configured device
2703 * @ap: port on which the device to compare against resides
2704 * @dev: device to compare against
2705 * @new_class: class of the new device
2706 * @new_id: IDENTIFY page of the new device
2707 *
2708 * Compare @new_class and @new_id against @dev and determine
2709 * whether @dev is the device indicated by @new_class and
2710 * @new_id.
2711 *
2712 * LOCKING:
2713 * None.
2714 *
2715 * RETURNS:
2716 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
2717 */
2718static int ata_dev_same_device(struct ata_port *ap, struct ata_device *dev,
2719 unsigned int new_class, const u16 *new_id)
2720{
2721 const u16 *old_id = dev->id;
2722 unsigned char model[2][41], serial[2][21];
2723 u64 new_n_sectors;
2724
2725 if (dev->class != new_class) {
2726 printk(KERN_INFO
2727 "ata%u: dev %u class mismatch %d != %d\n",
2728 ap->id, dev->devno, dev->class, new_class);
2729 return 0;
2730 }
2731
2732 ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0]));
2733 ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1]));
2734 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0]));
2735 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1]));
2736 new_n_sectors = ata_id_n_sectors(new_id);
2737
2738 if (strcmp(model[0], model[1])) {
2739 printk(KERN_INFO
2740 "ata%u: dev %u model number mismatch '%s' != '%s'\n",
2741 ap->id, dev->devno, model[0], model[1]);
2742 return 0;
2743 }
2744
2745 if (strcmp(serial[0], serial[1])) {
2746 printk(KERN_INFO
2747 "ata%u: dev %u serial number mismatch '%s' != '%s'\n",
2748 ap->id, dev->devno, serial[0], serial[1]);
2749 return 0;
2750 }
2751
2752 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
2753 printk(KERN_INFO
2754 "ata%u: dev %u n_sectors mismatch %llu != %llu\n",
2755 ap->id, dev->devno, (unsigned long long)dev->n_sectors,
2756 (unsigned long long)new_n_sectors);
2757 return 0;
2758 }
2759
2760 return 1;
2761}
2762
2763/**
2764 * ata_dev_revalidate - Revalidate ATA device
2765 * @ap: port on which the device to revalidate resides
2766 * @dev: device to revalidate
2767 * @post_reset: is this revalidation after reset?
2768 *
2769 * Re-read IDENTIFY page and make sure @dev is still attached to
2770 * the port.
2771 *
2772 * LOCKING:
2773 * Kernel thread context (may sleep)
2774 *
2775 * RETURNS:
2776 * 0 on success, negative errno otherwise
2777 */
2778int ata_dev_revalidate(struct ata_port *ap, struct ata_device *dev,
2779 int post_reset)
2780{
Tejun Heo5eb45c02006-04-02 18:51:52 +09002781 unsigned int class = dev->class;
2782 u16 *id = NULL;
Tejun Heo623a3122006-03-05 17:55:58 +09002783 int rc;
2784
Tejun Heo5eb45c02006-04-02 18:51:52 +09002785 if (!ata_dev_enabled(dev)) {
2786 rc = -ENODEV;
2787 goto fail;
2788 }
Tejun Heo623a3122006-03-05 17:55:58 +09002789
2790 /* allocate & read ID data */
2791 rc = ata_dev_read_id(ap, dev, &class, post_reset, &id);
2792 if (rc)
2793 goto fail;
2794
2795 /* is the device still there? */
2796 if (!ata_dev_same_device(ap, dev, class, id)) {
2797 rc = -ENODEV;
2798 goto fail;
2799 }
2800
2801 kfree(dev->id);
2802 dev->id = id;
2803
2804 /* configure device according to the new ID */
Tejun Heo5eb45c02006-04-02 18:51:52 +09002805 rc = ata_dev_configure(ap, dev, 0);
2806 if (rc == 0)
2807 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09002808
2809 fail:
2810 printk(KERN_ERR "ata%u: dev %u revalidation failed (errno=%d)\n",
2811 ap->id, dev->devno, rc);
2812 kfree(id);
2813 return rc;
2814}
2815
Arjan van de Ven98ac62d2005-11-28 10:06:23 +01002816static const char * const ata_dma_blacklist [] = {
Alan Coxf4b15fe2006-03-22 15:54:04 +00002817 "WDC AC11000H", NULL,
2818 "WDC AC22100H", NULL,
2819 "WDC AC32500H", NULL,
2820 "WDC AC33100H", NULL,
2821 "WDC AC31600H", NULL,
2822 "WDC AC32100H", "24.09P07",
2823 "WDC AC23200L", "21.10N21",
2824 "Compaq CRD-8241B", NULL,
2825 "CRD-8400B", NULL,
2826 "CRD-8480B", NULL,
2827 "CRD-8482B", NULL,
2828 "CRD-84", NULL,
2829 "SanDisk SDP3B", NULL,
2830 "SanDisk SDP3B-64", NULL,
2831 "SANYO CD-ROM CRD", NULL,
2832 "HITACHI CDR-8", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002833 "HITACHI CDR-8335", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002834 "HITACHI CDR-8435", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002835 "Toshiba CD-ROM XM-6202B", NULL,
2836 "TOSHIBA CD-ROM XM-1702BC", NULL,
2837 "CD-532E-A", NULL,
2838 "E-IDE CD-ROM CR-840", NULL,
2839 "CD-ROM Drive/F5A", NULL,
2840 "WPI CDD-820", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002841 "SAMSUNG CD-ROM SC-148C", NULL,
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002842 "SAMSUNG CD-ROM SC", NULL,
Alan Coxf4b15fe2006-03-22 15:54:04 +00002843 "SanDisk SDP3B-64", NULL,
2844 "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,
2845 "_NEC DV5800A", NULL,
2846 "SAMSUNG CD-ROM SN-124", "N001"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002848
Alan Coxf4b15fe2006-03-22 15:54:04 +00002849static int ata_strim(char *s, size_t len)
2850{
2851 len = strnlen(s, len);
2852
2853 /* ATAPI specifies that empty space is blank-filled; remove blanks */
2854 while ((len > 0) && (s[len - 1] == ' ')) {
2855 len--;
2856 s[len] = 0;
2857 }
2858 return len;
2859}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
Jeff Garzik057ace52005-10-22 14:27:05 -04002861static int ata_dma_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862{
Alan Coxf4b15fe2006-03-22 15:54:04 +00002863 unsigned char model_num[40];
2864 unsigned char model_rev[16];
2865 unsigned int nlen, rlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 int i;
2867
Alan Coxf4b15fe2006-03-22 15:54:04 +00002868 ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS,
2869 sizeof(model_num));
2870 ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS,
2871 sizeof(model_rev));
2872 nlen = ata_strim(model_num, sizeof(model_num));
2873 rlen = ata_strim(model_rev, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Alan Coxf4b15fe2006-03-22 15:54:04 +00002875 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) {
2876 if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) {
2877 if (ata_dma_blacklist[i+1] == NULL)
2878 return 1;
2879 if (!strncmp(ata_dma_blacklist[i], model_rev, rlen))
2880 return 1;
2881 }
2882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 return 0;
2884}
2885
Tejun Heoa6d5a512006-03-06 04:31:57 +09002886/**
2887 * ata_dev_xfermask - Compute supported xfermask of the given device
2888 * @ap: Port on which the device to compute xfermask for resides
2889 * @dev: Device to compute xfermask for
2890 *
Tejun Heoacf356b2006-03-24 14:07:50 +09002891 * Compute supported xfermask of @dev and store it in
2892 * dev->*_mask. This function is responsible for applying all
2893 * known limits including host controller limits, device
2894 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09002895 *
Tejun Heo600511e2006-03-25 11:14:07 +09002896 * FIXME: The current implementation limits all transfer modes to
2897 * the fastest of the lowested device on the port. This is not
Tejun Heo05c8e0a2006-03-25 14:28:57 +09002898 * required on most controllers.
Tejun Heo600511e2006-03-25 11:14:07 +09002899 *
Tejun Heoa6d5a512006-03-06 04:31:57 +09002900 * LOCKING:
2901 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09002902 */
Tejun Heoacf356b2006-03-24 14:07:50 +09002903static void ata_dev_xfermask(struct ata_port *ap, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
Alan Cox5444a6f2006-03-27 18:58:20 +01002905 struct ata_host_set *hs = ap->host_set;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002906 unsigned long xfer_mask;
2907 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Tejun Heo565083e2006-04-02 17:54:47 +09002909 xfer_mask = ata_pack_xfermask(ap->pio_mask,
2910 ap->mwdma_mask, ap->udma_mask);
2911
2912 /* Apply cable rule here. Don't apply it early because when
2913 * we handle hot plug the cable type can itself change.
2914 */
2915 if (ap->cbl == ATA_CBL_PATA40)
2916 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Alan Cox5444a6f2006-03-27 18:58:20 +01002918 /* FIXME: Use port-wide xfermask for now */
Tejun Heoa6d5a512006-03-06 04:31:57 +09002919 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2920 struct ata_device *d = &ap->device[i];
Tejun Heo565083e2006-04-02 17:54:47 +09002921
2922 if (ata_dev_absent(d))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002923 continue;
Tejun Heo565083e2006-04-02 17:54:47 +09002924
2925 if (ata_dev_disabled(d)) {
2926 /* to avoid violating device selection timing */
2927 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2928 UINT_MAX, UINT_MAX);
2929 continue;
2930 }
2931
2932 xfer_mask &= ata_pack_xfermask(d->pio_mask,
2933 d->mwdma_mask, d->udma_mask);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002934 xfer_mask &= ata_id_xfermask(d->id);
2935 if (ata_dma_blacklisted(d))
2936 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 }
2938
Tejun Heoa6d5a512006-03-06 04:31:57 +09002939 if (ata_dma_blacklisted(dev))
2940 printk(KERN_WARNING "ata%u: dev %u is on DMA blacklist, "
2941 "disabling DMA\n", ap->id, dev->devno);
2942
Alan Cox5444a6f2006-03-27 18:58:20 +01002943 if (hs->flags & ATA_HOST_SIMPLEX) {
2944 if (hs->simplex_claimed)
2945 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
2946 }
Tejun Heo565083e2006-04-02 17:54:47 +09002947
Alan Cox5444a6f2006-03-27 18:58:20 +01002948 if (ap->ops->mode_filter)
2949 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
2950
Tejun Heo565083e2006-04-02 17:54:47 +09002951 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
2952 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953}
2954
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
2957 * @ap: Port associated with device @dev
2958 * @dev: Device to which command will be sent
2959 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002960 * Issue SET FEATURES - XFER MODE command to device @dev
2961 * on port @ap.
2962 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002964 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09002965 *
2966 * RETURNS:
2967 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 */
2969
Tejun Heo83206a22006-03-24 15:25:31 +09002970static unsigned int ata_dev_set_xfermode(struct ata_port *ap,
2971 struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972{
Tejun Heoa0123702005-12-13 14:49:31 +09002973 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09002974 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976 /* set up set-features taskfile */
2977 DPRINTK("set features - xfer mode\n");
2978
Tejun Heoa0123702005-12-13 14:49:31 +09002979 ata_tf_init(ap, &tf, dev->devno);
2980 tf.command = ATA_CMD_SET_FEATURES;
2981 tf.feature = SETFEATURES_XFER;
2982 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2983 tf.protocol = ATA_PROT_NODATA;
2984 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Tejun Heod69cf372006-04-02 18:51:53 +09002986 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Tejun Heo83206a22006-03-24 15:25:31 +09002988 DPRINTK("EXIT, err_mask=%x\n", err_mask);
2989 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990}
2991
2992/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04002993 * ata_dev_init_params - Issue INIT DEV PARAMS command
2994 * @ap: Port associated with device @dev
2995 * @dev: Device to which command will be sent
2996 *
2997 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09002998 * Kernel thread context (may sleep)
2999 *
3000 * RETURNS:
3001 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003002 */
3003
Tejun Heo6aff8f12006-02-15 18:24:09 +09003004static unsigned int ata_dev_init_params(struct ata_port *ap,
Albert Lee00b6f5e2006-03-27 16:39:18 +08003005 struct ata_device *dev,
3006 u16 heads,
3007 u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003008{
Tejun Heoa0123702005-12-13 14:49:31 +09003009 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003010 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003011
3012 /* Number of sectors per track 1-255. Number of heads 1-16 */
3013 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003014 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003015
3016 /* set up init dev params taskfile */
3017 DPRINTK("init dev params \n");
3018
Tejun Heoa0123702005-12-13 14:49:31 +09003019 ata_tf_init(ap, &tf, dev->devno);
3020 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3021 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3022 tf.protocol = ATA_PROT_NODATA;
3023 tf.nsect = sectors;
3024 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003025
Tejun Heod69cf372006-04-02 18:51:53 +09003026 err_mask = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003027
Tejun Heo6aff8f12006-02-15 18:24:09 +09003028 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3029 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003030}
3031
3032/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003033 * ata_sg_clean - Unmap DMA memory associated with command
3034 * @qc: Command containing DMA memory to be released
3035 *
3036 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 *
3038 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003039 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 */
3041
3042static void ata_sg_clean(struct ata_queued_cmd *qc)
3043{
3044 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003045 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003047 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Tejun Heoa46314742006-02-11 19:11:13 +09003049 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3050 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
3052 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003053 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003055 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003057 /* if we padded the buffer out to 32-bit bound, and data
3058 * xfer direction is from-device, we must copy from the
3059 * pad buffer back into the supplied buffer
3060 */
3061 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3062 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3063
3064 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003065 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003066 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003067 /* restore last sg */
3068 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3069 if (pad_buf) {
3070 struct scatterlist *psg = &qc->pad_sgent;
3071 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3072 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003073 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003074 }
3075 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003076 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003077 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003078 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3079 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003080 /* restore sg */
3081 sg->length += qc->pad_len;
3082 if (pad_buf)
3083 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3084 pad_buf, qc->pad_len);
3085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
3087 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003088 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089}
3090
3091/**
3092 * ata_fill_sg - Fill PCI IDE PRD table
3093 * @qc: Metadata associated with taskfile to be transferred
3094 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003095 * Fill PCI IDE PRD (scatter-gather) table with segments
3096 * associated with the current disk command.
3097 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 * LOCKING:
Jeff Garzik780a87f2005-05-30 15:41:05 -04003099 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 *
3101 */
3102static void ata_fill_sg(struct ata_queued_cmd *qc)
3103{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003105 struct scatterlist *sg;
3106 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Tejun Heoa46314742006-02-11 19:11:13 +09003108 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003109 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
3111 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003112 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 u32 addr, offset;
3114 u32 sg_len, len;
3115
3116 /* determine if physical DMA addr spans 64K boundary.
3117 * Note h/w doesn't support 64-bit, so we unconditionally
3118 * truncate dma_addr_t to u32.
3119 */
3120 addr = (u32) sg_dma_address(sg);
3121 sg_len = sg_dma_len(sg);
3122
3123 while (sg_len) {
3124 offset = addr & 0xffff;
3125 len = sg_len;
3126 if ((offset + sg_len) > 0x10000)
3127 len = 0x10000 - offset;
3128
3129 ap->prd[idx].addr = cpu_to_le32(addr);
3130 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3131 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3132
3133 idx++;
3134 sg_len -= len;
3135 addr += len;
3136 }
3137 }
3138
3139 if (idx)
3140 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3141}
3142/**
3143 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3144 * @qc: Metadata associated with taskfile to check
3145 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003146 * Allow low-level driver to filter ATA PACKET commands, returning
3147 * a status indicating whether or not it is OK to use DMA for the
3148 * supplied PACKET command.
3149 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003151 * spin_lock_irqsave(host_set lock)
3152 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 * RETURNS: 0 when ATAPI DMA can be used
3154 * nonzero otherwise
3155 */
3156int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3157{
3158 struct ata_port *ap = qc->ap;
3159 int rc = 0; /* Assume ATAPI DMA is OK by default */
3160
3161 if (ap->ops->check_atapi_dma)
3162 rc = ap->ops->check_atapi_dma(qc);
3163
3164 return rc;
3165}
3166/**
3167 * ata_qc_prep - Prepare taskfile for submission
3168 * @qc: Metadata associated with taskfile to be prepared
3169 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003170 * Prepare ATA taskfile for submission.
3171 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 * LOCKING:
3173 * spin_lock_irqsave(host_set lock)
3174 */
3175void ata_qc_prep(struct ata_queued_cmd *qc)
3176{
3177 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3178 return;
3179
3180 ata_fill_sg(qc);
3181}
3182
Brian Kinge46834c2006-03-17 17:04:03 -06003183void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3184
Jeff Garzik0cba6322005-05-30 19:49:12 -04003185/**
3186 * ata_sg_init_one - Associate command with memory buffer
3187 * @qc: Command to be associated
3188 * @buf: Memory buffer
3189 * @buflen: Length of memory buffer, in bytes.
3190 *
3191 * Initialize the data-related elements of queued_cmd @qc
3192 * to point to a single memory buffer, @buf of byte length @buflen.
3193 *
3194 * LOCKING:
3195 * spin_lock_irqsave(host_set lock)
3196 */
3197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3199{
3200 struct scatterlist *sg;
3201
3202 qc->flags |= ATA_QCFLAG_SINGLE;
3203
3204 memset(&qc->sgent, 0, sizeof(qc->sgent));
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003205 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003207 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 qc->buf_virt = buf;
3209
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003210 sg = qc->__sg;
Jeff Garzikf0612bb2005-10-30 01:58:18 -05003211 sg_init_one(sg, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212}
3213
Jeff Garzik0cba6322005-05-30 19:49:12 -04003214/**
3215 * ata_sg_init - Associate command with scatter-gather table.
3216 * @qc: Command to be associated
3217 * @sg: Scatter-gather table.
3218 * @n_elem: Number of elements in s/g table.
3219 *
3220 * Initialize the data-related elements of queued_cmd @qc
3221 * to point to a scatter-gather table @sg, containing @n_elem
3222 * elements.
3223 *
3224 * LOCKING:
3225 * spin_lock_irqsave(host_set lock)
3226 */
3227
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3229 unsigned int n_elem)
3230{
3231 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003232 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003234 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235}
3236
3237/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003238 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3239 * @qc: Command with memory buffer to be mapped.
3240 *
3241 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 *
3243 * LOCKING:
3244 * spin_lock_irqsave(host_set lock)
3245 *
3246 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003247 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 */
3249
3250static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3251{
3252 struct ata_port *ap = qc->ap;
3253 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003254 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003256 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003258 /* we must lengthen transfers to end on a 32-bit boundary */
3259 qc->pad_len = sg->length & 3;
3260 if (qc->pad_len) {
3261 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3262 struct scatterlist *psg = &qc->pad_sgent;
3263
Tejun Heoa46314742006-02-11 19:11:13 +09003264 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003265
3266 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3267
3268 if (qc->tf.flags & ATA_TFLAG_WRITE)
3269 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3270 qc->pad_len);
3271
3272 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3273 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3274 /* trim sg */
3275 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003276 if (sg->length == 0)
3277 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003278
3279 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3280 sg->length, qc->pad_len);
3281 }
3282
Tejun Heo2e242fa2006-02-20 23:48:38 +09003283 if (trim_sg) {
3284 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003285 goto skip_map;
3286 }
3287
Brian King2f1f6102006-03-23 17:30:15 -06003288 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003289 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003290 if (dma_mapping_error(dma_address)) {
3291 /* restore sg */
3292 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
3296 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003297 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
Tejun Heo2e242fa2006-02-20 23:48:38 +09003299skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3301 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3302
3303 return 0;
3304}
3305
3306/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003307 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3308 * @qc: Command with scatter-gather table to be mapped.
3309 *
3310 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 *
3312 * LOCKING:
3313 * spin_lock_irqsave(host_set lock)
3314 *
3315 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003316 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 *
3318 */
3319
3320static int ata_sg_setup(struct ata_queued_cmd *qc)
3321{
3322 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003323 struct scatterlist *sg = qc->__sg;
3324 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003325 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
3327 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa46314742006-02-11 19:11:13 +09003328 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003330 /* we must lengthen transfers to end on a 32-bit boundary */
3331 qc->pad_len = lsg->length & 3;
3332 if (qc->pad_len) {
3333 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3334 struct scatterlist *psg = &qc->pad_sgent;
3335 unsigned int offset;
3336
Tejun Heoa46314742006-02-11 19:11:13 +09003337 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003338
3339 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3340
3341 /*
3342 * psg->page/offset are used to copy to-be-written
3343 * data in this function or read data in ata_sg_clean.
3344 */
3345 offset = lsg->offset + lsg->length - qc->pad_len;
3346 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3347 psg->offset = offset_in_page(offset);
3348
3349 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3350 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3351 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003352 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003353 }
3354
3355 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3356 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3357 /* trim last sg */
3358 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003359 if (lsg->length == 0)
3360 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003361
3362 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3363 qc->n_elem - 1, lsg->length, qc->pad_len);
3364 }
3365
Jeff Garzike1410f22005-11-14 14:06:26 -05003366 pre_n_elem = qc->n_elem;
3367 if (trim_sg && pre_n_elem)
3368 pre_n_elem--;
3369
3370 if (!pre_n_elem) {
3371 n_elem = 0;
3372 goto skip_map;
3373 }
3374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003376 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003377 if (n_elem < 1) {
3378 /* restore last sg */
3379 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
3383 DPRINTK("%d sg elements mapped\n", n_elem);
3384
Jeff Garzike1410f22005-11-14 14:06:26 -05003385skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 qc->n_elem = n_elem;
3387
3388 return 0;
3389}
3390
3391/**
Tejun Heo40e8c822005-08-22 17:12:45 +09003392 * ata_poll_qc_complete - turn irq back on and finish qc
3393 * @qc: Command to complete
Randy Dunlap8e8b77d2005-11-01 21:29:27 -08003394 * @err_mask: ATA status register content
Tejun Heo40e8c822005-08-22 17:12:45 +09003395 *
3396 * LOCKING:
3397 * None. (grabs host lock)
3398 */
3399
Albert Leea22e2eb2005-12-05 15:38:02 +08003400void ata_poll_qc_complete(struct ata_queued_cmd *qc)
Tejun Heo40e8c822005-08-22 17:12:45 +09003401{
3402 struct ata_port *ap = qc->ap;
Jeff Garzikb8f61532005-08-25 22:01:20 -04003403 unsigned long flags;
Tejun Heo40e8c822005-08-22 17:12:45 +09003404
Jeff Garzikb8f61532005-08-25 22:01:20 -04003405 spin_lock_irqsave(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003406 ap->flags &= ~ATA_FLAG_NOINTR;
3407 ata_irq_on(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +08003408 ata_qc_complete(qc);
Jeff Garzikb8f61532005-08-25 22:01:20 -04003409 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Tejun Heo40e8c822005-08-22 17:12:45 +09003410}
3411
3412/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003413 * ata_pio_poll - poll using PIO, depending on current state
Tejun Heoc91af2c2006-04-02 18:51:53 +09003414 * @qc: qc in progress
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 *
3416 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003417 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 *
3419 * RETURNS:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003420 * timeout value to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003422static unsigned long ata_pio_poll(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003424 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 u8 status;
Albert Lee14be71f2005-09-27 17:36:35 +08003426 unsigned int poll_state = HSM_ST_UNKNOWN;
3427 unsigned int reg_state = HSM_ST_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
Albert Lee14be71f2005-09-27 17:36:35 +08003429 switch (ap->hsm_task_state) {
3430 case HSM_ST:
3431 case HSM_ST_POLL:
3432 poll_state = HSM_ST_POLL;
3433 reg_state = HSM_ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 break;
Albert Lee14be71f2005-09-27 17:36:35 +08003435 case HSM_ST_LAST:
3436 case HSM_ST_LAST_POLL:
3437 poll_state = HSM_ST_LAST_POLL;
3438 reg_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 break;
3440 default:
3441 BUG();
3442 break;
3443 }
3444
3445 status = ata_chk_status(ap);
3446 if (status & ATA_BUSY) {
3447 if (time_after(jiffies, ap->pio_task_timeout)) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003448 qc->err_mask |= AC_ERR_TIMEOUT;
Albert Lee7c398332005-11-09 13:03:30 +08003449 ap->hsm_task_state = HSM_ST_TMOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 return 0;
3451 }
Albert Lee14be71f2005-09-27 17:36:35 +08003452 ap->hsm_task_state = poll_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 return ATA_SHORT_PAUSE;
3454 }
3455
Albert Lee14be71f2005-09-27 17:36:35 +08003456 ap->hsm_task_state = reg_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 return 0;
3458}
3459
3460/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003461 * ata_pio_complete - check if drive is busy or idle
Tejun Heoc91af2c2006-04-02 18:51:53 +09003462 * @qc: qc to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 *
3464 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003465 * None. (executing in kernel thread context)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003466 *
3467 * RETURNS:
3468 * Non-zero if qc completed, zero otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003470static int ata_pio_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003472 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 u8 drv_stat;
3474
3475 /*
Alan Cox31433ea2005-08-26 15:56:47 +01003476 * This is purely heuristic. This is a fast path. Sometimes when
3477 * we enter, BSY will be cleared in a chk-status or two. If not,
3478 * the drive is probably seeking or something. Snooze for a couple
3479 * msecs, then chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003480 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 */
Albert Leefe79e682005-12-06 11:34:59 +08003482 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3483 if (drv_stat & ATA_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 msleep(2);
Albert Leefe79e682005-12-06 11:34:59 +08003485 drv_stat = ata_busy_wait(ap, ATA_BUSY, 10);
3486 if (drv_stat & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003487 ap->hsm_task_state = HSM_ST_LAST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 }
3491 }
3492
3493 drv_stat = ata_wait_idle(ap);
3494 if (!ata_ok(drv_stat)) {
Albert Lee1c848982005-12-05 15:40:15 +08003495 qc->err_mask |= __ac_err_mask(drv_stat);
Albert Lee14be71f2005-09-27 17:36:35 +08003496 ap->hsm_task_state = HSM_ST_ERR;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003497 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 }
3499
Albert Lee14be71f2005-09-27 17:36:35 +08003500 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501
Tejun Heoa46314742006-02-11 19:11:13 +09003502 WARN_ON(qc->err_mask);
Albert Leea22e2eb2005-12-05 15:38:02 +08003503 ata_poll_qc_complete(qc);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003504
3505 /* another command may start at this point */
3506
3507 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508}
3509
Edward Falk0baab862005-06-02 18:17:13 -04003510
3511/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003512 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003513 * @buf: Buffer to swap
3514 * @buf_words: Number of 16-bit words in buffer.
3515 *
3516 * Swap halves of 16-bit words if needed to convert from
3517 * little-endian byte order to native cpu byte order, or
3518 * vice-versa.
3519 *
3520 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003521 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003522 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523void swap_buf_le16(u16 *buf, unsigned int buf_words)
3524{
3525#ifdef __BIG_ENDIAN
3526 unsigned int i;
3527
3528 for (i = 0; i < buf_words; i++)
3529 buf[i] = le16_to_cpu(buf[i]);
3530#endif /* __BIG_ENDIAN */
3531}
3532
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003533/**
3534 * ata_mmio_data_xfer - Transfer data by MMIO
3535 * @ap: port to read/write
3536 * @buf: data buffer
3537 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003538 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003539 *
3540 * Transfer data from/to the device data register by MMIO.
3541 *
3542 * LOCKING:
3543 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003544 */
3545
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546static void ata_mmio_data_xfer(struct ata_port *ap, unsigned char *buf,
3547 unsigned int buflen, int write_data)
3548{
3549 unsigned int i;
3550 unsigned int words = buflen >> 1;
3551 u16 *buf16 = (u16 *) buf;
3552 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3553
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003554 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 if (write_data) {
3556 for (i = 0; i < words; i++)
3557 writew(le16_to_cpu(buf16[i]), mmio);
3558 } else {
3559 for (i = 0; i < words; i++)
3560 buf16[i] = cpu_to_le16(readw(mmio));
3561 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003562
3563 /* Transfer trailing 1 byte, if any. */
3564 if (unlikely(buflen & 0x01)) {
3565 u16 align_buf[1] = { 0 };
3566 unsigned char *trailing_buf = buf + buflen - 1;
3567
3568 if (write_data) {
3569 memcpy(align_buf, trailing_buf, 1);
3570 writew(le16_to_cpu(align_buf[0]), mmio);
3571 } else {
3572 align_buf[0] = cpu_to_le16(readw(mmio));
3573 memcpy(trailing_buf, align_buf, 1);
3574 }
3575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576}
3577
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003578/**
3579 * ata_pio_data_xfer - Transfer data by PIO
3580 * @ap: port to read/write
3581 * @buf: data buffer
3582 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003583 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003584 *
3585 * Transfer data from/to the device data register by PIO.
3586 *
3587 * LOCKING:
3588 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003589 */
3590
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591static void ata_pio_data_xfer(struct ata_port *ap, unsigned char *buf,
3592 unsigned int buflen, int write_data)
3593{
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003594 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003596 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003598 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003600 insw(ap->ioaddr.data_addr, buf, words);
3601
3602 /* Transfer trailing 1 byte, if any. */
3603 if (unlikely(buflen & 0x01)) {
3604 u16 align_buf[1] = { 0 };
3605 unsigned char *trailing_buf = buf + buflen - 1;
3606
3607 if (write_data) {
3608 memcpy(align_buf, trailing_buf, 1);
3609 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3610 } else {
3611 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3612 memcpy(trailing_buf, align_buf, 1);
3613 }
3614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615}
3616
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003617/**
3618 * ata_data_xfer - Transfer data from/to the data register.
3619 * @ap: port to read/write
3620 * @buf: data buffer
3621 * @buflen: buffer length
3622 * @do_write: read/write
3623 *
3624 * Transfer data from/to the device data register.
3625 *
3626 * LOCKING:
3627 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003628 */
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630static void ata_data_xfer(struct ata_port *ap, unsigned char *buf,
3631 unsigned int buflen, int do_write)
3632{
Alan Coxa1bd9e62006-01-17 20:53:50 +00003633 /* Make the crap hardware pay the costs not the good stuff */
3634 if (unlikely(ap->flags & ATA_FLAG_IRQ_MASK)) {
3635 unsigned long flags;
3636 local_irq_save(flags);
3637 if (ap->flags & ATA_FLAG_MMIO)
3638 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3639 else
3640 ata_pio_data_xfer(ap, buf, buflen, do_write);
3641 local_irq_restore(flags);
3642 } else {
3643 if (ap->flags & ATA_FLAG_MMIO)
3644 ata_mmio_data_xfer(ap, buf, buflen, do_write);
3645 else
3646 ata_pio_data_xfer(ap, buf, buflen, do_write);
3647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648}
3649
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003650/**
3651 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3652 * @qc: Command on going
3653 *
3654 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3655 *
3656 * LOCKING:
3657 * Inherited from caller.
3658 */
3659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660static void ata_pio_sector(struct ata_queued_cmd *qc)
3661{
3662 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003663 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 struct ata_port *ap = qc->ap;
3665 struct page *page;
3666 unsigned int offset;
3667 unsigned char *buf;
3668
3669 if (qc->cursect == (qc->nsect - 1))
Albert Lee14be71f2005-09-27 17:36:35 +08003670 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
3672 page = sg[qc->cursg].page;
3673 offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE;
3674
3675 /* get the current page and offset */
3676 page = nth_page(page, (offset >> PAGE_SHIFT));
3677 offset %= PAGE_SIZE;
3678
3679 buf = kmap(page) + offset;
3680
3681 qc->cursect++;
3682 qc->cursg_ofs++;
3683
Albert Lee32529e02005-05-26 03:49:42 -04003684 if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 qc->cursg++;
3686 qc->cursg_ofs = 0;
3687 }
3688
3689 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3690
3691 /* do the actual data transfer */
3692 do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
3693 ata_data_xfer(ap, buf, ATA_SECT_SIZE, do_write);
3694
3695 kunmap(page);
3696}
3697
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003698/**
3699 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3700 * @qc: Command on going
3701 * @bytes: number of bytes
3702 *
3703 * Transfer Transfer data from/to the ATAPI device.
3704 *
3705 * LOCKING:
3706 * Inherited from caller.
3707 *
3708 */
3709
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3711{
3712 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003713 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 struct ata_port *ap = qc->ap;
3715 struct page *page;
3716 unsigned char *buf;
3717 unsigned int offset, count;
3718
Albert Lee563a6e12005-08-12 14:17:50 +08003719 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003720 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
3722next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003723 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003724 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003725 * The end of qc->sg is reached and the device expects
3726 * more data to transfer. In order not to overrun qc->sg
3727 * and fulfill length specified in the byte count register,
3728 * - for read case, discard trailing data from the device
3729 * - for write case, padding zero data to the device
3730 */
3731 u16 pad_buf[1] = { 0 };
3732 unsigned int words = bytes >> 1;
3733 unsigned int i;
3734
3735 if (words) /* warning if bytes > 1 */
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003736 printk(KERN_WARNING "ata%u: %u bytes trailing data\n",
Albert Lee563a6e12005-08-12 14:17:50 +08003737 ap->id, bytes);
3738
3739 for (i = 0; i < words; i++)
3740 ata_data_xfer(ap, (unsigned char*)pad_buf, 2, do_write);
3741
Albert Lee14be71f2005-09-27 17:36:35 +08003742 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08003743 return;
3744 }
3745
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003746 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 page = sg->page;
3749 offset = sg->offset + qc->cursg_ofs;
3750
3751 /* get the current page and offset */
3752 page = nth_page(page, (offset >> PAGE_SHIFT));
3753 offset %= PAGE_SIZE;
3754
Albert Lee6952df02005-06-06 15:56:03 +08003755 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04003756 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
3758 /* don't cross page boundaries */
3759 count = min(count, (unsigned int)PAGE_SIZE - offset);
3760
3761 buf = kmap(page) + offset;
3762
3763 bytes -= count;
3764 qc->curbytes += count;
3765 qc->cursg_ofs += count;
3766
Albert Lee32529e02005-05-26 03:49:42 -04003767 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 qc->cursg++;
3769 qc->cursg_ofs = 0;
3770 }
3771
3772 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3773
3774 /* do the actual data transfer */
3775 ata_data_xfer(ap, buf, count, do_write);
3776
3777 kunmap(page);
3778
Albert Lee563a6e12005-08-12 14:17:50 +08003779 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781}
3782
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003783/**
3784 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
3785 * @qc: Command on going
3786 *
3787 * Transfer Transfer data from/to the ATAPI device.
3788 *
3789 * LOCKING:
3790 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003791 */
3792
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793static void atapi_pio_bytes(struct ata_queued_cmd *qc)
3794{
3795 struct ata_port *ap = qc->ap;
3796 struct ata_device *dev = qc->dev;
3797 unsigned int ireason, bc_lo, bc_hi, bytes;
3798 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
3799
3800 ap->ops->tf_read(ap, &qc->tf);
3801 ireason = qc->tf.nsect;
3802 bc_lo = qc->tf.lbam;
3803 bc_hi = qc->tf.lbah;
3804 bytes = (bc_hi << 8) | bc_lo;
3805
3806 /* shall be cleared to zero, indicating xfer of data */
3807 if (ireason & (1 << 0))
3808 goto err_out;
3809
3810 /* make sure transfer direction matches expected */
3811 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
3812 if (do_write != i_write)
3813 goto err_out;
3814
3815 __atapi_pio_bytes(qc, bytes);
3816
3817 return;
3818
3819err_out:
3820 printk(KERN_INFO "ata%u: dev %u: ATAPI check failed\n",
3821 ap->id, dev->devno);
Tejun Heo11a56d22006-01-23 13:09:36 +09003822 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003823 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824}
3825
3826/**
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003827 * ata_pio_block - start PIO on a block
Tejun Heoc91af2c2006-04-02 18:51:53 +09003828 * @qc: qc to transfer block for
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 *
3830 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003831 * None. (executing in kernel thread context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 */
Tejun Heoc91af2c2006-04-02 18:51:53 +09003833static void ata_pio_block(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003835 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 u8 status;
3837
3838 /*
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003839 * This is purely heuristic. This is a fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 * Sometimes when we enter, BSY will be cleared in
3841 * a chk-status or two. If not, the drive is probably seeking
3842 * or something. Snooze for a couple msecs, then
3843 * chk-status again. If still busy, fall back to
Albert Lee14be71f2005-09-27 17:36:35 +08003844 * HSM_ST_POLL state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 */
3846 status = ata_busy_wait(ap, ATA_BUSY, 5);
3847 if (status & ATA_BUSY) {
3848 msleep(2);
3849 status = ata_busy_wait(ap, ATA_BUSY, 10);
3850 if (status & ATA_BUSY) {
Albert Lee14be71f2005-09-27 17:36:35 +08003851 ap->hsm_task_state = HSM_ST_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 ap->pio_task_timeout = jiffies + ATA_TMOUT_PIO;
3853 return;
3854 }
3855 }
3856
Albert Leefe79e682005-12-06 11:34:59 +08003857 /* check error */
3858 if (status & (ATA_ERR | ATA_DF)) {
3859 qc->err_mask |= AC_ERR_DEV;
3860 ap->hsm_task_state = HSM_ST_ERR;
3861 return;
3862 }
3863
3864 /* transfer data if any */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 if (is_atapi_taskfile(&qc->tf)) {
Albert Leefe79e682005-12-06 11:34:59 +08003866 /* DRQ=0 means no more data to transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 if ((status & ATA_DRQ) == 0) {
Albert Lee14be71f2005-09-27 17:36:35 +08003868 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 return;
3870 }
3871
3872 atapi_pio_bytes(qc);
3873 } else {
3874 /* handle BSY=0, DRQ=0 as error */
3875 if ((status & ATA_DRQ) == 0) {
Tejun Heo11a56d22006-01-23 13:09:36 +09003876 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08003877 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 return;
3879 }
3880
3881 ata_pio_sector(qc);
3882 }
3883}
3884
Tejun Heoc91af2c2006-04-02 18:51:53 +09003885static void ata_pio_error(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003887 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Albert Lee0565c262006-02-13 18:55:25 +08003889 if (qc->tf.command != ATA_CMD_PACKET)
Tejun Heod63cb4a2006-04-02 18:51:52 +09003890 printk(KERN_WARNING "ata%u: dev %u PIO error\n",
3891 ap->id, qc->dev->devno);
Albert Lee0565c262006-02-13 18:55:25 +08003892
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003893 /* make sure qc->err_mask is available to
Albert Lee1c848982005-12-05 15:40:15 +08003894 * know what's wrong and recover
3895 */
Tejun Heoa46314742006-02-11 19:11:13 +09003896 WARN_ON(qc->err_mask == 0);
Albert Lee1c848982005-12-05 15:40:15 +08003897
Albert Lee14be71f2005-09-27 17:36:35 +08003898 ap->hsm_task_state = HSM_ST_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899
Albert Leea22e2eb2005-12-05 15:38:02 +08003900 ata_poll_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901}
3902
3903static void ata_pio_task(void *_data)
3904{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003905 struct ata_queued_cmd *qc = _data;
3906 struct ata_port *ap = qc->ap;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003907 unsigned long timeout;
3908 int qc_completed;
3909
3910fsm_start:
3911 timeout = 0;
3912 qc_completed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Albert Lee14be71f2005-09-27 17:36:35 +08003914 switch (ap->hsm_task_state) {
3915 case HSM_ST_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 return;
3917
Albert Lee14be71f2005-09-27 17:36:35 +08003918 case HSM_ST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003919 ata_pio_block(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 break;
3921
Albert Lee14be71f2005-09-27 17:36:35 +08003922 case HSM_ST_LAST:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003923 qc_completed = ata_pio_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 break;
3925
Albert Lee14be71f2005-09-27 17:36:35 +08003926 case HSM_ST_POLL:
3927 case HSM_ST_LAST_POLL:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003928 timeout = ata_pio_poll(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 break;
3930
Albert Lee14be71f2005-09-27 17:36:35 +08003931 case HSM_ST_TMOUT:
3932 case HSM_ST_ERR:
Tejun Heoc91af2c2006-04-02 18:51:53 +09003933 ata_pio_error(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 return;
3935 }
3936
3937 if (timeout)
Tejun Heoc91af2c2006-04-02 18:51:53 +09003938 ata_port_queue_task(ap, ata_pio_task, qc, timeout);
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003939 else if (!qc_completed)
3940 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941}
3942
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943/**
Tejun Heo8061f5f2006-03-05 15:29:09 +09003944 * atapi_packet_task - Write CDB bytes to hardware
Tejun Heoc91af2c2006-04-02 18:51:53 +09003945 * @_data: qc in progress
Tejun Heo8061f5f2006-03-05 15:29:09 +09003946 *
3947 * When device has indicated its readiness to accept
3948 * a CDB, this function is called. Send the CDB.
3949 * If DMA is to be performed, exit immediately.
3950 * Otherwise, we are in polling mode, so poll
3951 * status under operation succeeds or fails.
3952 *
3953 * LOCKING:
3954 * Kernel thread context (may sleep)
3955 */
Tejun Heo8061f5f2006-03-05 15:29:09 +09003956static void atapi_packet_task(void *_data)
3957{
Tejun Heoc91af2c2006-04-02 18:51:53 +09003958 struct ata_queued_cmd *qc = _data;
3959 struct ata_port *ap = qc->ap;
Tejun Heo8061f5f2006-03-05 15:29:09 +09003960 u8 status;
3961
Tejun Heo8061f5f2006-03-05 15:29:09 +09003962 /* sleep-wait for BSY to clear */
3963 DPRINTK("busy wait\n");
3964 if (ata_busy_sleep(ap, ATA_TMOUT_CDB_QUICK, ATA_TMOUT_CDB)) {
3965 qc->err_mask |= AC_ERR_TIMEOUT;
3966 goto err_out;
3967 }
3968
3969 /* make sure DRQ is set */
3970 status = ata_chk_status(ap);
3971 if ((status & (ATA_BUSY | ATA_DRQ)) != ATA_DRQ) {
3972 qc->err_mask |= AC_ERR_HSM;
3973 goto err_out;
3974 }
3975
3976 /* send SCSI cdb */
3977 DPRINTK("send cdb\n");
3978 WARN_ON(qc->dev->cdb_len < 12);
3979
3980 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA ||
3981 qc->tf.protocol == ATA_PROT_ATAPI_NODATA) {
3982 unsigned long flags;
3983
3984 /* Once we're done issuing command and kicking bmdma,
3985 * irq handler takes over. To not lose irq, we need
3986 * to clear NOINTR flag before sending cdb, but
3987 * interrupt handler shouldn't be invoked before we're
3988 * finished. Hence, the following locking.
3989 */
3990 spin_lock_irqsave(&ap->host_set->lock, flags);
3991 ap->flags &= ~ATA_FLAG_NOINTR;
3992 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
3993 if (qc->tf.protocol == ATA_PROT_ATAPI_DMA)
3994 ap->ops->bmdma_start(qc); /* initiate bmdma */
3995 spin_unlock_irqrestore(&ap->host_set->lock, flags);
3996 } else {
3997 ata_data_xfer(ap, qc->cdb, qc->dev->cdb_len, 1);
3998
3999 /* PIO commands are handled by polling */
4000 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004001 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Tejun Heo8061f5f2006-03-05 15:29:09 +09004002 }
4003
4004 return;
4005
4006err_out:
4007 ata_poll_qc_complete(qc);
4008}
4009
4010/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 * ata_qc_new - Request an available ATA command, for queueing
4012 * @ap: Port associated with device @dev
4013 * @dev: Device from whom we request an available command structure
4014 *
4015 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004016 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 */
4018
4019static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4020{
4021 struct ata_queued_cmd *qc = NULL;
4022 unsigned int i;
4023
4024 for (i = 0; i < ATA_MAX_QUEUE; i++)
4025 if (!test_and_set_bit(i, &ap->qactive)) {
4026 qc = ata_qc_from_tag(ap, i);
4027 break;
4028 }
4029
4030 if (qc)
4031 qc->tag = i;
4032
4033 return qc;
4034}
4035
4036/**
4037 * ata_qc_new_init - Request an available ATA command, and initialize it
4038 * @ap: Port associated with device @dev
4039 * @dev: Device from whom we request an available command structure
4040 *
4041 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004042 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 */
4044
4045struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap,
4046 struct ata_device *dev)
4047{
4048 struct ata_queued_cmd *qc;
4049
4050 qc = ata_qc_new(ap);
4051 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 qc->scsicmd = NULL;
4053 qc->ap = ap;
4054 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004056 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 }
4058
4059 return qc;
4060}
4061
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062/**
4063 * ata_qc_free - free unused ata_queued_cmd
4064 * @qc: Command to complete
4065 *
4066 * Designed to free unused ata_queued_cmd object
4067 * in case something prevents using it.
4068 *
4069 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004070 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 */
4072void ata_qc_free(struct ata_queued_cmd *qc)
4073{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004074 struct ata_port *ap = qc->ap;
4075 unsigned int tag;
4076
Tejun Heoa46314742006-02-11 19:11:13 +09004077 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Tejun Heo4ba946e2006-01-23 13:09:36 +09004079 qc->flags = 0;
4080 tag = qc->tag;
4081 if (likely(ata_tag_valid(tag))) {
4082 if (tag == ap->active_tag)
4083 ap->active_tag = ATA_TAG_POISON;
4084 qc->tag = ATA_TAG_POISON;
4085 clear_bit(tag, &ap->qactive);
4086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087}
4088
Tejun Heo76014422006-02-11 15:13:49 +09004089void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090{
Tejun Heoa46314742006-02-11 19:11:13 +09004091 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4092 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093
4094 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4095 ata_sg_clean(qc);
4096
Albert Lee3f3791d2005-08-16 14:25:38 +08004097 /* atapi: mark qc as inactive to prevent the interrupt handler
4098 * from completing the command twice later, before the error handler
4099 * is called. (when rc != 0 and atapi request sense is needed)
4100 */
4101 qc->flags &= ~ATA_QCFLAG_ACTIVE;
4102
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004104 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105}
4106
4107static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4108{
4109 struct ata_port *ap = qc->ap;
4110
4111 switch (qc->tf.protocol) {
4112 case ATA_PROT_DMA:
4113 case ATA_PROT_ATAPI_DMA:
4114 return 1;
4115
4116 case ATA_PROT_ATAPI:
4117 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 if (ap->flags & ATA_FLAG_PIO_DMA)
4119 return 1;
4120
4121 /* fall through */
4122
4123 default:
4124 return 0;
4125 }
4126
4127 /* never reached */
4128}
4129
4130/**
4131 * ata_qc_issue - issue taskfile to device
4132 * @qc: command to issue to device
4133 *
4134 * Prepare an ATA command to submission to device.
4135 * This includes mapping the data into a DMA-able
4136 * area, filling in the S/G table, and finally
4137 * writing the taskfile to hardware, starting the command.
4138 *
4139 * LOCKING:
4140 * spin_lock_irqsave(host_set lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004142void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143{
4144 struct ata_port *ap = qc->ap;
4145
Tejun Heoe4a70e72006-03-31 20:36:47 +09004146 qc->ap->active_tag = qc->tag;
4147 qc->flags |= ATA_QCFLAG_ACTIVE;
4148
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 if (ata_should_dma_map(qc)) {
4150 if (qc->flags & ATA_QCFLAG_SG) {
4151 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004152 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4154 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004155 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 }
4157 } else {
4158 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4159 }
4160
4161 ap->ops->qc_prep(qc);
4162
Tejun Heo8e0e6942006-03-31 20:41:11 +09004163 qc->err_mask |= ap->ops->qc_issue(qc);
4164 if (unlikely(qc->err_mask))
4165 goto err;
4166 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
Tejun Heo8e436af2006-01-23 13:09:36 +09004168sg_err:
4169 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004170 qc->err_mask |= AC_ERR_SYSTEM;
4171err:
4172 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173}
4174
4175/**
4176 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4177 * @qc: command to issue to device
4178 *
4179 * Using various libata functions and hooks, this function
4180 * starts an ATA command. ATA commands are grouped into
4181 * classes called "protocols", and issuing each type of protocol
4182 * is slightly different.
4183 *
Edward Falk0baab862005-06-02 18:17:13 -04004184 * May be used as the qc_issue() entry in ata_port_operations.
4185 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 * LOCKING:
4187 * spin_lock_irqsave(host_set lock)
4188 *
4189 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004190 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 */
4192
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004193unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194{
4195 struct ata_port *ap = qc->ap;
4196
4197 ata_dev_select(ap, qc->dev->devno, 1, 0);
4198
4199 switch (qc->tf.protocol) {
4200 case ATA_PROT_NODATA:
Jeff Garzike5338252005-10-30 21:37:17 -05004201 ata_tf_to_host(ap, &qc->tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 break;
4203
4204 case ATA_PROT_DMA:
4205 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4206 ap->ops->bmdma_setup(qc); /* set up bmdma */
4207 ap->ops->bmdma_start(qc); /* initiate bmdma */
4208 break;
4209
4210 case ATA_PROT_PIO: /* load tf registers, initiate polling pio */
4211 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004212 ata_tf_to_host(ap, &qc->tf);
Albert Lee14be71f2005-09-27 17:36:35 +08004213 ap->hsm_task_state = HSM_ST;
Tejun Heoc91af2c2006-04-02 18:51:53 +09004214 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 break;
4216
4217 case ATA_PROT_ATAPI:
4218 ata_qc_set_polling(qc);
Jeff Garzike5338252005-10-30 21:37:17 -05004219 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004220 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 break;
4222
4223 case ATA_PROT_ATAPI_NODATA:
Tejun Heoc1389502005-08-22 14:59:24 +09004224 ap->flags |= ATA_FLAG_NOINTR;
Jeff Garzike5338252005-10-30 21:37:17 -05004225 ata_tf_to_host(ap, &qc->tf);
Tejun Heoc91af2c2006-04-02 18:51:53 +09004226 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 break;
4228
4229 case ATA_PROT_ATAPI_DMA:
Tejun Heoc1389502005-08-22 14:59:24 +09004230 ap->flags |= ATA_FLAG_NOINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4232 ap->ops->bmdma_setup(qc); /* set up bmdma */
Tejun Heoc91af2c2006-04-02 18:51:53 +09004233 ata_port_queue_task(ap, atapi_packet_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 break;
4235
4236 default:
4237 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004238 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 }
4240
4241 return 0;
4242}
4243
4244/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 * ata_host_intr - Handle host interrupt for given (port, task)
4246 * @ap: Port on which interrupt arrived (possibly...)
4247 * @qc: Taskfile currently active in engine
4248 *
4249 * Handle host interrupt for given queued command. Currently,
4250 * only DMA interrupts are handled. All other commands are
4251 * handled via polling with interrupts disabled (nIEN bit).
4252 *
4253 * LOCKING:
4254 * spin_lock_irqsave(host_set lock)
4255 *
4256 * RETURNS:
4257 * One if interrupt was handled, zero if not (shared irq).
4258 */
4259
4260inline unsigned int ata_host_intr (struct ata_port *ap,
4261 struct ata_queued_cmd *qc)
4262{
4263 u8 status, host_stat;
4264
4265 switch (qc->tf.protocol) {
4266
4267 case ATA_PROT_DMA:
4268 case ATA_PROT_ATAPI_DMA:
4269 case ATA_PROT_ATAPI:
4270 /* check status of DMA engine */
4271 host_stat = ap->ops->bmdma_status(ap);
4272 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
4273
4274 /* if it's not our irq... */
4275 if (!(host_stat & ATA_DMA_INTR))
4276 goto idle_irq;
4277
4278 /* before we do anything else, clear DMA-Start bit */
Alan Coxb73fc892005-08-26 16:03:19 +01004279 ap->ops->bmdma_stop(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
4281 /* fall through */
4282
4283 case ATA_PROT_ATAPI_NODATA:
4284 case ATA_PROT_NODATA:
4285 /* check altstatus */
4286 status = ata_altstatus(ap);
4287 if (status & ATA_BUSY)
4288 goto idle_irq;
4289
4290 /* check main status, clearing INTRQ */
4291 status = ata_chk_status(ap);
4292 if (unlikely(status & ATA_BUSY))
4293 goto idle_irq;
4294 DPRINTK("ata%u: protocol %d (dev_stat 0x%X)\n",
4295 ap->id, qc->tf.protocol, status);
4296
4297 /* ack bmdma irq events */
4298 ap->ops->irq_clear(ap);
4299
4300 /* complete taskfile transaction */
Albert Leea22e2eb2005-12-05 15:38:02 +08004301 qc->err_mask |= ac_err_mask(status);
4302 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 break;
4304
4305 default:
4306 goto idle_irq;
4307 }
4308
4309 return 1; /* irq handled */
4310
4311idle_irq:
4312 ap->stats.idle_irq++;
4313
4314#ifdef ATA_IRQ_TRAP
4315 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 ata_irq_ack(ap, 0); /* debug trap */
4317 printk(KERN_WARNING "ata%d: irq trap\n", ap->id);
Alan Cox23cfce82006-03-21 16:06:53 +00004318 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 }
4320#endif
4321 return 0; /* irq not handled */
4322}
4323
4324/**
4325 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04004326 * @irq: irq line (unused)
4327 * @dev_instance: pointer to our ata_host_set information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 * @regs: unused
4329 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004330 * Default interrupt handler for PCI IDE devices. Calls
4331 * ata_host_intr() for each port that is not disabled.
4332 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004334 * Obtains host_set lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 *
4336 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004337 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 */
4339
4340irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
4341{
4342 struct ata_host_set *host_set = dev_instance;
4343 unsigned int i;
4344 unsigned int handled = 0;
4345 unsigned long flags;
4346
4347 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
4348 spin_lock_irqsave(&host_set->lock, flags);
4349
4350 for (i = 0; i < host_set->n_ports; i++) {
4351 struct ata_port *ap;
4352
4353 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09004354 if (ap &&
Tejun Heo198e0fe2006-04-02 18:51:52 +09004355 !(ap->flags & (ATA_FLAG_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 struct ata_queued_cmd *qc;
4357
4358 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee21b1ed72005-04-29 17:34:59 +08004359 if (qc && (!(qc->tf.ctl & ATA_NIEN)) &&
4360 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 handled |= ata_host_intr(ap, qc);
4362 }
4363 }
4364
4365 spin_unlock_irqrestore(&host_set->lock, flags);
4366
4367 return IRQ_RETVAL(handled);
4368}
4369
Edward Falk0baab862005-06-02 18:17:13 -04004370
Jens Axboe9b847542006-01-06 09:28:07 +01004371/*
4372 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4373 * without filling any other registers
4374 */
4375static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4376 u8 cmd)
4377{
4378 struct ata_taskfile tf;
4379 int err;
4380
4381 ata_tf_init(ap, &tf, dev->devno);
4382
4383 tf.command = cmd;
4384 tf.flags |= ATA_TFLAG_DEVICE;
4385 tf.protocol = ATA_PROT_NODATA;
4386
Tejun Heod69cf372006-04-02 18:51:53 +09004387 err = ata_exec_internal(ap, dev, &tf, NULL, DMA_NONE, NULL, 0);
Jens Axboe9b847542006-01-06 09:28:07 +01004388 if (err)
4389 printk(KERN_ERR "%s: ata command failed: %d\n",
4390 __FUNCTION__, err);
4391
4392 return err;
4393}
4394
4395static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4396{
4397 u8 cmd;
4398
4399 if (!ata_try_flush_cache(dev))
4400 return 0;
4401
4402 if (ata_id_has_flush_ext(dev->id))
4403 cmd = ATA_CMD_FLUSH_EXT;
4404 else
4405 cmd = ATA_CMD_FLUSH;
4406
4407 return ata_do_simple_cmd(ap, dev, cmd);
4408}
4409
4410static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4411{
4412 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4413}
4414
4415static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4416{
4417 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4418}
4419
4420/**
4421 * ata_device_resume - wakeup a previously suspended devices
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004422 * @ap: port the device is connected to
4423 * @dev: the device to resume
Jens Axboe9b847542006-01-06 09:28:07 +01004424 *
4425 * Kick the drive back into action, by sending it an idle immediate
4426 * command and making sure its transfer mode matches between drive
4427 * and host.
4428 *
4429 */
4430int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4431{
4432 if (ap->flags & ATA_FLAG_SUSPENDED) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004433 struct ata_device *failed_dev;
Jens Axboe9b847542006-01-06 09:28:07 +01004434 ap->flags &= ~ATA_FLAG_SUSPENDED;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09004435 while (ata_set_mode(ap, &failed_dev))
4436 ata_dev_disable(ap, failed_dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004437 }
Tejun Heoe1211e32006-04-01 01:38:18 +09004438 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004439 return 0;
4440 if (dev->class == ATA_DEV_ATA)
4441 ata_start_drive(ap, dev);
4442
4443 return 0;
4444}
4445
4446/**
4447 * ata_device_suspend - prepare a device for suspend
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004448 * @ap: port the device is connected to
4449 * @dev: the device to suspend
Jens Axboe9b847542006-01-06 09:28:07 +01004450 *
4451 * Flush the cache on the drive, if appropriate, then issue a
4452 * standbynow command.
Jens Axboe9b847542006-01-06 09:28:07 +01004453 */
Nigel Cunningham082776e2006-03-23 23:22:16 +10004454int ata_device_suspend(struct ata_port *ap, struct ata_device *dev, pm_message_t state)
Jens Axboe9b847542006-01-06 09:28:07 +01004455{
Tejun Heoe1211e32006-04-01 01:38:18 +09004456 if (!ata_dev_enabled(dev))
Jens Axboe9b847542006-01-06 09:28:07 +01004457 return 0;
4458 if (dev->class == ATA_DEV_ATA)
4459 ata_flush_cache(ap, dev);
4460
Nigel Cunningham082776e2006-03-23 23:22:16 +10004461 if (state.event != PM_EVENT_FREEZE)
4462 ata_standby_drive(ap, dev);
Jens Axboe9b847542006-01-06 09:28:07 +01004463 ap->flags |= ATA_FLAG_SUSPENDED;
4464 return 0;
4465}
4466
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004467/**
4468 * ata_port_start - Set port up for dma.
4469 * @ap: Port to initialize
4470 *
4471 * Called just after data structures for each port are
4472 * initialized. Allocates space for PRD table.
4473 *
4474 * May be used as the port_start() entry in ata_port_operations.
4475 *
4476 * LOCKING:
4477 * Inherited from caller.
4478 */
4479
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480int ata_port_start (struct ata_port *ap)
4481{
Brian King2f1f6102006-03-23 17:30:15 -06004482 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004483 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
4485 ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL);
4486 if (!ap->prd)
4487 return -ENOMEM;
4488
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004489 rc = ata_pad_alloc(ap, dev);
4490 if (rc) {
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004491 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004492 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004493 }
4494
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma);
4496
4497 return 0;
4498}
4499
Edward Falk0baab862005-06-02 18:17:13 -04004500
4501/**
4502 * ata_port_stop - Undo ata_port_start()
4503 * @ap: Port to shut down
4504 *
4505 * Frees the PRD table.
4506 *
4507 * May be used as the port_stop() entry in ata_port_operations.
4508 *
4509 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004510 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004511 */
4512
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513void ata_port_stop (struct ata_port *ap)
4514{
Brian King2f1f6102006-03-23 17:30:15 -06004515 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
4517 dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05004518 ata_pad_free(ap, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519}
4520
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04004521void ata_host_stop (struct ata_host_set *host_set)
4522{
4523 if (host_set->mmio_base)
4524 iounmap(host_set->mmio_base);
4525}
4526
4527
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528/**
4529 * ata_host_remove - Unregister SCSI host structure with upper layers
4530 * @ap: Port to unregister
4531 * @do_unregister: 1 if we fully unregister, 0 to just stop the port
4532 *
4533 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004534 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 */
4536
4537static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister)
4538{
4539 struct Scsi_Host *sh = ap->host;
4540
4541 DPRINTK("ENTER\n");
4542
4543 if (do_unregister)
4544 scsi_remove_host(sh);
4545
4546 ap->ops->port_stop(ap);
4547}
4548
4549/**
4550 * ata_host_init - Initialize an ata_port structure
4551 * @ap: Structure to initialize
4552 * @host: associated SCSI mid-layer structure
4553 * @host_set: Collection of hosts to which @ap belongs
4554 * @ent: Probe information provided by low-level driver
4555 * @port_no: Port number associated with this ata_port
4556 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004557 * Initialize a new ata_port structure, and its associated
4558 * scsi_host.
4559 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004561 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 */
4563
4564static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
4565 struct ata_host_set *host_set,
Jeff Garzik057ace52005-10-22 14:27:05 -04004566 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567{
4568 unsigned int i;
4569
4570 host->max_id = 16;
4571 host->max_lun = 1;
4572 host->max_channel = 1;
4573 host->unique_id = ata_unique_id++;
4574 host->max_cmd_len = 12;
Christoph Hellwig12413192005-06-11 01:05:01 +02004575
Tejun Heo198e0fe2006-04-02 18:51:52 +09004576 ap->flags = ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 ap->id = host->unique_id;
4578 ap->host = host;
4579 ap->ctl = ATA_DEVCTL_OBS;
4580 ap->host_set = host_set;
Brian King2f1f6102006-03-23 17:30:15 -06004581 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 ap->port_no = port_no;
4583 ap->hard_port_no =
4584 ent->legacy_mode ? ent->hard_port_no : port_no;
4585 ap->pio_mask = ent->pio_mask;
4586 ap->mwdma_mask = ent->mwdma_mask;
4587 ap->udma_mask = ent->udma_mask;
4588 ap->flags |= ent->host_flags;
4589 ap->ops = ent->port_ops;
4590 ap->cbl = ATA_CBL_NONE;
Tejun Heo1c3fae42006-04-02 20:53:28 +09004591 ap->sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 ap->active_tag = ATA_TAG_POISON;
4593 ap->last_ctl = 0xFF;
4594
Tejun Heo86e45b62006-03-05 15:29:09 +09004595 INIT_WORK(&ap->port_task, NULL, NULL);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09004596 INIT_LIST_HEAD(&ap->eh_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
Tejun Heoacf356b2006-03-24 14:07:50 +09004598 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4599 struct ata_device *dev = &ap->device[i];
4600 dev->devno = i;
4601 dev->pio_mask = UINT_MAX;
4602 dev->mwdma_mask = UINT_MAX;
4603 dev->udma_mask = UINT_MAX;
4604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605
4606#ifdef ATA_IRQ_TRAP
4607 ap->stats.unhandled_irq = 1;
4608 ap->stats.idle_irq = 1;
4609#endif
4610
4611 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
4612}
4613
4614/**
4615 * ata_host_add - Attach low-level ATA driver to system
4616 * @ent: Information provided by low-level driver
4617 * @host_set: Collections of ports to which we add
4618 * @port_no: Port number associated with this host
4619 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04004620 * Attach low-level ATA driver to system.
4621 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004623 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 *
4625 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004626 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 */
4628
Jeff Garzik057ace52005-10-22 14:27:05 -04004629static struct ata_port * ata_host_add(const struct ata_probe_ent *ent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 struct ata_host_set *host_set,
4631 unsigned int port_no)
4632{
4633 struct Scsi_Host *host;
4634 struct ata_port *ap;
4635 int rc;
4636
4637 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09004638
4639 if (!ent->port_ops->probe_reset &&
4640 !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
4641 printk(KERN_ERR "ata%u: no reset mechanism available\n",
4642 port_no);
4643 return NULL;
4644 }
4645
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 host = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
4647 if (!host)
4648 return NULL;
4649
Tejun Heo30afc842006-03-18 18:40:14 +09004650 host->transportt = &ata_scsi_transport_template;
4651
Jeff Garzik35bb94b2006-04-11 13:12:34 -04004652 ap = ata_shost_to_port(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
4654 ata_host_init(ap, host, host_set, ent, port_no);
4655
4656 rc = ap->ops->port_start(ap);
4657 if (rc)
4658 goto err_out;
4659
4660 return ap;
4661
4662err_out:
4663 scsi_host_put(host);
4664 return NULL;
4665}
4666
4667/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004668 * ata_device_add - Register hardware device with ATA and SCSI layers
4669 * @ent: Probe information describing hardware device to be registered
4670 *
4671 * This function processes the information provided in the probe
4672 * information struct @ent, allocates the necessary ATA and SCSI
4673 * host information structures, initializes them, and registers
4674 * everything with requisite kernel subsystems.
4675 *
4676 * This function requests irqs, probes the ATA bus, and probes
4677 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678 *
4679 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004680 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 *
4682 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004683 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 */
4685
Jeff Garzik057ace52005-10-22 14:27:05 -04004686int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687{
4688 unsigned int count = 0, i;
4689 struct device *dev = ent->dev;
4690 struct ata_host_set *host_set;
4691
4692 DPRINTK("ENTER\n");
4693 /* alloc a container for our list of ATA ports (buses) */
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004694 host_set = kzalloc(sizeof(struct ata_host_set) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
4696 if (!host_set)
4697 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 spin_lock_init(&host_set->lock);
4699
4700 host_set->dev = dev;
4701 host_set->n_ports = ent->n_ports;
4702 host_set->irq = ent->irq;
4703 host_set->mmio_base = ent->mmio_base;
4704 host_set->private_data = ent->private_data;
4705 host_set->ops = ent->port_ops;
Alan Cox5444a6f2006-03-27 18:58:20 +01004706 host_set->flags = ent->host_set_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707
4708 /* register each port bound to this device */
4709 for (i = 0; i < ent->n_ports; i++) {
4710 struct ata_port *ap;
4711 unsigned long xfer_mode_mask;
4712
4713 ap = ata_host_add(ent, host_set, i);
4714 if (!ap)
4715 goto err_out;
4716
4717 host_set->ports[i] = ap;
4718 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
4719 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
4720 (ap->pio_mask << ATA_SHIFT_PIO);
4721
4722 /* print per-port info to dmesg */
4723 printk(KERN_INFO "ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
4724 "bmdma 0x%lX irq %lu\n",
4725 ap->id,
4726 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
4727 ata_mode_string(xfer_mode_mask),
4728 ap->ioaddr.cmd_addr,
4729 ap->ioaddr.ctl_addr,
4730 ap->ioaddr.bmdma_addr,
4731 ent->irq);
4732
4733 ata_chk_status(ap);
4734 host_set->ops->irq_clear(ap);
4735 count++;
4736 }
4737
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004738 if (!count)
4739 goto err_free_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740
4741 /* obtain irq, that is shared between channels */
4742 if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags,
4743 DRV_NAME, host_set))
4744 goto err_out;
4745
4746 /* perform each probe synchronously */
4747 DPRINTK("probe begin\n");
4748 for (i = 0; i < count; i++) {
4749 struct ata_port *ap;
4750 int rc;
4751
4752 ap = host_set->ports[i];
4753
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004754 DPRINTK("ata%u: bus probe begin\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 rc = ata_bus_probe(ap);
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004756 DPRINTK("ata%u: bus probe end\n", ap->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
4758 if (rc) {
4759 /* FIXME: do something useful here?
4760 * Current libata behavior will
4761 * tear down everything when
4762 * the module is removed
4763 * or the h/w is unplugged.
4764 */
4765 }
4766
4767 rc = scsi_add_host(ap->host, dev);
4768 if (rc) {
4769 printk(KERN_ERR "ata%u: scsi_add_host failed\n",
4770 ap->id);
4771 /* FIXME: do something useful here */
4772 /* FIXME: handle unconditional calls to
4773 * scsi_scan_host and ata_host_remove, below,
4774 * at the very least
4775 */
4776 }
4777 }
4778
4779 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004780 DPRINTK("host probe begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 for (i = 0; i < count; i++) {
4782 struct ata_port *ap = host_set->ports[i];
4783
Jeff Garzik644dd0c2005-10-03 15:55:19 -04004784 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 }
4786
4787 dev_set_drvdata(dev, host_set);
4788
4789 VPRINTK("EXIT, returning %u\n", ent->n_ports);
4790 return ent->n_ports; /* success */
4791
4792err_out:
4793 for (i = 0; i < count; i++) {
4794 ata_host_remove(host_set->ports[i], 1);
4795 scsi_host_put(host_set->ports[i]->host);
4796 }
Randy Dunlap57f3bda2005-10-28 20:37:23 -07004797err_free_ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 kfree(host_set);
4799 VPRINTK("EXIT, returning 0\n");
4800 return 0;
4801}
4802
4803/**
Alan Cox17b14452005-09-15 15:44:00 +01004804 * ata_host_set_remove - PCI layer callback for device removal
4805 * @host_set: ATA host set that was removed
4806 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004807 * Unregister all objects associated with this host set. Free those
Alan Cox17b14452005-09-15 15:44:00 +01004808 * objects.
4809 *
4810 * LOCKING:
4811 * Inherited from calling layer (may sleep).
4812 */
4813
Alan Cox17b14452005-09-15 15:44:00 +01004814void ata_host_set_remove(struct ata_host_set *host_set)
4815{
4816 struct ata_port *ap;
4817 unsigned int i;
4818
4819 for (i = 0; i < host_set->n_ports; i++) {
4820 ap = host_set->ports[i];
4821 scsi_remove_host(ap->host);
4822 }
4823
4824 free_irq(host_set->irq, host_set);
4825
4826 for (i = 0; i < host_set->n_ports; i++) {
4827 ap = host_set->ports[i];
4828
4829 ata_scsi_release(ap->host);
4830
4831 if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) {
4832 struct ata_ioports *ioaddr = &ap->ioaddr;
4833
4834 if (ioaddr->cmd_addr == 0x1f0)
4835 release_region(0x1f0, 8);
4836 else if (ioaddr->cmd_addr == 0x170)
4837 release_region(0x170, 8);
4838 }
4839
4840 scsi_host_put(ap->host);
4841 }
4842
4843 if (host_set->ops->host_stop)
4844 host_set->ops->host_stop(host_set);
4845
4846 kfree(host_set);
4847}
4848
4849/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 * ata_scsi_release - SCSI layer callback hook for host unload
4851 * @host: libata host to be unloaded
4852 *
4853 * Performs all duties necessary to shut down a libata port...
4854 * Kill port kthread, disable port, and release resources.
4855 *
4856 * LOCKING:
4857 * Inherited from SCSI layer.
4858 *
4859 * RETURNS:
4860 * One.
4861 */
4862
4863int ata_scsi_release(struct Scsi_Host *host)
4864{
Jeff Garzik35bb94b2006-04-11 13:12:34 -04004865 struct ata_port *ap = ata_shost_to_port(host);
Tejun Heod9572b12006-03-01 16:09:35 +09004866 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867
4868 DPRINTK("ENTER\n");
4869
4870 ap->ops->port_disable(ap);
4871 ata_host_remove(ap, 0);
Tejun Heod9572b12006-03-01 16:09:35 +09004872 for (i = 0; i < ATA_MAX_DEVICES; i++)
4873 kfree(ap->device[i].id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874
4875 DPRINTK("EXIT\n");
4876 return 1;
4877}
4878
4879/**
4880 * ata_std_ports - initialize ioaddr with standard port offsets.
4881 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04004882 *
4883 * Utility function which initializes data_addr, error_addr,
4884 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
4885 * device_addr, status_addr, and command_addr to standard offsets
4886 * relative to cmd_addr.
4887 *
4888 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 */
Edward Falk0baab862005-06-02 18:17:13 -04004890
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891void ata_std_ports(struct ata_ioports *ioaddr)
4892{
4893 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
4894 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
4895 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
4896 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
4897 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
4898 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
4899 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
4900 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
4901 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
4902 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
4903}
4904
Edward Falk0baab862005-06-02 18:17:13 -04004905
Jeff Garzik374b1872005-08-30 05:42:52 -04004906#ifdef CONFIG_PCI
4907
4908void ata_pci_host_stop (struct ata_host_set *host_set)
4909{
4910 struct pci_dev *pdev = to_pci_dev(host_set->dev);
4911
4912 pci_iounmap(pdev, host_set->mmio_base);
4913}
4914
Edward Falk0baab862005-06-02 18:17:13 -04004915/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916 * ata_pci_remove_one - PCI layer callback for device removal
4917 * @pdev: PCI device that was removed
4918 *
4919 * PCI layer indicates to libata via this hook that
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004920 * hot-unplug or module unload event has occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 * Handle this by unregistering all objects associated
4922 * with this PCI device. Free those objects. Then finally
4923 * release PCI resources and disable device.
4924 *
4925 * LOCKING:
4926 * Inherited from PCI layer (may sleep).
4927 */
4928
4929void ata_pci_remove_one (struct pci_dev *pdev)
4930{
4931 struct device *dev = pci_dev_to_dev(pdev);
4932 struct ata_host_set *host_set = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933
Alan Cox17b14452005-09-15 15:44:00 +01004934 ata_host_set_remove(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 pci_release_regions(pdev);
4936 pci_disable_device(pdev);
4937 dev_set_drvdata(dev, NULL);
4938}
4939
4940/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04004941int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942{
4943 unsigned long tmp = 0;
4944
4945 switch (bits->width) {
4946 case 1: {
4947 u8 tmp8 = 0;
4948 pci_read_config_byte(pdev, bits->reg, &tmp8);
4949 tmp = tmp8;
4950 break;
4951 }
4952 case 2: {
4953 u16 tmp16 = 0;
4954 pci_read_config_word(pdev, bits->reg, &tmp16);
4955 tmp = tmp16;
4956 break;
4957 }
4958 case 4: {
4959 u32 tmp32 = 0;
4960 pci_read_config_dword(pdev, bits->reg, &tmp32);
4961 tmp = tmp32;
4962 break;
4963 }
4964
4965 default:
4966 return -EINVAL;
4967 }
4968
4969 tmp &= bits->mask;
4970
4971 return (tmp == bits->val) ? 1 : 0;
4972}
Jens Axboe9b847542006-01-06 09:28:07 +01004973
4974int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
4975{
4976 pci_save_state(pdev);
4977 pci_disable_device(pdev);
4978 pci_set_power_state(pdev, PCI_D3hot);
4979 return 0;
4980}
4981
4982int ata_pci_device_resume(struct pci_dev *pdev)
4983{
4984 pci_set_power_state(pdev, PCI_D0);
4985 pci_restore_state(pdev);
4986 pci_enable_device(pdev);
4987 pci_set_master(pdev);
4988 return 0;
4989}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990#endif /* CONFIG_PCI */
4991
4992
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993static int __init ata_init(void)
4994{
4995 ata_wq = create_workqueue("ata");
4996 if (!ata_wq)
4997 return -ENOMEM;
4998
4999 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5000 return 0;
5001}
5002
5003static void __exit ata_exit(void)
5004{
5005 destroy_workqueue(ata_wq);
5006}
5007
5008module_init(ata_init);
5009module_exit(ata_exit);
5010
Jeff Garzik67846b32005-10-05 02:58:32 -04005011static unsigned long ratelimit_time;
5012static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED;
5013
5014int ata_ratelimit(void)
5015{
5016 int rc;
5017 unsigned long flags;
5018
5019 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5020
5021 if (time_after(jiffies, ratelimit_time)) {
5022 rc = 1;
5023 ratelimit_time = jiffies + (HZ/5);
5024 } else
5025 rc = 0;
5026
5027 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5028
5029 return rc;
5030}
5031
Tejun Heoc22daff2006-04-11 22:22:29 +09005032/**
5033 * ata_wait_register - wait until register value changes
5034 * @reg: IO-mapped register
5035 * @mask: Mask to apply to read register value
5036 * @val: Wait condition
5037 * @interval_msec: polling interval in milliseconds
5038 * @timeout_msec: timeout in milliseconds
5039 *
5040 * Waiting for some bits of register to change is a common
5041 * operation for ATA controllers. This function reads 32bit LE
5042 * IO-mapped register @reg and tests for the following condition.
5043 *
5044 * (*@reg & mask) != val
5045 *
5046 * If the condition is met, it returns; otherwise, the process is
5047 * repeated after @interval_msec until timeout.
5048 *
5049 * LOCKING:
5050 * Kernel thread context (may sleep)
5051 *
5052 * RETURNS:
5053 * The final register value.
5054 */
5055u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
5056 unsigned long interval_msec,
5057 unsigned long timeout_msec)
5058{
5059 unsigned long timeout;
5060 u32 tmp;
5061
5062 tmp = ioread32(reg);
5063
5064 /* Calculate timeout _after_ the first read to make sure
5065 * preceding writes reach the controller before starting to
5066 * eat away the timeout.
5067 */
5068 timeout = jiffies + (timeout_msec * HZ) / 1000;
5069
5070 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
5071 msleep(interval_msec);
5072 tmp = ioread32(reg);
5073 }
5074
5075 return tmp;
5076}
5077
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078/*
5079 * libata is essentially a library of internal helper functions for
5080 * low-level ATA host controller drivers. As such, the API/ABI is
5081 * likely to change as new drivers are added and updated.
5082 * Do not depend on ABI/API stability.
5083 */
5084
5085EXPORT_SYMBOL_GPL(ata_std_bios_param);
5086EXPORT_SYMBOL_GPL(ata_std_ports);
5087EXPORT_SYMBOL_GPL(ata_device_add);
Alan Cox17b14452005-09-15 15:44:00 +01005088EXPORT_SYMBOL_GPL(ata_host_set_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089EXPORT_SYMBOL_GPL(ata_sg_init);
5090EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo76014422006-02-11 15:13:49 +09005091EXPORT_SYMBOL_GPL(__ata_qc_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093EXPORT_SYMBOL_GPL(ata_tf_load);
5094EXPORT_SYMBOL_GPL(ata_tf_read);
5095EXPORT_SYMBOL_GPL(ata_noop_dev_select);
5096EXPORT_SYMBOL_GPL(ata_std_dev_select);
5097EXPORT_SYMBOL_GPL(ata_tf_to_fis);
5098EXPORT_SYMBOL_GPL(ata_tf_from_fis);
5099EXPORT_SYMBOL_GPL(ata_check_status);
5100EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101EXPORT_SYMBOL_GPL(ata_exec_command);
5102EXPORT_SYMBOL_GPL(ata_port_start);
5103EXPORT_SYMBOL_GPL(ata_port_stop);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -04005104EXPORT_SYMBOL_GPL(ata_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105EXPORT_SYMBOL_GPL(ata_interrupt);
5106EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06005107EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108EXPORT_SYMBOL_GPL(ata_bmdma_setup);
5109EXPORT_SYMBOL_GPL(ata_bmdma_start);
5110EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
5111EXPORT_SYMBOL_GPL(ata_bmdma_status);
5112EXPORT_SYMBOL_GPL(ata_bmdma_stop);
5113EXPORT_SYMBOL_GPL(ata_port_probe);
5114EXPORT_SYMBOL_GPL(sata_phy_reset);
5115EXPORT_SYMBOL_GPL(__sata_phy_reset);
5116EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heo8a19ac82006-02-02 18:20:00 +09005117EXPORT_SYMBOL_GPL(ata_std_probeinit);
Tejun Heoc2bd5802006-01-24 17:05:22 +09005118EXPORT_SYMBOL_GPL(ata_std_softreset);
5119EXPORT_SYMBOL_GPL(sata_std_hardreset);
5120EXPORT_SYMBOL_GPL(ata_std_postreset);
5121EXPORT_SYMBOL_GPL(ata_std_probe_reset);
Tejun Heoa62c0fc2006-01-24 17:05:22 +09005122EXPORT_SYMBOL_GPL(ata_drive_probe_reset);
Tejun Heo623a3122006-03-05 17:55:58 +09005123EXPORT_SYMBOL_GPL(ata_dev_revalidate);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05005124EXPORT_SYMBOL_GPL(ata_dev_classify);
5125EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04005127EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09005128EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09005129EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09005130EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
5132EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
5134EXPORT_SYMBOL_GPL(ata_scsi_release);
5135EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo6a62a042006-02-13 10:02:46 +09005136EXPORT_SYMBOL_GPL(ata_id_string);
5137EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138EXPORT_SYMBOL_GPL(ata_scsi_simulate);
5139
Alan Cox1bc4ccf2006-01-09 17:18:14 +00005140EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04005141EXPORT_SYMBOL_GPL(ata_timing_compute);
5142EXPORT_SYMBOL_GPL(ata_timing_merge);
5143
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144#ifdef CONFIG_PCI
5145EXPORT_SYMBOL_GPL(pci_test_config_bits);
Jeff Garzik374b1872005-08-30 05:42:52 -04005146EXPORT_SYMBOL_GPL(ata_pci_host_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5148EXPORT_SYMBOL_GPL(ata_pci_init_one);
5149EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Jens Axboe9b847542006-01-06 09:28:07 +01005150EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5151EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00005152EXPORT_SYMBOL_GPL(ata_pci_default_filter);
5153EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01005155
5156EXPORT_SYMBOL_GPL(ata_device_suspend);
5157EXPORT_SYMBOL_GPL(ata_device_resume);
5158EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5159EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09005160
5161EXPORT_SYMBOL_GPL(ata_scsi_error);
5162EXPORT_SYMBOL_GPL(ata_eng_timeout);
5163EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
5164EXPORT_SYMBOL_GPL(ata_eh_qc_retry);