blob: 2e8ca652c0d9803029733e43d09ad1d831152854 [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 Garzikfda0efc2007-01-31 07:43:15 -050062#define DRV_VERSION "2.10" /* must be exactly four chars */
63
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75static unsigned int ata_unique_id = 1;
76static struct workqueue_struct *ata_wq;
77
Tejun Heo453b07a2006-05-31 18:27:42 +090078struct workqueue_struct *ata_aux_wq;
79
Jeff Garzik418dc1f2006-03-11 20:50:08 -050080int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040081module_param(atapi_enabled, int, 0444);
82MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
83
Albert Lee95de7192006-04-04 10:57:18 +080084int atapi_dmadir = 0;
85module_param(atapi_dmadir, int, 0444);
86MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
87
Jeff Garzikc3c013a2006-02-27 22:31:19 -050088int libata_fua = 0;
89module_param_named(fua, libata_fua, int, 0444);
90MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
91
Andrew Mortona8601e52006-06-25 01:36:52 -070092static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
93module_param(ata_probe_timeout, int, 0444);
94MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096MODULE_AUTHOR("Jeff Garzik");
97MODULE_DESCRIPTION("Library module for ATA devices");
98MODULE_LICENSE("GPL");
99MODULE_VERSION(DRV_VERSION);
100
Edward Falk0baab862005-06-02 18:17:13 -0400101
102/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
104 * @tf: Taskfile to convert
105 * @fis: Buffer into which data will output
106 * @pmp: Port multiplier port
107 *
108 * Converts a standard ATA taskfile to a Serial ATA
109 * FIS structure (Register - Host to Device).
110 *
111 * LOCKING:
112 * Inherited from caller.
113 */
114
Jeff Garzik057ace52005-10-22 14:27:05 -0400115void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 fis[0] = 0x27; /* Register - Host to Device FIS */
118 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
119 bit 7 indicates Command FIS */
120 fis[2] = tf->command;
121 fis[3] = tf->feature;
122
123 fis[4] = tf->lbal;
124 fis[5] = tf->lbam;
125 fis[6] = tf->lbah;
126 fis[7] = tf->device;
127
128 fis[8] = tf->hob_lbal;
129 fis[9] = tf->hob_lbam;
130 fis[10] = tf->hob_lbah;
131 fis[11] = tf->hob_feature;
132
133 fis[12] = tf->nsect;
134 fis[13] = tf->hob_nsect;
135 fis[14] = 0;
136 fis[15] = tf->ctl;
137
138 fis[16] = 0;
139 fis[17] = 0;
140 fis[18] = 0;
141 fis[19] = 0;
142}
143
144/**
145 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
146 * @fis: Buffer from which data will be input
147 * @tf: Taskfile to output
148 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500149 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 *
151 * LOCKING:
152 * Inherited from caller.
153 */
154
Jeff Garzik057ace52005-10-22 14:27:05 -0400155void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 tf->command = fis[2]; /* status */
158 tf->feature = fis[3]; /* error */
159
160 tf->lbal = fis[4];
161 tf->lbam = fis[5];
162 tf->lbah = fis[6];
163 tf->device = fis[7];
164
165 tf->hob_lbal = fis[8];
166 tf->hob_lbam = fis[9];
167 tf->hob_lbah = fis[10];
168
169 tf->nsect = fis[12];
170 tf->hob_nsect = fis[13];
171}
172
Albert Lee8cbd6df2005-10-12 15:06:27 +0800173static const u8 ata_rw_cmds[] = {
174 /* pio multi */
175 ATA_CMD_READ_MULTI,
176 ATA_CMD_WRITE_MULTI,
177 ATA_CMD_READ_MULTI_EXT,
178 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100179 0,
180 0,
181 0,
182 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800183 /* pio */
184 ATA_CMD_PIO_READ,
185 ATA_CMD_PIO_WRITE,
186 ATA_CMD_PIO_READ_EXT,
187 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100188 0,
189 0,
190 0,
191 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800192 /* dma */
193 ATA_CMD_READ,
194 ATA_CMD_WRITE,
195 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100196 ATA_CMD_WRITE_EXT,
197 0,
198 0,
199 0,
200 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800201};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800204 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900205 * @tf: command to examine and configure
206 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500208 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800209 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 *
211 * LOCKING:
212 * caller.
213 */
Tejun Heobd056d72006-11-14 22:47:10 +0900214static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100216 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100218 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500219
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100220 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800221 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
222 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Albert Lee8cbd6df2005-10-12 15:06:27 +0800224 if (dev->flags & ATA_DFLAG_PIO) {
225 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100226 index = dev->multi_count ? 0 : 8;
Tejun Heobd056d72006-11-14 22:47:10 +0900227 } else if (lba48 && (dev->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000228 /* Unable to use DMA due to host limitation */
229 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800230 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800231 } else {
232 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100233 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100236 cmd = ata_rw_cmds[index + fua + lba48 + write];
237 if (cmd) {
238 tf->command = cmd;
239 return 0;
240 }
241 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Tejun Heocb95d562006-03-06 04:31:56 +0900244/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900245 * ata_tf_read_block - Read block address from ATA taskfile
246 * @tf: ATA taskfile of interest
247 * @dev: ATA device @tf belongs to
248 *
249 * LOCKING:
250 * None.
251 *
252 * Read block address from @tf. This function can handle all
253 * three address formats - LBA, LBA48 and CHS. tf->protocol and
254 * flags select the address format to use.
255 *
256 * RETURNS:
257 * Block address read from @tf.
258 */
259u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
260{
261 u64 block = 0;
262
263 if (tf->flags & ATA_TFLAG_LBA) {
264 if (tf->flags & ATA_TFLAG_LBA48) {
265 block |= (u64)tf->hob_lbah << 40;
266 block |= (u64)tf->hob_lbam << 32;
267 block |= tf->hob_lbal << 24;
268 } else
269 block |= (tf->device & 0xf) << 24;
270
271 block |= tf->lbah << 16;
272 block |= tf->lbam << 8;
273 block |= tf->lbal;
274 } else {
275 u32 cyl, head, sect;
276
277 cyl = tf->lbam | (tf->lbah << 8);
278 head = tf->device & 0xf;
279 sect = tf->lbal;
280
281 block = (cyl * dev->heads + head) * dev->sectors + sect;
282 }
283
284 return block;
285}
286
287/**
Tejun Heobd056d72006-11-14 22:47:10 +0900288 * ata_build_rw_tf - Build ATA taskfile for given read/write request
289 * @tf: Target ATA taskfile
290 * @dev: ATA device @tf belongs to
291 * @block: Block address
292 * @n_block: Number of blocks
293 * @tf_flags: RW/FUA etc...
294 * @tag: tag
295 *
296 * LOCKING:
297 * None.
298 *
299 * Build ATA taskfile @tf for read/write request described by
300 * @block, @n_block, @tf_flags and @tag on @dev.
301 *
302 * RETURNS:
303 *
304 * 0 on success, -ERANGE if the request is too large for @dev,
305 * -EINVAL if the request is invalid.
306 */
307int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
308 u64 block, u32 n_block, unsigned int tf_flags,
309 unsigned int tag)
310{
311 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
312 tf->flags |= tf_flags;
313
314 if ((dev->flags & (ATA_DFLAG_PIO | ATA_DFLAG_NCQ_OFF |
Tejun Heo70e6ad02006-11-14 22:47:10 +0900315 ATA_DFLAG_NCQ)) == ATA_DFLAG_NCQ &&
316 likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900317 /* yay, NCQ */
318 if (!lba_48_ok(block, n_block))
319 return -ERANGE;
320
321 tf->protocol = ATA_PROT_NCQ;
322 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
323
324 if (tf->flags & ATA_TFLAG_WRITE)
325 tf->command = ATA_CMD_FPDMA_WRITE;
326 else
327 tf->command = ATA_CMD_FPDMA_READ;
328
329 tf->nsect = tag << 3;
330 tf->hob_feature = (n_block >> 8) & 0xff;
331 tf->feature = n_block & 0xff;
332
333 tf->hob_lbah = (block >> 40) & 0xff;
334 tf->hob_lbam = (block >> 32) & 0xff;
335 tf->hob_lbal = (block >> 24) & 0xff;
336 tf->lbah = (block >> 16) & 0xff;
337 tf->lbam = (block >> 8) & 0xff;
338 tf->lbal = block & 0xff;
339
340 tf->device = 1 << 6;
341 if (tf->flags & ATA_TFLAG_FUA)
342 tf->device |= 1 << 7;
343 } else if (dev->flags & ATA_DFLAG_LBA) {
344 tf->flags |= ATA_TFLAG_LBA;
345
346 if (lba_28_ok(block, n_block)) {
347 /* use LBA28 */
348 tf->device |= (block >> 24) & 0xf;
349 } else if (lba_48_ok(block, n_block)) {
350 if (!(dev->flags & ATA_DFLAG_LBA48))
351 return -ERANGE;
352
353 /* use LBA48 */
354 tf->flags |= ATA_TFLAG_LBA48;
355
356 tf->hob_nsect = (n_block >> 8) & 0xff;
357
358 tf->hob_lbah = (block >> 40) & 0xff;
359 tf->hob_lbam = (block >> 32) & 0xff;
360 tf->hob_lbal = (block >> 24) & 0xff;
361 } else
362 /* request too large even for LBA48 */
363 return -ERANGE;
364
365 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
366 return -EINVAL;
367
368 tf->nsect = n_block & 0xff;
369
370 tf->lbah = (block >> 16) & 0xff;
371 tf->lbam = (block >> 8) & 0xff;
372 tf->lbal = block & 0xff;
373
374 tf->device |= ATA_LBA;
375 } else {
376 /* CHS */
377 u32 sect, head, cyl, track;
378
379 /* The request -may- be too large for CHS addressing. */
380 if (!lba_28_ok(block, n_block))
381 return -ERANGE;
382
383 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
384 return -EINVAL;
385
386 /* Convert LBA to CHS */
387 track = (u32)block / dev->sectors;
388 cyl = track / dev->heads;
389 head = track % dev->heads;
390 sect = (u32)block % dev->sectors + 1;
391
392 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
393 (u32)block, track, cyl, head, sect);
394
395 /* Check whether the converted CHS can fit.
396 Cylinder: 0-65535
397 Head: 0-15
398 Sector: 1-255*/
399 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
400 return -ERANGE;
401
402 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
403 tf->lbal = sect;
404 tf->lbam = cyl;
405 tf->lbah = cyl >> 8;
406 tf->device |= head;
407 }
408
409 return 0;
410}
411
412/**
Tejun Heocb95d562006-03-06 04:31:56 +0900413 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
414 * @pio_mask: pio_mask
415 * @mwdma_mask: mwdma_mask
416 * @udma_mask: udma_mask
417 *
418 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
419 * unsigned int xfer_mask.
420 *
421 * LOCKING:
422 * None.
423 *
424 * RETURNS:
425 * Packed xfer_mask.
426 */
427static unsigned int ata_pack_xfermask(unsigned int pio_mask,
428 unsigned int mwdma_mask,
429 unsigned int udma_mask)
430{
431 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
432 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
433 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
434}
435
Tejun Heoc0489e42006-03-24 14:07:49 +0900436/**
437 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
438 * @xfer_mask: xfer_mask to unpack
439 * @pio_mask: resulting pio_mask
440 * @mwdma_mask: resulting mwdma_mask
441 * @udma_mask: resulting udma_mask
442 *
443 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
444 * Any NULL distination masks will be ignored.
445 */
446static void ata_unpack_xfermask(unsigned int xfer_mask,
447 unsigned int *pio_mask,
448 unsigned int *mwdma_mask,
449 unsigned int *udma_mask)
450{
451 if (pio_mask)
452 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
453 if (mwdma_mask)
454 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
455 if (udma_mask)
456 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
457}
458
Tejun Heocb95d562006-03-06 04:31:56 +0900459static const struct ata_xfer_ent {
Tejun Heobe9a50c82006-03-31 22:48:52 +0900460 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900461 u8 base;
462} ata_xfer_tbl[] = {
463 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
464 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
465 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
466 { -1, },
467};
468
469/**
470 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
471 * @xfer_mask: xfer_mask of interest
472 *
473 * Return matching XFER_* value for @xfer_mask. Only the highest
474 * bit of @xfer_mask is considered.
475 *
476 * LOCKING:
477 * None.
478 *
479 * RETURNS:
480 * Matching XFER_* value, 0 if no match found.
481 */
482static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
483{
484 int highbit = fls(xfer_mask) - 1;
485 const struct ata_xfer_ent *ent;
486
487 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
488 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
489 return ent->base + highbit - ent->shift;
490 return 0;
491}
492
493/**
494 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
495 * @xfer_mode: XFER_* of interest
496 *
497 * Return matching xfer_mask for @xfer_mode.
498 *
499 * LOCKING:
500 * None.
501 *
502 * RETURNS:
503 * Matching xfer_mask, 0 if no match found.
504 */
505static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
506{
507 const struct ata_xfer_ent *ent;
508
509 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
510 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
511 return 1 << (ent->shift + xfer_mode - ent->base);
512 return 0;
513}
514
515/**
516 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
517 * @xfer_mode: XFER_* of interest
518 *
519 * Return matching xfer_shift for @xfer_mode.
520 *
521 * LOCKING:
522 * None.
523 *
524 * RETURNS:
525 * Matching xfer_shift, -1 if no match found.
526 */
527static int ata_xfer_mode2shift(unsigned int xfer_mode)
528{
529 const struct ata_xfer_ent *ent;
530
531 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
532 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
533 return ent->shift;
534 return -1;
535}
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900538 * ata_mode_string - convert xfer_mask to string
539 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 *
541 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900542 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 *
544 * LOCKING:
545 * None.
546 *
547 * RETURNS:
548 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900549 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900551static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Tejun Heo75f554b2006-03-06 04:31:57 +0900553 static const char * const xfer_mode_str[] = {
554 "PIO0",
555 "PIO1",
556 "PIO2",
557 "PIO3",
558 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100559 "PIO5",
560 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900561 "MWDMA0",
562 "MWDMA1",
563 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100564 "MWDMA3",
565 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900566 "UDMA/16",
567 "UDMA/25",
568 "UDMA/33",
569 "UDMA/44",
570 "UDMA/66",
571 "UDMA/100",
572 "UDMA/133",
573 "UDMA7",
574 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900575 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900577 highbit = fls(xfer_mask) - 1;
578 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
579 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Tejun Heo4c360c82006-04-01 01:38:17 +0900583static const char *sata_spd_string(unsigned int spd)
584{
585 static const char * const spd_str[] = {
586 "1.5 Gbps",
587 "3.0 Gbps",
588 };
589
590 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
591 return "<unknown>";
592 return spd_str[spd - 1];
593}
594
Tejun Heo3373efd2006-05-15 20:57:53 +0900595void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900596{
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400597 if (ata_dev_enabled(dev) && ata_msg_drv(dev->ap)) {
Tejun Heof15a1da2006-05-15 20:57:56 +0900598 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo0b8efb02006-03-24 15:25:31 +0900599 dev->class++;
600 }
601}
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 * ata_devchk - PATA device presence detection
605 * @ap: ATA channel to examine
606 * @device: Device to examine (starting at zero)
607 *
Tejun Heo0d5ff562007-02-01 15:06:36 +0900608 * This technique was originally described in
609 * Hale Landis's ATADRVR (www.ata-atapi.com), and
610 * later found its way into the ATA/ATAPI spec.
611 *
612 * Write a pattern to the ATA shadow registers,
613 * and if a device is present, it will respond by
614 * correctly storing and echoing back the
615 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 *
617 * LOCKING:
618 * caller.
619 */
620
Tejun Heo0d5ff562007-02-01 15:06:36 +0900621static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900623 struct ata_ioports *ioaddr = &ap->ioaddr;
624 u8 nsect, lbal;
625
626 ap->ops->dev_select(ap, device);
627
628 iowrite8(0x55, ioaddr->nsect_addr);
629 iowrite8(0xaa, ioaddr->lbal_addr);
630
631 iowrite8(0xaa, ioaddr->nsect_addr);
632 iowrite8(0x55, ioaddr->lbal_addr);
633
634 iowrite8(0x55, ioaddr->nsect_addr);
635 iowrite8(0xaa, ioaddr->lbal_addr);
636
637 nsect = ioread8(ioaddr->nsect_addr);
638 lbal = ioread8(ioaddr->lbal_addr);
639
640 if ((nsect == 0x55) && (lbal == 0xaa))
641 return 1; /* we found a device */
642
643 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646/**
647 * ata_dev_classify - determine device type based on ATA-spec signature
648 * @tf: ATA taskfile register set for device to be identified
649 *
650 * Determine from taskfile register contents whether a device is
651 * ATA or ATAPI, as per "Signature and persistence" section
652 * of ATA/PI spec (volume 1, sect 5.14).
653 *
654 * LOCKING:
655 * None.
656 *
657 * RETURNS:
658 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
659 * the event of failure.
660 */
661
Jeff Garzik057ace52005-10-22 14:27:05 -0400662unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 /* Apple's open source Darwin code hints that some devices only
665 * put a proper signature into the LBA mid/high registers,
666 * So, we only check those. It's sufficient for uniqueness.
667 */
668
669 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
670 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
671 DPRINTK("found ATA device by sig\n");
672 return ATA_DEV_ATA;
673 }
674
675 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
676 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
677 DPRINTK("found ATAPI device by sig\n");
678 return ATA_DEV_ATAPI;
679 }
680
681 DPRINTK("unknown device\n");
682 return ATA_DEV_UNKNOWN;
683}
684
685/**
686 * ata_dev_try_classify - Parse returned ATA device signature
687 * @ap: ATA channel to examine
688 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900689 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 *
691 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
692 * an ATA/ATAPI-defined set of values is placed in the ATA
693 * shadow registers, indicating the results of device detection
694 * and diagnostics.
695 *
696 * Select the ATA device, and read the values from the ATA shadow
697 * registers. Then parse according to the Error register value,
698 * and the spec-defined values examined by ata_dev_classify().
699 *
700 * LOCKING:
701 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900702 *
703 * RETURNS:
704 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
706
Tejun Heob4dc7622006-01-24 17:05:22 +0900707static unsigned int
708ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 struct ata_taskfile tf;
711 unsigned int class;
712 u8 err;
713
714 ap->ops->dev_select(ap, device);
715
716 memset(&tf, 0, sizeof(tf));
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400719 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900720 if (r_err)
721 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Alan Cox93590852006-09-12 16:55:12 +0100723 /* see if device passed diags: if master then continue and warn later */
724 if (err == 0 && device == 0)
725 /* diagnostic fail : do nothing _YET_ */
726 ap->device[device].horkage |= ATA_HORKAGE_DIAGNOSTIC;
727 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /* do nothing */ ;
729 else if ((device == 0) && (err == 0x81))
730 /* do nothing */ ;
731 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900732 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Tejun Heob4dc7622006-01-24 17:05:22 +0900734 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900738 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900740 return ATA_DEV_NONE;
741 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900745 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 * @id: IDENTIFY DEVICE results we will examine
747 * @s: string into which data is output
748 * @ofs: offset into identify device page
749 * @len: length of string to return. must be an even number.
750 *
751 * The strings in the IDENTIFY DEVICE page are broken up into
752 * 16-bit chunks. Run through the string, and output each
753 * 8-bit chunk linearly, regardless of platform.
754 *
755 * LOCKING:
756 * caller.
757 */
758
Tejun Heo6a62a042006-02-13 10:02:46 +0900759void ata_id_string(const u16 *id, unsigned char *s,
760 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 unsigned int c;
763
764 while (len > 0) {
765 c = id[ofs] >> 8;
766 *s = c;
767 s++;
768
769 c = id[ofs] & 0xff;
770 *s = c;
771 s++;
772
773 ofs++;
774 len -= 2;
775 }
776}
777
Tejun Heo0e949ff2006-02-12 22:47:04 +0900778/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900779 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900780 * @id: IDENTIFY DEVICE results we will examine
781 * @s: string into which data is output
782 * @ofs: offset into identify device page
783 * @len: length of string to return. must be an odd number.
784 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900785 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900786 * trims trailing spaces and terminates the resulting string with
787 * null. @len must be actual maximum length (even number) + 1.
788 *
789 * LOCKING:
790 * caller.
791 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900792void ata_id_c_string(const u16 *id, unsigned char *s,
793 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900794{
795 unsigned char *p;
796
797 WARN_ON(!(len & 1));
798
Tejun Heo6a62a042006-02-13 10:02:46 +0900799 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900800
801 p = s + strnlen(s, len - 1);
802 while (p > s && p[-1] == ' ')
803 p--;
804 *p = '\0';
805}
Edward Falk0baab862005-06-02 18:17:13 -0400806
Tejun Heo29407402006-02-12 22:47:04 +0900807static u64 ata_id_n_sectors(const u16 *id)
808{
809 if (ata_id_has_lba(id)) {
810 if (ata_id_has_lba48(id))
811 return ata_id_u64(id, 100);
812 else
813 return ata_id_u32(id, 60);
814 } else {
815 if (ata_id_current_chs_valid(id))
816 return ata_id_u32(id, 57);
817 else
818 return id[1] * id[3] * id[6];
819 }
820}
821
Edward Falk0baab862005-06-02 18:17:13 -0400822/**
823 * ata_noop_dev_select - Select device 0/1 on ATA bus
824 * @ap: ATA channel to manipulate
825 * @device: ATA device (numbered from zero) to select
826 *
827 * This function performs no actual function.
828 *
829 * May be used as the dev_select() entry in ata_port_operations.
830 *
831 * LOCKING:
832 * caller.
833 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
835{
836}
837
Edward Falk0baab862005-06-02 18:17:13 -0400838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/**
840 * ata_std_dev_select - Select device 0/1 on ATA bus
841 * @ap: ATA channel to manipulate
842 * @device: ATA device (numbered from zero) to select
843 *
844 * Use the method defined in the ATA specification to
845 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400846 * ATA channel. Works with both PIO and MMIO.
847 *
848 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 *
850 * LOCKING:
851 * caller.
852 */
853
854void ata_std_dev_select (struct ata_port *ap, unsigned int device)
855{
856 u8 tmp;
857
858 if (device == 0)
859 tmp = ATA_DEVICE_OBS;
860 else
861 tmp = ATA_DEVICE_OBS | ATA_DEV1;
862
Tejun Heo0d5ff562007-02-01 15:06:36 +0900863 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 ata_pause(ap); /* needed; also flushes, for mmio */
865}
866
867/**
868 * ata_dev_select - Select device 0/1 on ATA bus
869 * @ap: ATA channel to manipulate
870 * @device: ATA device (numbered from zero) to select
871 * @wait: non-zero to wait for Status register BSY bit to clear
872 * @can_sleep: non-zero if context allows sleeping
873 *
874 * Use the method defined in the ATA specification to
875 * make either device 0, or device 1, active on the
876 * ATA channel.
877 *
878 * This is a high-level version of ata_std_dev_select(),
879 * which additionally provides the services of inserting
880 * the proper pauses and status polling, where needed.
881 *
882 * LOCKING:
883 * caller.
884 */
885
886void ata_dev_select(struct ata_port *ap, unsigned int device,
887 unsigned int wait, unsigned int can_sleep)
888{
Tejun Heo88574552006-06-25 20:00:35 +0900889 if (ata_msg_probe(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400890 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, ata%u: "
Tejun Heo88574552006-06-25 20:00:35 +0900891 "device %u, wait %u\n", ap->id, device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 if (wait)
894 ata_wait_idle(ap);
895
896 ap->ops->dev_select(ap, device);
897
898 if (wait) {
899 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
900 msleep(150);
901 ata_wait_idle(ap);
902 }
903}
904
905/**
906 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900907 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900909 * Dump selected 16-bit words from the given IDENTIFY DEVICE
910 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 *
912 * LOCKING:
913 * caller.
914 */
915
Tejun Heo0bd33002006-02-12 22:47:05 +0900916static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
918 DPRINTK("49==0x%04x "
919 "53==0x%04x "
920 "63==0x%04x "
921 "64==0x%04x "
922 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900923 id[49],
924 id[53],
925 id[63],
926 id[64],
927 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 DPRINTK("80==0x%04x "
929 "81==0x%04x "
930 "82==0x%04x "
931 "83==0x%04x "
932 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900933 id[80],
934 id[81],
935 id[82],
936 id[83],
937 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 DPRINTK("88==0x%04x "
939 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900940 id[88],
941 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Tejun Heocb95d562006-03-06 04:31:56 +0900944/**
945 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
946 * @id: IDENTIFY data to compute xfer mask from
947 *
948 * Compute the xfermask for this device. This is not as trivial
949 * as it seems if we must consider early devices correctly.
950 *
951 * FIXME: pre IDE drive timing (do we care ?).
952 *
953 * LOCKING:
954 * None.
955 *
956 * RETURNS:
957 * Computed xfermask
958 */
959static unsigned int ata_id_xfermask(const u16 *id)
960{
961 unsigned int pio_mask, mwdma_mask, udma_mask;
962
963 /* Usual case. Word 53 indicates word 64 is valid */
964 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
965 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
966 pio_mask <<= 3;
967 pio_mask |= 0x7;
968 } else {
969 /* If word 64 isn't valid then Word 51 high byte holds
970 * the PIO timing number for the maximum. Turn it into
971 * a mask.
972 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +0100973 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +0100974 if (mode < 5) /* Valid PIO range */
975 pio_mask = (2 << mode) - 1;
976 else
977 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +0900978
979 /* But wait.. there's more. Design your standards by
980 * committee and you too can get a free iordy field to
981 * process. However its the speeds not the modes that
982 * are supported... Note drivers using the timing API
983 * will get this right anyway
984 */
985 }
986
987 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +0900988
Alan Coxb352e572006-08-10 18:52:12 +0100989 if (ata_id_is_cfa(id)) {
990 /*
991 * Process compact flash extended modes
992 */
993 int pio = id[163] & 0x7;
994 int dma = (id[163] >> 3) & 7;
995
996 if (pio)
997 pio_mask |= (1 << 5);
998 if (pio > 1)
999 pio_mask |= (1 << 6);
1000 if (dma)
1001 mwdma_mask |= (1 << 3);
1002 if (dma > 1)
1003 mwdma_mask |= (1 << 4);
1004 }
1005
Tejun Heofb21f0d2006-03-12 12:34:35 +09001006 udma_mask = 0;
1007 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1008 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001009
1010 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1011}
1012
Tejun Heo86e45b62006-03-05 15:29:09 +09001013/**
1014 * ata_port_queue_task - Queue port_task
1015 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001016 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001017 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001018 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001019 *
1020 * Schedule @fn(@data) for execution after @delay jiffies using
1021 * port_task. There is one port_task per port and it's the
1022 * user(low level driver)'s responsibility to make sure that only
1023 * one task is active at any given time.
1024 *
1025 * libata core layer takes care of synchronization between
1026 * port_task and EH. ata_port_queue_task() may be ignored for EH
1027 * synchronization.
1028 *
1029 * LOCKING:
1030 * Inherited from caller.
1031 */
David Howells65f27f32006-11-22 14:55:48 +00001032void ata_port_queue_task(struct ata_port *ap, work_func_t fn, void *data,
Tejun Heo86e45b62006-03-05 15:29:09 +09001033 unsigned long delay)
1034{
1035 int rc;
1036
Tejun Heob51e9e52006-06-29 01:29:30 +09001037 if (ap->pflags & ATA_PFLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +09001038 return;
1039
David Howells65f27f32006-11-22 14:55:48 +00001040 PREPARE_DELAYED_WORK(&ap->port_task, fn);
1041 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001042
David Howells52bad642006-11-22 14:54:01 +00001043 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001044
1045 /* rc == 0 means that another user is using port task */
1046 WARN_ON(rc == 0);
1047}
1048
1049/**
1050 * ata_port_flush_task - Flush port_task
1051 * @ap: The ata_port to flush port_task for
1052 *
1053 * After this function completes, port_task is guranteed not to
1054 * be running or scheduled.
1055 *
1056 * LOCKING:
1057 * Kernel thread context (may sleep)
1058 */
1059void ata_port_flush_task(struct ata_port *ap)
1060{
1061 unsigned long flags;
1062
1063 DPRINTK("ENTER\n");
1064
Jeff Garzikba6a1302006-06-22 23:46:10 -04001065 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09001066 ap->pflags |= ATA_PFLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04001067 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +09001068
1069 DPRINTK("flush #1\n");
1070 flush_workqueue(ata_wq);
1071
1072 /*
1073 * At this point, if a task is running, it's guaranteed to see
1074 * the FLUSH flag; thus, it will never queue pio tasks again.
1075 * Cancel and flush.
1076 */
1077 if (!cancel_delayed_work(&ap->port_task)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001078 if (ata_msg_ctl(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001079 ata_port_printk(ap, KERN_DEBUG, "%s: flush #2\n",
1080 __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001081 flush_workqueue(ata_wq);
1082 }
1083
Jeff Garzikba6a1302006-06-22 23:46:10 -04001084 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09001085 ap->pflags &= ~ATA_PFLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04001086 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +09001087
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001088 if (ata_msg_ctl(ap))
1089 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001090}
1091
Adrian Bunk7102d232007-01-04 00:09:36 +01001092static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001093{
Tejun Heo77853bf2006-01-23 13:09:36 +09001094 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001095
Tejun Heoa2a7a662005-12-13 14:48:31 +09001096 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001097}
1098
1099/**
Tejun Heo24326972006-11-14 22:47:09 +09001100 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001101 * @dev: Device to which the command is sent
1102 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001103 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001104 * @dma_dir: Data tranfer direction of the command
Tejun Heo24326972006-11-14 22:47:09 +09001105 * @sg: sg list for the data buffer of the command
1106 * @n_elem: Number of sg entries
Tejun Heoa2a7a662005-12-13 14:48:31 +09001107 *
1108 * Executes libata internal command with timeout. @tf contains
1109 * command on entry and result on return. Timeout and error
1110 * conditions are reported via return value. No recovery action
1111 * is taken after a command times out. It's caller's duty to
1112 * clean up after timeout.
1113 *
1114 * LOCKING:
1115 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001116 *
1117 * RETURNS:
1118 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001119 */
Tejun Heo24326972006-11-14 22:47:09 +09001120unsigned ata_exec_internal_sg(struct ata_device *dev,
1121 struct ata_taskfile *tf, const u8 *cdb,
1122 int dma_dir, struct scatterlist *sg,
1123 unsigned int n_elem)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001124{
Tejun Heo3373efd2006-05-15 20:57:53 +09001125 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001126 u8 command = tf->command;
1127 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001128 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001129 u32 preempted_sactive, preempted_qc_active;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001130 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001131 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001132 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001133 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001134
Jeff Garzikba6a1302006-06-22 23:46:10 -04001135 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001136
Tejun Heoe3180492006-05-15 20:58:09 +09001137 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001138 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001139 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001140 return AC_ERR_SYSTEM;
1141 }
1142
Tejun Heo2ab7db12006-05-15 20:58:02 +09001143 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001144
Tejun Heo2ab7db12006-05-15 20:58:02 +09001145 /* XXX: Tag 0 is used for drivers with legacy EH as some
1146 * drivers choke if any other tag is given. This breaks
1147 * ata_tag_internal() test for those drivers. Don't use new
1148 * EH stuff without converting to it.
1149 */
1150 if (ap->ops->error_handler)
1151 tag = ATA_TAG_INTERNAL;
1152 else
1153 tag = 0;
1154
Tejun Heo6cec4a32006-05-15 21:03:41 +09001155 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001156 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001157 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001158
1159 qc->tag = tag;
1160 qc->scsicmd = NULL;
1161 qc->ap = ap;
1162 qc->dev = dev;
1163 ata_qc_reinit(qc);
1164
1165 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001166 preempted_sactive = ap->sactive;
1167 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001168 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001169 ap->sactive = 0;
1170 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001171
1172 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001173 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001174 if (cdb)
1175 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001176 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001177 qc->dma_dir = dma_dir;
1178 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001179 unsigned int i, buflen = 0;
1180
1181 for (i = 0; i < n_elem; i++)
1182 buflen += sg[i].length;
1183
1184 ata_sg_init(qc, sg, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001185 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001186 }
1187
Tejun Heo77853bf2006-01-23 13:09:36 +09001188 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001189 qc->complete_fn = ata_qc_complete_internal;
1190
Tejun Heo8e0e6942006-03-31 20:41:11 +09001191 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001192
Jeff Garzikba6a1302006-06-22 23:46:10 -04001193 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001194
Andrew Mortona8601e52006-06-25 01:36:52 -07001195 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001196
Tejun Heod95a7172006-05-15 20:58:14 +09001197 ata_port_flush_task(ap);
1198
1199 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001200 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001201
1202 /* We're racing with irq here. If we lose, the
1203 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001204 * twice. If we win, the port is frozen and will be
1205 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001206 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001207 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001208 qc->err_mask |= AC_ERR_TIMEOUT;
1209
1210 if (ap->ops->error_handler)
1211 ata_port_freeze(ap);
1212 else
1213 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001214
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001215 if (ata_msg_warn(ap))
1216 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001217 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001218 }
1219
Jeff Garzikba6a1302006-06-22 23:46:10 -04001220 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001221 }
1222
Tejun Heod95a7172006-05-15 20:58:14 +09001223 /* do post_internal_cmd */
1224 if (ap->ops->post_internal_cmd)
1225 ap->ops->post_internal_cmd(qc);
1226
Alan18d90de2007-01-24 11:42:38 +00001227 if ((qc->flags & ATA_QCFLAG_FAILED) && !qc->err_mask) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001228 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001229 ata_dev_printk(dev, KERN_WARNING,
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001230 "zero err_mask for failed "
Tejun Heo88574552006-06-25 20:00:35 +09001231 "internal command, assuming AC_ERR_OTHER\n");
Tejun Heod95a7172006-05-15 20:58:14 +09001232 qc->err_mask |= AC_ERR_OTHER;
1233 }
1234
Tejun Heo15869302006-05-15 20:57:33 +09001235 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001236 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001237
Tejun Heoe61e0672006-05-15 20:57:40 +09001238 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001239 err_mask = qc->err_mask;
1240
1241 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001242 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001243 ap->sactive = preempted_sactive;
1244 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001245
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001246 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1247 * Until those drivers are fixed, we detect the condition
1248 * here, fail the command with AC_ERR_SYSTEM and reenable the
1249 * port.
1250 *
1251 * Note that this doesn't change any behavior as internal
1252 * command failure results in disabling the device in the
1253 * higher layer for LLDDs without new reset/EH callbacks.
1254 *
1255 * Kill the following code as soon as those drivers are fixed.
1256 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001257 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001258 err_mask |= AC_ERR_SYSTEM;
1259 ata_port_probe(ap);
1260 }
1261
Jeff Garzikba6a1302006-06-22 23:46:10 -04001262 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001263
Tejun Heo77853bf2006-01-23 13:09:36 +09001264 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001265}
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267/**
Tejun Heo33480a02006-12-12 02:15:31 +09001268 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001269 * @dev: Device to which the command is sent
1270 * @tf: Taskfile registers for the command and the result
1271 * @cdb: CDB for packet command
1272 * @dma_dir: Data tranfer direction of the command
1273 * @buf: Data buffer of the command
1274 * @buflen: Length of data buffer
1275 *
1276 * Wrapper around ata_exec_internal_sg() which takes simple
1277 * buffer instead of sg list.
1278 *
1279 * LOCKING:
1280 * None. Should be called with kernel context, might sleep.
1281 *
1282 * RETURNS:
1283 * Zero on success, AC_ERR_* mask on failure
1284 */
1285unsigned ata_exec_internal(struct ata_device *dev,
1286 struct ata_taskfile *tf, const u8 *cdb,
1287 int dma_dir, void *buf, unsigned int buflen)
1288{
Tejun Heo33480a02006-12-12 02:15:31 +09001289 struct scatterlist *psg = NULL, sg;
1290 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001291
Tejun Heo33480a02006-12-12 02:15:31 +09001292 if (dma_dir != DMA_NONE) {
1293 WARN_ON(!buf);
1294 sg_init_one(&sg, buf, buflen);
1295 psg = &sg;
1296 n_elem++;
1297 }
Tejun Heo24326972006-11-14 22:47:09 +09001298
Tejun Heo33480a02006-12-12 02:15:31 +09001299 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem);
Tejun Heo24326972006-11-14 22:47:09 +09001300}
1301
1302/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001303 * ata_do_simple_cmd - execute simple internal command
1304 * @dev: Device to which the command is sent
1305 * @cmd: Opcode to execute
1306 *
1307 * Execute a 'simple' command, that only consists of the opcode
1308 * 'cmd' itself, without filling any other registers
1309 *
1310 * LOCKING:
1311 * Kernel thread context (may sleep).
1312 *
1313 * RETURNS:
1314 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001315 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001316unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001317{
1318 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001319
1320 ata_tf_init(dev, &tf);
1321
1322 tf.command = cmd;
1323 tf.flags |= ATA_TFLAG_DEVICE;
1324 tf.protocol = ATA_PROT_NODATA;
1325
Tejun Heo977e6b92006-06-24 20:30:19 +09001326 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001327}
1328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001330 * ata_pio_need_iordy - check if iordy needed
1331 * @adev: ATA device
1332 *
1333 * Check if the current speed of the device requires IORDY. Used
1334 * by various controllers for chip configuration.
1335 */
1336
1337unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1338{
1339 int pio;
1340 int speed = adev->pio_mode - XFER_PIO_0;
1341
1342 if (speed < 2)
1343 return 0;
1344 if (speed > 2)
1345 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001346
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001347 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1348
1349 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1350 pio = adev->id[ATA_ID_EIDE_PIO];
1351 /* Is the speed faster than the drive allows non IORDY ? */
1352 if (pio) {
1353 /* This is cycle times not frequency - watch the logic! */
1354 if (pio > 240) /* PIO2 is 240nS per cycle */
1355 return 1;
1356 return 0;
1357 }
1358 }
1359 return 0;
1360}
1361
1362/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001363 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001364 * @dev: target device
1365 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001366 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001367 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001368 *
1369 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1370 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001371 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1372 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001373 *
1374 * LOCKING:
1375 * Kernel thread context (may sleep)
1376 *
1377 * RETURNS:
1378 * 0 on success, -errno otherwise.
1379 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001380int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001381 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001382{
Tejun Heo3373efd2006-05-15 20:57:53 +09001383 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001384 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001385 struct ata_taskfile tf;
1386 unsigned int err_mask = 0;
1387 const char *reason;
1388 int rc;
1389
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001390 if (ata_msg_ctl(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001391 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1392 __FUNCTION__, ap->id, dev->devno);
Tejun Heo49016ac2006-02-21 02:12:11 +09001393
Tejun Heo49016ac2006-02-21 02:12:11 +09001394 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1395
1396 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001397 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001398
1399 switch (class) {
1400 case ATA_DEV_ATA:
1401 tf.command = ATA_CMD_ID_ATA;
1402 break;
1403 case ATA_DEV_ATAPI:
1404 tf.command = ATA_CMD_ID_ATAPI;
1405 break;
1406 default:
1407 rc = -ENODEV;
1408 reason = "unsupported class";
1409 goto err_out;
1410 }
1411
1412 tf.protocol = ATA_PROT_PIO;
Tejun Heo800b3992006-12-03 21:34:13 +09001413 tf.flags |= ATA_TFLAG_POLLING; /* for polling presence detection */
Tejun Heo49016ac2006-02-21 02:12:11 +09001414
Tejun Heo3373efd2006-05-15 20:57:53 +09001415 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001416 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001417 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001418 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001419 DPRINTK("ata%u.%d: NODEV after polling detection\n",
1420 ap->id, dev->devno);
1421 return -ENOENT;
1422 }
1423
Tejun Heo49016ac2006-02-21 02:12:11 +09001424 rc = -EIO;
1425 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001426 goto err_out;
1427 }
1428
1429 swap_buf_le16(id, ATA_ID_WORDS);
1430
Tejun Heo49016ac2006-02-21 02:12:11 +09001431 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001432 rc = -EINVAL;
1433 reason = "device reports illegal type";
1434
1435 if (class == ATA_DEV_ATA) {
1436 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1437 goto err_out;
1438 } else {
1439 if (ata_id_is_ata(id))
1440 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001441 }
1442
Tejun Heobff04642006-11-10 18:08:10 +09001443 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001444 /*
1445 * The exact sequence expected by certain pre-ATA4 drives is:
1446 * SRST RESET
1447 * IDENTIFY
1448 * INITIALIZE DEVICE PARAMETERS
1449 * anything else..
1450 * Some drives were very specific about that exact sequence.
1451 */
1452 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001453 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001454 if (err_mask) {
1455 rc = -EIO;
1456 reason = "INIT_DEV_PARAMS failed";
1457 goto err_out;
1458 }
1459
1460 /* current CHS translation info (id[53-58]) might be
1461 * changed. reread the identify device info.
1462 */
Tejun Heobff04642006-11-10 18:08:10 +09001463 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09001464 goto retry;
1465 }
1466 }
1467
1468 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001469
Tejun Heo49016ac2006-02-21 02:12:11 +09001470 return 0;
1471
1472 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001473 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001474 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001475 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001476 return rc;
1477}
1478
Tejun Heo3373efd2006-05-15 20:57:53 +09001479static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001480{
Tejun Heo3373efd2006-05-15 20:57:53 +09001481 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001482}
1483
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001484static void ata_dev_config_ncq(struct ata_device *dev,
1485 char *desc, size_t desc_sz)
1486{
1487 struct ata_port *ap = dev->ap;
1488 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1489
1490 if (!ata_id_has_ncq(dev->id)) {
1491 desc[0] = '\0';
1492 return;
1493 }
Alan Cox6919a0a2006-10-27 19:08:46 -07001494 if (ata_device_blacklisted(dev) & ATA_HORKAGE_NONCQ) {
1495 snprintf(desc, desc_sz, "NCQ (not used)");
1496 return;
1497 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001498 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04001499 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001500 dev->flags |= ATA_DFLAG_NCQ;
1501 }
1502
1503 if (hdepth >= ddepth)
1504 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1505 else
1506 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1507}
1508
Brian Kinge6d902a2006-06-28 08:30:31 -05001509static void ata_set_port_max_cmd_len(struct ata_port *ap)
1510{
1511 int i;
1512
Jeff Garzikcca39742006-08-24 03:19:22 -04001513 if (ap->scsi_host) {
1514 unsigned int len = 0;
1515
Brian Kinge6d902a2006-06-28 08:30:31 -05001516 for (i = 0; i < ATA_MAX_DEVICES; i++)
Jeff Garzikcca39742006-08-24 03:19:22 -04001517 len = max(len, ap->device[i].cdb_len);
1518
1519 ap->scsi_host->max_cmd_len = len;
Brian Kinge6d902a2006-06-28 08:30:31 -05001520 }
1521}
1522
Tejun Heo49016ac2006-02-21 02:12:11 +09001523/**
Tejun Heoffeae412006-03-01 16:09:35 +09001524 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001525 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 *
Tejun Heoffeae412006-03-01 16:09:35 +09001527 * Configure @dev according to @dev->id. Generic and low-level
1528 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 *
1530 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001531 * Kernel thread context (may sleep)
1532 *
1533 * RETURNS:
1534 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09001536int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Tejun Heo3373efd2006-05-15 20:57:53 +09001538 struct ata_port *ap = dev->ap;
Tejun Heoefdaedc2006-11-01 18:38:52 +09001539 int print_info = ap->eh_context.i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001540 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001541 unsigned int xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01001542 char revbuf[7]; /* XYZ-99\0 */
Brian Kinge6d902a2006-06-28 08:30:31 -05001543 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001545 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo88574552006-06-25 20:00:35 +09001546 ata_dev_printk(dev, KERN_INFO,
1547 "%s: ENTER/EXIT (host %u, dev %u) -- nodev\n",
1548 __FUNCTION__, ap->id, dev->devno);
Tejun Heoffeae412006-03-01 16:09:35 +09001549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 }
1551
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001552 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001553 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1554 __FUNCTION__, ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001556 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001557 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001558 ata_dev_printk(dev, KERN_DEBUG,
1559 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1560 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001561 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001562 id[49], id[82], id[83], id[84],
1563 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001564
Tejun Heo208a9932006-03-05 17:55:58 +09001565 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001566 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001567 dev->max_sectors = 0;
1568 dev->cdb_len = 0;
1569 dev->n_sectors = 0;
1570 dev->cylinders = 0;
1571 dev->heads = 0;
1572 dev->sectors = 0;
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 /*
1575 * common ATA, ATAPI feature tests
1576 */
1577
Tejun Heoff8854b2006-03-06 04:31:56 +09001578 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001579 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001581 if (ata_msg_probe(ap))
1582 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 /* ATA-specific feature tests */
1585 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01001586 if (ata_id_is_cfa(id)) {
1587 if (id[162] & 1) /* CPRM may make this media unusable */
1588 ata_dev_printk(dev, KERN_WARNING, "ata%u: device %u supports DRM functions and may not be fully accessable.\n",
1589 ap->id, dev->devno);
1590 snprintf(revbuf, 7, "CFA");
1591 }
1592 else
1593 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
1594
Tejun Heo1148c3a2006-03-13 19:48:04 +09001595 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001596
Tejun Heo1148c3a2006-03-13 19:48:04 +09001597 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001598 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001599 char ncq_desc[20];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001600
Tejun Heo4c2d7212006-03-05 17:55:58 +09001601 lba_desc = "LBA";
1602 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001603 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001604 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001605 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001606
1607 if (dev->n_sectors >= (1UL << 28) &&
1608 ata_id_has_flush_ext(id))
1609 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001610 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001611
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001612 /* config NCQ */
1613 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1614
Albert Lee8bf62ec2005-05-12 15:29:42 -04001615 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001616 if (ata_msg_drv(ap) && print_info)
Alan Coxb352e572006-08-10 18:52:12 +01001617 ata_dev_printk(dev, KERN_INFO, "%s, "
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001618 "max %s, %Lu sectors: %s %s\n",
Alan Coxb352e572006-08-10 18:52:12 +01001619 revbuf,
Tejun Heof15a1da2006-05-15 20:57:56 +09001620 ata_mode_string(xfer_mask),
1621 (unsigned long long)dev->n_sectors,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001622 lba_desc, ncq_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001623 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001624 /* CHS */
1625
1626 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001627 dev->cylinders = id[1];
1628 dev->heads = id[3];
1629 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001630
Tejun Heo1148c3a2006-03-13 19:48:04 +09001631 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001632 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001633 dev->cylinders = id[54];
1634 dev->heads = id[55];
1635 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001636 }
1637
1638 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001639 if (ata_msg_drv(ap) && print_info)
Alan Coxb352e572006-08-10 18:52:12 +01001640 ata_dev_printk(dev, KERN_INFO, "%s, "
Tejun Heof15a1da2006-05-15 20:57:56 +09001641 "max %s, %Lu sectors: CHS %u/%u/%u\n",
Alan Coxb352e572006-08-10 18:52:12 +01001642 revbuf,
Tejun Heof15a1da2006-05-15 20:57:56 +09001643 ata_mode_string(xfer_mask),
1644 (unsigned long long)dev->n_sectors,
Tejun Heo88574552006-06-25 20:00:35 +09001645 dev->cylinders, dev->heads,
1646 dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
1648
Albert Lee07f6f7d2005-11-01 19:33:20 +08001649 if (dev->id[59] & 0x100) {
1650 dev->multi_count = dev->id[59] & 0xff;
Borislav Petkov5afc8142006-06-27 14:51:25 +02001651 if (ata_msg_drv(ap) && print_info)
Tejun Heo88574552006-06-25 20:00:35 +09001652 ata_dev_printk(dev, KERN_INFO,
1653 "ata%u: dev %u multi count %u\n",
1654 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001655 }
1656
Tejun Heo6e7846e2006-02-12 23:32:58 +09001657 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
1660 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001661 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001662 char *cdb_intr_string = "";
1663
Tejun Heo1148c3a2006-03-13 19:48:04 +09001664 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001666 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001667 ata_dev_printk(dev, KERN_WARNING,
1668 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001669 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 goto err_out_nosup;
1671 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001672 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Albert Lee08a556d2006-03-31 13:29:04 +08001674 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001675 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001676 cdb_intr_string = ", CDB intr";
1677 }
Albert Lee312f7da2005-09-27 17:38:03 +08001678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001680 if (ata_msg_drv(ap) && print_info)
Tejun Heo12436c32006-05-15 20:59:15 +09001681 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1682 ata_mode_string(xfer_mask),
1683 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
1685
Tejun Heo914ed352006-11-01 18:39:55 +09001686 /* determine max_sectors */
1687 dev->max_sectors = ATA_MAX_SECTORS;
1688 if (dev->flags & ATA_DFLAG_LBA48)
1689 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
1690
Alan Cox93590852006-09-12 16:55:12 +01001691 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
1692 /* Let the user know. We don't want to disallow opens for
1693 rescue purposes, or in case the vendor is just a blithering
1694 idiot */
1695 if (print_info) {
1696 ata_dev_printk(dev, KERN_WARNING,
1697"Drive reports diagnostics failure. This may indicate a drive\n");
1698 ata_dev_printk(dev, KERN_WARNING,
1699"fault or invalid emulation. Contact drive vendor for information.\n");
1700 }
1701 }
1702
Brian Kinge6d902a2006-06-28 08:30:31 -05001703 ata_set_port_max_cmd_len(ap);
Tejun Heo6e7846e2006-02-12 23:32:58 +09001704
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001705 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001706 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02001707 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001708 ata_dev_printk(dev, KERN_INFO,
1709 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001710 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001711 dev->max_sectors = ATA_MAX_SECTORS;
1712 }
1713
1714 if (ap->ops->dev_config)
1715 ap->ops->dev_config(ap, dev);
1716
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001717 if (ata_msg_probe(ap))
1718 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
1719 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001720 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001723 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001724 ata_dev_printk(dev, KERN_DEBUG,
1725 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001726 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727}
1728
1729/**
1730 * ata_bus_probe - Reset and probe ATA bus
1731 * @ap: Bus to probe
1732 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001733 * Master ATA bus probing function. Initiates a hardware-dependent
1734 * bus reset, then attempts to identify any devices found on
1735 * the bus.
1736 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001738 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 *
1740 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001741 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 */
1743
Brian King80289162006-08-07 14:27:31 -05001744int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001746 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001747 int tries[ATA_MAX_DEVICES];
1748 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001749 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Tejun Heo28ca5c52006-03-01 16:09:36 +09001751 ata_port_probe(ap);
1752
Tejun Heo14d2bac2006-04-02 17:54:46 +09001753 for (i = 0; i < ATA_MAX_DEVICES; i++)
1754 tries[i] = ATA_PROBE_MAX_TRIES;
1755
1756 retry:
1757 down_xfermask = 0;
1758
Tejun Heo20444702006-03-13 01:57:01 +09001759 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09001760 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09001761
Tejun Heo52783c52006-05-31 18:28:22 +09001762 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1763 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001764
Tejun Heo52783c52006-05-31 18:28:22 +09001765 if (!(ap->flags & ATA_FLAG_DISABLED) &&
1766 dev->class != ATA_DEV_UNKNOWN)
1767 classes[dev->devno] = dev->class;
1768 else
1769 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09001770
Tejun Heo52783c52006-05-31 18:28:22 +09001771 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09001772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Tejun Heo52783c52006-05-31 18:28:22 +09001774 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09001775
Alan Coxb6079ca2006-05-22 16:52:06 +01001776 /* after the reset the device state is PIO 0 and the controller
1777 state is undefined. Record the mode */
1778
1779 for (i = 0; i < ATA_MAX_DEVICES; i++)
1780 ap->device[i].pio_mode = XFER_PIO_0;
1781
Tejun Heo28ca5c52006-03-01 16:09:36 +09001782 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001784 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001785
Tejun Heoec573752006-04-11 22:26:29 +09001786 if (tries[i])
1787 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001788
Tejun Heoe1211e32006-04-01 01:38:18 +09001789 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001790 continue;
1791
Tejun Heobff04642006-11-10 18:08:10 +09001792 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
1793 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001794 if (rc)
1795 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001796
Tejun Heoefdaedc2006-11-01 18:38:52 +09001797 ap->eh_context.i.flags |= ATA_EHI_PRINTINFO;
1798 rc = ata_dev_configure(dev);
1799 ap->eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001800 if (rc)
1801 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001804 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001805 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001806 if (rc) {
1807 down_xfermask = 1;
1808 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001811 for (i = 0; i < ATA_MAX_DEVICES; i++)
1812 if (ata_dev_enabled(&ap->device[i]))
1813 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001814
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001815 /* no device present, disable port */
1816 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001818 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001819
1820 fail:
1821 switch (rc) {
1822 case -EINVAL:
1823 case -ENODEV:
1824 tries[dev->devno] = 0;
1825 break;
1826 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001827 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001828 /* fall through */
1829 default:
1830 tries[dev->devno]--;
1831 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001832 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001833 tries[dev->devno] = 0;
1834 }
1835
Tejun Heoec573752006-04-11 22:26:29 +09001836 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001837 ata_down_xfermask_limit(dev, 1);
1838 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001839 }
1840
Tejun Heo14d2bac2006-04-02 17:54:46 +09001841 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
1843
1844/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001845 * ata_port_probe - Mark port as enabled
1846 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001848 * Modify @ap data structure such that the system
1849 * thinks that the entire port is enabled.
1850 *
Jeff Garzikcca39742006-08-24 03:19:22 -04001851 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04001852 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 */
1854
1855void ata_port_probe(struct ata_port *ap)
1856{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001857 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
1860/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001861 * sata_print_link_status - Print SATA link status
1862 * @ap: SATA port to printk link status about
1863 *
1864 * This function prints link speed and status of a SATA link.
1865 *
1866 * LOCKING:
1867 * None.
1868 */
1869static void sata_print_link_status(struct ata_port *ap)
1870{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001871 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001872
Tejun Heo81952c52006-05-15 20:57:47 +09001873 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001874 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001875 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001876
Tejun Heo81952c52006-05-15 20:57:47 +09001877 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001878 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001879 ata_port_printk(ap, KERN_INFO,
1880 "SATA link up %s (SStatus %X SControl %X)\n",
1881 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001882 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001883 ata_port_printk(ap, KERN_INFO,
1884 "SATA link down (SStatus %X SControl %X)\n",
1885 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001886 }
1887}
1888
1889/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001890 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1891 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001893 * This function issues commands to standard SATA Sxxx
1894 * PHY registers, to wake up the phy (and device), and
1895 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 *
1897 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001898 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 *
1900 */
1901void __sata_phy_reset(struct ata_port *ap)
1902{
1903 u32 sstatus;
1904 unsigned long timeout = jiffies + (HZ * 5);
1905
1906 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001907 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001908 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001909 /* Couldn't find anything in SATA I/II specs, but
1910 * AHCI-1.1 10.4.2 says at least 1 ms. */
1911 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
Tejun Heo81952c52006-05-15 20:57:47 +09001913 /* phy wake/clear reset */
1914 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916 /* wait for phy to become ready, if necessary */
1917 do {
1918 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001919 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if ((sstatus & 0xf) != 1)
1921 break;
1922 } while (time_before(jiffies, timeout));
1923
Tejun Heo3be680b2005-12-19 22:35:02 +09001924 /* print link status */
1925 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001926
Tejun Heo3be680b2005-12-19 22:35:02 +09001927 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001928 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09001930 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Tejun Heo198e0fe2006-04-02 18:51:52 +09001933 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 return;
1935
1936 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
1937 ata_port_disable(ap);
1938 return;
1939 }
1940
1941 ap->cbl = ATA_CBL_SATA;
1942}
1943
1944/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001945 * sata_phy_reset - Reset SATA bus.
1946 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001948 * This function resets the SATA bus, and then probes
1949 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 *
1951 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001952 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 *
1954 */
1955void sata_phy_reset(struct ata_port *ap)
1956{
1957 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09001958 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 return;
1960 ata_bus_reset(ap);
1961}
1962
1963/**
Alan Coxebdfca62006-03-23 15:38:34 +00001964 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00001965 * @adev: device
1966 *
1967 * Obtain the other device on the same cable, or if none is
1968 * present NULL is returned
1969 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001970
Tejun Heo3373efd2006-05-15 20:57:53 +09001971struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00001972{
Tejun Heo3373efd2006-05-15 20:57:53 +09001973 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00001974 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09001975 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00001976 return NULL;
1977 return pair;
1978}
1979
1980/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001981 * ata_port_disable - Disable port.
1982 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001984 * Modify @ap data structure such that the system
1985 * thinks that the entire port is disabled, and should
1986 * never attempt to probe or communicate with devices
1987 * on this port.
1988 *
Jeff Garzikcca39742006-08-24 03:19:22 -04001989 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04001990 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 */
1992
1993void ata_port_disable(struct ata_port *ap)
1994{
1995 ap->device[0].class = ATA_DEV_NONE;
1996 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09001997 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998}
1999
Tejun Heo1c3fae42006-04-02 20:53:28 +09002000/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002001 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09002002 * @ap: Port to adjust SATA spd limit for
2003 *
2004 * Adjust SATA spd limit of @ap downward. Note that this
2005 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002006 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002007 *
2008 * LOCKING:
2009 * Inherited from caller.
2010 *
2011 * RETURNS:
2012 * 0 on success, negative errno on failure
2013 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002014int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002015{
Tejun Heo81952c52006-05-15 20:57:47 +09002016 u32 sstatus, spd, mask;
2017 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002018
Tejun Heo81952c52006-05-15 20:57:47 +09002019 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
2020 if (rc)
2021 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002022
2023 mask = ap->sata_spd_limit;
2024 if (mask <= 1)
2025 return -EINVAL;
2026 highbit = fls(mask) - 1;
2027 mask &= ~(1 << highbit);
2028
Tejun Heo81952c52006-05-15 20:57:47 +09002029 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002030 if (spd <= 1)
2031 return -EINVAL;
2032 spd--;
2033 mask &= (1 << spd) - 1;
2034 if (!mask)
2035 return -EINVAL;
2036
2037 ap->sata_spd_limit = mask;
2038
Tejun Heof15a1da2006-05-15 20:57:56 +09002039 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
2040 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002041
2042 return 0;
2043}
2044
Tejun Heo3c567b72006-05-15 20:57:23 +09002045static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002046{
2047 u32 spd, limit;
2048
2049 if (ap->sata_spd_limit == UINT_MAX)
2050 limit = 0;
2051 else
2052 limit = fls(ap->sata_spd_limit);
2053
2054 spd = (*scontrol >> 4) & 0xf;
2055 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
2056
2057 return spd != limit;
2058}
2059
2060/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002061 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09002062 * @ap: Port in question
2063 *
2064 * Test whether the spd limit in SControl matches
2065 * @ap->sata_spd_limit. This function is used to determine
2066 * whether hardreset is necessary to apply SATA spd
2067 * configuration.
2068 *
2069 * LOCKING:
2070 * Inherited from caller.
2071 *
2072 * RETURNS:
2073 * 1 if SATA spd configuration is needed, 0 otherwise.
2074 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002075int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002076{
2077 u32 scontrol;
2078
Tejun Heo81952c52006-05-15 20:57:47 +09002079 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002080 return 0;
2081
Tejun Heo3c567b72006-05-15 20:57:23 +09002082 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002083}
2084
2085/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002086 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09002087 * @ap: Port to set SATA spd for
2088 *
2089 * Set SATA spd of @ap according to sata_spd_limit.
2090 *
2091 * LOCKING:
2092 * Inherited from caller.
2093 *
2094 * RETURNS:
2095 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002096 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002097 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002098int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002099{
2100 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002101 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002102
Tejun Heo81952c52006-05-15 20:57:47 +09002103 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2104 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002105
Tejun Heo3c567b72006-05-15 20:57:23 +09002106 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002107 return 0;
2108
Tejun Heo81952c52006-05-15 20:57:47 +09002109 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2110 return rc;
2111
Tejun Heo1c3fae42006-04-02 20:53:28 +09002112 return 1;
2113}
2114
Alan Cox452503f2005-10-21 19:01:32 -04002115/*
2116 * This mode timing computation functionality is ported over from
2117 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2118 */
2119/*
Alan Coxb352e572006-08-10 18:52:12 +01002120 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002121 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002122 * for UDMA6, which is currently supported only by Maxtor drives.
2123 *
2124 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002125 */
2126
2127static const struct ata_timing ata_timing[] = {
2128
2129 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
2130 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2131 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2132 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2133
Alan Coxb352e572006-08-10 18:52:12 +01002134 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
2135 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002136 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2137 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2138 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2139
2140/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002141
Alan Cox452503f2005-10-21 19:01:32 -04002142 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
2143 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2144 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002145
Alan Cox452503f2005-10-21 19:01:32 -04002146 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
2147 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2148 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2149
Alan Coxb352e572006-08-10 18:52:12 +01002150 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
2151 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002152 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2153 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2154
2155 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2156 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2157 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2158
2159/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2160
2161 { 0xFF }
2162};
2163
2164#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
2165#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
2166
2167static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2168{
2169 q->setup = EZ(t->setup * 1000, T);
2170 q->act8b = EZ(t->act8b * 1000, T);
2171 q->rec8b = EZ(t->rec8b * 1000, T);
2172 q->cyc8b = EZ(t->cyc8b * 1000, T);
2173 q->active = EZ(t->active * 1000, T);
2174 q->recover = EZ(t->recover * 1000, T);
2175 q->cycle = EZ(t->cycle * 1000, T);
2176 q->udma = EZ(t->udma * 1000, UT);
2177}
2178
2179void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2180 struct ata_timing *m, unsigned int what)
2181{
2182 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2183 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2184 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2185 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2186 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2187 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2188 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2189 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2190}
2191
2192static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
2193{
2194 const struct ata_timing *t;
2195
2196 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04002197 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04002198 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002199 return t;
Alan Cox452503f2005-10-21 19:01:32 -04002200}
2201
2202int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2203 struct ata_timing *t, int T, int UT)
2204{
2205 const struct ata_timing *s;
2206 struct ata_timing p;
2207
2208 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002209 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002210 */
Alan Cox452503f2005-10-21 19:01:32 -04002211
2212 if (!(s = ata_timing_find_mode(speed)))
2213 return -EINVAL;
2214
Albert Lee75b1f2f2005-11-16 17:06:18 +08002215 memcpy(t, s, sizeof(*s));
2216
Alan Cox452503f2005-10-21 19:01:32 -04002217 /*
2218 * If the drive is an EIDE drive, it can tell us it needs extended
2219 * PIO/MW_DMA cycle timing.
2220 */
2221
2222 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2223 memset(&p, 0, sizeof(p));
2224 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2225 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2226 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2227 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2228 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2229 }
2230 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2231 }
2232
2233 /*
2234 * Convert the timing to bus clock counts.
2235 */
2236
Albert Lee75b1f2f2005-11-16 17:06:18 +08002237 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002238
2239 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002240 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2241 * S.M.A.R.T * and some other commands. We have to ensure that the
2242 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002243 */
2244
Alanfd3367a2006-12-07 12:41:18 +00002245 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002246 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2247 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2248 }
2249
2250 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002251 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002252 */
2253
2254 if (t->act8b + t->rec8b < t->cyc8b) {
2255 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2256 t->rec8b = t->cyc8b - t->act8b;
2257 }
2258
2259 if (t->active + t->recover < t->cycle) {
2260 t->active += (t->cycle - (t->active + t->recover)) / 2;
2261 t->recover = t->cycle - t->active;
2262 }
2263
2264 return 0;
2265}
2266
Tejun Heocf176e12006-04-02 17:54:46 +09002267/**
2268 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002269 * @dev: Device to adjust xfer masks
2270 * @force_pio0: Force PIO0
2271 *
2272 * Adjust xfer masks of @dev downward. Note that this function
2273 * does not apply the change. Invoking ata_set_mode() afterwards
2274 * will apply the limit.
2275 *
2276 * LOCKING:
2277 * Inherited from caller.
2278 *
2279 * RETURNS:
2280 * 0 on success, negative errno on failure
2281 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002282int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09002283{
2284 unsigned long xfer_mask;
2285 int highbit;
2286
2287 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2288 dev->udma_mask);
2289
2290 if (!xfer_mask)
2291 goto fail;
2292 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2293 if (xfer_mask & ATA_MASK_UDMA)
2294 xfer_mask &= ~ATA_MASK_MWDMA;
2295
2296 highbit = fls(xfer_mask) - 1;
2297 xfer_mask &= ~(1 << highbit);
2298 if (force_pio0)
2299 xfer_mask &= 1 << ATA_SHIFT_PIO;
2300 if (!xfer_mask)
2301 goto fail;
2302
2303 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2304 &dev->udma_mask);
2305
Tejun Heof15a1da2006-05-15 20:57:56 +09002306 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2307 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002308
2309 return 0;
2310
2311 fail:
2312 return -EINVAL;
2313}
2314
Tejun Heo3373efd2006-05-15 20:57:53 +09002315static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316{
Tejun Heobaa1e782006-11-01 18:39:27 +09002317 struct ata_eh_context *ehc = &dev->ap->eh_context;
Tejun Heo83206a22006-03-24 15:25:31 +09002318 unsigned int err_mask;
2319 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Tejun Heoe8384602006-04-02 18:51:53 +09002321 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 if (dev->xfer_shift == ATA_SHIFT_PIO)
2323 dev->flags |= ATA_DFLAG_PIO;
2324
Tejun Heo3373efd2006-05-15 20:57:53 +09002325 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002326 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002327 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2328 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002329 return -EIO;
2330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Tejun Heobaa1e782006-11-01 18:39:27 +09002332 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo3373efd2006-05-15 20:57:53 +09002333 rc = ata_dev_revalidate(dev, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09002334 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002335 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002336 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002337
Tejun Heo23e71c32006-03-06 04:31:57 +09002338 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2339 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Tejun Heof15a1da2006-05-15 20:57:56 +09002341 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2342 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002343 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344}
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346/**
2347 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2348 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002349 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002351 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2352 * ata_set_mode() fails, pointer to the failing device is
2353 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002354 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002356 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002357 *
2358 * RETURNS:
2359 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002361int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
Tejun Heoe8e06192006-04-01 01:38:18 +09002363 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002364 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Tejun Heo3adcebb2006-05-15 20:57:37 +09002366 /* has private set_mode? */
Alanb229a7b2007-01-24 11:47:07 +00002367 if (ap->ops->set_mode)
2368 return ap->ops->set_mode(ap, r_failed_dev);
Tejun Heo3adcebb2006-05-15 20:57:37 +09002369
Tejun Heoa6d5a512006-03-06 04:31:57 +09002370 /* step 1: calculate xfer_mask */
2371 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002372 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002373
Tejun Heoe8e06192006-04-01 01:38:18 +09002374 dev = &ap->device[i];
2375
Tejun Heoe1211e32006-04-01 01:38:18 +09002376 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002377 continue;
2378
Tejun Heo3373efd2006-05-15 20:57:53 +09002379 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002380
Tejun Heoacf356b2006-03-24 14:07:50 +09002381 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2382 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2383 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2384 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002385
Tejun Heo4f659772006-04-01 01:38:18 +09002386 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002387 if (dev->dma_mode)
2388 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002389 }
Tejun Heo4f659772006-04-01 01:38:18 +09002390 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002391 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002392
2393 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002394 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2395 dev = &ap->device[i];
2396 if (!ata_dev_enabled(dev))
2397 continue;
2398
2399 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002400 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002401 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002402 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002403 }
2404
2405 dev->xfer_mode = dev->pio_mode;
2406 dev->xfer_shift = ATA_SHIFT_PIO;
2407 if (ap->ops->set_piomode)
2408 ap->ops->set_piomode(ap, dev);
2409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Tejun Heoa6d5a512006-03-06 04:31:57 +09002411 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002412 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2413 dev = &ap->device[i];
2414
2415 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2416 continue;
2417
2418 dev->xfer_mode = dev->dma_mode;
2419 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2420 if (ap->ops->set_dmamode)
2421 ap->ops->set_dmamode(ap, dev);
2422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002425 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002426 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Alan18d90de2007-01-24 11:42:38 +00002428 /* don't update suspended devices' xfer mode */
Tejun Heo02670bf2006-07-03 16:07:26 +09002429 if (!ata_dev_ready(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002430 continue;
2431
Tejun Heo3373efd2006-05-15 20:57:53 +09002432 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002433 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002434 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Tejun Heoe8e06192006-04-01 01:38:18 +09002437 /* Record simplex status. If we selected DMA then the other
2438 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002439 */
Jeff Garzikcca39742006-08-24 03:19:22 -04002440 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
2441 ap->host->simplex_claimed = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002442
Tejun Heoe8e06192006-04-01 01:38:18 +09002443 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 if (ap->ops->post_set_mode)
2445 ap->ops->post_set_mode(ap);
2446
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002447 out:
2448 if (rc)
2449 *r_failed_dev = dev;
2450 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451}
2452
2453/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002454 * ata_tf_to_host - issue ATA taskfile to host controller
2455 * @ap: port to which command is being issued
2456 * @tf: ATA taskfile register set
2457 *
2458 * Issues ATA taskfile register set to ATA host controller,
2459 * with proper synchronization with interrupt handler and
2460 * other threads.
2461 *
2462 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002463 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002464 */
2465
2466static inline void ata_tf_to_host(struct ata_port *ap,
2467 const struct ata_taskfile *tf)
2468{
2469 ap->ops->tf_load(ap, tf);
2470 ap->ops->exec_command(ap, tf);
2471}
2472
2473/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 * ata_busy_sleep - sleep until BSY clears, or timeout
2475 * @ap: port containing status register to be polled
2476 * @tmout_pat: impatience timeout
2477 * @tmout: overall timeout
2478 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002479 * Sleep until ATA Status register bit BSY clears,
2480 * or a timeout occurs.
2481 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09002482 * LOCKING:
2483 * Kernel thread context (may sleep).
2484 *
2485 * RETURNS:
2486 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09002488int ata_busy_sleep(struct ata_port *ap,
2489 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
2491 unsigned long timer_start, timeout;
2492 u8 status;
2493
2494 status = ata_busy_wait(ap, ATA_BUSY, 300);
2495 timer_start = jiffies;
2496 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002497 while (status != 0xff && (status & ATA_BUSY) &&
2498 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 msleep(50);
2500 status = ata_busy_wait(ap, ATA_BUSY, 3);
2501 }
2502
Tejun Heod1adc1b2006-10-09 18:32:15 +09002503 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09002504 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002505 "port is slow to respond, please be patient "
2506 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002509 while (status != 0xff && (status & ATA_BUSY) &&
2510 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 msleep(50);
2512 status = ata_chk_status(ap);
2513 }
2514
Tejun Heod1adc1b2006-10-09 18:32:15 +09002515 if (status == 0xff)
2516 return -ENODEV;
2517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002519 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002520 "(%lu secs, Status 0x%x)\n",
2521 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09002522 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 }
2524
2525 return 0;
2526}
2527
2528static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2529{
2530 struct ata_ioports *ioaddr = &ap->ioaddr;
2531 unsigned int dev0 = devmask & (1 << 0);
2532 unsigned int dev1 = devmask & (1 << 1);
2533 unsigned long timeout;
2534
2535 /* if device 0 was found in ata_devchk, wait for its
2536 * BSY bit to clear
2537 */
2538 if (dev0)
2539 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2540
2541 /* if device 1 was found in ata_devchk, wait for
2542 * register access, then wait for BSY to clear
2543 */
2544 timeout = jiffies + ATA_TMOUT_BOOT;
2545 while (dev1) {
2546 u8 nsect, lbal;
2547
2548 ap->ops->dev_select(ap, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09002549 nsect = ioread8(ioaddr->nsect_addr);
2550 lbal = ioread8(ioaddr->lbal_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 if ((nsect == 1) && (lbal == 1))
2552 break;
2553 if (time_after(jiffies, timeout)) {
2554 dev1 = 0;
2555 break;
2556 }
2557 msleep(50); /* give drive a breather */
2558 }
2559 if (dev1)
2560 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2561
2562 /* is all this really necessary? */
2563 ap->ops->dev_select(ap, 0);
2564 if (dev1)
2565 ap->ops->dev_select(ap, 1);
2566 if (dev0)
2567 ap->ops->dev_select(ap, 0);
2568}
2569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570static unsigned int ata_bus_softreset(struct ata_port *ap,
2571 unsigned int devmask)
2572{
2573 struct ata_ioports *ioaddr = &ap->ioaddr;
2574
2575 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2576
2577 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09002578 iowrite8(ap->ctl, ioaddr->ctl_addr);
2579 udelay(20); /* FIXME: flush */
2580 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2581 udelay(20); /* FIXME: flush */
2582 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 /* spec mandates ">= 2ms" before checking status.
2585 * We wait 150ms, because that was the magic delay used for
2586 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2587 * between when the ATA command register is written, and then
2588 * status is checked. Because waiting for "a while" before
2589 * checking status is fine, post SRST, we perform this magic
2590 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002591 *
2592 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 */
2594 msleep(150);
2595
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002596 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002597 * the bus shows 0xFF because the odd clown forgets the D7
2598 * pulldown resistor.
2599 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09002600 if (ata_check_status(ap) == 0xFF)
2601 return 0;
Alan Cox09c7ad72006-03-22 15:52:40 +00002602
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 ata_bus_post_reset(ap, devmask);
2604
2605 return 0;
2606}
2607
2608/**
2609 * ata_bus_reset - reset host port and associated ATA channel
2610 * @ap: port to reset
2611 *
2612 * This is typically the first time we actually start issuing
2613 * commands to the ATA channel. We wait for BSY to clear, then
2614 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2615 * result. Determine what devices, if any, are on the channel
2616 * by looking at the device 0/1 error register. Look at the signature
2617 * stored in each device's taskfile registers, to determine if
2618 * the device is ATA or ATAPI.
2619 *
2620 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002621 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04002622 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 *
2624 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002625 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 */
2627
2628void ata_bus_reset(struct ata_port *ap)
2629{
2630 struct ata_ioports *ioaddr = &ap->ioaddr;
2631 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2632 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002633 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2636
2637 /* determine if device 0/1 are present */
2638 if (ap->flags & ATA_FLAG_SATA_RESET)
2639 dev0 = 1;
2640 else {
2641 dev0 = ata_devchk(ap, 0);
2642 if (slave_possible)
2643 dev1 = ata_devchk(ap, 1);
2644 }
2645
2646 if (dev0)
2647 devmask |= (1 << 0);
2648 if (dev1)
2649 devmask |= (1 << 1);
2650
2651 /* select device 0 again */
2652 ap->ops->dev_select(ap, 0);
2653
2654 /* issue bus reset */
2655 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002656 if (ata_bus_softreset(ap, devmask))
2657 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
2659 /*
2660 * determine by signature whether we have ATA or ATAPI devices
2661 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002662 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002664 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
2666 /* re-enable interrupts */
Akira Iguchi83625002007-01-26 16:27:32 +09002667 ap->ops->irq_on(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
2669 /* is double-select really necessary? */
2670 if (ap->device[1].class != ATA_DEV_NONE)
2671 ap->ops->dev_select(ap, 1);
2672 if (ap->device[0].class != ATA_DEV_NONE)
2673 ap->ops->dev_select(ap, 0);
2674
2675 /* if no devices were detected, disable this port */
2676 if ((ap->device[0].class == ATA_DEV_NONE) &&
2677 (ap->device[1].class == ATA_DEV_NONE))
2678 goto err_out;
2679
2680 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2681 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09002682 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 }
2684
2685 DPRINTK("EXIT\n");
2686 return;
2687
2688err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002689 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 ap->ops->port_disable(ap);
2691
2692 DPRINTK("EXIT\n");
2693}
2694
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002695/**
2696 * sata_phy_debounce - debounce SATA phy status
2697 * @ap: ATA port to debounce SATA phy status for
2698 * @params: timing parameters { interval, duratinon, timeout } in msec
2699 *
2700 * Make sure SStatus of @ap reaches stable state, determined by
2701 * holding the same value where DET is not 1 for @duration polled
2702 * every @interval, before @timeout. Timeout constraints the
2703 * beginning of the stable state. Because, after hot unplugging,
2704 * DET gets stuck at 1 on some controllers, this functions waits
2705 * until timeout then returns 0 if DET is stable at 1.
2706 *
2707 * LOCKING:
2708 * Kernel thread context (may sleep)
2709 *
2710 * RETURNS:
2711 * 0 on success, -errno on failure.
2712 */
2713int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09002714{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002715 unsigned long interval_msec = params[0];
2716 unsigned long duration = params[1] * HZ / 1000;
2717 unsigned long timeout = jiffies + params[2] * HZ / 1000;
2718 unsigned long last_jiffies;
2719 u32 last, cur;
2720 int rc;
2721
2722 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2723 return rc;
2724 cur &= 0xf;
2725
2726 last = cur;
2727 last_jiffies = jiffies;
2728
2729 while (1) {
2730 msleep(interval_msec);
2731 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2732 return rc;
2733 cur &= 0xf;
2734
2735 /* DET stable? */
2736 if (cur == last) {
2737 if (cur == 1 && time_before(jiffies, timeout))
2738 continue;
2739 if (time_after(jiffies, last_jiffies + duration))
2740 return 0;
2741 continue;
2742 }
2743
2744 /* unstable, start over */
2745 last = cur;
2746 last_jiffies = jiffies;
2747
2748 /* check timeout */
2749 if (time_after(jiffies, timeout))
2750 return -EBUSY;
2751 }
2752}
2753
2754/**
2755 * sata_phy_resume - resume SATA phy
2756 * @ap: ATA port to resume SATA phy for
2757 * @params: timing parameters { interval, duratinon, timeout } in msec
2758 *
2759 * Resume SATA phy of @ap and debounce it.
2760 *
2761 * LOCKING:
2762 * Kernel thread context (may sleep)
2763 *
2764 * RETURNS:
2765 * 0 on success, -errno on failure.
2766 */
2767int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
2768{
2769 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002770 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002771
Tejun Heo81952c52006-05-15 20:57:47 +09002772 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2773 return rc;
2774
Tejun Heo852ee162006-04-01 01:38:18 +09002775 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002776
2777 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2778 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002779
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002780 /* Some PHYs react badly if SStatus is pounded immediately
2781 * after resuming. Delay 200ms before debouncing.
2782 */
2783 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002784
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002785 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002786}
2787
Tejun Heof5914a42006-05-31 18:27:48 +09002788static void ata_wait_spinup(struct ata_port *ap)
2789{
2790 struct ata_eh_context *ehc = &ap->eh_context;
2791 unsigned long end, secs;
2792 int rc;
2793
2794 /* first, debounce phy if SATA */
2795 if (ap->cbl == ATA_CBL_SATA) {
Tejun Heoe9c83912006-07-03 16:07:26 +09002796 rc = sata_phy_debounce(ap, sata_deb_timing_hotplug);
Tejun Heof5914a42006-05-31 18:27:48 +09002797
2798 /* if debounced successfully and offline, no need to wait */
2799 if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap))
2800 return;
2801 }
2802
2803 /* okay, let's give the drive time to spin up */
2804 end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000;
2805 secs = ((end - jiffies) + HZ - 1) / HZ;
2806
2807 if (time_after(jiffies, end))
2808 return;
2809
2810 if (secs > 5)
2811 ata_port_printk(ap, KERN_INFO, "waiting for device to spin up "
2812 "(%lu secs)\n", secs);
2813
2814 schedule_timeout_uninterruptible(end - jiffies);
2815}
2816
2817/**
2818 * ata_std_prereset - prepare for reset
2819 * @ap: ATA port to be reset
2820 *
2821 * @ap is about to be reset. Initialize it.
2822 *
2823 * LOCKING:
2824 * Kernel thread context (may sleep)
2825 *
2826 * RETURNS:
2827 * 0 on success, -errno otherwise.
2828 */
2829int ata_std_prereset(struct ata_port *ap)
2830{
2831 struct ata_eh_context *ehc = &ap->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09002832 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09002833 int rc;
2834
Tejun Heo28324302006-07-03 16:07:26 +09002835 /* handle link resume & hotplug spinup */
2836 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
2837 (ap->flags & ATA_FLAG_HRST_TO_RESUME))
2838 ehc->i.action |= ATA_EH_HARDRESET;
2839
2840 if ((ehc->i.flags & ATA_EHI_HOTPLUGGED) &&
2841 (ap->flags & ATA_FLAG_SKIP_D2H_BSY))
2842 ata_wait_spinup(ap);
Tejun Heof5914a42006-05-31 18:27:48 +09002843
2844 /* if we're about to do hardreset, nothing more to do */
2845 if (ehc->i.action & ATA_EH_HARDRESET)
2846 return 0;
2847
2848 /* if SATA, resume phy */
2849 if (ap->cbl == ATA_CBL_SATA) {
Tejun Heof5914a42006-05-31 18:27:48 +09002850 rc = sata_phy_resume(ap, timing);
2851 if (rc && rc != -EOPNOTSUPP) {
2852 /* phy resume failed */
2853 ata_port_printk(ap, KERN_WARNING, "failed to resume "
2854 "link for reset (errno=%d)\n", rc);
2855 return rc;
2856 }
2857 }
2858
2859 /* Wait for !BSY if the controller can wait for the first D2H
2860 * Reg FIS and we don't know that no device is attached.
2861 */
2862 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap))
2863 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2864
2865 return 0;
2866}
2867
Tejun Heoc2bd5802006-01-24 17:05:22 +09002868/**
2869 * ata_std_softreset - reset host port via ATA SRST
2870 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002871 * @classes: resulting classes of attached devices
2872 *
Tejun Heo52783c52006-05-31 18:28:22 +09002873 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002874 *
2875 * LOCKING:
2876 * Kernel thread context (may sleep)
2877 *
2878 * RETURNS:
2879 * 0 on success, -errno otherwise.
2880 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002881int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002882{
2883 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2884 unsigned int devmask = 0, err_mask;
2885 u8 err;
2886
2887 DPRINTK("ENTER\n");
2888
Tejun Heo81952c52006-05-15 20:57:47 +09002889 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002890 classes[0] = ATA_DEV_NONE;
2891 goto out;
2892 }
2893
Tejun Heoc2bd5802006-01-24 17:05:22 +09002894 /* determine if device 0/1 are present */
2895 if (ata_devchk(ap, 0))
2896 devmask |= (1 << 0);
2897 if (slave_possible && ata_devchk(ap, 1))
2898 devmask |= (1 << 1);
2899
Tejun Heoc2bd5802006-01-24 17:05:22 +09002900 /* select device 0 again */
2901 ap->ops->dev_select(ap, 0);
2902
2903 /* issue bus reset */
2904 DPRINTK("about to softreset, devmask=%x\n", devmask);
2905 err_mask = ata_bus_softreset(ap, devmask);
2906 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002907 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2908 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002909 return -EIO;
2910 }
2911
2912 /* determine by signature whether we have ATA or ATAPI devices */
2913 classes[0] = ata_dev_try_classify(ap, 0, &err);
2914 if (slave_possible && err != 0x81)
2915 classes[1] = ata_dev_try_classify(ap, 1, &err);
2916
Tejun Heo3a397462006-02-10 23:58:48 +09002917 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09002918 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
2919 return 0;
2920}
2921
2922/**
Tejun Heob6103f62006-11-01 17:59:53 +09002923 * sata_port_hardreset - reset port via SATA phy reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002924 * @ap: port to reset
Tejun Heob6103f62006-11-01 17:59:53 +09002925 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heoc2bd5802006-01-24 17:05:22 +09002926 *
2927 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002928 *
2929 * LOCKING:
2930 * Kernel thread context (may sleep)
2931 *
2932 * RETURNS:
2933 * 0 on success, -errno otherwise.
2934 */
Tejun Heob6103f62006-11-01 17:59:53 +09002935int sata_port_hardreset(struct ata_port *ap, const unsigned long *timing)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002936{
Tejun Heo852ee162006-04-01 01:38:18 +09002937 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002938 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09002939
Tejun Heoc2bd5802006-01-24 17:05:22 +09002940 DPRINTK("ENTER\n");
2941
Tejun Heo3c567b72006-05-15 20:57:23 +09002942 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09002943 /* SATA spec says nothing about how to reconfigure
2944 * spd. To be on the safe side, turn off phy during
2945 * reconfiguration. This works for at least ICH7 AHCI
2946 * and Sil3124.
2947 */
Tejun Heo81952c52006-05-15 20:57:47 +09002948 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09002949 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09002950
Martin Hicksa34b6fc2006-07-05 15:06:13 -04002951 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09002952
2953 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09002954 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002955
Tejun Heo3c567b72006-05-15 20:57:23 +09002956 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002957 }
2958
2959 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002960 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09002961 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09002962
Tejun Heo852ee162006-04-01 01:38:18 +09002963 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09002964
2965 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09002966 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09002967
Tejun Heo1c3fae42006-04-02 20:53:28 +09002968 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09002969 * 10.4.2 says at least 1 ms.
2970 */
2971 msleep(1);
2972
Tejun Heo1c3fae42006-04-02 20:53:28 +09002973 /* bring phy back */
Tejun Heob6103f62006-11-01 17:59:53 +09002974 rc = sata_phy_resume(ap, timing);
2975 out:
2976 DPRINTK("EXIT, rc=%d\n", rc);
2977 return rc;
2978}
2979
2980/**
2981 * sata_std_hardreset - reset host port via SATA phy reset
2982 * @ap: port to reset
2983 * @class: resulting class of attached device
2984 *
2985 * SATA phy-reset host port using DET bits of SControl register,
2986 * wait for !BSY and classify the attached device.
2987 *
2988 * LOCKING:
2989 * Kernel thread context (may sleep)
2990 *
2991 * RETURNS:
2992 * 0 on success, -errno otherwise.
2993 */
2994int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
2995{
2996 const unsigned long *timing = sata_ehc_deb_timing(&ap->eh_context);
2997 int rc;
2998
2999 DPRINTK("ENTER\n");
3000
3001 /* do hardreset */
3002 rc = sata_port_hardreset(ap, timing);
3003 if (rc) {
3004 ata_port_printk(ap, KERN_ERR,
3005 "COMRESET failed (errno=%d)\n", rc);
3006 return rc;
3007 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003008
Tejun Heoc2bd5802006-01-24 17:05:22 +09003009 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09003010 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09003011 *class = ATA_DEV_NONE;
3012 DPRINTK("EXIT, link offline\n");
3013 return 0;
3014 }
3015
3016 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003017 ata_port_printk(ap, KERN_ERR,
3018 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09003019 return -EIO;
3020 }
3021
Tejun Heo3a397462006-02-10 23:58:48 +09003022 ap->ops->dev_select(ap, 0); /* probably unnecessary */
3023
Tejun Heoc2bd5802006-01-24 17:05:22 +09003024 *class = ata_dev_try_classify(ap, 0, NULL);
3025
3026 DPRINTK("EXIT, class=%u\n", *class);
3027 return 0;
3028}
3029
3030/**
3031 * ata_std_postreset - standard postreset callback
3032 * @ap: the target ata_port
3033 * @classes: classes of attached devices
3034 *
3035 * This function is invoked after a successful reset. Note that
3036 * the device might have been reset more than once using
3037 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003038 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003039 * LOCKING:
3040 * Kernel thread context (may sleep)
3041 */
3042void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
3043{
Tejun Heodc2b3512006-05-15 20:58:00 +09003044 u32 serror;
3045
Tejun Heoc2bd5802006-01-24 17:05:22 +09003046 DPRINTK("ENTER\n");
3047
Tejun Heoc2bd5802006-01-24 17:05:22 +09003048 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09003049 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003050
Tejun Heodc2b3512006-05-15 20:58:00 +09003051 /* clear SError */
3052 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
3053 sata_scr_write(ap, SCR_ERROR, serror);
3054
Tejun Heo3a397462006-02-10 23:58:48 +09003055 /* re-enable interrupts */
Akira Iguchi83625002007-01-26 16:27:32 +09003056 if (!ap->ops->error_handler)
3057 ap->ops->irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003058
3059 /* is double-select really necessary? */
3060 if (classes[0] != ATA_DEV_NONE)
3061 ap->ops->dev_select(ap, 1);
3062 if (classes[1] != ATA_DEV_NONE)
3063 ap->ops->dev_select(ap, 0);
3064
Tejun Heo3a397462006-02-10 23:58:48 +09003065 /* bail out if no device is present */
3066 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3067 DPRINTK("EXIT, no device\n");
3068 return;
3069 }
3070
3071 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003072 if (ap->ioaddr.ctl_addr)
3073 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003074
3075 DPRINTK("EXIT\n");
3076}
3077
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003078/**
Tejun Heo623a3122006-03-05 17:55:58 +09003079 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003080 * @dev: device to compare against
3081 * @new_class: class of the new device
3082 * @new_id: IDENTIFY page of the new device
3083 *
3084 * Compare @new_class and @new_id against @dev and determine
3085 * whether @dev is the device indicated by @new_class and
3086 * @new_id.
3087 *
3088 * LOCKING:
3089 * None.
3090 *
3091 * RETURNS:
3092 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3093 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003094static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3095 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003096{
3097 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003098 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3099 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003100 u64 new_n_sectors;
3101
3102 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003103 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3104 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003105 return 0;
3106 }
3107
Tejun Heoa0cf7332007-01-02 20:18:49 +09003108 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3109 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3110 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3111 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003112 new_n_sectors = ata_id_n_sectors(new_id);
3113
3114 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003115 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3116 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003117 return 0;
3118 }
3119
3120 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003121 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3122 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003123 return 0;
3124 }
3125
3126 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003127 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3128 "%llu != %llu\n",
3129 (unsigned long long)dev->n_sectors,
3130 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09003131 return 0;
3132 }
3133
3134 return 1;
3135}
3136
3137/**
3138 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09003139 * @dev: device to revalidate
Tejun Heobff04642006-11-10 18:08:10 +09003140 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003141 *
3142 * Re-read IDENTIFY page and make sure @dev is still attached to
3143 * the port.
3144 *
3145 * LOCKING:
3146 * Kernel thread context (may sleep)
3147 *
3148 * RETURNS:
3149 * 0 on success, negative errno otherwise
3150 */
Tejun Heobff04642006-11-10 18:08:10 +09003151int ata_dev_revalidate(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003152{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003153 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09003154 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003155 int rc;
3156
Tejun Heo5eb45c02006-04-02 18:51:52 +09003157 if (!ata_dev_enabled(dev)) {
3158 rc = -ENODEV;
3159 goto fail;
3160 }
Tejun Heo623a3122006-03-05 17:55:58 +09003161
Tejun Heofe635c72006-05-15 20:57:35 +09003162 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003163 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003164 if (rc)
3165 goto fail;
3166
3167 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09003168 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09003169 rc = -ENODEV;
3170 goto fail;
3171 }
3172
Tejun Heofe635c72006-05-15 20:57:35 +09003173 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09003174
3175 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003176 rc = ata_dev_configure(dev);
Tejun Heo5eb45c02006-04-02 18:51:52 +09003177 if (rc == 0)
3178 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003179
3180 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003181 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003182 return rc;
3183}
3184
Alan Cox6919a0a2006-10-27 19:08:46 -07003185struct ata_blacklist_entry {
3186 const char *model_num;
3187 const char *model_rev;
3188 unsigned long horkage;
3189};
3190
3191static const struct ata_blacklist_entry ata_device_blacklist [] = {
3192 /* Devices with DMA related problems under Linux */
3193 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3194 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3195 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3196 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3197 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3198 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3199 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3200 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3201 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3202 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3203 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3204 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3205 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3206 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3207 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3208 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3209 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3210 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3211 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3212 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3213 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3214 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3215 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3216 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3217 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3218 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
3219 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3220 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3221 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3222 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
3223
3224 /* Devices we expect to fail diagnostics */
3225
3226 /* Devices where NCQ should be avoided */
3227 /* NCQ is slow */
3228 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
3229
3230 /* Devices with NCQ limits */
3231
3232 /* End Marker */
3233 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003235
Alan Cox6919a0a2006-10-27 19:08:46 -07003236unsigned long ata_device_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003238 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3239 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003240 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003241
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003242 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3243 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Alan Cox6919a0a2006-10-27 19:08:46 -07003245 while (ad->model_num) {
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003246 if (!strcmp(ad->model_num, model_num)) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003247 if (ad->model_rev == NULL)
3248 return ad->horkage;
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003249 if (!strcmp(ad->model_rev, model_rev))
Alan Cox6919a0a2006-10-27 19:08:46 -07003250 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003251 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003252 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 return 0;
3255}
3256
Alan Cox6919a0a2006-10-27 19:08:46 -07003257static int ata_dma_blacklisted(const struct ata_device *dev)
3258{
3259 /* We don't support polling DMA.
3260 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3261 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3262 */
3263 if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) &&
3264 (dev->flags & ATA_DFLAG_CDB_INTR))
3265 return 1;
3266 return (ata_device_blacklisted(dev) & ATA_HORKAGE_NODMA) ? 1 : 0;
3267}
3268
Tejun Heoa6d5a512006-03-06 04:31:57 +09003269/**
3270 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003271 * @dev: Device to compute xfermask for
3272 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003273 * Compute supported xfermask of @dev and store it in
3274 * dev->*_mask. This function is responsible for applying all
3275 * known limits including host controller limits, device
3276 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003277 *
3278 * LOCKING:
3279 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003280 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003281static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282{
Tejun Heo3373efd2006-05-15 20:57:53 +09003283 struct ata_port *ap = dev->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04003284 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003285 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286
Tejun Heo37deecb2006-08-10 16:59:07 +09003287 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09003288 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3289 ap->mwdma_mask, ap->udma_mask);
3290
3291 /* Apply cable rule here. Don't apply it early because when
3292 * we handle hot plug the cable type can itself change.
3293 */
3294 if (ap->cbl == ATA_CBL_PATA40)
3295 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Alan Coxfc085152006-10-10 14:28:11 -07003296 /* Apply drive side cable rule. Unknown or 80 pin cables reported
3297 * host side are checked drive side as well. Cases where we know a
3298 * 40wire cable is used safely for 80 are not checked here.
3299 */
3300 if (ata_drive_40wire(dev->id) && (ap->cbl == ATA_CBL_PATA_UNK || ap->cbl == ATA_CBL_PATA80))
3301 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
3302
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
Tejun Heo37deecb2006-08-10 16:59:07 +09003304 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
3305 dev->mwdma_mask, dev->udma_mask);
3306 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09003307
Alan Coxb352e572006-08-10 18:52:12 +01003308 /*
3309 * CFA Advanced TrueIDE timings are not allowed on a shared
3310 * cable
3311 */
3312 if (ata_dev_pair(dev)) {
3313 /* No PIO5 or PIO6 */
3314 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
3315 /* No MWDMA3 or MWDMA 4 */
3316 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
3317 }
3318
Tejun Heo37deecb2006-08-10 16:59:07 +09003319 if (ata_dma_blacklisted(dev)) {
3320 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09003321 ata_dev_printk(dev, KERN_WARNING,
3322 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09003323 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09003324
Jeff Garzikcca39742006-08-24 03:19:22 -04003325 if ((host->flags & ATA_HOST_SIMPLEX) && host->simplex_claimed) {
Tejun Heo37deecb2006-08-10 16:59:07 +09003326 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3327 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
3328 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01003329 }
Tejun Heo565083e2006-04-02 17:54:47 +09003330
Alan Cox5444a6f2006-03-27 18:58:20 +01003331 if (ap->ops->mode_filter)
3332 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3333
Tejun Heo565083e2006-04-02 17:54:47 +09003334 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3335 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336}
3337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 * @dev: Device to which command will be sent
3341 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003342 * Issue SET FEATURES - XFER MODE command to device @dev
3343 * on port @ap.
3344 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003346 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003347 *
3348 * RETURNS:
3349 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 */
3351
Tejun Heo3373efd2006-05-15 20:57:53 +09003352static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353{
Tejun Heoa0123702005-12-13 14:49:31 +09003354 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003355 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
3357 /* set up set-features taskfile */
3358 DPRINTK("set features - xfer mode\n");
3359
Tejun Heo3373efd2006-05-15 20:57:53 +09003360 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003361 tf.command = ATA_CMD_SET_FEATURES;
3362 tf.feature = SETFEATURES_XFER;
3363 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3364 tf.protocol = ATA_PROT_NODATA;
3365 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Tejun Heo3373efd2006-05-15 20:57:53 +09003367 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Tejun Heo83206a22006-03-24 15:25:31 +09003369 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3370 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371}
3372
3373/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04003374 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ec2005-05-12 15:29:42 -04003375 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003376 * @heads: Number of heads (taskfile parameter)
3377 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003378 *
3379 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003380 * Kernel thread context (may sleep)
3381 *
3382 * RETURNS:
3383 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003384 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003385static unsigned int ata_dev_init_params(struct ata_device *dev,
3386 u16 heads, u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003387{
Tejun Heoa0123702005-12-13 14:49:31 +09003388 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003389 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003390
3391 /* Number of sectors per track 1-255. Number of heads 1-16 */
3392 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003393 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003394
3395 /* set up init dev params taskfile */
3396 DPRINTK("init dev params \n");
3397
Tejun Heo3373efd2006-05-15 20:57:53 +09003398 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003399 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3400 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3401 tf.protocol = ATA_PROT_NODATA;
3402 tf.nsect = sectors;
3403 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003404
Tejun Heo3373efd2006-05-15 20:57:53 +09003405 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003406
Tejun Heo6aff8f12006-02-15 18:24:09 +09003407 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3408 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003409}
3410
3411/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003412 * ata_sg_clean - Unmap DMA memory associated with command
3413 * @qc: Command containing DMA memory to be released
3414 *
3415 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 *
3417 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003418 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09003420void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421{
3422 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003423 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003425 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
Tejun Heoa4631472006-02-11 19:11:13 +09003427 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3428 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
3430 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003431 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003433 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003435 /* if we padded the buffer out to 32-bit bound, and data
3436 * xfer direction is from-device, we must copy from the
3437 * pad buffer back into the supplied buffer
3438 */
3439 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3440 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3441
3442 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003443 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003444 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003445 /* restore last sg */
3446 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3447 if (pad_buf) {
3448 struct scatterlist *psg = &qc->pad_sgent;
3449 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3450 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003451 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003452 }
3453 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003454 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003455 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003456 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3457 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003458 /* restore sg */
3459 sg->length += qc->pad_len;
3460 if (pad_buf)
3461 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3462 pad_buf, qc->pad_len);
3463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003466 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467}
3468
3469/**
3470 * ata_fill_sg - Fill PCI IDE PRD table
3471 * @qc: Metadata associated with taskfile to be transferred
3472 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003473 * Fill PCI IDE PRD (scatter-gather) table with segments
3474 * associated with the current disk command.
3475 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003477 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 *
3479 */
3480static void ata_fill_sg(struct ata_queued_cmd *qc)
3481{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003483 struct scatterlist *sg;
3484 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Tejun Heoa4631472006-02-11 19:11:13 +09003486 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003487 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
3489 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003490 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 u32 addr, offset;
3492 u32 sg_len, len;
3493
3494 /* determine if physical DMA addr spans 64K boundary.
3495 * Note h/w doesn't support 64-bit, so we unconditionally
3496 * truncate dma_addr_t to u32.
3497 */
3498 addr = (u32) sg_dma_address(sg);
3499 sg_len = sg_dma_len(sg);
3500
3501 while (sg_len) {
3502 offset = addr & 0xffff;
3503 len = sg_len;
3504 if ((offset + sg_len) > 0x10000)
3505 len = 0x10000 - offset;
3506
3507 ap->prd[idx].addr = cpu_to_le32(addr);
3508 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3509 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3510
3511 idx++;
3512 sg_len -= len;
3513 addr += len;
3514 }
3515 }
3516
3517 if (idx)
3518 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3519}
3520/**
3521 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3522 * @qc: Metadata associated with taskfile to check
3523 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003524 * Allow low-level driver to filter ATA PACKET commands, returning
3525 * a status indicating whether or not it is OK to use DMA for the
3526 * supplied PACKET command.
3527 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003529 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04003530 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 * RETURNS: 0 when ATAPI DMA can be used
3532 * nonzero otherwise
3533 */
3534int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3535{
3536 struct ata_port *ap = qc->ap;
3537 int rc = 0; /* Assume ATAPI DMA is OK by default */
3538
3539 if (ap->ops->check_atapi_dma)
3540 rc = ap->ops->check_atapi_dma(qc);
3541
3542 return rc;
3543}
3544/**
3545 * ata_qc_prep - Prepare taskfile for submission
3546 * @qc: Metadata associated with taskfile to be prepared
3547 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003548 * Prepare ATA taskfile for submission.
3549 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003551 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 */
3553void ata_qc_prep(struct ata_queued_cmd *qc)
3554{
3555 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3556 return;
3557
3558 ata_fill_sg(qc);
3559}
3560
Brian Kinge46834c2006-03-17 17:04:03 -06003561void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3562
Jeff Garzik0cba6322005-05-30 19:49:12 -04003563/**
3564 * ata_sg_init_one - Associate command with memory buffer
3565 * @qc: Command to be associated
3566 * @buf: Memory buffer
3567 * @buflen: Length of memory buffer, in bytes.
3568 *
3569 * Initialize the data-related elements of queued_cmd @qc
3570 * to point to a single memory buffer, @buf of byte length @buflen.
3571 *
3572 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003573 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04003574 */
3575
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3577{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 qc->flags |= ATA_QCFLAG_SINGLE;
3579
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003580 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003582 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05003584 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
Tejun Heo61c05962006-11-14 22:35:43 +09003586 sg_init_one(&qc->sgent, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587}
3588
Jeff Garzik0cba6322005-05-30 19:49:12 -04003589/**
3590 * ata_sg_init - Associate command with scatter-gather table.
3591 * @qc: Command to be associated
3592 * @sg: Scatter-gather table.
3593 * @n_elem: Number of elements in s/g table.
3594 *
3595 * Initialize the data-related elements of queued_cmd @qc
3596 * to point to a scatter-gather table @sg, containing @n_elem
3597 * elements.
3598 *
3599 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003600 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04003601 */
3602
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3604 unsigned int n_elem)
3605{
3606 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003607 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003609 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610}
3611
3612/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003613 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3614 * @qc: Command with memory buffer to be mapped.
3615 *
3616 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 *
3618 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003619 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 *
3621 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003622 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 */
3624
3625static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3626{
3627 struct ata_port *ap = qc->ap;
3628 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003629 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003631 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003633 /* we must lengthen transfers to end on a 32-bit boundary */
3634 qc->pad_len = sg->length & 3;
3635 if (qc->pad_len) {
3636 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3637 struct scatterlist *psg = &qc->pad_sgent;
3638
Tejun Heoa4631472006-02-11 19:11:13 +09003639 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003640
3641 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3642
3643 if (qc->tf.flags & ATA_TFLAG_WRITE)
3644 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3645 qc->pad_len);
3646
3647 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3648 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3649 /* trim sg */
3650 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003651 if (sg->length == 0)
3652 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003653
3654 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3655 sg->length, qc->pad_len);
3656 }
3657
Tejun Heo2e242fa2006-02-20 23:48:38 +09003658 if (trim_sg) {
3659 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003660 goto skip_map;
3661 }
3662
Brian King2f1f6102006-03-23 17:30:15 -06003663 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003664 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003665 if (dma_mapping_error(dma_address)) {
3666 /* restore sg */
3667 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
3671 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003672 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Tejun Heo2e242fa2006-02-20 23:48:38 +09003674skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3676 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3677
3678 return 0;
3679}
3680
3681/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003682 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3683 * @qc: Command with scatter-gather table to be mapped.
3684 *
3685 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 *
3687 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003688 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 *
3690 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003691 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 *
3693 */
3694
3695static int ata_sg_setup(struct ata_queued_cmd *qc)
3696{
3697 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003698 struct scatterlist *sg = qc->__sg;
3699 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003700 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
3702 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003703 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003705 /* we must lengthen transfers to end on a 32-bit boundary */
3706 qc->pad_len = lsg->length & 3;
3707 if (qc->pad_len) {
3708 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3709 struct scatterlist *psg = &qc->pad_sgent;
3710 unsigned int offset;
3711
Tejun Heoa4631472006-02-11 19:11:13 +09003712 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003713
3714 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3715
3716 /*
3717 * psg->page/offset are used to copy to-be-written
3718 * data in this function or read data in ata_sg_clean.
3719 */
3720 offset = lsg->offset + lsg->length - qc->pad_len;
3721 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3722 psg->offset = offset_in_page(offset);
3723
3724 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3725 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3726 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003727 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003728 }
3729
3730 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3731 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3732 /* trim last sg */
3733 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003734 if (lsg->length == 0)
3735 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003736
3737 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3738 qc->n_elem - 1, lsg->length, qc->pad_len);
3739 }
3740
Jeff Garzike1410f22005-11-14 14:06:26 -05003741 pre_n_elem = qc->n_elem;
3742 if (trim_sg && pre_n_elem)
3743 pre_n_elem--;
3744
3745 if (!pre_n_elem) {
3746 n_elem = 0;
3747 goto skip_map;
3748 }
3749
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003751 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003752 if (n_elem < 1) {
3753 /* restore last sg */
3754 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
3758 DPRINTK("%d sg elements mapped\n", n_elem);
3759
Jeff Garzike1410f22005-11-14 14:06:26 -05003760skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 qc->n_elem = n_elem;
3762
3763 return 0;
3764}
3765
3766/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003767 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003768 * @buf: Buffer to swap
3769 * @buf_words: Number of 16-bit words in buffer.
3770 *
3771 * Swap halves of 16-bit words if needed to convert from
3772 * little-endian byte order to native cpu byte order, or
3773 * vice-versa.
3774 *
3775 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003776 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003777 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778void swap_buf_le16(u16 *buf, unsigned int buf_words)
3779{
3780#ifdef __BIG_ENDIAN
3781 unsigned int i;
3782
3783 for (i = 0; i < buf_words; i++)
3784 buf[i] = le16_to_cpu(buf[i]);
3785#endif /* __BIG_ENDIAN */
3786}
3787
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003788/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09003789 * ata_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003790 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003791 * @buf: data buffer
3792 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003793 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003794 *
3795 * Transfer data from/to the device data register by PIO.
3796 *
3797 * LOCKING:
3798 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003799 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003800void ata_data_xfer(struct ata_device *adev, unsigned char *buf,
3801 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003803 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003804 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003806 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 if (write_data)
Tejun Heo0d5ff562007-02-01 15:06:36 +09003808 iowrite16_rep(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 else
Tejun Heo0d5ff562007-02-01 15:06:36 +09003810 ioread16_rep(ap->ioaddr.data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003811
3812 /* Transfer trailing 1 byte, if any. */
3813 if (unlikely(buflen & 0x01)) {
3814 u16 align_buf[1] = { 0 };
3815 unsigned char *trailing_buf = buf + buflen - 1;
3816
3817 if (write_data) {
3818 memcpy(align_buf, trailing_buf, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003819 iowrite16(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003820 } else {
Tejun Heo0d5ff562007-02-01 15:06:36 +09003821 align_buf[0] = cpu_to_le16(ioread16(ap->ioaddr.data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003822 memcpy(trailing_buf, align_buf, 1);
3823 }
3824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825}
3826
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003827/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09003828 * ata_data_xfer_noirq - Transfer data by PIO
Alan Cox75e99582006-05-24 14:14:41 +01003829 * @adev: device to target
3830 * @buf: data buffer
3831 * @buflen: buffer length
3832 * @write_data: read/write
3833 *
Tejun Heo88574552006-06-25 20:00:35 +09003834 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01003835 * transfer with interrupts disabled.
3836 *
3837 * LOCKING:
3838 * Inherited from caller.
3839 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003840void ata_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
3841 unsigned int buflen, int write_data)
Alan Cox75e99582006-05-24 14:14:41 +01003842{
3843 unsigned long flags;
3844 local_irq_save(flags);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003845 ata_data_xfer(adev, buf, buflen, write_data);
Alan Cox75e99582006-05-24 14:14:41 +01003846 local_irq_restore(flags);
3847}
3848
3849
3850/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003851 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3852 * @qc: Command on going
3853 *
3854 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3855 *
3856 * LOCKING:
3857 * Inherited from caller.
3858 */
3859
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860static void ata_pio_sector(struct ata_queued_cmd *qc)
3861{
3862 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003863 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 struct ata_port *ap = qc->ap;
3865 struct page *page;
3866 unsigned int offset;
3867 unsigned char *buf;
3868
Tejun Heo726f0782007-01-03 17:30:39 +09003869 if (qc->curbytes == qc->nbytes - ATA_SECT_SIZE)
Albert Lee14be71f2005-09-27 17:36:35 +08003870 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
3872 page = sg[qc->cursg].page;
Tejun Heo726f0782007-01-03 17:30:39 +09003873 offset = sg[qc->cursg].offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
3875 /* get the current page and offset */
3876 page = nth_page(page, (offset >> PAGE_SHIFT));
3877 offset %= PAGE_SIZE;
3878
Albert Lee7282aa42005-10-09 09:46:07 -04003879 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3880
Albert Lee91b8b312005-10-09 09:48:44 -04003881 if (PageHighMem(page)) {
3882 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04003883
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003884 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04003885 local_irq_save(flags);
3886 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04003887
Albert Lee91b8b312005-10-09 09:48:44 -04003888 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003889 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003890
3891 kunmap_atomic(buf, KM_IRQ0);
3892 local_irq_restore(flags);
3893 } else {
3894 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003895 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04003896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
Tejun Heo726f0782007-01-03 17:30:39 +09003898 qc->curbytes += ATA_SECT_SIZE;
3899 qc->cursg_ofs += ATA_SECT_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
Tejun Heo726f0782007-01-03 17:30:39 +09003901 if (qc->cursg_ofs == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 qc->cursg++;
3903 qc->cursg_ofs = 0;
3904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003907/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08003908 * ata_pio_sectors - Transfer one or many 512-byte sectors.
3909 * @qc: Command on going
3910 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04003911 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08003912 * ATA device for the DRQ request.
3913 *
3914 * LOCKING:
3915 * Inherited from caller.
3916 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Albert Lee07f6f7d2005-11-01 19:33:20 +08003918static void ata_pio_sectors(struct ata_queued_cmd *qc)
3919{
3920 if (is_multi_taskfile(&qc->tf)) {
3921 /* READ/WRITE MULTIPLE */
3922 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Jeff Garzik587005d2006-02-11 18:17:32 -05003924 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003925
Tejun Heo726f0782007-01-03 17:30:39 +09003926 nsect = min((qc->nbytes - qc->curbytes) / ATA_SECT_SIZE,
3927 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08003928 while (nsect--)
3929 ata_pio_sector(qc);
3930 } else
3931 ata_pio_sector(qc);
3932}
3933
3934/**
Albert Leec71c1852005-10-04 06:03:45 -04003935 * atapi_send_cdb - Write CDB bytes to hardware
3936 * @ap: Port to which ATAPI device is attached.
3937 * @qc: Taskfile currently active
3938 *
3939 * When device has indicated its readiness to accept
3940 * a CDB, this function is called. Send the CDB.
3941 *
3942 * LOCKING:
3943 * caller.
3944 */
3945
3946static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
3947{
3948 /* send SCSI cdb */
3949 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05003950 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04003951
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003952 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04003953 ata_altstatus(ap); /* flush */
3954
3955 switch (qc->tf.protocol) {
3956 case ATA_PROT_ATAPI:
3957 ap->hsm_task_state = HSM_ST;
3958 break;
3959 case ATA_PROT_ATAPI_NODATA:
3960 ap->hsm_task_state = HSM_ST_LAST;
3961 break;
3962 case ATA_PROT_ATAPI_DMA:
3963 ap->hsm_task_state = HSM_ST_LAST;
3964 /* initiate bmdma */
3965 ap->ops->bmdma_start(qc);
3966 break;
3967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968}
3969
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003970/**
3971 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
3972 * @qc: Command on going
3973 * @bytes: number of bytes
3974 *
3975 * Transfer Transfer data from/to the ATAPI device.
3976 *
3977 * LOCKING:
3978 * Inherited from caller.
3979 *
3980 */
3981
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
3983{
3984 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003985 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 struct ata_port *ap = qc->ap;
3987 struct page *page;
3988 unsigned char *buf;
3989 unsigned int offset, count;
3990
Albert Lee563a6e12005-08-12 14:17:50 +08003991 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08003992 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
3994next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08003995 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04003996 /*
Albert Lee563a6e12005-08-12 14:17:50 +08003997 * The end of qc->sg is reached and the device expects
3998 * more data to transfer. In order not to overrun qc->sg
3999 * and fulfill length specified in the byte count register,
4000 * - for read case, discard trailing data from the device
4001 * - for write case, padding zero data to the device
4002 */
4003 u16 pad_buf[1] = { 0 };
4004 unsigned int words = bytes >> 1;
4005 unsigned int i;
4006
4007 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09004008 ata_dev_printk(qc->dev, KERN_WARNING,
4009 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08004010
4011 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004012 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08004013
Albert Lee14be71f2005-09-27 17:36:35 +08004014 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08004015 return;
4016 }
4017
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004018 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 page = sg->page;
4021 offset = sg->offset + qc->cursg_ofs;
4022
4023 /* get the current page and offset */
4024 page = nth_page(page, (offset >> PAGE_SHIFT));
4025 offset %= PAGE_SIZE;
4026
Albert Lee6952df02005-06-06 15:56:03 +08004027 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04004028 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
4030 /* don't cross page boundaries */
4031 count = min(count, (unsigned int)PAGE_SIZE - offset);
4032
Albert Lee7282aa42005-10-09 09:46:07 -04004033 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4034
Albert Lee91b8b312005-10-09 09:48:44 -04004035 if (PageHighMem(page)) {
4036 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004037
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004038 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004039 local_irq_save(flags);
4040 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004041
Albert Lee91b8b312005-10-09 09:48:44 -04004042 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004043 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004044
4045 kunmap_atomic(buf, KM_IRQ0);
4046 local_irq_restore(flags);
4047 } else {
4048 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004049 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
4052 bytes -= count;
4053 qc->curbytes += count;
4054 qc->cursg_ofs += count;
4055
Albert Lee32529e02005-05-26 03:49:42 -04004056 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 qc->cursg++;
4058 qc->cursg_ofs = 0;
4059 }
4060
Albert Lee563a6e12005-08-12 14:17:50 +08004061 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063}
4064
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004065/**
4066 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
4067 * @qc: Command on going
4068 *
4069 * Transfer Transfer data from/to the ATAPI device.
4070 *
4071 * LOCKING:
4072 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004073 */
4074
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075static void atapi_pio_bytes(struct ata_queued_cmd *qc)
4076{
4077 struct ata_port *ap = qc->ap;
4078 struct ata_device *dev = qc->dev;
4079 unsigned int ireason, bc_lo, bc_hi, bytes;
4080 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
4081
Albert Leeeec4c3f2006-05-18 17:51:10 +08004082 /* Abuse qc->result_tf for temp storage of intermediate TF
4083 * here to save some kernel stack usage.
4084 * For normal completion, qc->result_tf is not relevant. For
4085 * error, qc->result_tf is later overwritten by ata_qc_complete().
4086 * So, the correctness of qc->result_tf is not affected.
4087 */
4088 ap->ops->tf_read(ap, &qc->result_tf);
4089 ireason = qc->result_tf.nsect;
4090 bc_lo = qc->result_tf.lbam;
4091 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 bytes = (bc_hi << 8) | bc_lo;
4093
4094 /* shall be cleared to zero, indicating xfer of data */
4095 if (ireason & (1 << 0))
4096 goto err_out;
4097
4098 /* make sure transfer direction matches expected */
4099 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
4100 if (do_write != i_write)
4101 goto err_out;
4102
Albert Lee312f7da2005-09-27 17:38:03 +08004103 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
4104
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 __atapi_pio_bytes(qc, bytes);
4106
4107 return;
4108
4109err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09004110 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09004111 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08004112 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113}
4114
4115/**
Albert Leec234fb02006-03-25 17:58:38 +08004116 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
4117 * @ap: the target ata_port
4118 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 *
Albert Leec234fb02006-03-25 17:58:38 +08004120 * RETURNS:
4121 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 */
Albert Leec234fb02006-03-25 17:58:38 +08004123
4124static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125{
Albert Leec234fb02006-03-25 17:58:38 +08004126 if (qc->tf.flags & ATA_TFLAG_POLLING)
4127 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
Albert Leec234fb02006-03-25 17:58:38 +08004129 if (ap->hsm_task_state == HSM_ST_FIRST) {
4130 if (qc->tf.protocol == ATA_PROT_PIO &&
4131 (qc->tf.flags & ATA_TFLAG_WRITE))
4132 return 1;
4133
4134 if (is_atapi_taskfile(&qc->tf) &&
4135 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
4136 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 }
4138
Albert Leec234fb02006-03-25 17:58:38 +08004139 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140}
4141
Albert Leec234fb02006-03-25 17:58:38 +08004142/**
Tejun Heoc17ea202006-05-15 20:59:29 +09004143 * ata_hsm_qc_complete - finish a qc running on standard HSM
4144 * @qc: Command to complete
4145 * @in_wq: 1 if called from workqueue, 0 otherwise
4146 *
4147 * Finish @qc which is running on standard HSM.
4148 *
4149 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004150 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09004151 * Otherwise, none on entry and grabs host lock.
4152 */
4153static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
4154{
4155 struct ata_port *ap = qc->ap;
4156 unsigned long flags;
4157
4158 if (ap->ops->error_handler) {
4159 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004160 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004161
Jeff Garzikcca39742006-08-24 03:19:22 -04004162 /* EH might have kicked in while host lock is
4163 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09004164 */
4165 qc = ata_qc_from_tag(ap, qc->tag);
4166 if (qc) {
4167 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi83625002007-01-26 16:27:32 +09004168 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004169 ata_qc_complete(qc);
4170 } else
4171 ata_port_freeze(ap);
4172 }
4173
Jeff Garzikba6a1302006-06-22 23:46:10 -04004174 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004175 } else {
4176 if (likely(!(qc->err_mask & AC_ERR_HSM)))
4177 ata_qc_complete(qc);
4178 else
4179 ata_port_freeze(ap);
4180 }
4181 } else {
4182 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004183 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi83625002007-01-26 16:27:32 +09004184 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004185 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04004186 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004187 } else
4188 ata_qc_complete(qc);
4189 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04004190
4191 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09004192}
4193
4194/**
Albert Leebb5cb292006-03-25 17:48:02 +08004195 * ata_hsm_move - move the HSM to the next state.
4196 * @ap: the target ata_port
4197 * @qc: qc on going
4198 * @status: current device status
4199 * @in_wq: 1 if called from workqueue, 0 otherwise
4200 *
4201 * RETURNS:
4202 * 1 when poll next status needed, 0 otherwise.
4203 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004204int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4205 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206{
Albert Leebb5cb292006-03-25 17:48:02 +08004207 unsigned long flags = 0;
4208 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Albert Lee6912ccd2006-03-25 17:45:49 +08004210 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004211
Albert Leebb5cb292006-03-25 17:48:02 +08004212 /* Make sure ata_qc_issue_prot() does not throw things
4213 * like DMA polling into the workqueue. Notice that
4214 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004215 */
Albert Leec234fb02006-03-25 17:58:38 +08004216 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004217
Albert Leee2cec772006-03-25 17:43:49 +08004218fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004219 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
4220 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Albert Leee2cec772006-03-25 17:43:49 +08004222 switch (ap->hsm_task_state) {
4223 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004224 /* Send first data block or PACKET CDB */
4225
4226 /* If polling, we will stay in the work queue after
4227 * sending the data. Otherwise, interrupt handler
4228 * takes over after sending the data.
4229 */
4230 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4231
Albert Leee2cec772006-03-25 17:43:49 +08004232 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004233 if (unlikely((status & ATA_DRQ) == 0)) {
4234 /* handle BSY=0, DRQ=0 as error */
4235 if (likely(status & (ATA_ERR | ATA_DF)))
4236 /* device stops HSM for abort/error */
4237 qc->err_mask |= AC_ERR_DEV;
4238 else
4239 /* HSM violation. Let EH handle this */
4240 qc->err_mask |= AC_ERR_HSM;
4241
Albert Leee2cec772006-03-25 17:43:49 +08004242 ap->hsm_task_state = HSM_ST_ERR;
4243 goto fsm_start;
4244 }
4245
Albert Lee71601952006-03-25 18:11:12 +08004246 /* Device should not ask for data transfer (DRQ=1)
4247 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004248 * We ignore DRQ here and stop the HSM by
4249 * changing hsm_task_state to HSM_ST_ERR and
4250 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004251 */
4252 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4253 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4254 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004255 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004256 ap->hsm_task_state = HSM_ST_ERR;
4257 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004258 }
4259
Albert Leebb5cb292006-03-25 17:48:02 +08004260 /* Send the CDB (atapi) or the first data block (ata pio out).
4261 * During the state transition, interrupt handler shouldn't
4262 * be invoked before the data transfer is complete and
4263 * hsm_task_state is changed. Hence, the following locking.
4264 */
4265 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004266 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004267
Albert Leebb5cb292006-03-25 17:48:02 +08004268 if (qc->tf.protocol == ATA_PROT_PIO) {
4269 /* PIO data out protocol.
4270 * send first data block.
4271 */
4272
4273 /* ata_pio_sectors() might change the state
4274 * to HSM_ST_LAST. so, the state is changed here
4275 * before ata_pio_sectors().
4276 */
4277 ap->hsm_task_state = HSM_ST;
4278 ata_pio_sectors(qc);
4279 ata_altstatus(ap); /* flush */
4280 } else
4281 /* send CDB */
4282 atapi_send_cdb(ap, qc);
4283
4284 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004285 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004286
4287 /* if polling, ata_pio_task() handles the rest.
4288 * otherwise, interrupt handler takes over from here.
4289 */
Albert Leee2cec772006-03-25 17:43:49 +08004290 break;
4291
4292 case HSM_ST:
4293 /* complete command or read/write the data register */
4294 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4295 /* ATAPI PIO protocol */
4296 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004297 /* No more data to transfer or device error.
4298 * Device error will be tagged in HSM_ST_LAST.
4299 */
Albert Leee2cec772006-03-25 17:43:49 +08004300 ap->hsm_task_state = HSM_ST_LAST;
4301 goto fsm_start;
4302 }
4303
Albert Lee71601952006-03-25 18:11:12 +08004304 /* Device should not ask for data transfer (DRQ=1)
4305 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004306 * We ignore DRQ here and stop the HSM by
4307 * changing hsm_task_state to HSM_ST_ERR and
4308 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004309 */
4310 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4311 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4312 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004313 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004314 ap->hsm_task_state = HSM_ST_ERR;
4315 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004316 }
4317
Albert Leee2cec772006-03-25 17:43:49 +08004318 atapi_pio_bytes(qc);
4319
4320 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4321 /* bad ireason reported by device */
4322 goto fsm_start;
4323
4324 } else {
4325 /* ATA PIO protocol */
4326 if (unlikely((status & ATA_DRQ) == 0)) {
4327 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004328 if (likely(status & (ATA_ERR | ATA_DF)))
4329 /* device stops HSM for abort/error */
4330 qc->err_mask |= AC_ERR_DEV;
4331 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09004332 /* HSM violation. Let EH handle this.
4333 * Phantom devices also trigger this
4334 * condition. Mark hint.
4335 */
4336 qc->err_mask |= AC_ERR_HSM |
4337 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08004338
Albert Leee2cec772006-03-25 17:43:49 +08004339 ap->hsm_task_state = HSM_ST_ERR;
4340 goto fsm_start;
4341 }
4342
Albert Leeeee6c322006-04-01 17:38:43 +08004343 /* For PIO reads, some devices may ask for
4344 * data transfer (DRQ=1) alone with ERR=1.
4345 * We respect DRQ here and transfer one
4346 * block of junk data before changing the
4347 * hsm_task_state to HSM_ST_ERR.
4348 *
4349 * For PIO writes, ERR=1 DRQ=1 doesn't make
4350 * sense since the data block has been
4351 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004352 */
4353 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004354 /* data might be corrputed */
4355 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004356
4357 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4358 ata_pio_sectors(qc);
4359 ata_altstatus(ap);
4360 status = ata_wait_idle(ap);
4361 }
4362
Albert Lee3655d1d2006-05-19 11:43:04 +08004363 if (status & (ATA_BUSY | ATA_DRQ))
4364 qc->err_mask |= AC_ERR_HSM;
4365
Albert Leeeee6c322006-04-01 17:38:43 +08004366 /* ata_pio_sectors() might change the
4367 * state to HSM_ST_LAST. so, the state
4368 * is changed after ata_pio_sectors().
4369 */
4370 ap->hsm_task_state = HSM_ST_ERR;
4371 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004372 }
4373
Albert Leee2cec772006-03-25 17:43:49 +08004374 ata_pio_sectors(qc);
4375
4376 if (ap->hsm_task_state == HSM_ST_LAST &&
4377 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4378 /* all data read */
4379 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004380 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004381 goto fsm_start;
4382 }
4383 }
4384
4385 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004386 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004387 break;
4388
4389 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004390 if (unlikely(!ata_ok(status))) {
4391 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004392 ap->hsm_task_state = HSM_ST_ERR;
4393 goto fsm_start;
4394 }
4395
4396 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004397 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4398 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004399
Albert Lee6912ccd2006-03-25 17:45:49 +08004400 WARN_ON(qc->err_mask);
4401
Albert Leee2cec772006-03-25 17:43:49 +08004402 ap->hsm_task_state = HSM_ST_IDLE;
4403
4404 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004405 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004406
4407 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004408 break;
4409
4410 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004411 /* make sure qc->err_mask is available to
4412 * know what's wrong and recover
4413 */
4414 WARN_ON(qc->err_mask == 0);
4415
4416 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004417
Albert Lee999bb6f2006-03-25 18:07:48 +08004418 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004419 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004420
4421 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004422 break;
4423 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004424 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004425 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004426 }
4427
Albert Leebb5cb292006-03-25 17:48:02 +08004428 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429}
4430
David Howells65f27f32006-11-22 14:55:48 +00004431static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432{
David Howells65f27f32006-11-22 14:55:48 +00004433 struct ata_port *ap =
4434 container_of(work, struct ata_port, port_task.work);
4435 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08004436 u8 status;
4437 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004438
4439fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004440 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
Albert Leea1af3732006-03-25 17:50:15 +08004442 /*
4443 * This is purely heuristic. This is a fast path.
4444 * Sometimes when we enter, BSY will be cleared in
4445 * a chk-status or two. If not, the drive is probably seeking
4446 * or something. Snooze for a couple msecs, then
4447 * chk-status again. If still busy, queue delayed work.
4448 */
4449 status = ata_busy_wait(ap, ATA_BUSY, 5);
4450 if (status & ATA_BUSY) {
4451 msleep(2);
4452 status = ata_busy_wait(ap, ATA_BUSY, 10);
4453 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004454 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004455 return;
4456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 }
4458
Albert Leea1af3732006-03-25 17:50:15 +08004459 /* move the HSM */
4460 poll_next = ata_hsm_move(ap, qc, status, 1);
4461
4462 /* another command or interrupt handler
4463 * may be running at this point.
4464 */
4465 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004466 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467}
4468
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 * ata_qc_new - Request an available ATA command, for queueing
4471 * @ap: Port associated with device @dev
4472 * @dev: Device from whom we request an available command structure
4473 *
4474 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004475 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 */
4477
4478static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4479{
4480 struct ata_queued_cmd *qc = NULL;
4481 unsigned int i;
4482
Tejun Heoe3180492006-05-15 20:58:09 +09004483 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09004484 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09004485 return NULL;
4486
Tejun Heo2ab7db12006-05-15 20:58:02 +09004487 /* the last tag is reserved for internal command. */
4488 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004489 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004490 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 break;
4492 }
4493
4494 if (qc)
4495 qc->tag = i;
4496
4497 return qc;
4498}
4499
4500/**
4501 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 * @dev: Device from whom we request an available command structure
4503 *
4504 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004505 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 */
4507
Tejun Heo3373efd2006-05-15 20:57:53 +09004508struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509{
Tejun Heo3373efd2006-05-15 20:57:53 +09004510 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 struct ata_queued_cmd *qc;
4512
4513 qc = ata_qc_new(ap);
4514 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 qc->scsicmd = NULL;
4516 qc->ap = ap;
4517 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004519 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 }
4521
4522 return qc;
4523}
4524
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525/**
4526 * ata_qc_free - free unused ata_queued_cmd
4527 * @qc: Command to complete
4528 *
4529 * Designed to free unused ata_queued_cmd object
4530 * in case something prevents using it.
4531 *
4532 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004533 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 */
4535void ata_qc_free(struct ata_queued_cmd *qc)
4536{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004537 struct ata_port *ap = qc->ap;
4538 unsigned int tag;
4539
Tejun Heoa4631472006-02-11 19:11:13 +09004540 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
Tejun Heo4ba946e2006-01-23 13:09:36 +09004542 qc->flags = 0;
4543 tag = qc->tag;
4544 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004545 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004546 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548}
4549
Tejun Heo76014422006-02-11 15:13:49 +09004550void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004552 struct ata_port *ap = qc->ap;
4553
Tejun Heoa4631472006-02-11 19:11:13 +09004554 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4555 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
4557 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4558 ata_sg_clean(qc);
4559
Tejun Heo7401abf2006-05-15 20:57:32 +09004560 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004561 if (qc->tf.protocol == ATA_PROT_NCQ)
4562 ap->sactive &= ~(1 << qc->tag);
4563 else
4564 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004565
Albert Lee3f3791d2005-08-16 14:25:38 +08004566 /* atapi: mark qc as inactive to prevent the interrupt handler
4567 * from completing the command twice later, before the error handler
4568 * is called. (when rc != 0 and atapi request sense is needed)
4569 */
4570 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004571 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004572
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004574 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575}
4576
Tejun Heo39599a52006-11-14 22:37:35 +09004577static void fill_result_tf(struct ata_queued_cmd *qc)
4578{
4579 struct ata_port *ap = qc->ap;
4580
4581 ap->ops->tf_read(ap, &qc->result_tf);
4582 qc->result_tf.flags = qc->tf.flags;
4583}
4584
Tejun Heof686bcb2006-05-15 20:58:05 +09004585/**
4586 * ata_qc_complete - Complete an active ATA command
4587 * @qc: Command to complete
4588 * @err_mask: ATA Status register contents
4589 *
4590 * Indicate to the mid and upper layers that an ATA
4591 * command has completed, with either an ok or not-ok status.
4592 *
4593 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004594 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09004595 */
4596void ata_qc_complete(struct ata_queued_cmd *qc)
4597{
4598 struct ata_port *ap = qc->ap;
4599
4600 /* XXX: New EH and old EH use different mechanisms to
4601 * synchronize EH with regular execution path.
4602 *
4603 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4604 * Normal execution path is responsible for not accessing a
4605 * failed qc. libata core enforces the rule by returning NULL
4606 * from ata_qc_from_tag() for failed qcs.
4607 *
4608 * Old EH depends on ata_qc_complete() nullifying completion
4609 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4610 * not synchronize with interrupt handler. Only PIO task is
4611 * taken care of.
4612 */
4613 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09004614 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09004615
4616 if (unlikely(qc->err_mask))
4617 qc->flags |= ATA_QCFLAG_FAILED;
4618
4619 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4620 if (!ata_tag_internal(qc->tag)) {
4621 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09004622 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004623 ata_qc_schedule_eh(qc);
4624 return;
4625 }
4626 }
4627
4628 /* read result TF if requested */
4629 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004630 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004631
4632 __ata_qc_complete(qc);
4633 } else {
4634 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4635 return;
4636
4637 /* read result TF if failed or requested */
4638 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004639 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004640
4641 __ata_qc_complete(qc);
4642 }
4643}
4644
Tejun Heodedaf2b2006-05-15 21:03:43 +09004645/**
4646 * ata_qc_complete_multiple - Complete multiple qcs successfully
4647 * @ap: port in question
4648 * @qc_active: new qc_active mask
4649 * @finish_qc: LLDD callback invoked before completing a qc
4650 *
4651 * Complete in-flight commands. This functions is meant to be
4652 * called from low-level driver's interrupt routine to complete
4653 * requests normally. ap->qc_active and @qc_active is compared
4654 * and commands are completed accordingly.
4655 *
4656 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004657 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004658 *
4659 * RETURNS:
4660 * Number of completed commands on success, -errno otherwise.
4661 */
4662int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4663 void (*finish_qc)(struct ata_queued_cmd *))
4664{
4665 int nr_done = 0;
4666 u32 done_mask;
4667 int i;
4668
4669 done_mask = ap->qc_active ^ qc_active;
4670
4671 if (unlikely(done_mask & qc_active)) {
4672 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4673 "(%08x->%08x)\n", ap->qc_active, qc_active);
4674 return -EINVAL;
4675 }
4676
4677 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4678 struct ata_queued_cmd *qc;
4679
4680 if (!(done_mask & (1 << i)))
4681 continue;
4682
4683 if ((qc = ata_qc_from_tag(ap, i))) {
4684 if (finish_qc)
4685 finish_qc(qc);
4686 ata_qc_complete(qc);
4687 nr_done++;
4688 }
4689 }
4690
4691 return nr_done;
4692}
4693
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4695{
4696 struct ata_port *ap = qc->ap;
4697
4698 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004699 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 case ATA_PROT_DMA:
4701 case ATA_PROT_ATAPI_DMA:
4702 return 1;
4703
4704 case ATA_PROT_ATAPI:
4705 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 if (ap->flags & ATA_FLAG_PIO_DMA)
4707 return 1;
4708
4709 /* fall through */
4710
4711 default:
4712 return 0;
4713 }
4714
4715 /* never reached */
4716}
4717
4718/**
4719 * ata_qc_issue - issue taskfile to device
4720 * @qc: command to issue to device
4721 *
4722 * Prepare an ATA command to submission to device.
4723 * This includes mapping the data into a DMA-able
4724 * area, filling in the S/G table, and finally
4725 * writing the taskfile to hardware, starting the command.
4726 *
4727 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004728 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004730void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731{
4732 struct ata_port *ap = qc->ap;
4733
Tejun Heodedaf2b2006-05-15 21:03:43 +09004734 /* Make sure only one non-NCQ command is outstanding. The
4735 * check is skipped for old EH because it reuses active qc to
4736 * request ATAPI sense.
4737 */
4738 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4739
4740 if (qc->tf.protocol == ATA_PROT_NCQ) {
4741 WARN_ON(ap->sactive & (1 << qc->tag));
4742 ap->sactive |= 1 << qc->tag;
4743 } else {
4744 WARN_ON(ap->sactive);
4745 ap->active_tag = qc->tag;
4746 }
4747
Tejun Heoe4a70e72006-03-31 20:36:47 +09004748 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004749 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004750
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 if (ata_should_dma_map(qc)) {
4752 if (qc->flags & ATA_QCFLAG_SG) {
4753 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004754 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4756 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004757 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 }
4759 } else {
4760 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4761 }
4762
4763 ap->ops->qc_prep(qc);
4764
Tejun Heo8e0e6942006-03-31 20:41:11 +09004765 qc->err_mask |= ap->ops->qc_issue(qc);
4766 if (unlikely(qc->err_mask))
4767 goto err;
4768 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
Tejun Heo8e436af2006-01-23 13:09:36 +09004770sg_err:
4771 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004772 qc->err_mask |= AC_ERR_SYSTEM;
4773err:
4774 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775}
4776
4777/**
4778 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4779 * @qc: command to issue to device
4780 *
4781 * Using various libata functions and hooks, this function
4782 * starts an ATA command. ATA commands are grouped into
4783 * classes called "protocols", and issuing each type of protocol
4784 * is slightly different.
4785 *
Edward Falk0baab862005-06-02 18:17:13 -04004786 * May be used as the qc_issue() entry in ata_port_operations.
4787 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004789 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790 *
4791 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004792 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 */
4794
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004795unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796{
4797 struct ata_port *ap = qc->ap;
4798
Albert Leee50362e2005-09-27 17:39:50 +08004799 /* Use polling pio if the LLD doesn't handle
4800 * interrupt driven pio and atapi CDB interrupt.
4801 */
4802 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4803 switch (qc->tf.protocol) {
4804 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08004805 case ATA_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08004806 case ATA_PROT_ATAPI:
4807 case ATA_PROT_ATAPI_NODATA:
4808 qc->tf.flags |= ATA_TFLAG_POLLING;
4809 break;
4810 case ATA_PROT_ATAPI_DMA:
4811 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08004812 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08004813 BUG();
4814 break;
4815 default:
4816 break;
4817 }
4818 }
4819
Tejun Heo3d3cca32006-11-16 10:50:50 +09004820 /* Some controllers show flaky interrupt behavior after
4821 * setting xfer mode. Use polling instead.
4822 */
4823 if (unlikely(qc->tf.command == ATA_CMD_SET_FEATURES &&
4824 qc->tf.feature == SETFEATURES_XFER) &&
4825 (ap->flags & ATA_FLAG_SETXFER_POLLING))
4826 qc->tf.flags |= ATA_TFLAG_POLLING;
4827
Albert Lee312f7da2005-09-27 17:38:03 +08004828 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 ata_dev_select(ap, qc->dev->devno, 1, 0);
4830
Albert Lee312f7da2005-09-27 17:38:03 +08004831 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 switch (qc->tf.protocol) {
4833 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004834 if (qc->tf.flags & ATA_TFLAG_POLLING)
4835 ata_qc_set_polling(qc);
4836
Jeff Garzike5338252005-10-30 21:37:17 -05004837 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004838 ap->hsm_task_state = HSM_ST_LAST;
4839
4840 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004841 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004842
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 break;
4844
4845 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004846 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004847
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4849 ap->ops->bmdma_setup(qc); /* set up bmdma */
4850 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004851 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 break;
4853
Albert Lee312f7da2005-09-27 17:38:03 +08004854 case ATA_PROT_PIO:
4855 if (qc->tf.flags & ATA_TFLAG_POLLING)
4856 ata_qc_set_polling(qc);
4857
Jeff Garzike5338252005-10-30 21:37:17 -05004858 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004859
Albert Lee54f00382005-09-30 19:14:19 +08004860 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4861 /* PIO data out protocol */
4862 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08004863 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08004864
4865 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08004866 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08004867 */
Albert Lee312f7da2005-09-27 17:38:03 +08004868 } else {
Albert Lee54f00382005-09-30 19:14:19 +08004869 /* PIO data in protocol */
4870 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08004871
Albert Lee54f00382005-09-30 19:14:19 +08004872 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004873 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004874
Albert Lee54f00382005-09-30 19:14:19 +08004875 /* if polling, ata_pio_task() handles the rest.
4876 * otherwise, interrupt handler takes over from here.
4877 */
Albert Lee312f7da2005-09-27 17:38:03 +08004878 }
4879
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 break;
4881
4882 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004884 if (qc->tf.flags & ATA_TFLAG_POLLING)
4885 ata_qc_set_polling(qc);
4886
Jeff Garzike5338252005-10-30 21:37:17 -05004887 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05004888
Albert Lee312f7da2005-09-27 17:38:03 +08004889 ap->hsm_task_state = HSM_ST_FIRST;
4890
4891 /* send cdb by polling if no cdb interrupt */
4892 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
4893 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08004894 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 break;
4896
4897 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004898 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004899
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4901 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004902 ap->hsm_task_state = HSM_ST_FIRST;
4903
4904 /* send cdb by polling if no cdb interrupt */
4905 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08004906 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 break;
4908
4909 default:
4910 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004911 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 }
4913
4914 return 0;
4915}
4916
4917/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 * ata_host_intr - Handle host interrupt for given (port, task)
4919 * @ap: Port on which interrupt arrived (possibly...)
4920 * @qc: Taskfile currently active in engine
4921 *
4922 * Handle host interrupt for given queued command. Currently,
4923 * only DMA interrupts are handled. All other commands are
4924 * handled via polling with interrupts disabled (nIEN bit).
4925 *
4926 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004927 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 *
4929 * RETURNS:
4930 * One if interrupt was handled, zero if not (shared irq).
4931 */
4932
4933inline unsigned int ata_host_intr (struct ata_port *ap,
4934 struct ata_queued_cmd *qc)
4935{
Tejun Heoea547632006-11-17 12:06:21 +09004936 struct ata_eh_info *ehi = &ap->eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08004937 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938
Albert Lee312f7da2005-09-27 17:38:03 +08004939 VPRINTK("ata%u: protocol %d task_state %d\n",
4940 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941
Albert Lee312f7da2005-09-27 17:38:03 +08004942 /* Check whether we are expecting interrupt in this state */
4943 switch (ap->hsm_task_state) {
4944 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004945 /* Some pre-ATAPI-4 devices assert INTRQ
4946 * at this state when ready to receive CDB.
4947 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948
Albert Lee312f7da2005-09-27 17:38:03 +08004949 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
4950 * The flag was turned on only for atapi devices.
4951 * No need to check is_atapi_taskfile(&qc->tf) again.
4952 */
4953 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 break;
Albert Lee312f7da2005-09-27 17:38:03 +08004956 case HSM_ST_LAST:
4957 if (qc->tf.protocol == ATA_PROT_DMA ||
4958 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
4959 /* check status of DMA engine */
4960 host_stat = ap->ops->bmdma_status(ap);
4961 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
Albert Lee312f7da2005-09-27 17:38:03 +08004963 /* if it's not our irq... */
4964 if (!(host_stat & ATA_DMA_INTR))
4965 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966
Albert Lee312f7da2005-09-27 17:38:03 +08004967 /* before we do anything else, clear DMA-Start bit */
4968 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08004969
4970 if (unlikely(host_stat & ATA_DMA_ERR)) {
4971 /* error when transfering data to/from memory */
4972 qc->err_mask |= AC_ERR_HOST_BUS;
4973 ap->hsm_task_state = HSM_ST_ERR;
4974 }
Albert Lee312f7da2005-09-27 17:38:03 +08004975 }
4976 break;
4977 case HSM_ST:
4978 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 default:
4980 goto idle_irq;
4981 }
4982
Albert Lee312f7da2005-09-27 17:38:03 +08004983 /* check altstatus */
4984 status = ata_altstatus(ap);
4985 if (status & ATA_BUSY)
4986 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
Albert Lee312f7da2005-09-27 17:38:03 +08004988 /* check main status, clearing INTRQ */
4989 status = ata_chk_status(ap);
4990 if (unlikely(status & ATA_BUSY))
4991 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
Albert Lee312f7da2005-09-27 17:38:03 +08004993 /* ack bmdma irq events */
4994 ap->ops->irq_clear(ap);
4995
Albert Leebb5cb292006-03-25 17:48:02 +08004996 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09004997
4998 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
4999 qc->tf.protocol == ATA_PROT_ATAPI_DMA))
5000 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
5001
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 return 1; /* irq handled */
5003
5004idle_irq:
5005 ap->stats.idle_irq++;
5006
5007#ifdef ATA_IRQ_TRAP
5008 if ((ap->stats.idle_irq % 1000) == 0) {
Akira Iguchi83625002007-01-26 16:27:32 +09005009 ap->ops->irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09005010 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00005011 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 }
5013#endif
5014 return 0; /* irq not handled */
5015}
5016
5017/**
5018 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04005019 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04005020 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005022 * Default interrupt handler for PCI IDE devices. Calls
5023 * ata_host_intr() for each port that is not disabled.
5024 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005026 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027 *
5028 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005029 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 */
5031
David Howells7d12e782006-10-05 14:55:46 +01005032irqreturn_t ata_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033{
Jeff Garzikcca39742006-08-24 03:19:22 -04005034 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 unsigned int i;
5036 unsigned int handled = 0;
5037 unsigned long flags;
5038
5039 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04005040 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041
Jeff Garzikcca39742006-08-24 03:19:22 -04005042 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 struct ata_port *ap;
5044
Jeff Garzikcca39742006-08-24 03:19:22 -04005045 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09005046 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04005047 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048 struct ata_queued_cmd *qc;
5049
5050 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08005051 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08005052 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 handled |= ata_host_intr(ap, qc);
5054 }
5055 }
5056
Jeff Garzikcca39742006-08-24 03:19:22 -04005057 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
5059 return IRQ_RETVAL(handled);
5060}
5061
Tejun Heo34bf2172006-05-15 20:57:46 +09005062/**
5063 * sata_scr_valid - test whether SCRs are accessible
5064 * @ap: ATA port to test SCR accessibility for
5065 *
5066 * Test whether SCRs are accessible for @ap.
5067 *
5068 * LOCKING:
5069 * None.
5070 *
5071 * RETURNS:
5072 * 1 if SCRs are accessible, 0 otherwise.
5073 */
5074int sata_scr_valid(struct ata_port *ap)
5075{
5076 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
5077}
5078
5079/**
5080 * sata_scr_read - read SCR register of the specified port
5081 * @ap: ATA port to read SCR for
5082 * @reg: SCR to read
5083 * @val: Place to store read value
5084 *
5085 * Read SCR register @reg of @ap into *@val. This function is
5086 * guaranteed to succeed if the cable type of the port is SATA
5087 * and the port implements ->scr_read.
5088 *
5089 * LOCKING:
5090 * None.
5091 *
5092 * RETURNS:
5093 * 0 on success, negative errno on failure.
5094 */
5095int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
5096{
5097 if (sata_scr_valid(ap)) {
5098 *val = ap->ops->scr_read(ap, reg);
5099 return 0;
5100 }
5101 return -EOPNOTSUPP;
5102}
5103
5104/**
5105 * sata_scr_write - write SCR register of the specified port
5106 * @ap: ATA port to write SCR for
5107 * @reg: SCR to write
5108 * @val: value to write
5109 *
5110 * Write @val to SCR register @reg of @ap. This function is
5111 * guaranteed to succeed if the cable type of the port is SATA
5112 * and the port implements ->scr_read.
5113 *
5114 * LOCKING:
5115 * None.
5116 *
5117 * RETURNS:
5118 * 0 on success, negative errno on failure.
5119 */
5120int sata_scr_write(struct ata_port *ap, int reg, u32 val)
5121{
5122 if (sata_scr_valid(ap)) {
5123 ap->ops->scr_write(ap, reg, val);
5124 return 0;
5125 }
5126 return -EOPNOTSUPP;
5127}
5128
5129/**
5130 * sata_scr_write_flush - write SCR register of the specified port and flush
5131 * @ap: ATA port to write SCR for
5132 * @reg: SCR to write
5133 * @val: value to write
5134 *
5135 * This function is identical to sata_scr_write() except that this
5136 * function performs flush after writing to the register.
5137 *
5138 * LOCKING:
5139 * None.
5140 *
5141 * RETURNS:
5142 * 0 on success, negative errno on failure.
5143 */
5144int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
5145{
5146 if (sata_scr_valid(ap)) {
5147 ap->ops->scr_write(ap, reg, val);
5148 ap->ops->scr_read(ap, reg);
5149 return 0;
5150 }
5151 return -EOPNOTSUPP;
5152}
5153
5154/**
5155 * ata_port_online - test whether the given port is online
5156 * @ap: ATA port to test
5157 *
5158 * Test whether @ap is online. Note that this function returns 0
5159 * if online status of @ap cannot be obtained, so
5160 * ata_port_online(ap) != !ata_port_offline(ap).
5161 *
5162 * LOCKING:
5163 * None.
5164 *
5165 * RETURNS:
5166 * 1 if the port online status is available and online.
5167 */
5168int ata_port_online(struct ata_port *ap)
5169{
5170 u32 sstatus;
5171
5172 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
5173 return 1;
5174 return 0;
5175}
5176
5177/**
5178 * ata_port_offline - test whether the given port is offline
5179 * @ap: ATA port to test
5180 *
5181 * Test whether @ap is offline. Note that this function returns
5182 * 0 if offline status of @ap cannot be obtained, so
5183 * ata_port_online(ap) != !ata_port_offline(ap).
5184 *
5185 * LOCKING:
5186 * None.
5187 *
5188 * RETURNS:
5189 * 1 if the port offline status is available and offline.
5190 */
5191int ata_port_offline(struct ata_port *ap)
5192{
5193 u32 sstatus;
5194
5195 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
5196 return 1;
5197 return 0;
5198}
Edward Falk0baab862005-06-02 18:17:13 -04005199
Tejun Heo77b08fb2006-06-24 20:30:19 +09005200int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005201{
Tejun Heo977e6b92006-06-24 20:30:19 +09005202 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01005203 u8 cmd;
5204
5205 if (!ata_try_flush_cache(dev))
5206 return 0;
5207
Tejun Heo6fc49ad2006-11-11 20:10:45 +09005208 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01005209 cmd = ATA_CMD_FLUSH_EXT;
5210 else
5211 cmd = ATA_CMD_FLUSH;
5212
Tejun Heo977e6b92006-06-24 20:30:19 +09005213 err_mask = ata_do_simple_cmd(dev, cmd);
5214 if (err_mask) {
5215 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
5216 return -EIO;
5217 }
5218
5219 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005220}
5221
Jeff Garzikcca39742006-08-24 03:19:22 -04005222static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5223 unsigned int action, unsigned int ehi_flags,
5224 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005225{
5226 unsigned long flags;
5227 int i, rc;
5228
Jeff Garzikcca39742006-08-24 03:19:22 -04005229 for (i = 0; i < host->n_ports; i++) {
5230 struct ata_port *ap = host->ports[i];
Tejun Heo500530f2006-07-03 16:07:27 +09005231
5232 /* Previous resume operation might still be in
5233 * progress. Wait for PM_PENDING to clear.
5234 */
5235 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5236 ata_port_wait_eh(ap);
5237 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5238 }
5239
5240 /* request PM ops to EH */
5241 spin_lock_irqsave(ap->lock, flags);
5242
5243 ap->pm_mesg = mesg;
5244 if (wait) {
5245 rc = 0;
5246 ap->pm_result = &rc;
5247 }
5248
5249 ap->pflags |= ATA_PFLAG_PM_PENDING;
5250 ap->eh_info.action |= action;
5251 ap->eh_info.flags |= ehi_flags;
5252
5253 ata_port_schedule_eh(ap);
5254
5255 spin_unlock_irqrestore(ap->lock, flags);
5256
5257 /* wait and check result */
5258 if (wait) {
5259 ata_port_wait_eh(ap);
5260 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5261 if (rc)
5262 return rc;
5263 }
5264 }
5265
5266 return 0;
5267}
5268
5269/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005270 * ata_host_suspend - suspend host
5271 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09005272 * @mesg: PM message
5273 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005274 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005275 * function requests EH to perform PM operations and waits for EH
5276 * to finish.
5277 *
5278 * LOCKING:
5279 * Kernel thread context (may sleep).
5280 *
5281 * RETURNS:
5282 * 0 on success, -errno on failure.
5283 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005284int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005285{
5286 int i, j, rc;
5287
Jeff Garzikcca39742006-08-24 03:19:22 -04005288 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Tejun Heo500530f2006-07-03 16:07:27 +09005289 if (rc)
5290 goto fail;
5291
5292 /* EH is quiescent now. Fail if we have any ready device.
5293 * This happens if hotplug occurs between completion of device
5294 * suspension and here.
5295 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005296 for (i = 0; i < host->n_ports; i++) {
5297 struct ata_port *ap = host->ports[i];
Tejun Heo500530f2006-07-03 16:07:27 +09005298
5299 for (j = 0; j < ATA_MAX_DEVICES; j++) {
5300 struct ata_device *dev = &ap->device[j];
5301
5302 if (ata_dev_ready(dev)) {
5303 ata_port_printk(ap, KERN_WARNING,
5304 "suspend failed, device %d "
5305 "still active\n", dev->devno);
5306 rc = -EBUSY;
5307 goto fail;
5308 }
5309 }
5310 }
5311
Jeff Garzikcca39742006-08-24 03:19:22 -04005312 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005313 return 0;
5314
5315 fail:
Jeff Garzikcca39742006-08-24 03:19:22 -04005316 ata_host_resume(host);
Tejun Heo500530f2006-07-03 16:07:27 +09005317 return rc;
5318}
5319
5320/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005321 * ata_host_resume - resume host
5322 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005323 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005324 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005325 * function requests EH to perform PM operations and returns.
5326 * Note that all resume operations are performed parallely.
5327 *
5328 * LOCKING:
5329 * Kernel thread context (may sleep).
5330 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005331void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005332{
Jeff Garzikcca39742006-08-24 03:19:22 -04005333 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
5334 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
5335 host->dev->power.power_state = PMSG_ON;
Tejun Heo500530f2006-07-03 16:07:27 +09005336}
5337
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005338/**
5339 * ata_port_start - Set port up for dma.
5340 * @ap: Port to initialize
5341 *
5342 * Called just after data structures for each port are
5343 * initialized. Allocates space for PRD table.
5344 *
5345 * May be used as the port_start() entry in ata_port_operations.
5346 *
5347 * LOCKING:
5348 * Inherited from caller.
5349 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005350int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351{
Brian King2f1f6102006-03-23 17:30:15 -06005352 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005353 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
Tejun Heof0d36ef2007-01-20 16:00:28 +09005355 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5356 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 if (!ap->prd)
5358 return -ENOMEM;
5359
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005360 rc = ata_pad_alloc(ap, dev);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005361 if (rc)
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005362 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005363
Tejun Heof0d36ef2007-01-20 16:00:28 +09005364 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd,
5365 (unsigned long long)ap->prd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366 return 0;
5367}
5368
Edward Falk0baab862005-06-02 18:17:13 -04005369/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005370 * ata_dev_init - Initialize an ata_device structure
5371 * @dev: Device structure to initialize
5372 *
5373 * Initialize @dev in preparation for probing.
5374 *
5375 * LOCKING:
5376 * Inherited from caller.
5377 */
5378void ata_dev_init(struct ata_device *dev)
5379{
5380 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005381 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005382
Tejun Heo5a04bf42006-05-31 18:27:38 +09005383 /* SATA spd limit is bound to the first device */
5384 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5385
Tejun Heo72fa4b72006-05-31 18:27:32 +09005386 /* High bits of dev->flags are used to record warm plug
5387 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04005388 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09005389 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005390 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005391 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005392 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005393
5394 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5395 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005396 dev->pio_mask = UINT_MAX;
5397 dev->mwdma_mask = UINT_MAX;
5398 dev->udma_mask = UINT_MAX;
5399}
5400
5401/**
Brian King155a8a92006-08-07 14:27:17 -05005402 * ata_port_init - Initialize an ata_port structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403 * @ap: Structure to initialize
Jeff Garzikcca39742006-08-24 03:19:22 -04005404 * @host: Collection of hosts to which @ap belongs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 * @ent: Probe information provided by low-level driver
5406 * @port_no: Port number associated with this ata_port
5407 *
Brian King155a8a92006-08-07 14:27:17 -05005408 * Initialize a new ata_port structure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005409 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005411 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005413void ata_port_init(struct ata_port *ap, struct ata_host *host,
Brian King155a8a92006-08-07 14:27:17 -05005414 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415{
5416 unsigned int i;
5417
Jeff Garzikcca39742006-08-24 03:19:22 -04005418 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005419 ap->flags = ATA_FLAG_DISABLED;
Brian King155a8a92006-08-07 14:27:17 -05005420 ap->id = ata_unique_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04005422 ap->host = host;
Brian King2f1f6102006-03-23 17:30:15 -06005423 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424 ap->port_no = port_no;
Tejun Heofea63e32006-09-16 03:04:15 +09005425 if (port_no == 1 && ent->pinfo2) {
5426 ap->pio_mask = ent->pinfo2->pio_mask;
5427 ap->mwdma_mask = ent->pinfo2->mwdma_mask;
5428 ap->udma_mask = ent->pinfo2->udma_mask;
5429 ap->flags |= ent->pinfo2->flags;
5430 ap->ops = ent->pinfo2->port_ops;
5431 } else {
5432 ap->pio_mask = ent->pio_mask;
5433 ap->mwdma_mask = ent->mwdma_mask;
5434 ap->udma_mask = ent->udma_mask;
5435 ap->flags |= ent->port_flags;
5436 ap->ops = ent->port_ops;
5437 }
Tejun Heo5a04bf42006-05-31 18:27:38 +09005438 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 ap->active_tag = ATA_TAG_POISON;
5440 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005441
5442#if defined(ATA_VERBOSE_DEBUG)
5443 /* turn on all debugging levels */
5444 ap->msg_enable = 0x00FF;
5445#elif defined(ATA_DEBUG)
5446 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 +09005447#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005448 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005449#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450
David Howells65f27f32006-11-22 14:55:48 +00005451 INIT_DELAYED_WORK(&ap->port_task, NULL);
5452 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5453 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005454 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005455 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456
Tejun Heo838df622006-05-15 20:57:44 +09005457 /* set cable type */
5458 ap->cbl = ATA_CBL_NONE;
5459 if (ap->flags & ATA_FLAG_SATA)
5460 ap->cbl = ATA_CBL_SATA;
5461
Tejun Heoacf356b2006-03-24 14:07:50 +09005462 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5463 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005464 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005465 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005466 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
5469#ifdef ATA_IRQ_TRAP
5470 ap->stats.unhandled_irq = 1;
5471 ap->stats.idle_irq = 1;
5472#endif
5473
5474 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5475}
5476
5477/**
Tejun Heo4608c162006-08-10 16:59:01 +09005478 * ata_port_init_shost - Initialize SCSI host associated with ATA port
5479 * @ap: ATA port to initialize SCSI host for
5480 * @shost: SCSI host associated with @ap
Brian King155a8a92006-08-07 14:27:17 -05005481 *
Tejun Heo4608c162006-08-10 16:59:01 +09005482 * Initialize SCSI host @shost associated with ATA port @ap.
Brian King155a8a92006-08-07 14:27:17 -05005483 *
5484 * LOCKING:
5485 * Inherited from caller.
5486 */
Tejun Heo4608c162006-08-10 16:59:01 +09005487static void ata_port_init_shost(struct ata_port *ap, struct Scsi_Host *shost)
Brian King155a8a92006-08-07 14:27:17 -05005488{
Jeff Garzikcca39742006-08-24 03:19:22 -04005489 ap->scsi_host = shost;
Brian King155a8a92006-08-07 14:27:17 -05005490
Tejun Heo4608c162006-08-10 16:59:01 +09005491 shost->unique_id = ap->id;
5492 shost->max_id = 16;
5493 shost->max_lun = 1;
5494 shost->max_channel = 1;
5495 shost->max_cmd_len = 12;
Brian King155a8a92006-08-07 14:27:17 -05005496}
5497
5498/**
Jeff Garzik996139f2006-08-10 16:59:03 +09005499 * ata_port_add - Attach low-level ATA driver to system
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500 * @ent: Information provided by low-level driver
Jeff Garzikcca39742006-08-24 03:19:22 -04005501 * @host: Collections of ports to which we add
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502 * @port_no: Port number associated with this host
5503 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005504 * Attach low-level ATA driver to system.
5505 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005507 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 *
5509 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005510 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511 */
Jeff Garzik996139f2006-08-10 16:59:03 +09005512static struct ata_port * ata_port_add(const struct ata_probe_ent *ent,
Jeff Garzikcca39742006-08-24 03:19:22 -04005513 struct ata_host *host,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514 unsigned int port_no)
5515{
Jeff Garzik996139f2006-08-10 16:59:03 +09005516 struct Scsi_Host *shost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518
5519 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005520
Tejun Heo52783c52006-05-31 18:28:22 +09005521 if (!ent->port_ops->error_handler &&
Jeff Garzikcca39742006-08-24 03:19:22 -04005522 !(ent->port_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005523 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5524 port_no);
5525 return NULL;
5526 }
5527
Jeff Garzik996139f2006-08-10 16:59:03 +09005528 shost = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5529 if (!shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 return NULL;
5531
Jeff Garzik996139f2006-08-10 16:59:03 +09005532 shost->transportt = &ata_scsi_transport_template;
Tejun Heo30afc842006-03-18 18:40:14 +09005533
Jeff Garzik996139f2006-08-10 16:59:03 +09005534 ap = ata_shost_to_port(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535
Jeff Garzikcca39742006-08-24 03:19:22 -04005536 ata_port_init(ap, host, ent, port_no);
Jeff Garzik996139f2006-08-10 16:59:03 +09005537 ata_port_init_shost(ap, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540}
5541
Tejun Heof0d36ef2007-01-20 16:00:28 +09005542static void ata_host_release(struct device *gendev, void *res)
5543{
5544 struct ata_host *host = dev_get_drvdata(gendev);
5545 int i;
5546
5547 for (i = 0; i < host->n_ports; i++) {
5548 struct ata_port *ap = host->ports[i];
5549
5550 if (!ap)
5551 continue;
5552
5553 if (ap->ops->port_stop)
5554 ap->ops->port_stop(ap);
5555
5556 scsi_host_put(ap->scsi_host);
5557 }
5558
5559 if (host->ops->host_stop)
5560 host->ops->host_stop(host);
5561}
5562
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005564 * ata_sas_host_init - Initialize a host struct
5565 * @host: host to initialize
5566 * @dev: device host is attached to
5567 * @flags: host flags
5568 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05005569 *
5570 * LOCKING:
5571 * PCI/etc. bus probe sem.
5572 *
5573 */
5574
Jeff Garzikcca39742006-08-24 03:19:22 -04005575void ata_host_init(struct ata_host *host, struct device *dev,
5576 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05005577{
Jeff Garzikcca39742006-08-24 03:19:22 -04005578 spin_lock_init(&host->lock);
5579 host->dev = dev;
5580 host->flags = flags;
5581 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05005582}
5583
5584/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005585 * ata_device_add - Register hardware device with ATA and SCSI layers
5586 * @ent: Probe information describing hardware device to be registered
5587 *
5588 * This function processes the information provided in the probe
5589 * information struct @ent, allocates the necessary ATA and SCSI
5590 * host information structures, initializes them, and registers
5591 * everything with requisite kernel subsystems.
5592 *
5593 * This function requests irqs, probes the ATA bus, and probes
5594 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 *
5596 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005597 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598 *
5599 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005600 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 */
Jeff Garzik057ace52005-10-22 14:27:05 -04005602int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603{
Jeff Garzik6d0500d2006-08-10 16:59:05 +09005604 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 struct device *dev = ent->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04005606 struct ata_host *host;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005607 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
5609 DPRINTK("ENTER\n");
Jeff Garzikf20b16f2006-12-11 11:14:06 -05005610
Alan Cox02f076a2006-09-26 17:35:32 +01005611 if (ent->irq == 0) {
5612 dev_printk(KERN_ERR, dev, "is not available: No interrupt assigned.\n");
5613 return 0;
5614 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09005615
5616 if (!devres_open_group(dev, ata_device_add, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618
Tejun Heof0d36ef2007-01-20 16:00:28 +09005619 /* alloc a container for our list of ATA ports (buses) */
5620 host = devres_alloc(ata_host_release, sizeof(struct ata_host) +
5621 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5622 if (!host)
5623 goto err_out;
5624 devres_add(dev, host);
5625 dev_set_drvdata(dev, host);
5626
Jeff Garzikcca39742006-08-24 03:19:22 -04005627 ata_host_init(host, dev, ent->_host_flags, ent->port_ops);
5628 host->n_ports = ent->n_ports;
5629 host->irq = ent->irq;
5630 host->irq2 = ent->irq2;
Tejun Heo0d5ff562007-02-01 15:06:36 +09005631 host->iomap = ent->iomap;
Jeff Garzikcca39742006-08-24 03:19:22 -04005632 host->private_data = ent->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633
5634 /* register each port bound to this device */
Jeff Garzikcca39742006-08-24 03:19:22 -04005635 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636 struct ata_port *ap;
5637 unsigned long xfer_mode_mask;
Alan Cox2ec7df02006-08-10 16:59:10 +09005638 int irq_line = ent->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639
Jeff Garzikcca39742006-08-24 03:19:22 -04005640 ap = ata_port_add(ent, host, i);
Dave Jonesc38778c2006-09-26 23:52:50 -07005641 host->ports[i] = ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 if (!ap)
5643 goto err_out;
5644
Tejun Heodd5b06c2006-08-10 16:59:12 +09005645 /* dummy? */
5646 if (ent->dummy_port_mask & (1 << i)) {
5647 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
5648 ap->ops = &ata_dummy_port_ops;
5649 continue;
5650 }
5651
5652 /* start port */
5653 rc = ap->ops->port_start(ap);
5654 if (rc) {
Jeff Garzikcca39742006-08-24 03:19:22 -04005655 host->ports[i] = NULL;
5656 scsi_host_put(ap->scsi_host);
Tejun Heodd5b06c2006-08-10 16:59:12 +09005657 goto err_out;
5658 }
5659
Alan Cox2ec7df02006-08-10 16:59:10 +09005660 /* Report the secondary IRQ for second channel legacy */
5661 if (i == 1 && ent->irq2)
5662 irq_line = ent->irq2;
5663
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5665 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5666 (ap->pio_mask << ATA_SHIFT_PIO);
5667
5668 /* print per-port info to dmesg */
Tejun Heo0d5ff562007-02-01 15:06:36 +09005669 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%p "
5670 "ctl 0x%p bmdma 0x%p irq %d\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09005671 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5672 ata_mode_string(xfer_mode_mask),
5673 ap->ioaddr.cmd_addr,
5674 ap->ioaddr.ctl_addr,
5675 ap->ioaddr.bmdma_addr,
Alan Cox2ec7df02006-08-10 16:59:10 +09005676 irq_line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677
Tejun Heo0f0a3ad2006-11-17 12:24:22 +09005678 /* freeze port before requesting IRQ */
5679 ata_eh_freeze_port(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680 }
5681
Alan Cox2ec7df02006-08-10 16:59:10 +09005682 /* obtain irq, that may be shared between channels */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005683 rc = devm_request_irq(dev, ent->irq, ent->port_ops->irq_handler,
5684 ent->irq_flags, DRV_NAME, host);
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005685 if (rc) {
5686 dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n",
5687 ent->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688 goto err_out;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
Alan Cox2ec7df02006-08-10 16:59:10 +09005691 /* do we have a second IRQ for the other channel, eg legacy mode */
5692 if (ent->irq2) {
5693 /* We will get weird core code crashes later if this is true
5694 so trap it now */
5695 BUG_ON(ent->irq == ent->irq2);
5696
Tejun Heof0d36ef2007-01-20 16:00:28 +09005697 rc = devm_request_irq(dev, ent->irq2,
5698 ent->port_ops->irq_handler, ent->irq_flags,
5699 DRV_NAME, host);
Alan Cox2ec7df02006-08-10 16:59:10 +09005700 if (rc) {
5701 dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n",
5702 ent->irq2, rc);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005703 goto err_out;
Alan Cox2ec7df02006-08-10 16:59:10 +09005704 }
5705 }
5706
Tejun Heof0d36ef2007-01-20 16:00:28 +09005707 /* resource acquisition complete */
Tejun Heob878ca52007-01-20 16:00:28 +09005708 devres_remove_group(dev, ata_device_add);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005709
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710 /* perform each probe synchronously */
5711 DPRINTK("probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04005712 for (i = 0; i < host->n_ports; i++) {
5713 struct ata_port *ap = host->ports[i];
Tejun Heo5a04bf42006-05-31 18:27:38 +09005714 u32 scontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715 int rc;
5716
Tejun Heo5a04bf42006-05-31 18:27:38 +09005717 /* init sata_spd_limit to the current value */
5718 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
5719 int spd = (scontrol >> 4) & 0xf;
5720 ap->hw_sata_spd_limit &= (1 << spd) - 1;
5721 }
5722 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5723
Jeff Garzikcca39742006-08-24 03:19:22 -04005724 rc = scsi_add_host(ap->scsi_host, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005726 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727 /* FIXME: do something useful here */
5728 /* FIXME: handle unconditional calls to
5729 * scsi_scan_host and ata_host_remove, below,
5730 * at the very least
5731 */
5732 }
Tejun Heo3e706392006-05-31 18:28:11 +09005733
Tejun Heo52783c52006-05-31 18:28:22 +09005734 if (ap->ops->error_handler) {
Tejun Heo1cdaf532006-07-03 16:07:26 +09005735 struct ata_eh_info *ehi = &ap->eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09005736 unsigned long flags;
5737
5738 ata_port_probe(ap);
5739
5740 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005741 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005742
Tejun Heo1cdaf532006-07-03 16:07:26 +09005743 ehi->probe_mask = (1 << ATA_MAX_DEVICES) - 1;
5744 ehi->action |= ATA_EH_SOFTRESET;
5745 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09005746
Tejun Heob51e9e52006-06-29 01:29:30 +09005747 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09005748 ata_port_schedule_eh(ap);
5749
Jeff Garzikba6a1302006-06-22 23:46:10 -04005750 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005751
5752 /* wait for EH to finish */
5753 ata_port_wait_eh(ap);
5754 } else {
5755 DPRINTK("ata%u: bus probe begin\n", ap->id);
5756 rc = ata_bus_probe(ap);
5757 DPRINTK("ata%u: bus probe end\n", ap->id);
5758
5759 if (rc) {
5760 /* FIXME: do something useful here?
5761 * Current libata behavior will
5762 * tear down everything when
5763 * the module is removed
5764 * or the h/w is unplugged.
5765 */
5766 }
5767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768 }
5769
5770 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005771 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04005772 for (i = 0; i < host->n_ports; i++) {
5773 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005775 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776 }
5777
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5779 return ent->n_ports; /* success */
5780
Tejun Heof0d36ef2007-01-20 16:00:28 +09005781 err_out:
5782 devres_release_group(dev, ata_device_add);
5783 dev_set_drvdata(dev, NULL);
5784 VPRINTK("EXIT, returning %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785 return 0;
5786}
5787
5788/**
Tejun Heo720ba122006-05-31 18:28:13 +09005789 * ata_port_detach - Detach ATA port in prepration of device removal
5790 * @ap: ATA port to be detached
5791 *
5792 * Detach all ATA devices and the associated SCSI devices of @ap;
5793 * then, remove the associated SCSI host. @ap is guaranteed to
5794 * be quiescent on return from this function.
5795 *
5796 * LOCKING:
5797 * Kernel thread context (may sleep).
5798 */
5799void ata_port_detach(struct ata_port *ap)
5800{
5801 unsigned long flags;
5802 int i;
5803
5804 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005805 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09005806
5807 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005808 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09005809 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005810 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005811
5812 ata_port_wait_eh(ap);
5813
5814 /* EH is now guaranteed to see UNLOADING, so no new device
5815 * will be attached. Disable all existing devices.
5816 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005817 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005818
5819 for (i = 0; i < ATA_MAX_DEVICES; i++)
5820 ata_dev_disable(&ap->device[i]);
5821
Jeff Garzikba6a1302006-06-22 23:46:10 -04005822 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005823
5824 /* Final freeze & EH. All in-flight commands are aborted. EH
5825 * will be skipped and retrials will be terminated with bad
5826 * target.
5827 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005828 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005829 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005830 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005831
5832 ata_port_wait_eh(ap);
5833
5834 /* Flush hotplug task. The sequence is similar to
5835 * ata_port_flush_task().
5836 */
5837 flush_workqueue(ata_aux_wq);
5838 cancel_delayed_work(&ap->hotplug_task);
5839 flush_workqueue(ata_aux_wq);
5840
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005841 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09005842 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04005843 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09005844}
5845
5846/**
Tejun Heo0529c152007-01-20 16:00:26 +09005847 * ata_host_detach - Detach all ports of an ATA host
5848 * @host: Host to detach
5849 *
5850 * Detach all ports of @host.
5851 *
5852 * LOCKING:
5853 * Kernel thread context (may sleep).
5854 */
5855void ata_host_detach(struct ata_host *host)
5856{
5857 int i;
5858
5859 for (i = 0; i < host->n_ports; i++)
5860 ata_port_detach(host->ports[i]);
5861}
5862
Brian Kingf6d950e2006-08-07 14:27:24 -05005863struct ata_probe_ent *
5864ata_probe_ent_alloc(struct device *dev, const struct ata_port_info *port)
5865{
5866 struct ata_probe_ent *probe_ent;
5867
Tejun Heof0d36ef2007-01-20 16:00:28 +09005868 /* XXX - the following if can go away once all LLDs are managed */
5869 if (!list_empty(&dev->devres_head))
5870 probe_ent = devm_kzalloc(dev, sizeof(*probe_ent), GFP_KERNEL);
5871 else
5872 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Brian Kingf6d950e2006-08-07 14:27:24 -05005873 if (!probe_ent) {
5874 printk(KERN_ERR DRV_NAME "(%s): out of memory\n",
5875 kobject_name(&(dev->kobj)));
5876 return NULL;
5877 }
5878
5879 INIT_LIST_HEAD(&probe_ent->node);
5880 probe_ent->dev = dev;
5881
5882 probe_ent->sht = port->sht;
Jeff Garzikcca39742006-08-24 03:19:22 -04005883 probe_ent->port_flags = port->flags;
Brian Kingf6d950e2006-08-07 14:27:24 -05005884 probe_ent->pio_mask = port->pio_mask;
5885 probe_ent->mwdma_mask = port->mwdma_mask;
5886 probe_ent->udma_mask = port->udma_mask;
5887 probe_ent->port_ops = port->port_ops;
Jeff Garzikd639ca92006-09-28 03:48:18 -04005888 probe_ent->private_data = port->private_data;
Brian Kingf6d950e2006-08-07 14:27:24 -05005889
5890 return probe_ent;
5891}
5892
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893/**
5894 * ata_std_ports - initialize ioaddr with standard port offsets.
5895 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04005896 *
5897 * Utility function which initializes data_addr, error_addr,
5898 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
5899 * device_addr, status_addr, and command_addr to standard offsets
5900 * relative to cmd_addr.
5901 *
5902 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903 */
Edward Falk0baab862005-06-02 18:17:13 -04005904
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905void ata_std_ports(struct ata_ioports *ioaddr)
5906{
5907 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
5908 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
5909 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
5910 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
5911 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
5912 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
5913 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
5914 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
5915 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
5916 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
5917}
5918
Edward Falk0baab862005-06-02 18:17:13 -04005919
Jeff Garzik374b1872005-08-30 05:42:52 -04005920#ifdef CONFIG_PCI
5921
Edward Falk0baab862005-06-02 18:17:13 -04005922/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923 * ata_pci_remove_one - PCI layer callback for device removal
5924 * @pdev: PCI device that was removed
5925 *
Tejun Heob878ca52007-01-20 16:00:28 +09005926 * PCI layer indicates to libata via this hook that hot-unplug or
5927 * module unload event has occurred. Detach all ports. Resource
5928 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 *
5930 * LOCKING:
5931 * Inherited from PCI layer (may sleep).
5932 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005933void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934{
5935 struct device *dev = pci_dev_to_dev(pdev);
Jeff Garzikcca39742006-08-24 03:19:22 -04005936 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937
Tejun Heob878ca52007-01-20 16:00:28 +09005938 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939}
5940
5941/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005942int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943{
5944 unsigned long tmp = 0;
5945
5946 switch (bits->width) {
5947 case 1: {
5948 u8 tmp8 = 0;
5949 pci_read_config_byte(pdev, bits->reg, &tmp8);
5950 tmp = tmp8;
5951 break;
5952 }
5953 case 2: {
5954 u16 tmp16 = 0;
5955 pci_read_config_word(pdev, bits->reg, &tmp16);
5956 tmp = tmp16;
5957 break;
5958 }
5959 case 4: {
5960 u32 tmp32 = 0;
5961 pci_read_config_dword(pdev, bits->reg, &tmp32);
5962 tmp = tmp32;
5963 break;
5964 }
5965
5966 default:
5967 return -EINVAL;
5968 }
5969
5970 tmp &= bits->mask;
5971
5972 return (tmp == bits->val) ? 1 : 0;
5973}
Jens Axboe9b847542006-01-06 09:28:07 +01005974
Tejun Heo3c5100c2006-07-26 16:58:33 +09005975void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01005976{
5977 pci_save_state(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09005978
Tejun Heo3c5100c2006-07-26 16:58:33 +09005979 if (mesg.event == PM_EVENT_SUSPEND) {
Tejun Heo500530f2006-07-03 16:07:27 +09005980 pci_disable_device(pdev);
5981 pci_set_power_state(pdev, PCI_D3hot);
5982 }
Jens Axboe9b847542006-01-06 09:28:07 +01005983}
5984
Tejun Heo553c4aa2006-12-26 19:39:50 +09005985int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01005986{
Tejun Heo553c4aa2006-12-26 19:39:50 +09005987 int rc;
5988
Jens Axboe9b847542006-01-06 09:28:07 +01005989 pci_set_power_state(pdev, PCI_D0);
5990 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005991
Tejun Heob878ca52007-01-20 16:00:28 +09005992 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005993 if (rc) {
5994 dev_printk(KERN_ERR, &pdev->dev,
5995 "failed to enable device after resume (%d)\n", rc);
5996 return rc;
5997 }
5998
Jens Axboe9b847542006-01-06 09:28:07 +01005999 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006000 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006001}
6002
Tejun Heo3c5100c2006-07-26 16:58:33 +09006003int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006004{
Jeff Garzikcca39742006-08-24 03:19:22 -04006005 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006006 int rc = 0;
6007
Jeff Garzikcca39742006-08-24 03:19:22 -04006008 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006009 if (rc)
6010 return rc;
6011
Tejun Heo3c5100c2006-07-26 16:58:33 +09006012 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006013
6014 return 0;
6015}
6016
6017int ata_pci_device_resume(struct pci_dev *pdev)
6018{
Jeff Garzikcca39742006-08-24 03:19:22 -04006019 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006020 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006021
Tejun Heo553c4aa2006-12-26 19:39:50 +09006022 rc = ata_pci_device_do_resume(pdev);
6023 if (rc == 0)
6024 ata_host_resume(host);
6025 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006026}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027#endif /* CONFIG_PCI */
6028
6029
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030static int __init ata_init(void)
6031{
Andrew Mortona8601e52006-06-25 01:36:52 -07006032 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 ata_wq = create_workqueue("ata");
6034 if (!ata_wq)
6035 return -ENOMEM;
6036
Tejun Heo453b07a2006-05-31 18:27:42 +09006037 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6038 if (!ata_aux_wq) {
6039 destroy_workqueue(ata_wq);
6040 return -ENOMEM;
6041 }
6042
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6044 return 0;
6045}
6046
6047static void __exit ata_exit(void)
6048{
6049 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006050 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051}
6052
Brian Kinga4625082006-11-13 16:32:36 -06006053subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054module_exit(ata_exit);
6055
Jeff Garzik67846b32005-10-05 02:58:32 -04006056static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006057static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006058
6059int ata_ratelimit(void)
6060{
6061 int rc;
6062 unsigned long flags;
6063
6064 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6065
6066 if (time_after(jiffies, ratelimit_time)) {
6067 rc = 1;
6068 ratelimit_time = jiffies + (HZ/5);
6069 } else
6070 rc = 0;
6071
6072 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6073
6074 return rc;
6075}
6076
Tejun Heoc22daff2006-04-11 22:22:29 +09006077/**
6078 * ata_wait_register - wait until register value changes
6079 * @reg: IO-mapped register
6080 * @mask: Mask to apply to read register value
6081 * @val: Wait condition
6082 * @interval_msec: polling interval in milliseconds
6083 * @timeout_msec: timeout in milliseconds
6084 *
6085 * Waiting for some bits of register to change is a common
6086 * operation for ATA controllers. This function reads 32bit LE
6087 * IO-mapped register @reg and tests for the following condition.
6088 *
6089 * (*@reg & mask) != val
6090 *
6091 * If the condition is met, it returns; otherwise, the process is
6092 * repeated after @interval_msec until timeout.
6093 *
6094 * LOCKING:
6095 * Kernel thread context (may sleep)
6096 *
6097 * RETURNS:
6098 * The final register value.
6099 */
6100u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6101 unsigned long interval_msec,
6102 unsigned long timeout_msec)
6103{
6104 unsigned long timeout;
6105 u32 tmp;
6106
6107 tmp = ioread32(reg);
6108
6109 /* Calculate timeout _after_ the first read to make sure
6110 * preceding writes reach the controller before starting to
6111 * eat away the timeout.
6112 */
6113 timeout = jiffies + (timeout_msec * HZ) / 1000;
6114
6115 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6116 msleep(interval_msec);
6117 tmp = ioread32(reg);
6118 }
6119
6120 return tmp;
6121}
6122
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006124 * Dummy port_ops
6125 */
6126static void ata_dummy_noret(struct ata_port *ap) { }
6127static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
6128static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
6129
6130static u8 ata_dummy_check_status(struct ata_port *ap)
6131{
6132 return ATA_DRDY;
6133}
6134
6135static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6136{
6137 return AC_ERR_SYSTEM;
6138}
6139
6140const struct ata_port_operations ata_dummy_port_ops = {
6141 .port_disable = ata_port_disable,
6142 .check_status = ata_dummy_check_status,
6143 .check_altstatus = ata_dummy_check_status,
6144 .dev_select = ata_noop_dev_select,
6145 .qc_prep = ata_noop_qc_prep,
6146 .qc_issue = ata_dummy_qc_issue,
6147 .freeze = ata_dummy_noret,
6148 .thaw = ata_dummy_noret,
6149 .error_handler = ata_dummy_noret,
6150 .post_internal_cmd = ata_dummy_qc_noret,
6151 .irq_clear = ata_dummy_noret,
6152 .port_start = ata_dummy_ret0,
6153 .port_stop = ata_dummy_noret,
6154};
6155
6156/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157 * libata is essentially a library of internal helper functions for
6158 * low-level ATA host controller drivers. As such, the API/ABI is
6159 * likely to change as new drivers are added and updated.
6160 * Do not depend on ABI/API stability.
6161 */
6162
Tejun Heoe9c83912006-07-03 16:07:26 +09006163EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6164EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6165EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006166EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167EXPORT_SYMBOL_GPL(ata_std_bios_param);
6168EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04006169EXPORT_SYMBOL_GPL(ata_host_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170EXPORT_SYMBOL_GPL(ata_device_add);
Tejun Heo0529c152007-01-20 16:00:26 +09006171EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172EXPORT_SYMBOL_GPL(ata_sg_init);
6173EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09006174EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09006175EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006176EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006178EXPORT_SYMBOL_GPL(ata_tf_load);
6179EXPORT_SYMBOL_GPL(ata_tf_read);
6180EXPORT_SYMBOL_GPL(ata_noop_dev_select);
6181EXPORT_SYMBOL_GPL(ata_std_dev_select);
6182EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6183EXPORT_SYMBOL_GPL(ata_tf_from_fis);
6184EXPORT_SYMBOL_GPL(ata_check_status);
6185EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186EXPORT_SYMBOL_GPL(ata_exec_command);
6187EXPORT_SYMBOL_GPL(ata_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188EXPORT_SYMBOL_GPL(ata_interrupt);
Tejun Heo0d5ff562007-02-01 15:06:36 +09006189EXPORT_SYMBOL_GPL(ata_data_xfer);
6190EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06006192EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193EXPORT_SYMBOL_GPL(ata_bmdma_setup);
6194EXPORT_SYMBOL_GPL(ata_bmdma_start);
6195EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
6196EXPORT_SYMBOL_GPL(ata_bmdma_status);
6197EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09006198EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
6199EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
6200EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
6201EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
6202EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09006204EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09006205EXPORT_SYMBOL_GPL(sata_phy_debounce);
6206EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207EXPORT_SYMBOL_GPL(sata_phy_reset);
6208EXPORT_SYMBOL_GPL(__sata_phy_reset);
6209EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09006210EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006211EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heob6103f62006-11-01 17:59:53 +09006212EXPORT_SYMBOL_GPL(sata_port_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006213EXPORT_SYMBOL_GPL(sata_std_hardreset);
6214EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006215EXPORT_SYMBOL_GPL(ata_dev_classify);
6216EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006218EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006219EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09006220EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09006221EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6223EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006225EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006226EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09006228EXPORT_SYMBOL_GPL(sata_scr_valid);
6229EXPORT_SYMBOL_GPL(sata_scr_read);
6230EXPORT_SYMBOL_GPL(sata_scr_write);
6231EXPORT_SYMBOL_GPL(sata_scr_write_flush);
6232EXPORT_SYMBOL_GPL(ata_port_online);
6233EXPORT_SYMBOL_GPL(ata_port_offline);
Jeff Garzikcca39742006-08-24 03:19:22 -04006234EXPORT_SYMBOL_GPL(ata_host_suspend);
6235EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6a62a042006-02-13 10:02:46 +09006236EXPORT_SYMBOL_GPL(ata_id_string);
6237EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan Cox6919a0a2006-10-27 19:08:46 -07006238EXPORT_SYMBOL_GPL(ata_device_blacklisted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6240
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006241EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04006242EXPORT_SYMBOL_GPL(ata_timing_compute);
6243EXPORT_SYMBOL_GPL(ata_timing_merge);
6244
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245#ifdef CONFIG_PCI
6246EXPORT_SYMBOL_GPL(pci_test_config_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
6248EXPORT_SYMBOL_GPL(ata_pci_init_one);
6249EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo500530f2006-07-03 16:07:27 +09006250EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6251EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006252EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6253EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00006254EXPORT_SYMBOL_GPL(ata_pci_default_filter);
6255EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006257
Jens Axboe9b847542006-01-06 09:28:07 +01006258EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
6259EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09006260
Tejun Heoece1d632006-04-02 18:51:53 +09006261EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006262EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
6263EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006264EXPORT_SYMBOL_GPL(ata_port_freeze);
6265EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6266EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006267EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6268EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09006269EXPORT_SYMBOL_GPL(ata_do_eh);
Akira Iguchi83625002007-01-26 16:27:32 +09006270EXPORT_SYMBOL_GPL(ata_irq_on);
6271EXPORT_SYMBOL_GPL(ata_dummy_irq_on);
6272EXPORT_SYMBOL_GPL(ata_irq_ack);
6273EXPORT_SYMBOL_GPL(ata_dummy_irq_ack);