blob: d2141a04fff1f3da7e345e6d3541b406971feb1b [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
Mark Lordbaf4fdf2007-08-08 01:08:45 +090089int atapi_passthru16 = 1;
90module_param(atapi_passthru16, int, 0444);
91MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
92
Jeff Garzikc3c013a2006-02-27 22:31:19 -050093int libata_fua = 0;
94module_param_named(fua, libata_fua, int, 0444);
95MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
96
Alan Cox1e999732007-04-11 00:23:13 +010097static int ata_ignore_hpa = 0;
98module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
99MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
100
Andrew Mortona8601e52006-06-25 01:36:52 -0700101static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
102module_param(ata_probe_timeout, int, 0444);
103MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
104
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400105int libata_noacpi = 1;
106module_param_named(noacpi, libata_noacpi, int, 0444);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700107MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in suspend/resume when set");
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109MODULE_AUTHOR("Jeff Garzik");
110MODULE_DESCRIPTION("Library module for ATA devices");
111MODULE_LICENSE("GPL");
112MODULE_VERSION(DRV_VERSION);
113
Edward Falk0baab862005-06-02 18:17:13 -0400114
115/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
117 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900119 * @is_cmd: This FIS is for command
120 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 *
122 * Converts a standard ATA taskfile to a Serial ATA
123 * FIS structure (Register - Host to Device).
124 *
125 * LOCKING:
126 * Inherited from caller.
127 */
Tejun Heo99771262007-07-16 14:29:38 +0900128void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Tejun Heo99771262007-07-16 14:29:38 +0900130 fis[0] = 0x27; /* Register - Host to Device FIS */
131 fis[1] = pmp & 0xf; /* Port multiplier number*/
132 if (is_cmd)
133 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 fis[2] = tf->command;
136 fis[3] = tf->feature;
137
138 fis[4] = tf->lbal;
139 fis[5] = tf->lbam;
140 fis[6] = tf->lbah;
141 fis[7] = tf->device;
142
143 fis[8] = tf->hob_lbal;
144 fis[9] = tf->hob_lbam;
145 fis[10] = tf->hob_lbah;
146 fis[11] = tf->hob_feature;
147
148 fis[12] = tf->nsect;
149 fis[13] = tf->hob_nsect;
150 fis[14] = 0;
151 fis[15] = tf->ctl;
152
153 fis[16] = 0;
154 fis[17] = 0;
155 fis[18] = 0;
156 fis[19] = 0;
157}
158
159/**
160 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
161 * @fis: Buffer from which data will be input
162 * @tf: Taskfile to output
163 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500164 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 *
166 * LOCKING:
167 * Inherited from caller.
168 */
169
Jeff Garzik057ace52005-10-22 14:27:05 -0400170void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 tf->command = fis[2]; /* status */
173 tf->feature = fis[3]; /* error */
174
175 tf->lbal = fis[4];
176 tf->lbam = fis[5];
177 tf->lbah = fis[6];
178 tf->device = fis[7];
179
180 tf->hob_lbal = fis[8];
181 tf->hob_lbam = fis[9];
182 tf->hob_lbah = fis[10];
183
184 tf->nsect = fis[12];
185 tf->hob_nsect = fis[13];
186}
187
Albert Lee8cbd6df2005-10-12 15:06:27 +0800188static const u8 ata_rw_cmds[] = {
189 /* pio multi */
190 ATA_CMD_READ_MULTI,
191 ATA_CMD_WRITE_MULTI,
192 ATA_CMD_READ_MULTI_EXT,
193 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100194 0,
195 0,
196 0,
197 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800198 /* pio */
199 ATA_CMD_PIO_READ,
200 ATA_CMD_PIO_WRITE,
201 ATA_CMD_PIO_READ_EXT,
202 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100203 0,
204 0,
205 0,
206 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800207 /* dma */
208 ATA_CMD_READ,
209 ATA_CMD_WRITE,
210 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100211 ATA_CMD_WRITE_EXT,
212 0,
213 0,
214 0,
215 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800216};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800219 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900220 * @tf: command to examine and configure
221 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500223 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800224 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 *
226 * LOCKING:
227 * caller.
228 */
Tejun Heobd056d72006-11-14 22:47:10 +0900229static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100231 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100233 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500234
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100235 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800236 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
237 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Albert Lee8cbd6df2005-10-12 15:06:27 +0800239 if (dev->flags & ATA_DFLAG_PIO) {
240 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100241 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900242 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000243 /* Unable to use DMA due to host limitation */
244 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800245 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800246 } else {
247 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100248 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100251 cmd = ata_rw_cmds[index + fua + lba48 + write];
252 if (cmd) {
253 tf->command = cmd;
254 return 0;
255 }
256 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Tejun Heocb95d562006-03-06 04:31:56 +0900259/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900260 * ata_tf_read_block - Read block address from ATA taskfile
261 * @tf: ATA taskfile of interest
262 * @dev: ATA device @tf belongs to
263 *
264 * LOCKING:
265 * None.
266 *
267 * Read block address from @tf. This function can handle all
268 * three address formats - LBA, LBA48 and CHS. tf->protocol and
269 * flags select the address format to use.
270 *
271 * RETURNS:
272 * Block address read from @tf.
273 */
274u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
275{
276 u64 block = 0;
277
278 if (tf->flags & ATA_TFLAG_LBA) {
279 if (tf->flags & ATA_TFLAG_LBA48) {
280 block |= (u64)tf->hob_lbah << 40;
281 block |= (u64)tf->hob_lbam << 32;
282 block |= tf->hob_lbal << 24;
283 } else
284 block |= (tf->device & 0xf) << 24;
285
286 block |= tf->lbah << 16;
287 block |= tf->lbam << 8;
288 block |= tf->lbal;
289 } else {
290 u32 cyl, head, sect;
291
292 cyl = tf->lbam | (tf->lbah << 8);
293 head = tf->device & 0xf;
294 sect = tf->lbal;
295
296 block = (cyl * dev->heads + head) * dev->sectors + sect;
297 }
298
299 return block;
300}
301
302/**
Tejun Heobd056d72006-11-14 22:47:10 +0900303 * ata_build_rw_tf - Build ATA taskfile for given read/write request
304 * @tf: Target ATA taskfile
305 * @dev: ATA device @tf belongs to
306 * @block: Block address
307 * @n_block: Number of blocks
308 * @tf_flags: RW/FUA etc...
309 * @tag: tag
310 *
311 * LOCKING:
312 * None.
313 *
314 * Build ATA taskfile @tf for read/write request described by
315 * @block, @n_block, @tf_flags and @tag on @dev.
316 *
317 * RETURNS:
318 *
319 * 0 on success, -ERANGE if the request is too large for @dev,
320 * -EINVAL if the request is invalid.
321 */
322int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
323 u64 block, u32 n_block, unsigned int tf_flags,
324 unsigned int tag)
325{
326 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
327 tf->flags |= tf_flags;
328
Tejun Heo6d1245b2007-02-20 23:20:27 +0900329 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900330 /* yay, NCQ */
331 if (!lba_48_ok(block, n_block))
332 return -ERANGE;
333
334 tf->protocol = ATA_PROT_NCQ;
335 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
336
337 if (tf->flags & ATA_TFLAG_WRITE)
338 tf->command = ATA_CMD_FPDMA_WRITE;
339 else
340 tf->command = ATA_CMD_FPDMA_READ;
341
342 tf->nsect = tag << 3;
343 tf->hob_feature = (n_block >> 8) & 0xff;
344 tf->feature = n_block & 0xff;
345
346 tf->hob_lbah = (block >> 40) & 0xff;
347 tf->hob_lbam = (block >> 32) & 0xff;
348 tf->hob_lbal = (block >> 24) & 0xff;
349 tf->lbah = (block >> 16) & 0xff;
350 tf->lbam = (block >> 8) & 0xff;
351 tf->lbal = block & 0xff;
352
353 tf->device = 1 << 6;
354 if (tf->flags & ATA_TFLAG_FUA)
355 tf->device |= 1 << 7;
356 } else if (dev->flags & ATA_DFLAG_LBA) {
357 tf->flags |= ATA_TFLAG_LBA;
358
359 if (lba_28_ok(block, n_block)) {
360 /* use LBA28 */
361 tf->device |= (block >> 24) & 0xf;
362 } else if (lba_48_ok(block, n_block)) {
363 if (!(dev->flags & ATA_DFLAG_LBA48))
364 return -ERANGE;
365
366 /* use LBA48 */
367 tf->flags |= ATA_TFLAG_LBA48;
368
369 tf->hob_nsect = (n_block >> 8) & 0xff;
370
371 tf->hob_lbah = (block >> 40) & 0xff;
372 tf->hob_lbam = (block >> 32) & 0xff;
373 tf->hob_lbal = (block >> 24) & 0xff;
374 } else
375 /* request too large even for LBA48 */
376 return -ERANGE;
377
378 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
379 return -EINVAL;
380
381 tf->nsect = n_block & 0xff;
382
383 tf->lbah = (block >> 16) & 0xff;
384 tf->lbam = (block >> 8) & 0xff;
385 tf->lbal = block & 0xff;
386
387 tf->device |= ATA_LBA;
388 } else {
389 /* CHS */
390 u32 sect, head, cyl, track;
391
392 /* The request -may- be too large for CHS addressing. */
393 if (!lba_28_ok(block, n_block))
394 return -ERANGE;
395
396 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
397 return -EINVAL;
398
399 /* Convert LBA to CHS */
400 track = (u32)block / dev->sectors;
401 cyl = track / dev->heads;
402 head = track % dev->heads;
403 sect = (u32)block % dev->sectors + 1;
404
405 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
406 (u32)block, track, cyl, head, sect);
407
408 /* Check whether the converted CHS can fit.
409 Cylinder: 0-65535
410 Head: 0-15
411 Sector: 1-255*/
412 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
413 return -ERANGE;
414
415 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
416 tf->lbal = sect;
417 tf->lbam = cyl;
418 tf->lbah = cyl >> 8;
419 tf->device |= head;
420 }
421
422 return 0;
423}
424
425/**
Tejun Heocb95d562006-03-06 04:31:56 +0900426 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
427 * @pio_mask: pio_mask
428 * @mwdma_mask: mwdma_mask
429 * @udma_mask: udma_mask
430 *
431 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
432 * unsigned int xfer_mask.
433 *
434 * LOCKING:
435 * None.
436 *
437 * RETURNS:
438 * Packed xfer_mask.
439 */
440static unsigned int ata_pack_xfermask(unsigned int pio_mask,
441 unsigned int mwdma_mask,
442 unsigned int udma_mask)
443{
444 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
445 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
446 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
447}
448
Tejun Heoc0489e42006-03-24 14:07:49 +0900449/**
450 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
451 * @xfer_mask: xfer_mask to unpack
452 * @pio_mask: resulting pio_mask
453 * @mwdma_mask: resulting mwdma_mask
454 * @udma_mask: resulting udma_mask
455 *
456 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
457 * Any NULL distination masks will be ignored.
458 */
459static void ata_unpack_xfermask(unsigned int xfer_mask,
460 unsigned int *pio_mask,
461 unsigned int *mwdma_mask,
462 unsigned int *udma_mask)
463{
464 if (pio_mask)
465 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
466 if (mwdma_mask)
467 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
468 if (udma_mask)
469 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
470}
471
Tejun Heocb95d562006-03-06 04:31:56 +0900472static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900473 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900474 u8 base;
475} ata_xfer_tbl[] = {
476 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
477 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
478 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
479 { -1, },
480};
481
482/**
483 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
484 * @xfer_mask: xfer_mask of interest
485 *
486 * Return matching XFER_* value for @xfer_mask. Only the highest
487 * bit of @xfer_mask is considered.
488 *
489 * LOCKING:
490 * None.
491 *
492 * RETURNS:
493 * Matching XFER_* value, 0 if no match found.
494 */
495static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
496{
497 int highbit = fls(xfer_mask) - 1;
498 const struct ata_xfer_ent *ent;
499
500 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
501 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
502 return ent->base + highbit - ent->shift;
503 return 0;
504}
505
506/**
507 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
508 * @xfer_mode: XFER_* of interest
509 *
510 * Return matching xfer_mask for @xfer_mode.
511 *
512 * LOCKING:
513 * None.
514 *
515 * RETURNS:
516 * Matching xfer_mask, 0 if no match found.
517 */
518static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
519{
520 const struct ata_xfer_ent *ent;
521
522 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
523 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
524 return 1 << (ent->shift + xfer_mode - ent->base);
525 return 0;
526}
527
528/**
529 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
530 * @xfer_mode: XFER_* of interest
531 *
532 * Return matching xfer_shift for @xfer_mode.
533 *
534 * LOCKING:
535 * None.
536 *
537 * RETURNS:
538 * Matching xfer_shift, -1 if no match found.
539 */
540static int ata_xfer_mode2shift(unsigned int xfer_mode)
541{
542 const struct ata_xfer_ent *ent;
543
544 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
545 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
546 return ent->shift;
547 return -1;
548}
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900551 * ata_mode_string - convert xfer_mask to string
552 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 *
554 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900555 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 *
557 * LOCKING:
558 * None.
559 *
560 * RETURNS:
561 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900562 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900564static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Tejun Heo75f554b2006-03-06 04:31:57 +0900566 static const char * const xfer_mode_str[] = {
567 "PIO0",
568 "PIO1",
569 "PIO2",
570 "PIO3",
571 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100572 "PIO5",
573 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900574 "MWDMA0",
575 "MWDMA1",
576 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100577 "MWDMA3",
578 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900579 "UDMA/16",
580 "UDMA/25",
581 "UDMA/33",
582 "UDMA/44",
583 "UDMA/66",
584 "UDMA/100",
585 "UDMA/133",
586 "UDMA7",
587 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900588 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900590 highbit = fls(xfer_mask) - 1;
591 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
592 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Tejun Heo4c360c82006-04-01 01:38:17 +0900596static const char *sata_spd_string(unsigned int spd)
597{
598 static const char * const spd_str[] = {
599 "1.5 Gbps",
600 "3.0 Gbps",
601 };
602
603 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
604 return "<unknown>";
605 return spd_str[spd - 1];
606}
607
Tejun Heo3373efd2006-05-15 20:57:53 +0900608void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900609{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900610 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900611 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900612 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo4ae72a12007-02-02 16:22:30 +0900613 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
614 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900615 dev->class++;
616 }
617}
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 * ata_devchk - PATA device presence detection
621 * @ap: ATA channel to examine
622 * @device: Device to examine (starting at zero)
623 *
Tejun Heo0d5ff562007-02-01 15:06:36 +0900624 * This technique was originally described in
625 * Hale Landis's ATADRVR (www.ata-atapi.com), and
626 * later found its way into the ATA/ATAPI spec.
627 *
628 * Write a pattern to the ATA shadow registers,
629 * and if a device is present, it will respond by
630 * correctly storing and echoing back the
631 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 *
633 * LOCKING:
634 * caller.
635 */
636
Tejun Heo0d5ff562007-02-01 15:06:36 +0900637static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900639 struct ata_ioports *ioaddr = &ap->ioaddr;
640 u8 nsect, lbal;
641
642 ap->ops->dev_select(ap, device);
643
644 iowrite8(0x55, ioaddr->nsect_addr);
645 iowrite8(0xaa, ioaddr->lbal_addr);
646
647 iowrite8(0xaa, ioaddr->nsect_addr);
648 iowrite8(0x55, ioaddr->lbal_addr);
649
650 iowrite8(0x55, ioaddr->nsect_addr);
651 iowrite8(0xaa, ioaddr->lbal_addr);
652
653 nsect = ioread8(ioaddr->nsect_addr);
654 lbal = ioread8(ioaddr->lbal_addr);
655
656 if ((nsect == 0x55) && (lbal == 0xaa))
657 return 1; /* we found a device */
658
659 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
662/**
663 * ata_dev_classify - determine device type based on ATA-spec signature
664 * @tf: ATA taskfile register set for device to be identified
665 *
666 * Determine from taskfile register contents whether a device is
667 * ATA or ATAPI, as per "Signature and persistence" section
668 * of ATA/PI spec (volume 1, sect 5.14).
669 *
670 * LOCKING:
671 * None.
672 *
673 * RETURNS:
674 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
675 * the event of failure.
676 */
677
Jeff Garzik057ace52005-10-22 14:27:05 -0400678unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 /* Apple's open source Darwin code hints that some devices only
681 * put a proper signature into the LBA mid/high registers,
682 * So, we only check those. It's sufficient for uniqueness.
683 */
684
685 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
686 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
687 DPRINTK("found ATA device by sig\n");
688 return ATA_DEV_ATA;
689 }
690
691 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
692 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
693 DPRINTK("found ATAPI device by sig\n");
694 return ATA_DEV_ATAPI;
695 }
696
697 DPRINTK("unknown device\n");
698 return ATA_DEV_UNKNOWN;
699}
700
701/**
702 * ata_dev_try_classify - Parse returned ATA device signature
703 * @ap: ATA channel to examine
704 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900705 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 *
707 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
708 * an ATA/ATAPI-defined set of values is placed in the ATA
709 * shadow registers, indicating the results of device detection
710 * and diagnostics.
711 *
712 * Select the ATA device, and read the values from the ATA shadow
713 * registers. Then parse according to the Error register value,
714 * and the spec-defined values examined by ata_dev_classify().
715 *
716 * LOCKING:
717 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900718 *
719 * RETURNS:
720 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 */
722
Akira Iguchia619f981b2007-01-26 16:28:18 +0900723unsigned int
Tejun Heob4dc7622006-01-24 17:05:22 +0900724ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 struct ata_taskfile tf;
727 unsigned int class;
728 u8 err;
729
730 ap->ops->dev_select(ap, device);
731
732 memset(&tf, 0, sizeof(tf));
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400735 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900736 if (r_err)
737 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Alan Cox93590852006-09-12 16:55:12 +0100739 /* see if device passed diags: if master then continue and warn later */
740 if (err == 0 && device == 0)
741 /* diagnostic fail : do nothing _YET_ */
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900742 ap->link.device[device].horkage |= ATA_HORKAGE_DIAGNOSTIC;
Alan Cox93590852006-09-12 16:55:12 +0100743 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /* do nothing */ ;
745 else if ((device == 0) && (err == 0x81))
746 /* do nothing */ ;
747 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900748 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Tejun Heob4dc7622006-01-24 17:05:22 +0900750 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900754 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900756 return ATA_DEV_NONE;
757 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900761 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * @id: IDENTIFY DEVICE results we will examine
763 * @s: string into which data is output
764 * @ofs: offset into identify device page
765 * @len: length of string to return. must be an even number.
766 *
767 * The strings in the IDENTIFY DEVICE page are broken up into
768 * 16-bit chunks. Run through the string, and output each
769 * 8-bit chunk linearly, regardless of platform.
770 *
771 * LOCKING:
772 * caller.
773 */
774
Tejun Heo6a62a042006-02-13 10:02:46 +0900775void ata_id_string(const u16 *id, unsigned char *s,
776 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 unsigned int c;
779
780 while (len > 0) {
781 c = id[ofs] >> 8;
782 *s = c;
783 s++;
784
785 c = id[ofs] & 0xff;
786 *s = c;
787 s++;
788
789 ofs++;
790 len -= 2;
791 }
792}
793
Tejun Heo0e949ff2006-02-12 22:47:04 +0900794/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900795 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900796 * @id: IDENTIFY DEVICE results we will examine
797 * @s: string into which data is output
798 * @ofs: offset into identify device page
799 * @len: length of string to return. must be an odd number.
800 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900801 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900802 * trims trailing spaces and terminates the resulting string with
803 * null. @len must be actual maximum length (even number) + 1.
804 *
805 * LOCKING:
806 * caller.
807 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900808void ata_id_c_string(const u16 *id, unsigned char *s,
809 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900810{
811 unsigned char *p;
812
813 WARN_ON(!(len & 1));
814
Tejun Heo6a62a042006-02-13 10:02:46 +0900815 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900816
817 p = s + strnlen(s, len - 1);
818 while (p > s && p[-1] == ' ')
819 p--;
820 *p = '\0';
821}
Edward Falk0baab862005-06-02 18:17:13 -0400822
Alan Cox1e999732007-04-11 00:23:13 +0100823static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
824{
825 u64 sectors = 0;
826
827 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
828 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
829 sectors |= (tf->hob_lbal & 0xff) << 24;
830 sectors |= (tf->lbah & 0xff) << 16;
831 sectors |= (tf->lbam & 0xff) << 8;
832 sectors |= (tf->lbal & 0xff);
833
834 return ++sectors;
835}
836
837static u64 ata_tf_to_lba(struct ata_taskfile *tf)
838{
839 u64 sectors = 0;
840
841 sectors |= (tf->device & 0x0f) << 24;
842 sectors |= (tf->lbah & 0xff) << 16;
843 sectors |= (tf->lbam & 0xff) << 8;
844 sectors |= (tf->lbal & 0xff);
845
846 return ++sectors;
847}
848
849/**
850 * ata_read_native_max_address_ext - LBA48 native max query
851 * @dev: Device to query
852 *
853 * Perform an LBA48 size query upon the device in question. Return the
854 * actual LBA48 size or zero if the command fails.
855 */
856
857static u64 ata_read_native_max_address_ext(struct ata_device *dev)
858{
859 unsigned int err;
860 struct ata_taskfile tf;
861
862 ata_tf_init(dev, &tf);
863
864 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
865 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
866 tf.protocol |= ATA_PROT_NODATA;
867 tf.device |= 0x40;
868
869 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
870 if (err)
871 return 0;
872
873 return ata_tf_to_lba48(&tf);
874}
875
876/**
877 * ata_read_native_max_address - LBA28 native max query
878 * @dev: Device to query
879 *
880 * Performa an LBA28 size query upon the device in question. Return the
881 * actual LBA28 size or zero if the command fails.
882 */
883
884static u64 ata_read_native_max_address(struct ata_device *dev)
885{
886 unsigned int err;
887 struct ata_taskfile tf;
888
889 ata_tf_init(dev, &tf);
890
891 tf.command = ATA_CMD_READ_NATIVE_MAX;
892 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
893 tf.protocol |= ATA_PROT_NODATA;
894 tf.device |= 0x40;
895
896 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
897 if (err)
898 return 0;
899
900 return ata_tf_to_lba(&tf);
901}
902
903/**
904 * ata_set_native_max_address_ext - LBA48 native max set
905 * @dev: Device to query
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700906 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100907 *
908 * Perform an LBA48 size set max upon the device in question. Return the
909 * actual LBA48 size or zero if the command fails.
910 */
911
912static u64 ata_set_native_max_address_ext(struct ata_device *dev, u64 new_sectors)
913{
914 unsigned int err;
915 struct ata_taskfile tf;
916
917 new_sectors--;
918
919 ata_tf_init(dev, &tf);
920
921 tf.command = ATA_CMD_SET_MAX_EXT;
922 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
923 tf.protocol |= ATA_PROT_NODATA;
924 tf.device |= 0x40;
925
926 tf.lbal = (new_sectors >> 0) & 0xff;
927 tf.lbam = (new_sectors >> 8) & 0xff;
928 tf.lbah = (new_sectors >> 16) & 0xff;
929
930 tf.hob_lbal = (new_sectors >> 24) & 0xff;
931 tf.hob_lbam = (new_sectors >> 32) & 0xff;
932 tf.hob_lbah = (new_sectors >> 40) & 0xff;
933
934 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
935 if (err)
936 return 0;
937
938 return ata_tf_to_lba48(&tf);
939}
940
941/**
942 * ata_set_native_max_address - LBA28 native max set
943 * @dev: Device to query
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700944 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100945 *
946 * Perform an LBA28 size set max upon the device in question. Return the
947 * actual LBA28 size or zero if the command fails.
948 */
949
950static u64 ata_set_native_max_address(struct ata_device *dev, u64 new_sectors)
951{
952 unsigned int err;
953 struct ata_taskfile tf;
954
955 new_sectors--;
956
957 ata_tf_init(dev, &tf);
958
959 tf.command = ATA_CMD_SET_MAX;
960 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
961 tf.protocol |= ATA_PROT_NODATA;
962
963 tf.lbal = (new_sectors >> 0) & 0xff;
964 tf.lbam = (new_sectors >> 8) & 0xff;
965 tf.lbah = (new_sectors >> 16) & 0xff;
966 tf.device |= ((new_sectors >> 24) & 0x0f) | 0x40;
967
968 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
969 if (err)
970 return 0;
971
972 return ata_tf_to_lba(&tf);
973}
974
975/**
976 * ata_hpa_resize - Resize a device with an HPA set
977 * @dev: Device to resize
978 *
979 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
980 * it if required to the full size of the media. The caller must check
981 * the drive has the HPA feature set enabled.
982 */
983
984static u64 ata_hpa_resize(struct ata_device *dev)
985{
986 u64 sectors = dev->n_sectors;
987 u64 hpa_sectors;
Jeff Garzika617c092007-05-21 20:14:23 -0400988
Alan Cox1e999732007-04-11 00:23:13 +0100989 if (ata_id_has_lba48(dev->id))
990 hpa_sectors = ata_read_native_max_address_ext(dev);
991 else
992 hpa_sectors = ata_read_native_max_address(dev);
993
Alan Cox1e999732007-04-11 00:23:13 +0100994 if (hpa_sectors > sectors) {
995 ata_dev_printk(dev, KERN_INFO,
996 "Host Protected Area detected:\n"
997 "\tcurrent size: %lld sectors\n"
998 "\tnative size: %lld sectors\n",
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -0700999 (long long)sectors, (long long)hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001000
1001 if (ata_ignore_hpa) {
1002 if (ata_id_has_lba48(dev->id))
1003 hpa_sectors = ata_set_native_max_address_ext(dev, hpa_sectors);
1004 else
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -07001005 hpa_sectors = ata_set_native_max_address(dev,
1006 hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001007
1008 if (hpa_sectors) {
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -07001009 ata_dev_printk(dev, KERN_INFO, "native size "
1010 "increased to %lld sectors\n",
1011 (long long)hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001012 return hpa_sectors;
1013 }
1014 }
Tejun Heo37301a52007-06-25 20:45:54 +09001015 } else if (hpa_sectors < sectors)
1016 ata_dev_printk(dev, KERN_WARNING, "%s 1: hpa sectors (%lld) "
1017 "is smaller than sectors (%lld)\n", __FUNCTION__,
1018 (long long)hpa_sectors, (long long)sectors);
1019
Alan Cox1e999732007-04-11 00:23:13 +01001020 return sectors;
1021}
1022
Tejun Heo29407402006-02-12 22:47:04 +09001023static u64 ata_id_n_sectors(const u16 *id)
1024{
1025 if (ata_id_has_lba(id)) {
1026 if (ata_id_has_lba48(id))
1027 return ata_id_u64(id, 100);
1028 else
1029 return ata_id_u32(id, 60);
1030 } else {
1031 if (ata_id_current_chs_valid(id))
1032 return ata_id_u32(id, 57);
1033 else
1034 return id[1] * id[3] * id[6];
1035 }
1036}
1037
Edward Falk0baab862005-06-02 18:17:13 -04001038/**
Alan10305f02007-02-20 18:01:59 +00001039 * ata_id_to_dma_mode - Identify DMA mode from id block
1040 * @dev: device to identify
Randy Dunlapcc261262007-03-16 19:55:47 -07001041 * @unknown: mode to assume if we cannot tell
Alan10305f02007-02-20 18:01:59 +00001042 *
1043 * Set up the timing values for the device based upon the identify
1044 * reported values for the DMA mode. This function is used by drivers
1045 * which rely upon firmware configured modes, but wish to report the
1046 * mode correctly when possible.
1047 *
1048 * In addition we emit similarly formatted messages to the default
1049 * ata_dev_set_mode handler, in order to provide consistency of
1050 * presentation.
1051 */
1052
1053void ata_id_to_dma_mode(struct ata_device *dev, u8 unknown)
1054{
1055 unsigned int mask;
1056 u8 mode;
1057
1058 /* Pack the DMA modes */
1059 mask = ((dev->id[63] >> 8) << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA;
1060 if (dev->id[53] & 0x04)
1061 mask |= ((dev->id[88] >> 8) << ATA_SHIFT_UDMA) & ATA_MASK_UDMA;
1062
1063 /* Select the mode in use */
1064 mode = ata_xfer_mask2mode(mask);
1065
1066 if (mode != 0) {
1067 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
1068 ata_mode_string(mask));
1069 } else {
1070 /* SWDMA perhaps ? */
1071 mode = unknown;
1072 ata_dev_printk(dev, KERN_INFO, "configured for DMA\n");
1073 }
1074
1075 /* Configure the device reporting */
1076 dev->xfer_mode = mode;
1077 dev->xfer_shift = ata_xfer_mode2shift(mode);
1078}
1079
1080/**
Edward Falk0baab862005-06-02 18:17:13 -04001081 * ata_noop_dev_select - Select device 0/1 on ATA bus
1082 * @ap: ATA channel to manipulate
1083 * @device: ATA device (numbered from zero) to select
1084 *
1085 * This function performs no actual function.
1086 *
1087 * May be used as the dev_select() entry in ata_port_operations.
1088 *
1089 * LOCKING:
1090 * caller.
1091 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
1093{
1094}
1095
Edward Falk0baab862005-06-02 18:17:13 -04001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097/**
1098 * ata_std_dev_select - Select device 0/1 on ATA bus
1099 * @ap: ATA channel to manipulate
1100 * @device: ATA device (numbered from zero) to select
1101 *
1102 * Use the method defined in the ATA specification to
1103 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -04001104 * ATA channel. Works with both PIO and MMIO.
1105 *
1106 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 *
1108 * LOCKING:
1109 * caller.
1110 */
1111
1112void ata_std_dev_select (struct ata_port *ap, unsigned int device)
1113{
1114 u8 tmp;
1115
1116 if (device == 0)
1117 tmp = ATA_DEVICE_OBS;
1118 else
1119 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1120
Tejun Heo0d5ff562007-02-01 15:06:36 +09001121 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 ata_pause(ap); /* needed; also flushes, for mmio */
1123}
1124
1125/**
1126 * ata_dev_select - Select device 0/1 on ATA bus
1127 * @ap: ATA channel to manipulate
1128 * @device: ATA device (numbered from zero) to select
1129 * @wait: non-zero to wait for Status register BSY bit to clear
1130 * @can_sleep: non-zero if context allows sleeping
1131 *
1132 * Use the method defined in the ATA specification to
1133 * make either device 0, or device 1, active on the
1134 * ATA channel.
1135 *
1136 * This is a high-level version of ata_std_dev_select(),
1137 * which additionally provides the services of inserting
1138 * the proper pauses and status polling, where needed.
1139 *
1140 * LOCKING:
1141 * caller.
1142 */
1143
1144void ata_dev_select(struct ata_port *ap, unsigned int device,
1145 unsigned int wait, unsigned int can_sleep)
1146{
Tejun Heo88574552006-06-25 20:00:35 +09001147 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001148 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
1149 "device %u, wait %u\n", device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 if (wait)
1152 ata_wait_idle(ap);
1153
1154 ap->ops->dev_select(ap, device);
1155
1156 if (wait) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001157 if (can_sleep && ap->link.device[device].class == ATA_DEV_ATAPI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 msleep(150);
1159 ata_wait_idle(ap);
1160 }
1161}
1162
1163/**
1164 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001165 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001167 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1168 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 *
1170 * LOCKING:
1171 * caller.
1172 */
1173
Tejun Heo0bd33002006-02-12 22:47:05 +09001174static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176 DPRINTK("49==0x%04x "
1177 "53==0x%04x "
1178 "63==0x%04x "
1179 "64==0x%04x "
1180 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001181 id[49],
1182 id[53],
1183 id[63],
1184 id[64],
1185 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 DPRINTK("80==0x%04x "
1187 "81==0x%04x "
1188 "82==0x%04x "
1189 "83==0x%04x "
1190 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001191 id[80],
1192 id[81],
1193 id[82],
1194 id[83],
1195 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 DPRINTK("88==0x%04x "
1197 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001198 id[88],
1199 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Tejun Heocb95d562006-03-06 04:31:56 +09001202/**
1203 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1204 * @id: IDENTIFY data to compute xfer mask from
1205 *
1206 * Compute the xfermask for this device. This is not as trivial
1207 * as it seems if we must consider early devices correctly.
1208 *
1209 * FIXME: pre IDE drive timing (do we care ?).
1210 *
1211 * LOCKING:
1212 * None.
1213 *
1214 * RETURNS:
1215 * Computed xfermask
1216 */
1217static unsigned int ata_id_xfermask(const u16 *id)
1218{
1219 unsigned int pio_mask, mwdma_mask, udma_mask;
1220
1221 /* Usual case. Word 53 indicates word 64 is valid */
1222 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1223 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1224 pio_mask <<= 3;
1225 pio_mask |= 0x7;
1226 } else {
1227 /* If word 64 isn't valid then Word 51 high byte holds
1228 * the PIO timing number for the maximum. Turn it into
1229 * a mask.
1230 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001231 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001232 if (mode < 5) /* Valid PIO range */
1233 pio_mask = (2 << mode) - 1;
1234 else
1235 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001236
1237 /* But wait.. there's more. Design your standards by
1238 * committee and you too can get a free iordy field to
1239 * process. However its the speeds not the modes that
1240 * are supported... Note drivers using the timing API
1241 * will get this right anyway
1242 */
1243 }
1244
1245 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001246
Alan Coxb352e572006-08-10 18:52:12 +01001247 if (ata_id_is_cfa(id)) {
1248 /*
1249 * Process compact flash extended modes
1250 */
1251 int pio = id[163] & 0x7;
1252 int dma = (id[163] >> 3) & 7;
1253
1254 if (pio)
1255 pio_mask |= (1 << 5);
1256 if (pio > 1)
1257 pio_mask |= (1 << 6);
1258 if (dma)
1259 mwdma_mask |= (1 << 3);
1260 if (dma > 1)
1261 mwdma_mask |= (1 << 4);
1262 }
1263
Tejun Heofb21f0d2006-03-12 12:34:35 +09001264 udma_mask = 0;
1265 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1266 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001267
1268 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1269}
1270
Tejun Heo86e45b62006-03-05 15:29:09 +09001271/**
1272 * ata_port_queue_task - Queue port_task
1273 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001274 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001275 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001276 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001277 *
1278 * Schedule @fn(@data) for execution after @delay jiffies using
1279 * port_task. There is one port_task per port and it's the
1280 * user(low level driver)'s responsibility to make sure that only
1281 * one task is active at any given time.
1282 *
1283 * libata core layer takes care of synchronization between
1284 * port_task and EH. ata_port_queue_task() may be ignored for EH
1285 * synchronization.
1286 *
1287 * LOCKING:
1288 * Inherited from caller.
1289 */
David Howells65f27f32006-11-22 14:55:48 +00001290void ata_port_queue_task(struct ata_port *ap, work_func_t fn, void *data,
Tejun Heo86e45b62006-03-05 15:29:09 +09001291 unsigned long delay)
1292{
David Howells65f27f32006-11-22 14:55:48 +00001293 PREPARE_DELAYED_WORK(&ap->port_task, fn);
1294 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001295
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001296 /* may fail if ata_port_flush_task() in progress */
1297 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001298}
1299
1300/**
1301 * ata_port_flush_task - Flush port_task
1302 * @ap: The ata_port to flush port_task for
1303 *
1304 * After this function completes, port_task is guranteed not to
1305 * be running or scheduled.
1306 *
1307 * LOCKING:
1308 * Kernel thread context (may sleep)
1309 */
1310void ata_port_flush_task(struct ata_port *ap)
1311{
Tejun Heo86e45b62006-03-05 15:29:09 +09001312 DPRINTK("ENTER\n");
1313
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001314 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001315
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001316 if (ata_msg_ctl(ap))
1317 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001318}
1319
Adrian Bunk7102d232007-01-04 00:09:36 +01001320static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001321{
Tejun Heo77853bf2006-01-23 13:09:36 +09001322 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001323
Tejun Heoa2a7a662005-12-13 14:48:31 +09001324 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001325}
1326
1327/**
Tejun Heo24326972006-11-14 22:47:09 +09001328 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001329 * @dev: Device to which the command is sent
1330 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001331 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001332 * @dma_dir: Data tranfer direction of the command
Tejun Heo24326972006-11-14 22:47:09 +09001333 * @sg: sg list for the data buffer of the command
1334 * @n_elem: Number of sg entries
Tejun Heoa2a7a662005-12-13 14:48:31 +09001335 *
1336 * Executes libata internal command with timeout. @tf contains
1337 * command on entry and result on return. Timeout and error
1338 * conditions are reported via return value. No recovery action
1339 * is taken after a command times out. It's caller's duty to
1340 * clean up after timeout.
1341 *
1342 * LOCKING:
1343 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001344 *
1345 * RETURNS:
1346 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001347 */
Tejun Heo24326972006-11-14 22:47:09 +09001348unsigned ata_exec_internal_sg(struct ata_device *dev,
1349 struct ata_taskfile *tf, const u8 *cdb,
1350 int dma_dir, struct scatterlist *sg,
1351 unsigned int n_elem)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001352{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001353 struct ata_link *link = dev->link;
1354 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001355 u8 command = tf->command;
1356 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001357 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001358 u32 preempted_sactive, preempted_qc_active;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001359 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001360 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001361 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001362 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001363
Jeff Garzikba6a1302006-06-22 23:46:10 -04001364 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001365
Tejun Heoe3180492006-05-15 20:58:09 +09001366 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001367 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001368 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001369 return AC_ERR_SYSTEM;
1370 }
1371
Tejun Heo2ab7db12006-05-15 20:58:02 +09001372 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001373
Tejun Heo2ab7db12006-05-15 20:58:02 +09001374 /* XXX: Tag 0 is used for drivers with legacy EH as some
1375 * drivers choke if any other tag is given. This breaks
1376 * ata_tag_internal() test for those drivers. Don't use new
1377 * EH stuff without converting to it.
1378 */
1379 if (ap->ops->error_handler)
1380 tag = ATA_TAG_INTERNAL;
1381 else
1382 tag = 0;
1383
Tejun Heo6cec4a32006-05-15 21:03:41 +09001384 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001385 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001386 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001387
1388 qc->tag = tag;
1389 qc->scsicmd = NULL;
1390 qc->ap = ap;
1391 qc->dev = dev;
1392 ata_qc_reinit(qc);
1393
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001394 preempted_tag = link->active_tag;
1395 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001396 preempted_qc_active = ap->qc_active;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001397 link->active_tag = ATA_TAG_POISON;
1398 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001399 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001400
1401 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001402 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001403 if (cdb)
1404 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001405 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001406 qc->dma_dir = dma_dir;
1407 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001408 unsigned int i, buflen = 0;
1409
1410 for (i = 0; i < n_elem; i++)
1411 buflen += sg[i].length;
1412
1413 ata_sg_init(qc, sg, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001414 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001415 }
1416
Tejun Heo77853bf2006-01-23 13:09:36 +09001417 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001418 qc->complete_fn = ata_qc_complete_internal;
1419
Tejun Heo8e0e6942006-03-31 20:41:11 +09001420 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001421
Jeff Garzikba6a1302006-06-22 23:46:10 -04001422 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001423
Andrew Mortona8601e52006-06-25 01:36:52 -07001424 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001425
Tejun Heod95a7172006-05-15 20:58:14 +09001426 ata_port_flush_task(ap);
1427
1428 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001429 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001430
1431 /* We're racing with irq here. If we lose, the
1432 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001433 * twice. If we win, the port is frozen and will be
1434 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001435 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001436 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001437 qc->err_mask |= AC_ERR_TIMEOUT;
1438
1439 if (ap->ops->error_handler)
1440 ata_port_freeze(ap);
1441 else
1442 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001443
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001444 if (ata_msg_warn(ap))
1445 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001446 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001447 }
1448
Jeff Garzikba6a1302006-06-22 23:46:10 -04001449 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001450 }
1451
Tejun Heod95a7172006-05-15 20:58:14 +09001452 /* do post_internal_cmd */
1453 if (ap->ops->post_internal_cmd)
1454 ap->ops->post_internal_cmd(qc);
1455
Tejun Heoa51d6442007-03-20 15:24:11 +09001456 /* perform minimal error analysis */
1457 if (qc->flags & ATA_QCFLAG_FAILED) {
1458 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1459 qc->err_mask |= AC_ERR_DEV;
1460
1461 if (!qc->err_mask)
1462 qc->err_mask |= AC_ERR_OTHER;
1463
1464 if (qc->err_mask & ~AC_ERR_OTHER)
1465 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001466 }
1467
Tejun Heo15869302006-05-15 20:57:33 +09001468 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001469 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001470
Tejun Heoe61e0672006-05-15 20:57:40 +09001471 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001472 err_mask = qc->err_mask;
1473
1474 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001475 link->active_tag = preempted_tag;
1476 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001477 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001478
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001479 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1480 * Until those drivers are fixed, we detect the condition
1481 * here, fail the command with AC_ERR_SYSTEM and reenable the
1482 * port.
1483 *
1484 * Note that this doesn't change any behavior as internal
1485 * command failure results in disabling the device in the
1486 * higher layer for LLDDs without new reset/EH callbacks.
1487 *
1488 * Kill the following code as soon as those drivers are fixed.
1489 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001490 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001491 err_mask |= AC_ERR_SYSTEM;
1492 ata_port_probe(ap);
1493 }
1494
Jeff Garzikba6a1302006-06-22 23:46:10 -04001495 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001496
Tejun Heo77853bf2006-01-23 13:09:36 +09001497 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001498}
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500/**
Tejun Heo33480a02006-12-12 02:15:31 +09001501 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001502 * @dev: Device to which the command is sent
1503 * @tf: Taskfile registers for the command and the result
1504 * @cdb: CDB for packet command
1505 * @dma_dir: Data tranfer direction of the command
1506 * @buf: Data buffer of the command
1507 * @buflen: Length of data buffer
1508 *
1509 * Wrapper around ata_exec_internal_sg() which takes simple
1510 * buffer instead of sg list.
1511 *
1512 * LOCKING:
1513 * None. Should be called with kernel context, might sleep.
1514 *
1515 * RETURNS:
1516 * Zero on success, AC_ERR_* mask on failure
1517 */
1518unsigned ata_exec_internal(struct ata_device *dev,
1519 struct ata_taskfile *tf, const u8 *cdb,
1520 int dma_dir, void *buf, unsigned int buflen)
1521{
Tejun Heo33480a02006-12-12 02:15:31 +09001522 struct scatterlist *psg = NULL, sg;
1523 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001524
Tejun Heo33480a02006-12-12 02:15:31 +09001525 if (dma_dir != DMA_NONE) {
1526 WARN_ON(!buf);
1527 sg_init_one(&sg, buf, buflen);
1528 psg = &sg;
1529 n_elem++;
1530 }
Tejun Heo24326972006-11-14 22:47:09 +09001531
Tejun Heo33480a02006-12-12 02:15:31 +09001532 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem);
Tejun Heo24326972006-11-14 22:47:09 +09001533}
1534
1535/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001536 * ata_do_simple_cmd - execute simple internal command
1537 * @dev: Device to which the command is sent
1538 * @cmd: Opcode to execute
1539 *
1540 * Execute a 'simple' command, that only consists of the opcode
1541 * 'cmd' itself, without filling any other registers
1542 *
1543 * LOCKING:
1544 * Kernel thread context (may sleep).
1545 *
1546 * RETURNS:
1547 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001548 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001549unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001550{
1551 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001552
1553 ata_tf_init(dev, &tf);
1554
1555 tf.command = cmd;
1556 tf.flags |= ATA_TFLAG_DEVICE;
1557 tf.protocol = ATA_PROT_NODATA;
1558
Tejun Heo977e6b92006-06-24 20:30:19 +09001559 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001560}
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001563 * ata_pio_need_iordy - check if iordy needed
1564 * @adev: ATA device
1565 *
1566 * Check if the current speed of the device requires IORDY. Used
1567 * by various controllers for chip configuration.
1568 */
Jeff Garzika617c092007-05-21 20:14:23 -04001569
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001570unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1571{
Alan Cox432729f2007-03-08 23:22:59 +00001572 /* Controller doesn't support IORDY. Probably a pointless check
1573 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001574 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001575 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001576 /* PIO3 and higher it is mandatory */
1577 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001578 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001579 /* We turn it on when possible */
1580 if (ata_id_has_iordy(adev->id))
1581 return 1;
1582 return 0;
1583}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001584
Alan Cox432729f2007-03-08 23:22:59 +00001585/**
1586 * ata_pio_mask_no_iordy - Return the non IORDY mask
1587 * @adev: ATA device
1588 *
1589 * Compute the highest mode possible if we are not using iordy. Return
1590 * -1 if no iordy mode is available.
1591 */
Jeff Garzika617c092007-05-21 20:14:23 -04001592
Alan Cox432729f2007-03-08 23:22:59 +00001593static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1594{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001595 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001596 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001597 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001598 /* Is the speed faster than the drive allows non IORDY ? */
1599 if (pio) {
1600 /* This is cycle times not frequency - watch the logic! */
1601 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001602 return 3 << ATA_SHIFT_PIO;
1603 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001604 }
1605 }
Alan Cox432729f2007-03-08 23:22:59 +00001606 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001607}
1608
1609/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001610 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001611 * @dev: target device
1612 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001613 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001614 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001615 *
1616 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1617 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001618 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1619 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001620 *
Alan Cox50a99012007-08-08 14:27:00 +01001621 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
1622 * now we abort if we hit that case.
1623 *
Tejun Heo49016ac2006-02-21 02:12:11 +09001624 * LOCKING:
1625 * Kernel thread context (may sleep)
1626 *
1627 * RETURNS:
1628 * 0 on success, -errno otherwise.
1629 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001630int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001631 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001632{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001633 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001634 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001635 struct ata_taskfile tf;
1636 unsigned int err_mask = 0;
1637 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001638 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001639 int rc;
1640
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001641 if (ata_msg_ctl(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001642 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001643
Tejun Heo49016ac2006-02-21 02:12:11 +09001644 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
Tejun Heo49016ac2006-02-21 02:12:11 +09001645 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001646 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001647
1648 switch (class) {
1649 case ATA_DEV_ATA:
1650 tf.command = ATA_CMD_ID_ATA;
1651 break;
1652 case ATA_DEV_ATAPI:
1653 tf.command = ATA_CMD_ID_ATAPI;
1654 break;
1655 default:
1656 rc = -ENODEV;
1657 reason = "unsupported class";
1658 goto err_out;
1659 }
1660
1661 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001662
1663 /* Some devices choke if TF registers contain garbage. Make
1664 * sure those are properly initialized.
1665 */
1666 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1667
1668 /* Device presence detection is unreliable on some
1669 * controllers. Always poll IDENTIFY if available.
1670 */
1671 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001672
Tejun Heo3373efd2006-05-15 20:57:53 +09001673 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001674 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001675 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001676 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001677 DPRINTK("ata%u.%d: NODEV after polling detection\n",
Tejun Heo44877b42007-02-21 01:06:51 +09001678 ap->print_id, dev->devno);
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001679 return -ENOENT;
1680 }
1681
Tejun Heo54936f82007-05-11 14:35:29 +02001682 /* Device or controller might have reported the wrong
1683 * device class. Give a shot at the other IDENTIFY if
1684 * the current one is aborted by the device.
1685 */
1686 if (may_fallback &&
1687 (err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1688 may_fallback = 0;
1689
1690 if (class == ATA_DEV_ATA)
1691 class = ATA_DEV_ATAPI;
1692 else
1693 class = ATA_DEV_ATA;
1694 goto retry;
1695 }
1696
Tejun Heo49016ac2006-02-21 02:12:11 +09001697 rc = -EIO;
1698 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001699 goto err_out;
1700 }
1701
Tejun Heo54936f82007-05-11 14:35:29 +02001702 /* Falling back doesn't make sense if ID data was read
1703 * successfully at least once.
1704 */
1705 may_fallback = 0;
1706
Tejun Heo49016ac2006-02-21 02:12:11 +09001707 swap_buf_le16(id, ATA_ID_WORDS);
1708
Tejun Heo49016ac2006-02-21 02:12:11 +09001709 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001710 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01001711 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07001712
1713 if (class == ATA_DEV_ATA) {
1714 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1715 goto err_out;
1716 } else {
1717 if (ata_id_is_ata(id))
1718 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001719 }
1720
Mark Lord169439c2007-04-17 18:26:07 -04001721 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
1722 tried_spinup = 1;
1723 /*
1724 * Drive powered-up in standby mode, and requires a specific
1725 * SET_FEATURES spin-up subcommand before it will accept
1726 * anything other than the original IDENTIFY command.
1727 */
1728 ata_tf_init(dev, &tf);
1729 tf.command = ATA_CMD_SET_FEATURES;
1730 tf.feature = SETFEATURES_SPINUP;
1731 tf.protocol = ATA_PROT_NODATA;
1732 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1733 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07001734 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04001735 rc = -EIO;
1736 reason = "SPINUP failed";
1737 goto err_out;
1738 }
1739 /*
1740 * If the drive initially returned incomplete IDENTIFY info,
1741 * we now must reissue the IDENTIFY command.
1742 */
1743 if (id[2] == 0x37c8)
1744 goto retry;
1745 }
1746
Tejun Heobff04642006-11-10 18:08:10 +09001747 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001748 /*
1749 * The exact sequence expected by certain pre-ATA4 drives is:
1750 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01001751 * IDENTIFY (optional in early ATA)
1752 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09001753 * anything else..
1754 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01001755 *
1756 * Note that ATA4 says lba is mandatory so the second check
1757 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09001758 */
1759 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001760 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001761 if (err_mask) {
1762 rc = -EIO;
1763 reason = "INIT_DEV_PARAMS failed";
1764 goto err_out;
1765 }
1766
1767 /* current CHS translation info (id[53-58]) might be
1768 * changed. reread the identify device info.
1769 */
Tejun Heobff04642006-11-10 18:08:10 +09001770 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09001771 goto retry;
1772 }
1773 }
1774
1775 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001776
Tejun Heo49016ac2006-02-21 02:12:11 +09001777 return 0;
1778
1779 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001780 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001781 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001782 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001783 return rc;
1784}
1785
Tejun Heo3373efd2006-05-15 20:57:53 +09001786static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001787{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001788 struct ata_port *ap = dev->link->ap;
1789 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001790}
1791
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001792static void ata_dev_config_ncq(struct ata_device *dev,
1793 char *desc, size_t desc_sz)
1794{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001795 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001796 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1797
1798 if (!ata_id_has_ncq(dev->id)) {
1799 desc[0] = '\0';
1800 return;
1801 }
Tejun Heo75683fe2007-07-05 13:31:27 +09001802 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07001803 snprintf(desc, desc_sz, "NCQ (not used)");
1804 return;
1805 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001806 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04001807 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001808 dev->flags |= ATA_DFLAG_NCQ;
1809 }
1810
1811 if (hdepth >= ddepth)
1812 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1813 else
1814 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1815}
1816
Tejun Heo49016ac2006-02-21 02:12:11 +09001817/**
Tejun Heoffeae412006-03-01 16:09:35 +09001818 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001819 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 *
Tejun Heoffeae412006-03-01 16:09:35 +09001821 * Configure @dev according to @dev->id. Generic and low-level
1822 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 *
1824 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001825 * Kernel thread context (may sleep)
1826 *
1827 * RETURNS:
1828 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09001830int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001832 struct ata_port *ap = dev->link->ap;
1833 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09001834 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001835 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001836 unsigned int xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01001837 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001838 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
1839 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05001840 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001842 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09001843 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
1844 __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
1847
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001848 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001849 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Tejun Heo75683fe2007-07-05 13:31:27 +09001851 /* set horkage */
1852 dev->horkage |= ata_dev_blacklisted(dev);
1853
Tejun Heo67465442007-05-15 03:28:16 +09001854 /* let ACPI work its magic */
1855 rc = ata_acpi_on_devcfg(dev);
1856 if (rc)
1857 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08001858
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001859 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001860 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001861 ata_dev_printk(dev, KERN_DEBUG,
1862 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1863 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001864 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001865 id[49], id[82], id[83], id[84],
1866 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001867
Tejun Heo208a9932006-03-05 17:55:58 +09001868 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001869 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001870 dev->max_sectors = 0;
1871 dev->cdb_len = 0;
1872 dev->n_sectors = 0;
1873 dev->cylinders = 0;
1874 dev->heads = 0;
1875 dev->sectors = 0;
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 /*
1878 * common ATA, ATAPI feature tests
1879 */
1880
Tejun Heoff8854b2006-03-06 04:31:56 +09001881 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001882 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001884 if (ata_msg_probe(ap))
1885 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Albert Leeef143d52007-06-05 13:01:33 +08001887 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
1888 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
1889 sizeof(fwrevbuf));
1890
1891 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
1892 sizeof(modelbuf));
1893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 /* ATA-specific feature tests */
1895 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01001896 if (ata_id_is_cfa(id)) {
1897 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09001898 ata_dev_printk(dev, KERN_WARNING,
1899 "supports DRM functions and may "
1900 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01001901 snprintf(revbuf, 7, "CFA");
1902 }
1903 else
1904 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
1905
Tejun Heo1148c3a2006-03-13 19:48:04 +09001906 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001907
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001908 if (dev->id[59] & 0x100)
1909 dev->multi_count = dev->id[59] & 0xff;
1910
Tejun Heo1148c3a2006-03-13 19:48:04 +09001911 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001912 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001913 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001914
Tejun Heo4c2d7212006-03-05 17:55:58 +09001915 lba_desc = "LBA";
1916 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001917 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001918 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001919 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001920
1921 if (dev->n_sectors >= (1UL << 28) &&
1922 ata_id_has_flush_ext(id))
1923 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001924 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001925
Tejun Heo16c55b02007-08-29 11:58:33 +09001926 if (!(dev->horkage & ATA_HORKAGE_BROKEN_HPA) &&
1927 ata_id_hpa_enabled(dev->id))
1928 dev->n_sectors = ata_hpa_resize(dev);
Alan Cox1e999732007-04-11 00:23:13 +01001929
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001930 /* config NCQ */
1931 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1932
Albert Lee8bf62ece2005-05-12 15:29:42 -04001933 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001934 if (ata_msg_drv(ap) && print_info) {
1935 ata_dev_printk(dev, KERN_INFO,
1936 "%s: %s, %s, max %s\n",
1937 revbuf, modelbuf, fwrevbuf,
1938 ata_mode_string(xfer_mask));
1939 ata_dev_printk(dev, KERN_INFO,
1940 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001941 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001942 dev->multi_count, lba_desc, ncq_desc);
1943 }
Tejun Heoffeae412006-03-01 16:09:35 +09001944 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001945 /* CHS */
1946
1947 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001948 dev->cylinders = id[1];
1949 dev->heads = id[3];
1950 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001951
Tejun Heo1148c3a2006-03-13 19:48:04 +09001952 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001953 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001954 dev->cylinders = id[54];
1955 dev->heads = id[55];
1956 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001957 }
1958
1959 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001960 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09001961 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001962 "%s: %s, %s, max %s\n",
1963 revbuf, modelbuf, fwrevbuf,
1964 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05001965 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001966 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
1967 (unsigned long long)dev->n_sectors,
1968 dev->multi_count, dev->cylinders,
1969 dev->heads, dev->sectors);
1970 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08001971 }
1972
Tejun Heo6e7846e2006-02-12 23:32:58 +09001973 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 }
1975
1976 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001977 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001978 char *cdb_intr_string = "";
1979
Tejun Heo1148c3a2006-03-13 19:48:04 +09001980 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001982 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001983 ata_dev_printk(dev, KERN_WARNING,
1984 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001985 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 goto err_out_nosup;
1987 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001988 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Albert Lee08a556d2006-03-31 13:29:04 +08001990 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001991 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001992 cdb_intr_string = ", CDB intr";
1993 }
Albert Lee312f7da2005-09-27 17:38:03 +08001994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001996 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08001997 ata_dev_printk(dev, KERN_INFO,
1998 "ATAPI: %s, %s, max %s%s\n",
1999 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002000 ata_mode_string(xfer_mask),
2001 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 }
2003
Tejun Heo914ed352006-11-01 18:39:55 +09002004 /* determine max_sectors */
2005 dev->max_sectors = ATA_MAX_SECTORS;
2006 if (dev->flags & ATA_DFLAG_LBA48)
2007 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2008
Alan Cox93590852006-09-12 16:55:12 +01002009 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2010 /* Let the user know. We don't want to disallow opens for
2011 rescue purposes, or in case the vendor is just a blithering
2012 idiot */
2013 if (print_info) {
2014 ata_dev_printk(dev, KERN_WARNING,
2015"Drive reports diagnostics failure. This may indicate a drive\n");
2016 ata_dev_printk(dev, KERN_WARNING,
2017"fault or invalid emulation. Contact drive vendor for information.\n");
2018 }
2019 }
2020
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002021 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002022 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002023 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002024 ata_dev_printk(dev, KERN_INFO,
2025 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002026 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002027 dev->max_sectors = ATA_MAX_SECTORS;
2028 }
2029
Tejun Heo75683fe2007-07-05 13:31:27 +09002030 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002031 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2032 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002033
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002034 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002035 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002036
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002037 if (ata_msg_probe(ap))
2038 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
2039 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002040 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002043 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002044 ata_dev_printk(dev, KERN_DEBUG,
2045 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09002046 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047}
2048
2049/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002050 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002051 * @ap: port
2052 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002053 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002054 * detection.
2055 */
2056
2057int ata_cable_40wire(struct ata_port *ap)
2058{
2059 return ATA_CBL_PATA40;
2060}
2061
2062/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002063 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002064 * @ap: port
2065 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002066 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002067 * detection.
2068 */
2069
2070int ata_cable_80wire(struct ata_port *ap)
2071{
2072 return ATA_CBL_PATA80;
2073}
2074
2075/**
2076 * ata_cable_unknown - return unknown PATA cable.
2077 * @ap: port
2078 *
2079 * Helper method for drivers which have no PATA cable detection.
2080 */
2081
2082int ata_cable_unknown(struct ata_port *ap)
2083{
2084 return ATA_CBL_PATA_UNK;
2085}
2086
2087/**
2088 * ata_cable_sata - return SATA cable type
2089 * @ap: port
2090 *
2091 * Helper method for drivers which have SATA cables
2092 */
2093
2094int ata_cable_sata(struct ata_port *ap)
2095{
2096 return ATA_CBL_SATA;
2097}
2098
2099/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 * ata_bus_probe - Reset and probe ATA bus
2101 * @ap: Bus to probe
2102 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002103 * Master ATA bus probing function. Initiates a hardware-dependent
2104 * bus reset, then attempts to identify any devices found on
2105 * the bus.
2106 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002108 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 *
2110 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002111 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 */
2113
Brian King80289162006-08-07 14:27:31 -05002114int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002116 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002117 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002118 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002119 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Tejun Heo28ca5c52006-03-01 16:09:36 +09002121 ata_port_probe(ap);
2122
Tejun Heof58229f2007-08-06 18:36:23 +09002123 ata_link_for_each_dev(dev, &ap->link)
2124 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002125
2126 retry:
Tejun Heo20444702006-03-13 01:57:01 +09002127 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002128 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002129
Tejun Heof58229f2007-08-06 18:36:23 +09002130 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002131 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2132 dev->class != ATA_DEV_UNKNOWN)
2133 classes[dev->devno] = dev->class;
2134 else
2135 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002136
Tejun Heo52783c52006-05-31 18:28:22 +09002137 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Tejun Heo52783c52006-05-31 18:28:22 +09002140 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002141
Alan Coxb6079ca2006-05-22 16:52:06 +01002142 /* after the reset the device state is PIO 0 and the controller
2143 state is undefined. Record the mode */
2144
Tejun Heof58229f2007-08-06 18:36:23 +09002145 ata_link_for_each_dev(dev, &ap->link)
2146 dev->pio_mode = XFER_PIO_0;
Alan Coxb6079ca2006-05-22 16:52:06 +01002147
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002148 /* read IDENTIFY page and configure devices. We have to do the identify
2149 specific sequence bass-ackwards so that PDIAG- is released by
2150 the slave device */
2151
Tejun Heof58229f2007-08-06 18:36:23 +09002152 ata_link_for_each_dev(dev, &ap->link) {
2153 if (tries[dev->devno])
2154 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002155
Tejun Heoe1211e32006-04-01 01:38:18 +09002156 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002157 continue;
2158
Tejun Heobff04642006-11-10 18:08:10 +09002159 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2160 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002161 if (rc)
2162 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002163 }
2164
Alan Coxbe0d18d2007-03-06 02:37:56 -08002165 /* Now ask for the cable type as PDIAG- should have been released */
2166 if (ap->ops->cable_detect)
2167 ap->cbl = ap->ops->cable_detect(ap);
2168
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002169 /* After the identify sequence we can now set up the devices. We do
2170 this in the normal order so that the user doesn't get confused */
2171
Tejun Heof58229f2007-08-06 18:36:23 +09002172 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002173 if (!ata_dev_enabled(dev))
2174 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002175
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002176 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002177 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002178 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002179 if (rc)
2180 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 }
2182
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002183 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002184 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002185 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002186 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Tejun Heof58229f2007-08-06 18:36:23 +09002188 ata_link_for_each_dev(dev, &ap->link)
2189 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002190 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002191
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002192 /* no device present, disable port */
2193 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002195 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002196
2197 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002198 tries[dev->devno]--;
2199
Tejun Heo14d2bac2006-04-02 17:54:46 +09002200 switch (rc) {
2201 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002202 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002203 tries[dev->devno] = 0;
2204 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002205
2206 case -ENODEV:
2207 /* give it just one more chance */
2208 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002209 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002210 if (tries[dev->devno] == 1) {
2211 /* This is the last chance, better to slow
2212 * down than lose it.
2213 */
Tejun Heo936fd732007-08-06 18:36:23 +09002214 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002215 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2216 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002217 }
2218
Tejun Heo4ae72a12007-02-02 16:22:30 +09002219 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002220 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002221
Tejun Heo14d2bac2006-04-02 17:54:46 +09002222 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223}
2224
2225/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002226 * ata_port_probe - Mark port as enabled
2227 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002229 * Modify @ap data structure such that the system
2230 * thinks that the entire port is enabled.
2231 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002232 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002233 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 */
2235
2236void ata_port_probe(struct ata_port *ap)
2237{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002238 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239}
2240
2241/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002242 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002243 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002244 *
2245 * This function prints link speed and status of a SATA link.
2246 *
2247 * LOCKING:
2248 * None.
2249 */
Tejun Heo936fd732007-08-06 18:36:23 +09002250void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002251{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002252 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002253
Tejun Heo936fd732007-08-06 18:36:23 +09002254 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002255 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002256 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002257
Tejun Heo936fd732007-08-06 18:36:23 +09002258 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002259 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002260 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002261 "SATA link up %s (SStatus %X SControl %X)\n",
2262 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002263 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002264 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002265 "SATA link down (SStatus %X SControl %X)\n",
2266 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002267 }
2268}
2269
2270/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002271 * __sata_phy_reset - Wake/reset a low-level SATA PHY
2272 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002274 * This function issues commands to standard SATA Sxxx
2275 * PHY registers, to wake up the phy (and device), and
2276 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 *
2278 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002279 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 *
2281 */
2282void __sata_phy_reset(struct ata_port *ap)
2283{
Tejun Heo936fd732007-08-06 18:36:23 +09002284 struct ata_link *link = &ap->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo936fd732007-08-06 18:36:23 +09002286 u32 sstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05002289 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002290 sata_scr_write_flush(link, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09002291 /* Couldn't find anything in SATA I/II specs, but
2292 * AHCI-1.1 10.4.2 says at least 1 ms. */
2293 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 }
Tejun Heo81952c52006-05-15 20:57:47 +09002295 /* phy wake/clear reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002296 sata_scr_write_flush(link, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
2298 /* wait for phy to become ready, if necessary */
2299 do {
2300 msleep(200);
Tejun Heo936fd732007-08-06 18:36:23 +09002301 sata_scr_read(link, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 if ((sstatus & 0xf) != 1)
2303 break;
2304 } while (time_before(jiffies, timeout));
2305
Tejun Heo3be680b2005-12-19 22:35:02 +09002306 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09002307 sata_print_link_status(link);
Jeff Garzik656563e2005-11-20 03:36:45 -05002308
Tejun Heo3be680b2005-12-19 22:35:02 +09002309 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09002310 if (!ata_link_offline(link))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09002312 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Tejun Heo198e0fe2006-04-02 18:51:52 +09002315 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 return;
2317
2318 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2319 ata_port_disable(ap);
2320 return;
2321 }
2322
2323 ap->cbl = ATA_CBL_SATA;
2324}
2325
2326/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002327 * sata_phy_reset - Reset SATA bus.
2328 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002330 * This function resets the SATA bus, and then probes
2331 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 *
2333 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002334 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 *
2336 */
2337void sata_phy_reset(struct ata_port *ap)
2338{
2339 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09002340 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 return;
2342 ata_bus_reset(ap);
2343}
2344
2345/**
Alan Coxebdfca62006-03-23 15:38:34 +00002346 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002347 * @adev: device
2348 *
2349 * Obtain the other device on the same cable, or if none is
2350 * present NULL is returned
2351 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002352
Tejun Heo3373efd2006-05-15 20:57:53 +09002353struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002354{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002355 struct ata_link *link = adev->link;
2356 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002357 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002358 return NULL;
2359 return pair;
2360}
2361
2362/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002363 * ata_port_disable - Disable port.
2364 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002366 * Modify @ap data structure such that the system
2367 * thinks that the entire port is disabled, and should
2368 * never attempt to probe or communicate with devices
2369 * on this port.
2370 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002371 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002372 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 */
2374
2375void ata_port_disable(struct ata_port *ap)
2376{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002377 ap->link.device[0].class = ATA_DEV_NONE;
2378 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002379 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380}
2381
Tejun Heo1c3fae42006-04-02 20:53:28 +09002382/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002383 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002384 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002385 *
Tejun Heo936fd732007-08-06 18:36:23 +09002386 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002387 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002388 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002389 *
2390 * LOCKING:
2391 * Inherited from caller.
2392 *
2393 * RETURNS:
2394 * 0 on success, negative errno on failure
2395 */
Tejun Heo936fd732007-08-06 18:36:23 +09002396int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002397{
Tejun Heo81952c52006-05-15 20:57:47 +09002398 u32 sstatus, spd, mask;
2399 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002400
Tejun Heo936fd732007-08-06 18:36:23 +09002401 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002402 return -EOPNOTSUPP;
2403
2404 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002405 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002406 */
Tejun Heo936fd732007-08-06 18:36:23 +09002407 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002408 if (rc == 0)
2409 spd = (sstatus >> 4) & 0xf;
2410 else
Tejun Heo936fd732007-08-06 18:36:23 +09002411 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002412
Tejun Heo936fd732007-08-06 18:36:23 +09002413 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002414 if (mask <= 1)
2415 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002416
2417 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002418 highbit = fls(mask) - 1;
2419 mask &= ~(1 << highbit);
2420
Tejun Heo008a7892007-07-16 14:29:40 +09002421 /* Mask off all speeds higher than or equal to the current
2422 * one. Force 1.5Gbps if current SPD is not available.
2423 */
2424 if (spd > 1)
2425 mask &= (1 << (spd - 1)) - 1;
2426 else
2427 mask &= 1;
2428
2429 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002430 if (!mask)
2431 return -EINVAL;
2432
Tejun Heo936fd732007-08-06 18:36:23 +09002433 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002434
Tejun Heo936fd732007-08-06 18:36:23 +09002435 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002436 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002437
2438 return 0;
2439}
2440
Tejun Heo936fd732007-08-06 18:36:23 +09002441static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002442{
2443 u32 spd, limit;
2444
Tejun Heo936fd732007-08-06 18:36:23 +09002445 if (link->sata_spd_limit == UINT_MAX)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002446 limit = 0;
2447 else
Tejun Heo936fd732007-08-06 18:36:23 +09002448 limit = fls(link->sata_spd_limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002449
2450 spd = (*scontrol >> 4) & 0xf;
2451 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
2452
2453 return spd != limit;
2454}
2455
2456/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002457 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002458 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002459 *
2460 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002461 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002462 * whether hardreset is necessary to apply SATA spd
2463 * configuration.
2464 *
2465 * LOCKING:
2466 * Inherited from caller.
2467 *
2468 * RETURNS:
2469 * 1 if SATA spd configuration is needed, 0 otherwise.
2470 */
Tejun Heo936fd732007-08-06 18:36:23 +09002471int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002472{
2473 u32 scontrol;
2474
Tejun Heo936fd732007-08-06 18:36:23 +09002475 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002476 return 0;
2477
Tejun Heo936fd732007-08-06 18:36:23 +09002478 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002479}
2480
2481/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002482 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002483 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002484 *
Tejun Heo936fd732007-08-06 18:36:23 +09002485 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002486 *
2487 * LOCKING:
2488 * Inherited from caller.
2489 *
2490 * RETURNS:
2491 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002492 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002493 */
Tejun Heo936fd732007-08-06 18:36:23 +09002494int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002495{
2496 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002497 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002498
Tejun Heo936fd732007-08-06 18:36:23 +09002499 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002500 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002501
Tejun Heo936fd732007-08-06 18:36:23 +09002502 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002503 return 0;
2504
Tejun Heo936fd732007-08-06 18:36:23 +09002505 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002506 return rc;
2507
Tejun Heo1c3fae42006-04-02 20:53:28 +09002508 return 1;
2509}
2510
Alan Cox452503f2005-10-21 19:01:32 -04002511/*
2512 * This mode timing computation functionality is ported over from
2513 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2514 */
2515/*
Alan Coxb352e572006-08-10 18:52:12 +01002516 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002517 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002518 * for UDMA6, which is currently supported only by Maxtor drives.
2519 *
2520 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002521 */
2522
2523static const struct ata_timing ata_timing[] = {
2524
2525 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
2526 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2527 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2528 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2529
Alan Coxb352e572006-08-10 18:52:12 +01002530 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
2531 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002532 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2533 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2534 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2535
2536/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002537
Alan Cox452503f2005-10-21 19:01:32 -04002538 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
2539 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2540 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002541
Alan Cox452503f2005-10-21 19:01:32 -04002542 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
2543 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2544 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2545
Alan Coxb352e572006-08-10 18:52:12 +01002546 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
2547 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002548 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2549 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2550
2551 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2552 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2553 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2554
2555/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2556
2557 { 0xFF }
2558};
2559
2560#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
2561#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
2562
2563static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2564{
2565 q->setup = EZ(t->setup * 1000, T);
2566 q->act8b = EZ(t->act8b * 1000, T);
2567 q->rec8b = EZ(t->rec8b * 1000, T);
2568 q->cyc8b = EZ(t->cyc8b * 1000, T);
2569 q->active = EZ(t->active * 1000, T);
2570 q->recover = EZ(t->recover * 1000, T);
2571 q->cycle = EZ(t->cycle * 1000, T);
2572 q->udma = EZ(t->udma * 1000, UT);
2573}
2574
2575void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2576 struct ata_timing *m, unsigned int what)
2577{
2578 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2579 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2580 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2581 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2582 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2583 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2584 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2585 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2586}
2587
2588static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
2589{
2590 const struct ata_timing *t;
2591
2592 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04002593 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04002594 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002595 return t;
Alan Cox452503f2005-10-21 19:01:32 -04002596}
2597
2598int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2599 struct ata_timing *t, int T, int UT)
2600{
2601 const struct ata_timing *s;
2602 struct ata_timing p;
2603
2604 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002605 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002606 */
Alan Cox452503f2005-10-21 19:01:32 -04002607
2608 if (!(s = ata_timing_find_mode(speed)))
2609 return -EINVAL;
2610
Albert Lee75b1f2f2005-11-16 17:06:18 +08002611 memcpy(t, s, sizeof(*s));
2612
Alan Cox452503f2005-10-21 19:01:32 -04002613 /*
2614 * If the drive is an EIDE drive, it can tell us it needs extended
2615 * PIO/MW_DMA cycle timing.
2616 */
2617
2618 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2619 memset(&p, 0, sizeof(p));
2620 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2621 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2622 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2623 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2624 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2625 }
2626 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2627 }
2628
2629 /*
2630 * Convert the timing to bus clock counts.
2631 */
2632
Albert Lee75b1f2f2005-11-16 17:06:18 +08002633 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002634
2635 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002636 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2637 * S.M.A.R.T * and some other commands. We have to ensure that the
2638 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002639 */
2640
Alanfd3367af2006-12-07 12:41:18 +00002641 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002642 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2643 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2644 }
2645
2646 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002647 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002648 */
2649
2650 if (t->act8b + t->rec8b < t->cyc8b) {
2651 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2652 t->rec8b = t->cyc8b - t->act8b;
2653 }
2654
2655 if (t->active + t->recover < t->cycle) {
2656 t->active += (t->cycle - (t->active + t->recover)) / 2;
2657 t->recover = t->cycle - t->active;
2658 }
Jeff Garzika617c092007-05-21 20:14:23 -04002659
Alan Cox4f701d12007-04-23 11:55:36 +01002660 /* In a few cases quantisation may produce enough errors to
2661 leave t->cycle too low for the sum of active and recovery
2662 if so we must correct this */
2663 if (t->active + t->recover > t->cycle)
2664 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002665
2666 return 0;
2667}
2668
Tejun Heocf176e12006-04-02 17:54:46 +09002669/**
2670 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002671 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09002672 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09002673 *
2674 * Adjust xfer masks of @dev downward. Note that this function
2675 * does not apply the change. Invoking ata_set_mode() afterwards
2676 * will apply the limit.
2677 *
2678 * LOCKING:
2679 * Inherited from caller.
2680 *
2681 * RETURNS:
2682 * 0 on success, negative errno on failure
2683 */
Tejun Heo458337d2007-02-02 16:22:30 +09002684int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09002685{
Tejun Heo458337d2007-02-02 16:22:30 +09002686 char buf[32];
2687 unsigned int orig_mask, xfer_mask;
2688 unsigned int pio_mask, mwdma_mask, udma_mask;
2689 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09002690
Tejun Heo458337d2007-02-02 16:22:30 +09002691 quiet = !!(sel & ATA_DNXFER_QUIET);
2692 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09002693
Tejun Heo458337d2007-02-02 16:22:30 +09002694 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
2695 dev->mwdma_mask,
2696 dev->udma_mask);
2697 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09002698
Tejun Heo458337d2007-02-02 16:22:30 +09002699 switch (sel) {
2700 case ATA_DNXFER_PIO:
2701 highbit = fls(pio_mask) - 1;
2702 pio_mask &= ~(1 << highbit);
2703 break;
2704
2705 case ATA_DNXFER_DMA:
2706 if (udma_mask) {
2707 highbit = fls(udma_mask) - 1;
2708 udma_mask &= ~(1 << highbit);
2709 if (!udma_mask)
2710 return -ENOENT;
2711 } else if (mwdma_mask) {
2712 highbit = fls(mwdma_mask) - 1;
2713 mwdma_mask &= ~(1 << highbit);
2714 if (!mwdma_mask)
2715 return -ENOENT;
2716 }
2717 break;
2718
2719 case ATA_DNXFER_40C:
2720 udma_mask &= ATA_UDMA_MASK_40C;
2721 break;
2722
2723 case ATA_DNXFER_FORCE_PIO0:
2724 pio_mask &= 1;
2725 case ATA_DNXFER_FORCE_PIO:
2726 mwdma_mask = 0;
2727 udma_mask = 0;
2728 break;
2729
Tejun Heo458337d2007-02-02 16:22:30 +09002730 default:
2731 BUG();
2732 }
2733
2734 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
2735
2736 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
2737 return -ENOENT;
2738
2739 if (!quiet) {
2740 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
2741 snprintf(buf, sizeof(buf), "%s:%s",
2742 ata_mode_string(xfer_mask),
2743 ata_mode_string(xfer_mask & ATA_MASK_PIO));
2744 else
2745 snprintf(buf, sizeof(buf), "%s",
2746 ata_mode_string(xfer_mask));
2747
2748 ata_dev_printk(dev, KERN_WARNING,
2749 "limiting speed to %s\n", buf);
2750 }
Tejun Heocf176e12006-04-02 17:54:46 +09002751
2752 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2753 &dev->udma_mask);
2754
Tejun Heocf176e12006-04-02 17:54:46 +09002755 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09002756}
2757
Tejun Heo3373efd2006-05-15 20:57:53 +09002758static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002760 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo83206a22006-03-24 15:25:31 +09002761 unsigned int err_mask;
2762 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Tejun Heoe8384602006-04-02 18:51:53 +09002764 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 if (dev->xfer_shift == ATA_SHIFT_PIO)
2766 dev->flags |= ATA_DFLAG_PIO;
2767
Tejun Heo3373efd2006-05-15 20:57:53 +09002768 err_mask = ata_dev_set_xfermode(dev);
Alan11750a42007-02-05 16:28:30 +00002769 /* Old CFA may refuse this command, which is just fine */
2770 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
2771 err_mask &= ~AC_ERR_DEV;
Alan Cox0bc2a792007-07-31 14:01:48 +01002772 /* Some very old devices and some bad newer ones fail any kind of
2773 SET_XFERMODE request but support PIO0-2 timings and no IORDY */
2774 if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) &&
2775 dev->pio_mode <= XFER_PIO_2)
2776 err_mask &= ~AC_ERR_DEV;
Tejun Heo83206a22006-03-24 15:25:31 +09002777 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002778 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2779 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002780 return -EIO;
2781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Tejun Heobaa1e782006-11-01 18:39:27 +09002783 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo3373efd2006-05-15 20:57:53 +09002784 rc = ata_dev_revalidate(dev, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09002785 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002786 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002787 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002788
Tejun Heo23e71c32006-03-06 04:31:57 +09002789 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2790 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Tejun Heof15a1da2006-05-15 20:57:56 +09002792 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2793 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002794 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}
2796
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797/**
Alan04351822007-03-06 02:37:52 -08002798 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09002799 * @link: link on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002800 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 *
Alan04351822007-03-06 02:37:52 -08002802 * Standard implementation of the function used to tune and set
2803 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2804 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002805 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002806 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002808 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002809 *
2810 * RETURNS:
2811 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 */
Alan04351822007-03-06 02:37:52 -08002813
Tejun Heo02607312007-08-06 18:36:23 +09002814int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815{
Tejun Heo02607312007-08-06 18:36:23 +09002816 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09002817 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09002818 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09002819
Tejun Heoa6d5a512006-03-06 04:31:57 +09002820 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09002821 ata_link_for_each_dev(dev, link) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002822 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002823
Tejun Heoe1211e32006-04-01 01:38:18 +09002824 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002825 continue;
2826
Tejun Heo3373efd2006-05-15 20:57:53 +09002827 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002828
Tejun Heoacf356b2006-03-24 14:07:50 +09002829 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2830 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2831 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2832 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002833
Tejun Heo4f659772006-04-01 01:38:18 +09002834 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002835 if (dev->dma_mode)
2836 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002837 }
Tejun Heo4f659772006-04-01 01:38:18 +09002838 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002839 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002840
2841 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002842 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002843 if (!ata_dev_enabled(dev))
2844 continue;
2845
2846 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002847 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002848 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002849 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002850 }
2851
2852 dev->xfer_mode = dev->pio_mode;
2853 dev->xfer_shift = ATA_SHIFT_PIO;
2854 if (ap->ops->set_piomode)
2855 ap->ops->set_piomode(ap, dev);
2856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Tejun Heoa6d5a512006-03-06 04:31:57 +09002858 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002859 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002860 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2861 continue;
2862
2863 dev->xfer_mode = dev->dma_mode;
2864 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2865 if (ap->ops->set_dmamode)
2866 ap->ops->set_dmamode(ap, dev);
2867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
2869 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09002870 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00002871 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02002872 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002873 continue;
2874
Tejun Heo3373efd2006-05-15 20:57:53 +09002875 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002876 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002877 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Tejun Heoe8e06192006-04-01 01:38:18 +09002880 /* Record simplex status. If we selected DMA then the other
2881 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002882 */
Jeff Garzikcca39742006-08-24 03:19:22 -04002883 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00002884 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002885
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002886 out:
2887 if (rc)
2888 *r_failed_dev = dev;
2889 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890}
2891
2892/**
Alan04351822007-03-06 02:37:52 -08002893 * ata_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09002894 * @link: link on which timings will be programmed
Alan04351822007-03-06 02:37:52 -08002895 * @r_failed_dev: out paramter for failed device
2896 *
2897 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2898 * ata_set_mode() fails, pointer to the failing device is
2899 * returned in @r_failed_dev.
2900 *
2901 * LOCKING:
2902 * PCI/etc. bus probe sem.
2903 *
2904 * RETURNS:
2905 * 0 on success, negative errno otherwise
2906 */
Tejun Heo02607312007-08-06 18:36:23 +09002907int ata_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Alan04351822007-03-06 02:37:52 -08002908{
Tejun Heo02607312007-08-06 18:36:23 +09002909 struct ata_port *ap = link->ap;
2910
Alan04351822007-03-06 02:37:52 -08002911 /* has private set_mode? */
2912 if (ap->ops->set_mode)
Tejun Heo02607312007-08-06 18:36:23 +09002913 return ap->ops->set_mode(link, r_failed_dev);
2914 return ata_do_set_mode(link, r_failed_dev);
Alan04351822007-03-06 02:37:52 -08002915}
2916
2917/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002918 * ata_tf_to_host - issue ATA taskfile to host controller
2919 * @ap: port to which command is being issued
2920 * @tf: ATA taskfile register set
2921 *
2922 * Issues ATA taskfile register set to ATA host controller,
2923 * with proper synchronization with interrupt handler and
2924 * other threads.
2925 *
2926 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002927 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002928 */
2929
2930static inline void ata_tf_to_host(struct ata_port *ap,
2931 const struct ata_taskfile *tf)
2932{
2933 ap->ops->tf_load(ap, tf);
2934 ap->ops->exec_command(ap, tf);
2935}
2936
2937/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 * ata_busy_sleep - sleep until BSY clears, or timeout
2939 * @ap: port containing status register to be polled
2940 * @tmout_pat: impatience timeout
2941 * @tmout: overall timeout
2942 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002943 * Sleep until ATA Status register bit BSY clears,
2944 * or a timeout occurs.
2945 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09002946 * LOCKING:
2947 * Kernel thread context (may sleep).
2948 *
2949 * RETURNS:
2950 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09002952int ata_busy_sleep(struct ata_port *ap,
2953 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954{
2955 unsigned long timer_start, timeout;
2956 u8 status;
2957
2958 status = ata_busy_wait(ap, ATA_BUSY, 300);
2959 timer_start = jiffies;
2960 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002961 while (status != 0xff && (status & ATA_BUSY) &&
2962 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 msleep(50);
2964 status = ata_busy_wait(ap, ATA_BUSY, 3);
2965 }
2966
Tejun Heod1adc1b2006-10-09 18:32:15 +09002967 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09002968 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002969 "port is slow to respond, please be patient "
2970 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
2972 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002973 while (status != 0xff && (status & ATA_BUSY) &&
2974 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 msleep(50);
2976 status = ata_chk_status(ap);
2977 }
2978
Tejun Heod1adc1b2006-10-09 18:32:15 +09002979 if (status == 0xff)
2980 return -ENODEV;
2981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002983 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002984 "(%lu secs, Status 0x%x)\n",
2985 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09002986 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 }
2988
2989 return 0;
2990}
2991
Tejun Heod4b2bab2007-02-02 16:50:52 +09002992/**
2993 * ata_wait_ready - sleep until BSY clears, or timeout
2994 * @ap: port containing status register to be polled
2995 * @deadline: deadline jiffies for the operation
2996 *
2997 * Sleep until ATA Status register bit BSY clears, or timeout
2998 * occurs.
2999 *
3000 * LOCKING:
3001 * Kernel thread context (may sleep).
3002 *
3003 * RETURNS:
3004 * 0 on success, -errno otherwise.
3005 */
3006int ata_wait_ready(struct ata_port *ap, unsigned long deadline)
3007{
3008 unsigned long start = jiffies;
3009 int warned = 0;
3010
3011 while (1) {
3012 u8 status = ata_chk_status(ap);
3013 unsigned long now = jiffies;
3014
3015 if (!(status & ATA_BUSY))
3016 return 0;
Tejun Heo936fd732007-08-06 18:36:23 +09003017 if (!ata_link_online(&ap->link) && status == 0xff)
Tejun Heod4b2bab2007-02-02 16:50:52 +09003018 return -ENODEV;
3019 if (time_after(now, deadline))
3020 return -EBUSY;
3021
3022 if (!warned && time_after(now, start + 5 * HZ) &&
3023 (deadline - now > 3 * HZ)) {
3024 ata_port_printk(ap, KERN_WARNING,
3025 "port is slow to respond, please be patient "
3026 "(Status 0x%x)\n", status);
3027 warned = 1;
3028 }
3029
3030 msleep(50);
3031 }
3032}
3033
3034static int ata_bus_post_reset(struct ata_port *ap, unsigned int devmask,
3035 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036{
3037 struct ata_ioports *ioaddr = &ap->ioaddr;
3038 unsigned int dev0 = devmask & (1 << 0);
3039 unsigned int dev1 = devmask & (1 << 1);
Tejun Heo9b893912007-02-02 16:50:52 +09003040 int rc, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
3042 /* if device 0 was found in ata_devchk, wait for its
3043 * BSY bit to clear
3044 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003045 if (dev0) {
3046 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003047 if (rc) {
3048 if (rc != -ENODEV)
3049 return rc;
3050 ret = rc;
3051 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Tejun Heoe141d992007-06-10 14:26:20 +09003054 /* if device 1 was found in ata_devchk, wait for register
3055 * access briefly, then wait for BSY to clear.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 */
Tejun Heoe141d992007-06-10 14:26:20 +09003057 if (dev1) {
3058 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
3060 ap->ops->dev_select(ap, 1);
Tejun Heoe141d992007-06-10 14:26:20 +09003061
3062 /* Wait for register access. Some ATAPI devices fail
3063 * to set nsect/lbal after reset, so don't waste too
3064 * much time on it. We're gonna wait for !BSY anyway.
3065 */
3066 for (i = 0; i < 2; i++) {
3067 u8 nsect, lbal;
3068
3069 nsect = ioread8(ioaddr->nsect_addr);
3070 lbal = ioread8(ioaddr->lbal_addr);
3071 if ((nsect == 1) && (lbal == 1))
3072 break;
3073 msleep(50); /* give drive a breather */
3074 }
3075
Tejun Heod4b2bab2007-02-02 16:50:52 +09003076 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003077 if (rc) {
3078 if (rc != -ENODEV)
3079 return rc;
3080 ret = rc;
3081 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
3084 /* is all this really necessary? */
3085 ap->ops->dev_select(ap, 0);
3086 if (dev1)
3087 ap->ops->dev_select(ap, 1);
3088 if (dev0)
3089 ap->ops->dev_select(ap, 0);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003090
Tejun Heo9b893912007-02-02 16:50:52 +09003091 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092}
3093
Tejun Heod4b2bab2007-02-02 16:50:52 +09003094static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
3095 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
3097 struct ata_ioports *ioaddr = &ap->ioaddr;
3098
Tejun Heo44877b42007-02-21 01:06:51 +09003099 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003102 iowrite8(ap->ctl, ioaddr->ctl_addr);
3103 udelay(20); /* FIXME: flush */
3104 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
3105 udelay(20); /* FIXME: flush */
3106 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
3108 /* spec mandates ">= 2ms" before checking status.
3109 * We wait 150ms, because that was the magic delay used for
3110 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
3111 * between when the ATA command register is written, and then
3112 * status is checked. Because waiting for "a while" before
3113 * checking status is fine, post SRST, we perform this magic
3114 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00003115 *
3116 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 */
3118 msleep(150);
3119
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003120 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09003121 * the bus shows 0xFF because the odd clown forgets the D7
3122 * pulldown resistor.
3123 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003124 if (ata_check_status(ap) == 0xFF)
Tejun Heo9b893912007-02-02 16:50:52 +09003125 return -ENODEV;
Alan Cox09c7ad72006-03-22 15:52:40 +00003126
Tejun Heod4b2bab2007-02-02 16:50:52 +09003127 return ata_bus_post_reset(ap, devmask, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128}
3129
3130/**
3131 * ata_bus_reset - reset host port and associated ATA channel
3132 * @ap: port to reset
3133 *
3134 * This is typically the first time we actually start issuing
3135 * commands to the ATA channel. We wait for BSY to clear, then
3136 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
3137 * result. Determine what devices, if any, are on the channel
3138 * by looking at the device 0/1 error register. Look at the signature
3139 * stored in each device's taskfile registers, to determine if
3140 * the device is ATA or ATAPI.
3141 *
3142 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003143 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04003144 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 *
3146 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09003147 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 */
3149
3150void ata_bus_reset(struct ata_port *ap)
3151{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003152 struct ata_device *device = ap->link.device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 struct ata_ioports *ioaddr = &ap->ioaddr;
3154 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3155 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003156 unsigned int dev0, dev1 = 0, devmask = 0;
Tejun Heo9b893912007-02-02 16:50:52 +09003157 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
Tejun Heo44877b42007-02-21 01:06:51 +09003159 DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
3161 /* determine if device 0/1 are present */
3162 if (ap->flags & ATA_FLAG_SATA_RESET)
3163 dev0 = 1;
3164 else {
3165 dev0 = ata_devchk(ap, 0);
3166 if (slave_possible)
3167 dev1 = ata_devchk(ap, 1);
3168 }
3169
3170 if (dev0)
3171 devmask |= (1 << 0);
3172 if (dev1)
3173 devmask |= (1 << 1);
3174
3175 /* select device 0 again */
3176 ap->ops->dev_select(ap, 0);
3177
3178 /* issue bus reset */
Tejun Heo9b893912007-02-02 16:50:52 +09003179 if (ap->flags & ATA_FLAG_SRST) {
3180 rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ);
3181 if (rc && rc != -ENODEV)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003182 goto err_out;
Tejun Heo9b893912007-02-02 16:50:52 +09003183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
3185 /*
3186 * determine by signature whether we have ATA or ATAPI devices
3187 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003188 device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 if ((slave_possible) && (err != 0x81))
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003190 device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 /* is double-select really necessary? */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003193 if (device[1].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 ap->ops->dev_select(ap, 1);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003195 if (device[0].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 ap->ops->dev_select(ap, 0);
3197
3198 /* if no devices were detected, disable this port */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003199 if ((device[0].class == ATA_DEV_NONE) &&
3200 (device[1].class == ATA_DEV_NONE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 goto err_out;
3202
3203 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
3204 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003205 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 }
3207
3208 DPRINTK("EXIT\n");
3209 return;
3210
3211err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003212 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 ap->ops->port_disable(ap);
3214
3215 DPRINTK("EXIT\n");
3216}
3217
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003218/**
Tejun Heo936fd732007-08-06 18:36:23 +09003219 * sata_link_debounce - debounce SATA phy status
3220 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003221 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003222 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003223 *
Tejun Heo936fd732007-08-06 18:36:23 +09003224* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003225 * holding the same value where DET is not 1 for @duration polled
3226 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003227 * beginning of the stable state. Because DET gets stuck at 1 on
3228 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003229 * until timeout then returns 0 if DET is stable at 1.
3230 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003231 * @timeout is further limited by @deadline. The sooner of the
3232 * two is used.
3233 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003234 * LOCKING:
3235 * Kernel thread context (may sleep)
3236 *
3237 * RETURNS:
3238 * 0 on success, -errno on failure.
3239 */
Tejun Heo936fd732007-08-06 18:36:23 +09003240int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3241 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003242{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003243 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003244 unsigned long duration = msecs_to_jiffies(params[1]);
3245 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003246 u32 last, cur;
3247 int rc;
3248
Tejun Heod4b2bab2007-02-02 16:50:52 +09003249 t = jiffies + msecs_to_jiffies(params[2]);
3250 if (time_before(t, deadline))
3251 deadline = t;
3252
Tejun Heo936fd732007-08-06 18:36:23 +09003253 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003254 return rc;
3255 cur &= 0xf;
3256
3257 last = cur;
3258 last_jiffies = jiffies;
3259
3260 while (1) {
3261 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003262 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003263 return rc;
3264 cur &= 0xf;
3265
3266 /* DET stable? */
3267 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003268 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003269 continue;
3270 if (time_after(jiffies, last_jiffies + duration))
3271 return 0;
3272 continue;
3273 }
3274
3275 /* unstable, start over */
3276 last = cur;
3277 last_jiffies = jiffies;
3278
Tejun Heof1545152007-07-16 14:29:40 +09003279 /* Check deadline. If debouncing failed, return
3280 * -EPIPE to tell upper layer to lower link speed.
3281 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003282 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003283 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003284 }
3285}
3286
3287/**
Tejun Heo936fd732007-08-06 18:36:23 +09003288 * sata_link_resume - resume SATA link
3289 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003290 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003291 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003292 *
Tejun Heo936fd732007-08-06 18:36:23 +09003293 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003294 *
3295 * LOCKING:
3296 * Kernel thread context (may sleep)
3297 *
3298 * RETURNS:
3299 * 0 on success, -errno on failure.
3300 */
Tejun Heo936fd732007-08-06 18:36:23 +09003301int sata_link_resume(struct ata_link *link, const unsigned long *params,
3302 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003303{
3304 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003305 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003306
Tejun Heo936fd732007-08-06 18:36:23 +09003307 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003308 return rc;
3309
Tejun Heo852ee162006-04-01 01:38:18 +09003310 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003311
Tejun Heo936fd732007-08-06 18:36:23 +09003312 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003313 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003314
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003315 /* Some PHYs react badly if SStatus is pounded immediately
3316 * after resuming. Delay 200ms before debouncing.
3317 */
3318 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003319
Tejun Heo936fd732007-08-06 18:36:23 +09003320 return sata_link_debounce(link, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003321}
3322
Tejun Heof5914a42006-05-31 18:27:48 +09003323/**
3324 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003325 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003326 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003327 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003328 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003329 * prereset makes libata abort whole reset sequence and give up
3330 * that port, so prereset should be best-effort. It does its
3331 * best to prepare for reset sequence but if things go wrong, it
3332 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003333 *
3334 * LOCKING:
3335 * Kernel thread context (may sleep)
3336 *
3337 * RETURNS:
3338 * 0 on success, -errno otherwise.
3339 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003340int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003341{
Tejun Heocc0680a2007-08-06 18:36:23 +09003342 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003343 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003344 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003345 int rc;
3346
Tejun Heo31daabd2007-02-02 16:50:52 +09003347 /* handle link resume */
Tejun Heo28324302006-07-03 16:07:26 +09003348 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
Tejun Heo0c887582007-08-06 18:36:23 +09003349 (link->flags & ATA_LFLAG_HRST_TO_RESUME))
Tejun Heo28324302006-07-03 16:07:26 +09003350 ehc->i.action |= ATA_EH_HARDRESET;
3351
Tejun Heof5914a42006-05-31 18:27:48 +09003352 /* if we're about to do hardreset, nothing more to do */
3353 if (ehc->i.action & ATA_EH_HARDRESET)
3354 return 0;
3355
Tejun Heo936fd732007-08-06 18:36:23 +09003356 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003357 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003358 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003359 /* whine about phy resume failure but proceed */
3360 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003361 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003362 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003363 }
3364
3365 /* Wait for !BSY if the controller can wait for the first D2H
3366 * Reg FIS and we don't know that no device is attached.
3367 */
Tejun Heo0c887582007-08-06 18:36:23 +09003368 if (!(link->flags & ATA_LFLAG_SKIP_D2H_BSY) && !ata_link_offline(link)) {
Tejun Heob8cffc62007-02-02 16:50:52 +09003369 rc = ata_wait_ready(ap, deadline);
Tejun Heo6dffaf62007-05-23 11:58:52 +02003370 if (rc && rc != -ENODEV) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003371 ata_link_printk(link, KERN_WARNING, "device not ready "
Tejun Heob8cffc62007-02-02 16:50:52 +09003372 "(errno=%d), forcing hardreset\n", rc);
3373 ehc->i.action |= ATA_EH_HARDRESET;
3374 }
3375 }
Tejun Heof5914a42006-05-31 18:27:48 +09003376
3377 return 0;
3378}
3379
Tejun Heoc2bd5802006-01-24 17:05:22 +09003380/**
3381 * ata_std_softreset - reset host port via ATA SRST
Tejun Heocc0680a2007-08-06 18:36:23 +09003382 * @link: ATA link to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003383 * @classes: resulting classes of attached devices
Tejun Heod4b2bab2007-02-02 16:50:52 +09003384 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003385 *
Tejun Heo52783c52006-05-31 18:28:22 +09003386 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003387 *
3388 * LOCKING:
3389 * Kernel thread context (may sleep)
3390 *
3391 * RETURNS:
3392 * 0 on success, -errno otherwise.
3393 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003394int ata_std_softreset(struct ata_link *link, unsigned int *classes,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003395 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003396{
Tejun Heocc0680a2007-08-06 18:36:23 +09003397 struct ata_port *ap = link->ap;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003398 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
Tejun Heod4b2bab2007-02-02 16:50:52 +09003399 unsigned int devmask = 0;
3400 int rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003401 u8 err;
3402
3403 DPRINTK("ENTER\n");
3404
Tejun Heo936fd732007-08-06 18:36:23 +09003405 if (ata_link_offline(link)) {
Tejun Heo3a397462006-02-10 23:58:48 +09003406 classes[0] = ATA_DEV_NONE;
3407 goto out;
3408 }
3409
Tejun Heoc2bd5802006-01-24 17:05:22 +09003410 /* determine if device 0/1 are present */
3411 if (ata_devchk(ap, 0))
3412 devmask |= (1 << 0);
3413 if (slave_possible && ata_devchk(ap, 1))
3414 devmask |= (1 << 1);
3415
Tejun Heoc2bd5802006-01-24 17:05:22 +09003416 /* select device 0 again */
3417 ap->ops->dev_select(ap, 0);
3418
3419 /* issue bus reset */
3420 DPRINTK("about to softreset, devmask=%x\n", devmask);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003421 rc = ata_bus_softreset(ap, devmask, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003422 /* if link is occupied, -ENODEV too is an error */
Tejun Heo936fd732007-08-06 18:36:23 +09003423 if (rc && (rc != -ENODEV || sata_scr_valid(link))) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003424 ata_link_printk(link, KERN_ERR, "SRST failed (errno=%d)\n", rc);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003425 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003426 }
3427
3428 /* determine by signature whether we have ATA or ATAPI devices */
3429 classes[0] = ata_dev_try_classify(ap, 0, &err);
3430 if (slave_possible && err != 0x81)
3431 classes[1] = ata_dev_try_classify(ap, 1, &err);
3432
Tejun Heo3a397462006-02-10 23:58:48 +09003433 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09003434 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
3435 return 0;
3436}
3437
3438/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003439 * sata_link_hardreset - reset link via SATA phy reset
3440 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003441 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003442 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003443 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003444 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003445 *
3446 * LOCKING:
3447 * Kernel thread context (may sleep)
3448 *
3449 * RETURNS:
3450 * 0 on success, -errno otherwise.
3451 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003452int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003453 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003454{
Tejun Heo852ee162006-04-01 01:38:18 +09003455 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003456 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003457
Tejun Heoc2bd5802006-01-24 17:05:22 +09003458 DPRINTK("ENTER\n");
3459
Tejun Heo936fd732007-08-06 18:36:23 +09003460 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003461 /* SATA spec says nothing about how to reconfigure
3462 * spd. To be on the safe side, turn off phy during
3463 * reconfiguration. This works for at least ICH7 AHCI
3464 * and Sil3124.
3465 */
Tejun Heo936fd732007-08-06 18:36:23 +09003466 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003467 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003468
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003469 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003470
Tejun Heo936fd732007-08-06 18:36:23 +09003471 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003472 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003473
Tejun Heo936fd732007-08-06 18:36:23 +09003474 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003475 }
3476
3477 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003478 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003479 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003480
Tejun Heo852ee162006-04-01 01:38:18 +09003481 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003482
Tejun Heo936fd732007-08-06 18:36:23 +09003483 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003484 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003485
Tejun Heo1c3fae42006-04-02 20:53:28 +09003486 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003487 * 10.4.2 says at least 1 ms.
3488 */
3489 msleep(1);
3490
Tejun Heo936fd732007-08-06 18:36:23 +09003491 /* bring link back */
3492 rc = sata_link_resume(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003493 out:
3494 DPRINTK("EXIT, rc=%d\n", rc);
3495 return rc;
3496}
3497
3498/**
3499 * sata_std_hardreset - reset host port via SATA phy reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003500 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003501 * @class: resulting class of attached device
Tejun Heod4b2bab2007-02-02 16:50:52 +09003502 * @deadline: deadline jiffies for the operation
Tejun Heob6103f62006-11-01 17:59:53 +09003503 *
3504 * SATA phy-reset host port using DET bits of SControl register,
3505 * wait for !BSY and classify the attached device.
3506 *
3507 * LOCKING:
3508 * Kernel thread context (may sleep)
3509 *
3510 * RETURNS:
3511 * 0 on success, -errno otherwise.
3512 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003513int sata_std_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003514 unsigned long deadline)
Tejun Heob6103f62006-11-01 17:59:53 +09003515{
Tejun Heocc0680a2007-08-06 18:36:23 +09003516 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003517 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heob6103f62006-11-01 17:59:53 +09003518 int rc;
3519
3520 DPRINTK("ENTER\n");
3521
3522 /* do hardreset */
Tejun Heocc0680a2007-08-06 18:36:23 +09003523 rc = sata_link_hardreset(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003524 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003525 ata_link_printk(link, KERN_ERR,
Tejun Heob6103f62006-11-01 17:59:53 +09003526 "COMRESET failed (errno=%d)\n", rc);
3527 return rc;
3528 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003529
Tejun Heoc2bd5802006-01-24 17:05:22 +09003530 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09003531 if (ata_link_offline(link)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09003532 *class = ATA_DEV_NONE;
3533 DPRINTK("EXIT, link offline\n");
3534 return 0;
3535 }
3536
Tejun Heo34fee222007-02-02 15:29:27 +09003537 /* wait a while before checking status, see SRST for more info */
3538 msleep(150);
3539
Tejun Heod4b2bab2007-02-02 16:50:52 +09003540 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003541 /* link occupied, -ENODEV too is an error */
3542 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003543 ata_link_printk(link, KERN_ERR,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003544 "COMRESET failed (errno=%d)\n", rc);
3545 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003546 }
3547
Tejun Heo3a397462006-02-10 23:58:48 +09003548 ap->ops->dev_select(ap, 0); /* probably unnecessary */
3549
Tejun Heoc2bd5802006-01-24 17:05:22 +09003550 *class = ata_dev_try_classify(ap, 0, NULL);
3551
3552 DPRINTK("EXIT, class=%u\n", *class);
3553 return 0;
3554}
3555
3556/**
3557 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003558 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003559 * @classes: classes of attached devices
3560 *
3561 * This function is invoked after a successful reset. Note that
3562 * the device might have been reset more than once using
3563 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003564 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003565 * LOCKING:
3566 * Kernel thread context (may sleep)
3567 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003568void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003569{
Tejun Heocc0680a2007-08-06 18:36:23 +09003570 struct ata_port *ap = link->ap;
Tejun Heodc2b3512006-05-15 20:58:00 +09003571 u32 serror;
3572
Tejun Heoc2bd5802006-01-24 17:05:22 +09003573 DPRINTK("ENTER\n");
3574
Tejun Heoc2bd5802006-01-24 17:05:22 +09003575 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003576 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003577
Tejun Heodc2b3512006-05-15 20:58:00 +09003578 /* clear SError */
Tejun Heo936fd732007-08-06 18:36:23 +09003579 if (sata_scr_read(link, SCR_ERROR, &serror) == 0)
3580 sata_scr_write(link, SCR_ERROR, serror);
Tejun Heodc2b3512006-05-15 20:58:00 +09003581
Tejun Heoc2bd5802006-01-24 17:05:22 +09003582 /* is double-select really necessary? */
3583 if (classes[0] != ATA_DEV_NONE)
3584 ap->ops->dev_select(ap, 1);
3585 if (classes[1] != ATA_DEV_NONE)
3586 ap->ops->dev_select(ap, 0);
3587
Tejun Heo3a397462006-02-10 23:58:48 +09003588 /* bail out if no device is present */
3589 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3590 DPRINTK("EXIT, no device\n");
3591 return;
3592 }
3593
3594 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003595 if (ap->ioaddr.ctl_addr)
3596 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003597
3598 DPRINTK("EXIT\n");
3599}
3600
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003601/**
Tejun Heo623a3122006-03-05 17:55:58 +09003602 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003603 * @dev: device to compare against
3604 * @new_class: class of the new device
3605 * @new_id: IDENTIFY page of the new device
3606 *
3607 * Compare @new_class and @new_id against @dev and determine
3608 * whether @dev is the device indicated by @new_class and
3609 * @new_id.
3610 *
3611 * LOCKING:
3612 * None.
3613 *
3614 * RETURNS:
3615 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3616 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003617static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3618 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003619{
3620 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003621 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3622 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003623
3624 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003625 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3626 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003627 return 0;
3628 }
3629
Tejun Heoa0cf7332007-01-02 20:18:49 +09003630 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3631 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3632 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3633 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003634
3635 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003636 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3637 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003638 return 0;
3639 }
3640
3641 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003642 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3643 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003644 return 0;
3645 }
3646
Tejun Heo623a3122006-03-05 17:55:58 +09003647 return 1;
3648}
3649
3650/**
Tejun Heofe309112007-05-15 03:28:15 +09003651 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003652 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003653 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003654 *
3655 * Re-read IDENTIFY page and make sure @dev is still attached to
3656 * the port.
3657 *
3658 * LOCKING:
3659 * Kernel thread context (may sleep)
3660 *
3661 * RETURNS:
3662 * 0 on success, negative errno otherwise
3663 */
Tejun Heofe309112007-05-15 03:28:15 +09003664int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003665{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003666 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003667 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003668 int rc;
3669
Tejun Heofe635c72006-05-15 20:57:35 +09003670 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003671 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003672 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003673 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003674
3675 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003676 if (!ata_dev_same_device(dev, class, id))
3677 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003678
Tejun Heofe635c72006-05-15 20:57:35 +09003679 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003680 return 0;
3681}
3682
3683/**
3684 * ata_dev_revalidate - Revalidate ATA device
3685 * @dev: device to revalidate
3686 * @readid_flags: read ID flags
3687 *
3688 * Re-read IDENTIFY page, make sure @dev is still attached to the
3689 * port and reconfigure it according to the new IDENTIFY page.
3690 *
3691 * LOCKING:
3692 * Kernel thread context (may sleep)
3693 *
3694 * RETURNS:
3695 * 0 on success, negative errno otherwise
3696 */
3697int ata_dev_revalidate(struct ata_device *dev, unsigned int readid_flags)
3698{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003699 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003700 int rc;
3701
3702 if (!ata_dev_enabled(dev))
3703 return -ENODEV;
3704
3705 /* re-read ID */
3706 rc = ata_dev_reread_id(dev, readid_flags);
3707 if (rc)
3708 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003709
3710 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003711 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003712 if (rc)
3713 goto fail;
3714
3715 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09003716 if (dev->class == ATA_DEV_ATA && n_sectors &&
3717 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003718 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3719 "%llu != %llu\n",
3720 (unsigned long long)n_sectors,
3721 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09003722
3723 /* restore original n_sectors */
3724 dev->n_sectors = n_sectors;
3725
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003726 rc = -ENODEV;
3727 goto fail;
3728 }
3729
3730 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003731
3732 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003733 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003734 return rc;
3735}
3736
Alan Cox6919a0a2006-10-27 19:08:46 -07003737struct ata_blacklist_entry {
3738 const char *model_num;
3739 const char *model_rev;
3740 unsigned long horkage;
3741};
3742
3743static const struct ata_blacklist_entry ata_device_blacklist [] = {
3744 /* Devices with DMA related problems under Linux */
3745 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3746 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3747 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3748 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3749 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3750 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3751 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3752 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3753 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3754 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3755 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3756 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3757 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3758 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3759 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3760 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3761 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3762 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3763 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3764 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3765 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3766 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3767 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3768 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3769 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3770 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003771 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3772 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3773 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003774 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo5acd50f2007-06-10 14:52:36 +09003775 { "IOMEGA ZIP 250 ATAPI", NULL, ATA_HORKAGE_NODMA }, /* temporary fix */
Tejun Heo39ce7122007-07-05 12:31:31 +09003776 { "IOMEGA ZIP 250 ATAPI Floppy",
3777 NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003778
Albert Lee18d6e9d2007-04-02 11:34:15 +08003779 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003780 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003781
Alan Cox6919a0a2006-10-27 19:08:46 -07003782 /* Devices we expect to fail diagnostics */
3783
3784 /* Devices where NCQ should be avoided */
3785 /* NCQ is slow */
3786 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo09125ea2007-02-28 15:21:23 +09003787 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3788 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003789 /* NCQ is broken */
3790 { "Maxtor 6L250S0", "BANC1G10", ATA_HORKAGE_NONCQ },
Chuck Ebberte8361fc2007-07-12 14:37:19 -04003791 { "Maxtor 6B200M0", "BANC1BM0", ATA_HORKAGE_NONCQ },
Jeff Garzik471e44b2007-05-28 09:00:05 -04003792 { "Maxtor 6B200M0", "BANC1B10", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003793 { "Maxtor 7B250S0", "BANC1B70", ATA_HORKAGE_NONCQ, },
3794 { "Maxtor 7B300S0", "BANC1B70", ATA_HORKAGE_NONCQ },
3795 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Prarit Bhargava2f8d90a2007-07-10 18:13:28 -04003796 { "HITACHI HDS7250SASUN500G 0621KTAWSD", "K2AOAJ0AHITACHI",
3797 ATA_HORKAGE_NONCQ },
Jens Axboe96442922007-03-30 09:27:58 +02003798 /* NCQ hard hangs device under heavier load, needs hard power cycle */
3799 { "Maxtor 6B250S0", "BANC1B70", ATA_HORKAGE_NONCQ },
Robert Hancock36e337d2007-04-02 22:05:29 -06003800 /* Blacklist entries taken from Silicon Image 3124/3132
3801 Windows driver .inf file - also several Linux problem reports */
3802 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3803 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3804 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Tejun Heobd9c5a32007-06-08 22:20:59 +09003805 /* Drives which do spurious command completion */
3806 { "HTS541680J9SA00", "SB2IC7EP", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003807 { "HTS541612J9SA00", "SBDIC7JP", ATA_HORKAGE_NONCQ, },
Tejun Heoe14cbfa2007-06-25 11:28:59 +09003808 { "Hitachi HTS541616J9SA00", "SB4OC70P", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003809 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heoa520f262007-07-10 16:16:18 +09003810 { "FUJITSU MHV2080BH", "00840028", ATA_HORKAGE_NONCQ, },
Tejun Heo3fb65892007-07-20 12:49:38 +09003811 { "ST9160821AS", "3.CLF", ATA_HORKAGE_NONCQ, },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003812 { "ST3160812AS", "3.AD", ATA_HORKAGE_NONCQ, },
Tejun Heo5d6aca82007-07-28 16:25:25 +09003813 { "SAMSUNG HD401LJ", "ZZ100-15", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003814
Tejun Heo16c55b02007-08-29 11:58:33 +09003815 /* devices which puke on READ_NATIVE_MAX */
3816 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3817 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3818 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3819 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003820
3821 /* End Marker */
3822 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003824
Tejun Heo75683fe2007-07-05 13:31:27 +09003825static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003827 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3828 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003829 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003830
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003831 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3832 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Alan Cox6919a0a2006-10-27 19:08:46 -07003834 while (ad->model_num) {
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003835 if (!strcmp(ad->model_num, model_num)) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003836 if (ad->model_rev == NULL)
3837 return ad->horkage;
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003838 if (!strcmp(ad->model_rev, model_rev))
Alan Cox6919a0a2006-10-27 19:08:46 -07003839 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003840 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003841 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 return 0;
3844}
3845
Alan Cox6919a0a2006-10-27 19:08:46 -07003846static int ata_dma_blacklisted(const struct ata_device *dev)
3847{
3848 /* We don't support polling DMA.
3849 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3850 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3851 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003852 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07003853 (dev->flags & ATA_DFLAG_CDB_INTR))
3854 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09003855 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07003856}
3857
Tejun Heoa6d5a512006-03-06 04:31:57 +09003858/**
3859 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003860 * @dev: Device to compute xfermask for
3861 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003862 * Compute supported xfermask of @dev and store it in
3863 * dev->*_mask. This function is responsible for applying all
3864 * known limits including host controller limits, device
3865 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003866 *
3867 * LOCKING:
3868 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003869 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003870static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003872 struct ata_link *link = dev->link;
3873 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04003874 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003875 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
Tejun Heo37deecb2006-08-10 16:59:07 +09003877 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09003878 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3879 ap->mwdma_mask, ap->udma_mask);
3880
Robert Hancock8343f882007-03-06 02:37:51 -08003881 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09003882 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
3883 dev->mwdma_mask, dev->udma_mask);
3884 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09003885
Alan Coxb352e572006-08-10 18:52:12 +01003886 /*
3887 * CFA Advanced TrueIDE timings are not allowed on a shared
3888 * cable
3889 */
3890 if (ata_dev_pair(dev)) {
3891 /* No PIO5 or PIO6 */
3892 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
3893 /* No MWDMA3 or MWDMA 4 */
3894 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
3895 }
3896
Tejun Heo37deecb2006-08-10 16:59:07 +09003897 if (ata_dma_blacklisted(dev)) {
3898 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09003899 ata_dev_printk(dev, KERN_WARNING,
3900 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09003901 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09003902
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01003903 if ((host->flags & ATA_HOST_SIMPLEX) &&
3904 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09003905 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3906 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
3907 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01003908 }
Tejun Heo565083e2006-04-02 17:54:47 +09003909
Jeff Garzike4246752007-03-09 09:56:46 -05003910 if (ap->flags & ATA_FLAG_NO_IORDY)
3911 xfer_mask &= ata_pio_mask_no_iordy(dev);
3912
Alan Cox5444a6f2006-03-27 18:58:20 +01003913 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05003914 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003915
Robert Hancock8343f882007-03-06 02:37:51 -08003916 /* Apply cable rule here. Don't apply it early because when
3917 * we handle hot plug the cable type can itself change.
3918 * Check this last so that we know if the transfer rate was
3919 * solely limited by the cable.
3920 * Unknown or 80 wire cables reported host side are checked
3921 * drive side as well. Cases where we know a 40wire cable
3922 * is used safely for 80 are not checked here.
3923 */
3924 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
3925 /* UDMA/44 or higher would be available */
3926 if((ap->cbl == ATA_CBL_PATA40) ||
3927 (ata_drive_40wire(dev->id) &&
3928 (ap->cbl == ATA_CBL_PATA_UNK ||
3929 ap->cbl == ATA_CBL_PATA80))) {
3930 ata_dev_printk(dev, KERN_WARNING,
3931 "limited to UDMA/33 due to 40-wire cable\n");
3932 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
3933 }
3934
Tejun Heo565083e2006-04-02 17:54:47 +09003935 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3936 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937}
3938
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 * @dev: Device to which command will be sent
3942 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003943 * Issue SET FEATURES - XFER MODE command to device @dev
3944 * on port @ap.
3945 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003947 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003948 *
3949 * RETURNS:
3950 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 */
3952
Tejun Heo3373efd2006-05-15 20:57:53 +09003953static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954{
Tejun Heoa0123702005-12-13 14:49:31 +09003955 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003956 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
3958 /* set up set-features taskfile */
3959 DPRINTK("set features - xfer mode\n");
3960
Tejun Heo464cf172007-05-27 15:10:40 +02003961 /* Some controllers and ATAPI devices show flaky interrupt
3962 * behavior after setting xfer mode. Use polling instead.
3963 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003964 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003965 tf.command = ATA_CMD_SET_FEATURES;
3966 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02003967 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09003968 tf.protocol = ATA_PROT_NODATA;
3969 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970
Tejun Heo3373efd2006-05-15 20:57:53 +09003971 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972
Tejun Heo83206a22006-03-24 15:25:31 +09003973 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3974 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975}
3976
3977/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003978 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003979 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003980 * @heads: Number of heads (taskfile parameter)
3981 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003982 *
3983 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003984 * Kernel thread context (may sleep)
3985 *
3986 * RETURNS:
3987 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003988 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003989static unsigned int ata_dev_init_params(struct ata_device *dev,
3990 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003991{
Tejun Heoa0123702005-12-13 14:49:31 +09003992 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003993 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003994
3995 /* Number of sectors per track 1-255. Number of heads 1-16 */
3996 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003997 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003998
3999 /* set up init dev params taskfile */
4000 DPRINTK("init dev params \n");
4001
Tejun Heo3373efd2006-05-15 20:57:53 +09004002 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004003 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4004 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4005 tf.protocol = ATA_PROT_NODATA;
4006 tf.nsect = sectors;
4007 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004008
Tejun Heo3373efd2006-05-15 20:57:53 +09004009 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004010 /* A clean abort indicates an original or just out of spec drive
4011 and we should continue as we issue the setup based on the
4012 drive reported working geometry */
4013 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4014 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004015
Tejun Heo6aff8f12006-02-15 18:24:09 +09004016 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4017 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004018}
4019
4020/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004021 * ata_sg_clean - Unmap DMA memory associated with command
4022 * @qc: Command containing DMA memory to be released
4023 *
4024 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 *
4026 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004027 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004029void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030{
4031 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004032 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004034 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
Tejun Heoa46314742006-02-11 19:11:13 +09004036 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
4037 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
4039 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05004040 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004042 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004044 /* if we padded the buffer out to 32-bit bound, and data
4045 * xfer direction is from-device, we must copy from the
4046 * pad buffer back into the supplied buffer
4047 */
4048 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
4049 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4050
4051 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05004052 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004053 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004054 /* restore last sg */
4055 sg[qc->orig_n_elem - 1].length += qc->pad_len;
4056 if (pad_buf) {
4057 struct scatterlist *psg = &qc->pad_sgent;
4058 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4059 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004060 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004061 }
4062 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09004063 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004064 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05004065 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
4066 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004067 /* restore sg */
4068 sg->length += qc->pad_len;
4069 if (pad_buf)
4070 memcpy(qc->buf_virt + sg->length - qc->pad_len,
4071 pad_buf, qc->pad_len);
4072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
4074 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004075 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076}
4077
4078/**
4079 * ata_fill_sg - Fill PCI IDE PRD table
4080 * @qc: Metadata associated with taskfile to be transferred
4081 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004082 * Fill PCI IDE PRD (scatter-gather) table with segments
4083 * associated with the current disk command.
4084 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004086 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 *
4088 */
4089static void ata_fill_sg(struct ata_queued_cmd *qc)
4090{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004092 struct scatterlist *sg;
4093 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Tejun Heoa46314742006-02-11 19:11:13 +09004095 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05004096 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
4098 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004099 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 u32 addr, offset;
4101 u32 sg_len, len;
4102
4103 /* determine if physical DMA addr spans 64K boundary.
4104 * Note h/w doesn't support 64-bit, so we unconditionally
4105 * truncate dma_addr_t to u32.
4106 */
4107 addr = (u32) sg_dma_address(sg);
4108 sg_len = sg_dma_len(sg);
4109
4110 while (sg_len) {
4111 offset = addr & 0xffff;
4112 len = sg_len;
4113 if ((offset + sg_len) > 0x10000)
4114 len = 0x10000 - offset;
4115
4116 ap->prd[idx].addr = cpu_to_le32(addr);
4117 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
4118 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4119
4120 idx++;
4121 sg_len -= len;
4122 addr += len;
4123 }
4124 }
4125
4126 if (idx)
4127 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4128}
Tejun Heob9a41972007-06-27 02:48:43 +09004129
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130/**
Alan Coxd26fc952007-07-06 19:13:52 -04004131 * ata_fill_sg_dumb - Fill PCI IDE PRD table
4132 * @qc: Metadata associated with taskfile to be transferred
4133 *
4134 * Fill PCI IDE PRD (scatter-gather) table with segments
4135 * associated with the current disk command. Perform the fill
4136 * so that we avoid writing any length 64K records for
4137 * controllers that don't follow the spec.
4138 *
4139 * LOCKING:
4140 * spin_lock_irqsave(host lock)
4141 *
4142 */
4143static void ata_fill_sg_dumb(struct ata_queued_cmd *qc)
4144{
4145 struct ata_port *ap = qc->ap;
4146 struct scatterlist *sg;
4147 unsigned int idx;
4148
4149 WARN_ON(qc->__sg == NULL);
4150 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
4151
4152 idx = 0;
4153 ata_for_each_sg(sg, qc) {
4154 u32 addr, offset;
4155 u32 sg_len, len, blen;
4156
4157 /* determine if physical DMA addr spans 64K boundary.
4158 * Note h/w doesn't support 64-bit, so we unconditionally
4159 * truncate dma_addr_t to u32.
4160 */
4161 addr = (u32) sg_dma_address(sg);
4162 sg_len = sg_dma_len(sg);
4163
4164 while (sg_len) {
4165 offset = addr & 0xffff;
4166 len = sg_len;
4167 if ((offset + sg_len) > 0x10000)
4168 len = 0x10000 - offset;
4169
4170 blen = len & 0xffff;
4171 ap->prd[idx].addr = cpu_to_le32(addr);
4172 if (blen == 0) {
4173 /* Some PATA chipsets like the CS5530 can't
4174 cope with 0x0000 meaning 64K as the spec says */
4175 ap->prd[idx].flags_len = cpu_to_le32(0x8000);
4176 blen = 0x8000;
4177 ap->prd[++idx].addr = cpu_to_le32(addr + 0x8000);
4178 }
4179 ap->prd[idx].flags_len = cpu_to_le32(blen);
4180 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4181
4182 idx++;
4183 sg_len -= len;
4184 addr += len;
4185 }
4186 }
4187
4188 if (idx)
4189 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4190}
4191
4192/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4194 * @qc: Metadata associated with taskfile to check
4195 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004196 * Allow low-level driver to filter ATA PACKET commands, returning
4197 * a status indicating whether or not it is OK to use DMA for the
4198 * supplied PACKET command.
4199 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004201 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004202 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 * RETURNS: 0 when ATAPI DMA can be used
4204 * nonzero otherwise
4205 */
4206int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4207{
4208 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Tejun Heob9a41972007-06-27 02:48:43 +09004210 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4211 * few ATAPI devices choke on such DMA requests.
4212 */
4213 if (unlikely(qc->nbytes & 15))
4214 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004215
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004217 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218
Tejun Heob9a41972007-06-27 02:48:43 +09004219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220}
Tejun Heob9a41972007-06-27 02:48:43 +09004221
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222/**
4223 * ata_qc_prep - Prepare taskfile for submission
4224 * @qc: Metadata associated with taskfile to be prepared
4225 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004226 * Prepare ATA taskfile for submission.
4227 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004229 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 */
4231void ata_qc_prep(struct ata_queued_cmd *qc)
4232{
4233 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4234 return;
4235
4236 ata_fill_sg(qc);
4237}
4238
Alan Coxd26fc952007-07-06 19:13:52 -04004239/**
4240 * ata_dumb_qc_prep - Prepare taskfile for submission
4241 * @qc: Metadata associated with taskfile to be prepared
4242 *
4243 * Prepare ATA taskfile for submission.
4244 *
4245 * LOCKING:
4246 * spin_lock_irqsave(host lock)
4247 */
4248void ata_dumb_qc_prep(struct ata_queued_cmd *qc)
4249{
4250 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4251 return;
4252
4253 ata_fill_sg_dumb(qc);
4254}
4255
Brian Kinge46834c2006-03-17 17:04:03 -06004256void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4257
Jeff Garzik0cba6322005-05-30 19:49:12 -04004258/**
4259 * ata_sg_init_one - Associate command with memory buffer
4260 * @qc: Command to be associated
4261 * @buf: Memory buffer
4262 * @buflen: Length of memory buffer, in bytes.
4263 *
4264 * Initialize the data-related elements of queued_cmd @qc
4265 * to point to a single memory buffer, @buf of byte length @buflen.
4266 *
4267 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004268 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004269 */
4270
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
4272{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 qc->flags |= ATA_QCFLAG_SINGLE;
4274
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004275 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004277 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05004279 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
Tejun Heo61c05962006-11-14 22:35:43 +09004281 sg_init_one(&qc->sgent, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282}
4283
Jeff Garzik0cba6322005-05-30 19:49:12 -04004284/**
4285 * ata_sg_init - Associate command with scatter-gather table.
4286 * @qc: Command to be associated
4287 * @sg: Scatter-gather table.
4288 * @n_elem: Number of elements in s/g table.
4289 *
4290 * Initialize the data-related elements of queued_cmd @qc
4291 * to point to a scatter-gather table @sg, containing @n_elem
4292 * elements.
4293 *
4294 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004295 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004296 */
4297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4299 unsigned int n_elem)
4300{
4301 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004302 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004304 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305}
4306
4307/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004308 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
4309 * @qc: Command with memory buffer to be mapped.
4310 *
4311 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 *
4313 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004314 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 *
4316 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004317 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 */
4319
4320static int ata_sg_setup_one(struct ata_queued_cmd *qc)
4321{
4322 struct ata_port *ap = qc->ap;
4323 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004324 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004326 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004328 /* we must lengthen transfers to end on a 32-bit boundary */
4329 qc->pad_len = sg->length & 3;
4330 if (qc->pad_len) {
4331 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4332 struct scatterlist *psg = &qc->pad_sgent;
4333
Tejun Heoa46314742006-02-11 19:11:13 +09004334 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004335
4336 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4337
4338 if (qc->tf.flags & ATA_TFLAG_WRITE)
4339 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
4340 qc->pad_len);
4341
4342 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4343 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4344 /* trim sg */
4345 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004346 if (sg->length == 0)
4347 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004348
4349 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
4350 sg->length, qc->pad_len);
4351 }
4352
Tejun Heo2e242fa2006-02-20 23:48:38 +09004353 if (trim_sg) {
4354 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05004355 goto skip_map;
4356 }
4357
Brian King2f1f6102006-03-23 17:30:15 -06004358 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04004359 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004360 if (dma_mapping_error(dma_address)) {
4361 /* restore sg */
4362 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
4366 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04004367 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
Tejun Heo2e242fa2006-02-20 23:48:38 +09004369skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
4371 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4372
4373 return 0;
4374}
4375
4376/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004377 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4378 * @qc: Command with scatter-gather table to be mapped.
4379 *
4380 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 *
4382 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004383 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 *
4385 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004386 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 *
4388 */
4389
4390static int ata_sg_setup(struct ata_queued_cmd *qc)
4391{
4392 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004393 struct scatterlist *sg = qc->__sg;
4394 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05004395 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
Tejun Heo44877b42007-02-21 01:06:51 +09004397 VPRINTK("ENTER, ata%u\n", ap->print_id);
Tejun Heoa46314742006-02-11 19:11:13 +09004398 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004400 /* we must lengthen transfers to end on a 32-bit boundary */
4401 qc->pad_len = lsg->length & 3;
4402 if (qc->pad_len) {
4403 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4404 struct scatterlist *psg = &qc->pad_sgent;
4405 unsigned int offset;
4406
Tejun Heoa46314742006-02-11 19:11:13 +09004407 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004408
4409 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4410
4411 /*
4412 * psg->page/offset are used to copy to-be-written
4413 * data in this function or read data in ata_sg_clean.
4414 */
4415 offset = lsg->offset + lsg->length - qc->pad_len;
4416 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
4417 psg->offset = offset_in_page(offset);
4418
4419 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4420 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4421 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004422 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004423 }
4424
4425 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4426 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4427 /* trim last sg */
4428 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05004429 if (lsg->length == 0)
4430 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004431
4432 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
4433 qc->n_elem - 1, lsg->length, qc->pad_len);
4434 }
4435
Jeff Garzike1410f22005-11-14 14:06:26 -05004436 pre_n_elem = qc->n_elem;
4437 if (trim_sg && pre_n_elem)
4438 pre_n_elem--;
4439
4440 if (!pre_n_elem) {
4441 n_elem = 0;
4442 goto skip_map;
4443 }
4444
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06004446 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004447 if (n_elem < 1) {
4448 /* restore last sg */
4449 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
4453 DPRINTK("%d sg elements mapped\n", n_elem);
4454
Jeff Garzike1410f22005-11-14 14:06:26 -05004455skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 qc->n_elem = n_elem;
4457
4458 return 0;
4459}
4460
4461/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004462 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004463 * @buf: Buffer to swap
4464 * @buf_words: Number of 16-bit words in buffer.
4465 *
4466 * Swap halves of 16-bit words if needed to convert from
4467 * little-endian byte order to native cpu byte order, or
4468 * vice-versa.
4469 *
4470 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004471 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004472 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473void swap_buf_le16(u16 *buf, unsigned int buf_words)
4474{
4475#ifdef __BIG_ENDIAN
4476 unsigned int i;
4477
4478 for (i = 0; i < buf_words; i++)
4479 buf[i] = le16_to_cpu(buf[i]);
4480#endif /* __BIG_ENDIAN */
4481}
4482
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004483/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004484 * ata_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004485 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004486 * @buf: data buffer
4487 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04004488 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004489 *
4490 * Transfer data from/to the device data register by PIO.
4491 *
4492 * LOCKING:
4493 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004494 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004495void ata_data_xfer(struct ata_device *adev, unsigned char *buf,
4496 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004498 struct ata_port *ap = adev->link->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004499 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004501 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 if (write_data)
Tejun Heo0d5ff562007-02-01 15:06:36 +09004503 iowrite16_rep(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 else
Tejun Heo0d5ff562007-02-01 15:06:36 +09004505 ioread16_rep(ap->ioaddr.data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004506
4507 /* Transfer trailing 1 byte, if any. */
4508 if (unlikely(buflen & 0x01)) {
4509 u16 align_buf[1] = { 0 };
4510 unsigned char *trailing_buf = buf + buflen - 1;
4511
4512 if (write_data) {
4513 memcpy(align_buf, trailing_buf, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004514 iowrite16(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004515 } else {
Tejun Heo0d5ff562007-02-01 15:06:36 +09004516 align_buf[0] = cpu_to_le16(ioread16(ap->ioaddr.data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004517 memcpy(trailing_buf, align_buf, 1);
4518 }
4519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520}
4521
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004522/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004523 * ata_data_xfer_noirq - Transfer data by PIO
Alan Cox75e99582006-05-24 14:14:41 +01004524 * @adev: device to target
4525 * @buf: data buffer
4526 * @buflen: buffer length
4527 * @write_data: read/write
4528 *
Tejun Heo88574552006-06-25 20:00:35 +09004529 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01004530 * transfer with interrupts disabled.
4531 *
4532 * LOCKING:
4533 * Inherited from caller.
4534 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004535void ata_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
4536 unsigned int buflen, int write_data)
Alan Cox75e99582006-05-24 14:14:41 +01004537{
4538 unsigned long flags;
4539 local_irq_save(flags);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004540 ata_data_xfer(adev, buf, buflen, write_data);
Alan Cox75e99582006-05-24 14:14:41 +01004541 local_irq_restore(flags);
4542}
4543
4544
4545/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004546 * ata_pio_sector - Transfer a sector of data.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004547 * @qc: Command on going
4548 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004549 * Transfer qc->sect_size bytes of data from/to the ATA device.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004550 *
4551 * LOCKING:
4552 * Inherited from caller.
4553 */
4554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555static void ata_pio_sector(struct ata_queued_cmd *qc)
4556{
4557 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004558 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 struct ata_port *ap = qc->ap;
4560 struct page *page;
4561 unsigned int offset;
4562 unsigned char *buf;
4563
Mark Lord5a5dbd12007-03-16 10:22:26 -04004564 if (qc->curbytes == qc->nbytes - qc->sect_size)
Albert Lee14be71f2005-09-27 17:36:35 +08004565 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
4567 page = sg[qc->cursg].page;
Tejun Heo726f0782007-01-03 17:30:39 +09004568 offset = sg[qc->cursg].offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
4570 /* get the current page and offset */
4571 page = nth_page(page, (offset >> PAGE_SHIFT));
4572 offset %= PAGE_SIZE;
4573
Albert Lee7282aa42005-10-09 09:46:07 -04004574 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4575
Albert Lee91b8b312005-10-09 09:48:44 -04004576 if (PageHighMem(page)) {
4577 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004578
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004579 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004580 local_irq_save(flags);
4581 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004582
Albert Lee91b8b312005-10-09 09:48:44 -04004583 /* do the actual data transfer */
Mark Lord5a5dbd12007-03-16 10:22:26 -04004584 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004585
4586 kunmap_atomic(buf, KM_IRQ0);
4587 local_irq_restore(flags);
4588 } else {
4589 buf = page_address(page);
Mark Lord5a5dbd12007-03-16 10:22:26 -04004590 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592
Mark Lord5a5dbd12007-03-16 10:22:26 -04004593 qc->curbytes += qc->sect_size;
4594 qc->cursg_ofs += qc->sect_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595
Tejun Heo726f0782007-01-03 17:30:39 +09004596 if (qc->cursg_ofs == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 qc->cursg++;
4598 qc->cursg_ofs = 0;
4599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004602/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004603 * ata_pio_sectors - Transfer one or many sectors.
Albert Lee07f6f7d2005-11-01 19:33:20 +08004604 * @qc: Command on going
4605 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004606 * Transfer one or many sectors of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08004607 * ATA device for the DRQ request.
4608 *
4609 * LOCKING:
4610 * Inherited from caller.
4611 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
Albert Lee07f6f7d2005-11-01 19:33:20 +08004613static void ata_pio_sectors(struct ata_queued_cmd *qc)
4614{
4615 if (is_multi_taskfile(&qc->tf)) {
4616 /* READ/WRITE MULTIPLE */
4617 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
Jeff Garzik587005d2006-02-11 18:17:32 -05004619 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004620
Mark Lord5a5dbd12007-03-16 10:22:26 -04004621 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
Tejun Heo726f0782007-01-03 17:30:39 +09004622 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004623 while (nsect--)
4624 ata_pio_sector(qc);
4625 } else
4626 ata_pio_sector(qc);
Albert Lee4cc980b2007-08-15 03:19:45 -04004627
4628 ata_altstatus(qc->ap); /* flush */
Albert Lee07f6f7d2005-11-01 19:33:20 +08004629}
4630
4631/**
Albert Leec71c1852005-10-04 06:03:45 -04004632 * atapi_send_cdb - Write CDB bytes to hardware
4633 * @ap: Port to which ATAPI device is attached.
4634 * @qc: Taskfile currently active
4635 *
4636 * When device has indicated its readiness to accept
4637 * a CDB, this function is called. Send the CDB.
4638 *
4639 * LOCKING:
4640 * caller.
4641 */
4642
4643static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
4644{
4645 /* send SCSI cdb */
4646 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05004647 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04004648
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004649 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04004650 ata_altstatus(ap); /* flush */
4651
4652 switch (qc->tf.protocol) {
4653 case ATA_PROT_ATAPI:
4654 ap->hsm_task_state = HSM_ST;
4655 break;
4656 case ATA_PROT_ATAPI_NODATA:
4657 ap->hsm_task_state = HSM_ST_LAST;
4658 break;
4659 case ATA_PROT_ATAPI_DMA:
4660 ap->hsm_task_state = HSM_ST_LAST;
4661 /* initiate bmdma */
4662 ap->ops->bmdma_start(qc);
4663 break;
4664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665}
4666
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004667/**
4668 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
4669 * @qc: Command on going
4670 * @bytes: number of bytes
4671 *
4672 * Transfer Transfer data from/to the ATAPI device.
4673 *
4674 * LOCKING:
4675 * Inherited from caller.
4676 *
4677 */
4678
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
4680{
4681 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004682 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 struct ata_port *ap = qc->ap;
4684 struct page *page;
4685 unsigned char *buf;
4686 unsigned int offset, count;
4687
Albert Lee563a6e12005-08-12 14:17:50 +08004688 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08004689 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
4691next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08004692 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004693 /*
Albert Lee563a6e12005-08-12 14:17:50 +08004694 * The end of qc->sg is reached and the device expects
4695 * more data to transfer. In order not to overrun qc->sg
4696 * and fulfill length specified in the byte count register,
4697 * - for read case, discard trailing data from the device
4698 * - for write case, padding zero data to the device
4699 */
4700 u16 pad_buf[1] = { 0 };
4701 unsigned int words = bytes >> 1;
4702 unsigned int i;
4703
4704 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09004705 ata_dev_printk(qc->dev, KERN_WARNING,
4706 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08004707
4708 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004709 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08004710
Albert Lee14be71f2005-09-27 17:36:35 +08004711 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08004712 return;
4713 }
4714
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004715 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 page = sg->page;
4718 offset = sg->offset + qc->cursg_ofs;
4719
4720 /* get the current page and offset */
4721 page = nth_page(page, (offset >> PAGE_SHIFT));
4722 offset %= PAGE_SIZE;
4723
Albert Lee6952df02005-06-06 15:56:03 +08004724 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04004725 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
4727 /* don't cross page boundaries */
4728 count = min(count, (unsigned int)PAGE_SIZE - offset);
4729
Albert Lee7282aa42005-10-09 09:46:07 -04004730 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4731
Albert Lee91b8b312005-10-09 09:48:44 -04004732 if (PageHighMem(page)) {
4733 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004734
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004735 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004736 local_irq_save(flags);
4737 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004738
Albert Lee91b8b312005-10-09 09:48:44 -04004739 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004740 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004741
4742 kunmap_atomic(buf, KM_IRQ0);
4743 local_irq_restore(flags);
4744 } else {
4745 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004746 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748
4749 bytes -= count;
4750 qc->curbytes += count;
4751 qc->cursg_ofs += count;
4752
Albert Lee32529e02005-05-26 03:49:42 -04004753 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754 qc->cursg++;
4755 qc->cursg_ofs = 0;
4756 }
4757
Albert Lee563a6e12005-08-12 14:17:50 +08004758 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760}
4761
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004762/**
4763 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
4764 * @qc: Command on going
4765 *
4766 * Transfer Transfer data from/to the ATAPI device.
4767 *
4768 * LOCKING:
4769 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004770 */
4771
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772static void atapi_pio_bytes(struct ata_queued_cmd *qc)
4773{
4774 struct ata_port *ap = qc->ap;
4775 struct ata_device *dev = qc->dev;
4776 unsigned int ireason, bc_lo, bc_hi, bytes;
4777 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
4778
Albert Leeeec4c3f2006-05-18 17:51:10 +08004779 /* Abuse qc->result_tf for temp storage of intermediate TF
4780 * here to save some kernel stack usage.
4781 * For normal completion, qc->result_tf is not relevant. For
4782 * error, qc->result_tf is later overwritten by ata_qc_complete().
4783 * So, the correctness of qc->result_tf is not affected.
4784 */
4785 ap->ops->tf_read(ap, &qc->result_tf);
4786 ireason = qc->result_tf.nsect;
4787 bc_lo = qc->result_tf.lbam;
4788 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 bytes = (bc_hi << 8) | bc_lo;
4790
4791 /* shall be cleared to zero, indicating xfer of data */
4792 if (ireason & (1 << 0))
4793 goto err_out;
4794
4795 /* make sure transfer direction matches expected */
4796 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
4797 if (do_write != i_write)
4798 goto err_out;
4799
Tejun Heo44877b42007-02-21 01:06:51 +09004800 VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
Albert Lee312f7da2005-09-27 17:38:03 +08004801
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 __atapi_pio_bytes(qc, bytes);
Albert Lee4cc980b2007-08-15 03:19:45 -04004803 ata_altstatus(ap); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804
4805 return;
4806
4807err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09004808 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09004809 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08004810 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811}
4812
4813/**
Albert Leec234fb02006-03-25 17:58:38 +08004814 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
4815 * @ap: the target ata_port
4816 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 *
Albert Leec234fb02006-03-25 17:58:38 +08004818 * RETURNS:
4819 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 */
Albert Leec234fb02006-03-25 17:58:38 +08004821
4822static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823{
Albert Leec234fb02006-03-25 17:58:38 +08004824 if (qc->tf.flags & ATA_TFLAG_POLLING)
4825 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
Albert Leec234fb02006-03-25 17:58:38 +08004827 if (ap->hsm_task_state == HSM_ST_FIRST) {
4828 if (qc->tf.protocol == ATA_PROT_PIO &&
4829 (qc->tf.flags & ATA_TFLAG_WRITE))
4830 return 1;
4831
4832 if (is_atapi_taskfile(&qc->tf) &&
4833 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
4834 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 }
4836
Albert Leec234fb02006-03-25 17:58:38 +08004837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838}
4839
Albert Leec234fb02006-03-25 17:58:38 +08004840/**
Tejun Heoc17ea202006-05-15 20:59:29 +09004841 * ata_hsm_qc_complete - finish a qc running on standard HSM
4842 * @qc: Command to complete
4843 * @in_wq: 1 if called from workqueue, 0 otherwise
4844 *
4845 * Finish @qc which is running on standard HSM.
4846 *
4847 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004848 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09004849 * Otherwise, none on entry and grabs host lock.
4850 */
4851static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
4852{
4853 struct ata_port *ap = qc->ap;
4854 unsigned long flags;
4855
4856 if (ap->ops->error_handler) {
4857 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004858 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004859
Jeff Garzikcca39742006-08-24 03:19:22 -04004860 /* EH might have kicked in while host lock is
4861 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09004862 */
4863 qc = ata_qc_from_tag(ap, qc->tag);
4864 if (qc) {
4865 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi83625002007-01-26 16:27:32 +09004866 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004867 ata_qc_complete(qc);
4868 } else
4869 ata_port_freeze(ap);
4870 }
4871
Jeff Garzikba6a1302006-06-22 23:46:10 -04004872 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004873 } else {
4874 if (likely(!(qc->err_mask & AC_ERR_HSM)))
4875 ata_qc_complete(qc);
4876 else
4877 ata_port_freeze(ap);
4878 }
4879 } else {
4880 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004881 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi83625002007-01-26 16:27:32 +09004882 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004883 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04004884 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004885 } else
4886 ata_qc_complete(qc);
4887 }
4888}
4889
4890/**
Albert Leebb5cb292006-03-25 17:48:02 +08004891 * ata_hsm_move - move the HSM to the next state.
4892 * @ap: the target ata_port
4893 * @qc: qc on going
4894 * @status: current device status
4895 * @in_wq: 1 if called from workqueue, 0 otherwise
4896 *
4897 * RETURNS:
4898 * 1 when poll next status needed, 0 otherwise.
4899 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004900int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4901 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902{
Albert Leebb5cb292006-03-25 17:48:02 +08004903 unsigned long flags = 0;
4904 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905
Albert Lee6912ccd2006-03-25 17:45:49 +08004906 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004907
Albert Leebb5cb292006-03-25 17:48:02 +08004908 /* Make sure ata_qc_issue_prot() does not throw things
4909 * like DMA polling into the workqueue. Notice that
4910 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004911 */
Albert Leec234fb02006-03-25 17:58:38 +08004912 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004913
Albert Leee2cec772006-03-25 17:43:49 +08004914fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004915 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
Tejun Heo44877b42007-02-21 01:06:51 +09004916 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917
Albert Leee2cec772006-03-25 17:43:49 +08004918 switch (ap->hsm_task_state) {
4919 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004920 /* Send first data block or PACKET CDB */
4921
4922 /* If polling, we will stay in the work queue after
4923 * sending the data. Otherwise, interrupt handler
4924 * takes over after sending the data.
4925 */
4926 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4927
Albert Leee2cec772006-03-25 17:43:49 +08004928 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004929 if (unlikely((status & ATA_DRQ) == 0)) {
4930 /* handle BSY=0, DRQ=0 as error */
4931 if (likely(status & (ATA_ERR | ATA_DF)))
4932 /* device stops HSM for abort/error */
4933 qc->err_mask |= AC_ERR_DEV;
4934 else
4935 /* HSM violation. Let EH handle this */
4936 qc->err_mask |= AC_ERR_HSM;
4937
Albert Leee2cec772006-03-25 17:43:49 +08004938 ap->hsm_task_state = HSM_ST_ERR;
4939 goto fsm_start;
4940 }
4941
Albert Lee71601952006-03-25 18:11:12 +08004942 /* Device should not ask for data transfer (DRQ=1)
4943 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004944 * We ignore DRQ here and stop the HSM by
4945 * changing hsm_task_state to HSM_ST_ERR and
4946 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004947 */
4948 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09004949 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with device "
4950 "error, dev_stat 0x%X\n", status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004951 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004952 ap->hsm_task_state = HSM_ST_ERR;
4953 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004954 }
4955
Albert Leebb5cb292006-03-25 17:48:02 +08004956 /* Send the CDB (atapi) or the first data block (ata pio out).
4957 * During the state transition, interrupt handler shouldn't
4958 * be invoked before the data transfer is complete and
4959 * hsm_task_state is changed. Hence, the following locking.
4960 */
4961 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004962 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004963
Albert Leebb5cb292006-03-25 17:48:02 +08004964 if (qc->tf.protocol == ATA_PROT_PIO) {
4965 /* PIO data out protocol.
4966 * send first data block.
4967 */
4968
4969 /* ata_pio_sectors() might change the state
4970 * to HSM_ST_LAST. so, the state is changed here
4971 * before ata_pio_sectors().
4972 */
4973 ap->hsm_task_state = HSM_ST;
4974 ata_pio_sectors(qc);
Albert Leebb5cb292006-03-25 17:48:02 +08004975 } else
4976 /* send CDB */
4977 atapi_send_cdb(ap, qc);
4978
4979 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004980 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004981
4982 /* if polling, ata_pio_task() handles the rest.
4983 * otherwise, interrupt handler takes over from here.
4984 */
Albert Leee2cec772006-03-25 17:43:49 +08004985 break;
4986
4987 case HSM_ST:
4988 /* complete command or read/write the data register */
4989 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4990 /* ATAPI PIO protocol */
4991 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004992 /* No more data to transfer or device error.
4993 * Device error will be tagged in HSM_ST_LAST.
4994 */
Albert Leee2cec772006-03-25 17:43:49 +08004995 ap->hsm_task_state = HSM_ST_LAST;
4996 goto fsm_start;
4997 }
4998
Albert Lee71601952006-03-25 18:11:12 +08004999 /* Device should not ask for data transfer (DRQ=1)
5000 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005001 * We ignore DRQ here and stop the HSM by
5002 * changing hsm_task_state to HSM_ST_ERR and
5003 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005004 */
5005 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09005006 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
5007 "device error, dev_stat 0x%X\n",
5008 status);
Albert Lee3655d1d2006-05-19 11:43:04 +08005009 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08005010 ap->hsm_task_state = HSM_ST_ERR;
5011 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005012 }
5013
Albert Leee2cec772006-03-25 17:43:49 +08005014 atapi_pio_bytes(qc);
5015
5016 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
5017 /* bad ireason reported by device */
5018 goto fsm_start;
5019
5020 } else {
5021 /* ATA PIO protocol */
5022 if (unlikely((status & ATA_DRQ) == 0)) {
5023 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08005024 if (likely(status & (ATA_ERR | ATA_DF)))
5025 /* device stops HSM for abort/error */
5026 qc->err_mask |= AC_ERR_DEV;
5027 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09005028 /* HSM violation. Let EH handle this.
5029 * Phantom devices also trigger this
5030 * condition. Mark hint.
5031 */
5032 qc->err_mask |= AC_ERR_HSM |
5033 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08005034
Albert Leee2cec772006-03-25 17:43:49 +08005035 ap->hsm_task_state = HSM_ST_ERR;
5036 goto fsm_start;
5037 }
5038
Albert Leeeee6c322006-04-01 17:38:43 +08005039 /* For PIO reads, some devices may ask for
5040 * data transfer (DRQ=1) alone with ERR=1.
5041 * We respect DRQ here and transfer one
5042 * block of junk data before changing the
5043 * hsm_task_state to HSM_ST_ERR.
5044 *
5045 * For PIO writes, ERR=1 DRQ=1 doesn't make
5046 * sense since the data block has been
5047 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08005048 */
5049 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08005050 /* data might be corrputed */
5051 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08005052
5053 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
5054 ata_pio_sectors(qc);
Albert Leeeee6c322006-04-01 17:38:43 +08005055 status = ata_wait_idle(ap);
5056 }
5057
Albert Lee3655d1d2006-05-19 11:43:04 +08005058 if (status & (ATA_BUSY | ATA_DRQ))
5059 qc->err_mask |= AC_ERR_HSM;
5060
Albert Leeeee6c322006-04-01 17:38:43 +08005061 /* ata_pio_sectors() might change the
5062 * state to HSM_ST_LAST. so, the state
5063 * is changed after ata_pio_sectors().
5064 */
5065 ap->hsm_task_state = HSM_ST_ERR;
5066 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005067 }
5068
Albert Leee2cec772006-03-25 17:43:49 +08005069 ata_pio_sectors(qc);
5070
5071 if (ap->hsm_task_state == HSM_ST_LAST &&
5072 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
5073 /* all data read */
Albert Lee52a32202006-03-25 18:18:15 +08005074 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08005075 goto fsm_start;
5076 }
5077 }
5078
Albert Leebb5cb292006-03-25 17:48:02 +08005079 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08005080 break;
5081
5082 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005083 if (unlikely(!ata_ok(status))) {
5084 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08005085 ap->hsm_task_state = HSM_ST_ERR;
5086 goto fsm_start;
5087 }
5088
5089 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08005090 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005091 ap->print_id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08005092
Albert Lee6912ccd2006-03-25 17:45:49 +08005093 WARN_ON(qc->err_mask);
5094
Albert Leee2cec772006-03-25 17:43:49 +08005095 ap->hsm_task_state = HSM_ST_IDLE;
5096
5097 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005098 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005099
5100 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005101 break;
5102
5103 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08005104 /* make sure qc->err_mask is available to
5105 * know what's wrong and recover
5106 */
5107 WARN_ON(qc->err_mask == 0);
5108
5109 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08005110
Albert Lee999bb6f2006-03-25 18:07:48 +08005111 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005112 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005113
5114 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005115 break;
5116 default:
Albert Leebb5cb292006-03-25 17:48:02 +08005117 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08005118 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08005119 }
5120
Albert Leebb5cb292006-03-25 17:48:02 +08005121 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122}
5123
David Howells65f27f32006-11-22 14:55:48 +00005124static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125{
David Howells65f27f32006-11-22 14:55:48 +00005126 struct ata_port *ap =
5127 container_of(work, struct ata_port, port_task.work);
5128 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08005129 u8 status;
5130 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005131
5132fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08005133 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134
Albert Leea1af3732006-03-25 17:50:15 +08005135 /*
5136 * This is purely heuristic. This is a fast path.
5137 * Sometimes when we enter, BSY will be cleared in
5138 * a chk-status or two. If not, the drive is probably seeking
5139 * or something. Snooze for a couple msecs, then
5140 * chk-status again. If still busy, queue delayed work.
5141 */
5142 status = ata_busy_wait(ap, ATA_BUSY, 5);
5143 if (status & ATA_BUSY) {
5144 msleep(2);
5145 status = ata_busy_wait(ap, ATA_BUSY, 10);
5146 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08005147 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08005148 return;
5149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 }
5151
Albert Leea1af3732006-03-25 17:50:15 +08005152 /* move the HSM */
5153 poll_next = ata_hsm_move(ap, qc, status, 1);
5154
5155 /* another command or interrupt handler
5156 * may be running at this point.
5157 */
5158 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005159 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160}
5161
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 * ata_qc_new - Request an available ATA command, for queueing
5164 * @ap: Port associated with device @dev
5165 * @dev: Device from whom we request an available command structure
5166 *
5167 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005168 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 */
5170
5171static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
5172{
5173 struct ata_queued_cmd *qc = NULL;
5174 unsigned int i;
5175
Tejun Heoe3180492006-05-15 20:58:09 +09005176 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09005177 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09005178 return NULL;
5179
Tejun Heo2ab7db12006-05-15 20:58:02 +09005180 /* the last tag is reserved for internal command. */
5181 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09005182 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09005183 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 break;
5185 }
5186
5187 if (qc)
5188 qc->tag = i;
5189
5190 return qc;
5191}
5192
5193/**
5194 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 * @dev: Device from whom we request an available command structure
5196 *
5197 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005198 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 */
5200
Tejun Heo3373efd2006-05-15 20:57:53 +09005201struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005203 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204 struct ata_queued_cmd *qc;
5205
5206 qc = ata_qc_new(ap);
5207 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 qc->scsicmd = NULL;
5209 qc->ap = ap;
5210 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05005212 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 }
5214
5215 return qc;
5216}
5217
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218/**
5219 * ata_qc_free - free unused ata_queued_cmd
5220 * @qc: Command to complete
5221 *
5222 * Designed to free unused ata_queued_cmd object
5223 * in case something prevents using it.
5224 *
5225 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005226 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 */
5228void ata_qc_free(struct ata_queued_cmd *qc)
5229{
Tejun Heo4ba946e2006-01-23 13:09:36 +09005230 struct ata_port *ap = qc->ap;
5231 unsigned int tag;
5232
Tejun Heoa46314742006-02-11 19:11:13 +09005233 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
Tejun Heo4ba946e2006-01-23 13:09:36 +09005235 qc->flags = 0;
5236 tag = qc->tag;
5237 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09005238 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09005239 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09005240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241}
5242
Tejun Heo76014422006-02-11 15:13:49 +09005243void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244{
Tejun Heodedaf2b2006-05-15 21:03:43 +09005245 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005246 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005247
Tejun Heoa46314742006-02-11 19:11:13 +09005248 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
5249 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250
5251 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
5252 ata_sg_clean(qc);
5253
Tejun Heo7401abf2006-05-15 20:57:32 +09005254 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09005255 if (qc->tf.protocol == ATA_PROT_NCQ)
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005256 link->sactive &= ~(1 << qc->tag);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005257 else
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005258 link->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09005259
Albert Lee3f3791d2005-08-16 14:25:38 +08005260 /* atapi: mark qc as inactive to prevent the interrupt handler
5261 * from completing the command twice later, before the error handler
5262 * is called. (when rc != 0 and atapi request sense is needed)
5263 */
5264 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005265 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08005266
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09005268 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269}
5270
Tejun Heo39599a52006-11-14 22:37:35 +09005271static void fill_result_tf(struct ata_queued_cmd *qc)
5272{
5273 struct ata_port *ap = qc->ap;
5274
Tejun Heo39599a52006-11-14 22:37:35 +09005275 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04005276 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09005277}
5278
Tejun Heof686bcb2006-05-15 20:58:05 +09005279/**
5280 * ata_qc_complete - Complete an active ATA command
5281 * @qc: Command to complete
5282 * @err_mask: ATA Status register contents
5283 *
5284 * Indicate to the mid and upper layers that an ATA
5285 * command has completed, with either an ok or not-ok status.
5286 *
5287 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005288 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09005289 */
5290void ata_qc_complete(struct ata_queued_cmd *qc)
5291{
5292 struct ata_port *ap = qc->ap;
5293
5294 /* XXX: New EH and old EH use different mechanisms to
5295 * synchronize EH with regular execution path.
5296 *
5297 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
5298 * Normal execution path is responsible for not accessing a
5299 * failed qc. libata core enforces the rule by returning NULL
5300 * from ata_qc_from_tag() for failed qcs.
5301 *
5302 * Old EH depends on ata_qc_complete() nullifying completion
5303 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
5304 * not synchronize with interrupt handler. Only PIO task is
5305 * taken care of.
5306 */
5307 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09005308 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09005309
5310 if (unlikely(qc->err_mask))
5311 qc->flags |= ATA_QCFLAG_FAILED;
5312
5313 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
5314 if (!ata_tag_internal(qc->tag)) {
5315 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09005316 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005317 ata_qc_schedule_eh(qc);
5318 return;
5319 }
5320 }
5321
5322 /* read result TF if requested */
5323 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005324 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005325
5326 __ata_qc_complete(qc);
5327 } else {
5328 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5329 return;
5330
5331 /* read result TF if failed or requested */
5332 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005333 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005334
5335 __ata_qc_complete(qc);
5336 }
5337}
5338
Tejun Heodedaf2b2006-05-15 21:03:43 +09005339/**
5340 * ata_qc_complete_multiple - Complete multiple qcs successfully
5341 * @ap: port in question
5342 * @qc_active: new qc_active mask
5343 * @finish_qc: LLDD callback invoked before completing a qc
5344 *
5345 * Complete in-flight commands. This functions is meant to be
5346 * called from low-level driver's interrupt routine to complete
5347 * requests normally. ap->qc_active and @qc_active is compared
5348 * and commands are completed accordingly.
5349 *
5350 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005351 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005352 *
5353 * RETURNS:
5354 * Number of completed commands on success, -errno otherwise.
5355 */
5356int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
5357 void (*finish_qc)(struct ata_queued_cmd *))
5358{
5359 int nr_done = 0;
5360 u32 done_mask;
5361 int i;
5362
5363 done_mask = ap->qc_active ^ qc_active;
5364
5365 if (unlikely(done_mask & qc_active)) {
5366 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
5367 "(%08x->%08x)\n", ap->qc_active, qc_active);
5368 return -EINVAL;
5369 }
5370
5371 for (i = 0; i < ATA_MAX_QUEUE; i++) {
5372 struct ata_queued_cmd *qc;
5373
5374 if (!(done_mask & (1 << i)))
5375 continue;
5376
5377 if ((qc = ata_qc_from_tag(ap, i))) {
5378 if (finish_qc)
5379 finish_qc(qc);
5380 ata_qc_complete(qc);
5381 nr_done++;
5382 }
5383 }
5384
5385 return nr_done;
5386}
5387
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
5389{
5390 struct ata_port *ap = qc->ap;
5391
5392 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09005393 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 case ATA_PROT_DMA:
5395 case ATA_PROT_ATAPI_DMA:
5396 return 1;
5397
5398 case ATA_PROT_ATAPI:
5399 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400 if (ap->flags & ATA_FLAG_PIO_DMA)
5401 return 1;
5402
5403 /* fall through */
5404
5405 default:
5406 return 0;
5407 }
5408
5409 /* never reached */
5410}
5411
5412/**
5413 * ata_qc_issue - issue taskfile to device
5414 * @qc: command to issue to device
5415 *
5416 * Prepare an ATA command to submission to device.
5417 * This includes mapping the data into a DMA-able
5418 * area, filling in the S/G table, and finally
5419 * writing the taskfile to hardware, starting the command.
5420 *
5421 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005422 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09005424void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425{
5426 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005427 struct ata_link *link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428
Tejun Heodedaf2b2006-05-15 21:03:43 +09005429 /* Make sure only one non-NCQ command is outstanding. The
5430 * check is skipped for old EH because it reuses active qc to
5431 * request ATAPI sense.
5432 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005433 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09005434
5435 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005436 WARN_ON(link->sactive & (1 << qc->tag));
5437 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005438 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005439 WARN_ON(link->sactive);
5440 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005441 }
5442
Tejun Heoe4a70e72006-03-31 20:36:47 +09005443 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005444 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005445
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446 if (ata_should_dma_map(qc)) {
5447 if (qc->flags & ATA_QCFLAG_SG) {
5448 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005449 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
5451 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005452 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453 }
5454 } else {
5455 qc->flags &= ~ATA_QCFLAG_DMAMAP;
5456 }
5457
5458 ap->ops->qc_prep(qc);
5459
Tejun Heo8e0e6942006-03-31 20:41:11 +09005460 qc->err_mask |= ap->ops->qc_issue(qc);
5461 if (unlikely(qc->err_mask))
5462 goto err;
5463 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464
Tejun Heo8e436af2006-01-23 13:09:36 +09005465sg_err:
5466 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09005467 qc->err_mask |= AC_ERR_SYSTEM;
5468err:
5469 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470}
5471
5472/**
5473 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
5474 * @qc: command to issue to device
5475 *
5476 * Using various libata functions and hooks, this function
5477 * starts an ATA command. ATA commands are grouped into
5478 * classes called "protocols", and issuing each type of protocol
5479 * is slightly different.
5480 *
Edward Falk0baab862005-06-02 18:17:13 -04005481 * May be used as the qc_issue() entry in ata_port_operations.
5482 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005484 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 *
5486 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005487 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 */
5489
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005490unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491{
5492 struct ata_port *ap = qc->ap;
5493
Albert Leee50362e2005-09-27 17:39:50 +08005494 /* Use polling pio if the LLD doesn't handle
5495 * interrupt driven pio and atapi CDB interrupt.
5496 */
5497 if (ap->flags & ATA_FLAG_PIO_POLLING) {
5498 switch (qc->tf.protocol) {
5499 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08005500 case ATA_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08005501 case ATA_PROT_ATAPI:
5502 case ATA_PROT_ATAPI_NODATA:
5503 qc->tf.flags |= ATA_TFLAG_POLLING;
5504 break;
5505 case ATA_PROT_ATAPI_DMA:
5506 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08005507 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08005508 BUG();
5509 break;
5510 default:
5511 break;
5512 }
5513 }
5514
Albert Lee312f7da2005-09-27 17:38:03 +08005515 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516 ata_dev_select(ap, qc->dev->devno, 1, 0);
5517
Albert Lee312f7da2005-09-27 17:38:03 +08005518 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519 switch (qc->tf.protocol) {
5520 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005521 if (qc->tf.flags & ATA_TFLAG_POLLING)
5522 ata_qc_set_polling(qc);
5523
Jeff Garzike5338252005-10-30 21:37:17 -05005524 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005525 ap->hsm_task_state = HSM_ST_LAST;
5526
5527 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005528 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005529
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 break;
5531
5532 case ATA_PROT_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 */
5537 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005538 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539 break;
5540
Albert Lee312f7da2005-09-27 17:38:03 +08005541 case ATA_PROT_PIO:
5542 if (qc->tf.flags & ATA_TFLAG_POLLING)
5543 ata_qc_set_polling(qc);
5544
Jeff Garzike5338252005-10-30 21:37:17 -05005545 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005546
Albert Lee54f00382005-09-30 19:14:19 +08005547 if (qc->tf.flags & ATA_TFLAG_WRITE) {
5548 /* PIO data out protocol */
5549 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08005550 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08005551
5552 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08005553 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08005554 */
Albert Lee312f7da2005-09-27 17:38:03 +08005555 } else {
Albert Lee54f00382005-09-30 19:14:19 +08005556 /* PIO data in protocol */
5557 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08005558
Albert Lee54f00382005-09-30 19:14:19 +08005559 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005560 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005561
Albert Lee54f00382005-09-30 19:14:19 +08005562 /* if polling, ata_pio_task() handles the rest.
5563 * otherwise, interrupt handler takes over from here.
5564 */
Albert Lee312f7da2005-09-27 17:38:03 +08005565 }
5566
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567 break;
5568
5569 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005571 if (qc->tf.flags & ATA_TFLAG_POLLING)
5572 ata_qc_set_polling(qc);
5573
Jeff Garzike5338252005-10-30 21:37:17 -05005574 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05005575
Albert Lee312f7da2005-09-27 17:38:03 +08005576 ap->hsm_task_state = HSM_ST_FIRST;
5577
5578 /* send cdb by polling if no cdb interrupt */
5579 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
5580 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08005581 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582 break;
5583
5584 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005585 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005586
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5588 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005589 ap->hsm_task_state = HSM_ST_FIRST;
5590
5591 /* send cdb by polling if no cdb interrupt */
5592 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08005593 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594 break;
5595
5596 default:
5597 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005598 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599 }
5600
5601 return 0;
5602}
5603
5604/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 * ata_host_intr - Handle host interrupt for given (port, task)
5606 * @ap: Port on which interrupt arrived (possibly...)
5607 * @qc: Taskfile currently active in engine
5608 *
5609 * Handle host interrupt for given queued command. Currently,
5610 * only DMA interrupts are handled. All other commands are
5611 * handled via polling with interrupts disabled (nIEN bit).
5612 *
5613 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005614 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615 *
5616 * RETURNS:
5617 * One if interrupt was handled, zero if not (shared irq).
5618 */
5619
5620inline unsigned int ata_host_intr (struct ata_port *ap,
5621 struct ata_queued_cmd *qc)
5622{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005623 struct ata_eh_info *ehi = &ap->link.eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08005624 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625
Albert Lee312f7da2005-09-27 17:38:03 +08005626 VPRINTK("ata%u: protocol %d task_state %d\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005627 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628
Albert Lee312f7da2005-09-27 17:38:03 +08005629 /* Check whether we are expecting interrupt in this state */
5630 switch (ap->hsm_task_state) {
5631 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005632 /* Some pre-ATAPI-4 devices assert INTRQ
5633 * at this state when ready to receive CDB.
5634 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635
Albert Lee312f7da2005-09-27 17:38:03 +08005636 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
5637 * The flag was turned on only for atapi devices.
5638 * No need to check is_atapi_taskfile(&qc->tf) again.
5639 */
5640 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 break;
Albert Lee312f7da2005-09-27 17:38:03 +08005643 case HSM_ST_LAST:
5644 if (qc->tf.protocol == ATA_PROT_DMA ||
5645 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
5646 /* check status of DMA engine */
5647 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005648 VPRINTK("ata%u: host_stat 0x%X\n",
5649 ap->print_id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650
Albert Lee312f7da2005-09-27 17:38:03 +08005651 /* if it's not our irq... */
5652 if (!(host_stat & ATA_DMA_INTR))
5653 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654
Albert Lee312f7da2005-09-27 17:38:03 +08005655 /* before we do anything else, clear DMA-Start bit */
5656 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08005657
5658 if (unlikely(host_stat & ATA_DMA_ERR)) {
5659 /* error when transfering data to/from memory */
5660 qc->err_mask |= AC_ERR_HOST_BUS;
5661 ap->hsm_task_state = HSM_ST_ERR;
5662 }
Albert Lee312f7da2005-09-27 17:38:03 +08005663 }
5664 break;
5665 case HSM_ST:
5666 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667 default:
5668 goto idle_irq;
5669 }
5670
Albert Lee312f7da2005-09-27 17:38:03 +08005671 /* check altstatus */
5672 status = ata_altstatus(ap);
5673 if (status & ATA_BUSY)
5674 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675
Albert Lee312f7da2005-09-27 17:38:03 +08005676 /* check main status, clearing INTRQ */
5677 status = ata_chk_status(ap);
5678 if (unlikely(status & ATA_BUSY))
5679 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
Albert Lee312f7da2005-09-27 17:38:03 +08005681 /* ack bmdma irq events */
5682 ap->ops->irq_clear(ap);
5683
Albert Leebb5cb292006-03-25 17:48:02 +08005684 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09005685
5686 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
5687 qc->tf.protocol == ATA_PROT_ATAPI_DMA))
5688 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
5689
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690 return 1; /* irq handled */
5691
5692idle_irq:
5693 ap->stats.idle_irq++;
5694
5695#ifdef ATA_IRQ_TRAP
5696 if ((ap->stats.idle_irq % 1000) == 0) {
Akira Iguchi83625002007-01-26 16:27:32 +09005697 ap->ops->irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09005698 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00005699 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 }
5701#endif
5702 return 0; /* irq not handled */
5703}
5704
5705/**
5706 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04005707 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04005708 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005710 * Default interrupt handler for PCI IDE devices. Calls
5711 * ata_host_intr() for each port that is not disabled.
5712 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005714 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715 *
5716 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005717 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718 */
5719
David Howells7d12e782006-10-05 14:55:46 +01005720irqreturn_t ata_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721{
Jeff Garzikcca39742006-08-24 03:19:22 -04005722 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723 unsigned int i;
5724 unsigned int handled = 0;
5725 unsigned long flags;
5726
5727 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04005728 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729
Jeff Garzikcca39742006-08-24 03:19:22 -04005730 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731 struct ata_port *ap;
5732
Jeff Garzikcca39742006-08-24 03:19:22 -04005733 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09005734 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04005735 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736 struct ata_queued_cmd *qc;
5737
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005738 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08005739 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08005740 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741 handled |= ata_host_intr(ap, qc);
5742 }
5743 }
5744
Jeff Garzikcca39742006-08-24 03:19:22 -04005745 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746
5747 return IRQ_RETVAL(handled);
5748}
5749
Tejun Heo34bf2172006-05-15 20:57:46 +09005750/**
5751 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09005752 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09005753 *
Tejun Heo936fd732007-08-06 18:36:23 +09005754 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09005755 *
5756 * LOCKING:
5757 * None.
5758 *
5759 * RETURNS:
5760 * 1 if SCRs are accessible, 0 otherwise.
5761 */
Tejun Heo936fd732007-08-06 18:36:23 +09005762int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005763{
Tejun Heo936fd732007-08-06 18:36:23 +09005764 struct ata_port *ap = link->ap;
5765
Tejun Heoa16abc02007-05-21 18:33:47 +02005766 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09005767}
5768
5769/**
5770 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005771 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005772 * @reg: SCR to read
5773 * @val: Place to store read value
5774 *
Tejun Heo936fd732007-08-06 18:36:23 +09005775 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo34bf2172006-05-15 20:57:46 +09005776 * guaranteed to succeed if the cable type of the port is SATA
5777 * and the port implements ->scr_read.
5778 *
5779 * LOCKING:
5780 * None.
5781 *
5782 * RETURNS:
5783 * 0 on success, negative errno on failure.
5784 */
Tejun Heo936fd732007-08-06 18:36:23 +09005785int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005786{
Tejun Heo936fd732007-08-06 18:36:23 +09005787 struct ata_port *ap = link->ap;
5788
5789 if (sata_scr_valid(link))
Tejun Heoda3dbb12007-07-16 14:29:40 +09005790 return ap->ops->scr_read(ap, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005791 return -EOPNOTSUPP;
5792}
5793
5794/**
5795 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005796 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005797 * @reg: SCR to write
5798 * @val: value to write
5799 *
Tejun Heo936fd732007-08-06 18:36:23 +09005800 * Write @val to SCR register @reg of @link. This function is
Tejun Heo34bf2172006-05-15 20:57:46 +09005801 * guaranteed to succeed if the cable type of the port is SATA
5802 * and the port implements ->scr_read.
5803 *
5804 * LOCKING:
5805 * None.
5806 *
5807 * RETURNS:
5808 * 0 on success, negative errno on failure.
5809 */
Tejun Heo936fd732007-08-06 18:36:23 +09005810int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005811{
Tejun Heo936fd732007-08-06 18:36:23 +09005812 struct ata_port *ap = link->ap;
5813
5814 if (sata_scr_valid(link))
Tejun Heoda3dbb12007-07-16 14:29:40 +09005815 return ap->ops->scr_write(ap, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005816 return -EOPNOTSUPP;
5817}
5818
5819/**
5820 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09005821 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005822 * @reg: SCR to write
5823 * @val: value to write
5824 *
5825 * This function is identical to sata_scr_write() except that this
5826 * function performs flush after writing to the register.
5827 *
5828 * LOCKING:
5829 * None.
5830 *
5831 * RETURNS:
5832 * 0 on success, negative errno on failure.
5833 */
Tejun Heo936fd732007-08-06 18:36:23 +09005834int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005835{
Tejun Heo936fd732007-08-06 18:36:23 +09005836 struct ata_port *ap = link->ap;
Tejun Heoda3dbb12007-07-16 14:29:40 +09005837 int rc;
5838
Tejun Heo936fd732007-08-06 18:36:23 +09005839 if (sata_scr_valid(link)) {
Tejun Heoda3dbb12007-07-16 14:29:40 +09005840 rc = ap->ops->scr_write(ap, reg, val);
5841 if (rc == 0)
5842 rc = ap->ops->scr_read(ap, reg, &val);
5843 return rc;
Tejun Heo34bf2172006-05-15 20:57:46 +09005844 }
5845 return -EOPNOTSUPP;
5846}
5847
5848/**
Tejun Heo936fd732007-08-06 18:36:23 +09005849 * ata_link_online - test whether the given link is online
5850 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005851 *
Tejun Heo936fd732007-08-06 18:36:23 +09005852 * Test whether @link is online. Note that this function returns
5853 * 0 if online status of @link cannot be obtained, so
5854 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005855 *
5856 * LOCKING:
5857 * None.
5858 *
5859 * RETURNS:
5860 * 1 if the port online status is available and online.
5861 */
Tejun Heo936fd732007-08-06 18:36:23 +09005862int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005863{
5864 u32 sstatus;
5865
Tejun Heo936fd732007-08-06 18:36:23 +09005866 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5867 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09005868 return 1;
5869 return 0;
5870}
5871
5872/**
Tejun Heo936fd732007-08-06 18:36:23 +09005873 * ata_link_offline - test whether the given link is offline
5874 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005875 *
Tejun Heo936fd732007-08-06 18:36:23 +09005876 * Test whether @link is offline. Note that this function
5877 * returns 0 if offline status of @link cannot be obtained, so
5878 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005879 *
5880 * LOCKING:
5881 * None.
5882 *
5883 * RETURNS:
5884 * 1 if the port offline status is available and offline.
5885 */
Tejun Heo936fd732007-08-06 18:36:23 +09005886int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005887{
5888 u32 sstatus;
5889
Tejun Heo936fd732007-08-06 18:36:23 +09005890 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5891 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09005892 return 1;
5893 return 0;
5894}
Edward Falk0baab862005-06-02 18:17:13 -04005895
Tejun Heo77b08fb2006-06-24 20:30:19 +09005896int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005897{
Tejun Heo977e6b92006-06-24 20:30:19 +09005898 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01005899 u8 cmd;
5900
5901 if (!ata_try_flush_cache(dev))
5902 return 0;
5903
Tejun Heo6fc49ad2006-11-11 20:10:45 +09005904 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01005905 cmd = ATA_CMD_FLUSH_EXT;
5906 else
5907 cmd = ATA_CMD_FLUSH;
5908
Tejun Heo977e6b92006-06-24 20:30:19 +09005909 err_mask = ata_do_simple_cmd(dev, cmd);
5910 if (err_mask) {
5911 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
5912 return -EIO;
5913 }
5914
5915 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005916}
5917
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005918#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04005919static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5920 unsigned int action, unsigned int ehi_flags,
5921 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005922{
5923 unsigned long flags;
5924 int i, rc;
5925
Jeff Garzikcca39742006-08-24 03:19:22 -04005926 for (i = 0; i < host->n_ports; i++) {
5927 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09005928 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09005929
5930 /* Previous resume operation might still be in
5931 * progress. Wait for PM_PENDING to clear.
5932 */
5933 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5934 ata_port_wait_eh(ap);
5935 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5936 }
5937
5938 /* request PM ops to EH */
5939 spin_lock_irqsave(ap->lock, flags);
5940
5941 ap->pm_mesg = mesg;
5942 if (wait) {
5943 rc = 0;
5944 ap->pm_result = &rc;
5945 }
5946
5947 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09005948 __ata_port_for_each_link(link, ap) {
5949 link->eh_info.action |= action;
5950 link->eh_info.flags |= ehi_flags;
5951 }
Tejun Heo500530f2006-07-03 16:07:27 +09005952
5953 ata_port_schedule_eh(ap);
5954
5955 spin_unlock_irqrestore(ap->lock, flags);
5956
5957 /* wait and check result */
5958 if (wait) {
5959 ata_port_wait_eh(ap);
5960 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5961 if (rc)
5962 return rc;
5963 }
5964 }
5965
5966 return 0;
5967}
5968
5969/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005970 * ata_host_suspend - suspend host
5971 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09005972 * @mesg: PM message
5973 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005974 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005975 * function requests EH to perform PM operations and waits for EH
5976 * to finish.
5977 *
5978 * LOCKING:
5979 * Kernel thread context (may sleep).
5980 *
5981 * RETURNS:
5982 * 0 on success, -errno on failure.
5983 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005984int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005985{
Tejun Heo9666f402007-05-04 21:27:47 +02005986 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005987
Jeff Garzikcca39742006-08-24 03:19:22 -04005988 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Tejun Heo9666f402007-05-04 21:27:47 +02005989 if (rc == 0)
5990 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005991 return rc;
5992}
5993
5994/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005995 * ata_host_resume - resume host
5996 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005997 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005998 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005999 * function requests EH to perform PM operations and returns.
6000 * Note that all resume operations are performed parallely.
6001 *
6002 * LOCKING:
6003 * Kernel thread context (may sleep).
6004 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006005void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09006006{
Jeff Garzikcca39742006-08-24 03:19:22 -04006007 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
6008 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
6009 host->dev->power.power_state = PMSG_ON;
Tejun Heo500530f2006-07-03 16:07:27 +09006010}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006011#endif
Tejun Heo500530f2006-07-03 16:07:27 +09006012
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006013/**
6014 * ata_port_start - Set port up for dma.
6015 * @ap: Port to initialize
6016 *
6017 * Called just after data structures for each port are
6018 * initialized. Allocates space for PRD table.
6019 *
6020 * May be used as the port_start() entry in ata_port_operations.
6021 *
6022 * LOCKING:
6023 * Inherited from caller.
6024 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006025int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026{
Brian King2f1f6102006-03-23 17:30:15 -06006027 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006028 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029
Tejun Heof0d36ef2007-01-20 16:00:28 +09006030 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
6031 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032 if (!ap->prd)
6033 return -ENOMEM;
6034
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006035 rc = ata_pad_alloc(ap, dev);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006036 if (rc)
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006037 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04006038
Tejun Heof0d36ef2007-01-20 16:00:28 +09006039 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd,
6040 (unsigned long long)ap->prd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 return 0;
6042}
6043
Edward Falk0baab862005-06-02 18:17:13 -04006044/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09006045 * ata_dev_init - Initialize an ata_device structure
6046 * @dev: Device structure to initialize
6047 *
6048 * Initialize @dev in preparation for probing.
6049 *
6050 * LOCKING:
6051 * Inherited from caller.
6052 */
6053void ata_dev_init(struct ata_device *dev)
6054{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006055 struct ata_link *link = dev->link;
6056 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09006057 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09006058
Tejun Heo5a04bf42006-05-31 18:27:38 +09006059 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006060 link->sata_spd_limit = link->hw_sata_spd_limit;
6061 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006062
Tejun Heo72fa4b72006-05-31 18:27:32 +09006063 /* High bits of dev->flags are used to record warm plug
6064 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04006065 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09006066 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006067 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006068 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09006069 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006070 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006071
6072 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
6073 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09006074 dev->pio_mask = UINT_MAX;
6075 dev->mwdma_mask = UINT_MAX;
6076 dev->udma_mask = UINT_MAX;
6077}
6078
6079/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09006080 * ata_link_init - Initialize an ata_link structure
6081 * @ap: ATA port link is attached to
6082 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09006083 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09006084 *
6085 * Initialize @link.
6086 *
6087 * LOCKING:
6088 * Kernel thread context (may sleep)
6089 */
Tejun Heo89898052007-08-06 18:36:23 +09006090static void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09006091{
6092 int i;
6093
6094 /* clear everything except for devices */
6095 memset(link, 0, offsetof(struct ata_link, device[0]));
6096
6097 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09006098 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09006099 link->active_tag = ATA_TAG_POISON;
6100 link->hw_sata_spd_limit = UINT_MAX;
6101
6102 /* can't use iterator, ap isn't initialized yet */
6103 for (i = 0; i < ATA_MAX_DEVICES; i++) {
6104 struct ata_device *dev = &link->device[i];
6105
6106 dev->link = link;
6107 dev->devno = dev - link->device;
6108 ata_dev_init(dev);
6109 }
6110}
6111
6112/**
6113 * sata_link_init_spd - Initialize link->sata_spd_limit
6114 * @link: Link to configure sata_spd_limit for
6115 *
6116 * Initialize @link->[hw_]sata_spd_limit to the currently
6117 * configured value.
6118 *
6119 * LOCKING:
6120 * Kernel thread context (may sleep).
6121 *
6122 * RETURNS:
6123 * 0 on success, -errno on failure.
6124 */
6125static int sata_link_init_spd(struct ata_link *link)
6126{
6127 u32 scontrol, spd;
6128 int rc;
6129
6130 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
6131 if (rc)
6132 return rc;
6133
6134 spd = (scontrol >> 4) & 0xf;
6135 if (spd)
6136 link->hw_sata_spd_limit &= (1 << spd) - 1;
6137
6138 link->sata_spd_limit = link->hw_sata_spd_limit;
6139
6140 return 0;
6141}
6142
6143/**
Tejun Heof3187192007-04-17 23:44:07 +09006144 * ata_port_alloc - allocate and initialize basic ATA port resources
6145 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146 *
Tejun Heof3187192007-04-17 23:44:07 +09006147 * Allocate and initialize basic ATA port resources.
6148 *
6149 * RETURNS:
6150 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04006151 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006153 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154 */
Tejun Heof3187192007-04-17 23:44:07 +09006155struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156{
Tejun Heof3187192007-04-17 23:44:07 +09006157 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
Tejun Heof3187192007-04-17 23:44:07 +09006159 DPRINTK("ENTER\n");
6160
6161 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
6162 if (!ap)
6163 return NULL;
6164
Tejun Heof4d6d002007-05-01 11:50:15 +02006165 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04006166 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09006167 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09006168 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04006170 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09006171 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006173
6174#if defined(ATA_VERBOSE_DEBUG)
6175 /* turn on all debugging levels */
6176 ap->msg_enable = 0x00FF;
6177#elif defined(ATA_DEBUG)
6178 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 +09006179#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04006180 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006181#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182
David Howells65f27f32006-11-22 14:55:48 +00006183 INIT_DELAYED_WORK(&ap->port_task, NULL);
6184 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
6185 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09006186 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09006187 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09006188 init_timer_deferrable(&ap->fastdrain_timer);
6189 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
6190 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191
Tejun Heo838df622006-05-15 20:57:44 +09006192 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09006193
Tejun Heo89898052007-08-06 18:36:23 +09006194 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195
6196#ifdef ATA_IRQ_TRAP
6197 ap->stats.unhandled_irq = 1;
6198 ap->stats.idle_irq = 1;
6199#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201}
6202
Tejun Heof0d36ef2007-01-20 16:00:28 +09006203static void ata_host_release(struct device *gendev, void *res)
6204{
6205 struct ata_host *host = dev_get_drvdata(gendev);
6206 int i;
6207
6208 for (i = 0; i < host->n_ports; i++) {
6209 struct ata_port *ap = host->ports[i];
6210
Tejun Heoecef7252007-04-17 23:44:06 +09006211 if (!ap)
6212 continue;
6213
6214 if ((host->flags & ATA_HOST_STARTED) && ap->ops->port_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006215 ap->ops->port_stop(ap);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006216 }
6217
Tejun Heoecef7252007-04-17 23:44:06 +09006218 if ((host->flags & ATA_HOST_STARTED) && host->ops->host_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006219 host->ops->host_stop(host);
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006220
Tejun Heo1aa506e2007-03-09 19:36:12 +09006221 for (i = 0; i < host->n_ports; i++) {
6222 struct ata_port *ap = host->ports[i];
6223
Tejun Heo49114872007-04-17 23:44:06 +09006224 if (!ap)
6225 continue;
6226
6227 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09006228 scsi_host_put(ap->scsi_host);
6229
Tejun Heo49114872007-04-17 23:44:06 +09006230 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09006231 host->ports[i] = NULL;
6232 }
6233
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006234 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006235}
6236
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237/**
Tejun Heof3187192007-04-17 23:44:07 +09006238 * ata_host_alloc - allocate and init basic ATA host resources
6239 * @dev: generic device this host is associated with
6240 * @max_ports: maximum number of ATA ports associated with this host
6241 *
6242 * Allocate and initialize basic ATA host resources. LLD calls
6243 * this function to allocate a host, initializes it fully and
6244 * attaches it using ata_host_register().
6245 *
6246 * @max_ports ports are allocated and host->n_ports is
6247 * initialized to @max_ports. The caller is allowed to decrease
6248 * host->n_ports before calling ata_host_register(). The unused
6249 * ports will be automatically freed on registration.
6250 *
6251 * RETURNS:
6252 * Allocate ATA host on success, NULL on failure.
6253 *
6254 * LOCKING:
6255 * Inherited from calling layer (may sleep).
6256 */
6257struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
6258{
6259 struct ata_host *host;
6260 size_t sz;
6261 int i;
6262
6263 DPRINTK("ENTER\n");
6264
6265 if (!devres_open_group(dev, NULL, GFP_KERNEL))
6266 return NULL;
6267
6268 /* alloc a container for our list of ATA ports (buses) */
6269 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
6270 /* alloc a container for our list of ATA ports (buses) */
6271 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
6272 if (!host)
6273 goto err_out;
6274
6275 devres_add(dev, host);
6276 dev_set_drvdata(dev, host);
6277
6278 spin_lock_init(&host->lock);
6279 host->dev = dev;
6280 host->n_ports = max_ports;
6281
6282 /* allocate ports bound to this host */
6283 for (i = 0; i < max_ports; i++) {
6284 struct ata_port *ap;
6285
6286 ap = ata_port_alloc(host);
6287 if (!ap)
6288 goto err_out;
6289
6290 ap->port_no = i;
6291 host->ports[i] = ap;
6292 }
6293
6294 devres_remove_group(dev, NULL);
6295 return host;
6296
6297 err_out:
6298 devres_release_group(dev, NULL);
6299 return NULL;
6300}
6301
6302/**
Tejun Heof5cda252007-04-17 23:44:07 +09006303 * ata_host_alloc_pinfo - alloc host and init with port_info array
6304 * @dev: generic device this host is associated with
6305 * @ppi: array of ATA port_info to initialize host with
6306 * @n_ports: number of ATA ports attached to this host
6307 *
6308 * Allocate ATA host and initialize with info from @ppi. If NULL
6309 * terminated, @ppi may contain fewer entries than @n_ports. The
6310 * last entry will be used for the remaining ports.
6311 *
6312 * RETURNS:
6313 * Allocate ATA host on success, NULL on failure.
6314 *
6315 * LOCKING:
6316 * Inherited from calling layer (may sleep).
6317 */
6318struct ata_host *ata_host_alloc_pinfo(struct device *dev,
6319 const struct ata_port_info * const * ppi,
6320 int n_ports)
6321{
6322 const struct ata_port_info *pi;
6323 struct ata_host *host;
6324 int i, j;
6325
6326 host = ata_host_alloc(dev, n_ports);
6327 if (!host)
6328 return NULL;
6329
6330 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
6331 struct ata_port *ap = host->ports[i];
6332
6333 if (ppi[j])
6334 pi = ppi[j++];
6335
6336 ap->pio_mask = pi->pio_mask;
6337 ap->mwdma_mask = pi->mwdma_mask;
6338 ap->udma_mask = pi->udma_mask;
6339 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09006340 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09006341 ap->ops = pi->port_ops;
6342
6343 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
6344 host->ops = pi->port_ops;
6345 if (!host->private_data && pi->private_data)
6346 host->private_data = pi->private_data;
6347 }
6348
6349 return host;
6350}
6351
6352/**
Tejun Heoecef7252007-04-17 23:44:06 +09006353 * ata_host_start - start and freeze ports of an ATA host
6354 * @host: ATA host to start ports for
6355 *
6356 * Start and then freeze ports of @host. Started status is
6357 * recorded in host->flags, so this function can be called
6358 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09006359 * once. If host->ops isn't initialized yet, its set to the
6360 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09006361 *
6362 * LOCKING:
6363 * Inherited from calling layer (may sleep).
6364 *
6365 * RETURNS:
6366 * 0 if all ports are started successfully, -errno otherwise.
6367 */
6368int ata_host_start(struct ata_host *host)
6369{
6370 int i, rc;
6371
6372 if (host->flags & ATA_HOST_STARTED)
6373 return 0;
6374
6375 for (i = 0; i < host->n_ports; i++) {
6376 struct ata_port *ap = host->ports[i];
6377
Tejun Heof3187192007-04-17 23:44:07 +09006378 if (!host->ops && !ata_port_is_dummy(ap))
6379 host->ops = ap->ops;
6380
Tejun Heoecef7252007-04-17 23:44:06 +09006381 if (ap->ops->port_start) {
6382 rc = ap->ops->port_start(ap);
6383 if (rc) {
6384 ata_port_printk(ap, KERN_ERR, "failed to "
6385 "start port (errno=%d)\n", rc);
6386 goto err_out;
6387 }
6388 }
6389
6390 ata_eh_freeze_port(ap);
6391 }
6392
6393 host->flags |= ATA_HOST_STARTED;
6394 return 0;
6395
6396 err_out:
6397 while (--i >= 0) {
6398 struct ata_port *ap = host->ports[i];
6399
6400 if (ap->ops->port_stop)
6401 ap->ops->port_stop(ap);
6402 }
6403 return rc;
6404}
6405
6406/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006407 * ata_sas_host_init - Initialize a host struct
6408 * @host: host to initialize
6409 * @dev: device host is attached to
6410 * @flags: host flags
6411 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05006412 *
6413 * LOCKING:
6414 * PCI/etc. bus probe sem.
6415 *
6416 */
Tejun Heof3187192007-04-17 23:44:07 +09006417/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04006418void ata_host_init(struct ata_host *host, struct device *dev,
6419 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05006420{
Jeff Garzikcca39742006-08-24 03:19:22 -04006421 spin_lock_init(&host->lock);
6422 host->dev = dev;
6423 host->flags = flags;
6424 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05006425}
6426
6427/**
Tejun Heof3187192007-04-17 23:44:07 +09006428 * ata_host_register - register initialized ATA host
6429 * @host: ATA host to register
6430 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04006431 *
Tejun Heof3187192007-04-17 23:44:07 +09006432 * Register initialized ATA host. @host is allocated using
6433 * ata_host_alloc() and fully initialized by LLD. This function
6434 * starts ports, registers @host with ATA and SCSI layers and
6435 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436 *
6437 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006438 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439 *
6440 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09006441 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442 */
Tejun Heof3187192007-04-17 23:44:07 +09006443int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444{
Tejun Heof3187192007-04-17 23:44:07 +09006445 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446
Tejun Heof3187192007-04-17 23:44:07 +09006447 /* host must have been started */
6448 if (!(host->flags & ATA_HOST_STARTED)) {
6449 dev_printk(KERN_ERR, host->dev,
6450 "BUG: trying to register unstarted host\n");
6451 WARN_ON(1);
6452 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01006453 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09006454
Tejun Heof3187192007-04-17 23:44:07 +09006455 /* Blow away unused ports. This happens when LLD can't
6456 * determine the exact number of ports to allocate at
6457 * allocation time.
6458 */
6459 for (i = host->n_ports; host->ports[i]; i++)
6460 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461
Tejun Heof3187192007-04-17 23:44:07 +09006462 /* give ports names and add SCSI hosts */
6463 for (i = 0; i < host->n_ports; i++)
6464 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006465
Tejun Heof3187192007-04-17 23:44:07 +09006466 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006467 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006468 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006469
Tejun Heofafbae82007-05-15 03:28:16 +09006470 /* associate with ACPI nodes */
6471 ata_acpi_associate(host);
6472
Tejun Heof3187192007-04-17 23:44:07 +09006473 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006474 for (i = 0; i < host->n_ports; i++) {
6475 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006476 int irq_line;
Tejun Heof3187192007-04-17 23:44:07 +09006477 unsigned long xfer_mask;
6478
6479 /* set SATA cable type if still unset */
6480 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6481 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482
Tejun Heo5a04bf42006-05-31 18:27:38 +09006483 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09006484 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09006485
Tejun Heof3187192007-04-17 23:44:07 +09006486 /* report the secondary IRQ for second channel legacy */
6487 irq_line = host->irq;
6488 if (i == 1 && host->irq2)
6489 irq_line = host->irq2;
Tejun Heo3e706392006-05-31 18:28:11 +09006490
Tejun Heof3187192007-04-17 23:44:07 +09006491 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6492 ap->udma_mask);
6493
6494 /* print per-port info to dmesg */
6495 if (!ata_port_is_dummy(ap))
6496 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%p "
6497 "ctl 0x%p bmdma 0x%p irq %d\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02006498 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09006499 ata_mode_string(xfer_mask),
6500 ap->ioaddr.cmd_addr,
6501 ap->ioaddr.ctl_addr,
6502 ap->ioaddr.bmdma_addr,
6503 irq_line);
6504 else
6505 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6506 }
6507
6508 /* perform each probe synchronously */
6509 DPRINTK("probe begin\n");
6510 for (i = 0; i < host->n_ports; i++) {
6511 struct ata_port *ap = host->ports[i];
6512 int rc;
6513
6514 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09006515 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006516 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09006517 unsigned long flags;
6518
6519 ata_port_probe(ap);
6520
6521 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006522 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006523
Tejun Heof58229f2007-08-06 18:36:23 +09006524 ehi->probe_mask =
6525 (1 << ata_link_max_devices(&ap->link)) - 1;
Tejun Heo1cdaf532006-07-03 16:07:26 +09006526 ehi->action |= ATA_EH_SOFTRESET;
6527 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09006528
Tejun Heof4d6d002007-05-01 11:50:15 +02006529 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09006530 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09006531 ata_port_schedule_eh(ap);
6532
Jeff Garzikba6a1302006-06-22 23:46:10 -04006533 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006534
6535 /* wait for EH to finish */
6536 ata_port_wait_eh(ap);
6537 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09006538 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006539 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09006540 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006541
6542 if (rc) {
6543 /* FIXME: do something useful here?
6544 * Current libata behavior will
6545 * tear down everything when
6546 * the module is removed
6547 * or the h/w is unplugged.
6548 */
6549 }
6550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551 }
6552
6553 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006554 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04006555 for (i = 0; i < host->n_ports; i++) {
6556 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557
Tejun Heo1ae46312007-07-16 14:29:40 +09006558 ata_scsi_scan_host(ap, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559 }
6560
Tejun Heof3187192007-04-17 23:44:07 +09006561 return 0;
6562}
6563
6564/**
Tejun Heof5cda252007-04-17 23:44:07 +09006565 * ata_host_activate - start host, request IRQ and register it
6566 * @host: target ATA host
6567 * @irq: IRQ to request
6568 * @irq_handler: irq_handler used when requesting IRQ
6569 * @irq_flags: irq_flags used when requesting IRQ
6570 * @sht: scsi_host_template to use when registering the host
6571 *
6572 * After allocating an ATA host and initializing it, most libata
6573 * LLDs perform three steps to activate the host - start host,
6574 * request IRQ and register it. This helper takes necessasry
6575 * arguments and performs the three steps in one go.
6576 *
6577 * LOCKING:
6578 * Inherited from calling layer (may sleep).
6579 *
6580 * RETURNS:
6581 * 0 on success, -errno otherwise.
6582 */
6583int ata_host_activate(struct ata_host *host, int irq,
6584 irq_handler_t irq_handler, unsigned long irq_flags,
6585 struct scsi_host_template *sht)
6586{
6587 int rc;
6588
6589 rc = ata_host_start(host);
6590 if (rc)
6591 return rc;
6592
6593 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6594 dev_driver_string(host->dev), host);
6595 if (rc)
6596 return rc;
6597
Tejun Heo40318262007-07-03 01:38:47 +09006598 /* Used to print device info at probe */
6599 host->irq = irq;
6600
Tejun Heof5cda252007-04-17 23:44:07 +09006601 rc = ata_host_register(host, sht);
6602 /* if failed, just free the IRQ and leave ports alone */
6603 if (rc)
6604 devm_free_irq(host->dev, irq, host);
6605
6606 return rc;
6607}
6608
6609/**
Tejun Heo720ba122006-05-31 18:28:13 +09006610 * ata_port_detach - Detach ATA port in prepration of device removal
6611 * @ap: ATA port to be detached
6612 *
6613 * Detach all ATA devices and the associated SCSI devices of @ap;
6614 * then, remove the associated SCSI host. @ap is guaranteed to
6615 * be quiescent on return from this function.
6616 *
6617 * LOCKING:
6618 * Kernel thread context (may sleep).
6619 */
6620void ata_port_detach(struct ata_port *ap)
6621{
6622 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09006623 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09006624 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09006625
6626 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006627 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006628
6629 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006630 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006631 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006632 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006633
6634 ata_port_wait_eh(ap);
6635
6636 /* EH is now guaranteed to see UNLOADING, so no new device
6637 * will be attached. Disable all existing devices.
6638 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006639 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006640
Tejun Heo41bda9c2007-08-06 18:36:24 +09006641 ata_port_for_each_link(link, ap) {
6642 ata_link_for_each_dev(dev, link)
6643 ata_dev_disable(dev);
6644 }
Tejun Heo720ba122006-05-31 18:28:13 +09006645
Jeff Garzikba6a1302006-06-22 23:46:10 -04006646 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006647
6648 /* Final freeze & EH. All in-flight commands are aborted. EH
6649 * will be skipped and retrials will be terminated with bad
6650 * target.
6651 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006652 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006653 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006654 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006655
6656 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07006657 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09006658
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006659 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006660 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006661 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006662}
6663
6664/**
Tejun Heo0529c1592007-01-20 16:00:26 +09006665 * ata_host_detach - Detach all ports of an ATA host
6666 * @host: Host to detach
6667 *
6668 * Detach all ports of @host.
6669 *
6670 * LOCKING:
6671 * Kernel thread context (may sleep).
6672 */
6673void ata_host_detach(struct ata_host *host)
6674{
6675 int i;
6676
6677 for (i = 0; i < host->n_ports; i++)
6678 ata_port_detach(host->ports[i]);
6679}
6680
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681/**
6682 * ata_std_ports - initialize ioaddr with standard port offsets.
6683 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04006684 *
6685 * Utility function which initializes data_addr, error_addr,
6686 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
6687 * device_addr, status_addr, and command_addr to standard offsets
6688 * relative to cmd_addr.
6689 *
6690 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691 */
Edward Falk0baab862005-06-02 18:17:13 -04006692
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693void ata_std_ports(struct ata_ioports *ioaddr)
6694{
6695 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
6696 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
6697 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
6698 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
6699 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
6700 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
6701 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
6702 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
6703 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
6704 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
6705}
6706
Edward Falk0baab862005-06-02 18:17:13 -04006707
Jeff Garzik374b1872005-08-30 05:42:52 -04006708#ifdef CONFIG_PCI
6709
Edward Falk0baab862005-06-02 18:17:13 -04006710/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711 * ata_pci_remove_one - PCI layer callback for device removal
6712 * @pdev: PCI device that was removed
6713 *
Tejun Heob878ca52007-01-20 16:00:28 +09006714 * PCI layer indicates to libata via this hook that hot-unplug or
6715 * module unload event has occurred. Detach all ports. Resource
6716 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717 *
6718 * LOCKING:
6719 * Inherited from PCI layer (may sleep).
6720 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006721void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722{
6723 struct device *dev = pci_dev_to_dev(pdev);
Jeff Garzikcca39742006-08-24 03:19:22 -04006724 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725
Tejun Heob878ca52007-01-20 16:00:28 +09006726 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727}
6728
6729/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006730int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731{
6732 unsigned long tmp = 0;
6733
6734 switch (bits->width) {
6735 case 1: {
6736 u8 tmp8 = 0;
6737 pci_read_config_byte(pdev, bits->reg, &tmp8);
6738 tmp = tmp8;
6739 break;
6740 }
6741 case 2: {
6742 u16 tmp16 = 0;
6743 pci_read_config_word(pdev, bits->reg, &tmp16);
6744 tmp = tmp16;
6745 break;
6746 }
6747 case 4: {
6748 u32 tmp32 = 0;
6749 pci_read_config_dword(pdev, bits->reg, &tmp32);
6750 tmp = tmp32;
6751 break;
6752 }
6753
6754 default:
6755 return -EINVAL;
6756 }
6757
6758 tmp &= bits->mask;
6759
6760 return (tmp == bits->val) ? 1 : 0;
6761}
Jens Axboe9b847542006-01-06 09:28:07 +01006762
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006763#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09006764void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006765{
6766 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09006767 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006768
Tejun Heo4c90d972007-02-20 18:14:48 +09006769 if (mesg.event == PM_EVENT_SUSPEND)
Tejun Heo500530f2006-07-03 16:07:27 +09006770 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01006771}
6772
Tejun Heo553c4aa2006-12-26 19:39:50 +09006773int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006774{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006775 int rc;
6776
Jens Axboe9b847542006-01-06 09:28:07 +01006777 pci_set_power_state(pdev, PCI_D0);
6778 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006779
Tejun Heob878ca52007-01-20 16:00:28 +09006780 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006781 if (rc) {
6782 dev_printk(KERN_ERR, &pdev->dev,
6783 "failed to enable device after resume (%d)\n", rc);
6784 return rc;
6785 }
6786
Jens Axboe9b847542006-01-06 09:28:07 +01006787 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006788 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006789}
6790
Tejun Heo3c5100c2006-07-26 16:58:33 +09006791int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006792{
Jeff Garzikcca39742006-08-24 03:19:22 -04006793 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006794 int rc = 0;
6795
Jeff Garzikcca39742006-08-24 03:19:22 -04006796 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006797 if (rc)
6798 return rc;
6799
Tejun Heo3c5100c2006-07-26 16:58:33 +09006800 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006801
6802 return 0;
6803}
6804
6805int ata_pci_device_resume(struct pci_dev *pdev)
6806{
Jeff Garzikcca39742006-08-24 03:19:22 -04006807 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006808 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006809
Tejun Heo553c4aa2006-12-26 19:39:50 +09006810 rc = ata_pci_device_do_resume(pdev);
6811 if (rc == 0)
6812 ata_host_resume(host);
6813 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006814}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006815#endif /* CONFIG_PM */
6816
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817#endif /* CONFIG_PCI */
6818
6819
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820static int __init ata_init(void)
6821{
Andrew Mortona8601e52006-06-25 01:36:52 -07006822 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823 ata_wq = create_workqueue("ata");
6824 if (!ata_wq)
6825 return -ENOMEM;
6826
Tejun Heo453b07a2006-05-31 18:27:42 +09006827 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6828 if (!ata_aux_wq) {
6829 destroy_workqueue(ata_wq);
6830 return -ENOMEM;
6831 }
6832
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6834 return 0;
6835}
6836
6837static void __exit ata_exit(void)
6838{
6839 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006840 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841}
6842
Brian Kinga4625082006-11-13 16:32:36 -06006843subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844module_exit(ata_exit);
6845
Jeff Garzik67846b32005-10-05 02:58:32 -04006846static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006847static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006848
6849int ata_ratelimit(void)
6850{
6851 int rc;
6852 unsigned long flags;
6853
6854 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6855
6856 if (time_after(jiffies, ratelimit_time)) {
6857 rc = 1;
6858 ratelimit_time = jiffies + (HZ/5);
6859 } else
6860 rc = 0;
6861
6862 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6863
6864 return rc;
6865}
6866
Tejun Heoc22daff2006-04-11 22:22:29 +09006867/**
6868 * ata_wait_register - wait until register value changes
6869 * @reg: IO-mapped register
6870 * @mask: Mask to apply to read register value
6871 * @val: Wait condition
6872 * @interval_msec: polling interval in milliseconds
6873 * @timeout_msec: timeout in milliseconds
6874 *
6875 * Waiting for some bits of register to change is a common
6876 * operation for ATA controllers. This function reads 32bit LE
6877 * IO-mapped register @reg and tests for the following condition.
6878 *
6879 * (*@reg & mask) != val
6880 *
6881 * If the condition is met, it returns; otherwise, the process is
6882 * repeated after @interval_msec until timeout.
6883 *
6884 * LOCKING:
6885 * Kernel thread context (may sleep)
6886 *
6887 * RETURNS:
6888 * The final register value.
6889 */
6890u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6891 unsigned long interval_msec,
6892 unsigned long timeout_msec)
6893{
6894 unsigned long timeout;
6895 u32 tmp;
6896
6897 tmp = ioread32(reg);
6898
6899 /* Calculate timeout _after_ the first read to make sure
6900 * preceding writes reach the controller before starting to
6901 * eat away the timeout.
6902 */
6903 timeout = jiffies + (timeout_msec * HZ) / 1000;
6904
6905 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6906 msleep(interval_msec);
6907 tmp = ioread32(reg);
6908 }
6909
6910 return tmp;
6911}
6912
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006914 * Dummy port_ops
6915 */
6916static void ata_dummy_noret(struct ata_port *ap) { }
6917static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
6918static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
6919
6920static u8 ata_dummy_check_status(struct ata_port *ap)
6921{
6922 return ATA_DRDY;
6923}
6924
6925static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6926{
6927 return AC_ERR_SYSTEM;
6928}
6929
6930const struct ata_port_operations ata_dummy_port_ops = {
6931 .port_disable = ata_port_disable,
6932 .check_status = ata_dummy_check_status,
6933 .check_altstatus = ata_dummy_check_status,
6934 .dev_select = ata_noop_dev_select,
6935 .qc_prep = ata_noop_qc_prep,
6936 .qc_issue = ata_dummy_qc_issue,
6937 .freeze = ata_dummy_noret,
6938 .thaw = ata_dummy_noret,
6939 .error_handler = ata_dummy_noret,
6940 .post_internal_cmd = ata_dummy_qc_noret,
6941 .irq_clear = ata_dummy_noret,
6942 .port_start = ata_dummy_ret0,
6943 .port_stop = ata_dummy_noret,
6944};
6945
Tejun Heo21b0ad42007-04-17 23:44:07 +09006946const struct ata_port_info ata_dummy_port_info = {
6947 .port_ops = &ata_dummy_port_ops,
6948};
6949
Tejun Heodd5b06c2006-08-10 16:59:12 +09006950/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951 * libata is essentially a library of internal helper functions for
6952 * low-level ATA host controller drivers. As such, the API/ABI is
6953 * likely to change as new drivers are added and updated.
6954 * Do not depend on ABI/API stability.
6955 */
6956
Tejun Heoe9c83912006-07-03 16:07:26 +09006957EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6958EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6959EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006960EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006961EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962EXPORT_SYMBOL_GPL(ata_std_bios_param);
6963EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04006964EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006965EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006966EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09006967EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006968EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006969EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c1592007-01-20 16:00:26 +09006970EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971EXPORT_SYMBOL_GPL(ata_sg_init);
6972EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09006973EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09006974EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006975EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977EXPORT_SYMBOL_GPL(ata_tf_load);
6978EXPORT_SYMBOL_GPL(ata_tf_read);
6979EXPORT_SYMBOL_GPL(ata_noop_dev_select);
6980EXPORT_SYMBOL_GPL(ata_std_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05006981EXPORT_SYMBOL_GPL(sata_print_link_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006982EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6983EXPORT_SYMBOL_GPL(ata_tf_from_fis);
6984EXPORT_SYMBOL_GPL(ata_check_status);
6985EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986EXPORT_SYMBOL_GPL(ata_exec_command);
6987EXPORT_SYMBOL_GPL(ata_port_start);
Alan Coxd92e74d2007-06-07 16:19:15 +01006988EXPORT_SYMBOL_GPL(ata_sff_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989EXPORT_SYMBOL_GPL(ata_interrupt);
Alan04351822007-03-06 02:37:52 -08006990EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo0d5ff562007-02-01 15:06:36 +09006991EXPORT_SYMBOL_GPL(ata_data_xfer);
6992EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006993EXPORT_SYMBOL_GPL(ata_qc_prep);
Alan Coxd26fc952007-07-06 19:13:52 -04006994EXPORT_SYMBOL_GPL(ata_dumb_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06006995EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996EXPORT_SYMBOL_GPL(ata_bmdma_setup);
6997EXPORT_SYMBOL_GPL(ata_bmdma_start);
6998EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
6999EXPORT_SYMBOL_GPL(ata_bmdma_status);
7000EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09007001EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
7002EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
7003EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
7004EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
7005EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00007007EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09007008EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heo936fd732007-08-06 18:36:23 +09007009EXPORT_SYMBOL_GPL(sata_link_debounce);
7010EXPORT_SYMBOL_GPL(sata_link_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011EXPORT_SYMBOL_GPL(sata_phy_reset);
7012EXPORT_SYMBOL_GPL(__sata_phy_reset);
7013EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09007014EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007015EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heocc0680a2007-08-06 18:36:23 +09007016EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007017EXPORT_SYMBOL_GPL(sata_std_hardreset);
7018EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05007019EXPORT_SYMBOL_GPL(ata_dev_classify);
7020EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007021EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04007022EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09007023EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09007024EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heod4b2bab2007-02-02 16:50:52 +09007025EXPORT_SYMBOL_GPL(ata_wait_ready);
Tejun Heo86e45b62006-03-05 15:29:09 +09007026EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
7028EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09007030EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09007031EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09007033EXPORT_SYMBOL_GPL(sata_scr_valid);
7034EXPORT_SYMBOL_GPL(sata_scr_read);
7035EXPORT_SYMBOL_GPL(sata_scr_write);
7036EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09007037EXPORT_SYMBOL_GPL(ata_link_online);
7038EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007039#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04007040EXPORT_SYMBOL_GPL(ata_host_suspend);
7041EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007042#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09007043EXPORT_SYMBOL_GPL(ata_id_string);
7044EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan10305f02007-02-20 18:01:59 +00007045EXPORT_SYMBOL_GPL(ata_id_to_dma_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046EXPORT_SYMBOL_GPL(ata_scsi_simulate);
7047
Alan Cox1bc4ccf2006-01-09 17:18:14 +00007048EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04007049EXPORT_SYMBOL_GPL(ata_timing_compute);
7050EXPORT_SYMBOL_GPL(ata_timing_merge);
7051
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052#ifdef CONFIG_PCI
7053EXPORT_SYMBOL_GPL(pci_test_config_bits);
Tejun Heod583bc12007-07-04 18:02:07 +09007054EXPORT_SYMBOL_GPL(ata_pci_init_sff_host);
Tejun Heo1626aeb2007-05-04 12:43:58 +02007055EXPORT_SYMBOL_GPL(ata_pci_init_bmdma);
Tejun Heod583bc12007-07-04 18:02:07 +09007056EXPORT_SYMBOL_GPL(ata_pci_prepare_sff_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057EXPORT_SYMBOL_GPL(ata_pci_init_one);
7058EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007059#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09007060EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
7061EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01007062EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
7063EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007064#endif /* CONFIG_PM */
Alan Cox67951ad2006-03-22 15:55:54 +00007065EXPORT_SYMBOL_GPL(ata_pci_default_filter);
7066EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01007068
Tejun Heob64bbc32007-07-16 14:29:39 +09007069EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
7070EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
7071EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heoece1d632006-04-02 18:51:53 +09007072EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007073EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09007074EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007075EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09007076EXPORT_SYMBOL_GPL(ata_port_freeze);
7077EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
7078EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09007079EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
7080EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09007081EXPORT_SYMBOL_GPL(ata_do_eh);
Akira Iguchi83625002007-01-26 16:27:32 +09007082EXPORT_SYMBOL_GPL(ata_irq_on);
7083EXPORT_SYMBOL_GPL(ata_dummy_irq_on);
7084EXPORT_SYMBOL_GPL(ata_irq_ack);
7085EXPORT_SYMBOL_GPL(ata_dummy_irq_ack);
Akira Iguchia619f981b2007-01-26 16:28:18 +09007086EXPORT_SYMBOL_GPL(ata_dev_try_classify);
Alan Coxbe0d18d2007-03-06 02:37:56 -08007087
7088EXPORT_SYMBOL_GPL(ata_cable_40wire);
7089EXPORT_SYMBOL_GPL(ata_cable_80wire);
7090EXPORT_SYMBOL_GPL(ata_cable_unknown);
7091EXPORT_SYMBOL_GPL(ata_cable_sata);