blob: e2ecb7a4628e8e268b9e63a5b6a133f817d86962 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/pci.h>
38#include <linux/init.h>
39#include <linux/list.h>
40#include <linux/mm.h>
41#include <linux/highmem.h>
42#include <linux/spinlock.h>
43#include <linux/blkdev.h>
44#include <linux/delay.h>
45#include <linux/timer.h>
46#include <linux/interrupt.h>
47#include <linux/completion.h>
48#include <linux/suspend.h>
49#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040050#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100051#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050053#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <scsi/scsi_host.h>
55#include <linux/libata.h>
56#include <asm/io.h>
57#include <asm/semaphore.h>
58#include <asm/byteorder.h>
59
60#include "libata.h"
61
Jeff Garzik8bc3fc42007-05-21 20:26:38 -040062#define DRV_VERSION "2.21" /* must be exactly four chars */
Jeff Garzikfda0efc2007-01-31 07:43:15 -050063
64
Tejun Heod7bb4cc2006-05-31 18:27:46 +090065/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090066const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
67const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
68const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090069
Tejun Heo3373efd2006-05-15 20:57:53 +090070static unsigned int ata_dev_init_params(struct ata_device *dev,
71 u16 heads, u16 sectors);
72static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
73static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090074static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Tejun Heof3187192007-04-17 23:44:07 +090076unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static struct workqueue_struct *ata_wq;
78
Tejun Heo453b07a2006-05-31 18:27:42 +090079struct workqueue_struct *ata_aux_wq;
80
Jeff Garzik418dc1f2006-03-11 20:50:08 -050081int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040082module_param(atapi_enabled, int, 0444);
83MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
84
Albert Lee95de7192006-04-04 10:57:18 +080085int atapi_dmadir = 0;
86module_param(atapi_dmadir, int, 0444);
87MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
88
Jeff Garzikc3c013a2006-02-27 22:31:19 -050089int libata_fua = 0;
90module_param_named(fua, libata_fua, int, 0444);
91MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
92
Alan Cox1e999732007-04-11 00:23:13 +010093static int ata_ignore_hpa = 0;
94module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
95MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
96
Andrew Mortona8601e52006-06-25 01:36:52 -070097static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
98module_param(ata_probe_timeout, int, 0444);
99MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
100
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400101int libata_noacpi = 1;
102module_param_named(noacpi, libata_noacpi, int, 0444);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700103MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in suspend/resume when set");
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105MODULE_AUTHOR("Jeff Garzik");
106MODULE_DESCRIPTION("Library module for ATA devices");
107MODULE_LICENSE("GPL");
108MODULE_VERSION(DRV_VERSION);
109
Edward Falk0baab862005-06-02 18:17:13 -0400110
111/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
113 * @tf: Taskfile to convert
114 * @fis: Buffer into which data will output
115 * @pmp: Port multiplier port
116 *
117 * Converts a standard ATA taskfile to a Serial ATA
118 * FIS structure (Register - Host to Device).
119 *
120 * LOCKING:
121 * Inherited from caller.
122 */
123
Jeff Garzik057ace52005-10-22 14:27:05 -0400124void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 fis[0] = 0x27; /* Register - Host to Device FIS */
127 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
128 bit 7 indicates Command FIS */
129 fis[2] = tf->command;
130 fis[3] = tf->feature;
131
132 fis[4] = tf->lbal;
133 fis[5] = tf->lbam;
134 fis[6] = tf->lbah;
135 fis[7] = tf->device;
136
137 fis[8] = tf->hob_lbal;
138 fis[9] = tf->hob_lbam;
139 fis[10] = tf->hob_lbah;
140 fis[11] = tf->hob_feature;
141
142 fis[12] = tf->nsect;
143 fis[13] = tf->hob_nsect;
144 fis[14] = 0;
145 fis[15] = tf->ctl;
146
147 fis[16] = 0;
148 fis[17] = 0;
149 fis[18] = 0;
150 fis[19] = 0;
151}
152
153/**
154 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
155 * @fis: Buffer from which data will be input
156 * @tf: Taskfile to output
157 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500158 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 *
160 * LOCKING:
161 * Inherited from caller.
162 */
163
Jeff Garzik057ace52005-10-22 14:27:05 -0400164void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 tf->command = fis[2]; /* status */
167 tf->feature = fis[3]; /* error */
168
169 tf->lbal = fis[4];
170 tf->lbam = fis[5];
171 tf->lbah = fis[6];
172 tf->device = fis[7];
173
174 tf->hob_lbal = fis[8];
175 tf->hob_lbam = fis[9];
176 tf->hob_lbah = fis[10];
177
178 tf->nsect = fis[12];
179 tf->hob_nsect = fis[13];
180}
181
Albert Lee8cbd6df2005-10-12 15:06:27 +0800182static const u8 ata_rw_cmds[] = {
183 /* pio multi */
184 ATA_CMD_READ_MULTI,
185 ATA_CMD_WRITE_MULTI,
186 ATA_CMD_READ_MULTI_EXT,
187 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100188 0,
189 0,
190 0,
191 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800192 /* pio */
193 ATA_CMD_PIO_READ,
194 ATA_CMD_PIO_WRITE,
195 ATA_CMD_PIO_READ_EXT,
196 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100197 0,
198 0,
199 0,
200 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800201 /* dma */
202 ATA_CMD_READ,
203 ATA_CMD_WRITE,
204 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100205 ATA_CMD_WRITE_EXT,
206 0,
207 0,
208 0,
209 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800210};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800213 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900214 * @tf: command to examine and configure
215 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500217 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800218 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 *
220 * LOCKING:
221 * caller.
222 */
Tejun Heobd056d72006-11-14 22:47:10 +0900223static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100225 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100227 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500228
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100229 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800230 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
231 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Albert Lee8cbd6df2005-10-12 15:06:27 +0800233 if (dev->flags & ATA_DFLAG_PIO) {
234 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100235 index = dev->multi_count ? 0 : 8;
Tejun Heobd056d72006-11-14 22:47:10 +0900236 } else if (lba48 && (dev->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000237 /* Unable to use DMA due to host limitation */
238 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800239 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800240 } else {
241 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100242 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100245 cmd = ata_rw_cmds[index + fua + lba48 + write];
246 if (cmd) {
247 tf->command = cmd;
248 return 0;
249 }
250 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Tejun Heocb95d562006-03-06 04:31:56 +0900253/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900254 * ata_tf_read_block - Read block address from ATA taskfile
255 * @tf: ATA taskfile of interest
256 * @dev: ATA device @tf belongs to
257 *
258 * LOCKING:
259 * None.
260 *
261 * Read block address from @tf. This function can handle all
262 * three address formats - LBA, LBA48 and CHS. tf->protocol and
263 * flags select the address format to use.
264 *
265 * RETURNS:
266 * Block address read from @tf.
267 */
268u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
269{
270 u64 block = 0;
271
272 if (tf->flags & ATA_TFLAG_LBA) {
273 if (tf->flags & ATA_TFLAG_LBA48) {
274 block |= (u64)tf->hob_lbah << 40;
275 block |= (u64)tf->hob_lbam << 32;
276 block |= tf->hob_lbal << 24;
277 } else
278 block |= (tf->device & 0xf) << 24;
279
280 block |= tf->lbah << 16;
281 block |= tf->lbam << 8;
282 block |= tf->lbal;
283 } else {
284 u32 cyl, head, sect;
285
286 cyl = tf->lbam | (tf->lbah << 8);
287 head = tf->device & 0xf;
288 sect = tf->lbal;
289
290 block = (cyl * dev->heads + head) * dev->sectors + sect;
291 }
292
293 return block;
294}
295
296/**
Tejun Heobd056d72006-11-14 22:47:10 +0900297 * ata_build_rw_tf - Build ATA taskfile for given read/write request
298 * @tf: Target ATA taskfile
299 * @dev: ATA device @tf belongs to
300 * @block: Block address
301 * @n_block: Number of blocks
302 * @tf_flags: RW/FUA etc...
303 * @tag: tag
304 *
305 * LOCKING:
306 * None.
307 *
308 * Build ATA taskfile @tf for read/write request described by
309 * @block, @n_block, @tf_flags and @tag on @dev.
310 *
311 * RETURNS:
312 *
313 * 0 on success, -ERANGE if the request is too large for @dev,
314 * -EINVAL if the request is invalid.
315 */
316int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
317 u64 block, u32 n_block, unsigned int tf_flags,
318 unsigned int tag)
319{
320 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
321 tf->flags |= tf_flags;
322
Tejun Heo6d1245b2007-02-20 23:20:27 +0900323 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900324 /* yay, NCQ */
325 if (!lba_48_ok(block, n_block))
326 return -ERANGE;
327
328 tf->protocol = ATA_PROT_NCQ;
329 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
330
331 if (tf->flags & ATA_TFLAG_WRITE)
332 tf->command = ATA_CMD_FPDMA_WRITE;
333 else
334 tf->command = ATA_CMD_FPDMA_READ;
335
336 tf->nsect = tag << 3;
337 tf->hob_feature = (n_block >> 8) & 0xff;
338 tf->feature = n_block & 0xff;
339
340 tf->hob_lbah = (block >> 40) & 0xff;
341 tf->hob_lbam = (block >> 32) & 0xff;
342 tf->hob_lbal = (block >> 24) & 0xff;
343 tf->lbah = (block >> 16) & 0xff;
344 tf->lbam = (block >> 8) & 0xff;
345 tf->lbal = block & 0xff;
346
347 tf->device = 1 << 6;
348 if (tf->flags & ATA_TFLAG_FUA)
349 tf->device |= 1 << 7;
350 } else if (dev->flags & ATA_DFLAG_LBA) {
351 tf->flags |= ATA_TFLAG_LBA;
352
353 if (lba_28_ok(block, n_block)) {
354 /* use LBA28 */
355 tf->device |= (block >> 24) & 0xf;
356 } else if (lba_48_ok(block, n_block)) {
357 if (!(dev->flags & ATA_DFLAG_LBA48))
358 return -ERANGE;
359
360 /* use LBA48 */
361 tf->flags |= ATA_TFLAG_LBA48;
362
363 tf->hob_nsect = (n_block >> 8) & 0xff;
364
365 tf->hob_lbah = (block >> 40) & 0xff;
366 tf->hob_lbam = (block >> 32) & 0xff;
367 tf->hob_lbal = (block >> 24) & 0xff;
368 } else
369 /* request too large even for LBA48 */
370 return -ERANGE;
371
372 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
373 return -EINVAL;
374
375 tf->nsect = n_block & 0xff;
376
377 tf->lbah = (block >> 16) & 0xff;
378 tf->lbam = (block >> 8) & 0xff;
379 tf->lbal = block & 0xff;
380
381 tf->device |= ATA_LBA;
382 } else {
383 /* CHS */
384 u32 sect, head, cyl, track;
385
386 /* The request -may- be too large for CHS addressing. */
387 if (!lba_28_ok(block, n_block))
388 return -ERANGE;
389
390 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
391 return -EINVAL;
392
393 /* Convert LBA to CHS */
394 track = (u32)block / dev->sectors;
395 cyl = track / dev->heads;
396 head = track % dev->heads;
397 sect = (u32)block % dev->sectors + 1;
398
399 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
400 (u32)block, track, cyl, head, sect);
401
402 /* Check whether the converted CHS can fit.
403 Cylinder: 0-65535
404 Head: 0-15
405 Sector: 1-255*/
406 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
407 return -ERANGE;
408
409 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
410 tf->lbal = sect;
411 tf->lbam = cyl;
412 tf->lbah = cyl >> 8;
413 tf->device |= head;
414 }
415
416 return 0;
417}
418
419/**
Tejun Heocb95d562006-03-06 04:31:56 +0900420 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
421 * @pio_mask: pio_mask
422 * @mwdma_mask: mwdma_mask
423 * @udma_mask: udma_mask
424 *
425 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
426 * unsigned int xfer_mask.
427 *
428 * LOCKING:
429 * None.
430 *
431 * RETURNS:
432 * Packed xfer_mask.
433 */
434static unsigned int ata_pack_xfermask(unsigned int pio_mask,
435 unsigned int mwdma_mask,
436 unsigned int udma_mask)
437{
438 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
439 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
440 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
441}
442
Tejun Heoc0489e42006-03-24 14:07:49 +0900443/**
444 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
445 * @xfer_mask: xfer_mask to unpack
446 * @pio_mask: resulting pio_mask
447 * @mwdma_mask: resulting mwdma_mask
448 * @udma_mask: resulting udma_mask
449 *
450 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
451 * Any NULL distination masks will be ignored.
452 */
453static void ata_unpack_xfermask(unsigned int xfer_mask,
454 unsigned int *pio_mask,
455 unsigned int *mwdma_mask,
456 unsigned int *udma_mask)
457{
458 if (pio_mask)
459 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
460 if (mwdma_mask)
461 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
462 if (udma_mask)
463 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
464}
465
Tejun Heocb95d562006-03-06 04:31:56 +0900466static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900467 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900468 u8 base;
469} ata_xfer_tbl[] = {
470 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
471 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
472 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
473 { -1, },
474};
475
476/**
477 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
478 * @xfer_mask: xfer_mask of interest
479 *
480 * Return matching XFER_* value for @xfer_mask. Only the highest
481 * bit of @xfer_mask is considered.
482 *
483 * LOCKING:
484 * None.
485 *
486 * RETURNS:
487 * Matching XFER_* value, 0 if no match found.
488 */
489static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
490{
491 int highbit = fls(xfer_mask) - 1;
492 const struct ata_xfer_ent *ent;
493
494 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
495 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
496 return ent->base + highbit - ent->shift;
497 return 0;
498}
499
500/**
501 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
502 * @xfer_mode: XFER_* of interest
503 *
504 * Return matching xfer_mask for @xfer_mode.
505 *
506 * LOCKING:
507 * None.
508 *
509 * RETURNS:
510 * Matching xfer_mask, 0 if no match found.
511 */
512static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
513{
514 const struct ata_xfer_ent *ent;
515
516 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
517 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
518 return 1 << (ent->shift + xfer_mode - ent->base);
519 return 0;
520}
521
522/**
523 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
524 * @xfer_mode: XFER_* of interest
525 *
526 * Return matching xfer_shift for @xfer_mode.
527 *
528 * LOCKING:
529 * None.
530 *
531 * RETURNS:
532 * Matching xfer_shift, -1 if no match found.
533 */
534static int ata_xfer_mode2shift(unsigned int xfer_mode)
535{
536 const struct ata_xfer_ent *ent;
537
538 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
539 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
540 return ent->shift;
541 return -1;
542}
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900545 * ata_mode_string - convert xfer_mask to string
546 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 *
548 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900549 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 *
551 * LOCKING:
552 * None.
553 *
554 * RETURNS:
555 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900556 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900558static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Tejun Heo75f554b2006-03-06 04:31:57 +0900560 static const char * const xfer_mode_str[] = {
561 "PIO0",
562 "PIO1",
563 "PIO2",
564 "PIO3",
565 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100566 "PIO5",
567 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900568 "MWDMA0",
569 "MWDMA1",
570 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100571 "MWDMA3",
572 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900573 "UDMA/16",
574 "UDMA/25",
575 "UDMA/33",
576 "UDMA/44",
577 "UDMA/66",
578 "UDMA/100",
579 "UDMA/133",
580 "UDMA7",
581 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900582 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900584 highbit = fls(xfer_mask) - 1;
585 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
586 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Tejun Heo4c360c82006-04-01 01:38:17 +0900590static const char *sata_spd_string(unsigned int spd)
591{
592 static const char * const spd_str[] = {
593 "1.5 Gbps",
594 "3.0 Gbps",
595 };
596
597 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
598 return "<unknown>";
599 return spd_str[spd - 1];
600}
601
Tejun Heo3373efd2006-05-15 20:57:53 +0900602void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900603{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900604 if (ata_dev_enabled(dev)) {
605 if (ata_msg_drv(dev->ap))
606 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo4ae72a12007-02-02 16:22:30 +0900607 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
608 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900609 dev->class++;
610 }
611}
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 * ata_devchk - PATA device presence detection
615 * @ap: ATA channel to examine
616 * @device: Device to examine (starting at zero)
617 *
Tejun Heo0d5ff562007-02-01 15:06:36 +0900618 * This technique was originally described in
619 * Hale Landis's ATADRVR (www.ata-atapi.com), and
620 * later found its way into the ATA/ATAPI spec.
621 *
622 * Write a pattern to the ATA shadow registers,
623 * and if a device is present, it will respond by
624 * correctly storing and echoing back the
625 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 *
627 * LOCKING:
628 * caller.
629 */
630
Tejun Heo0d5ff562007-02-01 15:06:36 +0900631static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900633 struct ata_ioports *ioaddr = &ap->ioaddr;
634 u8 nsect, lbal;
635
636 ap->ops->dev_select(ap, device);
637
638 iowrite8(0x55, ioaddr->nsect_addr);
639 iowrite8(0xaa, ioaddr->lbal_addr);
640
641 iowrite8(0xaa, ioaddr->nsect_addr);
642 iowrite8(0x55, ioaddr->lbal_addr);
643
644 iowrite8(0x55, ioaddr->nsect_addr);
645 iowrite8(0xaa, ioaddr->lbal_addr);
646
647 nsect = ioread8(ioaddr->nsect_addr);
648 lbal = ioread8(ioaddr->lbal_addr);
649
650 if ((nsect == 0x55) && (lbal == 0xaa))
651 return 1; /* we found a device */
652
653 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
656/**
657 * ata_dev_classify - determine device type based on ATA-spec signature
658 * @tf: ATA taskfile register set for device to be identified
659 *
660 * Determine from taskfile register contents whether a device is
661 * ATA or ATAPI, as per "Signature and persistence" section
662 * of ATA/PI spec (volume 1, sect 5.14).
663 *
664 * LOCKING:
665 * None.
666 *
667 * RETURNS:
668 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
669 * the event of failure.
670 */
671
Jeff Garzik057ace52005-10-22 14:27:05 -0400672unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 /* Apple's open source Darwin code hints that some devices only
675 * put a proper signature into the LBA mid/high registers,
676 * So, we only check those. It's sufficient for uniqueness.
677 */
678
679 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
680 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
681 DPRINTK("found ATA device by sig\n");
682 return ATA_DEV_ATA;
683 }
684
685 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
686 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
687 DPRINTK("found ATAPI device by sig\n");
688 return ATA_DEV_ATAPI;
689 }
690
691 DPRINTK("unknown device\n");
692 return ATA_DEV_UNKNOWN;
693}
694
695/**
696 * ata_dev_try_classify - Parse returned ATA device signature
697 * @ap: ATA channel to examine
698 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900699 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 *
701 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
702 * an ATA/ATAPI-defined set of values is placed in the ATA
703 * shadow registers, indicating the results of device detection
704 * and diagnostics.
705 *
706 * Select the ATA device, and read the values from the ATA shadow
707 * registers. Then parse according to the Error register value,
708 * and the spec-defined values examined by ata_dev_classify().
709 *
710 * LOCKING:
711 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900712 *
713 * RETURNS:
714 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 */
716
Akira Iguchia619f981b2007-01-26 16:28:18 +0900717unsigned int
Tejun Heob4dc7622006-01-24 17:05:22 +0900718ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 struct ata_taskfile tf;
721 unsigned int class;
722 u8 err;
723
724 ap->ops->dev_select(ap, device);
725
726 memset(&tf, 0, sizeof(tf));
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400729 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900730 if (r_err)
731 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Alan Cox93590852006-09-12 16:55:12 +0100733 /* see if device passed diags: if master then continue and warn later */
734 if (err == 0 && device == 0)
735 /* diagnostic fail : do nothing _YET_ */
736 ap->device[device].horkage |= ATA_HORKAGE_DIAGNOSTIC;
737 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /* do nothing */ ;
739 else if ((device == 0) && (err == 0x81))
740 /* do nothing */ ;
741 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900742 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Tejun Heob4dc7622006-01-24 17:05:22 +0900744 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900748 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900750 return ATA_DEV_NONE;
751 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900755 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 * @id: IDENTIFY DEVICE results we will examine
757 * @s: string into which data is output
758 * @ofs: offset into identify device page
759 * @len: length of string to return. must be an even number.
760 *
761 * The strings in the IDENTIFY DEVICE page are broken up into
762 * 16-bit chunks. Run through the string, and output each
763 * 8-bit chunk linearly, regardless of platform.
764 *
765 * LOCKING:
766 * caller.
767 */
768
Tejun Heo6a62a042006-02-13 10:02:46 +0900769void ata_id_string(const u16 *id, unsigned char *s,
770 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 unsigned int c;
773
774 while (len > 0) {
775 c = id[ofs] >> 8;
776 *s = c;
777 s++;
778
779 c = id[ofs] & 0xff;
780 *s = c;
781 s++;
782
783 ofs++;
784 len -= 2;
785 }
786}
787
Tejun Heo0e949ff2006-02-12 22:47:04 +0900788/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900789 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900790 * @id: IDENTIFY DEVICE results we will examine
791 * @s: string into which data is output
792 * @ofs: offset into identify device page
793 * @len: length of string to return. must be an odd number.
794 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900795 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900796 * trims trailing spaces and terminates the resulting string with
797 * null. @len must be actual maximum length (even number) + 1.
798 *
799 * LOCKING:
800 * caller.
801 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900802void ata_id_c_string(const u16 *id, unsigned char *s,
803 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900804{
805 unsigned char *p;
806
807 WARN_ON(!(len & 1));
808
Tejun Heo6a62a042006-02-13 10:02:46 +0900809 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900810
811 p = s + strnlen(s, len - 1);
812 while (p > s && p[-1] == ' ')
813 p--;
814 *p = '\0';
815}
Edward Falk0baab862005-06-02 18:17:13 -0400816
Alan Cox1e999732007-04-11 00:23:13 +0100817static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
818{
819 u64 sectors = 0;
820
821 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
822 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
823 sectors |= (tf->hob_lbal & 0xff) << 24;
824 sectors |= (tf->lbah & 0xff) << 16;
825 sectors |= (tf->lbam & 0xff) << 8;
826 sectors |= (tf->lbal & 0xff);
827
828 return ++sectors;
829}
830
831static u64 ata_tf_to_lba(struct ata_taskfile *tf)
832{
833 u64 sectors = 0;
834
835 sectors |= (tf->device & 0x0f) << 24;
836 sectors |= (tf->lbah & 0xff) << 16;
837 sectors |= (tf->lbam & 0xff) << 8;
838 sectors |= (tf->lbal & 0xff);
839
840 return ++sectors;
841}
842
843/**
844 * ata_read_native_max_address_ext - LBA48 native max query
845 * @dev: Device to query
846 *
847 * Perform an LBA48 size query upon the device in question. Return the
848 * actual LBA48 size or zero if the command fails.
849 */
850
851static u64 ata_read_native_max_address_ext(struct ata_device *dev)
852{
853 unsigned int err;
854 struct ata_taskfile tf;
855
856 ata_tf_init(dev, &tf);
857
858 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
859 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
860 tf.protocol |= ATA_PROT_NODATA;
861 tf.device |= 0x40;
862
863 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
864 if (err)
865 return 0;
866
867 return ata_tf_to_lba48(&tf);
868}
869
870/**
871 * ata_read_native_max_address - LBA28 native max query
872 * @dev: Device to query
873 *
874 * Performa an LBA28 size query upon the device in question. Return the
875 * actual LBA28 size or zero if the command fails.
876 */
877
878static u64 ata_read_native_max_address(struct ata_device *dev)
879{
880 unsigned int err;
881 struct ata_taskfile tf;
882
883 ata_tf_init(dev, &tf);
884
885 tf.command = ATA_CMD_READ_NATIVE_MAX;
886 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
887 tf.protocol |= ATA_PROT_NODATA;
888 tf.device |= 0x40;
889
890 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
891 if (err)
892 return 0;
893
894 return ata_tf_to_lba(&tf);
895}
896
897/**
898 * ata_set_native_max_address_ext - LBA48 native max set
899 * @dev: Device to query
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700900 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100901 *
902 * Perform an LBA48 size set max upon the device in question. Return the
903 * actual LBA48 size or zero if the command fails.
904 */
905
906static u64 ata_set_native_max_address_ext(struct ata_device *dev, u64 new_sectors)
907{
908 unsigned int err;
909 struct ata_taskfile tf;
910
911 new_sectors--;
912
913 ata_tf_init(dev, &tf);
914
915 tf.command = ATA_CMD_SET_MAX_EXT;
916 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
917 tf.protocol |= ATA_PROT_NODATA;
918 tf.device |= 0x40;
919
920 tf.lbal = (new_sectors >> 0) & 0xff;
921 tf.lbam = (new_sectors >> 8) & 0xff;
922 tf.lbah = (new_sectors >> 16) & 0xff;
923
924 tf.hob_lbal = (new_sectors >> 24) & 0xff;
925 tf.hob_lbam = (new_sectors >> 32) & 0xff;
926 tf.hob_lbah = (new_sectors >> 40) & 0xff;
927
928 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
929 if (err)
930 return 0;
931
932 return ata_tf_to_lba48(&tf);
933}
934
935/**
936 * ata_set_native_max_address - LBA28 native max set
937 * @dev: Device to query
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700938 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100939 *
940 * Perform an LBA28 size set max upon the device in question. Return the
941 * actual LBA28 size or zero if the command fails.
942 */
943
944static u64 ata_set_native_max_address(struct ata_device *dev, u64 new_sectors)
945{
946 unsigned int err;
947 struct ata_taskfile tf;
948
949 new_sectors--;
950
951 ata_tf_init(dev, &tf);
952
953 tf.command = ATA_CMD_SET_MAX;
954 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
955 tf.protocol |= ATA_PROT_NODATA;
956
957 tf.lbal = (new_sectors >> 0) & 0xff;
958 tf.lbam = (new_sectors >> 8) & 0xff;
959 tf.lbah = (new_sectors >> 16) & 0xff;
960 tf.device |= ((new_sectors >> 24) & 0x0f) | 0x40;
961
962 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
963 if (err)
964 return 0;
965
966 return ata_tf_to_lba(&tf);
967}
968
969/**
970 * ata_hpa_resize - Resize a device with an HPA set
971 * @dev: Device to resize
972 *
973 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
974 * it if required to the full size of the media. The caller must check
975 * the drive has the HPA feature set enabled.
976 */
977
978static u64 ata_hpa_resize(struct ata_device *dev)
979{
980 u64 sectors = dev->n_sectors;
981 u64 hpa_sectors;
Jeff Garzika617c092007-05-21 20:14:23 -0400982
Alan Cox1e999732007-04-11 00:23:13 +0100983 if (ata_id_has_lba48(dev->id))
984 hpa_sectors = ata_read_native_max_address_ext(dev);
985 else
986 hpa_sectors = ata_read_native_max_address(dev);
987
Alan Cox1e999732007-04-11 00:23:13 +0100988 if (hpa_sectors > sectors) {
989 ata_dev_printk(dev, KERN_INFO,
990 "Host Protected Area detected:\n"
991 "\tcurrent size: %lld sectors\n"
992 "\tnative size: %lld sectors\n",
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -0700993 (long long)sectors, (long long)hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +0100994
995 if (ata_ignore_hpa) {
996 if (ata_id_has_lba48(dev->id))
997 hpa_sectors = ata_set_native_max_address_ext(dev, hpa_sectors);
998 else
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -0700999 hpa_sectors = ata_set_native_max_address(dev,
1000 hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001001
1002 if (hpa_sectors) {
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -07001003 ata_dev_printk(dev, KERN_INFO, "native size "
1004 "increased to %lld sectors\n",
1005 (long long)hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001006 return hpa_sectors;
1007 }
1008 }
Tejun Heo37301a52007-06-25 20:45:54 +09001009 } else if (hpa_sectors < sectors)
1010 ata_dev_printk(dev, KERN_WARNING, "%s 1: hpa sectors (%lld) "
1011 "is smaller than sectors (%lld)\n", __FUNCTION__,
1012 (long long)hpa_sectors, (long long)sectors);
1013
Alan Cox1e999732007-04-11 00:23:13 +01001014 return sectors;
1015}
1016
Tejun Heo29407402006-02-12 22:47:04 +09001017static u64 ata_id_n_sectors(const u16 *id)
1018{
1019 if (ata_id_has_lba(id)) {
1020 if (ata_id_has_lba48(id))
1021 return ata_id_u64(id, 100);
1022 else
1023 return ata_id_u32(id, 60);
1024 } else {
1025 if (ata_id_current_chs_valid(id))
1026 return ata_id_u32(id, 57);
1027 else
1028 return id[1] * id[3] * id[6];
1029 }
1030}
1031
Edward Falk0baab862005-06-02 18:17:13 -04001032/**
Alan10305f02007-02-20 18:01:59 +00001033 * ata_id_to_dma_mode - Identify DMA mode from id block
1034 * @dev: device to identify
Randy Dunlapcc261262007-03-16 19:55:47 -07001035 * @unknown: mode to assume if we cannot tell
Alan10305f02007-02-20 18:01:59 +00001036 *
1037 * Set up the timing values for the device based upon the identify
1038 * reported values for the DMA mode. This function is used by drivers
1039 * which rely upon firmware configured modes, but wish to report the
1040 * mode correctly when possible.
1041 *
1042 * In addition we emit similarly formatted messages to the default
1043 * ata_dev_set_mode handler, in order to provide consistency of
1044 * presentation.
1045 */
1046
1047void ata_id_to_dma_mode(struct ata_device *dev, u8 unknown)
1048{
1049 unsigned int mask;
1050 u8 mode;
1051
1052 /* Pack the DMA modes */
1053 mask = ((dev->id[63] >> 8) << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA;
1054 if (dev->id[53] & 0x04)
1055 mask |= ((dev->id[88] >> 8) << ATA_SHIFT_UDMA) & ATA_MASK_UDMA;
1056
1057 /* Select the mode in use */
1058 mode = ata_xfer_mask2mode(mask);
1059
1060 if (mode != 0) {
1061 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
1062 ata_mode_string(mask));
1063 } else {
1064 /* SWDMA perhaps ? */
1065 mode = unknown;
1066 ata_dev_printk(dev, KERN_INFO, "configured for DMA\n");
1067 }
1068
1069 /* Configure the device reporting */
1070 dev->xfer_mode = mode;
1071 dev->xfer_shift = ata_xfer_mode2shift(mode);
1072}
1073
1074/**
Edward Falk0baab862005-06-02 18:17:13 -04001075 * ata_noop_dev_select - Select device 0/1 on ATA bus
1076 * @ap: ATA channel to manipulate
1077 * @device: ATA device (numbered from zero) to select
1078 *
1079 * This function performs no actual function.
1080 *
1081 * May be used as the dev_select() entry in ata_port_operations.
1082 *
1083 * LOCKING:
1084 * caller.
1085 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
1087{
1088}
1089
Edward Falk0baab862005-06-02 18:17:13 -04001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091/**
1092 * ata_std_dev_select - Select device 0/1 on ATA bus
1093 * @ap: ATA channel to manipulate
1094 * @device: ATA device (numbered from zero) to select
1095 *
1096 * Use the method defined in the ATA specification to
1097 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -04001098 * ATA channel. Works with both PIO and MMIO.
1099 *
1100 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 *
1102 * LOCKING:
1103 * caller.
1104 */
1105
1106void ata_std_dev_select (struct ata_port *ap, unsigned int device)
1107{
1108 u8 tmp;
1109
1110 if (device == 0)
1111 tmp = ATA_DEVICE_OBS;
1112 else
1113 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1114
Tejun Heo0d5ff562007-02-01 15:06:36 +09001115 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 ata_pause(ap); /* needed; also flushes, for mmio */
1117}
1118
1119/**
1120 * ata_dev_select - Select device 0/1 on ATA bus
1121 * @ap: ATA channel to manipulate
1122 * @device: ATA device (numbered from zero) to select
1123 * @wait: non-zero to wait for Status register BSY bit to clear
1124 * @can_sleep: non-zero if context allows sleeping
1125 *
1126 * Use the method defined in the ATA specification to
1127 * make either device 0, or device 1, active on the
1128 * ATA channel.
1129 *
1130 * This is a high-level version of ata_std_dev_select(),
1131 * which additionally provides the services of inserting
1132 * the proper pauses and status polling, where needed.
1133 *
1134 * LOCKING:
1135 * caller.
1136 */
1137
1138void ata_dev_select(struct ata_port *ap, unsigned int device,
1139 unsigned int wait, unsigned int can_sleep)
1140{
Tejun Heo88574552006-06-25 20:00:35 +09001141 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001142 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
1143 "device %u, wait %u\n", device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (wait)
1146 ata_wait_idle(ap);
1147
1148 ap->ops->dev_select(ap, device);
1149
1150 if (wait) {
1151 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
1152 msleep(150);
1153 ata_wait_idle(ap);
1154 }
1155}
1156
1157/**
1158 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001159 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001161 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1162 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 *
1164 * LOCKING:
1165 * caller.
1166 */
1167
Tejun Heo0bd33002006-02-12 22:47:05 +09001168static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
1170 DPRINTK("49==0x%04x "
1171 "53==0x%04x "
1172 "63==0x%04x "
1173 "64==0x%04x "
1174 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001175 id[49],
1176 id[53],
1177 id[63],
1178 id[64],
1179 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 DPRINTK("80==0x%04x "
1181 "81==0x%04x "
1182 "82==0x%04x "
1183 "83==0x%04x "
1184 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001185 id[80],
1186 id[81],
1187 id[82],
1188 id[83],
1189 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 DPRINTK("88==0x%04x "
1191 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001192 id[88],
1193 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194}
1195
Tejun Heocb95d562006-03-06 04:31:56 +09001196/**
1197 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1198 * @id: IDENTIFY data to compute xfer mask from
1199 *
1200 * Compute the xfermask for this device. This is not as trivial
1201 * as it seems if we must consider early devices correctly.
1202 *
1203 * FIXME: pre IDE drive timing (do we care ?).
1204 *
1205 * LOCKING:
1206 * None.
1207 *
1208 * RETURNS:
1209 * Computed xfermask
1210 */
1211static unsigned int ata_id_xfermask(const u16 *id)
1212{
1213 unsigned int pio_mask, mwdma_mask, udma_mask;
1214
1215 /* Usual case. Word 53 indicates word 64 is valid */
1216 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1217 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1218 pio_mask <<= 3;
1219 pio_mask |= 0x7;
1220 } else {
1221 /* If word 64 isn't valid then Word 51 high byte holds
1222 * the PIO timing number for the maximum. Turn it into
1223 * a mask.
1224 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001225 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001226 if (mode < 5) /* Valid PIO range */
1227 pio_mask = (2 << mode) - 1;
1228 else
1229 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001230
1231 /* But wait.. there's more. Design your standards by
1232 * committee and you too can get a free iordy field to
1233 * process. However its the speeds not the modes that
1234 * are supported... Note drivers using the timing API
1235 * will get this right anyway
1236 */
1237 }
1238
1239 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001240
Alan Coxb352e572006-08-10 18:52:12 +01001241 if (ata_id_is_cfa(id)) {
1242 /*
1243 * Process compact flash extended modes
1244 */
1245 int pio = id[163] & 0x7;
1246 int dma = (id[163] >> 3) & 7;
1247
1248 if (pio)
1249 pio_mask |= (1 << 5);
1250 if (pio > 1)
1251 pio_mask |= (1 << 6);
1252 if (dma)
1253 mwdma_mask |= (1 << 3);
1254 if (dma > 1)
1255 mwdma_mask |= (1 << 4);
1256 }
1257
Tejun Heofb21f0d2006-03-12 12:34:35 +09001258 udma_mask = 0;
1259 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1260 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001261
1262 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1263}
1264
Tejun Heo86e45b62006-03-05 15:29:09 +09001265/**
1266 * ata_port_queue_task - Queue port_task
1267 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001268 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001269 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001270 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001271 *
1272 * Schedule @fn(@data) for execution after @delay jiffies using
1273 * port_task. There is one port_task per port and it's the
1274 * user(low level driver)'s responsibility to make sure that only
1275 * one task is active at any given time.
1276 *
1277 * libata core layer takes care of synchronization between
1278 * port_task and EH. ata_port_queue_task() may be ignored for EH
1279 * synchronization.
1280 *
1281 * LOCKING:
1282 * Inherited from caller.
1283 */
David Howells65f27f32006-11-22 14:55:48 +00001284void ata_port_queue_task(struct ata_port *ap, work_func_t fn, void *data,
Tejun Heo86e45b62006-03-05 15:29:09 +09001285 unsigned long delay)
1286{
David Howells65f27f32006-11-22 14:55:48 +00001287 PREPARE_DELAYED_WORK(&ap->port_task, fn);
1288 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001289
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001290 /* may fail if ata_port_flush_task() in progress */
1291 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001292}
1293
1294/**
1295 * ata_port_flush_task - Flush port_task
1296 * @ap: The ata_port to flush port_task for
1297 *
1298 * After this function completes, port_task is guranteed not to
1299 * be running or scheduled.
1300 *
1301 * LOCKING:
1302 * Kernel thread context (may sleep)
1303 */
1304void ata_port_flush_task(struct ata_port *ap)
1305{
Tejun Heo86e45b62006-03-05 15:29:09 +09001306 DPRINTK("ENTER\n");
1307
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001308 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001309
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001310 if (ata_msg_ctl(ap))
1311 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001312}
1313
Adrian Bunk7102d232007-01-04 00:09:36 +01001314static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001315{
Tejun Heo77853bf2006-01-23 13:09:36 +09001316 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001317
Tejun Heoa2a7a662005-12-13 14:48:31 +09001318 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001319}
1320
1321/**
Tejun Heo24326972006-11-14 22:47:09 +09001322 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001323 * @dev: Device to which the command is sent
1324 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001325 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001326 * @dma_dir: Data tranfer direction of the command
Tejun Heo24326972006-11-14 22:47:09 +09001327 * @sg: sg list for the data buffer of the command
1328 * @n_elem: Number of sg entries
Tejun Heoa2a7a662005-12-13 14:48:31 +09001329 *
1330 * Executes libata internal command with timeout. @tf contains
1331 * command on entry and result on return. Timeout and error
1332 * conditions are reported via return value. No recovery action
1333 * is taken after a command times out. It's caller's duty to
1334 * clean up after timeout.
1335 *
1336 * LOCKING:
1337 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001338 *
1339 * RETURNS:
1340 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001341 */
Tejun Heo24326972006-11-14 22:47:09 +09001342unsigned ata_exec_internal_sg(struct ata_device *dev,
1343 struct ata_taskfile *tf, const u8 *cdb,
1344 int dma_dir, struct scatterlist *sg,
1345 unsigned int n_elem)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001346{
Tejun Heo3373efd2006-05-15 20:57:53 +09001347 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001348 u8 command = tf->command;
1349 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001350 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001351 u32 preempted_sactive, preempted_qc_active;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001352 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001353 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001354 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001355 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001356
Jeff Garzikba6a1302006-06-22 23:46:10 -04001357 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001358
Tejun Heoe3180492006-05-15 20:58:09 +09001359 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001360 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001361 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001362 return AC_ERR_SYSTEM;
1363 }
1364
Tejun Heo2ab7db12006-05-15 20:58:02 +09001365 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001366
Tejun Heo2ab7db12006-05-15 20:58:02 +09001367 /* XXX: Tag 0 is used for drivers with legacy EH as some
1368 * drivers choke if any other tag is given. This breaks
1369 * ata_tag_internal() test for those drivers. Don't use new
1370 * EH stuff without converting to it.
1371 */
1372 if (ap->ops->error_handler)
1373 tag = ATA_TAG_INTERNAL;
1374 else
1375 tag = 0;
1376
Tejun Heo6cec4a32006-05-15 21:03:41 +09001377 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001378 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001379 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001380
1381 qc->tag = tag;
1382 qc->scsicmd = NULL;
1383 qc->ap = ap;
1384 qc->dev = dev;
1385 ata_qc_reinit(qc);
1386
1387 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001388 preempted_sactive = ap->sactive;
1389 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001390 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001391 ap->sactive = 0;
1392 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001393
1394 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001395 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001396 if (cdb)
1397 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001398 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001399 qc->dma_dir = dma_dir;
1400 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001401 unsigned int i, buflen = 0;
1402
1403 for (i = 0; i < n_elem; i++)
1404 buflen += sg[i].length;
1405
1406 ata_sg_init(qc, sg, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001407 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001408 }
1409
Tejun Heo77853bf2006-01-23 13:09:36 +09001410 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001411 qc->complete_fn = ata_qc_complete_internal;
1412
Tejun Heo8e0e6942006-03-31 20:41:11 +09001413 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001414
Jeff Garzikba6a1302006-06-22 23:46:10 -04001415 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001416
Andrew Mortona8601e52006-06-25 01:36:52 -07001417 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001418
Tejun Heod95a7172006-05-15 20:58:14 +09001419 ata_port_flush_task(ap);
1420
1421 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001422 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001423
1424 /* We're racing with irq here. If we lose, the
1425 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001426 * twice. If we win, the port is frozen and will be
1427 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001428 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001429 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001430 qc->err_mask |= AC_ERR_TIMEOUT;
1431
1432 if (ap->ops->error_handler)
1433 ata_port_freeze(ap);
1434 else
1435 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001436
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001437 if (ata_msg_warn(ap))
1438 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001439 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001440 }
1441
Jeff Garzikba6a1302006-06-22 23:46:10 -04001442 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001443 }
1444
Tejun Heod95a7172006-05-15 20:58:14 +09001445 /* do post_internal_cmd */
1446 if (ap->ops->post_internal_cmd)
1447 ap->ops->post_internal_cmd(qc);
1448
Tejun Heoa51d6442007-03-20 15:24:11 +09001449 /* perform minimal error analysis */
1450 if (qc->flags & ATA_QCFLAG_FAILED) {
1451 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1452 qc->err_mask |= AC_ERR_DEV;
1453
1454 if (!qc->err_mask)
1455 qc->err_mask |= AC_ERR_OTHER;
1456
1457 if (qc->err_mask & ~AC_ERR_OTHER)
1458 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001459 }
1460
Tejun Heo15869302006-05-15 20:57:33 +09001461 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001462 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001463
Tejun Heoe61e0672006-05-15 20:57:40 +09001464 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001465 err_mask = qc->err_mask;
1466
1467 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001468 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001469 ap->sactive = preempted_sactive;
1470 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001471
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001472 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1473 * Until those drivers are fixed, we detect the condition
1474 * here, fail the command with AC_ERR_SYSTEM and reenable the
1475 * port.
1476 *
1477 * Note that this doesn't change any behavior as internal
1478 * command failure results in disabling the device in the
1479 * higher layer for LLDDs without new reset/EH callbacks.
1480 *
1481 * Kill the following code as soon as those drivers are fixed.
1482 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001483 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001484 err_mask |= AC_ERR_SYSTEM;
1485 ata_port_probe(ap);
1486 }
1487
Jeff Garzikba6a1302006-06-22 23:46:10 -04001488 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001489
Tejun Heo77853bf2006-01-23 13:09:36 +09001490 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001491}
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493/**
Tejun Heo33480a02006-12-12 02:15:31 +09001494 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001495 * @dev: Device to which the command is sent
1496 * @tf: Taskfile registers for the command and the result
1497 * @cdb: CDB for packet command
1498 * @dma_dir: Data tranfer direction of the command
1499 * @buf: Data buffer of the command
1500 * @buflen: Length of data buffer
1501 *
1502 * Wrapper around ata_exec_internal_sg() which takes simple
1503 * buffer instead of sg list.
1504 *
1505 * LOCKING:
1506 * None. Should be called with kernel context, might sleep.
1507 *
1508 * RETURNS:
1509 * Zero on success, AC_ERR_* mask on failure
1510 */
1511unsigned ata_exec_internal(struct ata_device *dev,
1512 struct ata_taskfile *tf, const u8 *cdb,
1513 int dma_dir, void *buf, unsigned int buflen)
1514{
Tejun Heo33480a02006-12-12 02:15:31 +09001515 struct scatterlist *psg = NULL, sg;
1516 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001517
Tejun Heo33480a02006-12-12 02:15:31 +09001518 if (dma_dir != DMA_NONE) {
1519 WARN_ON(!buf);
1520 sg_init_one(&sg, buf, buflen);
1521 psg = &sg;
1522 n_elem++;
1523 }
Tejun Heo24326972006-11-14 22:47:09 +09001524
Tejun Heo33480a02006-12-12 02:15:31 +09001525 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem);
Tejun Heo24326972006-11-14 22:47:09 +09001526}
1527
1528/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001529 * ata_do_simple_cmd - execute simple internal command
1530 * @dev: Device to which the command is sent
1531 * @cmd: Opcode to execute
1532 *
1533 * Execute a 'simple' command, that only consists of the opcode
1534 * 'cmd' itself, without filling any other registers
1535 *
1536 * LOCKING:
1537 * Kernel thread context (may sleep).
1538 *
1539 * RETURNS:
1540 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001541 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001542unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001543{
1544 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001545
1546 ata_tf_init(dev, &tf);
1547
1548 tf.command = cmd;
1549 tf.flags |= ATA_TFLAG_DEVICE;
1550 tf.protocol = ATA_PROT_NODATA;
1551
Tejun Heo977e6b92006-06-24 20:30:19 +09001552 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001553}
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001556 * ata_pio_need_iordy - check if iordy needed
1557 * @adev: ATA device
1558 *
1559 * Check if the current speed of the device requires IORDY. Used
1560 * by various controllers for chip configuration.
1561 */
Jeff Garzika617c092007-05-21 20:14:23 -04001562
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001563unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1564{
Alan Cox432729f2007-03-08 23:22:59 +00001565 /* Controller doesn't support IORDY. Probably a pointless check
1566 as the caller should know this */
1567 if (adev->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001568 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001569 /* PIO3 and higher it is mandatory */
1570 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001571 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001572 /* We turn it on when possible */
1573 if (ata_id_has_iordy(adev->id))
1574 return 1;
1575 return 0;
1576}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001577
Alan Cox432729f2007-03-08 23:22:59 +00001578/**
1579 * ata_pio_mask_no_iordy - Return the non IORDY mask
1580 * @adev: ATA device
1581 *
1582 * Compute the highest mode possible if we are not using iordy. Return
1583 * -1 if no iordy mode is available.
1584 */
Jeff Garzika617c092007-05-21 20:14:23 -04001585
Alan Cox432729f2007-03-08 23:22:59 +00001586static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1587{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001588 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001589 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001590 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001591 /* Is the speed faster than the drive allows non IORDY ? */
1592 if (pio) {
1593 /* This is cycle times not frequency - watch the logic! */
1594 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001595 return 3 << ATA_SHIFT_PIO;
1596 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001597 }
1598 }
Alan Cox432729f2007-03-08 23:22:59 +00001599 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001600}
1601
1602/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001603 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001604 * @dev: target device
1605 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001606 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001607 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001608 *
1609 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1610 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001611 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1612 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001613 *
1614 * LOCKING:
1615 * Kernel thread context (may sleep)
1616 *
1617 * RETURNS:
1618 * 0 on success, -errno otherwise.
1619 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001620int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001621 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001622{
Tejun Heo3373efd2006-05-15 20:57:53 +09001623 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001624 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001625 struct ata_taskfile tf;
1626 unsigned int err_mask = 0;
1627 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001628 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001629 int rc;
1630
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001631 if (ata_msg_ctl(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001632 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001633
Tejun Heo49016ac2006-02-21 02:12:11 +09001634 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
Tejun Heo49016ac2006-02-21 02:12:11 +09001635 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001636 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001637
1638 switch (class) {
1639 case ATA_DEV_ATA:
1640 tf.command = ATA_CMD_ID_ATA;
1641 break;
1642 case ATA_DEV_ATAPI:
1643 tf.command = ATA_CMD_ID_ATAPI;
1644 break;
1645 default:
1646 rc = -ENODEV;
1647 reason = "unsupported class";
1648 goto err_out;
1649 }
1650
1651 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001652
1653 /* Some devices choke if TF registers contain garbage. Make
1654 * sure those are properly initialized.
1655 */
1656 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1657
1658 /* Device presence detection is unreliable on some
1659 * controllers. Always poll IDENTIFY if available.
1660 */
1661 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001662
Tejun Heo3373efd2006-05-15 20:57:53 +09001663 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001664 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001665 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001666 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001667 DPRINTK("ata%u.%d: NODEV after polling detection\n",
Tejun Heo44877b42007-02-21 01:06:51 +09001668 ap->print_id, dev->devno);
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001669 return -ENOENT;
1670 }
1671
Tejun Heo54936f82007-05-11 14:35:29 +02001672 /* Device or controller might have reported the wrong
1673 * device class. Give a shot at the other IDENTIFY if
1674 * the current one is aborted by the device.
1675 */
1676 if (may_fallback &&
1677 (err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1678 may_fallback = 0;
1679
1680 if (class == ATA_DEV_ATA)
1681 class = ATA_DEV_ATAPI;
1682 else
1683 class = ATA_DEV_ATA;
1684 goto retry;
1685 }
1686
Tejun Heo49016ac2006-02-21 02:12:11 +09001687 rc = -EIO;
1688 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001689 goto err_out;
1690 }
1691
Tejun Heo54936f82007-05-11 14:35:29 +02001692 /* Falling back doesn't make sense if ID data was read
1693 * successfully at least once.
1694 */
1695 may_fallback = 0;
1696
Tejun Heo49016ac2006-02-21 02:12:11 +09001697 swap_buf_le16(id, ATA_ID_WORDS);
1698
Tejun Heo49016ac2006-02-21 02:12:11 +09001699 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001700 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01001701 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07001702
1703 if (class == ATA_DEV_ATA) {
1704 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1705 goto err_out;
1706 } else {
1707 if (ata_id_is_ata(id))
1708 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001709 }
1710
Mark Lord169439c2007-04-17 18:26:07 -04001711 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
1712 tried_spinup = 1;
1713 /*
1714 * Drive powered-up in standby mode, and requires a specific
1715 * SET_FEATURES spin-up subcommand before it will accept
1716 * anything other than the original IDENTIFY command.
1717 */
1718 ata_tf_init(dev, &tf);
1719 tf.command = ATA_CMD_SET_FEATURES;
1720 tf.feature = SETFEATURES_SPINUP;
1721 tf.protocol = ATA_PROT_NODATA;
1722 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1723 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
1724 if (err_mask) {
1725 rc = -EIO;
1726 reason = "SPINUP failed";
1727 goto err_out;
1728 }
1729 /*
1730 * If the drive initially returned incomplete IDENTIFY info,
1731 * we now must reissue the IDENTIFY command.
1732 */
1733 if (id[2] == 0x37c8)
1734 goto retry;
1735 }
1736
Tejun Heobff04642006-11-10 18:08:10 +09001737 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001738 /*
1739 * The exact sequence expected by certain pre-ATA4 drives is:
1740 * SRST RESET
1741 * IDENTIFY
1742 * INITIALIZE DEVICE PARAMETERS
1743 * anything else..
1744 * Some drives were very specific about that exact sequence.
1745 */
1746 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001747 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001748 if (err_mask) {
1749 rc = -EIO;
1750 reason = "INIT_DEV_PARAMS failed";
1751 goto err_out;
1752 }
1753
1754 /* current CHS translation info (id[53-58]) might be
1755 * changed. reread the identify device info.
1756 */
Tejun Heobff04642006-11-10 18:08:10 +09001757 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09001758 goto retry;
1759 }
1760 }
1761
1762 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001763
Tejun Heo49016ac2006-02-21 02:12:11 +09001764 return 0;
1765
1766 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001767 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001768 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001769 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001770 return rc;
1771}
1772
Tejun Heo3373efd2006-05-15 20:57:53 +09001773static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001774{
Tejun Heo3373efd2006-05-15 20:57:53 +09001775 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001776}
1777
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001778static void ata_dev_config_ncq(struct ata_device *dev,
1779 char *desc, size_t desc_sz)
1780{
1781 struct ata_port *ap = dev->ap;
1782 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1783
1784 if (!ata_id_has_ncq(dev->id)) {
1785 desc[0] = '\0';
1786 return;
1787 }
Tejun Heo75683fe2007-07-05 13:31:27 +09001788 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07001789 snprintf(desc, desc_sz, "NCQ (not used)");
1790 return;
1791 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001792 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04001793 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001794 dev->flags |= ATA_DFLAG_NCQ;
1795 }
1796
1797 if (hdepth >= ddepth)
1798 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1799 else
1800 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1801}
1802
Tejun Heo49016ac2006-02-21 02:12:11 +09001803/**
Tejun Heoffeae412006-03-01 16:09:35 +09001804 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001805 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 *
Tejun Heoffeae412006-03-01 16:09:35 +09001807 * Configure @dev according to @dev->id. Generic and low-level
1808 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 *
1810 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001811 * Kernel thread context (may sleep)
1812 *
1813 * RETURNS:
1814 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09001816int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
Tejun Heo3373efd2006-05-15 20:57:53 +09001818 struct ata_port *ap = dev->ap;
Tejun Heo67465442007-05-15 03:28:16 +09001819 struct ata_eh_context *ehc = &ap->eh_context;
1820 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001821 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001822 unsigned int xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01001823 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001824 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
1825 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05001826 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001828 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09001829 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
1830 __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001831 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
1833
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001834 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001835 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Tejun Heo75683fe2007-07-05 13:31:27 +09001837 /* set horkage */
1838 dev->horkage |= ata_dev_blacklisted(dev);
1839
Tejun Heo67465442007-05-15 03:28:16 +09001840 /* let ACPI work its magic */
1841 rc = ata_acpi_on_devcfg(dev);
1842 if (rc)
1843 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08001844
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001845 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001846 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001847 ata_dev_printk(dev, KERN_DEBUG,
1848 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1849 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001850 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001851 id[49], id[82], id[83], id[84],
1852 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001853
Tejun Heo208a9932006-03-05 17:55:58 +09001854 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001855 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001856 dev->max_sectors = 0;
1857 dev->cdb_len = 0;
1858 dev->n_sectors = 0;
1859 dev->cylinders = 0;
1860 dev->heads = 0;
1861 dev->sectors = 0;
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 /*
1864 * common ATA, ATAPI feature tests
1865 */
1866
Tejun Heoff8854b2006-03-06 04:31:56 +09001867 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001868 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001870 if (ata_msg_probe(ap))
1871 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Albert Leeef143d52007-06-05 13:01:33 +08001873 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
1874 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
1875 sizeof(fwrevbuf));
1876
1877 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
1878 sizeof(modelbuf));
1879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 /* ATA-specific feature tests */
1881 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01001882 if (ata_id_is_cfa(id)) {
1883 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09001884 ata_dev_printk(dev, KERN_WARNING,
1885 "supports DRM functions and may "
1886 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01001887 snprintf(revbuf, 7, "CFA");
1888 }
1889 else
1890 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
1891
Tejun Heo1148c3a2006-03-13 19:48:04 +09001892 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001893
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001894 if (dev->id[59] & 0x100)
1895 dev->multi_count = dev->id[59] & 0xff;
1896
Tejun Heo1148c3a2006-03-13 19:48:04 +09001897 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001898 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001899 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001900
Tejun Heo4c2d7212006-03-05 17:55:58 +09001901 lba_desc = "LBA";
1902 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001903 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001904 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001905 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001906
1907 if (dev->n_sectors >= (1UL << 28) &&
1908 ata_id_has_flush_ext(id))
1909 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001910 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001911
Alan Cox1e999732007-04-11 00:23:13 +01001912 if (ata_id_hpa_enabled(dev->id))
1913 dev->n_sectors = ata_hpa_resize(dev);
1914
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001915 /* config NCQ */
1916 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1917
Albert Lee8bf62ece2005-05-12 15:29:42 -04001918 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001919 if (ata_msg_drv(ap) && print_info) {
1920 ata_dev_printk(dev, KERN_INFO,
1921 "%s: %s, %s, max %s\n",
1922 revbuf, modelbuf, fwrevbuf,
1923 ata_mode_string(xfer_mask));
1924 ata_dev_printk(dev, KERN_INFO,
1925 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001926 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001927 dev->multi_count, lba_desc, ncq_desc);
1928 }
Tejun Heoffeae412006-03-01 16:09:35 +09001929 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001930 /* CHS */
1931
1932 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001933 dev->cylinders = id[1];
1934 dev->heads = id[3];
1935 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001936
Tejun Heo1148c3a2006-03-13 19:48:04 +09001937 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001938 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001939 dev->cylinders = id[54];
1940 dev->heads = id[55];
1941 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001942 }
1943
1944 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001945 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09001946 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001947 "%s: %s, %s, max %s\n",
1948 revbuf, modelbuf, fwrevbuf,
1949 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05001950 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001951 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
1952 (unsigned long long)dev->n_sectors,
1953 dev->multi_count, dev->cylinders,
1954 dev->heads, dev->sectors);
1955 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08001956 }
1957
Tejun Heo6e7846e2006-02-12 23:32:58 +09001958 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960
1961 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001962 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001963 char *cdb_intr_string = "";
1964
Tejun Heo1148c3a2006-03-13 19:48:04 +09001965 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001967 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001968 ata_dev_printk(dev, KERN_WARNING,
1969 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001970 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 goto err_out_nosup;
1972 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001973 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Albert Lee08a556d2006-03-31 13:29:04 +08001975 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001976 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001977 cdb_intr_string = ", CDB intr";
1978 }
Albert Lee312f7da2005-09-27 17:38:03 +08001979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001981 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08001982 ata_dev_printk(dev, KERN_INFO,
1983 "ATAPI: %s, %s, max %s%s\n",
1984 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09001985 ata_mode_string(xfer_mask),
1986 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 }
1988
Tejun Heo914ed352006-11-01 18:39:55 +09001989 /* determine max_sectors */
1990 dev->max_sectors = ATA_MAX_SECTORS;
1991 if (dev->flags & ATA_DFLAG_LBA48)
1992 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
1993
Alan Cox93590852006-09-12 16:55:12 +01001994 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
1995 /* Let the user know. We don't want to disallow opens for
1996 rescue purposes, or in case the vendor is just a blithering
1997 idiot */
1998 if (print_info) {
1999 ata_dev_printk(dev, KERN_WARNING,
2000"Drive reports diagnostics failure. This may indicate a drive\n");
2001 ata_dev_printk(dev, KERN_WARNING,
2002"fault or invalid emulation. Contact drive vendor for information.\n");
2003 }
2004 }
2005
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002006 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002007 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002008 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002009 ata_dev_printk(dev, KERN_INFO,
2010 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002011 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002012 dev->max_sectors = ATA_MAX_SECTORS;
2013 }
2014
Tejun Heo75683fe2007-07-05 13:31:27 +09002015 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002016 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2017 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002018
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002019 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002020 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002021
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002022 if (ata_msg_probe(ap))
2023 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
2024 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002025 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002028 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002029 ata_dev_printk(dev, KERN_DEBUG,
2030 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09002031 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032}
2033
2034/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002035 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002036 * @ap: port
2037 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002038 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002039 * detection.
2040 */
2041
2042int ata_cable_40wire(struct ata_port *ap)
2043{
2044 return ATA_CBL_PATA40;
2045}
2046
2047/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002048 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002049 * @ap: port
2050 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002051 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002052 * detection.
2053 */
2054
2055int ata_cable_80wire(struct ata_port *ap)
2056{
2057 return ATA_CBL_PATA80;
2058}
2059
2060/**
2061 * ata_cable_unknown - return unknown PATA cable.
2062 * @ap: port
2063 *
2064 * Helper method for drivers which have no PATA cable detection.
2065 */
2066
2067int ata_cable_unknown(struct ata_port *ap)
2068{
2069 return ATA_CBL_PATA_UNK;
2070}
2071
2072/**
2073 * ata_cable_sata - return SATA cable type
2074 * @ap: port
2075 *
2076 * Helper method for drivers which have SATA cables
2077 */
2078
2079int ata_cable_sata(struct ata_port *ap)
2080{
2081 return ATA_CBL_SATA;
2082}
2083
2084/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 * ata_bus_probe - Reset and probe ATA bus
2086 * @ap: Bus to probe
2087 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002088 * Master ATA bus probing function. Initiates a hardware-dependent
2089 * bus reset, then attempts to identify any devices found on
2090 * the bus.
2091 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002093 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 *
2095 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002096 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 */
2098
Brian King80289162006-08-07 14:27:31 -05002099int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002101 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002102 int tries[ATA_MAX_DEVICES];
Tejun Heo4ae72a12007-02-02 16:22:30 +09002103 int i, rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002104 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Tejun Heo28ca5c52006-03-01 16:09:36 +09002106 ata_port_probe(ap);
2107
Tejun Heo14d2bac2006-04-02 17:54:46 +09002108 for (i = 0; i < ATA_MAX_DEVICES; i++)
2109 tries[i] = ATA_PROBE_MAX_TRIES;
2110
2111 retry:
Tejun Heo20444702006-03-13 01:57:01 +09002112 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002113 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002114
Tejun Heo52783c52006-05-31 18:28:22 +09002115 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2116 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09002117
Tejun Heo52783c52006-05-31 18:28:22 +09002118 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2119 dev->class != ATA_DEV_UNKNOWN)
2120 classes[dev->devno] = dev->class;
2121 else
2122 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002123
Tejun Heo52783c52006-05-31 18:28:22 +09002124 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Tejun Heo52783c52006-05-31 18:28:22 +09002127 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002128
Alan Coxb6079ca2006-05-22 16:52:06 +01002129 /* after the reset the device state is PIO 0 and the controller
2130 state is undefined. Record the mode */
2131
2132 for (i = 0; i < ATA_MAX_DEVICES; i++)
2133 ap->device[i].pio_mode = XFER_PIO_0;
2134
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002135 /* read IDENTIFY page and configure devices. We have to do the identify
2136 specific sequence bass-ackwards so that PDIAG- is released by
2137 the slave device */
2138
2139 for (i = ATA_MAX_DEVICES - 1; i >= 0; i--) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002140 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09002141
Tejun Heoec573752006-04-11 22:26:29 +09002142 if (tries[i])
2143 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002144
Tejun Heoe1211e32006-04-01 01:38:18 +09002145 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002146 continue;
2147
Tejun Heobff04642006-11-10 18:08:10 +09002148 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2149 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002150 if (rc)
2151 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002152 }
2153
Alan Coxbe0d18d2007-03-06 02:37:56 -08002154 /* Now ask for the cable type as PDIAG- should have been released */
2155 if (ap->ops->cable_detect)
2156 ap->cbl = ap->ops->cable_detect(ap);
2157
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002158 /* After the identify sequence we can now set up the devices. We do
2159 this in the normal order so that the user doesn't get confused */
2160
2161 for(i = 0; i < ATA_MAX_DEVICES; i++) {
2162 dev = &ap->device[i];
2163 if (!ata_dev_enabled(dev))
2164 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002165
Tejun Heoefdaedc2006-11-01 18:38:52 +09002166 ap->eh_context.i.flags |= ATA_EHI_PRINTINFO;
2167 rc = ata_dev_configure(dev);
2168 ap->eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002169 if (rc)
2170 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 }
2172
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002173 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09002174 rc = ata_set_mode(ap, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002175 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002176 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002178 for (i = 0; i < ATA_MAX_DEVICES; i++)
2179 if (ata_dev_enabled(&ap->device[i]))
2180 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002181
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002182 /* no device present, disable port */
2183 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002185 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002186
2187 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002188 tries[dev->devno]--;
2189
Tejun Heo14d2bac2006-04-02 17:54:46 +09002190 switch (rc) {
2191 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002192 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002193 tries[dev->devno] = 0;
2194 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002195
2196 case -ENODEV:
2197 /* give it just one more chance */
2198 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002199 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002200 if (tries[dev->devno] == 1) {
2201 /* This is the last chance, better to slow
2202 * down than lose it.
2203 */
2204 sata_down_spd_limit(ap);
2205 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2206 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002207 }
2208
Tejun Heo4ae72a12007-02-02 16:22:30 +09002209 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002210 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002211
Tejun Heo14d2bac2006-04-02 17:54:46 +09002212 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213}
2214
2215/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002216 * ata_port_probe - Mark port as enabled
2217 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002219 * Modify @ap data structure such that the system
2220 * thinks that the entire port is enabled.
2221 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002222 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002223 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 */
2225
2226void ata_port_probe(struct ata_port *ap)
2227{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002228 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
2231/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002232 * sata_print_link_status - Print SATA link status
2233 * @ap: SATA port to printk link status about
2234 *
2235 * This function prints link speed and status of a SATA link.
2236 *
2237 * LOCKING:
2238 * None.
2239 */
Jeff Garzik43727fb2007-02-25 16:50:52 -05002240void sata_print_link_status(struct ata_port *ap)
Tejun Heo3be680b2005-12-19 22:35:02 +09002241{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002242 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002243
Tejun Heo81952c52006-05-15 20:57:47 +09002244 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002245 return;
Tejun Heo81952c52006-05-15 20:57:47 +09002246 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002247
Tejun Heo81952c52006-05-15 20:57:47 +09002248 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002249 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09002250 ata_port_printk(ap, KERN_INFO,
2251 "SATA link up %s (SStatus %X SControl %X)\n",
2252 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002253 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09002254 ata_port_printk(ap, KERN_INFO,
2255 "SATA link down (SStatus %X SControl %X)\n",
2256 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002257 }
2258}
2259
2260/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002261 * __sata_phy_reset - Wake/reset a low-level SATA PHY
2262 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002264 * This function issues commands to standard SATA Sxxx
2265 * PHY registers, to wake up the phy (and device), and
2266 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 *
2268 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002269 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 *
2271 */
2272void __sata_phy_reset(struct ata_port *ap)
2273{
2274 u32 sstatus;
2275 unsigned long timeout = jiffies + (HZ * 5);
2276
2277 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05002278 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002279 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09002280 /* Couldn't find anything in SATA I/II specs, but
2281 * AHCI-1.1 10.4.2 says at least 1 ms. */
2282 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
Tejun Heo81952c52006-05-15 20:57:47 +09002284 /* phy wake/clear reset */
2285 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 /* wait for phy to become ready, if necessary */
2288 do {
2289 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09002290 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 if ((sstatus & 0xf) != 1)
2292 break;
2293 } while (time_before(jiffies, timeout));
2294
Tejun Heo3be680b2005-12-19 22:35:02 +09002295 /* print link status */
2296 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05002297
Tejun Heo3be680b2005-12-19 22:35:02 +09002298 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002299 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09002301 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Tejun Heo198e0fe2006-04-02 18:51:52 +09002304 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 return;
2306
2307 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2308 ata_port_disable(ap);
2309 return;
2310 }
2311
2312 ap->cbl = ATA_CBL_SATA;
2313}
2314
2315/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002316 * sata_phy_reset - Reset SATA bus.
2317 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002319 * This function resets the SATA bus, and then probes
2320 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 *
2322 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002323 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 *
2325 */
2326void sata_phy_reset(struct ata_port *ap)
2327{
2328 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09002329 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 return;
2331 ata_bus_reset(ap);
2332}
2333
2334/**
Alan Coxebdfca62006-03-23 15:38:34 +00002335 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002336 * @adev: device
2337 *
2338 * Obtain the other device on the same cable, or if none is
2339 * present NULL is returned
2340 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002341
Tejun Heo3373efd2006-05-15 20:57:53 +09002342struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002343{
Tejun Heo3373efd2006-05-15 20:57:53 +09002344 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00002345 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002346 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002347 return NULL;
2348 return pair;
2349}
2350
2351/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002352 * ata_port_disable - Disable port.
2353 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002355 * Modify @ap data structure such that the system
2356 * thinks that the entire port is disabled, and should
2357 * never attempt to probe or communicate with devices
2358 * on this port.
2359 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002360 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002361 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 */
2363
2364void ata_port_disable(struct ata_port *ap)
2365{
2366 ap->device[0].class = ATA_DEV_NONE;
2367 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002368 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369}
2370
Tejun Heo1c3fae42006-04-02 20:53:28 +09002371/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002372 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09002373 * @ap: Port to adjust SATA spd limit for
2374 *
2375 * Adjust SATA spd limit of @ap downward. Note that this
2376 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002377 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002378 *
2379 * LOCKING:
2380 * Inherited from caller.
2381 *
2382 * RETURNS:
2383 * 0 on success, negative errno on failure
2384 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002385int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002386{
Tejun Heo81952c52006-05-15 20:57:47 +09002387 u32 sstatus, spd, mask;
2388 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002389
Tejun Heo81952c52006-05-15 20:57:47 +09002390 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
2391 if (rc)
2392 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002393
2394 mask = ap->sata_spd_limit;
2395 if (mask <= 1)
2396 return -EINVAL;
2397 highbit = fls(mask) - 1;
2398 mask &= ~(1 << highbit);
2399
Tejun Heo81952c52006-05-15 20:57:47 +09002400 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002401 if (spd <= 1)
2402 return -EINVAL;
2403 spd--;
2404 mask &= (1 << spd) - 1;
2405 if (!mask)
2406 return -EINVAL;
2407
2408 ap->sata_spd_limit = mask;
2409
Tejun Heof15a1da2006-05-15 20:57:56 +09002410 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
2411 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002412
2413 return 0;
2414}
2415
Tejun Heo3c567b72006-05-15 20:57:23 +09002416static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002417{
2418 u32 spd, limit;
2419
2420 if (ap->sata_spd_limit == UINT_MAX)
2421 limit = 0;
2422 else
2423 limit = fls(ap->sata_spd_limit);
2424
2425 spd = (*scontrol >> 4) & 0xf;
2426 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
2427
2428 return spd != limit;
2429}
2430
2431/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002432 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09002433 * @ap: Port in question
2434 *
2435 * Test whether the spd limit in SControl matches
2436 * @ap->sata_spd_limit. This function is used to determine
2437 * whether hardreset is necessary to apply SATA spd
2438 * configuration.
2439 *
2440 * LOCKING:
2441 * Inherited from caller.
2442 *
2443 * RETURNS:
2444 * 1 if SATA spd configuration is needed, 0 otherwise.
2445 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002446int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002447{
2448 u32 scontrol;
2449
Tejun Heo81952c52006-05-15 20:57:47 +09002450 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002451 return 0;
2452
Tejun Heo3c567b72006-05-15 20:57:23 +09002453 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002454}
2455
2456/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002457 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09002458 * @ap: Port to set SATA spd for
2459 *
2460 * Set SATA spd of @ap according to sata_spd_limit.
2461 *
2462 * LOCKING:
2463 * Inherited from caller.
2464 *
2465 * RETURNS:
2466 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002467 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002468 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002469int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002470{
2471 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002472 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002473
Tejun Heo81952c52006-05-15 20:57:47 +09002474 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2475 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002476
Tejun Heo3c567b72006-05-15 20:57:23 +09002477 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002478 return 0;
2479
Tejun Heo81952c52006-05-15 20:57:47 +09002480 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2481 return rc;
2482
Tejun Heo1c3fae42006-04-02 20:53:28 +09002483 return 1;
2484}
2485
Alan Cox452503f2005-10-21 19:01:32 -04002486/*
2487 * This mode timing computation functionality is ported over from
2488 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2489 */
2490/*
Alan Coxb352e572006-08-10 18:52:12 +01002491 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002492 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002493 * for UDMA6, which is currently supported only by Maxtor drives.
2494 *
2495 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002496 */
2497
2498static const struct ata_timing ata_timing[] = {
2499
2500 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
2501 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2502 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2503 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2504
Alan Coxb352e572006-08-10 18:52:12 +01002505 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
2506 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002507 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2508 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2509 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2510
2511/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002512
Alan Cox452503f2005-10-21 19:01:32 -04002513 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
2514 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2515 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002516
Alan Cox452503f2005-10-21 19:01:32 -04002517 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
2518 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2519 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2520
Alan Coxb352e572006-08-10 18:52:12 +01002521 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
2522 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002523 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2524 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2525
2526 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2527 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2528 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2529
2530/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2531
2532 { 0xFF }
2533};
2534
2535#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
2536#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
2537
2538static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2539{
2540 q->setup = EZ(t->setup * 1000, T);
2541 q->act8b = EZ(t->act8b * 1000, T);
2542 q->rec8b = EZ(t->rec8b * 1000, T);
2543 q->cyc8b = EZ(t->cyc8b * 1000, T);
2544 q->active = EZ(t->active * 1000, T);
2545 q->recover = EZ(t->recover * 1000, T);
2546 q->cycle = EZ(t->cycle * 1000, T);
2547 q->udma = EZ(t->udma * 1000, UT);
2548}
2549
2550void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2551 struct ata_timing *m, unsigned int what)
2552{
2553 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2554 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2555 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2556 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2557 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2558 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2559 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2560 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2561}
2562
2563static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
2564{
2565 const struct ata_timing *t;
2566
2567 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04002568 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04002569 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002570 return t;
Alan Cox452503f2005-10-21 19:01:32 -04002571}
2572
2573int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2574 struct ata_timing *t, int T, int UT)
2575{
2576 const struct ata_timing *s;
2577 struct ata_timing p;
2578
2579 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002580 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002581 */
Alan Cox452503f2005-10-21 19:01:32 -04002582
2583 if (!(s = ata_timing_find_mode(speed)))
2584 return -EINVAL;
2585
Albert Lee75b1f2f2005-11-16 17:06:18 +08002586 memcpy(t, s, sizeof(*s));
2587
Alan Cox452503f2005-10-21 19:01:32 -04002588 /*
2589 * If the drive is an EIDE drive, it can tell us it needs extended
2590 * PIO/MW_DMA cycle timing.
2591 */
2592
2593 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2594 memset(&p, 0, sizeof(p));
2595 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2596 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2597 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2598 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2599 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2600 }
2601 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2602 }
2603
2604 /*
2605 * Convert the timing to bus clock counts.
2606 */
2607
Albert Lee75b1f2f2005-11-16 17:06:18 +08002608 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002609
2610 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002611 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2612 * S.M.A.R.T * and some other commands. We have to ensure that the
2613 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002614 */
2615
Alanfd3367af2006-12-07 12:41:18 +00002616 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002617 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2618 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2619 }
2620
2621 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002622 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002623 */
2624
2625 if (t->act8b + t->rec8b < t->cyc8b) {
2626 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2627 t->rec8b = t->cyc8b - t->act8b;
2628 }
2629
2630 if (t->active + t->recover < t->cycle) {
2631 t->active += (t->cycle - (t->active + t->recover)) / 2;
2632 t->recover = t->cycle - t->active;
2633 }
Jeff Garzika617c092007-05-21 20:14:23 -04002634
Alan Cox4f701d12007-04-23 11:55:36 +01002635 /* In a few cases quantisation may produce enough errors to
2636 leave t->cycle too low for the sum of active and recovery
2637 if so we must correct this */
2638 if (t->active + t->recover > t->cycle)
2639 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002640
2641 return 0;
2642}
2643
Tejun Heocf176e12006-04-02 17:54:46 +09002644/**
2645 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002646 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09002647 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09002648 *
2649 * Adjust xfer masks of @dev downward. Note that this function
2650 * does not apply the change. Invoking ata_set_mode() afterwards
2651 * will apply the limit.
2652 *
2653 * LOCKING:
2654 * Inherited from caller.
2655 *
2656 * RETURNS:
2657 * 0 on success, negative errno on failure
2658 */
Tejun Heo458337d2007-02-02 16:22:30 +09002659int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09002660{
Tejun Heo458337d2007-02-02 16:22:30 +09002661 char buf[32];
2662 unsigned int orig_mask, xfer_mask;
2663 unsigned int pio_mask, mwdma_mask, udma_mask;
2664 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09002665
Tejun Heo458337d2007-02-02 16:22:30 +09002666 quiet = !!(sel & ATA_DNXFER_QUIET);
2667 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09002668
Tejun Heo458337d2007-02-02 16:22:30 +09002669 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
2670 dev->mwdma_mask,
2671 dev->udma_mask);
2672 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09002673
Tejun Heo458337d2007-02-02 16:22:30 +09002674 switch (sel) {
2675 case ATA_DNXFER_PIO:
2676 highbit = fls(pio_mask) - 1;
2677 pio_mask &= ~(1 << highbit);
2678 break;
2679
2680 case ATA_DNXFER_DMA:
2681 if (udma_mask) {
2682 highbit = fls(udma_mask) - 1;
2683 udma_mask &= ~(1 << highbit);
2684 if (!udma_mask)
2685 return -ENOENT;
2686 } else if (mwdma_mask) {
2687 highbit = fls(mwdma_mask) - 1;
2688 mwdma_mask &= ~(1 << highbit);
2689 if (!mwdma_mask)
2690 return -ENOENT;
2691 }
2692 break;
2693
2694 case ATA_DNXFER_40C:
2695 udma_mask &= ATA_UDMA_MASK_40C;
2696 break;
2697
2698 case ATA_DNXFER_FORCE_PIO0:
2699 pio_mask &= 1;
2700 case ATA_DNXFER_FORCE_PIO:
2701 mwdma_mask = 0;
2702 udma_mask = 0;
2703 break;
2704
Tejun Heo458337d2007-02-02 16:22:30 +09002705 default:
2706 BUG();
2707 }
2708
2709 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
2710
2711 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
2712 return -ENOENT;
2713
2714 if (!quiet) {
2715 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
2716 snprintf(buf, sizeof(buf), "%s:%s",
2717 ata_mode_string(xfer_mask),
2718 ata_mode_string(xfer_mask & ATA_MASK_PIO));
2719 else
2720 snprintf(buf, sizeof(buf), "%s",
2721 ata_mode_string(xfer_mask));
2722
2723 ata_dev_printk(dev, KERN_WARNING,
2724 "limiting speed to %s\n", buf);
2725 }
Tejun Heocf176e12006-04-02 17:54:46 +09002726
2727 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2728 &dev->udma_mask);
2729
Tejun Heocf176e12006-04-02 17:54:46 +09002730 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09002731}
2732
Tejun Heo3373efd2006-05-15 20:57:53 +09002733static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734{
Tejun Heobaa1e782006-11-01 18:39:27 +09002735 struct ata_eh_context *ehc = &dev->ap->eh_context;
Tejun Heo83206a22006-03-24 15:25:31 +09002736 unsigned int err_mask;
2737 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Tejun Heoe8384602006-04-02 18:51:53 +09002739 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 if (dev->xfer_shift == ATA_SHIFT_PIO)
2741 dev->flags |= ATA_DFLAG_PIO;
2742
Tejun Heo3373efd2006-05-15 20:57:53 +09002743 err_mask = ata_dev_set_xfermode(dev);
Alan11750a42007-02-05 16:28:30 +00002744 /* Old CFA may refuse this command, which is just fine */
2745 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
2746 err_mask &= ~AC_ERR_DEV;
2747
Tejun Heo83206a22006-03-24 15:25:31 +09002748 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002749 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2750 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002751 return -EIO;
2752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Tejun Heobaa1e782006-11-01 18:39:27 +09002754 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo3373efd2006-05-15 20:57:53 +09002755 rc = ata_dev_revalidate(dev, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09002756 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002757 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002758 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002759
Tejun Heo23e71c32006-03-06 04:31:57 +09002760 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2761 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Tejun Heof15a1da2006-05-15 20:57:56 +09002763 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2764 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002765 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766}
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768/**
Alan04351822007-03-06 02:37:52 -08002769 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002771 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 *
Alan04351822007-03-06 02:37:52 -08002773 * Standard implementation of the function used to tune and set
2774 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2775 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002776 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002777 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002779 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002780 *
2781 * RETURNS:
2782 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 */
Alan04351822007-03-06 02:37:52 -08002784
2785int ata_do_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786{
Tejun Heoe8e06192006-04-01 01:38:18 +09002787 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002788 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Tejun Heo3adcebb2006-05-15 20:57:37 +09002790
Tejun Heoa6d5a512006-03-06 04:31:57 +09002791 /* step 1: calculate xfer_mask */
2792 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002793 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002794
Tejun Heoe8e06192006-04-01 01:38:18 +09002795 dev = &ap->device[i];
2796
Tejun Heoe1211e32006-04-01 01:38:18 +09002797 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002798 continue;
2799
Tejun Heo3373efd2006-05-15 20:57:53 +09002800 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002801
Tejun Heoacf356b2006-03-24 14:07:50 +09002802 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2803 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2804 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2805 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002806
Tejun Heo4f659772006-04-01 01:38:18 +09002807 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002808 if (dev->dma_mode)
2809 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002810 }
Tejun Heo4f659772006-04-01 01:38:18 +09002811 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002812 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002813
2814 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002815 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2816 dev = &ap->device[i];
2817 if (!ata_dev_enabled(dev))
2818 continue;
2819
2820 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002821 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002822 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002823 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002824 }
2825
2826 dev->xfer_mode = dev->pio_mode;
2827 dev->xfer_shift = ATA_SHIFT_PIO;
2828 if (ap->ops->set_piomode)
2829 ap->ops->set_piomode(ap, dev);
2830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Tejun Heoa6d5a512006-03-06 04:31:57 +09002832 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002833 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2834 dev = &ap->device[i];
2835
2836 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2837 continue;
2838
2839 dev->xfer_mode = dev->dma_mode;
2840 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2841 if (ap->ops->set_dmamode)
2842 ap->ops->set_dmamode(ap, dev);
2843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002846 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002847 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Alan18d90de2007-01-24 11:42:38 +00002849 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02002850 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002851 continue;
2852
Tejun Heo3373efd2006-05-15 20:57:53 +09002853 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002854 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002855 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Tejun Heoe8e06192006-04-01 01:38:18 +09002858 /* Record simplex status. If we selected DMA then the other
2859 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002860 */
Jeff Garzikcca39742006-08-24 03:19:22 -04002861 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00002862 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002863
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002864 out:
2865 if (rc)
2866 *r_failed_dev = dev;
2867 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868}
2869
2870/**
Alan04351822007-03-06 02:37:52 -08002871 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2872 * @ap: port on which timings will be programmed
2873 * @r_failed_dev: out paramter for failed device
2874 *
2875 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2876 * ata_set_mode() fails, pointer to the failing device is
2877 * returned in @r_failed_dev.
2878 *
2879 * LOCKING:
2880 * PCI/etc. bus probe sem.
2881 *
2882 * RETURNS:
2883 * 0 on success, negative errno otherwise
2884 */
2885int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
2886{
2887 /* has private set_mode? */
2888 if (ap->ops->set_mode)
2889 return ap->ops->set_mode(ap, r_failed_dev);
2890 return ata_do_set_mode(ap, r_failed_dev);
2891}
2892
2893/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002894 * ata_tf_to_host - issue ATA taskfile to host controller
2895 * @ap: port to which command is being issued
2896 * @tf: ATA taskfile register set
2897 *
2898 * Issues ATA taskfile register set to ATA host controller,
2899 * with proper synchronization with interrupt handler and
2900 * other threads.
2901 *
2902 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002903 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002904 */
2905
2906static inline void ata_tf_to_host(struct ata_port *ap,
2907 const struct ata_taskfile *tf)
2908{
2909 ap->ops->tf_load(ap, tf);
2910 ap->ops->exec_command(ap, tf);
2911}
2912
2913/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 * ata_busy_sleep - sleep until BSY clears, or timeout
2915 * @ap: port containing status register to be polled
2916 * @tmout_pat: impatience timeout
2917 * @tmout: overall timeout
2918 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002919 * Sleep until ATA Status register bit BSY clears,
2920 * or a timeout occurs.
2921 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09002922 * LOCKING:
2923 * Kernel thread context (may sleep).
2924 *
2925 * RETURNS:
2926 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09002928int ata_busy_sleep(struct ata_port *ap,
2929 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930{
2931 unsigned long timer_start, timeout;
2932 u8 status;
2933
2934 status = ata_busy_wait(ap, ATA_BUSY, 300);
2935 timer_start = jiffies;
2936 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002937 while (status != 0xff && (status & ATA_BUSY) &&
2938 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 msleep(50);
2940 status = ata_busy_wait(ap, ATA_BUSY, 3);
2941 }
2942
Tejun Heod1adc1b2006-10-09 18:32:15 +09002943 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09002944 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002945 "port is slow to respond, please be patient "
2946 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
2948 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002949 while (status != 0xff && (status & ATA_BUSY) &&
2950 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 msleep(50);
2952 status = ata_chk_status(ap);
2953 }
2954
Tejun Heod1adc1b2006-10-09 18:32:15 +09002955 if (status == 0xff)
2956 return -ENODEV;
2957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002959 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002960 "(%lu secs, Status 0x%x)\n",
2961 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09002962 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 }
2964
2965 return 0;
2966}
2967
Tejun Heod4b2bab2007-02-02 16:50:52 +09002968/**
2969 * ata_wait_ready - sleep until BSY clears, or timeout
2970 * @ap: port containing status register to be polled
2971 * @deadline: deadline jiffies for the operation
2972 *
2973 * Sleep until ATA Status register bit BSY clears, or timeout
2974 * occurs.
2975 *
2976 * LOCKING:
2977 * Kernel thread context (may sleep).
2978 *
2979 * RETURNS:
2980 * 0 on success, -errno otherwise.
2981 */
2982int ata_wait_ready(struct ata_port *ap, unsigned long deadline)
2983{
2984 unsigned long start = jiffies;
2985 int warned = 0;
2986
2987 while (1) {
2988 u8 status = ata_chk_status(ap);
2989 unsigned long now = jiffies;
2990
2991 if (!(status & ATA_BUSY))
2992 return 0;
Tejun Heofd7fe702007-05-23 11:22:15 +02002993 if (!ata_port_online(ap) && status == 0xff)
Tejun Heod4b2bab2007-02-02 16:50:52 +09002994 return -ENODEV;
2995 if (time_after(now, deadline))
2996 return -EBUSY;
2997
2998 if (!warned && time_after(now, start + 5 * HZ) &&
2999 (deadline - now > 3 * HZ)) {
3000 ata_port_printk(ap, KERN_WARNING,
3001 "port is slow to respond, please be patient "
3002 "(Status 0x%x)\n", status);
3003 warned = 1;
3004 }
3005
3006 msleep(50);
3007 }
3008}
3009
3010static int ata_bus_post_reset(struct ata_port *ap, unsigned int devmask,
3011 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012{
3013 struct ata_ioports *ioaddr = &ap->ioaddr;
3014 unsigned int dev0 = devmask & (1 << 0);
3015 unsigned int dev1 = devmask & (1 << 1);
Tejun Heo9b893912007-02-02 16:50:52 +09003016 int rc, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
3018 /* if device 0 was found in ata_devchk, wait for its
3019 * BSY bit to clear
3020 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003021 if (dev0) {
3022 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003023 if (rc) {
3024 if (rc != -ENODEV)
3025 return rc;
3026 ret = rc;
3027 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Tejun Heoe141d992007-06-10 14:26:20 +09003030 /* if device 1 was found in ata_devchk, wait for register
3031 * access briefly, then wait for BSY to clear.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 */
Tejun Heoe141d992007-06-10 14:26:20 +09003033 if (dev1) {
3034 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
3036 ap->ops->dev_select(ap, 1);
Tejun Heoe141d992007-06-10 14:26:20 +09003037
3038 /* Wait for register access. Some ATAPI devices fail
3039 * to set nsect/lbal after reset, so don't waste too
3040 * much time on it. We're gonna wait for !BSY anyway.
3041 */
3042 for (i = 0; i < 2; i++) {
3043 u8 nsect, lbal;
3044
3045 nsect = ioread8(ioaddr->nsect_addr);
3046 lbal = ioread8(ioaddr->lbal_addr);
3047 if ((nsect == 1) && (lbal == 1))
3048 break;
3049 msleep(50); /* give drive a breather */
3050 }
3051
Tejun Heod4b2bab2007-02-02 16:50:52 +09003052 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003053 if (rc) {
3054 if (rc != -ENODEV)
3055 return rc;
3056 ret = rc;
3057 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
3060 /* is all this really necessary? */
3061 ap->ops->dev_select(ap, 0);
3062 if (dev1)
3063 ap->ops->dev_select(ap, 1);
3064 if (dev0)
3065 ap->ops->dev_select(ap, 0);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003066
Tejun Heo9b893912007-02-02 16:50:52 +09003067 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068}
3069
Tejun Heod4b2bab2007-02-02 16:50:52 +09003070static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
3071 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
3073 struct ata_ioports *ioaddr = &ap->ioaddr;
3074
Tejun Heo44877b42007-02-21 01:06:51 +09003075 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003078 iowrite8(ap->ctl, ioaddr->ctl_addr);
3079 udelay(20); /* FIXME: flush */
3080 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
3081 udelay(20); /* FIXME: flush */
3082 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
3084 /* spec mandates ">= 2ms" before checking status.
3085 * We wait 150ms, because that was the magic delay used for
3086 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
3087 * between when the ATA command register is written, and then
3088 * status is checked. Because waiting for "a while" before
3089 * checking status is fine, post SRST, we perform this magic
3090 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00003091 *
3092 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 */
3094 msleep(150);
3095
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003096 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09003097 * the bus shows 0xFF because the odd clown forgets the D7
3098 * pulldown resistor.
3099 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003100 if (ata_check_status(ap) == 0xFF)
Tejun Heo9b893912007-02-02 16:50:52 +09003101 return -ENODEV;
Alan Cox09c7ad72006-03-22 15:52:40 +00003102
Tejun Heod4b2bab2007-02-02 16:50:52 +09003103 return ata_bus_post_reset(ap, devmask, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104}
3105
3106/**
3107 * ata_bus_reset - reset host port and associated ATA channel
3108 * @ap: port to reset
3109 *
3110 * This is typically the first time we actually start issuing
3111 * commands to the ATA channel. We wait for BSY to clear, then
3112 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
3113 * result. Determine what devices, if any, are on the channel
3114 * by looking at the device 0/1 error register. Look at the signature
3115 * stored in each device's taskfile registers, to determine if
3116 * the device is ATA or ATAPI.
3117 *
3118 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003119 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04003120 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 *
3122 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09003123 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 */
3125
3126void ata_bus_reset(struct ata_port *ap)
3127{
3128 struct ata_ioports *ioaddr = &ap->ioaddr;
3129 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3130 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003131 unsigned int dev0, dev1 = 0, devmask = 0;
Tejun Heo9b893912007-02-02 16:50:52 +09003132 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Tejun Heo44877b42007-02-21 01:06:51 +09003134 DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
3136 /* determine if device 0/1 are present */
3137 if (ap->flags & ATA_FLAG_SATA_RESET)
3138 dev0 = 1;
3139 else {
3140 dev0 = ata_devchk(ap, 0);
3141 if (slave_possible)
3142 dev1 = ata_devchk(ap, 1);
3143 }
3144
3145 if (dev0)
3146 devmask |= (1 << 0);
3147 if (dev1)
3148 devmask |= (1 << 1);
3149
3150 /* select device 0 again */
3151 ap->ops->dev_select(ap, 0);
3152
3153 /* issue bus reset */
Tejun Heo9b893912007-02-02 16:50:52 +09003154 if (ap->flags & ATA_FLAG_SRST) {
3155 rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ);
3156 if (rc && rc != -ENODEV)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003157 goto err_out;
Tejun Heo9b893912007-02-02 16:50:52 +09003158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
3160 /*
3161 * determine by signature whether we have ATA or ATAPI devices
3162 */
Tejun Heob4dc7622006-01-24 17:05:22 +09003163 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09003165 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 /* is double-select really necessary? */
3168 if (ap->device[1].class != ATA_DEV_NONE)
3169 ap->ops->dev_select(ap, 1);
3170 if (ap->device[0].class != ATA_DEV_NONE)
3171 ap->ops->dev_select(ap, 0);
3172
3173 /* if no devices were detected, disable this port */
3174 if ((ap->device[0].class == ATA_DEV_NONE) &&
3175 (ap->device[1].class == ATA_DEV_NONE))
3176 goto err_out;
3177
3178 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
3179 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003180 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 }
3182
3183 DPRINTK("EXIT\n");
3184 return;
3185
3186err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003187 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 ap->ops->port_disable(ap);
3189
3190 DPRINTK("EXIT\n");
3191}
3192
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003193/**
3194 * sata_phy_debounce - debounce SATA phy status
3195 * @ap: ATA port to debounce SATA phy status for
3196 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003197 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003198 *
3199 * Make sure SStatus of @ap reaches stable state, determined by
3200 * holding the same value where DET is not 1 for @duration polled
3201 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003202 * beginning of the stable state. Because DET gets stuck at 1 on
3203 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003204 * until timeout then returns 0 if DET is stable at 1.
3205 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003206 * @timeout is further limited by @deadline. The sooner of the
3207 * two is used.
3208 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003209 * LOCKING:
3210 * Kernel thread context (may sleep)
3211 *
3212 * RETURNS:
3213 * 0 on success, -errno on failure.
3214 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003215int sata_phy_debounce(struct ata_port *ap, const unsigned long *params,
3216 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003217{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003218 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003219 unsigned long duration = msecs_to_jiffies(params[1]);
3220 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003221 u32 last, cur;
3222 int rc;
3223
Tejun Heod4b2bab2007-02-02 16:50:52 +09003224 t = jiffies + msecs_to_jiffies(params[2]);
3225 if (time_before(t, deadline))
3226 deadline = t;
3227
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003228 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
3229 return rc;
3230 cur &= 0xf;
3231
3232 last = cur;
3233 last_jiffies = jiffies;
3234
3235 while (1) {
3236 msleep(interval_msec);
3237 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
3238 return rc;
3239 cur &= 0xf;
3240
3241 /* DET stable? */
3242 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003243 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003244 continue;
3245 if (time_after(jiffies, last_jiffies + duration))
3246 return 0;
3247 continue;
3248 }
3249
3250 /* unstable, start over */
3251 last = cur;
3252 last_jiffies = jiffies;
3253
Tejun Heod4b2bab2007-02-02 16:50:52 +09003254 /* check deadline */
3255 if (time_after(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003256 return -EBUSY;
3257 }
3258}
3259
3260/**
3261 * sata_phy_resume - resume SATA phy
3262 * @ap: ATA port to resume SATA phy for
3263 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003264 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003265 *
3266 * Resume SATA phy of @ap and debounce it.
3267 *
3268 * LOCKING:
3269 * Kernel thread context (may sleep)
3270 *
3271 * RETURNS:
3272 * 0 on success, -errno on failure.
3273 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003274int sata_phy_resume(struct ata_port *ap, const unsigned long *params,
3275 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003276{
3277 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003278 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003279
Tejun Heo81952c52006-05-15 20:57:47 +09003280 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
3281 return rc;
3282
Tejun Heo852ee162006-04-01 01:38:18 +09003283 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003284
3285 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
3286 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003287
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003288 /* Some PHYs react badly if SStatus is pounded immediately
3289 * after resuming. Delay 200ms before debouncing.
3290 */
3291 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003292
Tejun Heod4b2bab2007-02-02 16:50:52 +09003293 return sata_phy_debounce(ap, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003294}
3295
Tejun Heof5914a42006-05-31 18:27:48 +09003296/**
3297 * ata_std_prereset - prepare for reset
3298 * @ap: ATA port to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003299 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003300 *
Tejun Heob8cffc62007-02-02 16:50:52 +09003301 * @ap is about to be reset. Initialize it. Failure from
3302 * prereset makes libata abort whole reset sequence and give up
3303 * that port, so prereset should be best-effort. It does its
3304 * best to prepare for reset sequence but if things go wrong, it
3305 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003306 *
3307 * LOCKING:
3308 * Kernel thread context (may sleep)
3309 *
3310 * RETURNS:
3311 * 0 on success, -errno otherwise.
3312 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003313int ata_std_prereset(struct ata_port *ap, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003314{
3315 struct ata_eh_context *ehc = &ap->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003316 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003317 int rc;
3318
Tejun Heo31daabd2007-02-02 16:50:52 +09003319 /* handle link resume */
Tejun Heo28324302006-07-03 16:07:26 +09003320 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
3321 (ap->flags & ATA_FLAG_HRST_TO_RESUME))
3322 ehc->i.action |= ATA_EH_HARDRESET;
3323
Tejun Heof5914a42006-05-31 18:27:48 +09003324 /* if we're about to do hardreset, nothing more to do */
3325 if (ehc->i.action & ATA_EH_HARDRESET)
3326 return 0;
3327
3328 /* if SATA, resume phy */
Tejun Heoa16abc02007-05-21 18:33:47 +02003329 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003330 rc = sata_phy_resume(ap, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003331 /* whine about phy resume failure but proceed */
3332 if (rc && rc != -EOPNOTSUPP)
Tejun Heof5914a42006-05-31 18:27:48 +09003333 ata_port_printk(ap, KERN_WARNING, "failed to resume "
3334 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003335 }
3336
3337 /* Wait for !BSY if the controller can wait for the first D2H
3338 * Reg FIS and we don't know that no device is attached.
3339 */
Tejun Heob8cffc62007-02-02 16:50:52 +09003340 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap)) {
3341 rc = ata_wait_ready(ap, deadline);
Tejun Heo6dffaf62007-05-23 11:58:52 +02003342 if (rc && rc != -ENODEV) {
Tejun Heob8cffc62007-02-02 16:50:52 +09003343 ata_port_printk(ap, KERN_WARNING, "device not ready "
3344 "(errno=%d), forcing hardreset\n", rc);
3345 ehc->i.action |= ATA_EH_HARDRESET;
3346 }
3347 }
Tejun Heof5914a42006-05-31 18:27:48 +09003348
3349 return 0;
3350}
3351
Tejun Heoc2bd5802006-01-24 17:05:22 +09003352/**
3353 * ata_std_softreset - reset host port via ATA SRST
3354 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003355 * @classes: resulting classes of attached devices
Tejun Heod4b2bab2007-02-02 16:50:52 +09003356 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003357 *
Tejun Heo52783c52006-05-31 18:28:22 +09003358 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003359 *
3360 * LOCKING:
3361 * Kernel thread context (may sleep)
3362 *
3363 * RETURNS:
3364 * 0 on success, -errno otherwise.
3365 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003366int ata_std_softreset(struct ata_port *ap, unsigned int *classes,
3367 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003368{
3369 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
Tejun Heod4b2bab2007-02-02 16:50:52 +09003370 unsigned int devmask = 0;
3371 int rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003372 u8 err;
3373
3374 DPRINTK("ENTER\n");
3375
Tejun Heo81952c52006-05-15 20:57:47 +09003376 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09003377 classes[0] = ATA_DEV_NONE;
3378 goto out;
3379 }
3380
Tejun Heoc2bd5802006-01-24 17:05:22 +09003381 /* determine if device 0/1 are present */
3382 if (ata_devchk(ap, 0))
3383 devmask |= (1 << 0);
3384 if (slave_possible && ata_devchk(ap, 1))
3385 devmask |= (1 << 1);
3386
Tejun Heoc2bd5802006-01-24 17:05:22 +09003387 /* select device 0 again */
3388 ap->ops->dev_select(ap, 0);
3389
3390 /* issue bus reset */
3391 DPRINTK("about to softreset, devmask=%x\n", devmask);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003392 rc = ata_bus_softreset(ap, devmask, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003393 /* if link is occupied, -ENODEV too is an error */
3394 if (rc && (rc != -ENODEV || sata_scr_valid(ap))) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003395 ata_port_printk(ap, KERN_ERR, "SRST failed (errno=%d)\n", rc);
3396 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003397 }
3398
3399 /* determine by signature whether we have ATA or ATAPI devices */
3400 classes[0] = ata_dev_try_classify(ap, 0, &err);
3401 if (slave_possible && err != 0x81)
3402 classes[1] = ata_dev_try_classify(ap, 1, &err);
3403
Tejun Heo3a397462006-02-10 23:58:48 +09003404 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09003405 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
3406 return 0;
3407}
3408
3409/**
Tejun Heob6103f62006-11-01 17:59:53 +09003410 * sata_port_hardreset - reset port via SATA phy reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003411 * @ap: port to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003412 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003413 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003414 *
3415 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003416 *
3417 * LOCKING:
3418 * Kernel thread context (may sleep)
3419 *
3420 * RETURNS:
3421 * 0 on success, -errno otherwise.
3422 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003423int sata_port_hardreset(struct ata_port *ap, const unsigned long *timing,
3424 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003425{
Tejun Heo852ee162006-04-01 01:38:18 +09003426 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003427 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003428
Tejun Heoc2bd5802006-01-24 17:05:22 +09003429 DPRINTK("ENTER\n");
3430
Tejun Heo3c567b72006-05-15 20:57:23 +09003431 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003432 /* SATA spec says nothing about how to reconfigure
3433 * spd. To be on the safe side, turn off phy during
3434 * reconfiguration. This works for at least ICH7 AHCI
3435 * and Sil3124.
3436 */
Tejun Heo81952c52006-05-15 20:57:47 +09003437 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003438 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003439
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003440 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003441
3442 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003443 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003444
Tejun Heo3c567b72006-05-15 20:57:23 +09003445 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003446 }
3447
3448 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09003449 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003450 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003451
Tejun Heo852ee162006-04-01 01:38:18 +09003452 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003453
3454 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003455 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003456
Tejun Heo1c3fae42006-04-02 20:53:28 +09003457 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003458 * 10.4.2 says at least 1 ms.
3459 */
3460 msleep(1);
3461
Tejun Heo1c3fae42006-04-02 20:53:28 +09003462 /* bring phy back */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003463 rc = sata_phy_resume(ap, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003464 out:
3465 DPRINTK("EXIT, rc=%d\n", rc);
3466 return rc;
3467}
3468
3469/**
3470 * sata_std_hardreset - reset host port via SATA phy reset
3471 * @ap: port to reset
3472 * @class: resulting class of attached device
Tejun Heod4b2bab2007-02-02 16:50:52 +09003473 * @deadline: deadline jiffies for the operation
Tejun Heob6103f62006-11-01 17:59:53 +09003474 *
3475 * SATA phy-reset host port using DET bits of SControl register,
3476 * wait for !BSY and classify the attached device.
3477 *
3478 * LOCKING:
3479 * Kernel thread context (may sleep)
3480 *
3481 * RETURNS:
3482 * 0 on success, -errno otherwise.
3483 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003484int sata_std_hardreset(struct ata_port *ap, unsigned int *class,
3485 unsigned long deadline)
Tejun Heob6103f62006-11-01 17:59:53 +09003486{
3487 const unsigned long *timing = sata_ehc_deb_timing(&ap->eh_context);
3488 int rc;
3489
3490 DPRINTK("ENTER\n");
3491
3492 /* do hardreset */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003493 rc = sata_port_hardreset(ap, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003494 if (rc) {
3495 ata_port_printk(ap, KERN_ERR,
3496 "COMRESET failed (errno=%d)\n", rc);
3497 return rc;
3498 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003499
Tejun Heoc2bd5802006-01-24 17:05:22 +09003500 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09003501 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09003502 *class = ATA_DEV_NONE;
3503 DPRINTK("EXIT, link offline\n");
3504 return 0;
3505 }
3506
Tejun Heo34fee222007-02-02 15:29:27 +09003507 /* wait a while before checking status, see SRST for more info */
3508 msleep(150);
3509
Tejun Heod4b2bab2007-02-02 16:50:52 +09003510 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003511 /* link occupied, -ENODEV too is an error */
3512 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003513 ata_port_printk(ap, KERN_ERR,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003514 "COMRESET failed (errno=%d)\n", rc);
3515 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003516 }
3517
Tejun Heo3a397462006-02-10 23:58:48 +09003518 ap->ops->dev_select(ap, 0); /* probably unnecessary */
3519
Tejun Heoc2bd5802006-01-24 17:05:22 +09003520 *class = ata_dev_try_classify(ap, 0, NULL);
3521
3522 DPRINTK("EXIT, class=%u\n", *class);
3523 return 0;
3524}
3525
3526/**
3527 * ata_std_postreset - standard postreset callback
3528 * @ap: the target ata_port
3529 * @classes: classes of attached devices
3530 *
3531 * This function is invoked after a successful reset. Note that
3532 * the device might have been reset more than once using
3533 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003534 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003535 * LOCKING:
3536 * Kernel thread context (may sleep)
3537 */
3538void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
3539{
Tejun Heodc2b3512006-05-15 20:58:00 +09003540 u32 serror;
3541
Tejun Heoc2bd5802006-01-24 17:05:22 +09003542 DPRINTK("ENTER\n");
3543
Tejun Heoc2bd5802006-01-24 17:05:22 +09003544 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09003545 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003546
Tejun Heodc2b3512006-05-15 20:58:00 +09003547 /* clear SError */
3548 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
3549 sata_scr_write(ap, SCR_ERROR, serror);
3550
Tejun Heoc2bd5802006-01-24 17:05:22 +09003551 /* is double-select really necessary? */
3552 if (classes[0] != ATA_DEV_NONE)
3553 ap->ops->dev_select(ap, 1);
3554 if (classes[1] != ATA_DEV_NONE)
3555 ap->ops->dev_select(ap, 0);
3556
Tejun Heo3a397462006-02-10 23:58:48 +09003557 /* bail out if no device is present */
3558 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3559 DPRINTK("EXIT, no device\n");
3560 return;
3561 }
3562
3563 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003564 if (ap->ioaddr.ctl_addr)
3565 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003566
3567 DPRINTK("EXIT\n");
3568}
3569
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003570/**
Tejun Heo623a3122006-03-05 17:55:58 +09003571 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003572 * @dev: device to compare against
3573 * @new_class: class of the new device
3574 * @new_id: IDENTIFY page of the new device
3575 *
3576 * Compare @new_class and @new_id against @dev and determine
3577 * whether @dev is the device indicated by @new_class and
3578 * @new_id.
3579 *
3580 * LOCKING:
3581 * None.
3582 *
3583 * RETURNS:
3584 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3585 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003586static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3587 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003588{
3589 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003590 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3591 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003592
3593 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003594 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3595 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003596 return 0;
3597 }
3598
Tejun Heoa0cf7332007-01-02 20:18:49 +09003599 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3600 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3601 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3602 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003603
3604 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003605 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3606 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003607 return 0;
3608 }
3609
3610 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003611 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3612 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003613 return 0;
3614 }
3615
Tejun Heo623a3122006-03-05 17:55:58 +09003616 return 1;
3617}
3618
3619/**
Tejun Heofe309112007-05-15 03:28:15 +09003620 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003621 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003622 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003623 *
3624 * Re-read IDENTIFY page and make sure @dev is still attached to
3625 * the port.
3626 *
3627 * LOCKING:
3628 * Kernel thread context (may sleep)
3629 *
3630 * RETURNS:
3631 * 0 on success, negative errno otherwise
3632 */
Tejun Heofe309112007-05-15 03:28:15 +09003633int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003634{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003635 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09003636 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003637 int rc;
3638
Tejun Heofe635c72006-05-15 20:57:35 +09003639 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003640 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003641 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003642 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003643
3644 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003645 if (!ata_dev_same_device(dev, class, id))
3646 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003647
Tejun Heofe635c72006-05-15 20:57:35 +09003648 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003649 return 0;
3650}
3651
3652/**
3653 * ata_dev_revalidate - Revalidate ATA device
3654 * @dev: device to revalidate
3655 * @readid_flags: read ID flags
3656 *
3657 * Re-read IDENTIFY page, make sure @dev is still attached to the
3658 * port and reconfigure it according to the new IDENTIFY page.
3659 *
3660 * LOCKING:
3661 * Kernel thread context (may sleep)
3662 *
3663 * RETURNS:
3664 * 0 on success, negative errno otherwise
3665 */
3666int ata_dev_revalidate(struct ata_device *dev, unsigned int readid_flags)
3667{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003668 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003669 int rc;
3670
3671 if (!ata_dev_enabled(dev))
3672 return -ENODEV;
3673
3674 /* re-read ID */
3675 rc = ata_dev_reread_id(dev, readid_flags);
3676 if (rc)
3677 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003678
3679 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003680 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003681 if (rc)
3682 goto fail;
3683
3684 /* verify n_sectors hasn't changed */
3685 if (dev->class == ATA_DEV_ATA && dev->n_sectors != n_sectors) {
3686 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3687 "%llu != %llu\n",
3688 (unsigned long long)n_sectors,
3689 (unsigned long long)dev->n_sectors);
3690 rc = -ENODEV;
3691 goto fail;
3692 }
3693
3694 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003695
3696 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003697 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003698 return rc;
3699}
3700
Alan Cox6919a0a2006-10-27 19:08:46 -07003701struct ata_blacklist_entry {
3702 const char *model_num;
3703 const char *model_rev;
3704 unsigned long horkage;
3705};
3706
3707static const struct ata_blacklist_entry ata_device_blacklist [] = {
3708 /* Devices with DMA related problems under Linux */
3709 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3710 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3711 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3712 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3713 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3714 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3715 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3716 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3717 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3718 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3719 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3720 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3721 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3722 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3723 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3724 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3725 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3726 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3727 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3728 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3729 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3730 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3731 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3732 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3733 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3734 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003735 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3736 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3737 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003738 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo5acd50f2007-06-10 14:52:36 +09003739 { "IOMEGA ZIP 250 ATAPI", NULL, ATA_HORKAGE_NODMA }, /* temporary fix */
Tejun Heo39ce7122007-07-05 12:31:31 +09003740 { "IOMEGA ZIP 250 ATAPI Floppy",
3741 NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003742
Albert Lee18d6e9d2007-04-02 11:34:15 +08003743 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003744 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003745
Alan Cox6919a0a2006-10-27 19:08:46 -07003746 /* Devices we expect to fail diagnostics */
3747
3748 /* Devices where NCQ should be avoided */
3749 /* NCQ is slow */
3750 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo09125ea2007-02-28 15:21:23 +09003751 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3752 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003753 /* NCQ is broken */
3754 { "Maxtor 6L250S0", "BANC1G10", ATA_HORKAGE_NONCQ },
Chuck Ebberte8361fc2007-07-12 14:37:19 -04003755 { "Maxtor 6B200M0", "BANC1BM0", ATA_HORKAGE_NONCQ },
Jeff Garzik471e44b2007-05-28 09:00:05 -04003756 { "Maxtor 6B200M0", "BANC1B10", ATA_HORKAGE_NONCQ },
Prarit Bhargava2f8d90a2007-07-10 18:13:28 -04003757 { "HITACHI HDS7250SASUN500G 0621KTAWSD", "K2AOAJ0AHITACHI",
3758 ATA_HORKAGE_NONCQ },
Jens Axboe96442922007-03-30 09:27:58 +02003759 /* NCQ hard hangs device under heavier load, needs hard power cycle */
3760 { "Maxtor 6B250S0", "BANC1B70", ATA_HORKAGE_NONCQ },
Robert Hancock36e337d2007-04-02 22:05:29 -06003761 /* Blacklist entries taken from Silicon Image 3124/3132
3762 Windows driver .inf file - also several Linux problem reports */
3763 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3764 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3765 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Tejun Heobd9c5a32007-06-08 22:20:59 +09003766 /* Drives which do spurious command completion */
3767 { "HTS541680J9SA00", "SB2IC7EP", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003768 { "HTS541612J9SA00", "SBDIC7JP", ATA_HORKAGE_NONCQ, },
Tejun Heoe14cbfa2007-06-25 11:28:59 +09003769 { "Hitachi HTS541616J9SA00", "SB4OC70P", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003770 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heoa520f262007-07-10 16:16:18 +09003771 { "FUJITSU MHV2080BH", "00840028", ATA_HORKAGE_NONCQ, },
Tejun Heo3fb65892007-07-20 12:49:38 +09003772 { "ST9160821AS", "3.CLF", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003773
3774 /* Devices with NCQ limits */
3775
3776 /* End Marker */
3777 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003779
Tejun Heo75683fe2007-07-05 13:31:27 +09003780static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003782 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3783 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003784 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003785
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003786 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3787 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788
Alan Cox6919a0a2006-10-27 19:08:46 -07003789 while (ad->model_num) {
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003790 if (!strcmp(ad->model_num, model_num)) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003791 if (ad->model_rev == NULL)
3792 return ad->horkage;
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003793 if (!strcmp(ad->model_rev, model_rev))
Alan Cox6919a0a2006-10-27 19:08:46 -07003794 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003795 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003796 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 return 0;
3799}
3800
Alan Cox6919a0a2006-10-27 19:08:46 -07003801static int ata_dma_blacklisted(const struct ata_device *dev)
3802{
3803 /* We don't support polling DMA.
3804 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3805 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3806 */
3807 if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) &&
3808 (dev->flags & ATA_DFLAG_CDB_INTR))
3809 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09003810 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07003811}
3812
Tejun Heoa6d5a512006-03-06 04:31:57 +09003813/**
3814 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003815 * @dev: Device to compute xfermask for
3816 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003817 * Compute supported xfermask of @dev and store it in
3818 * dev->*_mask. This function is responsible for applying all
3819 * known limits including host controller limits, device
3820 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003821 *
3822 * LOCKING:
3823 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003824 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003825static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826{
Tejun Heo3373efd2006-05-15 20:57:53 +09003827 struct ata_port *ap = dev->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04003828 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003829 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Tejun Heo37deecb2006-08-10 16:59:07 +09003831 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09003832 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3833 ap->mwdma_mask, ap->udma_mask);
3834
Robert Hancock8343f882007-03-06 02:37:51 -08003835 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09003836 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
3837 dev->mwdma_mask, dev->udma_mask);
3838 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09003839
Alan Coxb352e572006-08-10 18:52:12 +01003840 /*
3841 * CFA Advanced TrueIDE timings are not allowed on a shared
3842 * cable
3843 */
3844 if (ata_dev_pair(dev)) {
3845 /* No PIO5 or PIO6 */
3846 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
3847 /* No MWDMA3 or MWDMA 4 */
3848 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
3849 }
3850
Tejun Heo37deecb2006-08-10 16:59:07 +09003851 if (ata_dma_blacklisted(dev)) {
3852 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09003853 ata_dev_printk(dev, KERN_WARNING,
3854 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09003855 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09003856
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01003857 if ((host->flags & ATA_HOST_SIMPLEX) &&
3858 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09003859 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3860 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
3861 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01003862 }
Tejun Heo565083e2006-04-02 17:54:47 +09003863
Jeff Garzike4246752007-03-09 09:56:46 -05003864 if (ap->flags & ATA_FLAG_NO_IORDY)
3865 xfer_mask &= ata_pio_mask_no_iordy(dev);
3866
Alan Cox5444a6f2006-03-27 18:58:20 +01003867 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05003868 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003869
Robert Hancock8343f882007-03-06 02:37:51 -08003870 /* Apply cable rule here. Don't apply it early because when
3871 * we handle hot plug the cable type can itself change.
3872 * Check this last so that we know if the transfer rate was
3873 * solely limited by the cable.
3874 * Unknown or 80 wire cables reported host side are checked
3875 * drive side as well. Cases where we know a 40wire cable
3876 * is used safely for 80 are not checked here.
3877 */
3878 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
3879 /* UDMA/44 or higher would be available */
3880 if((ap->cbl == ATA_CBL_PATA40) ||
3881 (ata_drive_40wire(dev->id) &&
3882 (ap->cbl == ATA_CBL_PATA_UNK ||
3883 ap->cbl == ATA_CBL_PATA80))) {
3884 ata_dev_printk(dev, KERN_WARNING,
3885 "limited to UDMA/33 due to 40-wire cable\n");
3886 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
3887 }
3888
Tejun Heo565083e2006-04-02 17:54:47 +09003889 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3890 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891}
3892
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 * @dev: Device to which command will be sent
3896 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003897 * Issue SET FEATURES - XFER MODE command to device @dev
3898 * on port @ap.
3899 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003901 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003902 *
3903 * RETURNS:
3904 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 */
3906
Tejun Heo3373efd2006-05-15 20:57:53 +09003907static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908{
Tejun Heoa0123702005-12-13 14:49:31 +09003909 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003910 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
3912 /* set up set-features taskfile */
3913 DPRINTK("set features - xfer mode\n");
3914
Tejun Heo464cf172007-05-27 15:10:40 +02003915 /* Some controllers and ATAPI devices show flaky interrupt
3916 * behavior after setting xfer mode. Use polling instead.
3917 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003918 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003919 tf.command = ATA_CMD_SET_FEATURES;
3920 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02003921 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09003922 tf.protocol = ATA_PROT_NODATA;
3923 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
Tejun Heo3373efd2006-05-15 20:57:53 +09003925 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Tejun Heo83206a22006-03-24 15:25:31 +09003927 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3928 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929}
3930
3931/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003932 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003933 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003934 * @heads: Number of heads (taskfile parameter)
3935 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003936 *
3937 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003938 * Kernel thread context (may sleep)
3939 *
3940 * RETURNS:
3941 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003942 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003943static unsigned int ata_dev_init_params(struct ata_device *dev,
3944 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003945{
Tejun Heoa0123702005-12-13 14:49:31 +09003946 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003947 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003948
3949 /* Number of sectors per track 1-255. Number of heads 1-16 */
3950 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003951 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003952
3953 /* set up init dev params taskfile */
3954 DPRINTK("init dev params \n");
3955
Tejun Heo3373efd2006-05-15 20:57:53 +09003956 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003957 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3958 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3959 tf.protocol = ATA_PROT_NODATA;
3960 tf.nsect = sectors;
3961 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003962
Tejun Heo3373efd2006-05-15 20:57:53 +09003963 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003964
Tejun Heo6aff8f12006-02-15 18:24:09 +09003965 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3966 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003967}
3968
3969/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003970 * ata_sg_clean - Unmap DMA memory associated with command
3971 * @qc: Command containing DMA memory to be released
3972 *
3973 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 *
3975 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003976 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09003978void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979{
3980 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003981 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003983 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
Tejun Heoa46314742006-02-11 19:11:13 +09003985 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3986 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987
3988 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003989 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003991 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003993 /* if we padded the buffer out to 32-bit bound, and data
3994 * xfer direction is from-device, we must copy from the
3995 * pad buffer back into the supplied buffer
3996 */
3997 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3998 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3999
4000 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05004001 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004002 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004003 /* restore last sg */
4004 sg[qc->orig_n_elem - 1].length += qc->pad_len;
4005 if (pad_buf) {
4006 struct scatterlist *psg = &qc->pad_sgent;
4007 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4008 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004009 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004010 }
4011 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09004012 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004013 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05004014 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
4015 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004016 /* restore sg */
4017 sg->length += qc->pad_len;
4018 if (pad_buf)
4019 memcpy(qc->buf_virt + sg->length - qc->pad_len,
4020 pad_buf, qc->pad_len);
4021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
4023 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004024 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025}
4026
4027/**
4028 * ata_fill_sg - Fill PCI IDE PRD table
4029 * @qc: Metadata associated with taskfile to be transferred
4030 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004031 * Fill PCI IDE PRD (scatter-gather) table with segments
4032 * associated with the current disk command.
4033 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004035 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 *
4037 */
4038static void ata_fill_sg(struct ata_queued_cmd *qc)
4039{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004041 struct scatterlist *sg;
4042 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Tejun Heoa46314742006-02-11 19:11:13 +09004044 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05004045 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046
4047 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004048 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 u32 addr, offset;
4050 u32 sg_len, len;
4051
4052 /* determine if physical DMA addr spans 64K boundary.
4053 * Note h/w doesn't support 64-bit, so we unconditionally
4054 * truncate dma_addr_t to u32.
4055 */
4056 addr = (u32) sg_dma_address(sg);
4057 sg_len = sg_dma_len(sg);
4058
4059 while (sg_len) {
4060 offset = addr & 0xffff;
4061 len = sg_len;
4062 if ((offset + sg_len) > 0x10000)
4063 len = 0x10000 - offset;
4064
4065 ap->prd[idx].addr = cpu_to_le32(addr);
4066 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
4067 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4068
4069 idx++;
4070 sg_len -= len;
4071 addr += len;
4072 }
4073 }
4074
4075 if (idx)
4076 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4077}
Tejun Heob9a41972007-06-27 02:48:43 +09004078
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079/**
Alan Coxd26fc952007-07-06 19:13:52 -04004080 * ata_fill_sg_dumb - Fill PCI IDE PRD table
4081 * @qc: Metadata associated with taskfile to be transferred
4082 *
4083 * Fill PCI IDE PRD (scatter-gather) table with segments
4084 * associated with the current disk command. Perform the fill
4085 * so that we avoid writing any length 64K records for
4086 * controllers that don't follow the spec.
4087 *
4088 * LOCKING:
4089 * spin_lock_irqsave(host lock)
4090 *
4091 */
4092static void ata_fill_sg_dumb(struct ata_queued_cmd *qc)
4093{
4094 struct ata_port *ap = qc->ap;
4095 struct scatterlist *sg;
4096 unsigned int idx;
4097
4098 WARN_ON(qc->__sg == NULL);
4099 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
4100
4101 idx = 0;
4102 ata_for_each_sg(sg, qc) {
4103 u32 addr, offset;
4104 u32 sg_len, len, blen;
4105
4106 /* determine if physical DMA addr spans 64K boundary.
4107 * Note h/w doesn't support 64-bit, so we unconditionally
4108 * truncate dma_addr_t to u32.
4109 */
4110 addr = (u32) sg_dma_address(sg);
4111 sg_len = sg_dma_len(sg);
4112
4113 while (sg_len) {
4114 offset = addr & 0xffff;
4115 len = sg_len;
4116 if ((offset + sg_len) > 0x10000)
4117 len = 0x10000 - offset;
4118
4119 blen = len & 0xffff;
4120 ap->prd[idx].addr = cpu_to_le32(addr);
4121 if (blen == 0) {
4122 /* Some PATA chipsets like the CS5530 can't
4123 cope with 0x0000 meaning 64K as the spec says */
4124 ap->prd[idx].flags_len = cpu_to_le32(0x8000);
4125 blen = 0x8000;
4126 ap->prd[++idx].addr = cpu_to_le32(addr + 0x8000);
4127 }
4128 ap->prd[idx].flags_len = cpu_to_le32(blen);
4129 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4130
4131 idx++;
4132 sg_len -= len;
4133 addr += len;
4134 }
4135 }
4136
4137 if (idx)
4138 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4139}
4140
4141/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4143 * @qc: Metadata associated with taskfile to check
4144 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004145 * Allow low-level driver to filter ATA PACKET commands, returning
4146 * a status indicating whether or not it is OK to use DMA for the
4147 * supplied PACKET command.
4148 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004150 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004151 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 * RETURNS: 0 when ATAPI DMA can be used
4153 * nonzero otherwise
4154 */
4155int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4156{
4157 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
Tejun Heob9a41972007-06-27 02:48:43 +09004159 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4160 * few ATAPI devices choke on such DMA requests.
4161 */
4162 if (unlikely(qc->nbytes & 15))
4163 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004164
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004166 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
Tejun Heob9a41972007-06-27 02:48:43 +09004168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169}
Tejun Heob9a41972007-06-27 02:48:43 +09004170
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171/**
4172 * ata_qc_prep - Prepare taskfile for submission
4173 * @qc: Metadata associated with taskfile to be prepared
4174 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004175 * Prepare ATA taskfile for submission.
4176 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004178 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 */
4180void ata_qc_prep(struct ata_queued_cmd *qc)
4181{
4182 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4183 return;
4184
4185 ata_fill_sg(qc);
4186}
4187
Alan Coxd26fc952007-07-06 19:13:52 -04004188/**
4189 * ata_dumb_qc_prep - Prepare taskfile for submission
4190 * @qc: Metadata associated with taskfile to be prepared
4191 *
4192 * Prepare ATA taskfile for submission.
4193 *
4194 * LOCKING:
4195 * spin_lock_irqsave(host lock)
4196 */
4197void ata_dumb_qc_prep(struct ata_queued_cmd *qc)
4198{
4199 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4200 return;
4201
4202 ata_fill_sg_dumb(qc);
4203}
4204
Brian Kinge46834c2006-03-17 17:04:03 -06004205void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4206
Jeff Garzik0cba6322005-05-30 19:49:12 -04004207/**
4208 * ata_sg_init_one - Associate command with memory buffer
4209 * @qc: Command to be associated
4210 * @buf: Memory buffer
4211 * @buflen: Length of memory buffer, in bytes.
4212 *
4213 * Initialize the data-related elements of queued_cmd @qc
4214 * to point to a single memory buffer, @buf of byte length @buflen.
4215 *
4216 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004217 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004218 */
4219
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
4221{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 qc->flags |= ATA_QCFLAG_SINGLE;
4223
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004224 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004226 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05004228 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229
Tejun Heo61c05962006-11-14 22:35:43 +09004230 sg_init_one(&qc->sgent, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231}
4232
Jeff Garzik0cba6322005-05-30 19:49:12 -04004233/**
4234 * ata_sg_init - Associate command with scatter-gather table.
4235 * @qc: Command to be associated
4236 * @sg: Scatter-gather table.
4237 * @n_elem: Number of elements in s/g table.
4238 *
4239 * Initialize the data-related elements of queued_cmd @qc
4240 * to point to a scatter-gather table @sg, containing @n_elem
4241 * elements.
4242 *
4243 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004244 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004245 */
4246
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4248 unsigned int n_elem)
4249{
4250 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004251 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004253 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254}
4255
4256/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004257 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
4258 * @qc: Command with memory buffer to be mapped.
4259 *
4260 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 *
4262 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004263 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 *
4265 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004266 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 */
4268
4269static int ata_sg_setup_one(struct ata_queued_cmd *qc)
4270{
4271 struct ata_port *ap = qc->ap;
4272 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004273 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004275 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004277 /* we must lengthen transfers to end on a 32-bit boundary */
4278 qc->pad_len = sg->length & 3;
4279 if (qc->pad_len) {
4280 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4281 struct scatterlist *psg = &qc->pad_sgent;
4282
Tejun Heoa46314742006-02-11 19:11:13 +09004283 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004284
4285 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4286
4287 if (qc->tf.flags & ATA_TFLAG_WRITE)
4288 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
4289 qc->pad_len);
4290
4291 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4292 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4293 /* trim sg */
4294 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004295 if (sg->length == 0)
4296 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004297
4298 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
4299 sg->length, qc->pad_len);
4300 }
4301
Tejun Heo2e242fa2006-02-20 23:48:38 +09004302 if (trim_sg) {
4303 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05004304 goto skip_map;
4305 }
4306
Brian King2f1f6102006-03-23 17:30:15 -06004307 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04004308 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004309 if (dma_mapping_error(dma_address)) {
4310 /* restore sg */
4311 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
4315 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04004316 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
Tejun Heo2e242fa2006-02-20 23:48:38 +09004318skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
4320 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4321
4322 return 0;
4323}
4324
4325/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004326 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4327 * @qc: Command with scatter-gather table to be mapped.
4328 *
4329 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 *
4331 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004332 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 *
4334 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004335 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 *
4337 */
4338
4339static int ata_sg_setup(struct ata_queued_cmd *qc)
4340{
4341 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004342 struct scatterlist *sg = qc->__sg;
4343 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05004344 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
Tejun Heo44877b42007-02-21 01:06:51 +09004346 VPRINTK("ENTER, ata%u\n", ap->print_id);
Tejun Heoa46314742006-02-11 19:11:13 +09004347 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004349 /* we must lengthen transfers to end on a 32-bit boundary */
4350 qc->pad_len = lsg->length & 3;
4351 if (qc->pad_len) {
4352 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4353 struct scatterlist *psg = &qc->pad_sgent;
4354 unsigned int offset;
4355
Tejun Heoa46314742006-02-11 19:11:13 +09004356 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004357
4358 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4359
4360 /*
4361 * psg->page/offset are used to copy to-be-written
4362 * data in this function or read data in ata_sg_clean.
4363 */
4364 offset = lsg->offset + lsg->length - qc->pad_len;
4365 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
4366 psg->offset = offset_in_page(offset);
4367
4368 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4369 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4370 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004371 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004372 }
4373
4374 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4375 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4376 /* trim last sg */
4377 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05004378 if (lsg->length == 0)
4379 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004380
4381 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
4382 qc->n_elem - 1, lsg->length, qc->pad_len);
4383 }
4384
Jeff Garzike1410f22005-11-14 14:06:26 -05004385 pre_n_elem = qc->n_elem;
4386 if (trim_sg && pre_n_elem)
4387 pre_n_elem--;
4388
4389 if (!pre_n_elem) {
4390 n_elem = 0;
4391 goto skip_map;
4392 }
4393
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06004395 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004396 if (n_elem < 1) {
4397 /* restore last sg */
4398 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
4402 DPRINTK("%d sg elements mapped\n", n_elem);
4403
Jeff Garzike1410f22005-11-14 14:06:26 -05004404skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405 qc->n_elem = n_elem;
4406
4407 return 0;
4408}
4409
4410/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004411 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004412 * @buf: Buffer to swap
4413 * @buf_words: Number of 16-bit words in buffer.
4414 *
4415 * Swap halves of 16-bit words if needed to convert from
4416 * little-endian byte order to native cpu byte order, or
4417 * vice-versa.
4418 *
4419 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004420 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004421 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422void swap_buf_le16(u16 *buf, unsigned int buf_words)
4423{
4424#ifdef __BIG_ENDIAN
4425 unsigned int i;
4426
4427 for (i = 0; i < buf_words; i++)
4428 buf[i] = le16_to_cpu(buf[i]);
4429#endif /* __BIG_ENDIAN */
4430}
4431
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004432/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004433 * ata_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004434 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004435 * @buf: data buffer
4436 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04004437 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004438 *
4439 * Transfer data from/to the device data register by PIO.
4440 *
4441 * LOCKING:
4442 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004443 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004444void ata_data_xfer(struct ata_device *adev, unsigned char *buf,
4445 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004447 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004448 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004450 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 if (write_data)
Tejun Heo0d5ff562007-02-01 15:06:36 +09004452 iowrite16_rep(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 else
Tejun Heo0d5ff562007-02-01 15:06:36 +09004454 ioread16_rep(ap->ioaddr.data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004455
4456 /* Transfer trailing 1 byte, if any. */
4457 if (unlikely(buflen & 0x01)) {
4458 u16 align_buf[1] = { 0 };
4459 unsigned char *trailing_buf = buf + buflen - 1;
4460
4461 if (write_data) {
4462 memcpy(align_buf, trailing_buf, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004463 iowrite16(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004464 } else {
Tejun Heo0d5ff562007-02-01 15:06:36 +09004465 align_buf[0] = cpu_to_le16(ioread16(ap->ioaddr.data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004466 memcpy(trailing_buf, align_buf, 1);
4467 }
4468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469}
4470
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004471/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004472 * ata_data_xfer_noirq - Transfer data by PIO
Alan Cox75e99582006-05-24 14:14:41 +01004473 * @adev: device to target
4474 * @buf: data buffer
4475 * @buflen: buffer length
4476 * @write_data: read/write
4477 *
Tejun Heo88574552006-06-25 20:00:35 +09004478 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01004479 * transfer with interrupts disabled.
4480 *
4481 * LOCKING:
4482 * Inherited from caller.
4483 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004484void ata_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
4485 unsigned int buflen, int write_data)
Alan Cox75e99582006-05-24 14:14:41 +01004486{
4487 unsigned long flags;
4488 local_irq_save(flags);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004489 ata_data_xfer(adev, buf, buflen, write_data);
Alan Cox75e99582006-05-24 14:14:41 +01004490 local_irq_restore(flags);
4491}
4492
4493
4494/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004495 * ata_pio_sector - Transfer a sector of data.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004496 * @qc: Command on going
4497 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004498 * Transfer qc->sect_size bytes of data from/to the ATA device.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004499 *
4500 * LOCKING:
4501 * Inherited from caller.
4502 */
4503
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504static void ata_pio_sector(struct ata_queued_cmd *qc)
4505{
4506 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004507 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 struct ata_port *ap = qc->ap;
4509 struct page *page;
4510 unsigned int offset;
4511 unsigned char *buf;
4512
Mark Lord5a5dbd12007-03-16 10:22:26 -04004513 if (qc->curbytes == qc->nbytes - qc->sect_size)
Albert Lee14be71f2005-09-27 17:36:35 +08004514 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515
4516 page = sg[qc->cursg].page;
Tejun Heo726f0782007-01-03 17:30:39 +09004517 offset = sg[qc->cursg].offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
4519 /* get the current page and offset */
4520 page = nth_page(page, (offset >> PAGE_SHIFT));
4521 offset %= PAGE_SIZE;
4522
Albert Lee7282aa42005-10-09 09:46:07 -04004523 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4524
Albert Lee91b8b312005-10-09 09:48:44 -04004525 if (PageHighMem(page)) {
4526 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004527
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004528 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004529 local_irq_save(flags);
4530 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004531
Albert Lee91b8b312005-10-09 09:48:44 -04004532 /* do the actual data transfer */
Mark Lord5a5dbd12007-03-16 10:22:26 -04004533 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004534
4535 kunmap_atomic(buf, KM_IRQ0);
4536 local_irq_restore(flags);
4537 } else {
4538 buf = page_address(page);
Mark Lord5a5dbd12007-03-16 10:22:26 -04004539 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
Mark Lord5a5dbd12007-03-16 10:22:26 -04004542 qc->curbytes += qc->sect_size;
4543 qc->cursg_ofs += qc->sect_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Tejun Heo726f0782007-01-03 17:30:39 +09004545 if (qc->cursg_ofs == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 qc->cursg++;
4547 qc->cursg_ofs = 0;
4548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004551/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004552 * ata_pio_sectors - Transfer one or many sectors.
Albert Lee07f6f7d2005-11-01 19:33:20 +08004553 * @qc: Command on going
4554 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004555 * Transfer one or many sectors of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08004556 * ATA device for the DRQ request.
4557 *
4558 * LOCKING:
4559 * Inherited from caller.
4560 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
Albert Lee07f6f7d2005-11-01 19:33:20 +08004562static void ata_pio_sectors(struct ata_queued_cmd *qc)
4563{
4564 if (is_multi_taskfile(&qc->tf)) {
4565 /* READ/WRITE MULTIPLE */
4566 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
Jeff Garzik587005d2006-02-11 18:17:32 -05004568 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004569
Mark Lord5a5dbd12007-03-16 10:22:26 -04004570 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
Tejun Heo726f0782007-01-03 17:30:39 +09004571 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004572 while (nsect--)
4573 ata_pio_sector(qc);
4574 } else
4575 ata_pio_sector(qc);
4576}
4577
4578/**
Albert Leec71c1852005-10-04 06:03:45 -04004579 * atapi_send_cdb - Write CDB bytes to hardware
4580 * @ap: Port to which ATAPI device is attached.
4581 * @qc: Taskfile currently active
4582 *
4583 * When device has indicated its readiness to accept
4584 * a CDB, this function is called. Send the CDB.
4585 *
4586 * LOCKING:
4587 * caller.
4588 */
4589
4590static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
4591{
4592 /* send SCSI cdb */
4593 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05004594 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04004595
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004596 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04004597 ata_altstatus(ap); /* flush */
4598
4599 switch (qc->tf.protocol) {
4600 case ATA_PROT_ATAPI:
4601 ap->hsm_task_state = HSM_ST;
4602 break;
4603 case ATA_PROT_ATAPI_NODATA:
4604 ap->hsm_task_state = HSM_ST_LAST;
4605 break;
4606 case ATA_PROT_ATAPI_DMA:
4607 ap->hsm_task_state = HSM_ST_LAST;
4608 /* initiate bmdma */
4609 ap->ops->bmdma_start(qc);
4610 break;
4611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612}
4613
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004614/**
4615 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
4616 * @qc: Command on going
4617 * @bytes: number of bytes
4618 *
4619 * Transfer Transfer data from/to the ATAPI device.
4620 *
4621 * LOCKING:
4622 * Inherited from caller.
4623 *
4624 */
4625
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
4627{
4628 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004629 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 struct ata_port *ap = qc->ap;
4631 struct page *page;
4632 unsigned char *buf;
4633 unsigned int offset, count;
4634
Albert Lee563a6e12005-08-12 14:17:50 +08004635 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08004636 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637
4638next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08004639 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004640 /*
Albert Lee563a6e12005-08-12 14:17:50 +08004641 * The end of qc->sg is reached and the device expects
4642 * more data to transfer. In order not to overrun qc->sg
4643 * and fulfill length specified in the byte count register,
4644 * - for read case, discard trailing data from the device
4645 * - for write case, padding zero data to the device
4646 */
4647 u16 pad_buf[1] = { 0 };
4648 unsigned int words = bytes >> 1;
4649 unsigned int i;
4650
4651 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09004652 ata_dev_printk(qc->dev, KERN_WARNING,
4653 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08004654
4655 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004656 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08004657
Albert Lee14be71f2005-09-27 17:36:35 +08004658 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08004659 return;
4660 }
4661
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004662 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 page = sg->page;
4665 offset = sg->offset + qc->cursg_ofs;
4666
4667 /* get the current page and offset */
4668 page = nth_page(page, (offset >> PAGE_SHIFT));
4669 offset %= PAGE_SIZE;
4670
Albert Lee6952df02005-06-06 15:56:03 +08004671 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04004672 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
4674 /* don't cross page boundaries */
4675 count = min(count, (unsigned int)PAGE_SIZE - offset);
4676
Albert Lee7282aa42005-10-09 09:46:07 -04004677 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4678
Albert Lee91b8b312005-10-09 09:48:44 -04004679 if (PageHighMem(page)) {
4680 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004681
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004682 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004683 local_irq_save(flags);
4684 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004685
Albert Lee91b8b312005-10-09 09:48:44 -04004686 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004687 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004688
4689 kunmap_atomic(buf, KM_IRQ0);
4690 local_irq_restore(flags);
4691 } else {
4692 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004693 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695
4696 bytes -= count;
4697 qc->curbytes += count;
4698 qc->cursg_ofs += count;
4699
Albert Lee32529e02005-05-26 03:49:42 -04004700 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 qc->cursg++;
4702 qc->cursg_ofs = 0;
4703 }
4704
Albert Lee563a6e12005-08-12 14:17:50 +08004705 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707}
4708
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004709/**
4710 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
4711 * @qc: Command on going
4712 *
4713 * Transfer Transfer data from/to the ATAPI device.
4714 *
4715 * LOCKING:
4716 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004717 */
4718
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719static void atapi_pio_bytes(struct ata_queued_cmd *qc)
4720{
4721 struct ata_port *ap = qc->ap;
4722 struct ata_device *dev = qc->dev;
4723 unsigned int ireason, bc_lo, bc_hi, bytes;
4724 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
4725
Albert Leeeec4c3f2006-05-18 17:51:10 +08004726 /* Abuse qc->result_tf for temp storage of intermediate TF
4727 * here to save some kernel stack usage.
4728 * For normal completion, qc->result_tf is not relevant. For
4729 * error, qc->result_tf is later overwritten by ata_qc_complete().
4730 * So, the correctness of qc->result_tf is not affected.
4731 */
4732 ap->ops->tf_read(ap, &qc->result_tf);
4733 ireason = qc->result_tf.nsect;
4734 bc_lo = qc->result_tf.lbam;
4735 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 bytes = (bc_hi << 8) | bc_lo;
4737
4738 /* shall be cleared to zero, indicating xfer of data */
4739 if (ireason & (1 << 0))
4740 goto err_out;
4741
4742 /* make sure transfer direction matches expected */
4743 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
4744 if (do_write != i_write)
4745 goto err_out;
4746
Tejun Heo44877b42007-02-21 01:06:51 +09004747 VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
Albert Lee312f7da2005-09-27 17:38:03 +08004748
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 __atapi_pio_bytes(qc, bytes);
4750
4751 return;
4752
4753err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09004754 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09004755 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08004756 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757}
4758
4759/**
Albert Leec234fb02006-03-25 17:58:38 +08004760 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
4761 * @ap: the target ata_port
4762 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 *
Albert Leec234fb02006-03-25 17:58:38 +08004764 * RETURNS:
4765 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 */
Albert Leec234fb02006-03-25 17:58:38 +08004767
4768static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769{
Albert Leec234fb02006-03-25 17:58:38 +08004770 if (qc->tf.flags & ATA_TFLAG_POLLING)
4771 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
Albert Leec234fb02006-03-25 17:58:38 +08004773 if (ap->hsm_task_state == HSM_ST_FIRST) {
4774 if (qc->tf.protocol == ATA_PROT_PIO &&
4775 (qc->tf.flags & ATA_TFLAG_WRITE))
4776 return 1;
4777
4778 if (is_atapi_taskfile(&qc->tf) &&
4779 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
4780 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 }
4782
Albert Leec234fb02006-03-25 17:58:38 +08004783 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784}
4785
Albert Leec234fb02006-03-25 17:58:38 +08004786/**
Tejun Heoc17ea202006-05-15 20:59:29 +09004787 * ata_hsm_qc_complete - finish a qc running on standard HSM
4788 * @qc: Command to complete
4789 * @in_wq: 1 if called from workqueue, 0 otherwise
4790 *
4791 * Finish @qc which is running on standard HSM.
4792 *
4793 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004794 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09004795 * Otherwise, none on entry and grabs host lock.
4796 */
4797static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
4798{
4799 struct ata_port *ap = qc->ap;
4800 unsigned long flags;
4801
4802 if (ap->ops->error_handler) {
4803 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004804 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004805
Jeff Garzikcca39742006-08-24 03:19:22 -04004806 /* EH might have kicked in while host lock is
4807 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09004808 */
4809 qc = ata_qc_from_tag(ap, qc->tag);
4810 if (qc) {
4811 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi836250062007-01-26 16:27:32 +09004812 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004813 ata_qc_complete(qc);
4814 } else
4815 ata_port_freeze(ap);
4816 }
4817
Jeff Garzikba6a1302006-06-22 23:46:10 -04004818 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004819 } else {
4820 if (likely(!(qc->err_mask & AC_ERR_HSM)))
4821 ata_qc_complete(qc);
4822 else
4823 ata_port_freeze(ap);
4824 }
4825 } else {
4826 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004827 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi836250062007-01-26 16:27:32 +09004828 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004829 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04004830 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004831 } else
4832 ata_qc_complete(qc);
4833 }
4834}
4835
4836/**
Albert Leebb5cb292006-03-25 17:48:02 +08004837 * ata_hsm_move - move the HSM to the next state.
4838 * @ap: the target ata_port
4839 * @qc: qc on going
4840 * @status: current device status
4841 * @in_wq: 1 if called from workqueue, 0 otherwise
4842 *
4843 * RETURNS:
4844 * 1 when poll next status needed, 0 otherwise.
4845 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004846int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4847 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848{
Albert Leebb5cb292006-03-25 17:48:02 +08004849 unsigned long flags = 0;
4850 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851
Albert Lee6912ccd2006-03-25 17:45:49 +08004852 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004853
Albert Leebb5cb292006-03-25 17:48:02 +08004854 /* Make sure ata_qc_issue_prot() does not throw things
4855 * like DMA polling into the workqueue. Notice that
4856 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004857 */
Albert Leec234fb02006-03-25 17:58:38 +08004858 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004859
Albert Leee2cec772006-03-25 17:43:49 +08004860fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004861 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
Tejun Heo44877b42007-02-21 01:06:51 +09004862 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863
Albert Leee2cec772006-03-25 17:43:49 +08004864 switch (ap->hsm_task_state) {
4865 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004866 /* Send first data block or PACKET CDB */
4867
4868 /* If polling, we will stay in the work queue after
4869 * sending the data. Otherwise, interrupt handler
4870 * takes over after sending the data.
4871 */
4872 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4873
Albert Leee2cec772006-03-25 17:43:49 +08004874 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004875 if (unlikely((status & ATA_DRQ) == 0)) {
4876 /* handle BSY=0, DRQ=0 as error */
4877 if (likely(status & (ATA_ERR | ATA_DF)))
4878 /* device stops HSM for abort/error */
4879 qc->err_mask |= AC_ERR_DEV;
4880 else
4881 /* HSM violation. Let EH handle this */
4882 qc->err_mask |= AC_ERR_HSM;
4883
Albert Leee2cec772006-03-25 17:43:49 +08004884 ap->hsm_task_state = HSM_ST_ERR;
4885 goto fsm_start;
4886 }
4887
Albert Lee71601952006-03-25 18:11:12 +08004888 /* Device should not ask for data transfer (DRQ=1)
4889 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004890 * We ignore DRQ here and stop the HSM by
4891 * changing hsm_task_state to HSM_ST_ERR and
4892 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004893 */
4894 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09004895 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with device "
4896 "error, dev_stat 0x%X\n", status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004897 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004898 ap->hsm_task_state = HSM_ST_ERR;
4899 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004900 }
4901
Albert Leebb5cb292006-03-25 17:48:02 +08004902 /* Send the CDB (atapi) or the first data block (ata pio out).
4903 * During the state transition, interrupt handler shouldn't
4904 * be invoked before the data transfer is complete and
4905 * hsm_task_state is changed. Hence, the following locking.
4906 */
4907 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004908 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004909
Albert Leebb5cb292006-03-25 17:48:02 +08004910 if (qc->tf.protocol == ATA_PROT_PIO) {
4911 /* PIO data out protocol.
4912 * send first data block.
4913 */
4914
4915 /* ata_pio_sectors() might change the state
4916 * to HSM_ST_LAST. so, the state is changed here
4917 * before ata_pio_sectors().
4918 */
4919 ap->hsm_task_state = HSM_ST;
4920 ata_pio_sectors(qc);
4921 ata_altstatus(ap); /* flush */
4922 } else
4923 /* send CDB */
4924 atapi_send_cdb(ap, qc);
4925
4926 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004927 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004928
4929 /* if polling, ata_pio_task() handles the rest.
4930 * otherwise, interrupt handler takes over from here.
4931 */
Albert Leee2cec772006-03-25 17:43:49 +08004932 break;
4933
4934 case HSM_ST:
4935 /* complete command or read/write the data register */
4936 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4937 /* ATAPI PIO protocol */
4938 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004939 /* No more data to transfer or device error.
4940 * Device error will be tagged in HSM_ST_LAST.
4941 */
Albert Leee2cec772006-03-25 17:43:49 +08004942 ap->hsm_task_state = HSM_ST_LAST;
4943 goto fsm_start;
4944 }
4945
Albert Lee71601952006-03-25 18:11:12 +08004946 /* Device should not ask for data transfer (DRQ=1)
4947 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004948 * We ignore DRQ here and stop the HSM by
4949 * changing hsm_task_state to HSM_ST_ERR and
4950 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004951 */
4952 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09004953 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
4954 "device error, dev_stat 0x%X\n",
4955 status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004956 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004957 ap->hsm_task_state = HSM_ST_ERR;
4958 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004959 }
4960
Albert Leee2cec772006-03-25 17:43:49 +08004961 atapi_pio_bytes(qc);
4962
4963 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4964 /* bad ireason reported by device */
4965 goto fsm_start;
4966
4967 } else {
4968 /* ATA PIO protocol */
4969 if (unlikely((status & ATA_DRQ) == 0)) {
4970 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004971 if (likely(status & (ATA_ERR | ATA_DF)))
4972 /* device stops HSM for abort/error */
4973 qc->err_mask |= AC_ERR_DEV;
4974 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09004975 /* HSM violation. Let EH handle this.
4976 * Phantom devices also trigger this
4977 * condition. Mark hint.
4978 */
4979 qc->err_mask |= AC_ERR_HSM |
4980 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08004981
Albert Leee2cec772006-03-25 17:43:49 +08004982 ap->hsm_task_state = HSM_ST_ERR;
4983 goto fsm_start;
4984 }
4985
Albert Leeeee6c322006-04-01 17:38:43 +08004986 /* For PIO reads, some devices may ask for
4987 * data transfer (DRQ=1) alone with ERR=1.
4988 * We respect DRQ here and transfer one
4989 * block of junk data before changing the
4990 * hsm_task_state to HSM_ST_ERR.
4991 *
4992 * For PIO writes, ERR=1 DRQ=1 doesn't make
4993 * sense since the data block has been
4994 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004995 */
4996 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004997 /* data might be corrputed */
4998 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004999
5000 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
5001 ata_pio_sectors(qc);
5002 ata_altstatus(ap);
5003 status = ata_wait_idle(ap);
5004 }
5005
Albert Lee3655d1d2006-05-19 11:43:04 +08005006 if (status & (ATA_BUSY | ATA_DRQ))
5007 qc->err_mask |= AC_ERR_HSM;
5008
Albert Leeeee6c322006-04-01 17:38:43 +08005009 /* ata_pio_sectors() might change the
5010 * state to HSM_ST_LAST. so, the state
5011 * is changed after ata_pio_sectors().
5012 */
5013 ap->hsm_task_state = HSM_ST_ERR;
5014 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005015 }
5016
Albert Leee2cec772006-03-25 17:43:49 +08005017 ata_pio_sectors(qc);
5018
5019 if (ap->hsm_task_state == HSM_ST_LAST &&
5020 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
5021 /* all data read */
5022 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08005023 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08005024 goto fsm_start;
5025 }
5026 }
5027
5028 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08005029 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08005030 break;
5031
5032 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005033 if (unlikely(!ata_ok(status))) {
5034 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08005035 ap->hsm_task_state = HSM_ST_ERR;
5036 goto fsm_start;
5037 }
5038
5039 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08005040 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005041 ap->print_id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08005042
Albert Lee6912ccd2006-03-25 17:45:49 +08005043 WARN_ON(qc->err_mask);
5044
Albert Leee2cec772006-03-25 17:43:49 +08005045 ap->hsm_task_state = HSM_ST_IDLE;
5046
5047 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005048 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005049
5050 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005051 break;
5052
5053 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08005054 /* make sure qc->err_mask is available to
5055 * know what's wrong and recover
5056 */
5057 WARN_ON(qc->err_mask == 0);
5058
5059 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08005060
Albert Lee999bb6f2006-03-25 18:07:48 +08005061 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005062 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005063
5064 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005065 break;
5066 default:
Albert Leebb5cb292006-03-25 17:48:02 +08005067 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08005068 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08005069 }
5070
Albert Leebb5cb292006-03-25 17:48:02 +08005071 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072}
5073
David Howells65f27f32006-11-22 14:55:48 +00005074static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075{
David Howells65f27f32006-11-22 14:55:48 +00005076 struct ata_port *ap =
5077 container_of(work, struct ata_port, port_task.work);
5078 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08005079 u8 status;
5080 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005081
5082fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08005083 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
Albert Leea1af3732006-03-25 17:50:15 +08005085 /*
5086 * This is purely heuristic. This is a fast path.
5087 * Sometimes when we enter, BSY will be cleared in
5088 * a chk-status or two. If not, the drive is probably seeking
5089 * or something. Snooze for a couple msecs, then
5090 * chk-status again. If still busy, queue delayed work.
5091 */
5092 status = ata_busy_wait(ap, ATA_BUSY, 5);
5093 if (status & ATA_BUSY) {
5094 msleep(2);
5095 status = ata_busy_wait(ap, ATA_BUSY, 10);
5096 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08005097 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08005098 return;
5099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100 }
5101
Albert Leea1af3732006-03-25 17:50:15 +08005102 /* move the HSM */
5103 poll_next = ata_hsm_move(ap, qc, status, 1);
5104
5105 /* another command or interrupt handler
5106 * may be running at this point.
5107 */
5108 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005109 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110}
5111
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113 * ata_qc_new - Request an available ATA command, for queueing
5114 * @ap: Port associated with device @dev
5115 * @dev: Device from whom we request an available command structure
5116 *
5117 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005118 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 */
5120
5121static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
5122{
5123 struct ata_queued_cmd *qc = NULL;
5124 unsigned int i;
5125
Tejun Heoe3180492006-05-15 20:58:09 +09005126 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09005127 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09005128 return NULL;
5129
Tejun Heo2ab7db12006-05-15 20:58:02 +09005130 /* the last tag is reserved for internal command. */
5131 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09005132 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09005133 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 break;
5135 }
5136
5137 if (qc)
5138 qc->tag = i;
5139
5140 return qc;
5141}
5142
5143/**
5144 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 * @dev: Device from whom we request an available command structure
5146 *
5147 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005148 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 */
5150
Tejun Heo3373efd2006-05-15 20:57:53 +09005151struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152{
Tejun Heo3373efd2006-05-15 20:57:53 +09005153 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 struct ata_queued_cmd *qc;
5155
5156 qc = ata_qc_new(ap);
5157 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 qc->scsicmd = NULL;
5159 qc->ap = ap;
5160 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05005162 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 }
5164
5165 return qc;
5166}
5167
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168/**
5169 * ata_qc_free - free unused ata_queued_cmd
5170 * @qc: Command to complete
5171 *
5172 * Designed to free unused ata_queued_cmd object
5173 * in case something prevents using it.
5174 *
5175 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005176 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177 */
5178void ata_qc_free(struct ata_queued_cmd *qc)
5179{
Tejun Heo4ba946e2006-01-23 13:09:36 +09005180 struct ata_port *ap = qc->ap;
5181 unsigned int tag;
5182
Tejun Heoa46314742006-02-11 19:11:13 +09005183 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184
Tejun Heo4ba946e2006-01-23 13:09:36 +09005185 qc->flags = 0;
5186 tag = qc->tag;
5187 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09005188 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09005189 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09005190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191}
5192
Tejun Heo76014422006-02-11 15:13:49 +09005193void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194{
Tejun Heodedaf2b2006-05-15 21:03:43 +09005195 struct ata_port *ap = qc->ap;
5196
Tejun Heoa46314742006-02-11 19:11:13 +09005197 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
5198 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199
5200 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
5201 ata_sg_clean(qc);
5202
Tejun Heo7401abf2006-05-15 20:57:32 +09005203 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09005204 if (qc->tf.protocol == ATA_PROT_NCQ)
5205 ap->sactive &= ~(1 << qc->tag);
5206 else
5207 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09005208
Albert Lee3f3791d2005-08-16 14:25:38 +08005209 /* atapi: mark qc as inactive to prevent the interrupt handler
5210 * from completing the command twice later, before the error handler
5211 * is called. (when rc != 0 and atapi request sense is needed)
5212 */
5213 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005214 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08005215
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09005217 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218}
5219
Tejun Heo39599a52006-11-14 22:37:35 +09005220static void fill_result_tf(struct ata_queued_cmd *qc)
5221{
5222 struct ata_port *ap = qc->ap;
5223
Tejun Heo39599a52006-11-14 22:37:35 +09005224 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04005225 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09005226}
5227
Tejun Heof686bcb2006-05-15 20:58:05 +09005228/**
5229 * ata_qc_complete - Complete an active ATA command
5230 * @qc: Command to complete
5231 * @err_mask: ATA Status register contents
5232 *
5233 * Indicate to the mid and upper layers that an ATA
5234 * command has completed, with either an ok or not-ok status.
5235 *
5236 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005237 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09005238 */
5239void ata_qc_complete(struct ata_queued_cmd *qc)
5240{
5241 struct ata_port *ap = qc->ap;
5242
5243 /* XXX: New EH and old EH use different mechanisms to
5244 * synchronize EH with regular execution path.
5245 *
5246 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
5247 * Normal execution path is responsible for not accessing a
5248 * failed qc. libata core enforces the rule by returning NULL
5249 * from ata_qc_from_tag() for failed qcs.
5250 *
5251 * Old EH depends on ata_qc_complete() nullifying completion
5252 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
5253 * not synchronize with interrupt handler. Only PIO task is
5254 * taken care of.
5255 */
5256 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09005257 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09005258
5259 if (unlikely(qc->err_mask))
5260 qc->flags |= ATA_QCFLAG_FAILED;
5261
5262 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
5263 if (!ata_tag_internal(qc->tag)) {
5264 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09005265 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005266 ata_qc_schedule_eh(qc);
5267 return;
5268 }
5269 }
5270
5271 /* read result TF if requested */
5272 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005273 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005274
5275 __ata_qc_complete(qc);
5276 } else {
5277 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5278 return;
5279
5280 /* read result TF if failed or requested */
5281 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005282 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005283
5284 __ata_qc_complete(qc);
5285 }
5286}
5287
Tejun Heodedaf2b2006-05-15 21:03:43 +09005288/**
5289 * ata_qc_complete_multiple - Complete multiple qcs successfully
5290 * @ap: port in question
5291 * @qc_active: new qc_active mask
5292 * @finish_qc: LLDD callback invoked before completing a qc
5293 *
5294 * Complete in-flight commands. This functions is meant to be
5295 * called from low-level driver's interrupt routine to complete
5296 * requests normally. ap->qc_active and @qc_active is compared
5297 * and commands are completed accordingly.
5298 *
5299 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005300 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005301 *
5302 * RETURNS:
5303 * Number of completed commands on success, -errno otherwise.
5304 */
5305int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
5306 void (*finish_qc)(struct ata_queued_cmd *))
5307{
5308 int nr_done = 0;
5309 u32 done_mask;
5310 int i;
5311
5312 done_mask = ap->qc_active ^ qc_active;
5313
5314 if (unlikely(done_mask & qc_active)) {
5315 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
5316 "(%08x->%08x)\n", ap->qc_active, qc_active);
5317 return -EINVAL;
5318 }
5319
5320 for (i = 0; i < ATA_MAX_QUEUE; i++) {
5321 struct ata_queued_cmd *qc;
5322
5323 if (!(done_mask & (1 << i)))
5324 continue;
5325
5326 if ((qc = ata_qc_from_tag(ap, i))) {
5327 if (finish_qc)
5328 finish_qc(qc);
5329 ata_qc_complete(qc);
5330 nr_done++;
5331 }
5332 }
5333
5334 return nr_done;
5335}
5336
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
5338{
5339 struct ata_port *ap = qc->ap;
5340
5341 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09005342 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 case ATA_PROT_DMA:
5344 case ATA_PROT_ATAPI_DMA:
5345 return 1;
5346
5347 case ATA_PROT_ATAPI:
5348 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 if (ap->flags & ATA_FLAG_PIO_DMA)
5350 return 1;
5351
5352 /* fall through */
5353
5354 default:
5355 return 0;
5356 }
5357
5358 /* never reached */
5359}
5360
5361/**
5362 * ata_qc_issue - issue taskfile to device
5363 * @qc: command to issue to device
5364 *
5365 * Prepare an ATA command to submission to device.
5366 * This includes mapping the data into a DMA-able
5367 * area, filling in the S/G table, and finally
5368 * writing the taskfile to hardware, starting the command.
5369 *
5370 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005371 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09005373void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374{
5375 struct ata_port *ap = qc->ap;
5376
Tejun Heodedaf2b2006-05-15 21:03:43 +09005377 /* Make sure only one non-NCQ command is outstanding. The
5378 * check is skipped for old EH because it reuses active qc to
5379 * request ATAPI sense.
5380 */
5381 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
5382
5383 if (qc->tf.protocol == ATA_PROT_NCQ) {
5384 WARN_ON(ap->sactive & (1 << qc->tag));
5385 ap->sactive |= 1 << qc->tag;
5386 } else {
5387 WARN_ON(ap->sactive);
5388 ap->active_tag = qc->tag;
5389 }
5390
Tejun Heoe4a70e72006-03-31 20:36:47 +09005391 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005392 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005393
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 if (ata_should_dma_map(qc)) {
5395 if (qc->flags & ATA_QCFLAG_SG) {
5396 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005397 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
5399 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005400 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401 }
5402 } else {
5403 qc->flags &= ~ATA_QCFLAG_DMAMAP;
5404 }
5405
5406 ap->ops->qc_prep(qc);
5407
Tejun Heo8e0e6942006-03-31 20:41:11 +09005408 qc->err_mask |= ap->ops->qc_issue(qc);
5409 if (unlikely(qc->err_mask))
5410 goto err;
5411 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412
Tejun Heo8e436af2006-01-23 13:09:36 +09005413sg_err:
5414 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09005415 qc->err_mask |= AC_ERR_SYSTEM;
5416err:
5417 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418}
5419
5420/**
5421 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
5422 * @qc: command to issue to device
5423 *
5424 * Using various libata functions and hooks, this function
5425 * starts an ATA command. ATA commands are grouped into
5426 * classes called "protocols", and issuing each type of protocol
5427 * is slightly different.
5428 *
Edward Falk0baab862005-06-02 18:17:13 -04005429 * May be used as the qc_issue() entry in ata_port_operations.
5430 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005432 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 *
5434 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005435 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 */
5437
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005438unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439{
5440 struct ata_port *ap = qc->ap;
5441
Albert Leee50362e2005-09-27 17:39:50 +08005442 /* Use polling pio if the LLD doesn't handle
5443 * interrupt driven pio and atapi CDB interrupt.
5444 */
5445 if (ap->flags & ATA_FLAG_PIO_POLLING) {
5446 switch (qc->tf.protocol) {
5447 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08005448 case ATA_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08005449 case ATA_PROT_ATAPI:
5450 case ATA_PROT_ATAPI_NODATA:
5451 qc->tf.flags |= ATA_TFLAG_POLLING;
5452 break;
5453 case ATA_PROT_ATAPI_DMA:
5454 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08005455 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08005456 BUG();
5457 break;
5458 default:
5459 break;
5460 }
5461 }
5462
Albert Lee312f7da2005-09-27 17:38:03 +08005463 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464 ata_dev_select(ap, qc->dev->devno, 1, 0);
5465
Albert Lee312f7da2005-09-27 17:38:03 +08005466 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467 switch (qc->tf.protocol) {
5468 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005469 if (qc->tf.flags & ATA_TFLAG_POLLING)
5470 ata_qc_set_polling(qc);
5471
Jeff Garzike5338252005-10-30 21:37:17 -05005472 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005473 ap->hsm_task_state = HSM_ST_LAST;
5474
5475 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005476 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005477
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478 break;
5479
5480 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005481 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005482
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5484 ap->ops->bmdma_setup(qc); /* set up bmdma */
5485 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005486 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 break;
5488
Albert Lee312f7da2005-09-27 17:38:03 +08005489 case ATA_PROT_PIO:
5490 if (qc->tf.flags & ATA_TFLAG_POLLING)
5491 ata_qc_set_polling(qc);
5492
Jeff Garzike5338252005-10-30 21:37:17 -05005493 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005494
Albert Lee54f00382005-09-30 19:14:19 +08005495 if (qc->tf.flags & ATA_TFLAG_WRITE) {
5496 /* PIO data out protocol */
5497 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08005498 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08005499
5500 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08005501 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08005502 */
Albert Lee312f7da2005-09-27 17:38:03 +08005503 } else {
Albert Lee54f00382005-09-30 19:14:19 +08005504 /* PIO data in protocol */
5505 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08005506
Albert Lee54f00382005-09-30 19:14:19 +08005507 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005508 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005509
Albert Lee54f00382005-09-30 19:14:19 +08005510 /* if polling, ata_pio_task() handles the rest.
5511 * otherwise, interrupt handler takes over from here.
5512 */
Albert Lee312f7da2005-09-27 17:38:03 +08005513 }
5514
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 break;
5516
5517 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005519 if (qc->tf.flags & ATA_TFLAG_POLLING)
5520 ata_qc_set_polling(qc);
5521
Jeff Garzike5338252005-10-30 21:37:17 -05005522 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05005523
Albert Lee312f7da2005-09-27 17:38:03 +08005524 ap->hsm_task_state = HSM_ST_FIRST;
5525
5526 /* send cdb by polling if no cdb interrupt */
5527 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
5528 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08005529 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 break;
5531
5532 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005533 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005534
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5536 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005537 ap->hsm_task_state = HSM_ST_FIRST;
5538
5539 /* send cdb by polling if no cdb interrupt */
5540 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08005541 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542 break;
5543
5544 default:
5545 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005546 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547 }
5548
5549 return 0;
5550}
5551
5552/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553 * ata_host_intr - Handle host interrupt for given (port, task)
5554 * @ap: Port on which interrupt arrived (possibly...)
5555 * @qc: Taskfile currently active in engine
5556 *
5557 * Handle host interrupt for given queued command. Currently,
5558 * only DMA interrupts are handled. All other commands are
5559 * handled via polling with interrupts disabled (nIEN bit).
5560 *
5561 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005562 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 *
5564 * RETURNS:
5565 * One if interrupt was handled, zero if not (shared irq).
5566 */
5567
5568inline unsigned int ata_host_intr (struct ata_port *ap,
5569 struct ata_queued_cmd *qc)
5570{
Tejun Heoea547632006-11-17 12:06:21 +09005571 struct ata_eh_info *ehi = &ap->eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08005572 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573
Albert Lee312f7da2005-09-27 17:38:03 +08005574 VPRINTK("ata%u: protocol %d task_state %d\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005575 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576
Albert Lee312f7da2005-09-27 17:38:03 +08005577 /* Check whether we are expecting interrupt in this state */
5578 switch (ap->hsm_task_state) {
5579 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005580 /* Some pre-ATAPI-4 devices assert INTRQ
5581 * at this state when ready to receive CDB.
5582 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583
Albert Lee312f7da2005-09-27 17:38:03 +08005584 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
5585 * The flag was turned on only for atapi devices.
5586 * No need to check is_atapi_taskfile(&qc->tf) again.
5587 */
5588 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 break;
Albert Lee312f7da2005-09-27 17:38:03 +08005591 case HSM_ST_LAST:
5592 if (qc->tf.protocol == ATA_PROT_DMA ||
5593 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
5594 /* check status of DMA engine */
5595 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005596 VPRINTK("ata%u: host_stat 0x%X\n",
5597 ap->print_id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598
Albert Lee312f7da2005-09-27 17:38:03 +08005599 /* if it's not our irq... */
5600 if (!(host_stat & ATA_DMA_INTR))
5601 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602
Albert Lee312f7da2005-09-27 17:38:03 +08005603 /* before we do anything else, clear DMA-Start bit */
5604 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08005605
5606 if (unlikely(host_stat & ATA_DMA_ERR)) {
5607 /* error when transfering data to/from memory */
5608 qc->err_mask |= AC_ERR_HOST_BUS;
5609 ap->hsm_task_state = HSM_ST_ERR;
5610 }
Albert Lee312f7da2005-09-27 17:38:03 +08005611 }
5612 break;
5613 case HSM_ST:
5614 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615 default:
5616 goto idle_irq;
5617 }
5618
Albert Lee312f7da2005-09-27 17:38:03 +08005619 /* check altstatus */
5620 status = ata_altstatus(ap);
5621 if (status & ATA_BUSY)
5622 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
Albert Lee312f7da2005-09-27 17:38:03 +08005624 /* check main status, clearing INTRQ */
5625 status = ata_chk_status(ap);
5626 if (unlikely(status & ATA_BUSY))
5627 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628
Albert Lee312f7da2005-09-27 17:38:03 +08005629 /* ack bmdma irq events */
5630 ap->ops->irq_clear(ap);
5631
Albert Leebb5cb292006-03-25 17:48:02 +08005632 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09005633
5634 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
5635 qc->tf.protocol == ATA_PROT_ATAPI_DMA))
5636 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
5637
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638 return 1; /* irq handled */
5639
5640idle_irq:
5641 ap->stats.idle_irq++;
5642
5643#ifdef ATA_IRQ_TRAP
5644 if ((ap->stats.idle_irq % 1000) == 0) {
Akira Iguchi836250062007-01-26 16:27:32 +09005645 ap->ops->irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09005646 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00005647 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 }
5649#endif
5650 return 0; /* irq not handled */
5651}
5652
5653/**
5654 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04005655 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04005656 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005658 * Default interrupt handler for PCI IDE devices. Calls
5659 * ata_host_intr() for each port that is not disabled.
5660 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005662 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663 *
5664 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005665 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666 */
5667
David Howells7d12e782006-10-05 14:55:46 +01005668irqreturn_t ata_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669{
Jeff Garzikcca39742006-08-24 03:19:22 -04005670 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671 unsigned int i;
5672 unsigned int handled = 0;
5673 unsigned long flags;
5674
5675 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04005676 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677
Jeff Garzikcca39742006-08-24 03:19:22 -04005678 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679 struct ata_port *ap;
5680
Jeff Garzikcca39742006-08-24 03:19:22 -04005681 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09005682 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04005683 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684 struct ata_queued_cmd *qc;
5685
5686 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08005687 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08005688 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689 handled |= ata_host_intr(ap, qc);
5690 }
5691 }
5692
Jeff Garzikcca39742006-08-24 03:19:22 -04005693 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694
5695 return IRQ_RETVAL(handled);
5696}
5697
Tejun Heo34bf2172006-05-15 20:57:46 +09005698/**
5699 * sata_scr_valid - test whether SCRs are accessible
5700 * @ap: ATA port to test SCR accessibility for
5701 *
5702 * Test whether SCRs are accessible for @ap.
5703 *
5704 * LOCKING:
5705 * None.
5706 *
5707 * RETURNS:
5708 * 1 if SCRs are accessible, 0 otherwise.
5709 */
5710int sata_scr_valid(struct ata_port *ap)
5711{
Tejun Heoa16abc02007-05-21 18:33:47 +02005712 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09005713}
5714
5715/**
5716 * sata_scr_read - read SCR register of the specified port
5717 * @ap: ATA port to read SCR for
5718 * @reg: SCR to read
5719 * @val: Place to store read value
5720 *
5721 * Read SCR register @reg of @ap into *@val. This function is
5722 * guaranteed to succeed if the cable type of the port is SATA
5723 * and the port implements ->scr_read.
5724 *
5725 * LOCKING:
5726 * None.
5727 *
5728 * RETURNS:
5729 * 0 on success, negative errno on failure.
5730 */
5731int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
5732{
5733 if (sata_scr_valid(ap)) {
5734 *val = ap->ops->scr_read(ap, reg);
5735 return 0;
5736 }
5737 return -EOPNOTSUPP;
5738}
5739
5740/**
5741 * sata_scr_write - write SCR register of the specified port
5742 * @ap: ATA port to write SCR for
5743 * @reg: SCR to write
5744 * @val: value to write
5745 *
5746 * Write @val to SCR register @reg of @ap. This function is
5747 * guaranteed to succeed if the cable type of the port is SATA
5748 * and the port implements ->scr_read.
5749 *
5750 * LOCKING:
5751 * None.
5752 *
5753 * RETURNS:
5754 * 0 on success, negative errno on failure.
5755 */
5756int sata_scr_write(struct ata_port *ap, int reg, u32 val)
5757{
5758 if (sata_scr_valid(ap)) {
5759 ap->ops->scr_write(ap, reg, val);
5760 return 0;
5761 }
5762 return -EOPNOTSUPP;
5763}
5764
5765/**
5766 * sata_scr_write_flush - write SCR register of the specified port and flush
5767 * @ap: ATA port to write SCR for
5768 * @reg: SCR to write
5769 * @val: value to write
5770 *
5771 * This function is identical to sata_scr_write() except that this
5772 * function performs flush after writing to the register.
5773 *
5774 * LOCKING:
5775 * None.
5776 *
5777 * RETURNS:
5778 * 0 on success, negative errno on failure.
5779 */
5780int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
5781{
5782 if (sata_scr_valid(ap)) {
5783 ap->ops->scr_write(ap, reg, val);
5784 ap->ops->scr_read(ap, reg);
5785 return 0;
5786 }
5787 return -EOPNOTSUPP;
5788}
5789
5790/**
5791 * ata_port_online - test whether the given port is online
5792 * @ap: ATA port to test
5793 *
5794 * Test whether @ap is online. Note that this function returns 0
5795 * if online status of @ap cannot be obtained, so
5796 * ata_port_online(ap) != !ata_port_offline(ap).
5797 *
5798 * LOCKING:
5799 * None.
5800 *
5801 * RETURNS:
5802 * 1 if the port online status is available and online.
5803 */
5804int ata_port_online(struct ata_port *ap)
5805{
5806 u32 sstatus;
5807
5808 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
5809 return 1;
5810 return 0;
5811}
5812
5813/**
5814 * ata_port_offline - test whether the given port is offline
5815 * @ap: ATA port to test
5816 *
5817 * Test whether @ap is offline. Note that this function returns
5818 * 0 if offline status of @ap cannot be obtained, so
5819 * ata_port_online(ap) != !ata_port_offline(ap).
5820 *
5821 * LOCKING:
5822 * None.
5823 *
5824 * RETURNS:
5825 * 1 if the port offline status is available and offline.
5826 */
5827int ata_port_offline(struct ata_port *ap)
5828{
5829 u32 sstatus;
5830
5831 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
5832 return 1;
5833 return 0;
5834}
Edward Falk0baab862005-06-02 18:17:13 -04005835
Tejun Heo77b08fb2006-06-24 20:30:19 +09005836int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005837{
Tejun Heo977e6b92006-06-24 20:30:19 +09005838 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01005839 u8 cmd;
5840
5841 if (!ata_try_flush_cache(dev))
5842 return 0;
5843
Tejun Heo6fc49ad2006-11-11 20:10:45 +09005844 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01005845 cmd = ATA_CMD_FLUSH_EXT;
5846 else
5847 cmd = ATA_CMD_FLUSH;
5848
Tejun Heo977e6b92006-06-24 20:30:19 +09005849 err_mask = ata_do_simple_cmd(dev, cmd);
5850 if (err_mask) {
5851 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
5852 return -EIO;
5853 }
5854
5855 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005856}
5857
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005858#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04005859static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5860 unsigned int action, unsigned int ehi_flags,
5861 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005862{
5863 unsigned long flags;
5864 int i, rc;
5865
Jeff Garzikcca39742006-08-24 03:19:22 -04005866 for (i = 0; i < host->n_ports; i++) {
5867 struct ata_port *ap = host->ports[i];
Tejun Heo500530f2006-07-03 16:07:27 +09005868
5869 /* Previous resume operation might still be in
5870 * progress. Wait for PM_PENDING to clear.
5871 */
5872 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5873 ata_port_wait_eh(ap);
5874 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5875 }
5876
5877 /* request PM ops to EH */
5878 spin_lock_irqsave(ap->lock, flags);
5879
5880 ap->pm_mesg = mesg;
5881 if (wait) {
5882 rc = 0;
5883 ap->pm_result = &rc;
5884 }
5885
5886 ap->pflags |= ATA_PFLAG_PM_PENDING;
5887 ap->eh_info.action |= action;
5888 ap->eh_info.flags |= ehi_flags;
5889
5890 ata_port_schedule_eh(ap);
5891
5892 spin_unlock_irqrestore(ap->lock, flags);
5893
5894 /* wait and check result */
5895 if (wait) {
5896 ata_port_wait_eh(ap);
5897 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5898 if (rc)
5899 return rc;
5900 }
5901 }
5902
5903 return 0;
5904}
5905
5906/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005907 * ata_host_suspend - suspend host
5908 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09005909 * @mesg: PM message
5910 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005911 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005912 * function requests EH to perform PM operations and waits for EH
5913 * to finish.
5914 *
5915 * LOCKING:
5916 * Kernel thread context (may sleep).
5917 *
5918 * RETURNS:
5919 * 0 on success, -errno on failure.
5920 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005921int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005922{
Tejun Heo9666f402007-05-04 21:27:47 +02005923 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005924
Jeff Garzikcca39742006-08-24 03:19:22 -04005925 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Tejun Heo9666f402007-05-04 21:27:47 +02005926 if (rc == 0)
5927 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005928 return rc;
5929}
5930
5931/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005932 * ata_host_resume - resume host
5933 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005934 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005935 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005936 * function requests EH to perform PM operations and returns.
5937 * Note that all resume operations are performed parallely.
5938 *
5939 * LOCKING:
5940 * Kernel thread context (may sleep).
5941 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005942void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005943{
Jeff Garzikcca39742006-08-24 03:19:22 -04005944 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
5945 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
5946 host->dev->power.power_state = PMSG_ON;
Tejun Heo500530f2006-07-03 16:07:27 +09005947}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005948#endif
Tejun Heo500530f2006-07-03 16:07:27 +09005949
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005950/**
5951 * ata_port_start - Set port up for dma.
5952 * @ap: Port to initialize
5953 *
5954 * Called just after data structures for each port are
5955 * initialized. Allocates space for PRD table.
5956 *
5957 * May be used as the port_start() entry in ata_port_operations.
5958 *
5959 * LOCKING:
5960 * Inherited from caller.
5961 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005962int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963{
Brian King2f1f6102006-03-23 17:30:15 -06005964 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005965 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966
Tejun Heof0d36ef2007-01-20 16:00:28 +09005967 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5968 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969 if (!ap->prd)
5970 return -ENOMEM;
5971
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005972 rc = ata_pad_alloc(ap, dev);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005973 if (rc)
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005974 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005975
Tejun Heof0d36ef2007-01-20 16:00:28 +09005976 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd,
5977 (unsigned long long)ap->prd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978 return 0;
5979}
5980
Edward Falk0baab862005-06-02 18:17:13 -04005981/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005982 * ata_dev_init - Initialize an ata_device structure
5983 * @dev: Device structure to initialize
5984 *
5985 * Initialize @dev in preparation for probing.
5986 *
5987 * LOCKING:
5988 * Inherited from caller.
5989 */
5990void ata_dev_init(struct ata_device *dev)
5991{
5992 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005993 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005994
Tejun Heo5a04bf42006-05-31 18:27:38 +09005995 /* SATA spd limit is bound to the first device */
5996 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5997
Tejun Heo72fa4b72006-05-31 18:27:32 +09005998 /* High bits of dev->flags are used to record warm plug
5999 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04006000 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09006001 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006002 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006003 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006004 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006005
6006 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
6007 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09006008 dev->pio_mask = UINT_MAX;
6009 dev->mwdma_mask = UINT_MAX;
6010 dev->udma_mask = UINT_MAX;
6011}
6012
6013/**
Tejun Heof3187192007-04-17 23:44:07 +09006014 * ata_port_alloc - allocate and initialize basic ATA port resources
6015 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016 *
Tejun Heof3187192007-04-17 23:44:07 +09006017 * Allocate and initialize basic ATA port resources.
6018 *
6019 * RETURNS:
6020 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04006021 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006023 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024 */
Tejun Heof3187192007-04-17 23:44:07 +09006025struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026{
Tejun Heof3187192007-04-17 23:44:07 +09006027 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028 unsigned int i;
6029
Tejun Heof3187192007-04-17 23:44:07 +09006030 DPRINTK("ENTER\n");
6031
6032 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
6033 if (!ap)
6034 return NULL;
6035
Tejun Heof4d6d002007-05-01 11:50:15 +02006036 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04006037 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09006038 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09006039 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04006041 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09006042 ap->dev = host->dev;
6043
Tejun Heo5a04bf42006-05-31 18:27:38 +09006044 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045 ap->active_tag = ATA_TAG_POISON;
6046 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006047
6048#if defined(ATA_VERBOSE_DEBUG)
6049 /* turn on all debugging levels */
6050 ap->msg_enable = 0x00FF;
6051#elif defined(ATA_DEBUG)
6052 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR;
Tejun Heo88574552006-06-25 20:00:35 +09006053#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04006054 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006055#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056
David Howells65f27f32006-11-22 14:55:48 +00006057 INIT_DELAYED_WORK(&ap->port_task, NULL);
6058 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
6059 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09006060 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09006061 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062
Tejun Heo838df622006-05-15 20:57:44 +09006063 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09006064
Tejun Heoacf356b2006-03-24 14:07:50 +09006065 for (i = 0; i < ATA_MAX_DEVICES; i++) {
6066 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09006067 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09006068 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09006069 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09006070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071
6072#ifdef ATA_IRQ_TRAP
6073 ap->stats.unhandled_irq = 1;
6074 ap->stats.idle_irq = 1;
6075#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077}
6078
Tejun Heof0d36ef2007-01-20 16:00:28 +09006079static void ata_host_release(struct device *gendev, void *res)
6080{
6081 struct ata_host *host = dev_get_drvdata(gendev);
6082 int i;
6083
6084 for (i = 0; i < host->n_ports; i++) {
6085 struct ata_port *ap = host->ports[i];
6086
Tejun Heoecef7252007-04-17 23:44:06 +09006087 if (!ap)
6088 continue;
6089
6090 if ((host->flags & ATA_HOST_STARTED) && ap->ops->port_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006091 ap->ops->port_stop(ap);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006092 }
6093
Tejun Heoecef7252007-04-17 23:44:06 +09006094 if ((host->flags & ATA_HOST_STARTED) && host->ops->host_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006095 host->ops->host_stop(host);
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006096
Tejun Heo1aa506e2007-03-09 19:36:12 +09006097 for (i = 0; i < host->n_ports; i++) {
6098 struct ata_port *ap = host->ports[i];
6099
Tejun Heo49114872007-04-17 23:44:06 +09006100 if (!ap)
6101 continue;
6102
6103 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09006104 scsi_host_put(ap->scsi_host);
6105
Tejun Heo49114872007-04-17 23:44:06 +09006106 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09006107 host->ports[i] = NULL;
6108 }
6109
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006110 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006111}
6112
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113/**
Tejun Heof3187192007-04-17 23:44:07 +09006114 * ata_host_alloc - allocate and init basic ATA host resources
6115 * @dev: generic device this host is associated with
6116 * @max_ports: maximum number of ATA ports associated with this host
6117 *
6118 * Allocate and initialize basic ATA host resources. LLD calls
6119 * this function to allocate a host, initializes it fully and
6120 * attaches it using ata_host_register().
6121 *
6122 * @max_ports ports are allocated and host->n_ports is
6123 * initialized to @max_ports. The caller is allowed to decrease
6124 * host->n_ports before calling ata_host_register(). The unused
6125 * ports will be automatically freed on registration.
6126 *
6127 * RETURNS:
6128 * Allocate ATA host on success, NULL on failure.
6129 *
6130 * LOCKING:
6131 * Inherited from calling layer (may sleep).
6132 */
6133struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
6134{
6135 struct ata_host *host;
6136 size_t sz;
6137 int i;
6138
6139 DPRINTK("ENTER\n");
6140
6141 if (!devres_open_group(dev, NULL, GFP_KERNEL))
6142 return NULL;
6143
6144 /* alloc a container for our list of ATA ports (buses) */
6145 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
6146 /* alloc a container for our list of ATA ports (buses) */
6147 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
6148 if (!host)
6149 goto err_out;
6150
6151 devres_add(dev, host);
6152 dev_set_drvdata(dev, host);
6153
6154 spin_lock_init(&host->lock);
6155 host->dev = dev;
6156 host->n_ports = max_ports;
6157
6158 /* allocate ports bound to this host */
6159 for (i = 0; i < max_ports; i++) {
6160 struct ata_port *ap;
6161
6162 ap = ata_port_alloc(host);
6163 if (!ap)
6164 goto err_out;
6165
6166 ap->port_no = i;
6167 host->ports[i] = ap;
6168 }
6169
6170 devres_remove_group(dev, NULL);
6171 return host;
6172
6173 err_out:
6174 devres_release_group(dev, NULL);
6175 return NULL;
6176}
6177
6178/**
Tejun Heof5cda252007-04-17 23:44:07 +09006179 * ata_host_alloc_pinfo - alloc host and init with port_info array
6180 * @dev: generic device this host is associated with
6181 * @ppi: array of ATA port_info to initialize host with
6182 * @n_ports: number of ATA ports attached to this host
6183 *
6184 * Allocate ATA host and initialize with info from @ppi. If NULL
6185 * terminated, @ppi may contain fewer entries than @n_ports. The
6186 * last entry will be used for the remaining ports.
6187 *
6188 * RETURNS:
6189 * Allocate ATA host on success, NULL on failure.
6190 *
6191 * LOCKING:
6192 * Inherited from calling layer (may sleep).
6193 */
6194struct ata_host *ata_host_alloc_pinfo(struct device *dev,
6195 const struct ata_port_info * const * ppi,
6196 int n_ports)
6197{
6198 const struct ata_port_info *pi;
6199 struct ata_host *host;
6200 int i, j;
6201
6202 host = ata_host_alloc(dev, n_ports);
6203 if (!host)
6204 return NULL;
6205
6206 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
6207 struct ata_port *ap = host->ports[i];
6208
6209 if (ppi[j])
6210 pi = ppi[j++];
6211
6212 ap->pio_mask = pi->pio_mask;
6213 ap->mwdma_mask = pi->mwdma_mask;
6214 ap->udma_mask = pi->udma_mask;
6215 ap->flags |= pi->flags;
6216 ap->ops = pi->port_ops;
6217
6218 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
6219 host->ops = pi->port_ops;
6220 if (!host->private_data && pi->private_data)
6221 host->private_data = pi->private_data;
6222 }
6223
6224 return host;
6225}
6226
6227/**
Tejun Heoecef7252007-04-17 23:44:06 +09006228 * ata_host_start - start and freeze ports of an ATA host
6229 * @host: ATA host to start ports for
6230 *
6231 * Start and then freeze ports of @host. Started status is
6232 * recorded in host->flags, so this function can be called
6233 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09006234 * once. If host->ops isn't initialized yet, its set to the
6235 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09006236 *
6237 * LOCKING:
6238 * Inherited from calling layer (may sleep).
6239 *
6240 * RETURNS:
6241 * 0 if all ports are started successfully, -errno otherwise.
6242 */
6243int ata_host_start(struct ata_host *host)
6244{
6245 int i, rc;
6246
6247 if (host->flags & ATA_HOST_STARTED)
6248 return 0;
6249
6250 for (i = 0; i < host->n_ports; i++) {
6251 struct ata_port *ap = host->ports[i];
6252
Tejun Heof3187192007-04-17 23:44:07 +09006253 if (!host->ops && !ata_port_is_dummy(ap))
6254 host->ops = ap->ops;
6255
Tejun Heoecef7252007-04-17 23:44:06 +09006256 if (ap->ops->port_start) {
6257 rc = ap->ops->port_start(ap);
6258 if (rc) {
6259 ata_port_printk(ap, KERN_ERR, "failed to "
6260 "start port (errno=%d)\n", rc);
6261 goto err_out;
6262 }
6263 }
6264
6265 ata_eh_freeze_port(ap);
6266 }
6267
6268 host->flags |= ATA_HOST_STARTED;
6269 return 0;
6270
6271 err_out:
6272 while (--i >= 0) {
6273 struct ata_port *ap = host->ports[i];
6274
6275 if (ap->ops->port_stop)
6276 ap->ops->port_stop(ap);
6277 }
6278 return rc;
6279}
6280
6281/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006282 * ata_sas_host_init - Initialize a host struct
6283 * @host: host to initialize
6284 * @dev: device host is attached to
6285 * @flags: host flags
6286 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05006287 *
6288 * LOCKING:
6289 * PCI/etc. bus probe sem.
6290 *
6291 */
Tejun Heof3187192007-04-17 23:44:07 +09006292/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04006293void ata_host_init(struct ata_host *host, struct device *dev,
6294 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05006295{
Jeff Garzikcca39742006-08-24 03:19:22 -04006296 spin_lock_init(&host->lock);
6297 host->dev = dev;
6298 host->flags = flags;
6299 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05006300}
6301
6302/**
Tejun Heof3187192007-04-17 23:44:07 +09006303 * ata_host_register - register initialized ATA host
6304 * @host: ATA host to register
6305 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04006306 *
Tejun Heof3187192007-04-17 23:44:07 +09006307 * Register initialized ATA host. @host is allocated using
6308 * ata_host_alloc() and fully initialized by LLD. This function
6309 * starts ports, registers @host with ATA and SCSI layers and
6310 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311 *
6312 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006313 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314 *
6315 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09006316 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317 */
Tejun Heof3187192007-04-17 23:44:07 +09006318int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319{
Tejun Heof3187192007-04-17 23:44:07 +09006320 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321
Tejun Heof3187192007-04-17 23:44:07 +09006322 /* host must have been started */
6323 if (!(host->flags & ATA_HOST_STARTED)) {
6324 dev_printk(KERN_ERR, host->dev,
6325 "BUG: trying to register unstarted host\n");
6326 WARN_ON(1);
6327 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01006328 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09006329
Tejun Heof3187192007-04-17 23:44:07 +09006330 /* Blow away unused ports. This happens when LLD can't
6331 * determine the exact number of ports to allocate at
6332 * allocation time.
6333 */
6334 for (i = host->n_ports; host->ports[i]; i++)
6335 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336
Tejun Heof3187192007-04-17 23:44:07 +09006337 /* give ports names and add SCSI hosts */
6338 for (i = 0; i < host->n_ports; i++)
6339 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006340
Tejun Heof3187192007-04-17 23:44:07 +09006341 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006342 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006343 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006344
Tejun Heofafbae82007-05-15 03:28:16 +09006345 /* associate with ACPI nodes */
6346 ata_acpi_associate(host);
6347
Tejun Heof3187192007-04-17 23:44:07 +09006348 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006349 for (i = 0; i < host->n_ports; i++) {
6350 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006351 int irq_line;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006352 u32 scontrol;
Tejun Heof3187192007-04-17 23:44:07 +09006353 unsigned long xfer_mask;
6354
6355 /* set SATA cable type if still unset */
6356 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6357 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358
Tejun Heo5a04bf42006-05-31 18:27:38 +09006359 /* init sata_spd_limit to the current value */
6360 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
6361 int spd = (scontrol >> 4) & 0xf;
Tejun Heoafe3cc52007-06-06 16:35:55 +09006362 if (spd)
6363 ap->hw_sata_spd_limit &= (1 << spd) - 1;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006364 }
6365 ap->sata_spd_limit = ap->hw_sata_spd_limit;
6366
Tejun Heof3187192007-04-17 23:44:07 +09006367 /* report the secondary IRQ for second channel legacy */
6368 irq_line = host->irq;
6369 if (i == 1 && host->irq2)
6370 irq_line = host->irq2;
Tejun Heo3e706392006-05-31 18:28:11 +09006371
Tejun Heof3187192007-04-17 23:44:07 +09006372 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6373 ap->udma_mask);
6374
6375 /* print per-port info to dmesg */
6376 if (!ata_port_is_dummy(ap))
6377 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%p "
6378 "ctl 0x%p bmdma 0x%p irq %d\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02006379 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09006380 ata_mode_string(xfer_mask),
6381 ap->ioaddr.cmd_addr,
6382 ap->ioaddr.ctl_addr,
6383 ap->ioaddr.bmdma_addr,
6384 irq_line);
6385 else
6386 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6387 }
6388
6389 /* perform each probe synchronously */
6390 DPRINTK("probe begin\n");
6391 for (i = 0; i < host->n_ports; i++) {
6392 struct ata_port *ap = host->ports[i];
6393 int rc;
6394
6395 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09006396 if (ap->ops->error_handler) {
Tejun Heo1cdaf532006-07-03 16:07:26 +09006397 struct ata_eh_info *ehi = &ap->eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09006398 unsigned long flags;
6399
6400 ata_port_probe(ap);
6401
6402 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006403 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006404
Tejun Heo1cdaf532006-07-03 16:07:26 +09006405 ehi->probe_mask = (1 << ATA_MAX_DEVICES) - 1;
6406 ehi->action |= ATA_EH_SOFTRESET;
6407 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09006408
Tejun Heof4d6d002007-05-01 11:50:15 +02006409 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09006410 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09006411 ata_port_schedule_eh(ap);
6412
Jeff Garzikba6a1302006-06-22 23:46:10 -04006413 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006414
6415 /* wait for EH to finish */
6416 ata_port_wait_eh(ap);
6417 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09006418 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006419 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09006420 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006421
6422 if (rc) {
6423 /* FIXME: do something useful here?
6424 * Current libata behavior will
6425 * tear down everything when
6426 * the module is removed
6427 * or the h/w is unplugged.
6428 */
6429 }
6430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431 }
6432
6433 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006434 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04006435 for (i = 0; i < host->n_ports; i++) {
6436 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437
Jeff Garzik644dd0c2005-10-03 15:55:19 -04006438 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439 }
6440
Tejun Heof3187192007-04-17 23:44:07 +09006441 return 0;
6442}
6443
6444/**
Tejun Heof5cda252007-04-17 23:44:07 +09006445 * ata_host_activate - start host, request IRQ and register it
6446 * @host: target ATA host
6447 * @irq: IRQ to request
6448 * @irq_handler: irq_handler used when requesting IRQ
6449 * @irq_flags: irq_flags used when requesting IRQ
6450 * @sht: scsi_host_template to use when registering the host
6451 *
6452 * After allocating an ATA host and initializing it, most libata
6453 * LLDs perform three steps to activate the host - start host,
6454 * request IRQ and register it. This helper takes necessasry
6455 * arguments and performs the three steps in one go.
6456 *
6457 * LOCKING:
6458 * Inherited from calling layer (may sleep).
6459 *
6460 * RETURNS:
6461 * 0 on success, -errno otherwise.
6462 */
6463int ata_host_activate(struct ata_host *host, int irq,
6464 irq_handler_t irq_handler, unsigned long irq_flags,
6465 struct scsi_host_template *sht)
6466{
6467 int rc;
6468
6469 rc = ata_host_start(host);
6470 if (rc)
6471 return rc;
6472
6473 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6474 dev_driver_string(host->dev), host);
6475 if (rc)
6476 return rc;
6477
Tejun Heo40318262007-07-03 01:38:47 +09006478 /* Used to print device info at probe */
6479 host->irq = irq;
6480
Tejun Heof5cda252007-04-17 23:44:07 +09006481 rc = ata_host_register(host, sht);
6482 /* if failed, just free the IRQ and leave ports alone */
6483 if (rc)
6484 devm_free_irq(host->dev, irq, host);
6485
6486 return rc;
6487}
6488
6489/**
Tejun Heo720ba122006-05-31 18:28:13 +09006490 * ata_port_detach - Detach ATA port in prepration of device removal
6491 * @ap: ATA port to be detached
6492 *
6493 * Detach all ATA devices and the associated SCSI devices of @ap;
6494 * then, remove the associated SCSI host. @ap is guaranteed to
6495 * be quiescent on return from this function.
6496 *
6497 * LOCKING:
6498 * Kernel thread context (may sleep).
6499 */
6500void ata_port_detach(struct ata_port *ap)
6501{
6502 unsigned long flags;
6503 int i;
6504
6505 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006506 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006507
6508 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006509 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006510 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006511 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006512
6513 ata_port_wait_eh(ap);
6514
6515 /* EH is now guaranteed to see UNLOADING, so no new device
6516 * will be attached. Disable all existing devices.
6517 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006518 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006519
6520 for (i = 0; i < ATA_MAX_DEVICES; i++)
6521 ata_dev_disable(&ap->device[i]);
6522
Jeff Garzikba6a1302006-06-22 23:46:10 -04006523 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006524
6525 /* Final freeze & EH. All in-flight commands are aborted. EH
6526 * will be skipped and retrials will be terminated with bad
6527 * target.
6528 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006529 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006530 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006531 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006532
6533 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07006534 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09006535
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006536 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006537 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006538 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006539}
6540
6541/**
Tejun Heo0529c1592007-01-20 16:00:26 +09006542 * ata_host_detach - Detach all ports of an ATA host
6543 * @host: Host to detach
6544 *
6545 * Detach all ports of @host.
6546 *
6547 * LOCKING:
6548 * Kernel thread context (may sleep).
6549 */
6550void ata_host_detach(struct ata_host *host)
6551{
6552 int i;
6553
6554 for (i = 0; i < host->n_ports; i++)
6555 ata_port_detach(host->ports[i]);
6556}
6557
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558/**
6559 * ata_std_ports - initialize ioaddr with standard port offsets.
6560 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04006561 *
6562 * Utility function which initializes data_addr, error_addr,
6563 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
6564 * device_addr, status_addr, and command_addr to standard offsets
6565 * relative to cmd_addr.
6566 *
6567 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568 */
Edward Falk0baab862005-06-02 18:17:13 -04006569
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570void ata_std_ports(struct ata_ioports *ioaddr)
6571{
6572 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
6573 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
6574 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
6575 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
6576 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
6577 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
6578 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
6579 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
6580 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
6581 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
6582}
6583
Edward Falk0baab862005-06-02 18:17:13 -04006584
Jeff Garzik374b1872005-08-30 05:42:52 -04006585#ifdef CONFIG_PCI
6586
Edward Falk0baab862005-06-02 18:17:13 -04006587/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588 * ata_pci_remove_one - PCI layer callback for device removal
6589 * @pdev: PCI device that was removed
6590 *
Tejun Heob878ca52007-01-20 16:00:28 +09006591 * PCI layer indicates to libata via this hook that hot-unplug or
6592 * module unload event has occurred. Detach all ports. Resource
6593 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594 *
6595 * LOCKING:
6596 * Inherited from PCI layer (may sleep).
6597 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006598void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599{
6600 struct device *dev = pci_dev_to_dev(pdev);
Jeff Garzikcca39742006-08-24 03:19:22 -04006601 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602
Tejun Heob878ca52007-01-20 16:00:28 +09006603 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604}
6605
6606/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006607int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608{
6609 unsigned long tmp = 0;
6610
6611 switch (bits->width) {
6612 case 1: {
6613 u8 tmp8 = 0;
6614 pci_read_config_byte(pdev, bits->reg, &tmp8);
6615 tmp = tmp8;
6616 break;
6617 }
6618 case 2: {
6619 u16 tmp16 = 0;
6620 pci_read_config_word(pdev, bits->reg, &tmp16);
6621 tmp = tmp16;
6622 break;
6623 }
6624 case 4: {
6625 u32 tmp32 = 0;
6626 pci_read_config_dword(pdev, bits->reg, &tmp32);
6627 tmp = tmp32;
6628 break;
6629 }
6630
6631 default:
6632 return -EINVAL;
6633 }
6634
6635 tmp &= bits->mask;
6636
6637 return (tmp == bits->val) ? 1 : 0;
6638}
Jens Axboe9b847542006-01-06 09:28:07 +01006639
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006640#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09006641void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006642{
6643 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09006644 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006645
Tejun Heo4c90d972007-02-20 18:14:48 +09006646 if (mesg.event == PM_EVENT_SUSPEND)
Tejun Heo500530f2006-07-03 16:07:27 +09006647 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01006648}
6649
Tejun Heo553c4aa2006-12-26 19:39:50 +09006650int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006651{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006652 int rc;
6653
Jens Axboe9b847542006-01-06 09:28:07 +01006654 pci_set_power_state(pdev, PCI_D0);
6655 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006656
Tejun Heob878ca52007-01-20 16:00:28 +09006657 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006658 if (rc) {
6659 dev_printk(KERN_ERR, &pdev->dev,
6660 "failed to enable device after resume (%d)\n", rc);
6661 return rc;
6662 }
6663
Jens Axboe9b847542006-01-06 09:28:07 +01006664 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006665 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006666}
6667
Tejun Heo3c5100c2006-07-26 16:58:33 +09006668int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006669{
Jeff Garzikcca39742006-08-24 03:19:22 -04006670 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006671 int rc = 0;
6672
Jeff Garzikcca39742006-08-24 03:19:22 -04006673 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006674 if (rc)
6675 return rc;
6676
Tejun Heo3c5100c2006-07-26 16:58:33 +09006677 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006678
6679 return 0;
6680}
6681
6682int ata_pci_device_resume(struct pci_dev *pdev)
6683{
Jeff Garzikcca39742006-08-24 03:19:22 -04006684 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006685 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006686
Tejun Heo553c4aa2006-12-26 19:39:50 +09006687 rc = ata_pci_device_do_resume(pdev);
6688 if (rc == 0)
6689 ata_host_resume(host);
6690 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006691}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006692#endif /* CONFIG_PM */
6693
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694#endif /* CONFIG_PCI */
6695
6696
Linus Torvalds1da177e2005-04-16 15:20:36 -07006697static int __init ata_init(void)
6698{
Andrew Mortona8601e52006-06-25 01:36:52 -07006699 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700 ata_wq = create_workqueue("ata");
6701 if (!ata_wq)
6702 return -ENOMEM;
6703
Tejun Heo453b07a2006-05-31 18:27:42 +09006704 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6705 if (!ata_aux_wq) {
6706 destroy_workqueue(ata_wq);
6707 return -ENOMEM;
6708 }
6709
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6711 return 0;
6712}
6713
6714static void __exit ata_exit(void)
6715{
6716 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006717 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718}
6719
Brian Kinga4625082006-11-13 16:32:36 -06006720subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721module_exit(ata_exit);
6722
Jeff Garzik67846b32005-10-05 02:58:32 -04006723static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006724static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006725
6726int ata_ratelimit(void)
6727{
6728 int rc;
6729 unsigned long flags;
6730
6731 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6732
6733 if (time_after(jiffies, ratelimit_time)) {
6734 rc = 1;
6735 ratelimit_time = jiffies + (HZ/5);
6736 } else
6737 rc = 0;
6738
6739 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6740
6741 return rc;
6742}
6743
Tejun Heoc22daff2006-04-11 22:22:29 +09006744/**
6745 * ata_wait_register - wait until register value changes
6746 * @reg: IO-mapped register
6747 * @mask: Mask to apply to read register value
6748 * @val: Wait condition
6749 * @interval_msec: polling interval in milliseconds
6750 * @timeout_msec: timeout in milliseconds
6751 *
6752 * Waiting for some bits of register to change is a common
6753 * operation for ATA controllers. This function reads 32bit LE
6754 * IO-mapped register @reg and tests for the following condition.
6755 *
6756 * (*@reg & mask) != val
6757 *
6758 * If the condition is met, it returns; otherwise, the process is
6759 * repeated after @interval_msec until timeout.
6760 *
6761 * LOCKING:
6762 * Kernel thread context (may sleep)
6763 *
6764 * RETURNS:
6765 * The final register value.
6766 */
6767u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6768 unsigned long interval_msec,
6769 unsigned long timeout_msec)
6770{
6771 unsigned long timeout;
6772 u32 tmp;
6773
6774 tmp = ioread32(reg);
6775
6776 /* Calculate timeout _after_ the first read to make sure
6777 * preceding writes reach the controller before starting to
6778 * eat away the timeout.
6779 */
6780 timeout = jiffies + (timeout_msec * HZ) / 1000;
6781
6782 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6783 msleep(interval_msec);
6784 tmp = ioread32(reg);
6785 }
6786
6787 return tmp;
6788}
6789
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006791 * Dummy port_ops
6792 */
6793static void ata_dummy_noret(struct ata_port *ap) { }
6794static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
6795static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
6796
6797static u8 ata_dummy_check_status(struct ata_port *ap)
6798{
6799 return ATA_DRDY;
6800}
6801
6802static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6803{
6804 return AC_ERR_SYSTEM;
6805}
6806
6807const struct ata_port_operations ata_dummy_port_ops = {
6808 .port_disable = ata_port_disable,
6809 .check_status = ata_dummy_check_status,
6810 .check_altstatus = ata_dummy_check_status,
6811 .dev_select = ata_noop_dev_select,
6812 .qc_prep = ata_noop_qc_prep,
6813 .qc_issue = ata_dummy_qc_issue,
6814 .freeze = ata_dummy_noret,
6815 .thaw = ata_dummy_noret,
6816 .error_handler = ata_dummy_noret,
6817 .post_internal_cmd = ata_dummy_qc_noret,
6818 .irq_clear = ata_dummy_noret,
6819 .port_start = ata_dummy_ret0,
6820 .port_stop = ata_dummy_noret,
6821};
6822
Tejun Heo21b0ad42007-04-17 23:44:07 +09006823const struct ata_port_info ata_dummy_port_info = {
6824 .port_ops = &ata_dummy_port_ops,
6825};
6826
Tejun Heodd5b06c2006-08-10 16:59:12 +09006827/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828 * libata is essentially a library of internal helper functions for
6829 * low-level ATA host controller drivers. As such, the API/ABI is
6830 * likely to change as new drivers are added and updated.
6831 * Do not depend on ABI/API stability.
6832 */
6833
Tejun Heoe9c83912006-07-03 16:07:26 +09006834EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6835EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6836EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006837EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006838EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839EXPORT_SYMBOL_GPL(ata_std_bios_param);
6840EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04006841EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006842EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006843EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09006844EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006845EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006846EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c1592007-01-20 16:00:26 +09006847EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848EXPORT_SYMBOL_GPL(ata_sg_init);
6849EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09006850EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09006851EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006852EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006853EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854EXPORT_SYMBOL_GPL(ata_tf_load);
6855EXPORT_SYMBOL_GPL(ata_tf_read);
6856EXPORT_SYMBOL_GPL(ata_noop_dev_select);
6857EXPORT_SYMBOL_GPL(ata_std_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05006858EXPORT_SYMBOL_GPL(sata_print_link_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6860EXPORT_SYMBOL_GPL(ata_tf_from_fis);
6861EXPORT_SYMBOL_GPL(ata_check_status);
6862EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863EXPORT_SYMBOL_GPL(ata_exec_command);
6864EXPORT_SYMBOL_GPL(ata_port_start);
Alan Coxd92e74d2007-06-07 16:19:15 +01006865EXPORT_SYMBOL_GPL(ata_sff_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866EXPORT_SYMBOL_GPL(ata_interrupt);
Alan04351822007-03-06 02:37:52 -08006867EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo0d5ff562007-02-01 15:06:36 +09006868EXPORT_SYMBOL_GPL(ata_data_xfer);
6869EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870EXPORT_SYMBOL_GPL(ata_qc_prep);
Alan Coxd26fc952007-07-06 19:13:52 -04006871EXPORT_SYMBOL_GPL(ata_dumb_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06006872EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873EXPORT_SYMBOL_GPL(ata_bmdma_setup);
6874EXPORT_SYMBOL_GPL(ata_bmdma_start);
6875EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
6876EXPORT_SYMBOL_GPL(ata_bmdma_status);
6877EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09006878EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
6879EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
6880EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
6881EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
6882EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00006884EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09006885EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09006886EXPORT_SYMBOL_GPL(sata_phy_debounce);
6887EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888EXPORT_SYMBOL_GPL(sata_phy_reset);
6889EXPORT_SYMBOL_GPL(__sata_phy_reset);
6890EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09006891EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006892EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heob6103f62006-11-01 17:59:53 +09006893EXPORT_SYMBOL_GPL(sata_port_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006894EXPORT_SYMBOL_GPL(sata_std_hardreset);
6895EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006896EXPORT_SYMBOL_GPL(ata_dev_classify);
6897EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006899EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006900EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09006901EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heod4b2bab2007-02-02 16:50:52 +09006902EXPORT_SYMBOL_GPL(ata_wait_ready);
Tejun Heo86e45b62006-03-05 15:29:09 +09006903EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6905EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006907EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006908EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09006910EXPORT_SYMBOL_GPL(sata_scr_valid);
6911EXPORT_SYMBOL_GPL(sata_scr_read);
6912EXPORT_SYMBOL_GPL(sata_scr_write);
6913EXPORT_SYMBOL_GPL(sata_scr_write_flush);
6914EXPORT_SYMBOL_GPL(ata_port_online);
6915EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006916#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006917EXPORT_SYMBOL_GPL(ata_host_suspend);
6918EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006919#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09006920EXPORT_SYMBOL_GPL(ata_id_string);
6921EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan10305f02007-02-20 18:01:59 +00006922EXPORT_SYMBOL_GPL(ata_id_to_dma_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006923EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6924
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006925EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04006926EXPORT_SYMBOL_GPL(ata_timing_compute);
6927EXPORT_SYMBOL_GPL(ata_timing_merge);
6928
Linus Torvalds1da177e2005-04-16 15:20:36 -07006929#ifdef CONFIG_PCI
6930EXPORT_SYMBOL_GPL(pci_test_config_bits);
Tejun Heod583bc12007-07-04 18:02:07 +09006931EXPORT_SYMBOL_GPL(ata_pci_init_sff_host);
Tejun Heo1626aeb2007-05-04 12:43:58 +02006932EXPORT_SYMBOL_GPL(ata_pci_init_bmdma);
Tejun Heod583bc12007-07-04 18:02:07 +09006933EXPORT_SYMBOL_GPL(ata_pci_prepare_sff_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934EXPORT_SYMBOL_GPL(ata_pci_init_one);
6935EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006936#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09006937EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6938EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006939EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6940EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006941#endif /* CONFIG_PM */
Alan Cox67951ad2006-03-22 15:55:54 +00006942EXPORT_SYMBOL_GPL(ata_pci_default_filter);
6943EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006945
Tejun Heoece1d632006-04-02 18:51:53 +09006946EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006947EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
6948EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006949EXPORT_SYMBOL_GPL(ata_port_freeze);
6950EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6951EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006952EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6953EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09006954EXPORT_SYMBOL_GPL(ata_do_eh);
Akira Iguchi836250062007-01-26 16:27:32 +09006955EXPORT_SYMBOL_GPL(ata_irq_on);
6956EXPORT_SYMBOL_GPL(ata_dummy_irq_on);
6957EXPORT_SYMBOL_GPL(ata_irq_ack);
6958EXPORT_SYMBOL_GPL(ata_dummy_irq_ack);
Akira Iguchia619f981b2007-01-26 16:28:18 +09006959EXPORT_SYMBOL_GPL(ata_dev_try_classify);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006960
6961EXPORT_SYMBOL_GPL(ata_cable_40wire);
6962EXPORT_SYMBOL_GPL(ata_cable_80wire);
6963EXPORT_SYMBOL_GPL(ata_cable_unknown);
6964EXPORT_SYMBOL_GPL(ata_cable_sata);