blob: 73f66f4e1eeb85cccedda0c08cd084da1534f7ec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/pci.h>
38#include <linux/init.h>
39#include <linux/list.h>
40#include <linux/mm.h>
41#include <linux/highmem.h>
42#include <linux/spinlock.h>
43#include <linux/blkdev.h>
44#include <linux/delay.h>
45#include <linux/timer.h>
46#include <linux/interrupt.h>
47#include <linux/completion.h>
48#include <linux/suspend.h>
49#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040050#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100051#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050053#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <scsi/scsi_host.h>
55#include <linux/libata.h>
56#include <asm/io.h>
57#include <asm/semaphore.h>
58#include <asm/byteorder.h>
59
60#include "libata.h"
61
Jeff Garzik8bc3fc42007-05-21 20:26:38 -040062#define DRV_VERSION "2.21" /* must be exactly four chars */
Jeff Garzikfda0efc2007-01-31 07:43:15 -050063
64
Tejun Heod7bb4cc2006-05-31 18:27:46 +090065/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090066const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
67const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
68const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090069
Tejun Heo3373efd2006-05-15 20:57:53 +090070static unsigned int ata_dev_init_params(struct ata_device *dev,
71 u16 heads, u16 sectors);
72static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
73static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090074static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Tejun Heof3187192007-04-17 23:44:07 +090076unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static struct workqueue_struct *ata_wq;
78
Tejun Heo453b07a2006-05-31 18:27:42 +090079struct workqueue_struct *ata_aux_wq;
80
Jeff Garzik418dc1f2006-03-11 20:50:08 -050081int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040082module_param(atapi_enabled, int, 0444);
83MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
84
Albert Lee95de7192006-04-04 10:57:18 +080085int atapi_dmadir = 0;
86module_param(atapi_dmadir, int, 0444);
87MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
88
Jeff Garzikc3c013a2006-02-27 22:31:19 -050089int libata_fua = 0;
90module_param_named(fua, libata_fua, int, 0444);
91MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
92
Alan Cox1e999732007-04-11 00:23:13 +010093static int ata_ignore_hpa = 0;
94module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
95MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
96
Andrew Mortona8601e52006-06-25 01:36:52 -070097static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
98module_param(ata_probe_timeout, int, 0444);
99MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
100
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400101int libata_noacpi = 1;
102module_param_named(noacpi, libata_noacpi, int, 0444);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700103MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in suspend/resume when set");
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105MODULE_AUTHOR("Jeff Garzik");
106MODULE_DESCRIPTION("Library module for ATA devices");
107MODULE_LICENSE("GPL");
108MODULE_VERSION(DRV_VERSION);
109
Edward Falk0baab862005-06-02 18:17:13 -0400110
111/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
113 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900115 * @is_cmd: This FIS is for command
116 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 *
118 * Converts a standard ATA taskfile to a Serial ATA
119 * FIS structure (Register - Host to Device).
120 *
121 * LOCKING:
122 * Inherited from caller.
123 */
Tejun Heo99771262007-07-16 14:29:38 +0900124void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Tejun Heo99771262007-07-16 14:29:38 +0900126 fis[0] = 0x27; /* Register - Host to Device FIS */
127 fis[1] = pmp & 0xf; /* Port multiplier number*/
128 if (is_cmd)
129 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 fis[2] = tf->command;
132 fis[3] = tf->feature;
133
134 fis[4] = tf->lbal;
135 fis[5] = tf->lbam;
136 fis[6] = tf->lbah;
137 fis[7] = tf->device;
138
139 fis[8] = tf->hob_lbal;
140 fis[9] = tf->hob_lbam;
141 fis[10] = tf->hob_lbah;
142 fis[11] = tf->hob_feature;
143
144 fis[12] = tf->nsect;
145 fis[13] = tf->hob_nsect;
146 fis[14] = 0;
147 fis[15] = tf->ctl;
148
149 fis[16] = 0;
150 fis[17] = 0;
151 fis[18] = 0;
152 fis[19] = 0;
153}
154
155/**
156 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
157 * @fis: Buffer from which data will be input
158 * @tf: Taskfile to output
159 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500160 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *
162 * LOCKING:
163 * Inherited from caller.
164 */
165
Jeff Garzik057ace52005-10-22 14:27:05 -0400166void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 tf->command = fis[2]; /* status */
169 tf->feature = fis[3]; /* error */
170
171 tf->lbal = fis[4];
172 tf->lbam = fis[5];
173 tf->lbah = fis[6];
174 tf->device = fis[7];
175
176 tf->hob_lbal = fis[8];
177 tf->hob_lbam = fis[9];
178 tf->hob_lbah = fis[10];
179
180 tf->nsect = fis[12];
181 tf->hob_nsect = fis[13];
182}
183
Albert Lee8cbd6df2005-10-12 15:06:27 +0800184static const u8 ata_rw_cmds[] = {
185 /* pio multi */
186 ATA_CMD_READ_MULTI,
187 ATA_CMD_WRITE_MULTI,
188 ATA_CMD_READ_MULTI_EXT,
189 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100190 0,
191 0,
192 0,
193 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800194 /* pio */
195 ATA_CMD_PIO_READ,
196 ATA_CMD_PIO_WRITE,
197 ATA_CMD_PIO_READ_EXT,
198 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100199 0,
200 0,
201 0,
202 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800203 /* dma */
204 ATA_CMD_READ,
205 ATA_CMD_WRITE,
206 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100207 ATA_CMD_WRITE_EXT,
208 0,
209 0,
210 0,
211 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800212};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800215 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900216 * @tf: command to examine and configure
217 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500219 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800220 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 *
222 * LOCKING:
223 * caller.
224 */
Tejun Heobd056d72006-11-14 22:47:10 +0900225static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100227 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100229 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500230
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100231 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800232 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
233 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Albert Lee8cbd6df2005-10-12 15:06:27 +0800235 if (dev->flags & ATA_DFLAG_PIO) {
236 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100237 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900238 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000239 /* Unable to use DMA due to host limitation */
240 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800241 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800242 } else {
243 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100244 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100247 cmd = ata_rw_cmds[index + fua + lba48 + write];
248 if (cmd) {
249 tf->command = cmd;
250 return 0;
251 }
252 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Tejun Heocb95d562006-03-06 04:31:56 +0900255/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900256 * ata_tf_read_block - Read block address from ATA taskfile
257 * @tf: ATA taskfile of interest
258 * @dev: ATA device @tf belongs to
259 *
260 * LOCKING:
261 * None.
262 *
263 * Read block address from @tf. This function can handle all
264 * three address formats - LBA, LBA48 and CHS. tf->protocol and
265 * flags select the address format to use.
266 *
267 * RETURNS:
268 * Block address read from @tf.
269 */
270u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
271{
272 u64 block = 0;
273
274 if (tf->flags & ATA_TFLAG_LBA) {
275 if (tf->flags & ATA_TFLAG_LBA48) {
276 block |= (u64)tf->hob_lbah << 40;
277 block |= (u64)tf->hob_lbam << 32;
278 block |= tf->hob_lbal << 24;
279 } else
280 block |= (tf->device & 0xf) << 24;
281
282 block |= tf->lbah << 16;
283 block |= tf->lbam << 8;
284 block |= tf->lbal;
285 } else {
286 u32 cyl, head, sect;
287
288 cyl = tf->lbam | (tf->lbah << 8);
289 head = tf->device & 0xf;
290 sect = tf->lbal;
291
292 block = (cyl * dev->heads + head) * dev->sectors + sect;
293 }
294
295 return block;
296}
297
298/**
Tejun Heobd056d72006-11-14 22:47:10 +0900299 * ata_build_rw_tf - Build ATA taskfile for given read/write request
300 * @tf: Target ATA taskfile
301 * @dev: ATA device @tf belongs to
302 * @block: Block address
303 * @n_block: Number of blocks
304 * @tf_flags: RW/FUA etc...
305 * @tag: tag
306 *
307 * LOCKING:
308 * None.
309 *
310 * Build ATA taskfile @tf for read/write request described by
311 * @block, @n_block, @tf_flags and @tag on @dev.
312 *
313 * RETURNS:
314 *
315 * 0 on success, -ERANGE if the request is too large for @dev,
316 * -EINVAL if the request is invalid.
317 */
318int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
319 u64 block, u32 n_block, unsigned int tf_flags,
320 unsigned int tag)
321{
322 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
323 tf->flags |= tf_flags;
324
Tejun Heo6d1245b2007-02-20 23:20:27 +0900325 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900326 /* yay, NCQ */
327 if (!lba_48_ok(block, n_block))
328 return -ERANGE;
329
330 tf->protocol = ATA_PROT_NCQ;
331 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
332
333 if (tf->flags & ATA_TFLAG_WRITE)
334 tf->command = ATA_CMD_FPDMA_WRITE;
335 else
336 tf->command = ATA_CMD_FPDMA_READ;
337
338 tf->nsect = tag << 3;
339 tf->hob_feature = (n_block >> 8) & 0xff;
340 tf->feature = n_block & 0xff;
341
342 tf->hob_lbah = (block >> 40) & 0xff;
343 tf->hob_lbam = (block >> 32) & 0xff;
344 tf->hob_lbal = (block >> 24) & 0xff;
345 tf->lbah = (block >> 16) & 0xff;
346 tf->lbam = (block >> 8) & 0xff;
347 tf->lbal = block & 0xff;
348
349 tf->device = 1 << 6;
350 if (tf->flags & ATA_TFLAG_FUA)
351 tf->device |= 1 << 7;
352 } else if (dev->flags & ATA_DFLAG_LBA) {
353 tf->flags |= ATA_TFLAG_LBA;
354
355 if (lba_28_ok(block, n_block)) {
356 /* use LBA28 */
357 tf->device |= (block >> 24) & 0xf;
358 } else if (lba_48_ok(block, n_block)) {
359 if (!(dev->flags & ATA_DFLAG_LBA48))
360 return -ERANGE;
361
362 /* use LBA48 */
363 tf->flags |= ATA_TFLAG_LBA48;
364
365 tf->hob_nsect = (n_block >> 8) & 0xff;
366
367 tf->hob_lbah = (block >> 40) & 0xff;
368 tf->hob_lbam = (block >> 32) & 0xff;
369 tf->hob_lbal = (block >> 24) & 0xff;
370 } else
371 /* request too large even for LBA48 */
372 return -ERANGE;
373
374 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
375 return -EINVAL;
376
377 tf->nsect = n_block & 0xff;
378
379 tf->lbah = (block >> 16) & 0xff;
380 tf->lbam = (block >> 8) & 0xff;
381 tf->lbal = block & 0xff;
382
383 tf->device |= ATA_LBA;
384 } else {
385 /* CHS */
386 u32 sect, head, cyl, track;
387
388 /* The request -may- be too large for CHS addressing. */
389 if (!lba_28_ok(block, n_block))
390 return -ERANGE;
391
392 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
393 return -EINVAL;
394
395 /* Convert LBA to CHS */
396 track = (u32)block / dev->sectors;
397 cyl = track / dev->heads;
398 head = track % dev->heads;
399 sect = (u32)block % dev->sectors + 1;
400
401 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
402 (u32)block, track, cyl, head, sect);
403
404 /* Check whether the converted CHS can fit.
405 Cylinder: 0-65535
406 Head: 0-15
407 Sector: 1-255*/
408 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
409 return -ERANGE;
410
411 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
412 tf->lbal = sect;
413 tf->lbam = cyl;
414 tf->lbah = cyl >> 8;
415 tf->device |= head;
416 }
417
418 return 0;
419}
420
421/**
Tejun Heocb95d562006-03-06 04:31:56 +0900422 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
423 * @pio_mask: pio_mask
424 * @mwdma_mask: mwdma_mask
425 * @udma_mask: udma_mask
426 *
427 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
428 * unsigned int xfer_mask.
429 *
430 * LOCKING:
431 * None.
432 *
433 * RETURNS:
434 * Packed xfer_mask.
435 */
436static unsigned int ata_pack_xfermask(unsigned int pio_mask,
437 unsigned int mwdma_mask,
438 unsigned int udma_mask)
439{
440 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
441 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
442 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
443}
444
Tejun Heoc0489e42006-03-24 14:07:49 +0900445/**
446 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
447 * @xfer_mask: xfer_mask to unpack
448 * @pio_mask: resulting pio_mask
449 * @mwdma_mask: resulting mwdma_mask
450 * @udma_mask: resulting udma_mask
451 *
452 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
453 * Any NULL distination masks will be ignored.
454 */
455static void ata_unpack_xfermask(unsigned int xfer_mask,
456 unsigned int *pio_mask,
457 unsigned int *mwdma_mask,
458 unsigned int *udma_mask)
459{
460 if (pio_mask)
461 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
462 if (mwdma_mask)
463 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
464 if (udma_mask)
465 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
466}
467
Tejun Heocb95d562006-03-06 04:31:56 +0900468static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900469 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900470 u8 base;
471} ata_xfer_tbl[] = {
472 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
473 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
474 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
475 { -1, },
476};
477
478/**
479 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
480 * @xfer_mask: xfer_mask of interest
481 *
482 * Return matching XFER_* value for @xfer_mask. Only the highest
483 * bit of @xfer_mask is considered.
484 *
485 * LOCKING:
486 * None.
487 *
488 * RETURNS:
489 * Matching XFER_* value, 0 if no match found.
490 */
491static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
492{
493 int highbit = fls(xfer_mask) - 1;
494 const struct ata_xfer_ent *ent;
495
496 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
497 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
498 return ent->base + highbit - ent->shift;
499 return 0;
500}
501
502/**
503 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
504 * @xfer_mode: XFER_* of interest
505 *
506 * Return matching xfer_mask for @xfer_mode.
507 *
508 * LOCKING:
509 * None.
510 *
511 * RETURNS:
512 * Matching xfer_mask, 0 if no match found.
513 */
514static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
515{
516 const struct ata_xfer_ent *ent;
517
518 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
519 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
520 return 1 << (ent->shift + xfer_mode - ent->base);
521 return 0;
522}
523
524/**
525 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
526 * @xfer_mode: XFER_* of interest
527 *
528 * Return matching xfer_shift for @xfer_mode.
529 *
530 * LOCKING:
531 * None.
532 *
533 * RETURNS:
534 * Matching xfer_shift, -1 if no match found.
535 */
536static int ata_xfer_mode2shift(unsigned int xfer_mode)
537{
538 const struct ata_xfer_ent *ent;
539
540 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
541 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
542 return ent->shift;
543 return -1;
544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900547 * ata_mode_string - convert xfer_mask to string
548 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *
550 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900551 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 *
553 * LOCKING:
554 * None.
555 *
556 * RETURNS:
557 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900558 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900560static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Tejun Heo75f554b2006-03-06 04:31:57 +0900562 static const char * const xfer_mode_str[] = {
563 "PIO0",
564 "PIO1",
565 "PIO2",
566 "PIO3",
567 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100568 "PIO5",
569 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900570 "MWDMA0",
571 "MWDMA1",
572 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100573 "MWDMA3",
574 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900575 "UDMA/16",
576 "UDMA/25",
577 "UDMA/33",
578 "UDMA/44",
579 "UDMA/66",
580 "UDMA/100",
581 "UDMA/133",
582 "UDMA7",
583 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900584 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900586 highbit = fls(xfer_mask) - 1;
587 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
588 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Tejun Heo4c360c82006-04-01 01:38:17 +0900592static const char *sata_spd_string(unsigned int spd)
593{
594 static const char * const spd_str[] = {
595 "1.5 Gbps",
596 "3.0 Gbps",
597 };
598
599 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
600 return "<unknown>";
601 return spd_str[spd - 1];
602}
603
Tejun Heo3373efd2006-05-15 20:57:53 +0900604void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900605{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900606 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900607 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900608 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo4ae72a12007-02-02 16:22:30 +0900609 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
610 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900611 dev->class++;
612 }
613}
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * ata_devchk - PATA device presence detection
617 * @ap: ATA channel to examine
618 * @device: Device to examine (starting at zero)
619 *
Tejun Heo0d5ff562007-02-01 15:06:36 +0900620 * This technique was originally described in
621 * Hale Landis's ATADRVR (www.ata-atapi.com), and
622 * later found its way into the ATA/ATAPI spec.
623 *
624 * Write a pattern to the ATA shadow registers,
625 * and if a device is present, it will respond by
626 * correctly storing and echoing back the
627 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 *
629 * LOCKING:
630 * caller.
631 */
632
Tejun Heo0d5ff562007-02-01 15:06:36 +0900633static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900635 struct ata_ioports *ioaddr = &ap->ioaddr;
636 u8 nsect, lbal;
637
638 ap->ops->dev_select(ap, device);
639
640 iowrite8(0x55, ioaddr->nsect_addr);
641 iowrite8(0xaa, ioaddr->lbal_addr);
642
643 iowrite8(0xaa, ioaddr->nsect_addr);
644 iowrite8(0x55, ioaddr->lbal_addr);
645
646 iowrite8(0x55, ioaddr->nsect_addr);
647 iowrite8(0xaa, ioaddr->lbal_addr);
648
649 nsect = ioread8(ioaddr->nsect_addr);
650 lbal = ioread8(ioaddr->lbal_addr);
651
652 if ((nsect == 0x55) && (lbal == 0xaa))
653 return 1; /* we found a device */
654
655 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658/**
659 * ata_dev_classify - determine device type based on ATA-spec signature
660 * @tf: ATA taskfile register set for device to be identified
661 *
662 * Determine from taskfile register contents whether a device is
663 * ATA or ATAPI, as per "Signature and persistence" section
664 * of ATA/PI spec (volume 1, sect 5.14).
665 *
666 * LOCKING:
667 * None.
668 *
669 * RETURNS:
670 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
671 * the event of failure.
672 */
673
Jeff Garzik057ace52005-10-22 14:27:05 -0400674unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 /* Apple's open source Darwin code hints that some devices only
677 * put a proper signature into the LBA mid/high registers,
678 * So, we only check those. It's sufficient for uniqueness.
679 */
680
681 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
682 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
683 DPRINTK("found ATA device by sig\n");
684 return ATA_DEV_ATA;
685 }
686
687 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
688 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
689 DPRINTK("found ATAPI device by sig\n");
690 return ATA_DEV_ATAPI;
691 }
692
693 DPRINTK("unknown device\n");
694 return ATA_DEV_UNKNOWN;
695}
696
697/**
698 * ata_dev_try_classify - Parse returned ATA device signature
699 * @ap: ATA channel to examine
700 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900701 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 *
703 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
704 * an ATA/ATAPI-defined set of values is placed in the ATA
705 * shadow registers, indicating the results of device detection
706 * and diagnostics.
707 *
708 * Select the ATA device, and read the values from the ATA shadow
709 * registers. Then parse according to the Error register value,
710 * and the spec-defined values examined by ata_dev_classify().
711 *
712 * LOCKING:
713 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900714 *
715 * RETURNS:
716 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 */
718
Akira Iguchia619f981b2007-01-26 16:28:18 +0900719unsigned int
Tejun Heob4dc7622006-01-24 17:05:22 +0900720ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 struct ata_taskfile tf;
723 unsigned int class;
724 u8 err;
725
726 ap->ops->dev_select(ap, device);
727
728 memset(&tf, 0, sizeof(tf));
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400731 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900732 if (r_err)
733 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Alan Cox93590852006-09-12 16:55:12 +0100735 /* see if device passed diags: if master then continue and warn later */
736 if (err == 0 && device == 0)
737 /* diagnostic fail : do nothing _YET_ */
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900738 ap->link.device[device].horkage |= ATA_HORKAGE_DIAGNOSTIC;
Alan Cox93590852006-09-12 16:55:12 +0100739 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 /* do nothing */ ;
741 else if ((device == 0) && (err == 0x81))
742 /* do nothing */ ;
743 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900744 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Tejun Heob4dc7622006-01-24 17:05:22 +0900746 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900750 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900752 return ATA_DEV_NONE;
753 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
756/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900757 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 * @id: IDENTIFY DEVICE results we will examine
759 * @s: string into which data is output
760 * @ofs: offset into identify device page
761 * @len: length of string to return. must be an even number.
762 *
763 * The strings in the IDENTIFY DEVICE page are broken up into
764 * 16-bit chunks. Run through the string, and output each
765 * 8-bit chunk linearly, regardless of platform.
766 *
767 * LOCKING:
768 * caller.
769 */
770
Tejun Heo6a62a042006-02-13 10:02:46 +0900771void ata_id_string(const u16 *id, unsigned char *s,
772 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 unsigned int c;
775
776 while (len > 0) {
777 c = id[ofs] >> 8;
778 *s = c;
779 s++;
780
781 c = id[ofs] & 0xff;
782 *s = c;
783 s++;
784
785 ofs++;
786 len -= 2;
787 }
788}
789
Tejun Heo0e949ff2006-02-12 22:47:04 +0900790/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900791 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900792 * @id: IDENTIFY DEVICE results we will examine
793 * @s: string into which data is output
794 * @ofs: offset into identify device page
795 * @len: length of string to return. must be an odd number.
796 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900797 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900798 * trims trailing spaces and terminates the resulting string with
799 * null. @len must be actual maximum length (even number) + 1.
800 *
801 * LOCKING:
802 * caller.
803 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900804void ata_id_c_string(const u16 *id, unsigned char *s,
805 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900806{
807 unsigned char *p;
808
809 WARN_ON(!(len & 1));
810
Tejun Heo6a62a042006-02-13 10:02:46 +0900811 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900812
813 p = s + strnlen(s, len - 1);
814 while (p > s && p[-1] == ' ')
815 p--;
816 *p = '\0';
817}
Edward Falk0baab862005-06-02 18:17:13 -0400818
Alan Cox1e999732007-04-11 00:23:13 +0100819static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
820{
821 u64 sectors = 0;
822
823 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
824 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
825 sectors |= (tf->hob_lbal & 0xff) << 24;
826 sectors |= (tf->lbah & 0xff) << 16;
827 sectors |= (tf->lbam & 0xff) << 8;
828 sectors |= (tf->lbal & 0xff);
829
830 return ++sectors;
831}
832
833static u64 ata_tf_to_lba(struct ata_taskfile *tf)
834{
835 u64 sectors = 0;
836
837 sectors |= (tf->device & 0x0f) << 24;
838 sectors |= (tf->lbah & 0xff) << 16;
839 sectors |= (tf->lbam & 0xff) << 8;
840 sectors |= (tf->lbal & 0xff);
841
842 return ++sectors;
843}
844
845/**
846 * ata_read_native_max_address_ext - LBA48 native max query
847 * @dev: Device to query
848 *
849 * Perform an LBA48 size query upon the device in question. Return the
850 * actual LBA48 size or zero if the command fails.
851 */
852
853static u64 ata_read_native_max_address_ext(struct ata_device *dev)
854{
855 unsigned int err;
856 struct ata_taskfile tf;
857
858 ata_tf_init(dev, &tf);
859
860 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
861 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
862 tf.protocol |= ATA_PROT_NODATA;
863 tf.device |= 0x40;
864
865 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
866 if (err)
867 return 0;
868
869 return ata_tf_to_lba48(&tf);
870}
871
872/**
873 * ata_read_native_max_address - LBA28 native max query
874 * @dev: Device to query
875 *
876 * Performa an LBA28 size query upon the device in question. Return the
877 * actual LBA28 size or zero if the command fails.
878 */
879
880static u64 ata_read_native_max_address(struct ata_device *dev)
881{
882 unsigned int err;
883 struct ata_taskfile tf;
884
885 ata_tf_init(dev, &tf);
886
887 tf.command = ATA_CMD_READ_NATIVE_MAX;
888 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
889 tf.protocol |= ATA_PROT_NODATA;
890 tf.device |= 0x40;
891
892 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
893 if (err)
894 return 0;
895
896 return ata_tf_to_lba(&tf);
897}
898
899/**
900 * ata_set_native_max_address_ext - LBA48 native max set
901 * @dev: Device to query
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700902 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100903 *
904 * Perform an LBA48 size set max upon the device in question. Return the
905 * actual LBA48 size or zero if the command fails.
906 */
907
908static u64 ata_set_native_max_address_ext(struct ata_device *dev, u64 new_sectors)
909{
910 unsigned int err;
911 struct ata_taskfile tf;
912
913 new_sectors--;
914
915 ata_tf_init(dev, &tf);
916
917 tf.command = ATA_CMD_SET_MAX_EXT;
918 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
919 tf.protocol |= ATA_PROT_NODATA;
920 tf.device |= 0x40;
921
922 tf.lbal = (new_sectors >> 0) & 0xff;
923 tf.lbam = (new_sectors >> 8) & 0xff;
924 tf.lbah = (new_sectors >> 16) & 0xff;
925
926 tf.hob_lbal = (new_sectors >> 24) & 0xff;
927 tf.hob_lbam = (new_sectors >> 32) & 0xff;
928 tf.hob_lbah = (new_sectors >> 40) & 0xff;
929
930 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
931 if (err)
932 return 0;
933
934 return ata_tf_to_lba48(&tf);
935}
936
937/**
938 * ata_set_native_max_address - LBA28 native max set
939 * @dev: Device to query
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700940 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100941 *
942 * Perform an LBA28 size set max upon the device in question. Return the
943 * actual LBA28 size or zero if the command fails.
944 */
945
946static u64 ata_set_native_max_address(struct ata_device *dev, u64 new_sectors)
947{
948 unsigned int err;
949 struct ata_taskfile tf;
950
951 new_sectors--;
952
953 ata_tf_init(dev, &tf);
954
955 tf.command = ATA_CMD_SET_MAX;
956 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
957 tf.protocol |= ATA_PROT_NODATA;
958
959 tf.lbal = (new_sectors >> 0) & 0xff;
960 tf.lbam = (new_sectors >> 8) & 0xff;
961 tf.lbah = (new_sectors >> 16) & 0xff;
962 tf.device |= ((new_sectors >> 24) & 0x0f) | 0x40;
963
964 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
965 if (err)
966 return 0;
967
968 return ata_tf_to_lba(&tf);
969}
970
971/**
972 * ata_hpa_resize - Resize a device with an HPA set
973 * @dev: Device to resize
974 *
975 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
976 * it if required to the full size of the media. The caller must check
977 * the drive has the HPA feature set enabled.
978 */
979
980static u64 ata_hpa_resize(struct ata_device *dev)
981{
982 u64 sectors = dev->n_sectors;
983 u64 hpa_sectors;
Jeff Garzika617c092007-05-21 20:14:23 -0400984
Alan Cox1e999732007-04-11 00:23:13 +0100985 if (ata_id_has_lba48(dev->id))
986 hpa_sectors = ata_read_native_max_address_ext(dev);
987 else
988 hpa_sectors = ata_read_native_max_address(dev);
989
Alan Cox1e999732007-04-11 00:23:13 +0100990 if (hpa_sectors > sectors) {
991 ata_dev_printk(dev, KERN_INFO,
992 "Host Protected Area detected:\n"
993 "\tcurrent size: %lld sectors\n"
994 "\tnative size: %lld sectors\n",
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -0700995 (long long)sectors, (long long)hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +0100996
997 if (ata_ignore_hpa) {
998 if (ata_id_has_lba48(dev->id))
999 hpa_sectors = ata_set_native_max_address_ext(dev, hpa_sectors);
1000 else
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -07001001 hpa_sectors = ata_set_native_max_address(dev,
1002 hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001003
1004 if (hpa_sectors) {
Andrew Mortonbd1d5ec2007-04-26 00:19:21 -07001005 ata_dev_printk(dev, KERN_INFO, "native size "
1006 "increased to %lld sectors\n",
1007 (long long)hpa_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01001008 return hpa_sectors;
1009 }
1010 }
Tejun Heo37301a52007-06-25 20:45:54 +09001011 } else if (hpa_sectors < sectors)
1012 ata_dev_printk(dev, KERN_WARNING, "%s 1: hpa sectors (%lld) "
1013 "is smaller than sectors (%lld)\n", __FUNCTION__,
1014 (long long)hpa_sectors, (long long)sectors);
1015
Alan Cox1e999732007-04-11 00:23:13 +01001016 return sectors;
1017}
1018
Tejun Heo29407402006-02-12 22:47:04 +09001019static u64 ata_id_n_sectors(const u16 *id)
1020{
1021 if (ata_id_has_lba(id)) {
1022 if (ata_id_has_lba48(id))
1023 return ata_id_u64(id, 100);
1024 else
1025 return ata_id_u32(id, 60);
1026 } else {
1027 if (ata_id_current_chs_valid(id))
1028 return ata_id_u32(id, 57);
1029 else
1030 return id[1] * id[3] * id[6];
1031 }
1032}
1033
Edward Falk0baab862005-06-02 18:17:13 -04001034/**
Alan10305f02007-02-20 18:01:59 +00001035 * ata_id_to_dma_mode - Identify DMA mode from id block
1036 * @dev: device to identify
Randy Dunlapcc261262007-03-16 19:55:47 -07001037 * @unknown: mode to assume if we cannot tell
Alan10305f02007-02-20 18:01:59 +00001038 *
1039 * Set up the timing values for the device based upon the identify
1040 * reported values for the DMA mode. This function is used by drivers
1041 * which rely upon firmware configured modes, but wish to report the
1042 * mode correctly when possible.
1043 *
1044 * In addition we emit similarly formatted messages to the default
1045 * ata_dev_set_mode handler, in order to provide consistency of
1046 * presentation.
1047 */
1048
1049void ata_id_to_dma_mode(struct ata_device *dev, u8 unknown)
1050{
1051 unsigned int mask;
1052 u8 mode;
1053
1054 /* Pack the DMA modes */
1055 mask = ((dev->id[63] >> 8) << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA;
1056 if (dev->id[53] & 0x04)
1057 mask |= ((dev->id[88] >> 8) << ATA_SHIFT_UDMA) & ATA_MASK_UDMA;
1058
1059 /* Select the mode in use */
1060 mode = ata_xfer_mask2mode(mask);
1061
1062 if (mode != 0) {
1063 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
1064 ata_mode_string(mask));
1065 } else {
1066 /* SWDMA perhaps ? */
1067 mode = unknown;
1068 ata_dev_printk(dev, KERN_INFO, "configured for DMA\n");
1069 }
1070
1071 /* Configure the device reporting */
1072 dev->xfer_mode = mode;
1073 dev->xfer_shift = ata_xfer_mode2shift(mode);
1074}
1075
1076/**
Edward Falk0baab862005-06-02 18:17:13 -04001077 * ata_noop_dev_select - Select device 0/1 on ATA bus
1078 * @ap: ATA channel to manipulate
1079 * @device: ATA device (numbered from zero) to select
1080 *
1081 * This function performs no actual function.
1082 *
1083 * May be used as the dev_select() entry in ata_port_operations.
1084 *
1085 * LOCKING:
1086 * caller.
1087 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
1089{
1090}
1091
Edward Falk0baab862005-06-02 18:17:13 -04001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093/**
1094 * ata_std_dev_select - Select device 0/1 on ATA bus
1095 * @ap: ATA channel to manipulate
1096 * @device: ATA device (numbered from zero) to select
1097 *
1098 * Use the method defined in the ATA specification to
1099 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -04001100 * ATA channel. Works with both PIO and MMIO.
1101 *
1102 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 *
1104 * LOCKING:
1105 * caller.
1106 */
1107
1108void ata_std_dev_select (struct ata_port *ap, unsigned int device)
1109{
1110 u8 tmp;
1111
1112 if (device == 0)
1113 tmp = ATA_DEVICE_OBS;
1114 else
1115 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1116
Tejun Heo0d5ff562007-02-01 15:06:36 +09001117 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 ata_pause(ap); /* needed; also flushes, for mmio */
1119}
1120
1121/**
1122 * ata_dev_select - Select device 0/1 on ATA bus
1123 * @ap: ATA channel to manipulate
1124 * @device: ATA device (numbered from zero) to select
1125 * @wait: non-zero to wait for Status register BSY bit to clear
1126 * @can_sleep: non-zero if context allows sleeping
1127 *
1128 * Use the method defined in the ATA specification to
1129 * make either device 0, or device 1, active on the
1130 * ATA channel.
1131 *
1132 * This is a high-level version of ata_std_dev_select(),
1133 * which additionally provides the services of inserting
1134 * the proper pauses and status polling, where needed.
1135 *
1136 * LOCKING:
1137 * caller.
1138 */
1139
1140void ata_dev_select(struct ata_port *ap, unsigned int device,
1141 unsigned int wait, unsigned int can_sleep)
1142{
Tejun Heo88574552006-06-25 20:00:35 +09001143 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001144 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
1145 "device %u, wait %u\n", device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 if (wait)
1148 ata_wait_idle(ap);
1149
1150 ap->ops->dev_select(ap, device);
1151
1152 if (wait) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001153 if (can_sleep && ap->link.device[device].class == ATA_DEV_ATAPI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 msleep(150);
1155 ata_wait_idle(ap);
1156 }
1157}
1158
1159/**
1160 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001161 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001163 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1164 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 *
1166 * LOCKING:
1167 * caller.
1168 */
1169
Tejun Heo0bd33002006-02-12 22:47:05 +09001170static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
1172 DPRINTK("49==0x%04x "
1173 "53==0x%04x "
1174 "63==0x%04x "
1175 "64==0x%04x "
1176 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001177 id[49],
1178 id[53],
1179 id[63],
1180 id[64],
1181 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 DPRINTK("80==0x%04x "
1183 "81==0x%04x "
1184 "82==0x%04x "
1185 "83==0x%04x "
1186 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001187 id[80],
1188 id[81],
1189 id[82],
1190 id[83],
1191 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 DPRINTK("88==0x%04x "
1193 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001194 id[88],
1195 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
Tejun Heocb95d562006-03-06 04:31:56 +09001198/**
1199 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1200 * @id: IDENTIFY data to compute xfer mask from
1201 *
1202 * Compute the xfermask for this device. This is not as trivial
1203 * as it seems if we must consider early devices correctly.
1204 *
1205 * FIXME: pre IDE drive timing (do we care ?).
1206 *
1207 * LOCKING:
1208 * None.
1209 *
1210 * RETURNS:
1211 * Computed xfermask
1212 */
1213static unsigned int ata_id_xfermask(const u16 *id)
1214{
1215 unsigned int pio_mask, mwdma_mask, udma_mask;
1216
1217 /* Usual case. Word 53 indicates word 64 is valid */
1218 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1219 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1220 pio_mask <<= 3;
1221 pio_mask |= 0x7;
1222 } else {
1223 /* If word 64 isn't valid then Word 51 high byte holds
1224 * the PIO timing number for the maximum. Turn it into
1225 * a mask.
1226 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001227 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001228 if (mode < 5) /* Valid PIO range */
1229 pio_mask = (2 << mode) - 1;
1230 else
1231 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001232
1233 /* But wait.. there's more. Design your standards by
1234 * committee and you too can get a free iordy field to
1235 * process. However its the speeds not the modes that
1236 * are supported... Note drivers using the timing API
1237 * will get this right anyway
1238 */
1239 }
1240
1241 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001242
Alan Coxb352e572006-08-10 18:52:12 +01001243 if (ata_id_is_cfa(id)) {
1244 /*
1245 * Process compact flash extended modes
1246 */
1247 int pio = id[163] & 0x7;
1248 int dma = (id[163] >> 3) & 7;
1249
1250 if (pio)
1251 pio_mask |= (1 << 5);
1252 if (pio > 1)
1253 pio_mask |= (1 << 6);
1254 if (dma)
1255 mwdma_mask |= (1 << 3);
1256 if (dma > 1)
1257 mwdma_mask |= (1 << 4);
1258 }
1259
Tejun Heofb21f0d2006-03-12 12:34:35 +09001260 udma_mask = 0;
1261 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1262 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001263
1264 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1265}
1266
Tejun Heo86e45b62006-03-05 15:29:09 +09001267/**
1268 * ata_port_queue_task - Queue port_task
1269 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001270 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001271 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001272 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001273 *
1274 * Schedule @fn(@data) for execution after @delay jiffies using
1275 * port_task. There is one port_task per port and it's the
1276 * user(low level driver)'s responsibility to make sure that only
1277 * one task is active at any given time.
1278 *
1279 * libata core layer takes care of synchronization between
1280 * port_task and EH. ata_port_queue_task() may be ignored for EH
1281 * synchronization.
1282 *
1283 * LOCKING:
1284 * Inherited from caller.
1285 */
David Howells65f27f32006-11-22 14:55:48 +00001286void ata_port_queue_task(struct ata_port *ap, work_func_t fn, void *data,
Tejun Heo86e45b62006-03-05 15:29:09 +09001287 unsigned long delay)
1288{
David Howells65f27f32006-11-22 14:55:48 +00001289 PREPARE_DELAYED_WORK(&ap->port_task, fn);
1290 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001291
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001292 /* may fail if ata_port_flush_task() in progress */
1293 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001294}
1295
1296/**
1297 * ata_port_flush_task - Flush port_task
1298 * @ap: The ata_port to flush port_task for
1299 *
1300 * After this function completes, port_task is guranteed not to
1301 * be running or scheduled.
1302 *
1303 * LOCKING:
1304 * Kernel thread context (may sleep)
1305 */
1306void ata_port_flush_task(struct ata_port *ap)
1307{
Tejun Heo86e45b62006-03-05 15:29:09 +09001308 DPRINTK("ENTER\n");
1309
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001310 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001311
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001312 if (ata_msg_ctl(ap))
1313 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001314}
1315
Adrian Bunk7102d232007-01-04 00:09:36 +01001316static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001317{
Tejun Heo77853bf2006-01-23 13:09:36 +09001318 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001319
Tejun Heoa2a7a662005-12-13 14:48:31 +09001320 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001321}
1322
1323/**
Tejun Heo24326972006-11-14 22:47:09 +09001324 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001325 * @dev: Device to which the command is sent
1326 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001327 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001328 * @dma_dir: Data tranfer direction of the command
Tejun Heo24326972006-11-14 22:47:09 +09001329 * @sg: sg list for the data buffer of the command
1330 * @n_elem: Number of sg entries
Tejun Heoa2a7a662005-12-13 14:48:31 +09001331 *
1332 * Executes libata internal command with timeout. @tf contains
1333 * command on entry and result on return. Timeout and error
1334 * conditions are reported via return value. No recovery action
1335 * is taken after a command times out. It's caller's duty to
1336 * clean up after timeout.
1337 *
1338 * LOCKING:
1339 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001340 *
1341 * RETURNS:
1342 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001343 */
Tejun Heo24326972006-11-14 22:47:09 +09001344unsigned ata_exec_internal_sg(struct ata_device *dev,
1345 struct ata_taskfile *tf, const u8 *cdb,
1346 int dma_dir, struct scatterlist *sg,
1347 unsigned int n_elem)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001348{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001349 struct ata_link *link = dev->link;
1350 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001351 u8 command = tf->command;
1352 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001353 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001354 u32 preempted_sactive, preempted_qc_active;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001355 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001356 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001357 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001358 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001359
Jeff Garzikba6a1302006-06-22 23:46:10 -04001360 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001361
Tejun Heoe3180492006-05-15 20:58:09 +09001362 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001363 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001364 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001365 return AC_ERR_SYSTEM;
1366 }
1367
Tejun Heo2ab7db12006-05-15 20:58:02 +09001368 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001369
Tejun Heo2ab7db12006-05-15 20:58:02 +09001370 /* XXX: Tag 0 is used for drivers with legacy EH as some
1371 * drivers choke if any other tag is given. This breaks
1372 * ata_tag_internal() test for those drivers. Don't use new
1373 * EH stuff without converting to it.
1374 */
1375 if (ap->ops->error_handler)
1376 tag = ATA_TAG_INTERNAL;
1377 else
1378 tag = 0;
1379
Tejun Heo6cec4a32006-05-15 21:03:41 +09001380 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001381 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001382 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001383
1384 qc->tag = tag;
1385 qc->scsicmd = NULL;
1386 qc->ap = ap;
1387 qc->dev = dev;
1388 ata_qc_reinit(qc);
1389
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001390 preempted_tag = link->active_tag;
1391 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001392 preempted_qc_active = ap->qc_active;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001393 link->active_tag = ATA_TAG_POISON;
1394 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001395 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001396
1397 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001398 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001399 if (cdb)
1400 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001401 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001402 qc->dma_dir = dma_dir;
1403 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001404 unsigned int i, buflen = 0;
1405
1406 for (i = 0; i < n_elem; i++)
1407 buflen += sg[i].length;
1408
1409 ata_sg_init(qc, sg, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001410 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001411 }
1412
Tejun Heo77853bf2006-01-23 13:09:36 +09001413 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001414 qc->complete_fn = ata_qc_complete_internal;
1415
Tejun Heo8e0e6942006-03-31 20:41:11 +09001416 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001417
Jeff Garzikba6a1302006-06-22 23:46:10 -04001418 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001419
Andrew Mortona8601e52006-06-25 01:36:52 -07001420 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001421
Tejun Heod95a7172006-05-15 20:58:14 +09001422 ata_port_flush_task(ap);
1423
1424 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001425 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001426
1427 /* We're racing with irq here. If we lose, the
1428 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001429 * twice. If we win, the port is frozen and will be
1430 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001431 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001432 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001433 qc->err_mask |= AC_ERR_TIMEOUT;
1434
1435 if (ap->ops->error_handler)
1436 ata_port_freeze(ap);
1437 else
1438 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001439
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001440 if (ata_msg_warn(ap))
1441 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001442 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001443 }
1444
Jeff Garzikba6a1302006-06-22 23:46:10 -04001445 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001446 }
1447
Tejun Heod95a7172006-05-15 20:58:14 +09001448 /* do post_internal_cmd */
1449 if (ap->ops->post_internal_cmd)
1450 ap->ops->post_internal_cmd(qc);
1451
Tejun Heoa51d6442007-03-20 15:24:11 +09001452 /* perform minimal error analysis */
1453 if (qc->flags & ATA_QCFLAG_FAILED) {
1454 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1455 qc->err_mask |= AC_ERR_DEV;
1456
1457 if (!qc->err_mask)
1458 qc->err_mask |= AC_ERR_OTHER;
1459
1460 if (qc->err_mask & ~AC_ERR_OTHER)
1461 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001462 }
1463
Tejun Heo15869302006-05-15 20:57:33 +09001464 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001465 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001466
Tejun Heoe61e0672006-05-15 20:57:40 +09001467 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001468 err_mask = qc->err_mask;
1469
1470 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001471 link->active_tag = preempted_tag;
1472 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001473 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001474
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001475 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1476 * Until those drivers are fixed, we detect the condition
1477 * here, fail the command with AC_ERR_SYSTEM and reenable the
1478 * port.
1479 *
1480 * Note that this doesn't change any behavior as internal
1481 * command failure results in disabling the device in the
1482 * higher layer for LLDDs without new reset/EH callbacks.
1483 *
1484 * Kill the following code as soon as those drivers are fixed.
1485 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001486 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001487 err_mask |= AC_ERR_SYSTEM;
1488 ata_port_probe(ap);
1489 }
1490
Jeff Garzikba6a1302006-06-22 23:46:10 -04001491 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001492
Tejun Heo77853bf2006-01-23 13:09:36 +09001493 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001494}
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496/**
Tejun Heo33480a02006-12-12 02:15:31 +09001497 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001498 * @dev: Device to which the command is sent
1499 * @tf: Taskfile registers for the command and the result
1500 * @cdb: CDB for packet command
1501 * @dma_dir: Data tranfer direction of the command
1502 * @buf: Data buffer of the command
1503 * @buflen: Length of data buffer
1504 *
1505 * Wrapper around ata_exec_internal_sg() which takes simple
1506 * buffer instead of sg list.
1507 *
1508 * LOCKING:
1509 * None. Should be called with kernel context, might sleep.
1510 *
1511 * RETURNS:
1512 * Zero on success, AC_ERR_* mask on failure
1513 */
1514unsigned ata_exec_internal(struct ata_device *dev,
1515 struct ata_taskfile *tf, const u8 *cdb,
1516 int dma_dir, void *buf, unsigned int buflen)
1517{
Tejun Heo33480a02006-12-12 02:15:31 +09001518 struct scatterlist *psg = NULL, sg;
1519 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001520
Tejun Heo33480a02006-12-12 02:15:31 +09001521 if (dma_dir != DMA_NONE) {
1522 WARN_ON(!buf);
1523 sg_init_one(&sg, buf, buflen);
1524 psg = &sg;
1525 n_elem++;
1526 }
Tejun Heo24326972006-11-14 22:47:09 +09001527
Tejun Heo33480a02006-12-12 02:15:31 +09001528 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem);
Tejun Heo24326972006-11-14 22:47:09 +09001529}
1530
1531/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001532 * ata_do_simple_cmd - execute simple internal command
1533 * @dev: Device to which the command is sent
1534 * @cmd: Opcode to execute
1535 *
1536 * Execute a 'simple' command, that only consists of the opcode
1537 * 'cmd' itself, without filling any other registers
1538 *
1539 * LOCKING:
1540 * Kernel thread context (may sleep).
1541 *
1542 * RETURNS:
1543 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001544 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001545unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001546{
1547 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001548
1549 ata_tf_init(dev, &tf);
1550
1551 tf.command = cmd;
1552 tf.flags |= ATA_TFLAG_DEVICE;
1553 tf.protocol = ATA_PROT_NODATA;
1554
Tejun Heo977e6b92006-06-24 20:30:19 +09001555 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001556}
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001559 * ata_pio_need_iordy - check if iordy needed
1560 * @adev: ATA device
1561 *
1562 * Check if the current speed of the device requires IORDY. Used
1563 * by various controllers for chip configuration.
1564 */
Jeff Garzika617c092007-05-21 20:14:23 -04001565
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001566unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1567{
Alan Cox432729f2007-03-08 23:22:59 +00001568 /* Controller doesn't support IORDY. Probably a pointless check
1569 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001570 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001571 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001572 /* PIO3 and higher it is mandatory */
1573 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001574 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001575 /* We turn it on when possible */
1576 if (ata_id_has_iordy(adev->id))
1577 return 1;
1578 return 0;
1579}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001580
Alan Cox432729f2007-03-08 23:22:59 +00001581/**
1582 * ata_pio_mask_no_iordy - Return the non IORDY mask
1583 * @adev: ATA device
1584 *
1585 * Compute the highest mode possible if we are not using iordy. Return
1586 * -1 if no iordy mode is available.
1587 */
Jeff Garzika617c092007-05-21 20:14:23 -04001588
Alan Cox432729f2007-03-08 23:22:59 +00001589static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1590{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001591 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001592 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001593 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001594 /* Is the speed faster than the drive allows non IORDY ? */
1595 if (pio) {
1596 /* This is cycle times not frequency - watch the logic! */
1597 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001598 return 3 << ATA_SHIFT_PIO;
1599 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001600 }
1601 }
Alan Cox432729f2007-03-08 23:22:59 +00001602 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001603}
1604
1605/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001606 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001607 * @dev: target device
1608 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001609 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001610 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001611 *
1612 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1613 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001614 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1615 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001616 *
1617 * LOCKING:
1618 * Kernel thread context (may sleep)
1619 *
1620 * RETURNS:
1621 * 0 on success, -errno otherwise.
1622 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001623int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001624 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001625{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001626 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001627 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001628 struct ata_taskfile tf;
1629 unsigned int err_mask = 0;
1630 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001631 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001632 int rc;
1633
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001634 if (ata_msg_ctl(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001635 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001636
Tejun Heo49016ac2006-02-21 02:12:11 +09001637 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
Tejun Heo49016ac2006-02-21 02:12:11 +09001638 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001639 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001640
1641 switch (class) {
1642 case ATA_DEV_ATA:
1643 tf.command = ATA_CMD_ID_ATA;
1644 break;
1645 case ATA_DEV_ATAPI:
1646 tf.command = ATA_CMD_ID_ATAPI;
1647 break;
1648 default:
1649 rc = -ENODEV;
1650 reason = "unsupported class";
1651 goto err_out;
1652 }
1653
1654 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001655
1656 /* Some devices choke if TF registers contain garbage. Make
1657 * sure those are properly initialized.
1658 */
1659 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1660
1661 /* Device presence detection is unreliable on some
1662 * controllers. Always poll IDENTIFY if available.
1663 */
1664 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001665
Tejun Heo3373efd2006-05-15 20:57:53 +09001666 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001667 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001668 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001669 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001670 DPRINTK("ata%u.%d: NODEV after polling detection\n",
Tejun Heo44877b42007-02-21 01:06:51 +09001671 ap->print_id, dev->devno);
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001672 return -ENOENT;
1673 }
1674
Tejun Heo54936f82007-05-11 14:35:29 +02001675 /* Device or controller might have reported the wrong
1676 * device class. Give a shot at the other IDENTIFY if
1677 * the current one is aborted by the device.
1678 */
1679 if (may_fallback &&
1680 (err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1681 may_fallback = 0;
1682
1683 if (class == ATA_DEV_ATA)
1684 class = ATA_DEV_ATAPI;
1685 else
1686 class = ATA_DEV_ATA;
1687 goto retry;
1688 }
1689
Tejun Heo49016ac2006-02-21 02:12:11 +09001690 rc = -EIO;
1691 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001692 goto err_out;
1693 }
1694
Tejun Heo54936f82007-05-11 14:35:29 +02001695 /* Falling back doesn't make sense if ID data was read
1696 * successfully at least once.
1697 */
1698 may_fallback = 0;
1699
Tejun Heo49016ac2006-02-21 02:12:11 +09001700 swap_buf_le16(id, ATA_ID_WORDS);
1701
Tejun Heo49016ac2006-02-21 02:12:11 +09001702 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001703 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01001704 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07001705
1706 if (class == ATA_DEV_ATA) {
1707 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1708 goto err_out;
1709 } else {
1710 if (ata_id_is_ata(id))
1711 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001712 }
1713
Mark Lord169439c2007-04-17 18:26:07 -04001714 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
1715 tried_spinup = 1;
1716 /*
1717 * Drive powered-up in standby mode, and requires a specific
1718 * SET_FEATURES spin-up subcommand before it will accept
1719 * anything other than the original IDENTIFY command.
1720 */
1721 ata_tf_init(dev, &tf);
1722 tf.command = ATA_CMD_SET_FEATURES;
1723 tf.feature = SETFEATURES_SPINUP;
1724 tf.protocol = ATA_PROT_NODATA;
1725 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1726 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07001727 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04001728 rc = -EIO;
1729 reason = "SPINUP failed";
1730 goto err_out;
1731 }
1732 /*
1733 * If the drive initially returned incomplete IDENTIFY info,
1734 * we now must reissue the IDENTIFY command.
1735 */
1736 if (id[2] == 0x37c8)
1737 goto retry;
1738 }
1739
Tejun Heobff04642006-11-10 18:08:10 +09001740 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001741 /*
1742 * The exact sequence expected by certain pre-ATA4 drives is:
1743 * SRST RESET
1744 * IDENTIFY
1745 * INITIALIZE DEVICE PARAMETERS
1746 * anything else..
1747 * Some drives were very specific about that exact sequence.
1748 */
1749 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001750 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001751 if (err_mask) {
1752 rc = -EIO;
1753 reason = "INIT_DEV_PARAMS failed";
1754 goto err_out;
1755 }
1756
1757 /* current CHS translation info (id[53-58]) might be
1758 * changed. reread the identify device info.
1759 */
Tejun Heobff04642006-11-10 18:08:10 +09001760 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09001761 goto retry;
1762 }
1763 }
1764
1765 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001766
Tejun Heo49016ac2006-02-21 02:12:11 +09001767 return 0;
1768
1769 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001770 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001771 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001772 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001773 return rc;
1774}
1775
Tejun Heo3373efd2006-05-15 20:57:53 +09001776static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001777{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001778 struct ata_port *ap = dev->link->ap;
1779 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001780}
1781
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001782static void ata_dev_config_ncq(struct ata_device *dev,
1783 char *desc, size_t desc_sz)
1784{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001785 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001786 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1787
1788 if (!ata_id_has_ncq(dev->id)) {
1789 desc[0] = '\0';
1790 return;
1791 }
Tejun Heo75683fe2007-07-05 13:31:27 +09001792 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07001793 snprintf(desc, desc_sz, "NCQ (not used)");
1794 return;
1795 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001796 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04001797 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001798 dev->flags |= ATA_DFLAG_NCQ;
1799 }
1800
1801 if (hdepth >= ddepth)
1802 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1803 else
1804 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1805}
1806
Tejun Heo49016ac2006-02-21 02:12:11 +09001807/**
Tejun Heoffeae412006-03-01 16:09:35 +09001808 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001809 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 *
Tejun Heoffeae412006-03-01 16:09:35 +09001811 * Configure @dev according to @dev->id. Generic and low-level
1812 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 *
1814 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001815 * Kernel thread context (may sleep)
1816 *
1817 * RETURNS:
1818 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09001820int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001822 struct ata_port *ap = dev->link->ap;
1823 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09001824 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001825 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001826 unsigned int xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01001827 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001828 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
1829 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05001830 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001832 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09001833 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
1834 __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001835 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001838 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001839 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Tejun Heo75683fe2007-07-05 13:31:27 +09001841 /* set horkage */
1842 dev->horkage |= ata_dev_blacklisted(dev);
1843
Tejun Heo67465442007-05-15 03:28:16 +09001844 /* let ACPI work its magic */
1845 rc = ata_acpi_on_devcfg(dev);
1846 if (rc)
1847 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08001848
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001849 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001850 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001851 ata_dev_printk(dev, KERN_DEBUG,
1852 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1853 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001854 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001855 id[49], id[82], id[83], id[84],
1856 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001857
Tejun Heo208a9932006-03-05 17:55:58 +09001858 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001859 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001860 dev->max_sectors = 0;
1861 dev->cdb_len = 0;
1862 dev->n_sectors = 0;
1863 dev->cylinders = 0;
1864 dev->heads = 0;
1865 dev->sectors = 0;
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /*
1868 * common ATA, ATAPI feature tests
1869 */
1870
Tejun Heoff8854b2006-03-06 04:31:56 +09001871 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001872 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001874 if (ata_msg_probe(ap))
1875 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Albert Leeef143d52007-06-05 13:01:33 +08001877 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
1878 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
1879 sizeof(fwrevbuf));
1880
1881 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
1882 sizeof(modelbuf));
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 /* ATA-specific feature tests */
1885 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01001886 if (ata_id_is_cfa(id)) {
1887 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09001888 ata_dev_printk(dev, KERN_WARNING,
1889 "supports DRM functions and may "
1890 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01001891 snprintf(revbuf, 7, "CFA");
1892 }
1893 else
1894 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
1895
Tejun Heo1148c3a2006-03-13 19:48:04 +09001896 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001897
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001898 if (dev->id[59] & 0x100)
1899 dev->multi_count = dev->id[59] & 0xff;
1900
Tejun Heo1148c3a2006-03-13 19:48:04 +09001901 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001902 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001903 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001904
Tejun Heo4c2d7212006-03-05 17:55:58 +09001905 lba_desc = "LBA";
1906 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001907 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001908 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001909 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001910
1911 if (dev->n_sectors >= (1UL << 28) &&
1912 ata_id_has_flush_ext(id))
1913 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001914 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001915
Tejun Heo16c55b02007-08-29 11:58:33 +09001916 if (!(dev->horkage & ATA_HORKAGE_BROKEN_HPA) &&
1917 ata_id_hpa_enabled(dev->id))
1918 dev->n_sectors = ata_hpa_resize(dev);
Alan Cox1e999732007-04-11 00:23:13 +01001919
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001920 /* config NCQ */
1921 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1922
Albert Lee8bf62ece2005-05-12 15:29:42 -04001923 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001924 if (ata_msg_drv(ap) && print_info) {
1925 ata_dev_printk(dev, KERN_INFO,
1926 "%s: %s, %s, max %s\n",
1927 revbuf, modelbuf, fwrevbuf,
1928 ata_mode_string(xfer_mask));
1929 ata_dev_printk(dev, KERN_INFO,
1930 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001931 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001932 dev->multi_count, lba_desc, ncq_desc);
1933 }
Tejun Heoffeae412006-03-01 16:09:35 +09001934 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001935 /* CHS */
1936
1937 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001938 dev->cylinders = id[1];
1939 dev->heads = id[3];
1940 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001941
Tejun Heo1148c3a2006-03-13 19:48:04 +09001942 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001943 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001944 dev->cylinders = id[54];
1945 dev->heads = id[55];
1946 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001947 }
1948
1949 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001950 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09001951 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001952 "%s: %s, %s, max %s\n",
1953 revbuf, modelbuf, fwrevbuf,
1954 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05001955 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001956 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
1957 (unsigned long long)dev->n_sectors,
1958 dev->multi_count, dev->cylinders,
1959 dev->heads, dev->sectors);
1960 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08001961 }
1962
Tejun Heo6e7846e2006-02-12 23:32:58 +09001963 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
1965
1966 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001967 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001968 char *cdb_intr_string = "";
1969
Tejun Heo1148c3a2006-03-13 19:48:04 +09001970 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001972 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001973 ata_dev_printk(dev, KERN_WARNING,
1974 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001975 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 goto err_out_nosup;
1977 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001978 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Albert Lee08a556d2006-03-31 13:29:04 +08001980 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001981 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001982 cdb_intr_string = ", CDB intr";
1983 }
Albert Lee312f7da2005-09-27 17:38:03 +08001984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001986 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08001987 ata_dev_printk(dev, KERN_INFO,
1988 "ATAPI: %s, %s, max %s%s\n",
1989 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09001990 ata_mode_string(xfer_mask),
1991 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
1993
Tejun Heo914ed352006-11-01 18:39:55 +09001994 /* determine max_sectors */
1995 dev->max_sectors = ATA_MAX_SECTORS;
1996 if (dev->flags & ATA_DFLAG_LBA48)
1997 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
1998
Alan Cox93590852006-09-12 16:55:12 +01001999 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2000 /* Let the user know. We don't want to disallow opens for
2001 rescue purposes, or in case the vendor is just a blithering
2002 idiot */
2003 if (print_info) {
2004 ata_dev_printk(dev, KERN_WARNING,
2005"Drive reports diagnostics failure. This may indicate a drive\n");
2006 ata_dev_printk(dev, KERN_WARNING,
2007"fault or invalid emulation. Contact drive vendor for information.\n");
2008 }
2009 }
2010
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002011 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002012 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002013 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002014 ata_dev_printk(dev, KERN_INFO,
2015 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002016 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002017 dev->max_sectors = ATA_MAX_SECTORS;
2018 }
2019
Tejun Heo75683fe2007-07-05 13:31:27 +09002020 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002021 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2022 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002023
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002024 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002025 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002026
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002027 if (ata_msg_probe(ap))
2028 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
2029 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002030 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002033 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002034 ata_dev_printk(dev, KERN_DEBUG,
2035 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09002036 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
2039/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002040 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002041 * @ap: port
2042 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002043 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002044 * detection.
2045 */
2046
2047int ata_cable_40wire(struct ata_port *ap)
2048{
2049 return ATA_CBL_PATA40;
2050}
2051
2052/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002053 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002054 * @ap: port
2055 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002056 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002057 * detection.
2058 */
2059
2060int ata_cable_80wire(struct ata_port *ap)
2061{
2062 return ATA_CBL_PATA80;
2063}
2064
2065/**
2066 * ata_cable_unknown - return unknown PATA cable.
2067 * @ap: port
2068 *
2069 * Helper method for drivers which have no PATA cable detection.
2070 */
2071
2072int ata_cable_unknown(struct ata_port *ap)
2073{
2074 return ATA_CBL_PATA_UNK;
2075}
2076
2077/**
2078 * ata_cable_sata - return SATA cable type
2079 * @ap: port
2080 *
2081 * Helper method for drivers which have SATA cables
2082 */
2083
2084int ata_cable_sata(struct ata_port *ap)
2085{
2086 return ATA_CBL_SATA;
2087}
2088
2089/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 * ata_bus_probe - Reset and probe ATA bus
2091 * @ap: Bus to probe
2092 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002093 * Master ATA bus probing function. Initiates a hardware-dependent
2094 * bus reset, then attempts to identify any devices found on
2095 * the bus.
2096 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002098 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 *
2100 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002101 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 */
2103
Brian King80289162006-08-07 14:27:31 -05002104int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002106 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002107 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002108 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002109 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Tejun Heo28ca5c52006-03-01 16:09:36 +09002111 ata_port_probe(ap);
2112
Tejun Heof58229f2007-08-06 18:36:23 +09002113 ata_link_for_each_dev(dev, &ap->link)
2114 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002115
2116 retry:
Tejun Heo20444702006-03-13 01:57:01 +09002117 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002118 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002119
Tejun Heof58229f2007-08-06 18:36:23 +09002120 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002121 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2122 dev->class != ATA_DEV_UNKNOWN)
2123 classes[dev->devno] = dev->class;
2124 else
2125 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002126
Tejun Heo52783c52006-05-31 18:28:22 +09002127 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Tejun Heo52783c52006-05-31 18:28:22 +09002130 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002131
Alan Coxb6079ca2006-05-22 16:52:06 +01002132 /* after the reset the device state is PIO 0 and the controller
2133 state is undefined. Record the mode */
2134
Tejun Heof58229f2007-08-06 18:36:23 +09002135 ata_link_for_each_dev(dev, &ap->link)
2136 dev->pio_mode = XFER_PIO_0;
Alan Coxb6079ca2006-05-22 16:52:06 +01002137
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002138 /* read IDENTIFY page and configure devices. We have to do the identify
2139 specific sequence bass-ackwards so that PDIAG- is released by
2140 the slave device */
2141
Tejun Heof58229f2007-08-06 18:36:23 +09002142 ata_link_for_each_dev(dev, &ap->link) {
2143 if (tries[dev->devno])
2144 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002145
Tejun Heoe1211e32006-04-01 01:38:18 +09002146 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002147 continue;
2148
Tejun Heobff04642006-11-10 18:08:10 +09002149 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2150 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002151 if (rc)
2152 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002153 }
2154
Alan Coxbe0d18d2007-03-06 02:37:56 -08002155 /* Now ask for the cable type as PDIAG- should have been released */
2156 if (ap->ops->cable_detect)
2157 ap->cbl = ap->ops->cable_detect(ap);
2158
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002159 /* After the identify sequence we can now set up the devices. We do
2160 this in the normal order so that the user doesn't get confused */
2161
Tejun Heof58229f2007-08-06 18:36:23 +09002162 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002163 if (!ata_dev_enabled(dev))
2164 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002165
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002166 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002167 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002168 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002169 if (rc)
2170 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 }
2172
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002173 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09002174 rc = ata_set_mode(ap, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002175 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002176 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Tejun Heof58229f2007-08-06 18:36:23 +09002178 ata_link_for_each_dev(dev, &ap->link)
2179 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002180 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002181
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002182 /* no device present, disable port */
2183 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002185 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002186
2187 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002188 tries[dev->devno]--;
2189
Tejun Heo14d2bac2006-04-02 17:54:46 +09002190 switch (rc) {
2191 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002192 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002193 tries[dev->devno] = 0;
2194 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002195
2196 case -ENODEV:
2197 /* give it just one more chance */
2198 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002199 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002200 if (tries[dev->devno] == 1) {
2201 /* This is the last chance, better to slow
2202 * down than lose it.
2203 */
Tejun Heo936fd732007-08-06 18:36:23 +09002204 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002205 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2206 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002207 }
2208
Tejun Heo4ae72a12007-02-02 16:22:30 +09002209 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002210 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002211
Tejun Heo14d2bac2006-04-02 17:54:46 +09002212 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213}
2214
2215/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002216 * ata_port_probe - Mark port as enabled
2217 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002219 * Modify @ap data structure such that the system
2220 * thinks that the entire port is enabled.
2221 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002222 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002223 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 */
2225
2226void ata_port_probe(struct ata_port *ap)
2227{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002228 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
2231/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002232 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002233 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002234 *
2235 * This function prints link speed and status of a SATA link.
2236 *
2237 * LOCKING:
2238 * None.
2239 */
Tejun Heo936fd732007-08-06 18:36:23 +09002240void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002241{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002242 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002243
Tejun Heo936fd732007-08-06 18:36:23 +09002244 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002245 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002246 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002247
Tejun Heo936fd732007-08-06 18:36:23 +09002248 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002249 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002250 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002251 "SATA link up %s (SStatus %X SControl %X)\n",
2252 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002253 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002254 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002255 "SATA link down (SStatus %X SControl %X)\n",
2256 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002257 }
2258}
2259
2260/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002261 * __sata_phy_reset - Wake/reset a low-level SATA PHY
2262 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002264 * This function issues commands to standard SATA Sxxx
2265 * PHY registers, to wake up the phy (and device), and
2266 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 *
2268 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002269 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 *
2271 */
2272void __sata_phy_reset(struct ata_port *ap)
2273{
Tejun Heo936fd732007-08-06 18:36:23 +09002274 struct ata_link *link = &ap->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo936fd732007-08-06 18:36:23 +09002276 u32 sstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05002279 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002280 sata_scr_write_flush(link, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09002281 /* Couldn't find anything in SATA I/II specs, but
2282 * AHCI-1.1 10.4.2 says at least 1 ms. */
2283 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 }
Tejun Heo81952c52006-05-15 20:57:47 +09002285 /* phy wake/clear reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002286 sata_scr_write_flush(link, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 /* wait for phy to become ready, if necessary */
2289 do {
2290 msleep(200);
Tejun Heo936fd732007-08-06 18:36:23 +09002291 sata_scr_read(link, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 if ((sstatus & 0xf) != 1)
2293 break;
2294 } while (time_before(jiffies, timeout));
2295
Tejun Heo3be680b2005-12-19 22:35:02 +09002296 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09002297 sata_print_link_status(link);
Jeff Garzik656563e2005-11-20 03:36:45 -05002298
Tejun Heo3be680b2005-12-19 22:35:02 +09002299 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09002300 if (!ata_link_offline(link))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09002302 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Tejun Heo198e0fe2006-04-02 18:51:52 +09002305 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return;
2307
2308 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2309 ata_port_disable(ap);
2310 return;
2311 }
2312
2313 ap->cbl = ATA_CBL_SATA;
2314}
2315
2316/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002317 * sata_phy_reset - Reset SATA bus.
2318 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002320 * This function resets the SATA bus, and then probes
2321 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 *
2323 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002324 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 *
2326 */
2327void sata_phy_reset(struct ata_port *ap)
2328{
2329 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09002330 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return;
2332 ata_bus_reset(ap);
2333}
2334
2335/**
Alan Coxebdfca62006-03-23 15:38:34 +00002336 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002337 * @adev: device
2338 *
2339 * Obtain the other device on the same cable, or if none is
2340 * present NULL is returned
2341 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002342
Tejun Heo3373efd2006-05-15 20:57:53 +09002343struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002344{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002345 struct ata_link *link = adev->link;
2346 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002347 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002348 return NULL;
2349 return pair;
2350}
2351
2352/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002353 * ata_port_disable - Disable port.
2354 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002356 * Modify @ap data structure such that the system
2357 * thinks that the entire port is disabled, and should
2358 * never attempt to probe or communicate with devices
2359 * on this port.
2360 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002361 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002362 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 */
2364
2365void ata_port_disable(struct ata_port *ap)
2366{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002367 ap->link.device[0].class = ATA_DEV_NONE;
2368 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002369 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370}
2371
Tejun Heo1c3fae42006-04-02 20:53:28 +09002372/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002373 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002374 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002375 *
Tejun Heo936fd732007-08-06 18:36:23 +09002376 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002377 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002378 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002379 *
2380 * LOCKING:
2381 * Inherited from caller.
2382 *
2383 * RETURNS:
2384 * 0 on success, negative errno on failure
2385 */
Tejun Heo936fd732007-08-06 18:36:23 +09002386int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002387{
Tejun Heo81952c52006-05-15 20:57:47 +09002388 u32 sstatus, spd, mask;
2389 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002390
Tejun Heo936fd732007-08-06 18:36:23 +09002391 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002392 return -EOPNOTSUPP;
2393
2394 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002395 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002396 */
Tejun Heo936fd732007-08-06 18:36:23 +09002397 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002398 if (rc == 0)
2399 spd = (sstatus >> 4) & 0xf;
2400 else
Tejun Heo936fd732007-08-06 18:36:23 +09002401 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002402
Tejun Heo936fd732007-08-06 18:36:23 +09002403 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002404 if (mask <= 1)
2405 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002406
2407 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002408 highbit = fls(mask) - 1;
2409 mask &= ~(1 << highbit);
2410
Tejun Heo008a7892007-07-16 14:29:40 +09002411 /* Mask off all speeds higher than or equal to the current
2412 * one. Force 1.5Gbps if current SPD is not available.
2413 */
2414 if (spd > 1)
2415 mask &= (1 << (spd - 1)) - 1;
2416 else
2417 mask &= 1;
2418
2419 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002420 if (!mask)
2421 return -EINVAL;
2422
Tejun Heo936fd732007-08-06 18:36:23 +09002423 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002424
Tejun Heo936fd732007-08-06 18:36:23 +09002425 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002426 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002427
2428 return 0;
2429}
2430
Tejun Heo936fd732007-08-06 18:36:23 +09002431static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002432{
2433 u32 spd, limit;
2434
Tejun Heo936fd732007-08-06 18:36:23 +09002435 if (link->sata_spd_limit == UINT_MAX)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002436 limit = 0;
2437 else
Tejun Heo936fd732007-08-06 18:36:23 +09002438 limit = fls(link->sata_spd_limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002439
2440 spd = (*scontrol >> 4) & 0xf;
2441 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
2442
2443 return spd != limit;
2444}
2445
2446/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002447 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002448 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002449 *
2450 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002451 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002452 * whether hardreset is necessary to apply SATA spd
2453 * configuration.
2454 *
2455 * LOCKING:
2456 * Inherited from caller.
2457 *
2458 * RETURNS:
2459 * 1 if SATA spd configuration is needed, 0 otherwise.
2460 */
Tejun Heo936fd732007-08-06 18:36:23 +09002461int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002462{
2463 u32 scontrol;
2464
Tejun Heo936fd732007-08-06 18:36:23 +09002465 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002466 return 0;
2467
Tejun Heo936fd732007-08-06 18:36:23 +09002468 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002469}
2470
2471/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002472 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002473 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002474 *
Tejun Heo936fd732007-08-06 18:36:23 +09002475 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002476 *
2477 * LOCKING:
2478 * Inherited from caller.
2479 *
2480 * RETURNS:
2481 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002482 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002483 */
Tejun Heo936fd732007-08-06 18:36:23 +09002484int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002485{
2486 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002487 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002488
Tejun Heo936fd732007-08-06 18:36:23 +09002489 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002490 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002491
Tejun Heo936fd732007-08-06 18:36:23 +09002492 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002493 return 0;
2494
Tejun Heo936fd732007-08-06 18:36:23 +09002495 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002496 return rc;
2497
Tejun Heo1c3fae42006-04-02 20:53:28 +09002498 return 1;
2499}
2500
Alan Cox452503f2005-10-21 19:01:32 -04002501/*
2502 * This mode timing computation functionality is ported over from
2503 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2504 */
2505/*
Alan Coxb352e572006-08-10 18:52:12 +01002506 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002507 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002508 * for UDMA6, which is currently supported only by Maxtor drives.
2509 *
2510 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002511 */
2512
2513static const struct ata_timing ata_timing[] = {
2514
2515 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
2516 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2517 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2518 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2519
Alan Coxb352e572006-08-10 18:52:12 +01002520 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
2521 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002522 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2523 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2524 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2525
2526/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002527
Alan Cox452503f2005-10-21 19:01:32 -04002528 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
2529 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2530 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002531
Alan Cox452503f2005-10-21 19:01:32 -04002532 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
2533 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2534 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2535
Alan Coxb352e572006-08-10 18:52:12 +01002536 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
2537 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002538 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2539 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2540
2541 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2542 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2543 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2544
2545/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2546
2547 { 0xFF }
2548};
2549
2550#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
2551#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
2552
2553static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2554{
2555 q->setup = EZ(t->setup * 1000, T);
2556 q->act8b = EZ(t->act8b * 1000, T);
2557 q->rec8b = EZ(t->rec8b * 1000, T);
2558 q->cyc8b = EZ(t->cyc8b * 1000, T);
2559 q->active = EZ(t->active * 1000, T);
2560 q->recover = EZ(t->recover * 1000, T);
2561 q->cycle = EZ(t->cycle * 1000, T);
2562 q->udma = EZ(t->udma * 1000, UT);
2563}
2564
2565void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2566 struct ata_timing *m, unsigned int what)
2567{
2568 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2569 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2570 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2571 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2572 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2573 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2574 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2575 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2576}
2577
2578static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
2579{
2580 const struct ata_timing *t;
2581
2582 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04002583 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04002584 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002585 return t;
Alan Cox452503f2005-10-21 19:01:32 -04002586}
2587
2588int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2589 struct ata_timing *t, int T, int UT)
2590{
2591 const struct ata_timing *s;
2592 struct ata_timing p;
2593
2594 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002595 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002596 */
Alan Cox452503f2005-10-21 19:01:32 -04002597
2598 if (!(s = ata_timing_find_mode(speed)))
2599 return -EINVAL;
2600
Albert Lee75b1f2f2005-11-16 17:06:18 +08002601 memcpy(t, s, sizeof(*s));
2602
Alan Cox452503f2005-10-21 19:01:32 -04002603 /*
2604 * If the drive is an EIDE drive, it can tell us it needs extended
2605 * PIO/MW_DMA cycle timing.
2606 */
2607
2608 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2609 memset(&p, 0, sizeof(p));
2610 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2611 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2612 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2613 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2614 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2615 }
2616 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2617 }
2618
2619 /*
2620 * Convert the timing to bus clock counts.
2621 */
2622
Albert Lee75b1f2f2005-11-16 17:06:18 +08002623 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002624
2625 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002626 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2627 * S.M.A.R.T * and some other commands. We have to ensure that the
2628 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002629 */
2630
Alanfd3367af2006-12-07 12:41:18 +00002631 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002632 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2633 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2634 }
2635
2636 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002637 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002638 */
2639
2640 if (t->act8b + t->rec8b < t->cyc8b) {
2641 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2642 t->rec8b = t->cyc8b - t->act8b;
2643 }
2644
2645 if (t->active + t->recover < t->cycle) {
2646 t->active += (t->cycle - (t->active + t->recover)) / 2;
2647 t->recover = t->cycle - t->active;
2648 }
Jeff Garzika617c092007-05-21 20:14:23 -04002649
Alan Cox4f701d12007-04-23 11:55:36 +01002650 /* In a few cases quantisation may produce enough errors to
2651 leave t->cycle too low for the sum of active and recovery
2652 if so we must correct this */
2653 if (t->active + t->recover > t->cycle)
2654 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002655
2656 return 0;
2657}
2658
Tejun Heocf176e12006-04-02 17:54:46 +09002659/**
2660 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002661 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09002662 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09002663 *
2664 * Adjust xfer masks of @dev downward. Note that this function
2665 * does not apply the change. Invoking ata_set_mode() afterwards
2666 * will apply the limit.
2667 *
2668 * LOCKING:
2669 * Inherited from caller.
2670 *
2671 * RETURNS:
2672 * 0 on success, negative errno on failure
2673 */
Tejun Heo458337d2007-02-02 16:22:30 +09002674int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09002675{
Tejun Heo458337d2007-02-02 16:22:30 +09002676 char buf[32];
2677 unsigned int orig_mask, xfer_mask;
2678 unsigned int pio_mask, mwdma_mask, udma_mask;
2679 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09002680
Tejun Heo458337d2007-02-02 16:22:30 +09002681 quiet = !!(sel & ATA_DNXFER_QUIET);
2682 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09002683
Tejun Heo458337d2007-02-02 16:22:30 +09002684 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
2685 dev->mwdma_mask,
2686 dev->udma_mask);
2687 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09002688
Tejun Heo458337d2007-02-02 16:22:30 +09002689 switch (sel) {
2690 case ATA_DNXFER_PIO:
2691 highbit = fls(pio_mask) - 1;
2692 pio_mask &= ~(1 << highbit);
2693 break;
2694
2695 case ATA_DNXFER_DMA:
2696 if (udma_mask) {
2697 highbit = fls(udma_mask) - 1;
2698 udma_mask &= ~(1 << highbit);
2699 if (!udma_mask)
2700 return -ENOENT;
2701 } else if (mwdma_mask) {
2702 highbit = fls(mwdma_mask) - 1;
2703 mwdma_mask &= ~(1 << highbit);
2704 if (!mwdma_mask)
2705 return -ENOENT;
2706 }
2707 break;
2708
2709 case ATA_DNXFER_40C:
2710 udma_mask &= ATA_UDMA_MASK_40C;
2711 break;
2712
2713 case ATA_DNXFER_FORCE_PIO0:
2714 pio_mask &= 1;
2715 case ATA_DNXFER_FORCE_PIO:
2716 mwdma_mask = 0;
2717 udma_mask = 0;
2718 break;
2719
Tejun Heo458337d2007-02-02 16:22:30 +09002720 default:
2721 BUG();
2722 }
2723
2724 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
2725
2726 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
2727 return -ENOENT;
2728
2729 if (!quiet) {
2730 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
2731 snprintf(buf, sizeof(buf), "%s:%s",
2732 ata_mode_string(xfer_mask),
2733 ata_mode_string(xfer_mask & ATA_MASK_PIO));
2734 else
2735 snprintf(buf, sizeof(buf), "%s",
2736 ata_mode_string(xfer_mask));
2737
2738 ata_dev_printk(dev, KERN_WARNING,
2739 "limiting speed to %s\n", buf);
2740 }
Tejun Heocf176e12006-04-02 17:54:46 +09002741
2742 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2743 &dev->udma_mask);
2744
Tejun Heocf176e12006-04-02 17:54:46 +09002745 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09002746}
2747
Tejun Heo3373efd2006-05-15 20:57:53 +09002748static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002750 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo83206a22006-03-24 15:25:31 +09002751 unsigned int err_mask;
2752 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Tejun Heoe8384602006-04-02 18:51:53 +09002754 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 if (dev->xfer_shift == ATA_SHIFT_PIO)
2756 dev->flags |= ATA_DFLAG_PIO;
2757
Tejun Heo3373efd2006-05-15 20:57:53 +09002758 err_mask = ata_dev_set_xfermode(dev);
Alan11750a42007-02-05 16:28:30 +00002759 /* Old CFA may refuse this command, which is just fine */
2760 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
2761 err_mask &= ~AC_ERR_DEV;
2762
Tejun Heo83206a22006-03-24 15:25:31 +09002763 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002764 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2765 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002766 return -EIO;
2767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Tejun Heobaa1e782006-11-01 18:39:27 +09002769 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo3373efd2006-05-15 20:57:53 +09002770 rc = ata_dev_revalidate(dev, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09002771 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002772 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002773 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002774
Tejun Heo23e71c32006-03-06 04:31:57 +09002775 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2776 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Tejun Heof15a1da2006-05-15 20:57:56 +09002778 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2779 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002780 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781}
2782
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783/**
Alan04351822007-03-06 02:37:52 -08002784 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002786 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 *
Alan04351822007-03-06 02:37:52 -08002788 * Standard implementation of the function used to tune and set
2789 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2790 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002791 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002792 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002794 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002795 *
2796 * RETURNS:
2797 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 */
Alan04351822007-03-06 02:37:52 -08002799
2800int ata_do_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801{
Tejun Heof58229f2007-08-06 18:36:23 +09002802 struct ata_link *link = &ap->link;
Tejun Heoe8e06192006-04-01 01:38:18 +09002803 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09002804 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09002805
Tejun Heoa6d5a512006-03-06 04:31:57 +09002806 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09002807 ata_link_for_each_dev(dev, link) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002808 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002809
Tejun Heoe1211e32006-04-01 01:38:18 +09002810 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002811 continue;
2812
Tejun Heo3373efd2006-05-15 20:57:53 +09002813 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002814
Tejun Heoacf356b2006-03-24 14:07:50 +09002815 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2816 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2817 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2818 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002819
Tejun Heo4f659772006-04-01 01:38:18 +09002820 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002821 if (dev->dma_mode)
2822 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002823 }
Tejun Heo4f659772006-04-01 01:38:18 +09002824 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002825 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002826
2827 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002828 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002829 if (!ata_dev_enabled(dev))
2830 continue;
2831
2832 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002833 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002834 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002835 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002836 }
2837
2838 dev->xfer_mode = dev->pio_mode;
2839 dev->xfer_shift = ATA_SHIFT_PIO;
2840 if (ap->ops->set_piomode)
2841 ap->ops->set_piomode(ap, dev);
2842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Tejun Heoa6d5a512006-03-06 04:31:57 +09002844 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002845 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002846 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2847 continue;
2848
2849 dev->xfer_mode = dev->dma_mode;
2850 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2851 if (ap->ops->set_dmamode)
2852 ap->ops->set_dmamode(ap, dev);
2853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
2855 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09002856 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00002857 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02002858 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002859 continue;
2860
Tejun Heo3373efd2006-05-15 20:57:53 +09002861 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002862 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002863 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Tejun Heoe8e06192006-04-01 01:38:18 +09002866 /* Record simplex status. If we selected DMA then the other
2867 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002868 */
Jeff Garzikcca39742006-08-24 03:19:22 -04002869 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00002870 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002871
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002872 out:
2873 if (rc)
2874 *r_failed_dev = dev;
2875 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
2877
2878/**
Alan04351822007-03-06 02:37:52 -08002879 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2880 * @ap: port on which timings will be programmed
2881 * @r_failed_dev: out paramter for failed device
2882 *
2883 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2884 * ata_set_mode() fails, pointer to the failing device is
2885 * returned in @r_failed_dev.
2886 *
2887 * LOCKING:
2888 * PCI/etc. bus probe sem.
2889 *
2890 * RETURNS:
2891 * 0 on success, negative errno otherwise
2892 */
2893int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
2894{
2895 /* has private set_mode? */
2896 if (ap->ops->set_mode)
2897 return ap->ops->set_mode(ap, r_failed_dev);
2898 return ata_do_set_mode(ap, r_failed_dev);
2899}
2900
2901/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002902 * ata_tf_to_host - issue ATA taskfile to host controller
2903 * @ap: port to which command is being issued
2904 * @tf: ATA taskfile register set
2905 *
2906 * Issues ATA taskfile register set to ATA host controller,
2907 * with proper synchronization with interrupt handler and
2908 * other threads.
2909 *
2910 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002911 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002912 */
2913
2914static inline void ata_tf_to_host(struct ata_port *ap,
2915 const struct ata_taskfile *tf)
2916{
2917 ap->ops->tf_load(ap, tf);
2918 ap->ops->exec_command(ap, tf);
2919}
2920
2921/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 * ata_busy_sleep - sleep until BSY clears, or timeout
2923 * @ap: port containing status register to be polled
2924 * @tmout_pat: impatience timeout
2925 * @tmout: overall timeout
2926 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002927 * Sleep until ATA Status register bit BSY clears,
2928 * or a timeout occurs.
2929 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09002930 * LOCKING:
2931 * Kernel thread context (may sleep).
2932 *
2933 * RETURNS:
2934 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09002936int ata_busy_sleep(struct ata_port *ap,
2937 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938{
2939 unsigned long timer_start, timeout;
2940 u8 status;
2941
2942 status = ata_busy_wait(ap, ATA_BUSY, 300);
2943 timer_start = jiffies;
2944 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002945 while (status != 0xff && (status & ATA_BUSY) &&
2946 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 msleep(50);
2948 status = ata_busy_wait(ap, ATA_BUSY, 3);
2949 }
2950
Tejun Heod1adc1b2006-10-09 18:32:15 +09002951 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09002952 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002953 "port is slow to respond, please be patient "
2954 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
2956 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002957 while (status != 0xff && (status & ATA_BUSY) &&
2958 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 msleep(50);
2960 status = ata_chk_status(ap);
2961 }
2962
Tejun Heod1adc1b2006-10-09 18:32:15 +09002963 if (status == 0xff)
2964 return -ENODEV;
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002967 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002968 "(%lu secs, Status 0x%x)\n",
2969 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09002970 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 }
2972
2973 return 0;
2974}
2975
Tejun Heod4b2bab2007-02-02 16:50:52 +09002976/**
2977 * ata_wait_ready - sleep until BSY clears, or timeout
2978 * @ap: port containing status register to be polled
2979 * @deadline: deadline jiffies for the operation
2980 *
2981 * Sleep until ATA Status register bit BSY clears, or timeout
2982 * occurs.
2983 *
2984 * LOCKING:
2985 * Kernel thread context (may sleep).
2986 *
2987 * RETURNS:
2988 * 0 on success, -errno otherwise.
2989 */
2990int ata_wait_ready(struct ata_port *ap, unsigned long deadline)
2991{
2992 unsigned long start = jiffies;
2993 int warned = 0;
2994
2995 while (1) {
2996 u8 status = ata_chk_status(ap);
2997 unsigned long now = jiffies;
2998
2999 if (!(status & ATA_BUSY))
3000 return 0;
Tejun Heo936fd732007-08-06 18:36:23 +09003001 if (!ata_link_online(&ap->link) && status == 0xff)
Tejun Heod4b2bab2007-02-02 16:50:52 +09003002 return -ENODEV;
3003 if (time_after(now, deadline))
3004 return -EBUSY;
3005
3006 if (!warned && time_after(now, start + 5 * HZ) &&
3007 (deadline - now > 3 * HZ)) {
3008 ata_port_printk(ap, KERN_WARNING,
3009 "port is slow to respond, please be patient "
3010 "(Status 0x%x)\n", status);
3011 warned = 1;
3012 }
3013
3014 msleep(50);
3015 }
3016}
3017
3018static int ata_bus_post_reset(struct ata_port *ap, unsigned int devmask,
3019 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020{
3021 struct ata_ioports *ioaddr = &ap->ioaddr;
3022 unsigned int dev0 = devmask & (1 << 0);
3023 unsigned int dev1 = devmask & (1 << 1);
Tejun Heo9b893912007-02-02 16:50:52 +09003024 int rc, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
3026 /* if device 0 was found in ata_devchk, wait for its
3027 * BSY bit to clear
3028 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003029 if (dev0) {
3030 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003031 if (rc) {
3032 if (rc != -ENODEV)
3033 return rc;
3034 ret = rc;
3035 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
Tejun Heoe141d992007-06-10 14:26:20 +09003038 /* if device 1 was found in ata_devchk, wait for register
3039 * access briefly, then wait for BSY to clear.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 */
Tejun Heoe141d992007-06-10 14:26:20 +09003041 if (dev1) {
3042 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
3044 ap->ops->dev_select(ap, 1);
Tejun Heoe141d992007-06-10 14:26:20 +09003045
3046 /* Wait for register access. Some ATAPI devices fail
3047 * to set nsect/lbal after reset, so don't waste too
3048 * much time on it. We're gonna wait for !BSY anyway.
3049 */
3050 for (i = 0; i < 2; i++) {
3051 u8 nsect, lbal;
3052
3053 nsect = ioread8(ioaddr->nsect_addr);
3054 lbal = ioread8(ioaddr->lbal_addr);
3055 if ((nsect == 1) && (lbal == 1))
3056 break;
3057 msleep(50); /* give drive a breather */
3058 }
3059
Tejun Heod4b2bab2007-02-02 16:50:52 +09003060 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003061 if (rc) {
3062 if (rc != -ENODEV)
3063 return rc;
3064 ret = rc;
3065 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
3068 /* is all this really necessary? */
3069 ap->ops->dev_select(ap, 0);
3070 if (dev1)
3071 ap->ops->dev_select(ap, 1);
3072 if (dev0)
3073 ap->ops->dev_select(ap, 0);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003074
Tejun Heo9b893912007-02-02 16:50:52 +09003075 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076}
3077
Tejun Heod4b2bab2007-02-02 16:50:52 +09003078static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
3079 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080{
3081 struct ata_ioports *ioaddr = &ap->ioaddr;
3082
Tejun Heo44877b42007-02-21 01:06:51 +09003083 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
3085 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003086 iowrite8(ap->ctl, ioaddr->ctl_addr);
3087 udelay(20); /* FIXME: flush */
3088 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
3089 udelay(20); /* FIXME: flush */
3090 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
3092 /* spec mandates ">= 2ms" before checking status.
3093 * We wait 150ms, because that was the magic delay used for
3094 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
3095 * between when the ATA command register is written, and then
3096 * status is checked. Because waiting for "a while" before
3097 * checking status is fine, post SRST, we perform this magic
3098 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00003099 *
3100 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 */
3102 msleep(150);
3103
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003104 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09003105 * the bus shows 0xFF because the odd clown forgets the D7
3106 * pulldown resistor.
3107 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003108 if (ata_check_status(ap) == 0xFF)
Tejun Heo9b893912007-02-02 16:50:52 +09003109 return -ENODEV;
Alan Cox09c7ad72006-03-22 15:52:40 +00003110
Tejun Heod4b2bab2007-02-02 16:50:52 +09003111 return ata_bus_post_reset(ap, devmask, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112}
3113
3114/**
3115 * ata_bus_reset - reset host port and associated ATA channel
3116 * @ap: port to reset
3117 *
3118 * This is typically the first time we actually start issuing
3119 * commands to the ATA channel. We wait for BSY to clear, then
3120 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
3121 * result. Determine what devices, if any, are on the channel
3122 * by looking at the device 0/1 error register. Look at the signature
3123 * stored in each device's taskfile registers, to determine if
3124 * the device is ATA or ATAPI.
3125 *
3126 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003127 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04003128 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 *
3130 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09003131 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 */
3133
3134void ata_bus_reset(struct ata_port *ap)
3135{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003136 struct ata_device *device = ap->link.device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 struct ata_ioports *ioaddr = &ap->ioaddr;
3138 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3139 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003140 unsigned int dev0, dev1 = 0, devmask = 0;
Tejun Heo9b893912007-02-02 16:50:52 +09003141 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Tejun Heo44877b42007-02-21 01:06:51 +09003143 DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
3145 /* determine if device 0/1 are present */
3146 if (ap->flags & ATA_FLAG_SATA_RESET)
3147 dev0 = 1;
3148 else {
3149 dev0 = ata_devchk(ap, 0);
3150 if (slave_possible)
3151 dev1 = ata_devchk(ap, 1);
3152 }
3153
3154 if (dev0)
3155 devmask |= (1 << 0);
3156 if (dev1)
3157 devmask |= (1 << 1);
3158
3159 /* select device 0 again */
3160 ap->ops->dev_select(ap, 0);
3161
3162 /* issue bus reset */
Tejun Heo9b893912007-02-02 16:50:52 +09003163 if (ap->flags & ATA_FLAG_SRST) {
3164 rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ);
3165 if (rc && rc != -ENODEV)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003166 goto err_out;
Tejun Heo9b893912007-02-02 16:50:52 +09003167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
3169 /*
3170 * determine by signature whether we have ATA or ATAPI devices
3171 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003172 device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 if ((slave_possible) && (err != 0x81))
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003174 device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 /* is double-select really necessary? */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003177 if (device[1].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 ap->ops->dev_select(ap, 1);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003179 if (device[0].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 ap->ops->dev_select(ap, 0);
3181
3182 /* if no devices were detected, disable this port */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003183 if ((device[0].class == ATA_DEV_NONE) &&
3184 (device[1].class == ATA_DEV_NONE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 goto err_out;
3186
3187 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
3188 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003189 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 }
3191
3192 DPRINTK("EXIT\n");
3193 return;
3194
3195err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003196 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 ap->ops->port_disable(ap);
3198
3199 DPRINTK("EXIT\n");
3200}
3201
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003202/**
Tejun Heo936fd732007-08-06 18:36:23 +09003203 * sata_link_debounce - debounce SATA phy status
3204 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003205 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003206 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003207 *
Tejun Heo936fd732007-08-06 18:36:23 +09003208* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003209 * holding the same value where DET is not 1 for @duration polled
3210 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003211 * beginning of the stable state. Because DET gets stuck at 1 on
3212 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003213 * until timeout then returns 0 if DET is stable at 1.
3214 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003215 * @timeout is further limited by @deadline. The sooner of the
3216 * two is used.
3217 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003218 * LOCKING:
3219 * Kernel thread context (may sleep)
3220 *
3221 * RETURNS:
3222 * 0 on success, -errno on failure.
3223 */
Tejun Heo936fd732007-08-06 18:36:23 +09003224int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3225 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003226{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003227 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003228 unsigned long duration = msecs_to_jiffies(params[1]);
3229 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003230 u32 last, cur;
3231 int rc;
3232
Tejun Heod4b2bab2007-02-02 16:50:52 +09003233 t = jiffies + msecs_to_jiffies(params[2]);
3234 if (time_before(t, deadline))
3235 deadline = t;
3236
Tejun Heo936fd732007-08-06 18:36:23 +09003237 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003238 return rc;
3239 cur &= 0xf;
3240
3241 last = cur;
3242 last_jiffies = jiffies;
3243
3244 while (1) {
3245 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003246 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003247 return rc;
3248 cur &= 0xf;
3249
3250 /* DET stable? */
3251 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003252 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003253 continue;
3254 if (time_after(jiffies, last_jiffies + duration))
3255 return 0;
3256 continue;
3257 }
3258
3259 /* unstable, start over */
3260 last = cur;
3261 last_jiffies = jiffies;
3262
Tejun Heof1545152007-07-16 14:29:40 +09003263 /* Check deadline. If debouncing failed, return
3264 * -EPIPE to tell upper layer to lower link speed.
3265 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003266 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003267 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003268 }
3269}
3270
3271/**
Tejun Heo936fd732007-08-06 18:36:23 +09003272 * sata_link_resume - resume SATA link
3273 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003274 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003275 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003276 *
Tejun Heo936fd732007-08-06 18:36:23 +09003277 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003278 *
3279 * LOCKING:
3280 * Kernel thread context (may sleep)
3281 *
3282 * RETURNS:
3283 * 0 on success, -errno on failure.
3284 */
Tejun Heo936fd732007-08-06 18:36:23 +09003285int sata_link_resume(struct ata_link *link, const unsigned long *params,
3286 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003287{
3288 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003289 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003290
Tejun Heo936fd732007-08-06 18:36:23 +09003291 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003292 return rc;
3293
Tejun Heo852ee162006-04-01 01:38:18 +09003294 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003295
Tejun Heo936fd732007-08-06 18:36:23 +09003296 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003297 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003298
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003299 /* Some PHYs react badly if SStatus is pounded immediately
3300 * after resuming. Delay 200ms before debouncing.
3301 */
3302 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003303
Tejun Heo936fd732007-08-06 18:36:23 +09003304 return sata_link_debounce(link, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003305}
3306
Tejun Heof5914a42006-05-31 18:27:48 +09003307/**
3308 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003309 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003310 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003311 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003312 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003313 * prereset makes libata abort whole reset sequence and give up
3314 * that port, so prereset should be best-effort. It does its
3315 * best to prepare for reset sequence but if things go wrong, it
3316 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003317 *
3318 * LOCKING:
3319 * Kernel thread context (may sleep)
3320 *
3321 * RETURNS:
3322 * 0 on success, -errno otherwise.
3323 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003324int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003325{
Tejun Heocc0680a2007-08-06 18:36:23 +09003326 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003327 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003328 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003329 int rc;
3330
Tejun Heo31daabd2007-02-02 16:50:52 +09003331 /* handle link resume */
Tejun Heo28324302006-07-03 16:07:26 +09003332 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
3333 (ap->flags & ATA_FLAG_HRST_TO_RESUME))
3334 ehc->i.action |= ATA_EH_HARDRESET;
3335
Tejun Heof5914a42006-05-31 18:27:48 +09003336 /* if we're about to do hardreset, nothing more to do */
3337 if (ehc->i.action & ATA_EH_HARDRESET)
3338 return 0;
3339
Tejun Heo936fd732007-08-06 18:36:23 +09003340 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003341 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003342 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003343 /* whine about phy resume failure but proceed */
3344 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003345 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003346 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003347 }
3348
3349 /* Wait for !BSY if the controller can wait for the first D2H
3350 * Reg FIS and we don't know that no device is attached.
3351 */
Tejun Heo936fd732007-08-06 18:36:23 +09003352 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_link_offline(link)) {
Tejun Heob8cffc62007-02-02 16:50:52 +09003353 rc = ata_wait_ready(ap, deadline);
Tejun Heo6dffaf62007-05-23 11:58:52 +02003354 if (rc && rc != -ENODEV) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003355 ata_link_printk(link, KERN_WARNING, "device not ready "
Tejun Heob8cffc62007-02-02 16:50:52 +09003356 "(errno=%d), forcing hardreset\n", rc);
3357 ehc->i.action |= ATA_EH_HARDRESET;
3358 }
3359 }
Tejun Heof5914a42006-05-31 18:27:48 +09003360
3361 return 0;
3362}
3363
Tejun Heoc2bd5802006-01-24 17:05:22 +09003364/**
3365 * ata_std_softreset - reset host port via ATA SRST
Tejun Heocc0680a2007-08-06 18:36:23 +09003366 * @link: ATA link to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003367 * @classes: resulting classes of attached devices
Tejun Heod4b2bab2007-02-02 16:50:52 +09003368 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003369 *
Tejun Heo52783c52006-05-31 18:28:22 +09003370 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003371 *
3372 * LOCKING:
3373 * Kernel thread context (may sleep)
3374 *
3375 * RETURNS:
3376 * 0 on success, -errno otherwise.
3377 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003378int ata_std_softreset(struct ata_link *link, unsigned int *classes,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003379 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003380{
Tejun Heocc0680a2007-08-06 18:36:23 +09003381 struct ata_port *ap = link->ap;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003382 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
Tejun Heod4b2bab2007-02-02 16:50:52 +09003383 unsigned int devmask = 0;
3384 int rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003385 u8 err;
3386
3387 DPRINTK("ENTER\n");
3388
Tejun Heo936fd732007-08-06 18:36:23 +09003389 if (ata_link_offline(link)) {
Tejun Heo3a397462006-02-10 23:58:48 +09003390 classes[0] = ATA_DEV_NONE;
3391 goto out;
3392 }
3393
Tejun Heoc2bd5802006-01-24 17:05:22 +09003394 /* determine if device 0/1 are present */
3395 if (ata_devchk(ap, 0))
3396 devmask |= (1 << 0);
3397 if (slave_possible && ata_devchk(ap, 1))
3398 devmask |= (1 << 1);
3399
Tejun Heoc2bd5802006-01-24 17:05:22 +09003400 /* select device 0 again */
3401 ap->ops->dev_select(ap, 0);
3402
3403 /* issue bus reset */
3404 DPRINTK("about to softreset, devmask=%x\n", devmask);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003405 rc = ata_bus_softreset(ap, devmask, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003406 /* if link is occupied, -ENODEV too is an error */
Tejun Heo936fd732007-08-06 18:36:23 +09003407 if (rc && (rc != -ENODEV || sata_scr_valid(link))) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003408 ata_link_printk(link, KERN_ERR, "SRST failed (errno=%d)\n", rc);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003409 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003410 }
3411
3412 /* determine by signature whether we have ATA or ATAPI devices */
3413 classes[0] = ata_dev_try_classify(ap, 0, &err);
3414 if (slave_possible && err != 0x81)
3415 classes[1] = ata_dev_try_classify(ap, 1, &err);
3416
Tejun Heo3a397462006-02-10 23:58:48 +09003417 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09003418 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
3419 return 0;
3420}
3421
3422/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003423 * sata_link_hardreset - reset link via SATA phy reset
3424 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003425 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003426 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003427 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003428 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003429 *
3430 * LOCKING:
3431 * Kernel thread context (may sleep)
3432 *
3433 * RETURNS:
3434 * 0 on success, -errno otherwise.
3435 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003436int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003437 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003438{
Tejun Heo852ee162006-04-01 01:38:18 +09003439 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003440 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003441
Tejun Heoc2bd5802006-01-24 17:05:22 +09003442 DPRINTK("ENTER\n");
3443
Tejun Heo936fd732007-08-06 18:36:23 +09003444 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003445 /* SATA spec says nothing about how to reconfigure
3446 * spd. To be on the safe side, turn off phy during
3447 * reconfiguration. This works for at least ICH7 AHCI
3448 * and Sil3124.
3449 */
Tejun Heo936fd732007-08-06 18:36:23 +09003450 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003451 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003452
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003453 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003454
Tejun Heo936fd732007-08-06 18:36:23 +09003455 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003456 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003457
Tejun Heo936fd732007-08-06 18:36:23 +09003458 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003459 }
3460
3461 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003462 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003463 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003464
Tejun Heo852ee162006-04-01 01:38:18 +09003465 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003466
Tejun Heo936fd732007-08-06 18:36:23 +09003467 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003468 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003469
Tejun Heo1c3fae42006-04-02 20:53:28 +09003470 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003471 * 10.4.2 says at least 1 ms.
3472 */
3473 msleep(1);
3474
Tejun Heo936fd732007-08-06 18:36:23 +09003475 /* bring link back */
3476 rc = sata_link_resume(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003477 out:
3478 DPRINTK("EXIT, rc=%d\n", rc);
3479 return rc;
3480}
3481
3482/**
3483 * sata_std_hardreset - reset host port via SATA phy reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003484 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003485 * @class: resulting class of attached device
Tejun Heod4b2bab2007-02-02 16:50:52 +09003486 * @deadline: deadline jiffies for the operation
Tejun Heob6103f62006-11-01 17:59:53 +09003487 *
3488 * SATA phy-reset host port using DET bits of SControl register,
3489 * wait for !BSY and classify the attached device.
3490 *
3491 * LOCKING:
3492 * Kernel thread context (may sleep)
3493 *
3494 * RETURNS:
3495 * 0 on success, -errno otherwise.
3496 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003497int sata_std_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003498 unsigned long deadline)
Tejun Heob6103f62006-11-01 17:59:53 +09003499{
Tejun Heocc0680a2007-08-06 18:36:23 +09003500 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003501 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heob6103f62006-11-01 17:59:53 +09003502 int rc;
3503
3504 DPRINTK("ENTER\n");
3505
3506 /* do hardreset */
Tejun Heocc0680a2007-08-06 18:36:23 +09003507 rc = sata_link_hardreset(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003508 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003509 ata_link_printk(link, KERN_ERR,
Tejun Heob6103f62006-11-01 17:59:53 +09003510 "COMRESET failed (errno=%d)\n", rc);
3511 return rc;
3512 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003513
Tejun Heoc2bd5802006-01-24 17:05:22 +09003514 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09003515 if (ata_link_offline(link)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09003516 *class = ATA_DEV_NONE;
3517 DPRINTK("EXIT, link offline\n");
3518 return 0;
3519 }
3520
Tejun Heo34fee222007-02-02 15:29:27 +09003521 /* wait a while before checking status, see SRST for more info */
3522 msleep(150);
3523
Tejun Heod4b2bab2007-02-02 16:50:52 +09003524 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003525 /* link occupied, -ENODEV too is an error */
3526 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003527 ata_link_printk(link, KERN_ERR,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003528 "COMRESET failed (errno=%d)\n", rc);
3529 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003530 }
3531
Tejun Heo3a397462006-02-10 23:58:48 +09003532 ap->ops->dev_select(ap, 0); /* probably unnecessary */
3533
Tejun Heoc2bd5802006-01-24 17:05:22 +09003534 *class = ata_dev_try_classify(ap, 0, NULL);
3535
3536 DPRINTK("EXIT, class=%u\n", *class);
3537 return 0;
3538}
3539
3540/**
3541 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003542 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003543 * @classes: classes of attached devices
3544 *
3545 * This function is invoked after a successful reset. Note that
3546 * the device might have been reset more than once using
3547 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003548 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003549 * LOCKING:
3550 * Kernel thread context (may sleep)
3551 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003552void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003553{
Tejun Heocc0680a2007-08-06 18:36:23 +09003554 struct ata_port *ap = link->ap;
Tejun Heodc2b3512006-05-15 20:58:00 +09003555 u32 serror;
3556
Tejun Heoc2bd5802006-01-24 17:05:22 +09003557 DPRINTK("ENTER\n");
3558
Tejun Heoc2bd5802006-01-24 17:05:22 +09003559 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003560 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003561
Tejun Heodc2b3512006-05-15 20:58:00 +09003562 /* clear SError */
Tejun Heo936fd732007-08-06 18:36:23 +09003563 if (sata_scr_read(link, SCR_ERROR, &serror) == 0)
3564 sata_scr_write(link, SCR_ERROR, serror);
Tejun Heodc2b3512006-05-15 20:58:00 +09003565
Tejun Heoc2bd5802006-01-24 17:05:22 +09003566 /* is double-select really necessary? */
3567 if (classes[0] != ATA_DEV_NONE)
3568 ap->ops->dev_select(ap, 1);
3569 if (classes[1] != ATA_DEV_NONE)
3570 ap->ops->dev_select(ap, 0);
3571
Tejun Heo3a397462006-02-10 23:58:48 +09003572 /* bail out if no device is present */
3573 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3574 DPRINTK("EXIT, no device\n");
3575 return;
3576 }
3577
3578 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003579 if (ap->ioaddr.ctl_addr)
3580 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003581
3582 DPRINTK("EXIT\n");
3583}
3584
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003585/**
Tejun Heo623a3122006-03-05 17:55:58 +09003586 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003587 * @dev: device to compare against
3588 * @new_class: class of the new device
3589 * @new_id: IDENTIFY page of the new device
3590 *
3591 * Compare @new_class and @new_id against @dev and determine
3592 * whether @dev is the device indicated by @new_class and
3593 * @new_id.
3594 *
3595 * LOCKING:
3596 * None.
3597 *
3598 * RETURNS:
3599 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3600 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003601static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3602 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003603{
3604 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003605 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3606 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003607
3608 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003609 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3610 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003611 return 0;
3612 }
3613
Tejun Heoa0cf7332007-01-02 20:18:49 +09003614 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3615 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3616 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3617 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003618
3619 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003620 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3621 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003622 return 0;
3623 }
3624
3625 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003626 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3627 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003628 return 0;
3629 }
3630
Tejun Heo623a3122006-03-05 17:55:58 +09003631 return 1;
3632}
3633
3634/**
Tejun Heofe309112007-05-15 03:28:15 +09003635 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003636 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003637 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003638 *
3639 * Re-read IDENTIFY page and make sure @dev is still attached to
3640 * the port.
3641 *
3642 * LOCKING:
3643 * Kernel thread context (may sleep)
3644 *
3645 * RETURNS:
3646 * 0 on success, negative errno otherwise
3647 */
Tejun Heofe309112007-05-15 03:28:15 +09003648int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003649{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003650 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003651 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003652 int rc;
3653
Tejun Heofe635c72006-05-15 20:57:35 +09003654 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003655 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003656 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003657 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003658
3659 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003660 if (!ata_dev_same_device(dev, class, id))
3661 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003662
Tejun Heofe635c72006-05-15 20:57:35 +09003663 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003664 return 0;
3665}
3666
3667/**
3668 * ata_dev_revalidate - Revalidate ATA device
3669 * @dev: device to revalidate
3670 * @readid_flags: read ID flags
3671 *
3672 * Re-read IDENTIFY page, make sure @dev is still attached to the
3673 * port and reconfigure it according to the new IDENTIFY page.
3674 *
3675 * LOCKING:
3676 * Kernel thread context (may sleep)
3677 *
3678 * RETURNS:
3679 * 0 on success, negative errno otherwise
3680 */
3681int ata_dev_revalidate(struct ata_device *dev, unsigned int readid_flags)
3682{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003683 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003684 int rc;
3685
3686 if (!ata_dev_enabled(dev))
3687 return -ENODEV;
3688
3689 /* re-read ID */
3690 rc = ata_dev_reread_id(dev, readid_flags);
3691 if (rc)
3692 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003693
3694 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003695 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003696 if (rc)
3697 goto fail;
3698
3699 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09003700 if (dev->class == ATA_DEV_ATA && n_sectors &&
3701 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003702 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3703 "%llu != %llu\n",
3704 (unsigned long long)n_sectors,
3705 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09003706
3707 /* restore original n_sectors */
3708 dev->n_sectors = n_sectors;
3709
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003710 rc = -ENODEV;
3711 goto fail;
3712 }
3713
3714 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003715
3716 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003717 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003718 return rc;
3719}
3720
Alan Cox6919a0a2006-10-27 19:08:46 -07003721struct ata_blacklist_entry {
3722 const char *model_num;
3723 const char *model_rev;
3724 unsigned long horkage;
3725};
3726
3727static const struct ata_blacklist_entry ata_device_blacklist [] = {
3728 /* Devices with DMA related problems under Linux */
3729 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3730 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3731 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3732 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3733 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3734 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3735 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3736 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3737 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3738 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3739 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3740 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3741 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3742 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3743 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3744 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3745 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3746 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3747 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3748 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3749 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3750 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3751 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3752 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3753 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3754 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003755 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3756 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3757 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003758 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo5acd50f2007-06-10 14:52:36 +09003759 { "IOMEGA ZIP 250 ATAPI", NULL, ATA_HORKAGE_NODMA }, /* temporary fix */
Tejun Heo39ce7122007-07-05 12:31:31 +09003760 { "IOMEGA ZIP 250 ATAPI Floppy",
3761 NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003762
Albert Lee18d6e9d2007-04-02 11:34:15 +08003763 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003764 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003765
Alan Cox6919a0a2006-10-27 19:08:46 -07003766 /* Devices we expect to fail diagnostics */
3767
3768 /* Devices where NCQ should be avoided */
3769 /* NCQ is slow */
3770 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo09125ea2007-02-28 15:21:23 +09003771 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3772 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003773 /* NCQ is broken */
3774 { "Maxtor 6L250S0", "BANC1G10", ATA_HORKAGE_NONCQ },
Chuck Ebberte8361fc2007-07-12 14:37:19 -04003775 { "Maxtor 6B200M0", "BANC1BM0", ATA_HORKAGE_NONCQ },
Jeff Garzik471e44b2007-05-28 09:00:05 -04003776 { "Maxtor 6B200M0", "BANC1B10", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003777 { "Maxtor 7B250S0", "BANC1B70", ATA_HORKAGE_NONCQ, },
3778 { "Maxtor 7B300S0", "BANC1B70", ATA_HORKAGE_NONCQ },
3779 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Prarit Bhargava2f8d90a2007-07-10 18:13:28 -04003780 { "HITACHI HDS7250SASUN500G 0621KTAWSD", "K2AOAJ0AHITACHI",
3781 ATA_HORKAGE_NONCQ },
Jens Axboe96442922007-03-30 09:27:58 +02003782 /* NCQ hard hangs device under heavier load, needs hard power cycle */
3783 { "Maxtor 6B250S0", "BANC1B70", ATA_HORKAGE_NONCQ },
Robert Hancock36e337d2007-04-02 22:05:29 -06003784 /* Blacklist entries taken from Silicon Image 3124/3132
3785 Windows driver .inf file - also several Linux problem reports */
3786 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3787 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3788 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Tejun Heobd9c5a32007-06-08 22:20:59 +09003789 /* Drives which do spurious command completion */
3790 { "HTS541680J9SA00", "SB2IC7EP", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003791 { "HTS541612J9SA00", "SBDIC7JP", ATA_HORKAGE_NONCQ, },
Tejun Heoe14cbfa2007-06-25 11:28:59 +09003792 { "Hitachi HTS541616J9SA00", "SB4OC70P", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003793 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heoa520f262007-07-10 16:16:18 +09003794 { "FUJITSU MHV2080BH", "00840028", ATA_HORKAGE_NONCQ, },
Tejun Heo3fb65892007-07-20 12:49:38 +09003795 { "ST9160821AS", "3.CLF", ATA_HORKAGE_NONCQ, },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003796 { "ST3160812AS", "3.AD", ATA_HORKAGE_NONCQ, },
Tejun Heo5d6aca82007-07-28 16:25:25 +09003797 { "SAMSUNG HD401LJ", "ZZ100-15", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003798
Tejun Heo16c55b02007-08-29 11:58:33 +09003799 /* devices which puke on READ_NATIVE_MAX */
3800 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3801 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3802 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3803 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003804
3805 /* End Marker */
3806 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003808
Tejun Heo75683fe2007-07-05 13:31:27 +09003809static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003811 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3812 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003813 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003814
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003815 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3816 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Alan Cox6919a0a2006-10-27 19:08:46 -07003818 while (ad->model_num) {
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003819 if (!strcmp(ad->model_num, model_num)) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003820 if (ad->model_rev == NULL)
3821 return ad->horkage;
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003822 if (!strcmp(ad->model_rev, model_rev))
Alan Cox6919a0a2006-10-27 19:08:46 -07003823 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003824 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003825 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 return 0;
3828}
3829
Alan Cox6919a0a2006-10-27 19:08:46 -07003830static int ata_dma_blacklisted(const struct ata_device *dev)
3831{
3832 /* We don't support polling DMA.
3833 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3834 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3835 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003836 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07003837 (dev->flags & ATA_DFLAG_CDB_INTR))
3838 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09003839 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07003840}
3841
Tejun Heoa6d5a512006-03-06 04:31:57 +09003842/**
3843 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003844 * @dev: Device to compute xfermask for
3845 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003846 * Compute supported xfermask of @dev and store it in
3847 * dev->*_mask. This function is responsible for applying all
3848 * known limits including host controller limits, device
3849 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003850 *
3851 * LOCKING:
3852 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003853 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003854static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003856 struct ata_link *link = dev->link;
3857 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04003858 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003859 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
Tejun Heo37deecb2006-08-10 16:59:07 +09003861 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09003862 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3863 ap->mwdma_mask, ap->udma_mask);
3864
Robert Hancock8343f882007-03-06 02:37:51 -08003865 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09003866 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
3867 dev->mwdma_mask, dev->udma_mask);
3868 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09003869
Alan Coxb352e572006-08-10 18:52:12 +01003870 /*
3871 * CFA Advanced TrueIDE timings are not allowed on a shared
3872 * cable
3873 */
3874 if (ata_dev_pair(dev)) {
3875 /* No PIO5 or PIO6 */
3876 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
3877 /* No MWDMA3 or MWDMA 4 */
3878 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
3879 }
3880
Tejun Heo37deecb2006-08-10 16:59:07 +09003881 if (ata_dma_blacklisted(dev)) {
3882 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09003883 ata_dev_printk(dev, KERN_WARNING,
3884 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09003885 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09003886
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01003887 if ((host->flags & ATA_HOST_SIMPLEX) &&
3888 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09003889 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3890 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
3891 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01003892 }
Tejun Heo565083e2006-04-02 17:54:47 +09003893
Jeff Garzike4246752007-03-09 09:56:46 -05003894 if (ap->flags & ATA_FLAG_NO_IORDY)
3895 xfer_mask &= ata_pio_mask_no_iordy(dev);
3896
Alan Cox5444a6f2006-03-27 18:58:20 +01003897 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05003898 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003899
Robert Hancock8343f882007-03-06 02:37:51 -08003900 /* Apply cable rule here. Don't apply it early because when
3901 * we handle hot plug the cable type can itself change.
3902 * Check this last so that we know if the transfer rate was
3903 * solely limited by the cable.
3904 * Unknown or 80 wire cables reported host side are checked
3905 * drive side as well. Cases where we know a 40wire cable
3906 * is used safely for 80 are not checked here.
3907 */
3908 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
3909 /* UDMA/44 or higher would be available */
3910 if((ap->cbl == ATA_CBL_PATA40) ||
3911 (ata_drive_40wire(dev->id) &&
3912 (ap->cbl == ATA_CBL_PATA_UNK ||
3913 ap->cbl == ATA_CBL_PATA80))) {
3914 ata_dev_printk(dev, KERN_WARNING,
3915 "limited to UDMA/33 due to 40-wire cable\n");
3916 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
3917 }
3918
Tejun Heo565083e2006-04-02 17:54:47 +09003919 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3920 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921}
3922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 * @dev: Device to which command will be sent
3926 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003927 * Issue SET FEATURES - XFER MODE command to device @dev
3928 * on port @ap.
3929 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003931 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003932 *
3933 * RETURNS:
3934 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 */
3936
Tejun Heo3373efd2006-05-15 20:57:53 +09003937static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938{
Tejun Heoa0123702005-12-13 14:49:31 +09003939 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003940 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
3942 /* set up set-features taskfile */
3943 DPRINTK("set features - xfer mode\n");
3944
Tejun Heo464cf172007-05-27 15:10:40 +02003945 /* Some controllers and ATAPI devices show flaky interrupt
3946 * behavior after setting xfer mode. Use polling instead.
3947 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003948 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003949 tf.command = ATA_CMD_SET_FEATURES;
3950 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02003951 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09003952 tf.protocol = ATA_PROT_NODATA;
3953 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Tejun Heo3373efd2006-05-15 20:57:53 +09003955 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Tejun Heo83206a22006-03-24 15:25:31 +09003957 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3958 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959}
3960
3961/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003962 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003963 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003964 * @heads: Number of heads (taskfile parameter)
3965 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003966 *
3967 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003968 * Kernel thread context (may sleep)
3969 *
3970 * RETURNS:
3971 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003972 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003973static unsigned int ata_dev_init_params(struct ata_device *dev,
3974 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003975{
Tejun Heoa0123702005-12-13 14:49:31 +09003976 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003977 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003978
3979 /* Number of sectors per track 1-255. Number of heads 1-16 */
3980 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003981 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003982
3983 /* set up init dev params taskfile */
3984 DPRINTK("init dev params \n");
3985
Tejun Heo3373efd2006-05-15 20:57:53 +09003986 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003987 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3988 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3989 tf.protocol = ATA_PROT_NODATA;
3990 tf.nsect = sectors;
3991 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003992
Tejun Heo3373efd2006-05-15 20:57:53 +09003993 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Alan Cox18b24662007-08-08 14:28:49 +01003994 /* A clean abort indicates an original or just out of spec drive
3995 and we should continue as we issue the setup based on the
3996 drive reported working geometry */
3997 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
3998 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003999
Tejun Heo6aff8f12006-02-15 18:24:09 +09004000 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4001 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004002}
4003
4004/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004005 * ata_sg_clean - Unmap DMA memory associated with command
4006 * @qc: Command containing DMA memory to be released
4007 *
4008 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 *
4010 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004011 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004013void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014{
4015 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004016 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004018 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019
Tejun Heoa46314742006-02-11 19:11:13 +09004020 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
4021 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
4023 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05004024 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004026 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004028 /* if we padded the buffer out to 32-bit bound, and data
4029 * xfer direction is from-device, we must copy from the
4030 * pad buffer back into the supplied buffer
4031 */
4032 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
4033 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4034
4035 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05004036 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004037 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004038 /* restore last sg */
4039 sg[qc->orig_n_elem - 1].length += qc->pad_len;
4040 if (pad_buf) {
4041 struct scatterlist *psg = &qc->pad_sgent;
4042 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4043 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004044 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004045 }
4046 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09004047 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004048 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05004049 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
4050 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004051 /* restore sg */
4052 sg->length += qc->pad_len;
4053 if (pad_buf)
4054 memcpy(qc->buf_virt + sg->length - qc->pad_len,
4055 pad_buf, qc->pad_len);
4056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
4058 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004059 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060}
4061
4062/**
4063 * ata_fill_sg - Fill PCI IDE PRD table
4064 * @qc: Metadata associated with taskfile to be transferred
4065 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004066 * Fill PCI IDE PRD (scatter-gather) table with segments
4067 * associated with the current disk command.
4068 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004070 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 *
4072 */
4073static void ata_fill_sg(struct ata_queued_cmd *qc)
4074{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004076 struct scatterlist *sg;
4077 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Tejun Heoa46314742006-02-11 19:11:13 +09004079 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05004080 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
4082 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004083 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 u32 addr, offset;
4085 u32 sg_len, len;
4086
4087 /* determine if physical DMA addr spans 64K boundary.
4088 * Note h/w doesn't support 64-bit, so we unconditionally
4089 * truncate dma_addr_t to u32.
4090 */
4091 addr = (u32) sg_dma_address(sg);
4092 sg_len = sg_dma_len(sg);
4093
4094 while (sg_len) {
4095 offset = addr & 0xffff;
4096 len = sg_len;
4097 if ((offset + sg_len) > 0x10000)
4098 len = 0x10000 - offset;
4099
4100 ap->prd[idx].addr = cpu_to_le32(addr);
4101 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
4102 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4103
4104 idx++;
4105 sg_len -= len;
4106 addr += len;
4107 }
4108 }
4109
4110 if (idx)
4111 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4112}
Tejun Heob9a41972007-06-27 02:48:43 +09004113
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114/**
Alan Coxd26fc952007-07-06 19:13:52 -04004115 * ata_fill_sg_dumb - Fill PCI IDE PRD table
4116 * @qc: Metadata associated with taskfile to be transferred
4117 *
4118 * Fill PCI IDE PRD (scatter-gather) table with segments
4119 * associated with the current disk command. Perform the fill
4120 * so that we avoid writing any length 64K records for
4121 * controllers that don't follow the spec.
4122 *
4123 * LOCKING:
4124 * spin_lock_irqsave(host lock)
4125 *
4126 */
4127static void ata_fill_sg_dumb(struct ata_queued_cmd *qc)
4128{
4129 struct ata_port *ap = qc->ap;
4130 struct scatterlist *sg;
4131 unsigned int idx;
4132
4133 WARN_ON(qc->__sg == NULL);
4134 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
4135
4136 idx = 0;
4137 ata_for_each_sg(sg, qc) {
4138 u32 addr, offset;
4139 u32 sg_len, len, blen;
4140
4141 /* determine if physical DMA addr spans 64K boundary.
4142 * Note h/w doesn't support 64-bit, so we unconditionally
4143 * truncate dma_addr_t to u32.
4144 */
4145 addr = (u32) sg_dma_address(sg);
4146 sg_len = sg_dma_len(sg);
4147
4148 while (sg_len) {
4149 offset = addr & 0xffff;
4150 len = sg_len;
4151 if ((offset + sg_len) > 0x10000)
4152 len = 0x10000 - offset;
4153
4154 blen = len & 0xffff;
4155 ap->prd[idx].addr = cpu_to_le32(addr);
4156 if (blen == 0) {
4157 /* Some PATA chipsets like the CS5530 can't
4158 cope with 0x0000 meaning 64K as the spec says */
4159 ap->prd[idx].flags_len = cpu_to_le32(0x8000);
4160 blen = 0x8000;
4161 ap->prd[++idx].addr = cpu_to_le32(addr + 0x8000);
4162 }
4163 ap->prd[idx].flags_len = cpu_to_le32(blen);
4164 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4165
4166 idx++;
4167 sg_len -= len;
4168 addr += len;
4169 }
4170 }
4171
4172 if (idx)
4173 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4174}
4175
4176/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4178 * @qc: Metadata associated with taskfile to check
4179 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004180 * Allow low-level driver to filter ATA PACKET commands, returning
4181 * a status indicating whether or not it is OK to use DMA for the
4182 * supplied PACKET command.
4183 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004185 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004186 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 * RETURNS: 0 when ATAPI DMA can be used
4188 * nonzero otherwise
4189 */
4190int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4191{
4192 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
Tejun Heob9a41972007-06-27 02:48:43 +09004194 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4195 * few ATAPI devices choke on such DMA requests.
4196 */
4197 if (unlikely(qc->nbytes & 15))
4198 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004199
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004201 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
Tejun Heob9a41972007-06-27 02:48:43 +09004203 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204}
Tejun Heob9a41972007-06-27 02:48:43 +09004205
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206/**
4207 * ata_qc_prep - Prepare taskfile for submission
4208 * @qc: Metadata associated with taskfile to be prepared
4209 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004210 * Prepare ATA taskfile for submission.
4211 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004213 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 */
4215void ata_qc_prep(struct ata_queued_cmd *qc)
4216{
4217 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4218 return;
4219
4220 ata_fill_sg(qc);
4221}
4222
Alan Coxd26fc952007-07-06 19:13:52 -04004223/**
4224 * ata_dumb_qc_prep - Prepare taskfile for submission
4225 * @qc: Metadata associated with taskfile to be prepared
4226 *
4227 * Prepare ATA taskfile for submission.
4228 *
4229 * LOCKING:
4230 * spin_lock_irqsave(host lock)
4231 */
4232void ata_dumb_qc_prep(struct ata_queued_cmd *qc)
4233{
4234 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4235 return;
4236
4237 ata_fill_sg_dumb(qc);
4238}
4239
Brian Kinge46834c2006-03-17 17:04:03 -06004240void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4241
Jeff Garzik0cba6322005-05-30 19:49:12 -04004242/**
4243 * ata_sg_init_one - Associate command with memory buffer
4244 * @qc: Command to be associated
4245 * @buf: Memory buffer
4246 * @buflen: Length of memory buffer, in bytes.
4247 *
4248 * Initialize the data-related elements of queued_cmd @qc
4249 * to point to a single memory buffer, @buf of byte length @buflen.
4250 *
4251 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004252 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004253 */
4254
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
4256{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 qc->flags |= ATA_QCFLAG_SINGLE;
4258
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004259 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004261 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05004263 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Tejun Heo61c05962006-11-14 22:35:43 +09004265 sg_init_one(&qc->sgent, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266}
4267
Jeff Garzik0cba6322005-05-30 19:49:12 -04004268/**
4269 * ata_sg_init - Associate command with scatter-gather table.
4270 * @qc: Command to be associated
4271 * @sg: Scatter-gather table.
4272 * @n_elem: Number of elements in s/g table.
4273 *
4274 * Initialize the data-related elements of queued_cmd @qc
4275 * to point to a scatter-gather table @sg, containing @n_elem
4276 * elements.
4277 *
4278 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004279 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004280 */
4281
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4283 unsigned int n_elem)
4284{
4285 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004286 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004288 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289}
4290
4291/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004292 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
4293 * @qc: Command with memory buffer to be mapped.
4294 *
4295 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 *
4297 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004298 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 *
4300 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004301 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 */
4303
4304static int ata_sg_setup_one(struct ata_queued_cmd *qc)
4305{
4306 struct ata_port *ap = qc->ap;
4307 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004308 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004310 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004312 /* we must lengthen transfers to end on a 32-bit boundary */
4313 qc->pad_len = sg->length & 3;
4314 if (qc->pad_len) {
4315 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4316 struct scatterlist *psg = &qc->pad_sgent;
4317
Tejun Heoa46314742006-02-11 19:11:13 +09004318 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004319
4320 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4321
4322 if (qc->tf.flags & ATA_TFLAG_WRITE)
4323 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
4324 qc->pad_len);
4325
4326 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4327 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4328 /* trim sg */
4329 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004330 if (sg->length == 0)
4331 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004332
4333 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
4334 sg->length, qc->pad_len);
4335 }
4336
Tejun Heo2e242fa2006-02-20 23:48:38 +09004337 if (trim_sg) {
4338 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05004339 goto skip_map;
4340 }
4341
Brian King2f1f6102006-03-23 17:30:15 -06004342 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04004343 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004344 if (dma_mapping_error(dma_address)) {
4345 /* restore sg */
4346 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349
4350 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04004351 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352
Tejun Heo2e242fa2006-02-20 23:48:38 +09004353skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
4355 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4356
4357 return 0;
4358}
4359
4360/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004361 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4362 * @qc: Command with scatter-gather table to be mapped.
4363 *
4364 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 *
4366 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004367 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 *
4369 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004370 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 *
4372 */
4373
4374static int ata_sg_setup(struct ata_queued_cmd *qc)
4375{
4376 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004377 struct scatterlist *sg = qc->__sg;
4378 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05004379 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
Tejun Heo44877b42007-02-21 01:06:51 +09004381 VPRINTK("ENTER, ata%u\n", ap->print_id);
Tejun Heoa46314742006-02-11 19:11:13 +09004382 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004384 /* we must lengthen transfers to end on a 32-bit boundary */
4385 qc->pad_len = lsg->length & 3;
4386 if (qc->pad_len) {
4387 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4388 struct scatterlist *psg = &qc->pad_sgent;
4389 unsigned int offset;
4390
Tejun Heoa46314742006-02-11 19:11:13 +09004391 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004392
4393 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4394
4395 /*
4396 * psg->page/offset are used to copy to-be-written
4397 * data in this function or read data in ata_sg_clean.
4398 */
4399 offset = lsg->offset + lsg->length - qc->pad_len;
4400 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
4401 psg->offset = offset_in_page(offset);
4402
4403 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4404 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4405 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004406 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004407 }
4408
4409 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4410 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4411 /* trim last sg */
4412 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05004413 if (lsg->length == 0)
4414 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004415
4416 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
4417 qc->n_elem - 1, lsg->length, qc->pad_len);
4418 }
4419
Jeff Garzike1410f22005-11-14 14:06:26 -05004420 pre_n_elem = qc->n_elem;
4421 if (trim_sg && pre_n_elem)
4422 pre_n_elem--;
4423
4424 if (!pre_n_elem) {
4425 n_elem = 0;
4426 goto skip_map;
4427 }
4428
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06004430 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004431 if (n_elem < 1) {
4432 /* restore last sg */
4433 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436
4437 DPRINTK("%d sg elements mapped\n", n_elem);
4438
Jeff Garzike1410f22005-11-14 14:06:26 -05004439skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 qc->n_elem = n_elem;
4441
4442 return 0;
4443}
4444
4445/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004446 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004447 * @buf: Buffer to swap
4448 * @buf_words: Number of 16-bit words in buffer.
4449 *
4450 * Swap halves of 16-bit words if needed to convert from
4451 * little-endian byte order to native cpu byte order, or
4452 * vice-versa.
4453 *
4454 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004455 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004456 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457void swap_buf_le16(u16 *buf, unsigned int buf_words)
4458{
4459#ifdef __BIG_ENDIAN
4460 unsigned int i;
4461
4462 for (i = 0; i < buf_words; i++)
4463 buf[i] = le16_to_cpu(buf[i]);
4464#endif /* __BIG_ENDIAN */
4465}
4466
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004467/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004468 * ata_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004469 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004470 * @buf: data buffer
4471 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04004472 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004473 *
4474 * Transfer data from/to the device data register by PIO.
4475 *
4476 * LOCKING:
4477 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004478 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004479void ata_data_xfer(struct ata_device *adev, unsigned char *buf,
4480 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004482 struct ata_port *ap = adev->link->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004483 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004485 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 if (write_data)
Tejun Heo0d5ff562007-02-01 15:06:36 +09004487 iowrite16_rep(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 else
Tejun Heo0d5ff562007-02-01 15:06:36 +09004489 ioread16_rep(ap->ioaddr.data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004490
4491 /* Transfer trailing 1 byte, if any. */
4492 if (unlikely(buflen & 0x01)) {
4493 u16 align_buf[1] = { 0 };
4494 unsigned char *trailing_buf = buf + buflen - 1;
4495
4496 if (write_data) {
4497 memcpy(align_buf, trailing_buf, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004498 iowrite16(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004499 } else {
Tejun Heo0d5ff562007-02-01 15:06:36 +09004500 align_buf[0] = cpu_to_le16(ioread16(ap->ioaddr.data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004501 memcpy(trailing_buf, align_buf, 1);
4502 }
4503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504}
4505
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004506/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004507 * ata_data_xfer_noirq - Transfer data by PIO
Alan Cox75e99582006-05-24 14:14:41 +01004508 * @adev: device to target
4509 * @buf: data buffer
4510 * @buflen: buffer length
4511 * @write_data: read/write
4512 *
Tejun Heo88574552006-06-25 20:00:35 +09004513 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01004514 * transfer with interrupts disabled.
4515 *
4516 * LOCKING:
4517 * Inherited from caller.
4518 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004519void ata_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
4520 unsigned int buflen, int write_data)
Alan Cox75e99582006-05-24 14:14:41 +01004521{
4522 unsigned long flags;
4523 local_irq_save(flags);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004524 ata_data_xfer(adev, buf, buflen, write_data);
Alan Cox75e99582006-05-24 14:14:41 +01004525 local_irq_restore(flags);
4526}
4527
4528
4529/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004530 * ata_pio_sector - Transfer a sector of data.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004531 * @qc: Command on going
4532 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004533 * Transfer qc->sect_size bytes of data from/to the ATA device.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004534 *
4535 * LOCKING:
4536 * Inherited from caller.
4537 */
4538
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539static void ata_pio_sector(struct ata_queued_cmd *qc)
4540{
4541 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004542 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 struct ata_port *ap = qc->ap;
4544 struct page *page;
4545 unsigned int offset;
4546 unsigned char *buf;
4547
Mark Lord5a5dbd12007-03-16 10:22:26 -04004548 if (qc->curbytes == qc->nbytes - qc->sect_size)
Albert Lee14be71f2005-09-27 17:36:35 +08004549 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
4551 page = sg[qc->cursg].page;
Tejun Heo726f0782007-01-03 17:30:39 +09004552 offset = sg[qc->cursg].offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
4554 /* get the current page and offset */
4555 page = nth_page(page, (offset >> PAGE_SHIFT));
4556 offset %= PAGE_SIZE;
4557
Albert Lee7282aa42005-10-09 09:46:07 -04004558 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4559
Albert Lee91b8b312005-10-09 09:48:44 -04004560 if (PageHighMem(page)) {
4561 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004562
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004563 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004564 local_irq_save(flags);
4565 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004566
Albert Lee91b8b312005-10-09 09:48:44 -04004567 /* do the actual data transfer */
Mark Lord5a5dbd12007-03-16 10:22:26 -04004568 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004569
4570 kunmap_atomic(buf, KM_IRQ0);
4571 local_irq_restore(flags);
4572 } else {
4573 buf = page_address(page);
Mark Lord5a5dbd12007-03-16 10:22:26 -04004574 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576
Mark Lord5a5dbd12007-03-16 10:22:26 -04004577 qc->curbytes += qc->sect_size;
4578 qc->cursg_ofs += qc->sect_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579
Tejun Heo726f0782007-01-03 17:30:39 +09004580 if (qc->cursg_ofs == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 qc->cursg++;
4582 qc->cursg_ofs = 0;
4583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004586/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004587 * ata_pio_sectors - Transfer one or many sectors.
Albert Lee07f6f7d2005-11-01 19:33:20 +08004588 * @qc: Command on going
4589 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004590 * Transfer one or many sectors of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08004591 * ATA device for the DRQ request.
4592 *
4593 * LOCKING:
4594 * Inherited from caller.
4595 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596
Albert Lee07f6f7d2005-11-01 19:33:20 +08004597static void ata_pio_sectors(struct ata_queued_cmd *qc)
4598{
4599 if (is_multi_taskfile(&qc->tf)) {
4600 /* READ/WRITE MULTIPLE */
4601 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
Jeff Garzik587005d2006-02-11 18:17:32 -05004603 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004604
Mark Lord5a5dbd12007-03-16 10:22:26 -04004605 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
Tejun Heo726f0782007-01-03 17:30:39 +09004606 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004607 while (nsect--)
4608 ata_pio_sector(qc);
4609 } else
4610 ata_pio_sector(qc);
4611}
4612
4613/**
Albert Leec71c1852005-10-04 06:03:45 -04004614 * atapi_send_cdb - Write CDB bytes to hardware
4615 * @ap: Port to which ATAPI device is attached.
4616 * @qc: Taskfile currently active
4617 *
4618 * When device has indicated its readiness to accept
4619 * a CDB, this function is called. Send the CDB.
4620 *
4621 * LOCKING:
4622 * caller.
4623 */
4624
4625static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
4626{
4627 /* send SCSI cdb */
4628 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05004629 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04004630
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004631 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04004632 ata_altstatus(ap); /* flush */
4633
4634 switch (qc->tf.protocol) {
4635 case ATA_PROT_ATAPI:
4636 ap->hsm_task_state = HSM_ST;
4637 break;
4638 case ATA_PROT_ATAPI_NODATA:
4639 ap->hsm_task_state = HSM_ST_LAST;
4640 break;
4641 case ATA_PROT_ATAPI_DMA:
4642 ap->hsm_task_state = HSM_ST_LAST;
4643 /* initiate bmdma */
4644 ap->ops->bmdma_start(qc);
4645 break;
4646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647}
4648
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004649/**
4650 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
4651 * @qc: Command on going
4652 * @bytes: number of bytes
4653 *
4654 * Transfer Transfer data from/to the ATAPI device.
4655 *
4656 * LOCKING:
4657 * Inherited from caller.
4658 *
4659 */
4660
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
4662{
4663 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004664 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 struct ata_port *ap = qc->ap;
4666 struct page *page;
4667 unsigned char *buf;
4668 unsigned int offset, count;
4669
Albert Lee563a6e12005-08-12 14:17:50 +08004670 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08004671 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672
4673next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08004674 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004675 /*
Albert Lee563a6e12005-08-12 14:17:50 +08004676 * The end of qc->sg is reached and the device expects
4677 * more data to transfer. In order not to overrun qc->sg
4678 * and fulfill length specified in the byte count register,
4679 * - for read case, discard trailing data from the device
4680 * - for write case, padding zero data to the device
4681 */
4682 u16 pad_buf[1] = { 0 };
4683 unsigned int words = bytes >> 1;
4684 unsigned int i;
4685
4686 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09004687 ata_dev_printk(qc->dev, KERN_WARNING,
4688 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08004689
4690 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004691 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08004692
Albert Lee14be71f2005-09-27 17:36:35 +08004693 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08004694 return;
4695 }
4696
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004697 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 page = sg->page;
4700 offset = sg->offset + qc->cursg_ofs;
4701
4702 /* get the current page and offset */
4703 page = nth_page(page, (offset >> PAGE_SHIFT));
4704 offset %= PAGE_SIZE;
4705
Albert Lee6952df02005-06-06 15:56:03 +08004706 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04004707 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
4709 /* don't cross page boundaries */
4710 count = min(count, (unsigned int)PAGE_SIZE - offset);
4711
Albert Lee7282aa42005-10-09 09:46:07 -04004712 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4713
Albert Lee91b8b312005-10-09 09:48:44 -04004714 if (PageHighMem(page)) {
4715 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004716
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004717 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004718 local_irq_save(flags);
4719 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004720
Albert Lee91b8b312005-10-09 09:48:44 -04004721 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004722 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004723
4724 kunmap_atomic(buf, KM_IRQ0);
4725 local_irq_restore(flags);
4726 } else {
4727 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004728 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730
4731 bytes -= count;
4732 qc->curbytes += count;
4733 qc->cursg_ofs += count;
4734
Albert Lee32529e02005-05-26 03:49:42 -04004735 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 qc->cursg++;
4737 qc->cursg_ofs = 0;
4738 }
4739
Albert Lee563a6e12005-08-12 14:17:50 +08004740 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742}
4743
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004744/**
4745 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
4746 * @qc: Command on going
4747 *
4748 * Transfer Transfer data from/to the ATAPI device.
4749 *
4750 * LOCKING:
4751 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004752 */
4753
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754static void atapi_pio_bytes(struct ata_queued_cmd *qc)
4755{
4756 struct ata_port *ap = qc->ap;
4757 struct ata_device *dev = qc->dev;
4758 unsigned int ireason, bc_lo, bc_hi, bytes;
4759 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
4760
Albert Leeeec4c3f2006-05-18 17:51:10 +08004761 /* Abuse qc->result_tf for temp storage of intermediate TF
4762 * here to save some kernel stack usage.
4763 * For normal completion, qc->result_tf is not relevant. For
4764 * error, qc->result_tf is later overwritten by ata_qc_complete().
4765 * So, the correctness of qc->result_tf is not affected.
4766 */
4767 ap->ops->tf_read(ap, &qc->result_tf);
4768 ireason = qc->result_tf.nsect;
4769 bc_lo = qc->result_tf.lbam;
4770 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 bytes = (bc_hi << 8) | bc_lo;
4772
4773 /* shall be cleared to zero, indicating xfer of data */
4774 if (ireason & (1 << 0))
4775 goto err_out;
4776
4777 /* make sure transfer direction matches expected */
4778 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
4779 if (do_write != i_write)
4780 goto err_out;
4781
Tejun Heo44877b42007-02-21 01:06:51 +09004782 VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
Albert Lee312f7da2005-09-27 17:38:03 +08004783
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 __atapi_pio_bytes(qc, bytes);
4785
4786 return;
4787
4788err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09004789 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09004790 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08004791 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792}
4793
4794/**
Albert Leec234fb02006-03-25 17:58:38 +08004795 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
4796 * @ap: the target ata_port
4797 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 *
Albert Leec234fb02006-03-25 17:58:38 +08004799 * RETURNS:
4800 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 */
Albert Leec234fb02006-03-25 17:58:38 +08004802
4803static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804{
Albert Leec234fb02006-03-25 17:58:38 +08004805 if (qc->tf.flags & ATA_TFLAG_POLLING)
4806 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
Albert Leec234fb02006-03-25 17:58:38 +08004808 if (ap->hsm_task_state == HSM_ST_FIRST) {
4809 if (qc->tf.protocol == ATA_PROT_PIO &&
4810 (qc->tf.flags & ATA_TFLAG_WRITE))
4811 return 1;
4812
4813 if (is_atapi_taskfile(&qc->tf) &&
4814 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
4815 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 }
4817
Albert Leec234fb02006-03-25 17:58:38 +08004818 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819}
4820
Albert Leec234fb02006-03-25 17:58:38 +08004821/**
Tejun Heoc17ea202006-05-15 20:59:29 +09004822 * ata_hsm_qc_complete - finish a qc running on standard HSM
4823 * @qc: Command to complete
4824 * @in_wq: 1 if called from workqueue, 0 otherwise
4825 *
4826 * Finish @qc which is running on standard HSM.
4827 *
4828 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004829 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09004830 * Otherwise, none on entry and grabs host lock.
4831 */
4832static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
4833{
4834 struct ata_port *ap = qc->ap;
4835 unsigned long flags;
4836
4837 if (ap->ops->error_handler) {
4838 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004839 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004840
Jeff Garzikcca39742006-08-24 03:19:22 -04004841 /* EH might have kicked in while host lock is
4842 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09004843 */
4844 qc = ata_qc_from_tag(ap, qc->tag);
4845 if (qc) {
4846 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi83625002007-01-26 16:27:32 +09004847 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004848 ata_qc_complete(qc);
4849 } else
4850 ata_port_freeze(ap);
4851 }
4852
Jeff Garzikba6a1302006-06-22 23:46:10 -04004853 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004854 } else {
4855 if (likely(!(qc->err_mask & AC_ERR_HSM)))
4856 ata_qc_complete(qc);
4857 else
4858 ata_port_freeze(ap);
4859 }
4860 } else {
4861 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004862 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi83625002007-01-26 16:27:32 +09004863 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004864 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04004865 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004866 } else
4867 ata_qc_complete(qc);
4868 }
4869}
4870
4871/**
Albert Leebb5cb292006-03-25 17:48:02 +08004872 * ata_hsm_move - move the HSM to the next state.
4873 * @ap: the target ata_port
4874 * @qc: qc on going
4875 * @status: current device status
4876 * @in_wq: 1 if called from workqueue, 0 otherwise
4877 *
4878 * RETURNS:
4879 * 1 when poll next status needed, 0 otherwise.
4880 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004881int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4882 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883{
Albert Leebb5cb292006-03-25 17:48:02 +08004884 unsigned long flags = 0;
4885 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
Albert Lee6912ccd2006-03-25 17:45:49 +08004887 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004888
Albert Leebb5cb292006-03-25 17:48:02 +08004889 /* Make sure ata_qc_issue_prot() does not throw things
4890 * like DMA polling into the workqueue. Notice that
4891 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004892 */
Albert Leec234fb02006-03-25 17:58:38 +08004893 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004894
Albert Leee2cec772006-03-25 17:43:49 +08004895fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004896 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
Tejun Heo44877b42007-02-21 01:06:51 +09004897 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898
Albert Leee2cec772006-03-25 17:43:49 +08004899 switch (ap->hsm_task_state) {
4900 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004901 /* Send first data block or PACKET CDB */
4902
4903 /* If polling, we will stay in the work queue after
4904 * sending the data. Otherwise, interrupt handler
4905 * takes over after sending the data.
4906 */
4907 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4908
Albert Leee2cec772006-03-25 17:43:49 +08004909 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004910 if (unlikely((status & ATA_DRQ) == 0)) {
4911 /* handle BSY=0, DRQ=0 as error */
4912 if (likely(status & (ATA_ERR | ATA_DF)))
4913 /* device stops HSM for abort/error */
4914 qc->err_mask |= AC_ERR_DEV;
4915 else
4916 /* HSM violation. Let EH handle this */
4917 qc->err_mask |= AC_ERR_HSM;
4918
Albert Leee2cec772006-03-25 17:43:49 +08004919 ap->hsm_task_state = HSM_ST_ERR;
4920 goto fsm_start;
4921 }
4922
Albert Lee71601952006-03-25 18:11:12 +08004923 /* Device should not ask for data transfer (DRQ=1)
4924 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004925 * We ignore DRQ here and stop the HSM by
4926 * changing hsm_task_state to HSM_ST_ERR and
4927 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004928 */
4929 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09004930 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with device "
4931 "error, dev_stat 0x%X\n", status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004932 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004933 ap->hsm_task_state = HSM_ST_ERR;
4934 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004935 }
4936
Albert Leebb5cb292006-03-25 17:48:02 +08004937 /* Send the CDB (atapi) or the first data block (ata pio out).
4938 * During the state transition, interrupt handler shouldn't
4939 * be invoked before the data transfer is complete and
4940 * hsm_task_state is changed. Hence, the following locking.
4941 */
4942 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004943 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004944
Albert Leebb5cb292006-03-25 17:48:02 +08004945 if (qc->tf.protocol == ATA_PROT_PIO) {
4946 /* PIO data out protocol.
4947 * send first data block.
4948 */
4949
4950 /* ata_pio_sectors() might change the state
4951 * to HSM_ST_LAST. so, the state is changed here
4952 * before ata_pio_sectors().
4953 */
4954 ap->hsm_task_state = HSM_ST;
4955 ata_pio_sectors(qc);
4956 ata_altstatus(ap); /* flush */
4957 } else
4958 /* send CDB */
4959 atapi_send_cdb(ap, qc);
4960
4961 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004962 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004963
4964 /* if polling, ata_pio_task() handles the rest.
4965 * otherwise, interrupt handler takes over from here.
4966 */
Albert Leee2cec772006-03-25 17:43:49 +08004967 break;
4968
4969 case HSM_ST:
4970 /* complete command or read/write the data register */
4971 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4972 /* ATAPI PIO protocol */
4973 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004974 /* No more data to transfer or device error.
4975 * Device error will be tagged in HSM_ST_LAST.
4976 */
Albert Leee2cec772006-03-25 17:43:49 +08004977 ap->hsm_task_state = HSM_ST_LAST;
4978 goto fsm_start;
4979 }
4980
Albert Lee71601952006-03-25 18:11:12 +08004981 /* Device should not ask for data transfer (DRQ=1)
4982 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004983 * We ignore DRQ here and stop the HSM by
4984 * changing hsm_task_state to HSM_ST_ERR and
4985 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004986 */
4987 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09004988 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
4989 "device error, dev_stat 0x%X\n",
4990 status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004991 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004992 ap->hsm_task_state = HSM_ST_ERR;
4993 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004994 }
4995
Albert Leee2cec772006-03-25 17:43:49 +08004996 atapi_pio_bytes(qc);
4997
4998 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4999 /* bad ireason reported by device */
5000 goto fsm_start;
5001
5002 } else {
5003 /* ATA PIO protocol */
5004 if (unlikely((status & ATA_DRQ) == 0)) {
5005 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08005006 if (likely(status & (ATA_ERR | ATA_DF)))
5007 /* device stops HSM for abort/error */
5008 qc->err_mask |= AC_ERR_DEV;
5009 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09005010 /* HSM violation. Let EH handle this.
5011 * Phantom devices also trigger this
5012 * condition. Mark hint.
5013 */
5014 qc->err_mask |= AC_ERR_HSM |
5015 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08005016
Albert Leee2cec772006-03-25 17:43:49 +08005017 ap->hsm_task_state = HSM_ST_ERR;
5018 goto fsm_start;
5019 }
5020
Albert Leeeee6c322006-04-01 17:38:43 +08005021 /* For PIO reads, some devices may ask for
5022 * data transfer (DRQ=1) alone with ERR=1.
5023 * We respect DRQ here and transfer one
5024 * block of junk data before changing the
5025 * hsm_task_state to HSM_ST_ERR.
5026 *
5027 * For PIO writes, ERR=1 DRQ=1 doesn't make
5028 * sense since the data block has been
5029 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08005030 */
5031 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08005032 /* data might be corrputed */
5033 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08005034
5035 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
5036 ata_pio_sectors(qc);
5037 ata_altstatus(ap);
5038 status = ata_wait_idle(ap);
5039 }
5040
Albert Lee3655d1d2006-05-19 11:43:04 +08005041 if (status & (ATA_BUSY | ATA_DRQ))
5042 qc->err_mask |= AC_ERR_HSM;
5043
Albert Leeeee6c322006-04-01 17:38:43 +08005044 /* ata_pio_sectors() might change the
5045 * state to HSM_ST_LAST. so, the state
5046 * is changed after ata_pio_sectors().
5047 */
5048 ap->hsm_task_state = HSM_ST_ERR;
5049 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005050 }
5051
Albert Leee2cec772006-03-25 17:43:49 +08005052 ata_pio_sectors(qc);
5053
5054 if (ap->hsm_task_state == HSM_ST_LAST &&
5055 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
5056 /* all data read */
5057 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08005058 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08005059 goto fsm_start;
5060 }
5061 }
5062
5063 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08005064 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08005065 break;
5066
5067 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005068 if (unlikely(!ata_ok(status))) {
5069 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08005070 ap->hsm_task_state = HSM_ST_ERR;
5071 goto fsm_start;
5072 }
5073
5074 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08005075 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005076 ap->print_id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08005077
Albert Lee6912ccd2006-03-25 17:45:49 +08005078 WARN_ON(qc->err_mask);
5079
Albert Leee2cec772006-03-25 17:43:49 +08005080 ap->hsm_task_state = HSM_ST_IDLE;
5081
5082 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005083 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005084
5085 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005086 break;
5087
5088 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08005089 /* make sure qc->err_mask is available to
5090 * know what's wrong and recover
5091 */
5092 WARN_ON(qc->err_mask == 0);
5093
5094 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08005095
Albert Lee999bb6f2006-03-25 18:07:48 +08005096 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005097 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005098
5099 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005100 break;
5101 default:
Albert Leebb5cb292006-03-25 17:48:02 +08005102 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08005103 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08005104 }
5105
Albert Leebb5cb292006-03-25 17:48:02 +08005106 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107}
5108
David Howells65f27f32006-11-22 14:55:48 +00005109static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110{
David Howells65f27f32006-11-22 14:55:48 +00005111 struct ata_port *ap =
5112 container_of(work, struct ata_port, port_task.work);
5113 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08005114 u8 status;
5115 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005116
5117fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08005118 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119
Albert Leea1af3732006-03-25 17:50:15 +08005120 /*
5121 * This is purely heuristic. This is a fast path.
5122 * Sometimes when we enter, BSY will be cleared in
5123 * a chk-status or two. If not, the drive is probably seeking
5124 * or something. Snooze for a couple msecs, then
5125 * chk-status again. If still busy, queue delayed work.
5126 */
5127 status = ata_busy_wait(ap, ATA_BUSY, 5);
5128 if (status & ATA_BUSY) {
5129 msleep(2);
5130 status = ata_busy_wait(ap, ATA_BUSY, 10);
5131 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08005132 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08005133 return;
5134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 }
5136
Albert Leea1af3732006-03-25 17:50:15 +08005137 /* move the HSM */
5138 poll_next = ata_hsm_move(ap, qc, status, 1);
5139
5140 /* another command or interrupt handler
5141 * may be running at this point.
5142 */
5143 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005144 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145}
5146
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 * ata_qc_new - Request an available ATA command, for queueing
5149 * @ap: Port associated with device @dev
5150 * @dev: Device from whom we request an available command structure
5151 *
5152 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005153 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 */
5155
5156static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
5157{
5158 struct ata_queued_cmd *qc = NULL;
5159 unsigned int i;
5160
Tejun Heoe3180492006-05-15 20:58:09 +09005161 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09005162 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09005163 return NULL;
5164
Tejun Heo2ab7db12006-05-15 20:58:02 +09005165 /* the last tag is reserved for internal command. */
5166 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09005167 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09005168 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 break;
5170 }
5171
5172 if (qc)
5173 qc->tag = i;
5174
5175 return qc;
5176}
5177
5178/**
5179 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180 * @dev: Device from whom we request an available command structure
5181 *
5182 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005183 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 */
5185
Tejun Heo3373efd2006-05-15 20:57:53 +09005186struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005188 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189 struct ata_queued_cmd *qc;
5190
5191 qc = ata_qc_new(ap);
5192 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 qc->scsicmd = NULL;
5194 qc->ap = ap;
5195 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05005197 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 }
5199
5200 return qc;
5201}
5202
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203/**
5204 * ata_qc_free - free unused ata_queued_cmd
5205 * @qc: Command to complete
5206 *
5207 * Designed to free unused ata_queued_cmd object
5208 * in case something prevents using it.
5209 *
5210 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005211 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 */
5213void ata_qc_free(struct ata_queued_cmd *qc)
5214{
Tejun Heo4ba946e2006-01-23 13:09:36 +09005215 struct ata_port *ap = qc->ap;
5216 unsigned int tag;
5217
Tejun Heoa46314742006-02-11 19:11:13 +09005218 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219
Tejun Heo4ba946e2006-01-23 13:09:36 +09005220 qc->flags = 0;
5221 tag = qc->tag;
5222 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09005223 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09005224 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09005225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226}
5227
Tejun Heo76014422006-02-11 15:13:49 +09005228void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229{
Tejun Heodedaf2b2006-05-15 21:03:43 +09005230 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005231 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005232
Tejun Heoa46314742006-02-11 19:11:13 +09005233 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
5234 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235
5236 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
5237 ata_sg_clean(qc);
5238
Tejun Heo7401abf2006-05-15 20:57:32 +09005239 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09005240 if (qc->tf.protocol == ATA_PROT_NCQ)
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005241 link->sactive &= ~(1 << qc->tag);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005242 else
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005243 link->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09005244
Albert Lee3f3791d2005-08-16 14:25:38 +08005245 /* atapi: mark qc as inactive to prevent the interrupt handler
5246 * from completing the command twice later, before the error handler
5247 * is called. (when rc != 0 and atapi request sense is needed)
5248 */
5249 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005250 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08005251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09005253 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254}
5255
Tejun Heo39599a52006-11-14 22:37:35 +09005256static void fill_result_tf(struct ata_queued_cmd *qc)
5257{
5258 struct ata_port *ap = qc->ap;
5259
Tejun Heo39599a52006-11-14 22:37:35 +09005260 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04005261 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09005262}
5263
Tejun Heof686bcb2006-05-15 20:58:05 +09005264/**
5265 * ata_qc_complete - Complete an active ATA command
5266 * @qc: Command to complete
5267 * @err_mask: ATA Status register contents
5268 *
5269 * Indicate to the mid and upper layers that an ATA
5270 * command has completed, with either an ok or not-ok status.
5271 *
5272 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005273 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09005274 */
5275void ata_qc_complete(struct ata_queued_cmd *qc)
5276{
5277 struct ata_port *ap = qc->ap;
5278
5279 /* XXX: New EH and old EH use different mechanisms to
5280 * synchronize EH with regular execution path.
5281 *
5282 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
5283 * Normal execution path is responsible for not accessing a
5284 * failed qc. libata core enforces the rule by returning NULL
5285 * from ata_qc_from_tag() for failed qcs.
5286 *
5287 * Old EH depends on ata_qc_complete() nullifying completion
5288 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
5289 * not synchronize with interrupt handler. Only PIO task is
5290 * taken care of.
5291 */
5292 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09005293 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09005294
5295 if (unlikely(qc->err_mask))
5296 qc->flags |= ATA_QCFLAG_FAILED;
5297
5298 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
5299 if (!ata_tag_internal(qc->tag)) {
5300 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09005301 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005302 ata_qc_schedule_eh(qc);
5303 return;
5304 }
5305 }
5306
5307 /* read result TF if requested */
5308 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005309 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005310
5311 __ata_qc_complete(qc);
5312 } else {
5313 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5314 return;
5315
5316 /* read result TF if failed or requested */
5317 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005318 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005319
5320 __ata_qc_complete(qc);
5321 }
5322}
5323
Tejun Heodedaf2b2006-05-15 21:03:43 +09005324/**
5325 * ata_qc_complete_multiple - Complete multiple qcs successfully
5326 * @ap: port in question
5327 * @qc_active: new qc_active mask
5328 * @finish_qc: LLDD callback invoked before completing a qc
5329 *
5330 * Complete in-flight commands. This functions is meant to be
5331 * called from low-level driver's interrupt routine to complete
5332 * requests normally. ap->qc_active and @qc_active is compared
5333 * and commands are completed accordingly.
5334 *
5335 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005336 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005337 *
5338 * RETURNS:
5339 * Number of completed commands on success, -errno otherwise.
5340 */
5341int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
5342 void (*finish_qc)(struct ata_queued_cmd *))
5343{
5344 int nr_done = 0;
5345 u32 done_mask;
5346 int i;
5347
5348 done_mask = ap->qc_active ^ qc_active;
5349
5350 if (unlikely(done_mask & qc_active)) {
5351 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
5352 "(%08x->%08x)\n", ap->qc_active, qc_active);
5353 return -EINVAL;
5354 }
5355
5356 for (i = 0; i < ATA_MAX_QUEUE; i++) {
5357 struct ata_queued_cmd *qc;
5358
5359 if (!(done_mask & (1 << i)))
5360 continue;
5361
5362 if ((qc = ata_qc_from_tag(ap, i))) {
5363 if (finish_qc)
5364 finish_qc(qc);
5365 ata_qc_complete(qc);
5366 nr_done++;
5367 }
5368 }
5369
5370 return nr_done;
5371}
5372
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
5374{
5375 struct ata_port *ap = qc->ap;
5376
5377 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09005378 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379 case ATA_PROT_DMA:
5380 case ATA_PROT_ATAPI_DMA:
5381 return 1;
5382
5383 case ATA_PROT_ATAPI:
5384 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385 if (ap->flags & ATA_FLAG_PIO_DMA)
5386 return 1;
5387
5388 /* fall through */
5389
5390 default:
5391 return 0;
5392 }
5393
5394 /* never reached */
5395}
5396
5397/**
5398 * ata_qc_issue - issue taskfile to device
5399 * @qc: command to issue to device
5400 *
5401 * Prepare an ATA command to submission to device.
5402 * This includes mapping the data into a DMA-able
5403 * area, filling in the S/G table, and finally
5404 * writing the taskfile to hardware, starting the command.
5405 *
5406 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005407 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09005409void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410{
5411 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005412 struct ata_link *link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413
Tejun Heodedaf2b2006-05-15 21:03:43 +09005414 /* Make sure only one non-NCQ command is outstanding. The
5415 * check is skipped for old EH because it reuses active qc to
5416 * request ATAPI sense.
5417 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005418 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09005419
5420 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005421 WARN_ON(link->sactive & (1 << qc->tag));
5422 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005423 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005424 WARN_ON(link->sactive);
5425 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005426 }
5427
Tejun Heoe4a70e72006-03-31 20:36:47 +09005428 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005429 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 if (ata_should_dma_map(qc)) {
5432 if (qc->flags & ATA_QCFLAG_SG) {
5433 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005434 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
5436 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005437 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438 }
5439 } else {
5440 qc->flags &= ~ATA_QCFLAG_DMAMAP;
5441 }
5442
5443 ap->ops->qc_prep(qc);
5444
Tejun Heo8e0e6942006-03-31 20:41:11 +09005445 qc->err_mask |= ap->ops->qc_issue(qc);
5446 if (unlikely(qc->err_mask))
5447 goto err;
5448 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Tejun Heo8e436af2006-01-23 13:09:36 +09005450sg_err:
5451 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09005452 qc->err_mask |= AC_ERR_SYSTEM;
5453err:
5454 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455}
5456
5457/**
5458 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
5459 * @qc: command to issue to device
5460 *
5461 * Using various libata functions and hooks, this function
5462 * starts an ATA command. ATA commands are grouped into
5463 * classes called "protocols", and issuing each type of protocol
5464 * is slightly different.
5465 *
Edward Falk0baab862005-06-02 18:17:13 -04005466 * May be used as the qc_issue() entry in ata_port_operations.
5467 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005469 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470 *
5471 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005472 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 */
5474
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005475unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476{
5477 struct ata_port *ap = qc->ap;
5478
Albert Leee50362e2005-09-27 17:39:50 +08005479 /* Use polling pio if the LLD doesn't handle
5480 * interrupt driven pio and atapi CDB interrupt.
5481 */
5482 if (ap->flags & ATA_FLAG_PIO_POLLING) {
5483 switch (qc->tf.protocol) {
5484 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08005485 case ATA_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08005486 case ATA_PROT_ATAPI:
5487 case ATA_PROT_ATAPI_NODATA:
5488 qc->tf.flags |= ATA_TFLAG_POLLING;
5489 break;
5490 case ATA_PROT_ATAPI_DMA:
5491 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08005492 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08005493 BUG();
5494 break;
5495 default:
5496 break;
5497 }
5498 }
5499
Albert Lee312f7da2005-09-27 17:38:03 +08005500 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 ata_dev_select(ap, qc->dev->devno, 1, 0);
5502
Albert Lee312f7da2005-09-27 17:38:03 +08005503 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504 switch (qc->tf.protocol) {
5505 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005506 if (qc->tf.flags & ATA_TFLAG_POLLING)
5507 ata_qc_set_polling(qc);
5508
Jeff Garzike5338252005-10-30 21:37:17 -05005509 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005510 ap->hsm_task_state = HSM_ST_LAST;
5511
5512 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005513 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005514
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 break;
5516
5517 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005518 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005519
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5521 ap->ops->bmdma_setup(qc); /* set up bmdma */
5522 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005523 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524 break;
5525
Albert Lee312f7da2005-09-27 17:38:03 +08005526 case ATA_PROT_PIO:
5527 if (qc->tf.flags & ATA_TFLAG_POLLING)
5528 ata_qc_set_polling(qc);
5529
Jeff Garzike5338252005-10-30 21:37:17 -05005530 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005531
Albert Lee54f00382005-09-30 19:14:19 +08005532 if (qc->tf.flags & ATA_TFLAG_WRITE) {
5533 /* PIO data out protocol */
5534 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08005535 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08005536
5537 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08005538 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08005539 */
Albert Lee312f7da2005-09-27 17:38:03 +08005540 } else {
Albert Lee54f00382005-09-30 19:14:19 +08005541 /* PIO data in protocol */
5542 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08005543
Albert Lee54f00382005-09-30 19:14:19 +08005544 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005545 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005546
Albert Lee54f00382005-09-30 19:14:19 +08005547 /* if polling, ata_pio_task() handles the rest.
5548 * otherwise, interrupt handler takes over from here.
5549 */
Albert Lee312f7da2005-09-27 17:38:03 +08005550 }
5551
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 break;
5553
5554 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005556 if (qc->tf.flags & ATA_TFLAG_POLLING)
5557 ata_qc_set_polling(qc);
5558
Jeff Garzike5338252005-10-30 21:37:17 -05005559 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05005560
Albert Lee312f7da2005-09-27 17:38:03 +08005561 ap->hsm_task_state = HSM_ST_FIRST;
5562
5563 /* send cdb by polling if no cdb interrupt */
5564 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
5565 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08005566 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567 break;
5568
5569 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005570 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005571
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5573 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005574 ap->hsm_task_state = HSM_ST_FIRST;
5575
5576 /* send cdb by polling if no cdb interrupt */
5577 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08005578 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579 break;
5580
5581 default:
5582 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005583 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 }
5585
5586 return 0;
5587}
5588
5589/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 * ata_host_intr - Handle host interrupt for given (port, task)
5591 * @ap: Port on which interrupt arrived (possibly...)
5592 * @qc: Taskfile currently active in engine
5593 *
5594 * Handle host interrupt for given queued command. Currently,
5595 * only DMA interrupts are handled. All other commands are
5596 * handled via polling with interrupts disabled (nIEN bit).
5597 *
5598 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005599 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600 *
5601 * RETURNS:
5602 * One if interrupt was handled, zero if not (shared irq).
5603 */
5604
5605inline unsigned int ata_host_intr (struct ata_port *ap,
5606 struct ata_queued_cmd *qc)
5607{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005608 struct ata_eh_info *ehi = &ap->link.eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08005609 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610
Albert Lee312f7da2005-09-27 17:38:03 +08005611 VPRINTK("ata%u: protocol %d task_state %d\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005612 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613
Albert Lee312f7da2005-09-27 17:38:03 +08005614 /* Check whether we are expecting interrupt in this state */
5615 switch (ap->hsm_task_state) {
5616 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005617 /* Some pre-ATAPI-4 devices assert INTRQ
5618 * at this state when ready to receive CDB.
5619 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620
Albert Lee312f7da2005-09-27 17:38:03 +08005621 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
5622 * The flag was turned on only for atapi devices.
5623 * No need to check is_atapi_taskfile(&qc->tf) again.
5624 */
5625 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 break;
Albert Lee312f7da2005-09-27 17:38:03 +08005628 case HSM_ST_LAST:
5629 if (qc->tf.protocol == ATA_PROT_DMA ||
5630 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
5631 /* check status of DMA engine */
5632 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005633 VPRINTK("ata%u: host_stat 0x%X\n",
5634 ap->print_id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635
Albert Lee312f7da2005-09-27 17:38:03 +08005636 /* if it's not our irq... */
5637 if (!(host_stat & ATA_DMA_INTR))
5638 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639
Albert Lee312f7da2005-09-27 17:38:03 +08005640 /* before we do anything else, clear DMA-Start bit */
5641 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08005642
5643 if (unlikely(host_stat & ATA_DMA_ERR)) {
5644 /* error when transfering data to/from memory */
5645 qc->err_mask |= AC_ERR_HOST_BUS;
5646 ap->hsm_task_state = HSM_ST_ERR;
5647 }
Albert Lee312f7da2005-09-27 17:38:03 +08005648 }
5649 break;
5650 case HSM_ST:
5651 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652 default:
5653 goto idle_irq;
5654 }
5655
Albert Lee312f7da2005-09-27 17:38:03 +08005656 /* check altstatus */
5657 status = ata_altstatus(ap);
5658 if (status & ATA_BUSY)
5659 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660
Albert Lee312f7da2005-09-27 17:38:03 +08005661 /* check main status, clearing INTRQ */
5662 status = ata_chk_status(ap);
5663 if (unlikely(status & ATA_BUSY))
5664 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
Albert Lee312f7da2005-09-27 17:38:03 +08005666 /* ack bmdma irq events */
5667 ap->ops->irq_clear(ap);
5668
Albert Leebb5cb292006-03-25 17:48:02 +08005669 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09005670
5671 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
5672 qc->tf.protocol == ATA_PROT_ATAPI_DMA))
5673 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
5674
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675 return 1; /* irq handled */
5676
5677idle_irq:
5678 ap->stats.idle_irq++;
5679
5680#ifdef ATA_IRQ_TRAP
5681 if ((ap->stats.idle_irq % 1000) == 0) {
Akira Iguchi83625002007-01-26 16:27:32 +09005682 ap->ops->irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09005683 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00005684 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685 }
5686#endif
5687 return 0; /* irq not handled */
5688}
5689
5690/**
5691 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04005692 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04005693 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005695 * Default interrupt handler for PCI IDE devices. Calls
5696 * ata_host_intr() for each port that is not disabled.
5697 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005699 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 *
5701 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005702 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 */
5704
David Howells7d12e782006-10-05 14:55:46 +01005705irqreturn_t ata_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706{
Jeff Garzikcca39742006-08-24 03:19:22 -04005707 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708 unsigned int i;
5709 unsigned int handled = 0;
5710 unsigned long flags;
5711
5712 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04005713 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714
Jeff Garzikcca39742006-08-24 03:19:22 -04005715 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716 struct ata_port *ap;
5717
Jeff Garzikcca39742006-08-24 03:19:22 -04005718 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09005719 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04005720 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721 struct ata_queued_cmd *qc;
5722
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005723 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08005724 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08005725 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 handled |= ata_host_intr(ap, qc);
5727 }
5728 }
5729
Jeff Garzikcca39742006-08-24 03:19:22 -04005730 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731
5732 return IRQ_RETVAL(handled);
5733}
5734
Tejun Heo34bf2172006-05-15 20:57:46 +09005735/**
5736 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09005737 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09005738 *
Tejun Heo936fd732007-08-06 18:36:23 +09005739 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09005740 *
5741 * LOCKING:
5742 * None.
5743 *
5744 * RETURNS:
5745 * 1 if SCRs are accessible, 0 otherwise.
5746 */
Tejun Heo936fd732007-08-06 18:36:23 +09005747int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005748{
Tejun Heo936fd732007-08-06 18:36:23 +09005749 struct ata_port *ap = link->ap;
5750
Tejun Heoa16abc02007-05-21 18:33:47 +02005751 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09005752}
5753
5754/**
5755 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005756 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005757 * @reg: SCR to read
5758 * @val: Place to store read value
5759 *
Tejun Heo936fd732007-08-06 18:36:23 +09005760 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo34bf2172006-05-15 20:57:46 +09005761 * guaranteed to succeed if the cable type of the port is SATA
5762 * and the port implements ->scr_read.
5763 *
5764 * LOCKING:
5765 * None.
5766 *
5767 * RETURNS:
5768 * 0 on success, negative errno on failure.
5769 */
Tejun Heo936fd732007-08-06 18:36:23 +09005770int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005771{
Tejun Heo936fd732007-08-06 18:36:23 +09005772 struct ata_port *ap = link->ap;
5773
5774 if (sata_scr_valid(link))
Tejun Heoda3dbb12007-07-16 14:29:40 +09005775 return ap->ops->scr_read(ap, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005776 return -EOPNOTSUPP;
5777}
5778
5779/**
5780 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005781 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005782 * @reg: SCR to write
5783 * @val: value to write
5784 *
Tejun Heo936fd732007-08-06 18:36:23 +09005785 * Write @val to SCR register @reg of @link. This function is
Tejun Heo34bf2172006-05-15 20:57:46 +09005786 * guaranteed to succeed if the cable type of the port is SATA
5787 * and the port implements ->scr_read.
5788 *
5789 * LOCKING:
5790 * None.
5791 *
5792 * RETURNS:
5793 * 0 on success, negative errno on failure.
5794 */
Tejun Heo936fd732007-08-06 18:36:23 +09005795int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005796{
Tejun Heo936fd732007-08-06 18:36:23 +09005797 struct ata_port *ap = link->ap;
5798
5799 if (sata_scr_valid(link))
Tejun Heoda3dbb12007-07-16 14:29:40 +09005800 return ap->ops->scr_write(ap, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005801 return -EOPNOTSUPP;
5802}
5803
5804/**
5805 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09005806 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005807 * @reg: SCR to write
5808 * @val: value to write
5809 *
5810 * This function is identical to sata_scr_write() except that this
5811 * function performs flush after writing to the register.
5812 *
5813 * LOCKING:
5814 * None.
5815 *
5816 * RETURNS:
5817 * 0 on success, negative errno on failure.
5818 */
Tejun Heo936fd732007-08-06 18:36:23 +09005819int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005820{
Tejun Heo936fd732007-08-06 18:36:23 +09005821 struct ata_port *ap = link->ap;
Tejun Heoda3dbb12007-07-16 14:29:40 +09005822 int rc;
5823
Tejun Heo936fd732007-08-06 18:36:23 +09005824 if (sata_scr_valid(link)) {
Tejun Heoda3dbb12007-07-16 14:29:40 +09005825 rc = ap->ops->scr_write(ap, reg, val);
5826 if (rc == 0)
5827 rc = ap->ops->scr_read(ap, reg, &val);
5828 return rc;
Tejun Heo34bf2172006-05-15 20:57:46 +09005829 }
5830 return -EOPNOTSUPP;
5831}
5832
5833/**
Tejun Heo936fd732007-08-06 18:36:23 +09005834 * ata_link_online - test whether the given link is online
5835 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005836 *
Tejun Heo936fd732007-08-06 18:36:23 +09005837 * Test whether @link is online. Note that this function returns
5838 * 0 if online status of @link cannot be obtained, so
5839 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005840 *
5841 * LOCKING:
5842 * None.
5843 *
5844 * RETURNS:
5845 * 1 if the port online status is available and online.
5846 */
Tejun Heo936fd732007-08-06 18:36:23 +09005847int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005848{
5849 u32 sstatus;
5850
Tejun Heo936fd732007-08-06 18:36:23 +09005851 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5852 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09005853 return 1;
5854 return 0;
5855}
5856
5857/**
Tejun Heo936fd732007-08-06 18:36:23 +09005858 * ata_link_offline - test whether the given link is offline
5859 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005860 *
Tejun Heo936fd732007-08-06 18:36:23 +09005861 * Test whether @link is offline. Note that this function
5862 * returns 0 if offline status of @link cannot be obtained, so
5863 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005864 *
5865 * LOCKING:
5866 * None.
5867 *
5868 * RETURNS:
5869 * 1 if the port offline status is available and offline.
5870 */
Tejun Heo936fd732007-08-06 18:36:23 +09005871int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005872{
5873 u32 sstatus;
5874
Tejun Heo936fd732007-08-06 18:36:23 +09005875 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5876 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09005877 return 1;
5878 return 0;
5879}
Edward Falk0baab862005-06-02 18:17:13 -04005880
Tejun Heo77b08fb2006-06-24 20:30:19 +09005881int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005882{
Tejun Heo977e6b92006-06-24 20:30:19 +09005883 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01005884 u8 cmd;
5885
5886 if (!ata_try_flush_cache(dev))
5887 return 0;
5888
Tejun Heo6fc49ad2006-11-11 20:10:45 +09005889 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01005890 cmd = ATA_CMD_FLUSH_EXT;
5891 else
5892 cmd = ATA_CMD_FLUSH;
5893
Tejun Heo977e6b92006-06-24 20:30:19 +09005894 err_mask = ata_do_simple_cmd(dev, cmd);
5895 if (err_mask) {
5896 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
5897 return -EIO;
5898 }
5899
5900 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005901}
5902
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005903#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04005904static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5905 unsigned int action, unsigned int ehi_flags,
5906 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005907{
5908 unsigned long flags;
5909 int i, rc;
5910
Jeff Garzikcca39742006-08-24 03:19:22 -04005911 for (i = 0; i < host->n_ports; i++) {
5912 struct ata_port *ap = host->ports[i];
Tejun Heo500530f2006-07-03 16:07:27 +09005913
5914 /* Previous resume operation might still be in
5915 * progress. Wait for PM_PENDING to clear.
5916 */
5917 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5918 ata_port_wait_eh(ap);
5919 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5920 }
5921
5922 /* request PM ops to EH */
5923 spin_lock_irqsave(ap->lock, flags);
5924
5925 ap->pm_mesg = mesg;
5926 if (wait) {
5927 rc = 0;
5928 ap->pm_result = &rc;
5929 }
5930
5931 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005932 ap->link.eh_info.action |= action;
5933 ap->link.eh_info.flags |= ehi_flags;
Tejun Heo500530f2006-07-03 16:07:27 +09005934
5935 ata_port_schedule_eh(ap);
5936
5937 spin_unlock_irqrestore(ap->lock, flags);
5938
5939 /* wait and check result */
5940 if (wait) {
5941 ata_port_wait_eh(ap);
5942 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5943 if (rc)
5944 return rc;
5945 }
5946 }
5947
5948 return 0;
5949}
5950
5951/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005952 * ata_host_suspend - suspend host
5953 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09005954 * @mesg: PM message
5955 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005956 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005957 * function requests EH to perform PM operations and waits for EH
5958 * to finish.
5959 *
5960 * LOCKING:
5961 * Kernel thread context (may sleep).
5962 *
5963 * RETURNS:
5964 * 0 on success, -errno on failure.
5965 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005966int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005967{
Tejun Heo9666f402007-05-04 21:27:47 +02005968 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005969
Jeff Garzikcca39742006-08-24 03:19:22 -04005970 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Tejun Heo9666f402007-05-04 21:27:47 +02005971 if (rc == 0)
5972 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005973 return rc;
5974}
5975
5976/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005977 * ata_host_resume - resume host
5978 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005979 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005980 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005981 * function requests EH to perform PM operations and returns.
5982 * Note that all resume operations are performed parallely.
5983 *
5984 * LOCKING:
5985 * Kernel thread context (may sleep).
5986 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005987void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005988{
Jeff Garzikcca39742006-08-24 03:19:22 -04005989 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
5990 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
5991 host->dev->power.power_state = PMSG_ON;
Tejun Heo500530f2006-07-03 16:07:27 +09005992}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005993#endif
Tejun Heo500530f2006-07-03 16:07:27 +09005994
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005995/**
5996 * ata_port_start - Set port up for dma.
5997 * @ap: Port to initialize
5998 *
5999 * Called just after data structures for each port are
6000 * initialized. Allocates space for PRD table.
6001 *
6002 * May be used as the port_start() entry in ata_port_operations.
6003 *
6004 * LOCKING:
6005 * Inherited from caller.
6006 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006007int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008{
Brian King2f1f6102006-03-23 17:30:15 -06006009 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006010 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011
Tejun Heof0d36ef2007-01-20 16:00:28 +09006012 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
6013 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014 if (!ap->prd)
6015 return -ENOMEM;
6016
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006017 rc = ata_pad_alloc(ap, dev);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006018 if (rc)
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006019 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04006020
Tejun Heof0d36ef2007-01-20 16:00:28 +09006021 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd,
6022 (unsigned long long)ap->prd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023 return 0;
6024}
6025
Edward Falk0baab862005-06-02 18:17:13 -04006026/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09006027 * ata_dev_init - Initialize an ata_device structure
6028 * @dev: Device structure to initialize
6029 *
6030 * Initialize @dev in preparation for probing.
6031 *
6032 * LOCKING:
6033 * Inherited from caller.
6034 */
6035void ata_dev_init(struct ata_device *dev)
6036{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006037 struct ata_link *link = dev->link;
6038 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09006039 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09006040
Tejun Heo5a04bf42006-05-31 18:27:38 +09006041 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006042 link->sata_spd_limit = link->hw_sata_spd_limit;
6043 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006044
Tejun Heo72fa4b72006-05-31 18:27:32 +09006045 /* High bits of dev->flags are used to record warm plug
6046 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04006047 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09006048 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006049 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006050 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09006051 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006052 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006053
6054 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
6055 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09006056 dev->pio_mask = UINT_MAX;
6057 dev->mwdma_mask = UINT_MAX;
6058 dev->udma_mask = UINT_MAX;
6059}
6060
6061/**
Tejun Heof3187192007-04-17 23:44:07 +09006062 * ata_port_alloc - allocate and initialize basic ATA port resources
6063 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064 *
Tejun Heof3187192007-04-17 23:44:07 +09006065 * Allocate and initialize basic ATA port resources.
6066 *
6067 * RETURNS:
6068 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04006069 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006071 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072 */
Tejun Heof3187192007-04-17 23:44:07 +09006073struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074{
Tejun Heof3187192007-04-17 23:44:07 +09006075 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 unsigned int i;
6077
Tejun Heof3187192007-04-17 23:44:07 +09006078 DPRINTK("ENTER\n");
6079
6080 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
6081 if (!ap)
6082 return NULL;
6083
Tejun Heof4d6d002007-05-01 11:50:15 +02006084 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04006085 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09006086 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09006087 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04006089 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09006090 ap->dev = host->dev;
6091
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006092 ap->link.hw_sata_spd_limit = UINT_MAX;
6093 ap->link.active_tag = ATA_TAG_POISON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006095
6096#if defined(ATA_VERBOSE_DEBUG)
6097 /* turn on all debugging levels */
6098 ap->msg_enable = 0x00FF;
6099#elif defined(ATA_DEBUG)
6100 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 +09006101#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04006102 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006103#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104
David Howells65f27f32006-11-22 14:55:48 +00006105 INIT_DELAYED_WORK(&ap->port_task, NULL);
6106 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
6107 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09006108 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09006109 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09006110 init_timer_deferrable(&ap->fastdrain_timer);
6111 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
6112 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113
Tejun Heo838df622006-05-15 20:57:44 +09006114 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09006115
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006116 ap->link.ap = ap;
6117
Tejun Heof58229f2007-08-06 18:36:23 +09006118 /* can't use iterator, ap isn't initialized yet */
Tejun Heoacf356b2006-03-24 14:07:50 +09006119 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006120 struct ata_device *dev = &ap->link.device[i];
6121 dev->link = &ap->link;
Tejun Heo72fa4b72006-05-31 18:27:32 +09006122 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09006123 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09006124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125
6126#ifdef ATA_IRQ_TRAP
6127 ap->stats.unhandled_irq = 1;
6128 ap->stats.idle_irq = 1;
6129#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131}
6132
Tejun Heof0d36ef2007-01-20 16:00:28 +09006133static void ata_host_release(struct device *gendev, void *res)
6134{
6135 struct ata_host *host = dev_get_drvdata(gendev);
6136 int i;
6137
6138 for (i = 0; i < host->n_ports; i++) {
6139 struct ata_port *ap = host->ports[i];
6140
Tejun Heoecef7252007-04-17 23:44:06 +09006141 if (!ap)
6142 continue;
6143
6144 if ((host->flags & ATA_HOST_STARTED) && ap->ops->port_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006145 ap->ops->port_stop(ap);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006146 }
6147
Tejun Heoecef7252007-04-17 23:44:06 +09006148 if ((host->flags & ATA_HOST_STARTED) && host->ops->host_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006149 host->ops->host_stop(host);
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006150
Tejun Heo1aa506e2007-03-09 19:36:12 +09006151 for (i = 0; i < host->n_ports; i++) {
6152 struct ata_port *ap = host->ports[i];
6153
Tejun Heo49114872007-04-17 23:44:06 +09006154 if (!ap)
6155 continue;
6156
6157 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09006158 scsi_host_put(ap->scsi_host);
6159
Tejun Heo49114872007-04-17 23:44:06 +09006160 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09006161 host->ports[i] = NULL;
6162 }
6163
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006164 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006165}
6166
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167/**
Tejun Heof3187192007-04-17 23:44:07 +09006168 * ata_host_alloc - allocate and init basic ATA host resources
6169 * @dev: generic device this host is associated with
6170 * @max_ports: maximum number of ATA ports associated with this host
6171 *
6172 * Allocate and initialize basic ATA host resources. LLD calls
6173 * this function to allocate a host, initializes it fully and
6174 * attaches it using ata_host_register().
6175 *
6176 * @max_ports ports are allocated and host->n_ports is
6177 * initialized to @max_ports. The caller is allowed to decrease
6178 * host->n_ports before calling ata_host_register(). The unused
6179 * ports will be automatically freed on registration.
6180 *
6181 * RETURNS:
6182 * Allocate ATA host on success, NULL on failure.
6183 *
6184 * LOCKING:
6185 * Inherited from calling layer (may sleep).
6186 */
6187struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
6188{
6189 struct ata_host *host;
6190 size_t sz;
6191 int i;
6192
6193 DPRINTK("ENTER\n");
6194
6195 if (!devres_open_group(dev, NULL, GFP_KERNEL))
6196 return NULL;
6197
6198 /* alloc a container for our list of ATA ports (buses) */
6199 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
6200 /* alloc a container for our list of ATA ports (buses) */
6201 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
6202 if (!host)
6203 goto err_out;
6204
6205 devres_add(dev, host);
6206 dev_set_drvdata(dev, host);
6207
6208 spin_lock_init(&host->lock);
6209 host->dev = dev;
6210 host->n_ports = max_ports;
6211
6212 /* allocate ports bound to this host */
6213 for (i = 0; i < max_ports; i++) {
6214 struct ata_port *ap;
6215
6216 ap = ata_port_alloc(host);
6217 if (!ap)
6218 goto err_out;
6219
6220 ap->port_no = i;
6221 host->ports[i] = ap;
6222 }
6223
6224 devres_remove_group(dev, NULL);
6225 return host;
6226
6227 err_out:
6228 devres_release_group(dev, NULL);
6229 return NULL;
6230}
6231
6232/**
Tejun Heof5cda252007-04-17 23:44:07 +09006233 * ata_host_alloc_pinfo - alloc host and init with port_info array
6234 * @dev: generic device this host is associated with
6235 * @ppi: array of ATA port_info to initialize host with
6236 * @n_ports: number of ATA ports attached to this host
6237 *
6238 * Allocate ATA host and initialize with info from @ppi. If NULL
6239 * terminated, @ppi may contain fewer entries than @n_ports. The
6240 * last entry will be used for the remaining ports.
6241 *
6242 * RETURNS:
6243 * Allocate ATA host on success, NULL on failure.
6244 *
6245 * LOCKING:
6246 * Inherited from calling layer (may sleep).
6247 */
6248struct ata_host *ata_host_alloc_pinfo(struct device *dev,
6249 const struct ata_port_info * const * ppi,
6250 int n_ports)
6251{
6252 const struct ata_port_info *pi;
6253 struct ata_host *host;
6254 int i, j;
6255
6256 host = ata_host_alloc(dev, n_ports);
6257 if (!host)
6258 return NULL;
6259
6260 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
6261 struct ata_port *ap = host->ports[i];
6262
6263 if (ppi[j])
6264 pi = ppi[j++];
6265
6266 ap->pio_mask = pi->pio_mask;
6267 ap->mwdma_mask = pi->mwdma_mask;
6268 ap->udma_mask = pi->udma_mask;
6269 ap->flags |= pi->flags;
6270 ap->ops = pi->port_ops;
6271
6272 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
6273 host->ops = pi->port_ops;
6274 if (!host->private_data && pi->private_data)
6275 host->private_data = pi->private_data;
6276 }
6277
6278 return host;
6279}
6280
6281/**
Tejun Heoecef7252007-04-17 23:44:06 +09006282 * ata_host_start - start and freeze ports of an ATA host
6283 * @host: ATA host to start ports for
6284 *
6285 * Start and then freeze ports of @host. Started status is
6286 * recorded in host->flags, so this function can be called
6287 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09006288 * once. If host->ops isn't initialized yet, its set to the
6289 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09006290 *
6291 * LOCKING:
6292 * Inherited from calling layer (may sleep).
6293 *
6294 * RETURNS:
6295 * 0 if all ports are started successfully, -errno otherwise.
6296 */
6297int ata_host_start(struct ata_host *host)
6298{
6299 int i, rc;
6300
6301 if (host->flags & ATA_HOST_STARTED)
6302 return 0;
6303
6304 for (i = 0; i < host->n_ports; i++) {
6305 struct ata_port *ap = host->ports[i];
6306
Tejun Heof3187192007-04-17 23:44:07 +09006307 if (!host->ops && !ata_port_is_dummy(ap))
6308 host->ops = ap->ops;
6309
Tejun Heoecef7252007-04-17 23:44:06 +09006310 if (ap->ops->port_start) {
6311 rc = ap->ops->port_start(ap);
6312 if (rc) {
6313 ata_port_printk(ap, KERN_ERR, "failed to "
6314 "start port (errno=%d)\n", rc);
6315 goto err_out;
6316 }
6317 }
6318
6319 ata_eh_freeze_port(ap);
6320 }
6321
6322 host->flags |= ATA_HOST_STARTED;
6323 return 0;
6324
6325 err_out:
6326 while (--i >= 0) {
6327 struct ata_port *ap = host->ports[i];
6328
6329 if (ap->ops->port_stop)
6330 ap->ops->port_stop(ap);
6331 }
6332 return rc;
6333}
6334
6335/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006336 * ata_sas_host_init - Initialize a host struct
6337 * @host: host to initialize
6338 * @dev: device host is attached to
6339 * @flags: host flags
6340 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05006341 *
6342 * LOCKING:
6343 * PCI/etc. bus probe sem.
6344 *
6345 */
Tejun Heof3187192007-04-17 23:44:07 +09006346/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04006347void ata_host_init(struct ata_host *host, struct device *dev,
6348 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05006349{
Jeff Garzikcca39742006-08-24 03:19:22 -04006350 spin_lock_init(&host->lock);
6351 host->dev = dev;
6352 host->flags = flags;
6353 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05006354}
6355
6356/**
Tejun Heof3187192007-04-17 23:44:07 +09006357 * ata_host_register - register initialized ATA host
6358 * @host: ATA host to register
6359 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04006360 *
Tejun Heof3187192007-04-17 23:44:07 +09006361 * Register initialized ATA host. @host is allocated using
6362 * ata_host_alloc() and fully initialized by LLD. This function
6363 * starts ports, registers @host with ATA and SCSI layers and
6364 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365 *
6366 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006367 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368 *
6369 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09006370 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371 */
Tejun Heof3187192007-04-17 23:44:07 +09006372int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373{
Tejun Heof3187192007-04-17 23:44:07 +09006374 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375
Tejun Heof3187192007-04-17 23:44:07 +09006376 /* host must have been started */
6377 if (!(host->flags & ATA_HOST_STARTED)) {
6378 dev_printk(KERN_ERR, host->dev,
6379 "BUG: trying to register unstarted host\n");
6380 WARN_ON(1);
6381 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01006382 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09006383
Tejun Heof3187192007-04-17 23:44:07 +09006384 /* Blow away unused ports. This happens when LLD can't
6385 * determine the exact number of ports to allocate at
6386 * allocation time.
6387 */
6388 for (i = host->n_ports; host->ports[i]; i++)
6389 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390
Tejun Heof3187192007-04-17 23:44:07 +09006391 /* give ports names and add SCSI hosts */
6392 for (i = 0; i < host->n_ports; i++)
6393 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006394
Tejun Heof3187192007-04-17 23:44:07 +09006395 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006396 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006397 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006398
Tejun Heofafbae82007-05-15 03:28:16 +09006399 /* associate with ACPI nodes */
6400 ata_acpi_associate(host);
6401
Tejun Heof3187192007-04-17 23:44:07 +09006402 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006403 for (i = 0; i < host->n_ports; i++) {
6404 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006405 int irq_line;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006406 u32 scontrol;
Tejun Heof3187192007-04-17 23:44:07 +09006407 unsigned long xfer_mask;
6408
6409 /* set SATA cable type if still unset */
6410 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6411 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412
Tejun Heo5a04bf42006-05-31 18:27:38 +09006413 /* init sata_spd_limit to the current value */
Tejun Heo936fd732007-08-06 18:36:23 +09006414 if (sata_scr_read(&ap->link, SCR_CONTROL, &scontrol) == 0) {
Tejun Heo5a04bf42006-05-31 18:27:38 +09006415 int spd = (scontrol >> 4) & 0xf;
Tejun Heoafe3cc52007-06-06 16:35:55 +09006416 if (spd)
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006417 ap->link.hw_sata_spd_limit &= (1 << spd) - 1;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006418 }
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006419 ap->link.sata_spd_limit = ap->link.hw_sata_spd_limit;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006420
Tejun Heof3187192007-04-17 23:44:07 +09006421 /* report the secondary IRQ for second channel legacy */
6422 irq_line = host->irq;
6423 if (i == 1 && host->irq2)
6424 irq_line = host->irq2;
Tejun Heo3e706392006-05-31 18:28:11 +09006425
Tejun Heof3187192007-04-17 23:44:07 +09006426 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6427 ap->udma_mask);
6428
6429 /* print per-port info to dmesg */
6430 if (!ata_port_is_dummy(ap))
6431 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%p "
6432 "ctl 0x%p bmdma 0x%p irq %d\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02006433 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09006434 ata_mode_string(xfer_mask),
6435 ap->ioaddr.cmd_addr,
6436 ap->ioaddr.ctl_addr,
6437 ap->ioaddr.bmdma_addr,
6438 irq_line);
6439 else
6440 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6441 }
6442
6443 /* perform each probe synchronously */
6444 DPRINTK("probe begin\n");
6445 for (i = 0; i < host->n_ports; i++) {
6446 struct ata_port *ap = host->ports[i];
6447 int rc;
6448
6449 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09006450 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006451 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09006452 unsigned long flags;
6453
6454 ata_port_probe(ap);
6455
6456 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006457 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006458
Tejun Heof58229f2007-08-06 18:36:23 +09006459 ehi->probe_mask =
6460 (1 << ata_link_max_devices(&ap->link)) - 1;
Tejun Heo1cdaf532006-07-03 16:07:26 +09006461 ehi->action |= ATA_EH_SOFTRESET;
6462 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09006463
Tejun Heof4d6d002007-05-01 11:50:15 +02006464 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09006465 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09006466 ata_port_schedule_eh(ap);
6467
Jeff Garzikba6a1302006-06-22 23:46:10 -04006468 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006469
6470 /* wait for EH to finish */
6471 ata_port_wait_eh(ap);
6472 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09006473 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006474 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09006475 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006476
6477 if (rc) {
6478 /* FIXME: do something useful here?
6479 * Current libata behavior will
6480 * tear down everything when
6481 * the module is removed
6482 * or the h/w is unplugged.
6483 */
6484 }
6485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 }
6487
6488 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006489 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04006490 for (i = 0; i < host->n_ports; i++) {
6491 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492
Tejun Heo1ae46312007-07-16 14:29:40 +09006493 ata_scsi_scan_host(ap, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494 }
6495
Tejun Heof3187192007-04-17 23:44:07 +09006496 return 0;
6497}
6498
6499/**
Tejun Heof5cda252007-04-17 23:44:07 +09006500 * ata_host_activate - start host, request IRQ and register it
6501 * @host: target ATA host
6502 * @irq: IRQ to request
6503 * @irq_handler: irq_handler used when requesting IRQ
6504 * @irq_flags: irq_flags used when requesting IRQ
6505 * @sht: scsi_host_template to use when registering the host
6506 *
6507 * After allocating an ATA host and initializing it, most libata
6508 * LLDs perform three steps to activate the host - start host,
6509 * request IRQ and register it. This helper takes necessasry
6510 * arguments and performs the three steps in one go.
6511 *
6512 * LOCKING:
6513 * Inherited from calling layer (may sleep).
6514 *
6515 * RETURNS:
6516 * 0 on success, -errno otherwise.
6517 */
6518int ata_host_activate(struct ata_host *host, int irq,
6519 irq_handler_t irq_handler, unsigned long irq_flags,
6520 struct scsi_host_template *sht)
6521{
6522 int rc;
6523
6524 rc = ata_host_start(host);
6525 if (rc)
6526 return rc;
6527
6528 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6529 dev_driver_string(host->dev), host);
6530 if (rc)
6531 return rc;
6532
Tejun Heo40318262007-07-03 01:38:47 +09006533 /* Used to print device info at probe */
6534 host->irq = irq;
6535
Tejun Heof5cda252007-04-17 23:44:07 +09006536 rc = ata_host_register(host, sht);
6537 /* if failed, just free the IRQ and leave ports alone */
6538 if (rc)
6539 devm_free_irq(host->dev, irq, host);
6540
6541 return rc;
6542}
6543
6544/**
Tejun Heo720ba122006-05-31 18:28:13 +09006545 * ata_port_detach - Detach ATA port in prepration of device removal
6546 * @ap: ATA port to be detached
6547 *
6548 * Detach all ATA devices and the associated SCSI devices of @ap;
6549 * then, remove the associated SCSI host. @ap is guaranteed to
6550 * be quiescent on return from this function.
6551 *
6552 * LOCKING:
6553 * Kernel thread context (may sleep).
6554 */
6555void ata_port_detach(struct ata_port *ap)
6556{
6557 unsigned long flags;
Tejun Heof58229f2007-08-06 18:36:23 +09006558 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09006559
6560 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006561 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006562
6563 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006564 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006565 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006566 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006567
6568 ata_port_wait_eh(ap);
6569
6570 /* EH is now guaranteed to see UNLOADING, so no new device
6571 * will be attached. Disable all existing devices.
6572 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006573 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006574
Tejun Heof58229f2007-08-06 18:36:23 +09006575 ata_link_for_each_dev(dev, &ap->link)
6576 ata_dev_disable(dev);
Tejun Heo720ba122006-05-31 18:28:13 +09006577
Jeff Garzikba6a1302006-06-22 23:46:10 -04006578 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006579
6580 /* Final freeze & EH. All in-flight commands are aborted. EH
6581 * will be skipped and retrials will be terminated with bad
6582 * target.
6583 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006584 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006585 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006586 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006587
6588 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07006589 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09006590
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006591 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006592 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006593 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006594}
6595
6596/**
Tejun Heo0529c152007-01-20 16:00:26 +09006597 * ata_host_detach - Detach all ports of an ATA host
6598 * @host: Host to detach
6599 *
6600 * Detach all ports of @host.
6601 *
6602 * LOCKING:
6603 * Kernel thread context (may sleep).
6604 */
6605void ata_host_detach(struct ata_host *host)
6606{
6607 int i;
6608
6609 for (i = 0; i < host->n_ports; i++)
6610 ata_port_detach(host->ports[i]);
6611}
6612
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613/**
6614 * ata_std_ports - initialize ioaddr with standard port offsets.
6615 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04006616 *
6617 * Utility function which initializes data_addr, error_addr,
6618 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
6619 * device_addr, status_addr, and command_addr to standard offsets
6620 * relative to cmd_addr.
6621 *
6622 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623 */
Edward Falk0baab862005-06-02 18:17:13 -04006624
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625void ata_std_ports(struct ata_ioports *ioaddr)
6626{
6627 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
6628 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
6629 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
6630 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
6631 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
6632 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
6633 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
6634 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
6635 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
6636 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
6637}
6638
Edward Falk0baab862005-06-02 18:17:13 -04006639
Jeff Garzik374b1872005-08-30 05:42:52 -04006640#ifdef CONFIG_PCI
6641
Edward Falk0baab862005-06-02 18:17:13 -04006642/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 * ata_pci_remove_one - PCI layer callback for device removal
6644 * @pdev: PCI device that was removed
6645 *
Tejun Heob878ca52007-01-20 16:00:28 +09006646 * PCI layer indicates to libata via this hook that hot-unplug or
6647 * module unload event has occurred. Detach all ports. Resource
6648 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649 *
6650 * LOCKING:
6651 * Inherited from PCI layer (may sleep).
6652 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006653void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654{
6655 struct device *dev = pci_dev_to_dev(pdev);
Jeff Garzikcca39742006-08-24 03:19:22 -04006656 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657
Tejun Heob878ca52007-01-20 16:00:28 +09006658 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659}
6660
6661/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006662int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663{
6664 unsigned long tmp = 0;
6665
6666 switch (bits->width) {
6667 case 1: {
6668 u8 tmp8 = 0;
6669 pci_read_config_byte(pdev, bits->reg, &tmp8);
6670 tmp = tmp8;
6671 break;
6672 }
6673 case 2: {
6674 u16 tmp16 = 0;
6675 pci_read_config_word(pdev, bits->reg, &tmp16);
6676 tmp = tmp16;
6677 break;
6678 }
6679 case 4: {
6680 u32 tmp32 = 0;
6681 pci_read_config_dword(pdev, bits->reg, &tmp32);
6682 tmp = tmp32;
6683 break;
6684 }
6685
6686 default:
6687 return -EINVAL;
6688 }
6689
6690 tmp &= bits->mask;
6691
6692 return (tmp == bits->val) ? 1 : 0;
6693}
Jens Axboe9b847542006-01-06 09:28:07 +01006694
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006695#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09006696void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006697{
6698 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09006699 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006700
Tejun Heo4c90d972007-02-20 18:14:48 +09006701 if (mesg.event == PM_EVENT_SUSPEND)
Tejun Heo500530f2006-07-03 16:07:27 +09006702 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01006703}
6704
Tejun Heo553c4aa2006-12-26 19:39:50 +09006705int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006706{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006707 int rc;
6708
Jens Axboe9b847542006-01-06 09:28:07 +01006709 pci_set_power_state(pdev, PCI_D0);
6710 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006711
Tejun Heob878ca52007-01-20 16:00:28 +09006712 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006713 if (rc) {
6714 dev_printk(KERN_ERR, &pdev->dev,
6715 "failed to enable device after resume (%d)\n", rc);
6716 return rc;
6717 }
6718
Jens Axboe9b847542006-01-06 09:28:07 +01006719 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006720 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006721}
6722
Tejun Heo3c5100c2006-07-26 16:58:33 +09006723int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006724{
Jeff Garzikcca39742006-08-24 03:19:22 -04006725 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006726 int rc = 0;
6727
Jeff Garzikcca39742006-08-24 03:19:22 -04006728 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006729 if (rc)
6730 return rc;
6731
Tejun Heo3c5100c2006-07-26 16:58:33 +09006732 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006733
6734 return 0;
6735}
6736
6737int ata_pci_device_resume(struct pci_dev *pdev)
6738{
Jeff Garzikcca39742006-08-24 03:19:22 -04006739 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006740 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006741
Tejun Heo553c4aa2006-12-26 19:39:50 +09006742 rc = ata_pci_device_do_resume(pdev);
6743 if (rc == 0)
6744 ata_host_resume(host);
6745 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006746}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006747#endif /* CONFIG_PM */
6748
Linus Torvalds1da177e2005-04-16 15:20:36 -07006749#endif /* CONFIG_PCI */
6750
6751
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752static int __init ata_init(void)
6753{
Andrew Mortona8601e52006-06-25 01:36:52 -07006754 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755 ata_wq = create_workqueue("ata");
6756 if (!ata_wq)
6757 return -ENOMEM;
6758
Tejun Heo453b07a2006-05-31 18:27:42 +09006759 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6760 if (!ata_aux_wq) {
6761 destroy_workqueue(ata_wq);
6762 return -ENOMEM;
6763 }
6764
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6766 return 0;
6767}
6768
6769static void __exit ata_exit(void)
6770{
6771 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006772 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773}
6774
Brian Kinga4625082006-11-13 16:32:36 -06006775subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776module_exit(ata_exit);
6777
Jeff Garzik67846b32005-10-05 02:58:32 -04006778static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006779static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006780
6781int ata_ratelimit(void)
6782{
6783 int rc;
6784 unsigned long flags;
6785
6786 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6787
6788 if (time_after(jiffies, ratelimit_time)) {
6789 rc = 1;
6790 ratelimit_time = jiffies + (HZ/5);
6791 } else
6792 rc = 0;
6793
6794 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6795
6796 return rc;
6797}
6798
Tejun Heoc22daff2006-04-11 22:22:29 +09006799/**
6800 * ata_wait_register - wait until register value changes
6801 * @reg: IO-mapped register
6802 * @mask: Mask to apply to read register value
6803 * @val: Wait condition
6804 * @interval_msec: polling interval in milliseconds
6805 * @timeout_msec: timeout in milliseconds
6806 *
6807 * Waiting for some bits of register to change is a common
6808 * operation for ATA controllers. This function reads 32bit LE
6809 * IO-mapped register @reg and tests for the following condition.
6810 *
6811 * (*@reg & mask) != val
6812 *
6813 * If the condition is met, it returns; otherwise, the process is
6814 * repeated after @interval_msec until timeout.
6815 *
6816 * LOCKING:
6817 * Kernel thread context (may sleep)
6818 *
6819 * RETURNS:
6820 * The final register value.
6821 */
6822u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6823 unsigned long interval_msec,
6824 unsigned long timeout_msec)
6825{
6826 unsigned long timeout;
6827 u32 tmp;
6828
6829 tmp = ioread32(reg);
6830
6831 /* Calculate timeout _after_ the first read to make sure
6832 * preceding writes reach the controller before starting to
6833 * eat away the timeout.
6834 */
6835 timeout = jiffies + (timeout_msec * HZ) / 1000;
6836
6837 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6838 msleep(interval_msec);
6839 tmp = ioread32(reg);
6840 }
6841
6842 return tmp;
6843}
6844
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006846 * Dummy port_ops
6847 */
6848static void ata_dummy_noret(struct ata_port *ap) { }
6849static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
6850static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
6851
6852static u8 ata_dummy_check_status(struct ata_port *ap)
6853{
6854 return ATA_DRDY;
6855}
6856
6857static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6858{
6859 return AC_ERR_SYSTEM;
6860}
6861
6862const struct ata_port_operations ata_dummy_port_ops = {
6863 .port_disable = ata_port_disable,
6864 .check_status = ata_dummy_check_status,
6865 .check_altstatus = ata_dummy_check_status,
6866 .dev_select = ata_noop_dev_select,
6867 .qc_prep = ata_noop_qc_prep,
6868 .qc_issue = ata_dummy_qc_issue,
6869 .freeze = ata_dummy_noret,
6870 .thaw = ata_dummy_noret,
6871 .error_handler = ata_dummy_noret,
6872 .post_internal_cmd = ata_dummy_qc_noret,
6873 .irq_clear = ata_dummy_noret,
6874 .port_start = ata_dummy_ret0,
6875 .port_stop = ata_dummy_noret,
6876};
6877
Tejun Heo21b0ad42007-04-17 23:44:07 +09006878const struct ata_port_info ata_dummy_port_info = {
6879 .port_ops = &ata_dummy_port_ops,
6880};
6881
Tejun Heodd5b06c2006-08-10 16:59:12 +09006882/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883 * libata is essentially a library of internal helper functions for
6884 * low-level ATA host controller drivers. As such, the API/ABI is
6885 * likely to change as new drivers are added and updated.
6886 * Do not depend on ABI/API stability.
6887 */
6888
Tejun Heoe9c83912006-07-03 16:07:26 +09006889EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6890EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6891EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006892EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006893EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894EXPORT_SYMBOL_GPL(ata_std_bios_param);
6895EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04006896EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006897EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006898EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09006899EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006900EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006901EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09006902EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903EXPORT_SYMBOL_GPL(ata_sg_init);
6904EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09006905EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09006906EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006907EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909EXPORT_SYMBOL_GPL(ata_tf_load);
6910EXPORT_SYMBOL_GPL(ata_tf_read);
6911EXPORT_SYMBOL_GPL(ata_noop_dev_select);
6912EXPORT_SYMBOL_GPL(ata_std_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05006913EXPORT_SYMBOL_GPL(sata_print_link_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6915EXPORT_SYMBOL_GPL(ata_tf_from_fis);
6916EXPORT_SYMBOL_GPL(ata_check_status);
6917EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918EXPORT_SYMBOL_GPL(ata_exec_command);
6919EXPORT_SYMBOL_GPL(ata_port_start);
Alan Coxd92e74d2007-06-07 16:19:15 +01006920EXPORT_SYMBOL_GPL(ata_sff_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921EXPORT_SYMBOL_GPL(ata_interrupt);
Alan04351822007-03-06 02:37:52 -08006922EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo0d5ff562007-02-01 15:06:36 +09006923EXPORT_SYMBOL_GPL(ata_data_xfer);
6924EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925EXPORT_SYMBOL_GPL(ata_qc_prep);
Alan Coxd26fc952007-07-06 19:13:52 -04006926EXPORT_SYMBOL_GPL(ata_dumb_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06006927EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928EXPORT_SYMBOL_GPL(ata_bmdma_setup);
6929EXPORT_SYMBOL_GPL(ata_bmdma_start);
6930EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
6931EXPORT_SYMBOL_GPL(ata_bmdma_status);
6932EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09006933EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
6934EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
6935EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
6936EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
6937EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00006939EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09006940EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heo936fd732007-08-06 18:36:23 +09006941EXPORT_SYMBOL_GPL(sata_link_debounce);
6942EXPORT_SYMBOL_GPL(sata_link_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943EXPORT_SYMBOL_GPL(sata_phy_reset);
6944EXPORT_SYMBOL_GPL(__sata_phy_reset);
6945EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09006946EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006947EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heocc0680a2007-08-06 18:36:23 +09006948EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006949EXPORT_SYMBOL_GPL(sata_std_hardreset);
6950EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006951EXPORT_SYMBOL_GPL(ata_dev_classify);
6952EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006954EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006955EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09006956EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heod4b2bab2007-02-02 16:50:52 +09006957EXPORT_SYMBOL_GPL(ata_wait_ready);
Tejun Heo86e45b62006-03-05 15:29:09 +09006958EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006959EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6960EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006962EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006963EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09006965EXPORT_SYMBOL_GPL(sata_scr_valid);
6966EXPORT_SYMBOL_GPL(sata_scr_read);
6967EXPORT_SYMBOL_GPL(sata_scr_write);
6968EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09006969EXPORT_SYMBOL_GPL(ata_link_online);
6970EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006971#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006972EXPORT_SYMBOL_GPL(ata_host_suspend);
6973EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006974#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09006975EXPORT_SYMBOL_GPL(ata_id_string);
6976EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan10305f02007-02-20 18:01:59 +00006977EXPORT_SYMBOL_GPL(ata_id_to_dma_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6979
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006980EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04006981EXPORT_SYMBOL_GPL(ata_timing_compute);
6982EXPORT_SYMBOL_GPL(ata_timing_merge);
6983
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984#ifdef CONFIG_PCI
6985EXPORT_SYMBOL_GPL(pci_test_config_bits);
Tejun Heod583bc12007-07-04 18:02:07 +09006986EXPORT_SYMBOL_GPL(ata_pci_init_sff_host);
Tejun Heo1626aeb2007-05-04 12:43:58 +02006987EXPORT_SYMBOL_GPL(ata_pci_init_bmdma);
Tejun Heod583bc12007-07-04 18:02:07 +09006988EXPORT_SYMBOL_GPL(ata_pci_prepare_sff_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989EXPORT_SYMBOL_GPL(ata_pci_init_one);
6990EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006991#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09006992EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6993EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006994EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6995EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006996#endif /* CONFIG_PM */
Alan Cox67951ad2006-03-22 15:55:54 +00006997EXPORT_SYMBOL_GPL(ata_pci_default_filter);
6998EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01007000
Tejun Heob64bbc32007-07-16 14:29:39 +09007001EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
7002EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
7003EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heoece1d632006-04-02 18:51:53 +09007004EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007005EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
7006EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09007007EXPORT_SYMBOL_GPL(ata_port_freeze);
7008EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
7009EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09007010EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
7011EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09007012EXPORT_SYMBOL_GPL(ata_do_eh);
Akira Iguchi83625002007-01-26 16:27:32 +09007013EXPORT_SYMBOL_GPL(ata_irq_on);
7014EXPORT_SYMBOL_GPL(ata_dummy_irq_on);
7015EXPORT_SYMBOL_GPL(ata_irq_ack);
7016EXPORT_SYMBOL_GPL(ata_dummy_irq_ack);
Akira Iguchia619f981b2007-01-26 16:28:18 +09007017EXPORT_SYMBOL_GPL(ata_dev_try_classify);
Alan Coxbe0d18d2007-03-06 02:37:56 -08007018
7019EXPORT_SYMBOL_GPL(ata_cable_40wire);
7020EXPORT_SYMBOL_GPL(ata_cable_80wire);
7021EXPORT_SYMBOL_GPL(ata_cable_unknown);
7022EXPORT_SYMBOL_GPL(ata_cable_sata);