blob: ed11ee41673cd20d23d8071b8ecfe2297dce2556 [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/**
604 * ata_pio_devchk - PATA device presence detection
605 * @ap: ATA channel to examine
606 * @device: Device to examine (starting at zero)
607 *
608 * 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.
616 *
617 * LOCKING:
618 * caller.
619 */
620
621static unsigned int ata_pio_devchk(struct ata_port *ap,
622 unsigned int device)
623{
624 struct ata_ioports *ioaddr = &ap->ioaddr;
625 u8 nsect, lbal;
626
627 ap->ops->dev_select(ap, device);
628
629 outb(0x55, ioaddr->nsect_addr);
630 outb(0xaa, ioaddr->lbal_addr);
631
632 outb(0xaa, ioaddr->nsect_addr);
633 outb(0x55, ioaddr->lbal_addr);
634
635 outb(0x55, ioaddr->nsect_addr);
636 outb(0xaa, ioaddr->lbal_addr);
637
638 nsect = inb(ioaddr->nsect_addr);
639 lbal = inb(ioaddr->lbal_addr);
640
641 if ((nsect == 0x55) && (lbal == 0xaa))
642 return 1; /* we found a device */
643
644 return 0; /* nothing found */
645}
646
647/**
648 * ata_mmio_devchk - PATA device presence detection
649 * @ap: ATA channel to examine
650 * @device: Device to examine (starting at zero)
651 *
652 * This technique was originally described in
653 * Hale Landis's ATADRVR (www.ata-atapi.com), and
654 * later found its way into the ATA/ATAPI spec.
655 *
656 * Write a pattern to the ATA shadow registers,
657 * and if a device is present, it will respond by
658 * correctly storing and echoing back the
659 * ATA shadow register contents.
660 *
661 * LOCKING:
662 * caller.
663 */
664
665static unsigned int ata_mmio_devchk(struct ata_port *ap,
666 unsigned int device)
667{
668 struct ata_ioports *ioaddr = &ap->ioaddr;
669 u8 nsect, lbal;
670
671 ap->ops->dev_select(ap, device);
672
673 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
674 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
675
676 writeb(0xaa, (void __iomem *) ioaddr->nsect_addr);
677 writeb(0x55, (void __iomem *) ioaddr->lbal_addr);
678
679 writeb(0x55, (void __iomem *) ioaddr->nsect_addr);
680 writeb(0xaa, (void __iomem *) ioaddr->lbal_addr);
681
682 nsect = readb((void __iomem *) ioaddr->nsect_addr);
683 lbal = readb((void __iomem *) ioaddr->lbal_addr);
684
685 if ((nsect == 0x55) && (lbal == 0xaa))
686 return 1; /* we found a device */
687
688 return 0; /* nothing found */
689}
690
691/**
692 * ata_devchk - PATA device presence detection
693 * @ap: ATA channel to examine
694 * @device: Device to examine (starting at zero)
695 *
696 * Dispatch ATA device presence detection, depending
697 * on whether we are using PIO or MMIO to talk to the
698 * ATA shadow registers.
699 *
700 * LOCKING:
701 * caller.
702 */
703
704static unsigned int ata_devchk(struct ata_port *ap,
705 unsigned int device)
706{
707 if (ap->flags & ATA_FLAG_MMIO)
708 return ata_mmio_devchk(ap, device);
709 return ata_pio_devchk(ap, device);
710}
711
712/**
713 * ata_dev_classify - determine device type based on ATA-spec signature
714 * @tf: ATA taskfile register set for device to be identified
715 *
716 * Determine from taskfile register contents whether a device is
717 * ATA or ATAPI, as per "Signature and persistence" section
718 * of ATA/PI spec (volume 1, sect 5.14).
719 *
720 * LOCKING:
721 * None.
722 *
723 * RETURNS:
724 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
725 * the event of failure.
726 */
727
Jeff Garzik057ace52005-10-22 14:27:05 -0400728unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 /* Apple's open source Darwin code hints that some devices only
731 * put a proper signature into the LBA mid/high registers,
732 * So, we only check those. It's sufficient for uniqueness.
733 */
734
735 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
736 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
737 DPRINTK("found ATA device by sig\n");
738 return ATA_DEV_ATA;
739 }
740
741 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
742 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
743 DPRINTK("found ATAPI device by sig\n");
744 return ATA_DEV_ATAPI;
745 }
746
747 DPRINTK("unknown device\n");
748 return ATA_DEV_UNKNOWN;
749}
750
751/**
752 * ata_dev_try_classify - Parse returned ATA device signature
753 * @ap: ATA channel to examine
754 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900755 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 *
757 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
758 * an ATA/ATAPI-defined set of values is placed in the ATA
759 * shadow registers, indicating the results of device detection
760 * and diagnostics.
761 *
762 * Select the ATA device, and read the values from the ATA shadow
763 * registers. Then parse according to the Error register value,
764 * and the spec-defined values examined by ata_dev_classify().
765 *
766 * LOCKING:
767 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900768 *
769 * RETURNS:
770 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 */
772
Tejun Heob4dc7622006-01-24 17:05:22 +0900773static unsigned int
774ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct ata_taskfile tf;
777 unsigned int class;
778 u8 err;
779
780 ap->ops->dev_select(ap, device);
781
782 memset(&tf, 0, sizeof(tf));
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400785 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900786 if (r_err)
787 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Alan Cox93590852006-09-12 16:55:12 +0100789 /* see if device passed diags: if master then continue and warn later */
790 if (err == 0 && device == 0)
791 /* diagnostic fail : do nothing _YET_ */
792 ap->device[device].horkage |= ATA_HORKAGE_DIAGNOSTIC;
793 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /* do nothing */ ;
795 else if ((device == 0) && (err == 0x81))
796 /* do nothing */ ;
797 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900798 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Tejun Heob4dc7622006-01-24 17:05:22 +0900800 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900804 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900806 return ATA_DEV_NONE;
807 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900811 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * @id: IDENTIFY DEVICE results we will examine
813 * @s: string into which data is output
814 * @ofs: offset into identify device page
815 * @len: length of string to return. must be an even number.
816 *
817 * The strings in the IDENTIFY DEVICE page are broken up into
818 * 16-bit chunks. Run through the string, and output each
819 * 8-bit chunk linearly, regardless of platform.
820 *
821 * LOCKING:
822 * caller.
823 */
824
Tejun Heo6a62a042006-02-13 10:02:46 +0900825void ata_id_string(const u16 *id, unsigned char *s,
826 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 unsigned int c;
829
830 while (len > 0) {
831 c = id[ofs] >> 8;
832 *s = c;
833 s++;
834
835 c = id[ofs] & 0xff;
836 *s = c;
837 s++;
838
839 ofs++;
840 len -= 2;
841 }
842}
843
Tejun Heo0e949ff2006-02-12 22:47:04 +0900844/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900845 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900846 * @id: IDENTIFY DEVICE results we will examine
847 * @s: string into which data is output
848 * @ofs: offset into identify device page
849 * @len: length of string to return. must be an odd number.
850 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900851 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900852 * trims trailing spaces and terminates the resulting string with
853 * null. @len must be actual maximum length (even number) + 1.
854 *
855 * LOCKING:
856 * caller.
857 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900858void ata_id_c_string(const u16 *id, unsigned char *s,
859 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900860{
861 unsigned char *p;
862
863 WARN_ON(!(len & 1));
864
Tejun Heo6a62a042006-02-13 10:02:46 +0900865 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900866
867 p = s + strnlen(s, len - 1);
868 while (p > s && p[-1] == ' ')
869 p--;
870 *p = '\0';
871}
Edward Falk0baab862005-06-02 18:17:13 -0400872
Tejun Heo29407402006-02-12 22:47:04 +0900873static u64 ata_id_n_sectors(const u16 *id)
874{
875 if (ata_id_has_lba(id)) {
876 if (ata_id_has_lba48(id))
877 return ata_id_u64(id, 100);
878 else
879 return ata_id_u32(id, 60);
880 } else {
881 if (ata_id_current_chs_valid(id))
882 return ata_id_u32(id, 57);
883 else
884 return id[1] * id[3] * id[6];
885 }
886}
887
Edward Falk0baab862005-06-02 18:17:13 -0400888/**
889 * ata_noop_dev_select - Select device 0/1 on ATA bus
890 * @ap: ATA channel to manipulate
891 * @device: ATA device (numbered from zero) to select
892 *
893 * This function performs no actual function.
894 *
895 * May be used as the dev_select() entry in ata_port_operations.
896 *
897 * LOCKING:
898 * caller.
899 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
901{
902}
903
Edward Falk0baab862005-06-02 18:17:13 -0400904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/**
906 * ata_std_dev_select - Select device 0/1 on ATA bus
907 * @ap: ATA channel to manipulate
908 * @device: ATA device (numbered from zero) to select
909 *
910 * Use the method defined in the ATA specification to
911 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -0400912 * ATA channel. Works with both PIO and MMIO.
913 *
914 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 *
916 * LOCKING:
917 * caller.
918 */
919
920void ata_std_dev_select (struct ata_port *ap, unsigned int device)
921{
922 u8 tmp;
923
924 if (device == 0)
925 tmp = ATA_DEVICE_OBS;
926 else
927 tmp = ATA_DEVICE_OBS | ATA_DEV1;
928
929 if (ap->flags & ATA_FLAG_MMIO) {
930 writeb(tmp, (void __iomem *) ap->ioaddr.device_addr);
931 } else {
932 outb(tmp, ap->ioaddr.device_addr);
933 }
934 ata_pause(ap); /* needed; also flushes, for mmio */
935}
936
937/**
938 * ata_dev_select - Select device 0/1 on ATA bus
939 * @ap: ATA channel to manipulate
940 * @device: ATA device (numbered from zero) to select
941 * @wait: non-zero to wait for Status register BSY bit to clear
942 * @can_sleep: non-zero if context allows sleeping
943 *
944 * Use the method defined in the ATA specification to
945 * make either device 0, or device 1, active on the
946 * ATA channel.
947 *
948 * This is a high-level version of ata_std_dev_select(),
949 * which additionally provides the services of inserting
950 * the proper pauses and status polling, where needed.
951 *
952 * LOCKING:
953 * caller.
954 */
955
956void ata_dev_select(struct ata_port *ap, unsigned int device,
957 unsigned int wait, unsigned int can_sleep)
958{
Tejun Heo88574552006-06-25 20:00:35 +0900959 if (ata_msg_probe(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400960 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, ata%u: "
Tejun Heo88574552006-06-25 20:00:35 +0900961 "device %u, wait %u\n", ap->id, device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 if (wait)
964 ata_wait_idle(ap);
965
966 ap->ops->dev_select(ap, device);
967
968 if (wait) {
969 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
970 msleep(150);
971 ata_wait_idle(ap);
972 }
973}
974
975/**
976 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +0900977 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 *
Tejun Heo0bd33002006-02-12 22:47:05 +0900979 * Dump selected 16-bit words from the given IDENTIFY DEVICE
980 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 *
982 * LOCKING:
983 * caller.
984 */
985
Tejun Heo0bd33002006-02-12 22:47:05 +0900986static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 DPRINTK("49==0x%04x "
989 "53==0x%04x "
990 "63==0x%04x "
991 "64==0x%04x "
992 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +0900993 id[49],
994 id[53],
995 id[63],
996 id[64],
997 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 DPRINTK("80==0x%04x "
999 "81==0x%04x "
1000 "82==0x%04x "
1001 "83==0x%04x "
1002 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001003 id[80],
1004 id[81],
1005 id[82],
1006 id[83],
1007 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 DPRINTK("88==0x%04x "
1009 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001010 id[88],
1011 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
Tejun Heocb95d562006-03-06 04:31:56 +09001014/**
1015 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1016 * @id: IDENTIFY data to compute xfer mask from
1017 *
1018 * Compute the xfermask for this device. This is not as trivial
1019 * as it seems if we must consider early devices correctly.
1020 *
1021 * FIXME: pre IDE drive timing (do we care ?).
1022 *
1023 * LOCKING:
1024 * None.
1025 *
1026 * RETURNS:
1027 * Computed xfermask
1028 */
1029static unsigned int ata_id_xfermask(const u16 *id)
1030{
1031 unsigned int pio_mask, mwdma_mask, udma_mask;
1032
1033 /* Usual case. Word 53 indicates word 64 is valid */
1034 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1035 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1036 pio_mask <<= 3;
1037 pio_mask |= 0x7;
1038 } else {
1039 /* If word 64 isn't valid then Word 51 high byte holds
1040 * the PIO timing number for the maximum. Turn it into
1041 * a mask.
1042 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001043 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001044 if (mode < 5) /* Valid PIO range */
1045 pio_mask = (2 << mode) - 1;
1046 else
1047 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001048
1049 /* But wait.. there's more. Design your standards by
1050 * committee and you too can get a free iordy field to
1051 * process. However its the speeds not the modes that
1052 * are supported... Note drivers using the timing API
1053 * will get this right anyway
1054 */
1055 }
1056
1057 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001058
Alan Coxb352e572006-08-10 18:52:12 +01001059 if (ata_id_is_cfa(id)) {
1060 /*
1061 * Process compact flash extended modes
1062 */
1063 int pio = id[163] & 0x7;
1064 int dma = (id[163] >> 3) & 7;
1065
1066 if (pio)
1067 pio_mask |= (1 << 5);
1068 if (pio > 1)
1069 pio_mask |= (1 << 6);
1070 if (dma)
1071 mwdma_mask |= (1 << 3);
1072 if (dma > 1)
1073 mwdma_mask |= (1 << 4);
1074 }
1075
Tejun Heofb21f0d2006-03-12 12:34:35 +09001076 udma_mask = 0;
1077 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1078 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001079
1080 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1081}
1082
Tejun Heo86e45b62006-03-05 15:29:09 +09001083/**
1084 * ata_port_queue_task - Queue port_task
1085 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001086 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001087 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001088 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001089 *
1090 * Schedule @fn(@data) for execution after @delay jiffies using
1091 * port_task. There is one port_task per port and it's the
1092 * user(low level driver)'s responsibility to make sure that only
1093 * one task is active at any given time.
1094 *
1095 * libata core layer takes care of synchronization between
1096 * port_task and EH. ata_port_queue_task() may be ignored for EH
1097 * synchronization.
1098 *
1099 * LOCKING:
1100 * Inherited from caller.
1101 */
David Howells65f27f32006-11-22 14:55:48 +00001102void ata_port_queue_task(struct ata_port *ap, work_func_t fn, void *data,
Tejun Heo86e45b62006-03-05 15:29:09 +09001103 unsigned long delay)
1104{
1105 int rc;
1106
Tejun Heob51e9e52006-06-29 01:29:30 +09001107 if (ap->pflags & ATA_PFLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +09001108 return;
1109
David Howells65f27f32006-11-22 14:55:48 +00001110 PREPARE_DELAYED_WORK(&ap->port_task, fn);
1111 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001112
David Howells52bad642006-11-22 14:54:01 +00001113 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001114
1115 /* rc == 0 means that another user is using port task */
1116 WARN_ON(rc == 0);
1117}
1118
1119/**
1120 * ata_port_flush_task - Flush port_task
1121 * @ap: The ata_port to flush port_task for
1122 *
1123 * After this function completes, port_task is guranteed not to
1124 * be running or scheduled.
1125 *
1126 * LOCKING:
1127 * Kernel thread context (may sleep)
1128 */
1129void ata_port_flush_task(struct ata_port *ap)
1130{
1131 unsigned long flags;
1132
1133 DPRINTK("ENTER\n");
1134
Jeff Garzikba6a1302006-06-22 23:46:10 -04001135 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09001136 ap->pflags |= ATA_PFLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04001137 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +09001138
1139 DPRINTK("flush #1\n");
1140 flush_workqueue(ata_wq);
1141
1142 /*
1143 * At this point, if a task is running, it's guaranteed to see
1144 * the FLUSH flag; thus, it will never queue pio tasks again.
1145 * Cancel and flush.
1146 */
1147 if (!cancel_delayed_work(&ap->port_task)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001148 if (ata_msg_ctl(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001149 ata_port_printk(ap, KERN_DEBUG, "%s: flush #2\n",
1150 __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001151 flush_workqueue(ata_wq);
1152 }
1153
Jeff Garzikba6a1302006-06-22 23:46:10 -04001154 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09001155 ap->pflags &= ~ATA_PFLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04001156 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +09001157
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001158 if (ata_msg_ctl(ap))
1159 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001160}
1161
Adrian Bunk7102d232007-01-04 00:09:36 +01001162static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001163{
Tejun Heo77853bf2006-01-23 13:09:36 +09001164 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001165
Tejun Heoa2a7a662005-12-13 14:48:31 +09001166 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001167}
1168
1169/**
Tejun Heo24326972006-11-14 22:47:09 +09001170 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001171 * @dev: Device to which the command is sent
1172 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001173 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001174 * @dma_dir: Data tranfer direction of the command
Tejun Heo24326972006-11-14 22:47:09 +09001175 * @sg: sg list for the data buffer of the command
1176 * @n_elem: Number of sg entries
Tejun Heoa2a7a662005-12-13 14:48:31 +09001177 *
1178 * Executes libata internal command with timeout. @tf contains
1179 * command on entry and result on return. Timeout and error
1180 * conditions are reported via return value. No recovery action
1181 * is taken after a command times out. It's caller's duty to
1182 * clean up after timeout.
1183 *
1184 * LOCKING:
1185 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001186 *
1187 * RETURNS:
1188 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001189 */
Tejun Heo24326972006-11-14 22:47:09 +09001190unsigned ata_exec_internal_sg(struct ata_device *dev,
1191 struct ata_taskfile *tf, const u8 *cdb,
1192 int dma_dir, struct scatterlist *sg,
1193 unsigned int n_elem)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001194{
Tejun Heo3373efd2006-05-15 20:57:53 +09001195 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001196 u8 command = tf->command;
1197 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001198 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001199 u32 preempted_sactive, preempted_qc_active;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001200 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001201 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001202 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001203 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001204
Jeff Garzikba6a1302006-06-22 23:46:10 -04001205 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001206
Tejun Heoe3180492006-05-15 20:58:09 +09001207 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001208 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001209 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001210 return AC_ERR_SYSTEM;
1211 }
1212
Tejun Heo2ab7db12006-05-15 20:58:02 +09001213 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001214
Tejun Heo2ab7db12006-05-15 20:58:02 +09001215 /* XXX: Tag 0 is used for drivers with legacy EH as some
1216 * drivers choke if any other tag is given. This breaks
1217 * ata_tag_internal() test for those drivers. Don't use new
1218 * EH stuff without converting to it.
1219 */
1220 if (ap->ops->error_handler)
1221 tag = ATA_TAG_INTERNAL;
1222 else
1223 tag = 0;
1224
Tejun Heo6cec4a32006-05-15 21:03:41 +09001225 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001226 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001227 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001228
1229 qc->tag = tag;
1230 qc->scsicmd = NULL;
1231 qc->ap = ap;
1232 qc->dev = dev;
1233 ata_qc_reinit(qc);
1234
1235 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001236 preempted_sactive = ap->sactive;
1237 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001238 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001239 ap->sactive = 0;
1240 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001241
1242 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001243 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001244 if (cdb)
1245 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001246 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001247 qc->dma_dir = dma_dir;
1248 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001249 unsigned int i, buflen = 0;
1250
1251 for (i = 0; i < n_elem; i++)
1252 buflen += sg[i].length;
1253
1254 ata_sg_init(qc, sg, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001255 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001256 }
1257
Tejun Heo77853bf2006-01-23 13:09:36 +09001258 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001259 qc->complete_fn = ata_qc_complete_internal;
1260
Tejun Heo8e0e6942006-03-31 20:41:11 +09001261 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001262
Jeff Garzikba6a1302006-06-22 23:46:10 -04001263 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001264
Andrew Mortona8601e52006-06-25 01:36:52 -07001265 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001266
Tejun Heod95a7172006-05-15 20:58:14 +09001267 ata_port_flush_task(ap);
1268
1269 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001270 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001271
1272 /* We're racing with irq here. If we lose, the
1273 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001274 * twice. If we win, the port is frozen and will be
1275 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001276 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001277 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001278 qc->err_mask |= AC_ERR_TIMEOUT;
1279
1280 if (ap->ops->error_handler)
1281 ata_port_freeze(ap);
1282 else
1283 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001284
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001285 if (ata_msg_warn(ap))
1286 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001287 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001288 }
1289
Jeff Garzikba6a1302006-06-22 23:46:10 -04001290 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001291 }
1292
Tejun Heod95a7172006-05-15 20:58:14 +09001293 /* do post_internal_cmd */
1294 if (ap->ops->post_internal_cmd)
1295 ap->ops->post_internal_cmd(qc);
1296
Alan18d90de2007-01-24 11:42:38 +00001297 if ((qc->flags & ATA_QCFLAG_FAILED) && !qc->err_mask) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001298 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001299 ata_dev_printk(dev, KERN_WARNING,
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001300 "zero err_mask for failed "
Tejun Heo88574552006-06-25 20:00:35 +09001301 "internal command, assuming AC_ERR_OTHER\n");
Tejun Heod95a7172006-05-15 20:58:14 +09001302 qc->err_mask |= AC_ERR_OTHER;
1303 }
1304
Tejun Heo15869302006-05-15 20:57:33 +09001305 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001306 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001307
Tejun Heoe61e0672006-05-15 20:57:40 +09001308 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001309 err_mask = qc->err_mask;
1310
1311 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001312 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001313 ap->sactive = preempted_sactive;
1314 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001315
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001316 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1317 * Until those drivers are fixed, we detect the condition
1318 * here, fail the command with AC_ERR_SYSTEM and reenable the
1319 * port.
1320 *
1321 * Note that this doesn't change any behavior as internal
1322 * command failure results in disabling the device in the
1323 * higher layer for LLDDs without new reset/EH callbacks.
1324 *
1325 * Kill the following code as soon as those drivers are fixed.
1326 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001327 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e2006-03-24 15:25:30 +09001328 err_mask |= AC_ERR_SYSTEM;
1329 ata_port_probe(ap);
1330 }
1331
Jeff Garzikba6a1302006-06-22 23:46:10 -04001332 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001333
Tejun Heo77853bf2006-01-23 13:09:36 +09001334 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001335}
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337/**
Tejun Heo33480a02006-12-12 02:15:31 +09001338 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001339 * @dev: Device to which the command is sent
1340 * @tf: Taskfile registers for the command and the result
1341 * @cdb: CDB for packet command
1342 * @dma_dir: Data tranfer direction of the command
1343 * @buf: Data buffer of the command
1344 * @buflen: Length of data buffer
1345 *
1346 * Wrapper around ata_exec_internal_sg() which takes simple
1347 * buffer instead of sg list.
1348 *
1349 * LOCKING:
1350 * None. Should be called with kernel context, might sleep.
1351 *
1352 * RETURNS:
1353 * Zero on success, AC_ERR_* mask on failure
1354 */
1355unsigned ata_exec_internal(struct ata_device *dev,
1356 struct ata_taskfile *tf, const u8 *cdb,
1357 int dma_dir, void *buf, unsigned int buflen)
1358{
Tejun Heo33480a02006-12-12 02:15:31 +09001359 struct scatterlist *psg = NULL, sg;
1360 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001361
Tejun Heo33480a02006-12-12 02:15:31 +09001362 if (dma_dir != DMA_NONE) {
1363 WARN_ON(!buf);
1364 sg_init_one(&sg, buf, buflen);
1365 psg = &sg;
1366 n_elem++;
1367 }
Tejun Heo24326972006-11-14 22:47:09 +09001368
Tejun Heo33480a02006-12-12 02:15:31 +09001369 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem);
Tejun Heo24326972006-11-14 22:47:09 +09001370}
1371
1372/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001373 * ata_do_simple_cmd - execute simple internal command
1374 * @dev: Device to which the command is sent
1375 * @cmd: Opcode to execute
1376 *
1377 * Execute a 'simple' command, that only consists of the opcode
1378 * 'cmd' itself, without filling any other registers
1379 *
1380 * LOCKING:
1381 * Kernel thread context (may sleep).
1382 *
1383 * RETURNS:
1384 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001385 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001386unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001387{
1388 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001389
1390 ata_tf_init(dev, &tf);
1391
1392 tf.command = cmd;
1393 tf.flags |= ATA_TFLAG_DEVICE;
1394 tf.protocol = ATA_PROT_NODATA;
1395
Tejun Heo977e6b92006-06-24 20:30:19 +09001396 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001397}
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001400 * ata_pio_need_iordy - check if iordy needed
1401 * @adev: ATA device
1402 *
1403 * Check if the current speed of the device requires IORDY. Used
1404 * by various controllers for chip configuration.
1405 */
1406
1407unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1408{
1409 int pio;
1410 int speed = adev->pio_mode - XFER_PIO_0;
1411
1412 if (speed < 2)
1413 return 0;
1414 if (speed > 2)
1415 return 1;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001416
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001417 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1418
1419 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
1420 pio = adev->id[ATA_ID_EIDE_PIO];
1421 /* Is the speed faster than the drive allows non IORDY ? */
1422 if (pio) {
1423 /* This is cycle times not frequency - watch the logic! */
1424 if (pio > 240) /* PIO2 is 240nS per cycle */
1425 return 1;
1426 return 0;
1427 }
1428 }
1429 return 0;
1430}
1431
1432/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001433 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001434 * @dev: target device
1435 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001436 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001437 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001438 *
1439 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1440 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001441 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1442 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001443 *
1444 * LOCKING:
1445 * Kernel thread context (may sleep)
1446 *
1447 * RETURNS:
1448 * 0 on success, -errno otherwise.
1449 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001450int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001451 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001452{
Tejun Heo3373efd2006-05-15 20:57:53 +09001453 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001454 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001455 struct ata_taskfile tf;
1456 unsigned int err_mask = 0;
1457 const char *reason;
1458 int rc;
1459
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001460 if (ata_msg_ctl(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001461 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1462 __FUNCTION__, ap->id, dev->devno);
Tejun Heo49016ac2006-02-21 02:12:11 +09001463
Tejun Heo49016ac2006-02-21 02:12:11 +09001464 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
1465
1466 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001467 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001468
1469 switch (class) {
1470 case ATA_DEV_ATA:
1471 tf.command = ATA_CMD_ID_ATA;
1472 break;
1473 case ATA_DEV_ATAPI:
1474 tf.command = ATA_CMD_ID_ATAPI;
1475 break;
1476 default:
1477 rc = -ENODEV;
1478 reason = "unsupported class";
1479 goto err_out;
1480 }
1481
1482 tf.protocol = ATA_PROT_PIO;
Tejun Heo800b3992006-12-03 21:34:13 +09001483 tf.flags |= ATA_TFLAG_POLLING; /* for polling presence detection */
Tejun Heo49016ac2006-02-21 02:12:11 +09001484
Tejun Heo3373efd2006-05-15 20:57:53 +09001485 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001486 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001487 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001488 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001489 DPRINTK("ata%u.%d: NODEV after polling detection\n",
1490 ap->id, dev->devno);
1491 return -ENOENT;
1492 }
1493
Tejun Heo49016ac2006-02-21 02:12:11 +09001494 rc = -EIO;
1495 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001496 goto err_out;
1497 }
1498
1499 swap_buf_le16(id, ATA_ID_WORDS);
1500
Tejun Heo49016ac2006-02-21 02:12:11 +09001501 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001502 rc = -EINVAL;
1503 reason = "device reports illegal type";
1504
1505 if (class == ATA_DEV_ATA) {
1506 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1507 goto err_out;
1508 } else {
1509 if (ata_id_is_ata(id))
1510 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001511 }
1512
Tejun Heobff04642006-11-10 18:08:10 +09001513 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001514 /*
1515 * The exact sequence expected by certain pre-ATA4 drives is:
1516 * SRST RESET
1517 * IDENTIFY
1518 * INITIALIZE DEVICE PARAMETERS
1519 * anything else..
1520 * Some drives were very specific about that exact sequence.
1521 */
1522 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001523 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001524 if (err_mask) {
1525 rc = -EIO;
1526 reason = "INIT_DEV_PARAMS failed";
1527 goto err_out;
1528 }
1529
1530 /* current CHS translation info (id[53-58]) might be
1531 * changed. reread the identify device info.
1532 */
Tejun Heobff04642006-11-10 18:08:10 +09001533 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09001534 goto retry;
1535 }
1536 }
1537
1538 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001539
Tejun Heo49016ac2006-02-21 02:12:11 +09001540 return 0;
1541
1542 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001543 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001544 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001545 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001546 return rc;
1547}
1548
Tejun Heo3373efd2006-05-15 20:57:53 +09001549static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001550{
Tejun Heo3373efd2006-05-15 20:57:53 +09001551 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001552}
1553
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001554static void ata_dev_config_ncq(struct ata_device *dev,
1555 char *desc, size_t desc_sz)
1556{
1557 struct ata_port *ap = dev->ap;
1558 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1559
1560 if (!ata_id_has_ncq(dev->id)) {
1561 desc[0] = '\0';
1562 return;
1563 }
Alan Cox6919a0a2006-10-27 19:08:46 -07001564 if (ata_device_blacklisted(dev) & ATA_HORKAGE_NONCQ) {
1565 snprintf(desc, desc_sz, "NCQ (not used)");
1566 return;
1567 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001568 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04001569 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001570 dev->flags |= ATA_DFLAG_NCQ;
1571 }
1572
1573 if (hdepth >= ddepth)
1574 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1575 else
1576 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1577}
1578
Brian Kinge6d902a2006-06-28 08:30:31 -05001579static void ata_set_port_max_cmd_len(struct ata_port *ap)
1580{
1581 int i;
1582
Jeff Garzikcca39742006-08-24 03:19:22 -04001583 if (ap->scsi_host) {
1584 unsigned int len = 0;
1585
Brian Kinge6d902a2006-06-28 08:30:31 -05001586 for (i = 0; i < ATA_MAX_DEVICES; i++)
Jeff Garzikcca39742006-08-24 03:19:22 -04001587 len = max(len, ap->device[i].cdb_len);
1588
1589 ap->scsi_host->max_cmd_len = len;
Brian Kinge6d902a2006-06-28 08:30:31 -05001590 }
1591}
1592
Tejun Heo49016ac2006-02-21 02:12:11 +09001593/**
Tejun Heoffeae412006-03-01 16:09:35 +09001594 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001595 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 *
Tejun Heoffeae412006-03-01 16:09:35 +09001597 * Configure @dev according to @dev->id. Generic and low-level
1598 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 *
1600 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001601 * Kernel thread context (may sleep)
1602 *
1603 * RETURNS:
1604 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09001606int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
Tejun Heo3373efd2006-05-15 20:57:53 +09001608 struct ata_port *ap = dev->ap;
Tejun Heoefdaedc2006-11-01 18:38:52 +09001609 int print_info = ap->eh_context.i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001610 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001611 unsigned int xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01001612 char revbuf[7]; /* XYZ-99\0 */
Brian Kinge6d902a2006-06-28 08:30:31 -05001613 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001615 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo88574552006-06-25 20:00:35 +09001616 ata_dev_printk(dev, KERN_INFO,
1617 "%s: ENTER/EXIT (host %u, dev %u) -- nodev\n",
1618 __FUNCTION__, ap->id, dev->devno);
Tejun Heoffeae412006-03-01 16:09:35 +09001619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
1621
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001622 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001623 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n",
1624 __FUNCTION__, ap->id, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001626 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001627 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001628 ata_dev_printk(dev, KERN_DEBUG,
1629 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1630 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001631 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001632 id[49], id[82], id[83], id[84],
1633 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001634
Tejun Heo208a9932006-03-05 17:55:58 +09001635 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001636 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001637 dev->max_sectors = 0;
1638 dev->cdb_len = 0;
1639 dev->n_sectors = 0;
1640 dev->cylinders = 0;
1641 dev->heads = 0;
1642 dev->sectors = 0;
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 /*
1645 * common ATA, ATAPI feature tests
1646 */
1647
Tejun Heoff8854b2006-03-06 04:31:56 +09001648 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001649 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001651 if (ata_msg_probe(ap))
1652 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 /* ATA-specific feature tests */
1655 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01001656 if (ata_id_is_cfa(id)) {
1657 if (id[162] & 1) /* CPRM may make this media unusable */
1658 ata_dev_printk(dev, KERN_WARNING, "ata%u: device %u supports DRM functions and may not be fully accessable.\n",
1659 ap->id, dev->devno);
1660 snprintf(revbuf, 7, "CFA");
1661 }
1662 else
1663 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
1664
Tejun Heo1148c3a2006-03-13 19:48:04 +09001665 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001666
Tejun Heo1148c3a2006-03-13 19:48:04 +09001667 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001668 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001669 char ncq_desc[20];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001670
Tejun Heo4c2d7212006-03-05 17:55:58 +09001671 lba_desc = "LBA";
1672 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001673 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001674 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001675 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001676
1677 if (dev->n_sectors >= (1UL << 28) &&
1678 ata_id_has_flush_ext(id))
1679 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001680 }
Albert Lee8bf62ec2005-05-12 15:29:42 -04001681
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001682 /* config NCQ */
1683 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1684
Albert Lee8bf62ec2005-05-12 15:29:42 -04001685 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001686 if (ata_msg_drv(ap) && print_info)
Alan Coxb352e572006-08-10 18:52:12 +01001687 ata_dev_printk(dev, KERN_INFO, "%s, "
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001688 "max %s, %Lu sectors: %s %s\n",
Alan Coxb352e572006-08-10 18:52:12 +01001689 revbuf,
Tejun Heof15a1da2006-05-15 20:57:56 +09001690 ata_mode_string(xfer_mask),
1691 (unsigned long long)dev->n_sectors,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001692 lba_desc, ncq_desc);
Tejun Heoffeae412006-03-01 16:09:35 +09001693 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001694 /* CHS */
1695
1696 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001697 dev->cylinders = id[1];
1698 dev->heads = id[3];
1699 dev->sectors = id[6];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001700
Tejun Heo1148c3a2006-03-13 19:48:04 +09001701 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001702 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001703 dev->cylinders = id[54];
1704 dev->heads = id[55];
1705 dev->sectors = id[56];
Albert Lee8bf62ec2005-05-12 15:29:42 -04001706 }
1707
1708 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001709 if (ata_msg_drv(ap) && print_info)
Alan Coxb352e572006-08-10 18:52:12 +01001710 ata_dev_printk(dev, KERN_INFO, "%s, "
Tejun Heof15a1da2006-05-15 20:57:56 +09001711 "max %s, %Lu sectors: CHS %u/%u/%u\n",
Alan Coxb352e572006-08-10 18:52:12 +01001712 revbuf,
Tejun Heof15a1da2006-05-15 20:57:56 +09001713 ata_mode_string(xfer_mask),
1714 (unsigned long long)dev->n_sectors,
Tejun Heo88574552006-06-25 20:00:35 +09001715 dev->cylinders, dev->heads,
1716 dev->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718
Albert Lee07f6f7d2005-11-01 19:33:20 +08001719 if (dev->id[59] & 0x100) {
1720 dev->multi_count = dev->id[59] & 0xff;
Borislav Petkov5afc8142006-06-27 14:51:25 +02001721 if (ata_msg_drv(ap) && print_info)
Tejun Heo88574552006-06-25 20:00:35 +09001722 ata_dev_printk(dev, KERN_INFO,
1723 "ata%u: dev %u multi count %u\n",
1724 ap->id, dev->devno, dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08001725 }
1726
Tejun Heo6e7846e2006-02-12 23:32:58 +09001727 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 }
1729
1730 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001731 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001732 char *cdb_intr_string = "";
1733
Tejun Heo1148c3a2006-03-13 19:48:04 +09001734 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001736 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001737 ata_dev_printk(dev, KERN_WARNING,
1738 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001739 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 goto err_out_nosup;
1741 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001742 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Albert Lee08a556d2006-03-31 13:29:04 +08001744 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001745 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001746 cdb_intr_string = ", CDB intr";
1747 }
Albert Lee312f7da2005-09-27 17:38:03 +08001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001750 if (ata_msg_drv(ap) && print_info)
Tejun Heo12436c32006-05-15 20:59:15 +09001751 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1752 ata_mode_string(xfer_mask),
1753 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755
Tejun Heo914ed352006-11-01 18:39:55 +09001756 /* determine max_sectors */
1757 dev->max_sectors = ATA_MAX_SECTORS;
1758 if (dev->flags & ATA_DFLAG_LBA48)
1759 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
1760
Alan Cox93590852006-09-12 16:55:12 +01001761 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
1762 /* Let the user know. We don't want to disallow opens for
1763 rescue purposes, or in case the vendor is just a blithering
1764 idiot */
1765 if (print_info) {
1766 ata_dev_printk(dev, KERN_WARNING,
1767"Drive reports diagnostics failure. This may indicate a drive\n");
1768 ata_dev_printk(dev, KERN_WARNING,
1769"fault or invalid emulation. Contact drive vendor for information.\n");
1770 }
1771 }
1772
Brian Kinge6d902a2006-06-28 08:30:31 -05001773 ata_set_port_max_cmd_len(ap);
Tejun Heo6e7846e2006-02-12 23:32:58 +09001774
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001775 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09001776 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02001777 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09001778 ata_dev_printk(dev, KERN_INFO,
1779 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09001780 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001781 dev->max_sectors = ATA_MAX_SECTORS;
1782 }
1783
1784 if (ap->ops->dev_config)
1785 ap->ops->dev_config(ap, dev);
1786
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001787 if (ata_msg_probe(ap))
1788 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
1789 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09001790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001793 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001794 ata_dev_printk(dev, KERN_DEBUG,
1795 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001796 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
1799/**
1800 * ata_bus_probe - Reset and probe ATA bus
1801 * @ap: Bus to probe
1802 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001803 * Master ATA bus probing function. Initiates a hardware-dependent
1804 * bus reset, then attempts to identify any devices found on
1805 * the bus.
1806 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001808 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 *
1810 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09001811 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 */
1813
Brian King80289162006-08-07 14:27:31 -05001814int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Tejun Heo28ca5c52006-03-01 16:09:36 +09001816 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001817 int tries[ATA_MAX_DEVICES];
1818 int i, rc, down_xfermask;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001819 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Tejun Heo28ca5c52006-03-01 16:09:36 +09001821 ata_port_probe(ap);
1822
Tejun Heo14d2bac2006-04-02 17:54:46 +09001823 for (i = 0; i < ATA_MAX_DEVICES; i++)
1824 tries[i] = ATA_PROBE_MAX_TRIES;
1825
1826 retry:
1827 down_xfermask = 0;
1828
Tejun Heo20444702006-03-13 01:57:01 +09001829 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09001830 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09001831
Tejun Heo52783c52006-05-31 18:28:22 +09001832 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1833 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09001834
Tejun Heo52783c52006-05-31 18:28:22 +09001835 if (!(ap->flags & ATA_FLAG_DISABLED) &&
1836 dev->class != ATA_DEV_UNKNOWN)
1837 classes[dev->devno] = dev->class;
1838 else
1839 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09001840
Tejun Heo52783c52006-05-31 18:28:22 +09001841 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09001842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Tejun Heo52783c52006-05-31 18:28:22 +09001844 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09001845
Alan Coxb6079ca2006-05-22 16:52:06 +01001846 /* after the reset the device state is PIO 0 and the controller
1847 state is undefined. Record the mode */
1848
1849 for (i = 0; i < ATA_MAX_DEVICES; i++)
1850 ap->device[i].pio_mode = XFER_PIO_0;
1851
Tejun Heo28ca5c52006-03-01 16:09:36 +09001852 /* read IDENTIFY page and configure devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001854 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09001855
Tejun Heoec573752006-04-11 22:26:29 +09001856 if (tries[i])
1857 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09001858
Tejun Heoe1211e32006-04-01 01:38:18 +09001859 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09001860 continue;
1861
Tejun Heobff04642006-11-10 18:08:10 +09001862 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
1863 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001864 if (rc)
1865 goto fail;
Tejun Heoffeae412006-03-01 16:09:35 +09001866
Tejun Heoefdaedc2006-11-01 18:38:52 +09001867 ap->eh_context.i.flags |= ATA_EHI_PRINTINFO;
1868 rc = ata_dev_configure(dev);
1869 ap->eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001870 if (rc)
1871 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
1873
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001874 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09001875 rc = ata_set_mode(ap, &dev);
Tejun Heo51713d32006-04-11 22:26:29 +09001876 if (rc) {
1877 down_xfermask = 1;
1878 goto fail;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001881 for (i = 0; i < ATA_MAX_DEVICES; i++)
1882 if (ata_dev_enabled(&ap->device[i]))
1883 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01001884
Tejun Heoe82cbdb2006-04-01 01:38:18 +09001885 /* no device present, disable port */
1886 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09001888 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09001889
1890 fail:
1891 switch (rc) {
1892 case -EINVAL:
1893 case -ENODEV:
1894 tries[dev->devno] = 0;
1895 break;
1896 case -EIO:
Tejun Heo3c567b72006-05-15 20:57:23 +09001897 sata_down_spd_limit(ap);
Tejun Heo14d2bac2006-04-02 17:54:46 +09001898 /* fall through */
1899 default:
1900 tries[dev->devno]--;
1901 if (down_xfermask &&
Tejun Heo3373efd2006-05-15 20:57:53 +09001902 ata_down_xfermask_limit(dev, tries[dev->devno] == 1))
Tejun Heo14d2bac2006-04-02 17:54:46 +09001903 tries[dev->devno] = 0;
1904 }
1905
Tejun Heoec573752006-04-11 22:26:29 +09001906 if (!tries[dev->devno]) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001907 ata_down_xfermask_limit(dev, 1);
1908 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09001909 }
1910
Tejun Heo14d2bac2006-04-02 17:54:46 +09001911 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
1913
1914/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04001915 * ata_port_probe - Mark port as enabled
1916 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04001918 * Modify @ap data structure such that the system
1919 * thinks that the entire port is enabled.
1920 *
Jeff Garzikcca39742006-08-24 03:19:22 -04001921 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04001922 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 */
1924
1925void ata_port_probe(struct ata_port *ap)
1926{
Tejun Heo198e0fe2006-04-02 18:51:52 +09001927 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
1930/**
Tejun Heo3be680b2005-12-19 22:35:02 +09001931 * sata_print_link_status - Print SATA link status
1932 * @ap: SATA port to printk link status about
1933 *
1934 * This function prints link speed and status of a SATA link.
1935 *
1936 * LOCKING:
1937 * None.
1938 */
1939static void sata_print_link_status(struct ata_port *ap)
1940{
Tejun Heo6d5f9732006-04-03 00:09:41 +09001941 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09001942
Tejun Heo81952c52006-05-15 20:57:47 +09001943 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09001944 return;
Tejun Heo81952c52006-05-15 20:57:47 +09001945 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001946
Tejun Heo81952c52006-05-15 20:57:47 +09001947 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09001948 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09001949 ata_port_printk(ap, KERN_INFO,
1950 "SATA link up %s (SStatus %X SControl %X)\n",
1951 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001952 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09001953 ata_port_printk(ap, KERN_INFO,
1954 "SATA link down (SStatus %X SControl %X)\n",
1955 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09001956 }
1957}
1958
1959/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04001960 * __sata_phy_reset - Wake/reset a low-level SATA PHY
1961 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04001963 * This function issues commands to standard SATA Sxxx
1964 * PHY registers, to wake up the phy (and device), and
1965 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 *
1967 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04001968 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 *
1970 */
1971void __sata_phy_reset(struct ata_port *ap)
1972{
1973 u32 sstatus;
1974 unsigned long timeout = jiffies + (HZ * 5);
1975
1976 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca892005-03-28 15:10:27 -05001977 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09001978 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09001979 /* Couldn't find anything in SATA I/II specs, but
1980 * AHCI-1.1 10.4.2 says at least 1 ms. */
1981 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
Tejun Heo81952c52006-05-15 20:57:47 +09001983 /* phy wake/clear reset */
1984 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 /* wait for phy to become ready, if necessary */
1987 do {
1988 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09001989 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 if ((sstatus & 0xf) != 1)
1991 break;
1992 } while (time_before(jiffies, timeout));
1993
Tejun Heo3be680b2005-12-19 22:35:02 +09001994 /* print link status */
1995 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05001996
Tejun Heo3be680b2005-12-19 22:35:02 +09001997 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09001998 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09002000 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Tejun Heo198e0fe2006-04-02 18:51:52 +09002003 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return;
2005
2006 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2007 ata_port_disable(ap);
2008 return;
2009 }
2010
2011 ap->cbl = ATA_CBL_SATA;
2012}
2013
2014/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002015 * sata_phy_reset - Reset SATA bus.
2016 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002018 * This function resets the SATA bus, and then probes
2019 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 *
2021 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002022 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 *
2024 */
2025void sata_phy_reset(struct ata_port *ap)
2026{
2027 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09002028 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return;
2030 ata_bus_reset(ap);
2031}
2032
2033/**
Alan Coxebdfca62006-03-23 15:38:34 +00002034 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002035 * @adev: device
2036 *
2037 * Obtain the other device on the same cable, or if none is
2038 * present NULL is returned
2039 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002040
Tejun Heo3373efd2006-05-15 20:57:53 +09002041struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002042{
Tejun Heo3373efd2006-05-15 20:57:53 +09002043 struct ata_port *ap = adev->ap;
Alan Coxebdfca62006-03-23 15:38:34 +00002044 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002045 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002046 return NULL;
2047 return pair;
2048}
2049
2050/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002051 * ata_port_disable - Disable port.
2052 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002054 * Modify @ap data structure such that the system
2055 * thinks that the entire port is disabled, and should
2056 * never attempt to probe or communicate with devices
2057 * on this port.
2058 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002059 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002060 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 */
2062
2063void ata_port_disable(struct ata_port *ap)
2064{
2065 ap->device[0].class = ATA_DEV_NONE;
2066 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002067 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
Tejun Heo1c3fae42006-04-02 20:53:28 +09002070/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002071 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09002072 * @ap: Port to adjust SATA spd limit for
2073 *
2074 * Adjust SATA spd limit of @ap downward. Note that this
2075 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002076 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002077 *
2078 * LOCKING:
2079 * Inherited from caller.
2080 *
2081 * RETURNS:
2082 * 0 on success, negative errno on failure
2083 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002084int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002085{
Tejun Heo81952c52006-05-15 20:57:47 +09002086 u32 sstatus, spd, mask;
2087 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002088
Tejun Heo81952c52006-05-15 20:57:47 +09002089 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
2090 if (rc)
2091 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002092
2093 mask = ap->sata_spd_limit;
2094 if (mask <= 1)
2095 return -EINVAL;
2096 highbit = fls(mask) - 1;
2097 mask &= ~(1 << highbit);
2098
Tejun Heo81952c52006-05-15 20:57:47 +09002099 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002100 if (spd <= 1)
2101 return -EINVAL;
2102 spd--;
2103 mask &= (1 << spd) - 1;
2104 if (!mask)
2105 return -EINVAL;
2106
2107 ap->sata_spd_limit = mask;
2108
Tejun Heof15a1da2006-05-15 20:57:56 +09002109 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
2110 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002111
2112 return 0;
2113}
2114
Tejun Heo3c567b72006-05-15 20:57:23 +09002115static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002116{
2117 u32 spd, limit;
2118
2119 if (ap->sata_spd_limit == UINT_MAX)
2120 limit = 0;
2121 else
2122 limit = fls(ap->sata_spd_limit);
2123
2124 spd = (*scontrol >> 4) & 0xf;
2125 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
2126
2127 return spd != limit;
2128}
2129
2130/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002131 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09002132 * @ap: Port in question
2133 *
2134 * Test whether the spd limit in SControl matches
2135 * @ap->sata_spd_limit. This function is used to determine
2136 * whether hardreset is necessary to apply SATA spd
2137 * configuration.
2138 *
2139 * LOCKING:
2140 * Inherited from caller.
2141 *
2142 * RETURNS:
2143 * 1 if SATA spd configuration is needed, 0 otherwise.
2144 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002145int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002146{
2147 u32 scontrol;
2148
Tejun Heo81952c52006-05-15 20:57:47 +09002149 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002150 return 0;
2151
Tejun Heo3c567b72006-05-15 20:57:23 +09002152 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002153}
2154
2155/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002156 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09002157 * @ap: Port to set SATA spd for
2158 *
2159 * Set SATA spd of @ap according to sata_spd_limit.
2160 *
2161 * LOCKING:
2162 * Inherited from caller.
2163 *
2164 * RETURNS:
2165 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002166 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002167 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002168int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002169{
2170 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002171 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002172
Tejun Heo81952c52006-05-15 20:57:47 +09002173 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2174 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002175
Tejun Heo3c567b72006-05-15 20:57:23 +09002176 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002177 return 0;
2178
Tejun Heo81952c52006-05-15 20:57:47 +09002179 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2180 return rc;
2181
Tejun Heo1c3fae42006-04-02 20:53:28 +09002182 return 1;
2183}
2184
Alan Cox452503f2005-10-21 19:01:32 -04002185/*
2186 * This mode timing computation functionality is ported over from
2187 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2188 */
2189/*
Alan Coxb352e572006-08-10 18:52:12 +01002190 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002191 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002192 * for UDMA6, which is currently supported only by Maxtor drives.
2193 *
2194 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002195 */
2196
2197static const struct ata_timing ata_timing[] = {
2198
2199 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
2200 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2201 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2202 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2203
Alan Coxb352e572006-08-10 18:52:12 +01002204 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
2205 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002206 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2207 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2208 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2209
2210/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002211
Alan Cox452503f2005-10-21 19:01:32 -04002212 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
2213 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2214 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002215
Alan Cox452503f2005-10-21 19:01:32 -04002216 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
2217 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2218 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2219
Alan Coxb352e572006-08-10 18:52:12 +01002220 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
2221 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002222 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2223 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2224
2225 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2226 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2227 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2228
2229/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2230
2231 { 0xFF }
2232};
2233
2234#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
2235#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
2236
2237static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2238{
2239 q->setup = EZ(t->setup * 1000, T);
2240 q->act8b = EZ(t->act8b * 1000, T);
2241 q->rec8b = EZ(t->rec8b * 1000, T);
2242 q->cyc8b = EZ(t->cyc8b * 1000, T);
2243 q->active = EZ(t->active * 1000, T);
2244 q->recover = EZ(t->recover * 1000, T);
2245 q->cycle = EZ(t->cycle * 1000, T);
2246 q->udma = EZ(t->udma * 1000, UT);
2247}
2248
2249void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2250 struct ata_timing *m, unsigned int what)
2251{
2252 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2253 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2254 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2255 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2256 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2257 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2258 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2259 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2260}
2261
2262static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
2263{
2264 const struct ata_timing *t;
2265
2266 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04002267 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04002268 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002269 return t;
Alan Cox452503f2005-10-21 19:01:32 -04002270}
2271
2272int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2273 struct ata_timing *t, int T, int UT)
2274{
2275 const struct ata_timing *s;
2276 struct ata_timing p;
2277
2278 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002279 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002280 */
Alan Cox452503f2005-10-21 19:01:32 -04002281
2282 if (!(s = ata_timing_find_mode(speed)))
2283 return -EINVAL;
2284
Albert Lee75b1f2f2005-11-16 17:06:18 +08002285 memcpy(t, s, sizeof(*s));
2286
Alan Cox452503f2005-10-21 19:01:32 -04002287 /*
2288 * If the drive is an EIDE drive, it can tell us it needs extended
2289 * PIO/MW_DMA cycle timing.
2290 */
2291
2292 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2293 memset(&p, 0, sizeof(p));
2294 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2295 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2296 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2297 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2298 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2299 }
2300 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2301 }
2302
2303 /*
2304 * Convert the timing to bus clock counts.
2305 */
2306
Albert Lee75b1f2f2005-11-16 17:06:18 +08002307 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002308
2309 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002310 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2311 * S.M.A.R.T * and some other commands. We have to ensure that the
2312 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002313 */
2314
Alanfd3367a2006-12-07 12:41:18 +00002315 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002316 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2317 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2318 }
2319
2320 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002321 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002322 */
2323
2324 if (t->act8b + t->rec8b < t->cyc8b) {
2325 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2326 t->rec8b = t->cyc8b - t->act8b;
2327 }
2328
2329 if (t->active + t->recover < t->cycle) {
2330 t->active += (t->cycle - (t->active + t->recover)) / 2;
2331 t->recover = t->cycle - t->active;
2332 }
2333
2334 return 0;
2335}
2336
Tejun Heocf176e12006-04-02 17:54:46 +09002337/**
2338 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002339 * @dev: Device to adjust xfer masks
2340 * @force_pio0: Force PIO0
2341 *
2342 * Adjust xfer masks of @dev downward. Note that this function
2343 * does not apply the change. Invoking ata_set_mode() afterwards
2344 * will apply the limit.
2345 *
2346 * LOCKING:
2347 * Inherited from caller.
2348 *
2349 * RETURNS:
2350 * 0 on success, negative errno on failure
2351 */
Tejun Heo3373efd2006-05-15 20:57:53 +09002352int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
Tejun Heocf176e12006-04-02 17:54:46 +09002353{
2354 unsigned long xfer_mask;
2355 int highbit;
2356
2357 xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask,
2358 dev->udma_mask);
2359
2360 if (!xfer_mask)
2361 goto fail;
2362 /* don't gear down to MWDMA from UDMA, go directly to PIO */
2363 if (xfer_mask & ATA_MASK_UDMA)
2364 xfer_mask &= ~ATA_MASK_MWDMA;
2365
2366 highbit = fls(xfer_mask) - 1;
2367 xfer_mask &= ~(1 << highbit);
2368 if (force_pio0)
2369 xfer_mask &= 1 << ATA_SHIFT_PIO;
2370 if (!xfer_mask)
2371 goto fail;
2372
2373 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2374 &dev->udma_mask);
2375
Tejun Heof15a1da2006-05-15 20:57:56 +09002376 ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n",
2377 ata_mode_string(xfer_mask));
Tejun Heocf176e12006-04-02 17:54:46 +09002378
2379 return 0;
2380
2381 fail:
2382 return -EINVAL;
2383}
2384
Tejun Heo3373efd2006-05-15 20:57:53 +09002385static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Tejun Heobaa1e782006-11-01 18:39:27 +09002387 struct ata_eh_context *ehc = &dev->ap->eh_context;
Tejun Heo83206a22006-03-24 15:25:31 +09002388 unsigned int err_mask;
2389 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Tejun Heoe8384602006-04-02 18:51:53 +09002391 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 if (dev->xfer_shift == ATA_SHIFT_PIO)
2393 dev->flags |= ATA_DFLAG_PIO;
2394
Tejun Heo3373efd2006-05-15 20:57:53 +09002395 err_mask = ata_dev_set_xfermode(dev);
Tejun Heo83206a22006-03-24 15:25:31 +09002396 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002397 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2398 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002399 return -EIO;
2400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Tejun Heobaa1e782006-11-01 18:39:27 +09002402 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo3373efd2006-05-15 20:57:53 +09002403 rc = ata_dev_revalidate(dev, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09002404 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002405 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002406 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002407
Tejun Heo23e71c32006-03-06 04:31:57 +09002408 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2409 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Tejun Heof15a1da2006-05-15 20:57:56 +09002411 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2412 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002413 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414}
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416/**
2417 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2418 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002419 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 *
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002421 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2422 * ata_set_mode() fails, pointer to the failing device is
2423 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002424 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002426 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002427 *
2428 * RETURNS:
2429 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 */
Tejun Heo1ad8e7f2006-04-02 18:51:53 +09002431int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
Tejun Heoe8e06192006-04-01 01:38:18 +09002433 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002434 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Tejun Heo3adcebb2006-05-15 20:57:37 +09002436 /* has private set_mode? */
Alanb229a7b2007-01-24 11:47:07 +00002437 if (ap->ops->set_mode)
2438 return ap->ops->set_mode(ap, r_failed_dev);
Tejun Heo3adcebb2006-05-15 20:57:37 +09002439
Tejun Heoa6d5a512006-03-06 04:31:57 +09002440 /* step 1: calculate xfer_mask */
2441 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002442 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002443
Tejun Heoe8e06192006-04-01 01:38:18 +09002444 dev = &ap->device[i];
2445
Tejun Heoe1211e32006-04-01 01:38:18 +09002446 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002447 continue;
2448
Tejun Heo3373efd2006-05-15 20:57:53 +09002449 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002450
Tejun Heoacf356b2006-03-24 14:07:50 +09002451 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2452 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2453 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2454 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002455
Tejun Heo4f659772006-04-01 01:38:18 +09002456 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002457 if (dev->dma_mode)
2458 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002459 }
Tejun Heo4f659772006-04-01 01:38:18 +09002460 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002461 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002462
2463 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002464 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2465 dev = &ap->device[i];
2466 if (!ata_dev_enabled(dev))
2467 continue;
2468
2469 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002470 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002471 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002472 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002473 }
2474
2475 dev->xfer_mode = dev->pio_mode;
2476 dev->xfer_shift = ATA_SHIFT_PIO;
2477 if (ap->ops->set_piomode)
2478 ap->ops->set_piomode(ap, dev);
2479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Tejun Heoa6d5a512006-03-06 04:31:57 +09002481 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002482 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2483 dev = &ap->device[i];
2484
2485 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2486 continue;
2487
2488 dev->xfer_mode = dev->dma_mode;
2489 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2490 if (ap->ops->set_dmamode)
2491 ap->ops->set_dmamode(ap, dev);
2492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
2494 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002495 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002496 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Alan18d90de2007-01-24 11:42:38 +00002498 /* don't update suspended devices' xfer mode */
Tejun Heo02670bf2006-07-03 16:07:26 +09002499 if (!ata_dev_ready(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002500 continue;
2501
Tejun Heo3373efd2006-05-15 20:57:53 +09002502 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002503 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002504 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Tejun Heoe8e06192006-04-01 01:38:18 +09002507 /* Record simplex status. If we selected DMA then the other
2508 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002509 */
Jeff Garzikcca39742006-08-24 03:19:22 -04002510 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
2511 ap->host->simplex_claimed = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002512
Tejun Heoe8e06192006-04-01 01:38:18 +09002513 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 if (ap->ops->post_set_mode)
2515 ap->ops->post_set_mode(ap);
2516
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002517 out:
2518 if (rc)
2519 *r_failed_dev = dev;
2520 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
2523/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002524 * ata_tf_to_host - issue ATA taskfile to host controller
2525 * @ap: port to which command is being issued
2526 * @tf: ATA taskfile register set
2527 *
2528 * Issues ATA taskfile register set to ATA host controller,
2529 * with proper synchronization with interrupt handler and
2530 * other threads.
2531 *
2532 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002533 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002534 */
2535
2536static inline void ata_tf_to_host(struct ata_port *ap,
2537 const struct ata_taskfile *tf)
2538{
2539 ap->ops->tf_load(ap, tf);
2540 ap->ops->exec_command(ap, tf);
2541}
2542
2543/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 * ata_busy_sleep - sleep until BSY clears, or timeout
2545 * @ap: port containing status register to be polled
2546 * @tmout_pat: impatience timeout
2547 * @tmout: overall timeout
2548 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002549 * Sleep until ATA Status register bit BSY clears,
2550 * or a timeout occurs.
2551 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09002552 * LOCKING:
2553 * Kernel thread context (may sleep).
2554 *
2555 * RETURNS:
2556 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09002558int ata_busy_sleep(struct ata_port *ap,
2559 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560{
2561 unsigned long timer_start, timeout;
2562 u8 status;
2563
2564 status = ata_busy_wait(ap, ATA_BUSY, 300);
2565 timer_start = jiffies;
2566 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002567 while (status != 0xff && (status & ATA_BUSY) &&
2568 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 msleep(50);
2570 status = ata_busy_wait(ap, ATA_BUSY, 3);
2571 }
2572
Tejun Heod1adc1b2006-10-09 18:32:15 +09002573 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09002574 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002575 "port is slow to respond, please be patient "
2576 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002579 while (status != 0xff && (status & ATA_BUSY) &&
2580 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 msleep(50);
2582 status = ata_chk_status(ap);
2583 }
2584
Tejun Heod1adc1b2006-10-09 18:32:15 +09002585 if (status == 0xff)
2586 return -ENODEV;
2587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002589 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002590 "(%lu secs, Status 0x%x)\n",
2591 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09002592 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 }
2594
2595 return 0;
2596}
2597
2598static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2599{
2600 struct ata_ioports *ioaddr = &ap->ioaddr;
2601 unsigned int dev0 = devmask & (1 << 0);
2602 unsigned int dev1 = devmask & (1 << 1);
2603 unsigned long timeout;
2604
2605 /* if device 0 was found in ata_devchk, wait for its
2606 * BSY bit to clear
2607 */
2608 if (dev0)
2609 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2610
2611 /* if device 1 was found in ata_devchk, wait for
2612 * register access, then wait for BSY to clear
2613 */
2614 timeout = jiffies + ATA_TMOUT_BOOT;
2615 while (dev1) {
2616 u8 nsect, lbal;
2617
2618 ap->ops->dev_select(ap, 1);
2619 if (ap->flags & ATA_FLAG_MMIO) {
2620 nsect = readb((void __iomem *) ioaddr->nsect_addr);
2621 lbal = readb((void __iomem *) ioaddr->lbal_addr);
2622 } else {
2623 nsect = inb(ioaddr->nsect_addr);
2624 lbal = inb(ioaddr->lbal_addr);
2625 }
2626 if ((nsect == 1) && (lbal == 1))
2627 break;
2628 if (time_after(jiffies, timeout)) {
2629 dev1 = 0;
2630 break;
2631 }
2632 msleep(50); /* give drive a breather */
2633 }
2634 if (dev1)
2635 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2636
2637 /* is all this really necessary? */
2638 ap->ops->dev_select(ap, 0);
2639 if (dev1)
2640 ap->ops->dev_select(ap, 1);
2641 if (dev0)
2642 ap->ops->dev_select(ap, 0);
2643}
2644
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645static unsigned int ata_bus_softreset(struct ata_port *ap,
2646 unsigned int devmask)
2647{
2648 struct ata_ioports *ioaddr = &ap->ioaddr;
2649
2650 DPRINTK("ata%u: bus reset via SRST\n", ap->id);
2651
2652 /* software reset. causes dev0 to be selected */
2653 if (ap->flags & ATA_FLAG_MMIO) {
2654 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2655 udelay(20); /* FIXME: flush */
2656 writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr);
2657 udelay(20); /* FIXME: flush */
2658 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2659 } else {
2660 outb(ap->ctl, ioaddr->ctl_addr);
2661 udelay(10);
2662 outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
2663 udelay(10);
2664 outb(ap->ctl, ioaddr->ctl_addr);
2665 }
2666
2667 /* spec mandates ">= 2ms" before checking status.
2668 * We wait 150ms, because that was the magic delay used for
2669 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
2670 * between when the ATA command register is written, and then
2671 * status is checked. Because waiting for "a while" before
2672 * checking status is fine, post SRST, we perform this magic
2673 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00002674 *
2675 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 */
2677 msleep(150);
2678
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002679 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09002680 * the bus shows 0xFF because the odd clown forgets the D7
2681 * pulldown resistor.
2682 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09002683 if (ata_check_status(ap) == 0xFF)
2684 return 0;
Alan Cox09c7ad72006-03-22 15:52:40 +00002685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 ata_bus_post_reset(ap, devmask);
2687
2688 return 0;
2689}
2690
2691/**
2692 * ata_bus_reset - reset host port and associated ATA channel
2693 * @ap: port to reset
2694 *
2695 * This is typically the first time we actually start issuing
2696 * commands to the ATA channel. We wait for BSY to clear, then
2697 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
2698 * result. Determine what devices, if any, are on the channel
2699 * by looking at the device 0/1 error register. Look at the signature
2700 * stored in each device's taskfile registers, to determine if
2701 * the device is ATA or ATAPI.
2702 *
2703 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002704 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04002705 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 *
2707 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09002708 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 */
2710
2711void ata_bus_reset(struct ata_port *ap)
2712{
2713 struct ata_ioports *ioaddr = &ap->ioaddr;
2714 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2715 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002716 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
2718 DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no);
2719
2720 /* determine if device 0/1 are present */
2721 if (ap->flags & ATA_FLAG_SATA_RESET)
2722 dev0 = 1;
2723 else {
2724 dev0 = ata_devchk(ap, 0);
2725 if (slave_possible)
2726 dev1 = ata_devchk(ap, 1);
2727 }
2728
2729 if (dev0)
2730 devmask |= (1 << 0);
2731 if (dev1)
2732 devmask |= (1 << 1);
2733
2734 /* select device 0 again */
2735 ap->ops->dev_select(ap, 0);
2736
2737 /* issue bus reset */
2738 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002739 if (ata_bus_softreset(ap, devmask))
2740 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
2742 /*
2743 * determine by signature whether we have ATA or ATAPI devices
2744 */
Tejun Heob4dc7622006-01-24 17:05:22 +09002745 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09002747 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
2749 /* re-enable interrupts */
2750 if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */
2751 ata_irq_on(ap);
2752
2753 /* is double-select really necessary? */
2754 if (ap->device[1].class != ATA_DEV_NONE)
2755 ap->ops->dev_select(ap, 1);
2756 if (ap->device[0].class != ATA_DEV_NONE)
2757 ap->ops->dev_select(ap, 0);
2758
2759 /* if no devices were detected, disable this port */
2760 if ((ap->device[0].class == ATA_DEV_NONE) &&
2761 (ap->device[1].class == ATA_DEV_NONE))
2762 goto err_out;
2763
2764 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
2765 /* set up device control for ATA_FLAG_SATA_RESET */
2766 if (ap->flags & ATA_FLAG_MMIO)
2767 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
2768 else
2769 outb(ap->ctl, ioaddr->ctl_addr);
2770 }
2771
2772 DPRINTK("EXIT\n");
2773 return;
2774
2775err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09002776 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 ap->ops->port_disable(ap);
2778
2779 DPRINTK("EXIT\n");
2780}
2781
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002782/**
2783 * sata_phy_debounce - debounce SATA phy status
2784 * @ap: ATA port to debounce SATA phy status for
2785 * @params: timing parameters { interval, duratinon, timeout } in msec
2786 *
2787 * Make sure SStatus of @ap reaches stable state, determined by
2788 * holding the same value where DET is not 1 for @duration polled
2789 * every @interval, before @timeout. Timeout constraints the
2790 * beginning of the stable state. Because, after hot unplugging,
2791 * DET gets stuck at 1 on some controllers, this functions waits
2792 * until timeout then returns 0 if DET is stable at 1.
2793 *
2794 * LOCKING:
2795 * Kernel thread context (may sleep)
2796 *
2797 * RETURNS:
2798 * 0 on success, -errno on failure.
2799 */
2800int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09002801{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002802 unsigned long interval_msec = params[0];
2803 unsigned long duration = params[1] * HZ / 1000;
2804 unsigned long timeout = jiffies + params[2] * HZ / 1000;
2805 unsigned long last_jiffies;
2806 u32 last, cur;
2807 int rc;
2808
2809 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2810 return rc;
2811 cur &= 0xf;
2812
2813 last = cur;
2814 last_jiffies = jiffies;
2815
2816 while (1) {
2817 msleep(interval_msec);
2818 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
2819 return rc;
2820 cur &= 0xf;
2821
2822 /* DET stable? */
2823 if (cur == last) {
2824 if (cur == 1 && time_before(jiffies, timeout))
2825 continue;
2826 if (time_after(jiffies, last_jiffies + duration))
2827 return 0;
2828 continue;
2829 }
2830
2831 /* unstable, start over */
2832 last = cur;
2833 last_jiffies = jiffies;
2834
2835 /* check timeout */
2836 if (time_after(jiffies, timeout))
2837 return -EBUSY;
2838 }
2839}
2840
2841/**
2842 * sata_phy_resume - resume SATA phy
2843 * @ap: ATA port to resume SATA phy for
2844 * @params: timing parameters { interval, duratinon, timeout } in msec
2845 *
2846 * Resume SATA phy of @ap and debounce it.
2847 *
2848 * LOCKING:
2849 * Kernel thread context (may sleep)
2850 *
2851 * RETURNS:
2852 * 0 on success, -errno on failure.
2853 */
2854int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
2855{
2856 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002857 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002858
Tejun Heo81952c52006-05-15 20:57:47 +09002859 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2860 return rc;
2861
Tejun Heo852ee162006-04-01 01:38:18 +09002862 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09002863
2864 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2865 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09002866
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002867 /* Some PHYs react badly if SStatus is pounded immediately
2868 * after resuming. Delay 200ms before debouncing.
2869 */
2870 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002871
Tejun Heod7bb4cc2006-05-31 18:27:46 +09002872 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09002873}
2874
Tejun Heof5914a42006-05-31 18:27:48 +09002875static void ata_wait_spinup(struct ata_port *ap)
2876{
2877 struct ata_eh_context *ehc = &ap->eh_context;
2878 unsigned long end, secs;
2879 int rc;
2880
2881 /* first, debounce phy if SATA */
2882 if (ap->cbl == ATA_CBL_SATA) {
Tejun Heoe9c83912006-07-03 16:07:26 +09002883 rc = sata_phy_debounce(ap, sata_deb_timing_hotplug);
Tejun Heof5914a42006-05-31 18:27:48 +09002884
2885 /* if debounced successfully and offline, no need to wait */
2886 if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap))
2887 return;
2888 }
2889
2890 /* okay, let's give the drive time to spin up */
2891 end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000;
2892 secs = ((end - jiffies) + HZ - 1) / HZ;
2893
2894 if (time_after(jiffies, end))
2895 return;
2896
2897 if (secs > 5)
2898 ata_port_printk(ap, KERN_INFO, "waiting for device to spin up "
2899 "(%lu secs)\n", secs);
2900
2901 schedule_timeout_uninterruptible(end - jiffies);
2902}
2903
2904/**
2905 * ata_std_prereset - prepare for reset
2906 * @ap: ATA port to be reset
2907 *
2908 * @ap is about to be reset. Initialize it.
2909 *
2910 * LOCKING:
2911 * Kernel thread context (may sleep)
2912 *
2913 * RETURNS:
2914 * 0 on success, -errno otherwise.
2915 */
2916int ata_std_prereset(struct ata_port *ap)
2917{
2918 struct ata_eh_context *ehc = &ap->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09002919 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09002920 int rc;
2921
Tejun Heo28324302006-07-03 16:07:26 +09002922 /* handle link resume & hotplug spinup */
2923 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
2924 (ap->flags & ATA_FLAG_HRST_TO_RESUME))
2925 ehc->i.action |= ATA_EH_HARDRESET;
2926
2927 if ((ehc->i.flags & ATA_EHI_HOTPLUGGED) &&
2928 (ap->flags & ATA_FLAG_SKIP_D2H_BSY))
2929 ata_wait_spinup(ap);
Tejun Heof5914a42006-05-31 18:27:48 +09002930
2931 /* if we're about to do hardreset, nothing more to do */
2932 if (ehc->i.action & ATA_EH_HARDRESET)
2933 return 0;
2934
2935 /* if SATA, resume phy */
2936 if (ap->cbl == ATA_CBL_SATA) {
Tejun Heof5914a42006-05-31 18:27:48 +09002937 rc = sata_phy_resume(ap, timing);
2938 if (rc && rc != -EOPNOTSUPP) {
2939 /* phy resume failed */
2940 ata_port_printk(ap, KERN_WARNING, "failed to resume "
2941 "link for reset (errno=%d)\n", rc);
2942 return rc;
2943 }
2944 }
2945
2946 /* Wait for !BSY if the controller can wait for the first D2H
2947 * Reg FIS and we don't know that no device is attached.
2948 */
2949 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap))
2950 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2951
2952 return 0;
2953}
2954
Tejun Heoc2bd5802006-01-24 17:05:22 +09002955/**
2956 * ata_std_softreset - reset host port via ATA SRST
2957 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09002958 * @classes: resulting classes of attached devices
2959 *
Tejun Heo52783c52006-05-31 18:28:22 +09002960 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09002961 *
2962 * LOCKING:
2963 * Kernel thread context (may sleep)
2964 *
2965 * RETURNS:
2966 * 0 on success, -errno otherwise.
2967 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09002968int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09002969{
2970 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
2971 unsigned int devmask = 0, err_mask;
2972 u8 err;
2973
2974 DPRINTK("ENTER\n");
2975
Tejun Heo81952c52006-05-15 20:57:47 +09002976 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09002977 classes[0] = ATA_DEV_NONE;
2978 goto out;
2979 }
2980
Tejun Heoc2bd5802006-01-24 17:05:22 +09002981 /* determine if device 0/1 are present */
2982 if (ata_devchk(ap, 0))
2983 devmask |= (1 << 0);
2984 if (slave_possible && ata_devchk(ap, 1))
2985 devmask |= (1 << 1);
2986
Tejun Heoc2bd5802006-01-24 17:05:22 +09002987 /* select device 0 again */
2988 ap->ops->dev_select(ap, 0);
2989
2990 /* issue bus reset */
2991 DPRINTK("about to softreset, devmask=%x\n", devmask);
2992 err_mask = ata_bus_softreset(ap, devmask);
2993 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002994 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
2995 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09002996 return -EIO;
2997 }
2998
2999 /* determine by signature whether we have ATA or ATAPI devices */
3000 classes[0] = ata_dev_try_classify(ap, 0, &err);
3001 if (slave_possible && err != 0x81)
3002 classes[1] = ata_dev_try_classify(ap, 1, &err);
3003
Tejun Heo3a397462006-02-10 23:58:48 +09003004 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09003005 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
3006 return 0;
3007}
3008
3009/**
Tejun Heob6103f62006-11-01 17:59:53 +09003010 * sata_port_hardreset - reset port via SATA phy reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003011 * @ap: port to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003012 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heoc2bd5802006-01-24 17:05:22 +09003013 *
3014 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003015 *
3016 * LOCKING:
3017 * Kernel thread context (may sleep)
3018 *
3019 * RETURNS:
3020 * 0 on success, -errno otherwise.
3021 */
Tejun Heob6103f62006-11-01 17:59:53 +09003022int sata_port_hardreset(struct ata_port *ap, const unsigned long *timing)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003023{
Tejun Heo852ee162006-04-01 01:38:18 +09003024 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003025 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003026
Tejun Heoc2bd5802006-01-24 17:05:22 +09003027 DPRINTK("ENTER\n");
3028
Tejun Heo3c567b72006-05-15 20:57:23 +09003029 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003030 /* SATA spec says nothing about how to reconfigure
3031 * spd. To be on the safe side, turn off phy during
3032 * reconfiguration. This works for at least ICH7 AHCI
3033 * and Sil3124.
3034 */
Tejun Heo81952c52006-05-15 20:57:47 +09003035 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003036 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003037
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003038 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003039
3040 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003041 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003042
Tejun Heo3c567b72006-05-15 20:57:23 +09003043 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003044 }
3045
3046 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09003047 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003048 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003049
Tejun Heo852ee162006-04-01 01:38:18 +09003050 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003051
3052 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003053 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003054
Tejun Heo1c3fae42006-04-02 20:53:28 +09003055 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003056 * 10.4.2 says at least 1 ms.
3057 */
3058 msleep(1);
3059
Tejun Heo1c3fae42006-04-02 20:53:28 +09003060 /* bring phy back */
Tejun Heob6103f62006-11-01 17:59:53 +09003061 rc = sata_phy_resume(ap, timing);
3062 out:
3063 DPRINTK("EXIT, rc=%d\n", rc);
3064 return rc;
3065}
3066
3067/**
3068 * sata_std_hardreset - reset host port via SATA phy reset
3069 * @ap: port to reset
3070 * @class: resulting class of attached device
3071 *
3072 * SATA phy-reset host port using DET bits of SControl register,
3073 * wait for !BSY and classify the attached device.
3074 *
3075 * LOCKING:
3076 * Kernel thread context (may sleep)
3077 *
3078 * RETURNS:
3079 * 0 on success, -errno otherwise.
3080 */
3081int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
3082{
3083 const unsigned long *timing = sata_ehc_deb_timing(&ap->eh_context);
3084 int rc;
3085
3086 DPRINTK("ENTER\n");
3087
3088 /* do hardreset */
3089 rc = sata_port_hardreset(ap, timing);
3090 if (rc) {
3091 ata_port_printk(ap, KERN_ERR,
3092 "COMRESET failed (errno=%d)\n", rc);
3093 return rc;
3094 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003095
Tejun Heoc2bd5802006-01-24 17:05:22 +09003096 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09003097 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09003098 *class = ATA_DEV_NONE;
3099 DPRINTK("EXIT, link offline\n");
3100 return 0;
3101 }
3102
3103 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003104 ata_port_printk(ap, KERN_ERR,
3105 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09003106 return -EIO;
3107 }
3108
Tejun Heo3a397462006-02-10 23:58:48 +09003109 ap->ops->dev_select(ap, 0); /* probably unnecessary */
3110
Tejun Heoc2bd5802006-01-24 17:05:22 +09003111 *class = ata_dev_try_classify(ap, 0, NULL);
3112
3113 DPRINTK("EXIT, class=%u\n", *class);
3114 return 0;
3115}
3116
3117/**
3118 * ata_std_postreset - standard postreset callback
3119 * @ap: the target ata_port
3120 * @classes: classes of attached devices
3121 *
3122 * This function is invoked after a successful reset. Note that
3123 * the device might have been reset more than once using
3124 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003125 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003126 * LOCKING:
3127 * Kernel thread context (may sleep)
3128 */
3129void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
3130{
Tejun Heodc2b3512006-05-15 20:58:00 +09003131 u32 serror;
3132
Tejun Heoc2bd5802006-01-24 17:05:22 +09003133 DPRINTK("ENTER\n");
3134
Tejun Heoc2bd5802006-01-24 17:05:22 +09003135 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09003136 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003137
Tejun Heodc2b3512006-05-15 20:58:00 +09003138 /* clear SError */
3139 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
3140 sata_scr_write(ap, SCR_ERROR, serror);
3141
Tejun Heo3a397462006-02-10 23:58:48 +09003142 /* re-enable interrupts */
Tejun Heoe3180492006-05-15 20:58:09 +09003143 if (!ap->ops->error_handler) {
3144 /* FIXME: hack. create a hook instead */
3145 if (ap->ioaddr.ctl_addr)
3146 ata_irq_on(ap);
3147 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003148
3149 /* is double-select really necessary? */
3150 if (classes[0] != ATA_DEV_NONE)
3151 ap->ops->dev_select(ap, 1);
3152 if (classes[1] != ATA_DEV_NONE)
3153 ap->ops->dev_select(ap, 0);
3154
Tejun Heo3a397462006-02-10 23:58:48 +09003155 /* bail out if no device is present */
3156 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3157 DPRINTK("EXIT, no device\n");
3158 return;
3159 }
3160
3161 /* set up device control */
3162 if (ap->ioaddr.ctl_addr) {
3163 if (ap->flags & ATA_FLAG_MMIO)
3164 writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr);
3165 else
3166 outb(ap->ctl, ap->ioaddr.ctl_addr);
3167 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003168
3169 DPRINTK("EXIT\n");
3170}
3171
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003172/**
Tejun Heo623a3122006-03-05 17:55:58 +09003173 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003174 * @dev: device to compare against
3175 * @new_class: class of the new device
3176 * @new_id: IDENTIFY page of the new device
3177 *
3178 * Compare @new_class and @new_id against @dev and determine
3179 * whether @dev is the device indicated by @new_class and
3180 * @new_id.
3181 *
3182 * LOCKING:
3183 * None.
3184 *
3185 * RETURNS:
3186 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3187 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003188static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3189 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003190{
3191 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003192 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3193 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003194 u64 new_n_sectors;
3195
3196 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003197 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3198 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003199 return 0;
3200 }
3201
Tejun Heoa0cf7332007-01-02 20:18:49 +09003202 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3203 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3204 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3205 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003206 new_n_sectors = ata_id_n_sectors(new_id);
3207
3208 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003209 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3210 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003211 return 0;
3212 }
3213
3214 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003215 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3216 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003217 return 0;
3218 }
3219
3220 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003221 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3222 "%llu != %llu\n",
3223 (unsigned long long)dev->n_sectors,
3224 (unsigned long long)new_n_sectors);
Tejun Heo623a3122006-03-05 17:55:58 +09003225 return 0;
3226 }
3227
3228 return 1;
3229}
3230
3231/**
3232 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09003233 * @dev: device to revalidate
Tejun Heobff04642006-11-10 18:08:10 +09003234 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003235 *
3236 * Re-read IDENTIFY page and make sure @dev is still attached to
3237 * the port.
3238 *
3239 * LOCKING:
3240 * Kernel thread context (may sleep)
3241 *
3242 * RETURNS:
3243 * 0 on success, negative errno otherwise
3244 */
Tejun Heobff04642006-11-10 18:08:10 +09003245int ata_dev_revalidate(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003246{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003247 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09003248 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003249 int rc;
3250
Tejun Heo5eb45c02006-04-02 18:51:52 +09003251 if (!ata_dev_enabled(dev)) {
3252 rc = -ENODEV;
3253 goto fail;
3254 }
Tejun Heo623a3122006-03-05 17:55:58 +09003255
Tejun Heofe635c72006-05-15 20:57:35 +09003256 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003257 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003258 if (rc)
3259 goto fail;
3260
3261 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09003262 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09003263 rc = -ENODEV;
3264 goto fail;
3265 }
3266
Tejun Heofe635c72006-05-15 20:57:35 +09003267 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09003268
3269 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003270 rc = ata_dev_configure(dev);
Tejun Heo5eb45c02006-04-02 18:51:52 +09003271 if (rc == 0)
3272 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003273
3274 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003275 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003276 return rc;
3277}
3278
Alan Cox6919a0a2006-10-27 19:08:46 -07003279struct ata_blacklist_entry {
3280 const char *model_num;
3281 const char *model_rev;
3282 unsigned long horkage;
3283};
3284
3285static const struct ata_blacklist_entry ata_device_blacklist [] = {
3286 /* Devices with DMA related problems under Linux */
3287 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3288 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3289 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3290 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3291 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3292 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3293 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3294 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3295 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3296 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3297 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3298 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3299 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3300 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3301 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3302 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3303 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3304 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3305 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3306 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3307 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3308 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3309 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3310 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3311 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3312 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
3313 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3314 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3315 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3316 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
3317
3318 /* Devices we expect to fail diagnostics */
3319
3320 /* Devices where NCQ should be avoided */
3321 /* NCQ is slow */
3322 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
3323
3324 /* Devices with NCQ limits */
3325
3326 /* End Marker */
3327 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003329
Alan Cox6919a0a2006-10-27 19:08:46 -07003330unsigned long ata_device_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003332 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3333 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003334 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003335
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003336 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3337 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Alan Cox6919a0a2006-10-27 19:08:46 -07003339 while (ad->model_num) {
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003340 if (!strcmp(ad->model_num, model_num)) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003341 if (ad->model_rev == NULL)
3342 return ad->horkage;
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003343 if (!strcmp(ad->model_rev, model_rev))
Alan Cox6919a0a2006-10-27 19:08:46 -07003344 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003345 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003346 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 return 0;
3349}
3350
Alan Cox6919a0a2006-10-27 19:08:46 -07003351static int ata_dma_blacklisted(const struct ata_device *dev)
3352{
3353 /* We don't support polling DMA.
3354 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3355 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3356 */
3357 if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) &&
3358 (dev->flags & ATA_DFLAG_CDB_INTR))
3359 return 1;
3360 return (ata_device_blacklisted(dev) & ATA_HORKAGE_NODMA) ? 1 : 0;
3361}
3362
Tejun Heoa6d5a512006-03-06 04:31:57 +09003363/**
3364 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003365 * @dev: Device to compute xfermask for
3366 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003367 * Compute supported xfermask of @dev and store it in
3368 * dev->*_mask. This function is responsible for applying all
3369 * known limits including host controller limits, device
3370 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003371 *
3372 * LOCKING:
3373 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003374 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003375static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376{
Tejun Heo3373efd2006-05-15 20:57:53 +09003377 struct ata_port *ap = dev->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04003378 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003379 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Tejun Heo37deecb2006-08-10 16:59:07 +09003381 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09003382 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3383 ap->mwdma_mask, ap->udma_mask);
3384
3385 /* Apply cable rule here. Don't apply it early because when
3386 * we handle hot plug the cable type can itself change.
3387 */
3388 if (ap->cbl == ATA_CBL_PATA40)
3389 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
Alan Coxfc085152006-10-10 14:28:11 -07003390 /* Apply drive side cable rule. Unknown or 80 pin cables reported
3391 * host side are checked drive side as well. Cases where we know a
3392 * 40wire cable is used safely for 80 are not checked here.
3393 */
3394 if (ata_drive_40wire(dev->id) && (ap->cbl == ATA_CBL_PATA_UNK || ap->cbl == ATA_CBL_PATA80))
3395 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
3396
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
Tejun Heo37deecb2006-08-10 16:59:07 +09003398 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
3399 dev->mwdma_mask, dev->udma_mask);
3400 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09003401
Alan Coxb352e572006-08-10 18:52:12 +01003402 /*
3403 * CFA Advanced TrueIDE timings are not allowed on a shared
3404 * cable
3405 */
3406 if (ata_dev_pair(dev)) {
3407 /* No PIO5 or PIO6 */
3408 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
3409 /* No MWDMA3 or MWDMA 4 */
3410 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
3411 }
3412
Tejun Heo37deecb2006-08-10 16:59:07 +09003413 if (ata_dma_blacklisted(dev)) {
3414 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09003415 ata_dev_printk(dev, KERN_WARNING,
3416 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09003417 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09003418
Jeff Garzikcca39742006-08-24 03:19:22 -04003419 if ((host->flags & ATA_HOST_SIMPLEX) && host->simplex_claimed) {
Tejun Heo37deecb2006-08-10 16:59:07 +09003420 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3421 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
3422 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01003423 }
Tejun Heo565083e2006-04-02 17:54:47 +09003424
Alan Cox5444a6f2006-03-27 18:58:20 +01003425 if (ap->ops->mode_filter)
3426 xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask);
3427
Tejun Heo565083e2006-04-02 17:54:47 +09003428 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3429 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430}
3431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 * @dev: Device to which command will be sent
3435 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003436 * Issue SET FEATURES - XFER MODE command to device @dev
3437 * on port @ap.
3438 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003440 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003441 *
3442 * RETURNS:
3443 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 */
3445
Tejun Heo3373efd2006-05-15 20:57:53 +09003446static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447{
Tejun Heoa0123702005-12-13 14:49:31 +09003448 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003449 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
3451 /* set up set-features taskfile */
3452 DPRINTK("set features - xfer mode\n");
3453
Tejun Heo3373efd2006-05-15 20:57:53 +09003454 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003455 tf.command = ATA_CMD_SET_FEATURES;
3456 tf.feature = SETFEATURES_XFER;
3457 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3458 tf.protocol = ATA_PROT_NODATA;
3459 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Tejun Heo3373efd2006-05-15 20:57:53 +09003461 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
Tejun Heo83206a22006-03-24 15:25:31 +09003463 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3464 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465}
3466
3467/**
Albert Lee8bf62ec2005-05-12 15:29:42 -04003468 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ec2005-05-12 15:29:42 -04003469 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003470 * @heads: Number of heads (taskfile parameter)
3471 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003472 *
3473 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003474 * Kernel thread context (may sleep)
3475 *
3476 * RETURNS:
3477 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ec2005-05-12 15:29:42 -04003478 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003479static unsigned int ata_dev_init_params(struct ata_device *dev,
3480 u16 heads, u16 sectors)
Albert Lee8bf62ec2005-05-12 15:29:42 -04003481{
Tejun Heoa0123702005-12-13 14:49:31 +09003482 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003483 unsigned int err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003484
3485 /* Number of sectors per track 1-255. Number of heads 1-16 */
3486 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003487 return AC_ERR_INVALID;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003488
3489 /* set up init dev params taskfile */
3490 DPRINTK("init dev params \n");
3491
Tejun Heo3373efd2006-05-15 20:57:53 +09003492 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003493 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3494 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3495 tf.protocol = ATA_PROT_NODATA;
3496 tf.nsect = sectors;
3497 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ec2005-05-12 15:29:42 -04003498
Tejun Heo3373efd2006-05-15 20:57:53 +09003499 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ec2005-05-12 15:29:42 -04003500
Tejun Heo6aff8f12006-02-15 18:24:09 +09003501 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3502 return err_mask;
Albert Lee8bf62ec2005-05-12 15:29:42 -04003503}
3504
3505/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003506 * ata_sg_clean - Unmap DMA memory associated with command
3507 * @qc: Command containing DMA memory to be released
3508 *
3509 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 *
3511 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003512 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09003514void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515{
3516 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003517 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003519 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
Tejun Heoa4631472006-02-11 19:11:13 +09003521 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3522 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
3524 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003525 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003527 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003529 /* if we padded the buffer out to 32-bit bound, and data
3530 * xfer direction is from-device, we must copy from the
3531 * pad buffer back into the supplied buffer
3532 */
3533 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3534 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3535
3536 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003537 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003538 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003539 /* restore last sg */
3540 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3541 if (pad_buf) {
3542 struct scatterlist *psg = &qc->pad_sgent;
3543 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3544 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003545 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003546 }
3547 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003548 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003549 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003550 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3551 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003552 /* restore sg */
3553 sg->length += qc->pad_len;
3554 if (pad_buf)
3555 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3556 pad_buf, qc->pad_len);
3557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
3559 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003560 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561}
3562
3563/**
3564 * ata_fill_sg - Fill PCI IDE PRD table
3565 * @qc: Metadata associated with taskfile to be transferred
3566 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003567 * Fill PCI IDE PRD (scatter-gather) table with segments
3568 * associated with the current disk command.
3569 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003571 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 *
3573 */
3574static void ata_fill_sg(struct ata_queued_cmd *qc)
3575{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003577 struct scatterlist *sg;
3578 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Tejun Heoa4631472006-02-11 19:11:13 +09003580 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003581 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
3583 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003584 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 u32 addr, offset;
3586 u32 sg_len, len;
3587
3588 /* determine if physical DMA addr spans 64K boundary.
3589 * Note h/w doesn't support 64-bit, so we unconditionally
3590 * truncate dma_addr_t to u32.
3591 */
3592 addr = (u32) sg_dma_address(sg);
3593 sg_len = sg_dma_len(sg);
3594
3595 while (sg_len) {
3596 offset = addr & 0xffff;
3597 len = sg_len;
3598 if ((offset + sg_len) > 0x10000)
3599 len = 0x10000 - offset;
3600
3601 ap->prd[idx].addr = cpu_to_le32(addr);
3602 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3603 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3604
3605 idx++;
3606 sg_len -= len;
3607 addr += len;
3608 }
3609 }
3610
3611 if (idx)
3612 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
3613}
3614/**
3615 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
3616 * @qc: Metadata associated with taskfile to check
3617 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003618 * Allow low-level driver to filter ATA PACKET commands, returning
3619 * a status indicating whether or not it is OK to use DMA for the
3620 * supplied PACKET command.
3621 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003623 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04003624 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 * RETURNS: 0 when ATAPI DMA can be used
3626 * nonzero otherwise
3627 */
3628int ata_check_atapi_dma(struct ata_queued_cmd *qc)
3629{
3630 struct ata_port *ap = qc->ap;
3631 int rc = 0; /* Assume ATAPI DMA is OK by default */
3632
3633 if (ap->ops->check_atapi_dma)
3634 rc = ap->ops->check_atapi_dma(qc);
3635
3636 return rc;
3637}
3638/**
3639 * ata_qc_prep - Prepare taskfile for submission
3640 * @qc: Metadata associated with taskfile to be prepared
3641 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003642 * Prepare ATA taskfile for submission.
3643 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003645 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 */
3647void ata_qc_prep(struct ata_queued_cmd *qc)
3648{
3649 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
3650 return;
3651
3652 ata_fill_sg(qc);
3653}
3654
Brian Kinge46834c2006-03-17 17:04:03 -06003655void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
3656
Jeff Garzik0cba6322005-05-30 19:49:12 -04003657/**
3658 * ata_sg_init_one - Associate command with memory buffer
3659 * @qc: Command to be associated
3660 * @buf: Memory buffer
3661 * @buflen: Length of memory buffer, in bytes.
3662 *
3663 * Initialize the data-related elements of queued_cmd @qc
3664 * to point to a single memory buffer, @buf of byte length @buflen.
3665 *
3666 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003667 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04003668 */
3669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
3671{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 qc->flags |= ATA_QCFLAG_SINGLE;
3673
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003674 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003676 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05003678 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
Tejun Heo61c05962006-11-14 22:35:43 +09003680 sg_init_one(&qc->sgent, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681}
3682
Jeff Garzik0cba6322005-05-30 19:49:12 -04003683/**
3684 * ata_sg_init - Associate command with scatter-gather table.
3685 * @qc: Command to be associated
3686 * @sg: Scatter-gather table.
3687 * @n_elem: Number of elements in s/g table.
3688 *
3689 * Initialize the data-related elements of queued_cmd @qc
3690 * to point to a scatter-gather table @sg, containing @n_elem
3691 * elements.
3692 *
3693 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003694 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04003695 */
3696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
3698 unsigned int n_elem)
3699{
3700 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003701 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003703 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704}
3705
3706/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003707 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
3708 * @qc: Command with memory buffer to be mapped.
3709 *
3710 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 *
3712 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003713 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 *
3715 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003716 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 */
3718
3719static int ata_sg_setup_one(struct ata_queued_cmd *qc)
3720{
3721 struct ata_port *ap = qc->ap;
3722 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003723 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003725 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003727 /* we must lengthen transfers to end on a 32-bit boundary */
3728 qc->pad_len = sg->length & 3;
3729 if (qc->pad_len) {
3730 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3731 struct scatterlist *psg = &qc->pad_sgent;
3732
Tejun Heoa4631472006-02-11 19:11:13 +09003733 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003734
3735 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3736
3737 if (qc->tf.flags & ATA_TFLAG_WRITE)
3738 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
3739 qc->pad_len);
3740
3741 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3742 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3743 /* trim sg */
3744 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09003745 if (sg->length == 0)
3746 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003747
3748 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
3749 sg->length, qc->pad_len);
3750 }
3751
Tejun Heo2e242fa2006-02-20 23:48:38 +09003752 if (trim_sg) {
3753 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05003754 goto skip_map;
3755 }
3756
Brian King2f1f6102006-03-23 17:30:15 -06003757 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04003758 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003759 if (dma_mapping_error(dma_address)) {
3760 /* restore sg */
3761 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04003766 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Tejun Heo2e242fa2006-02-20 23:48:38 +09003768skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
3770 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
3771
3772 return 0;
3773}
3774
3775/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003776 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
3777 * @qc: Command with scatter-gather table to be mapped.
3778 *
3779 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 *
3781 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003782 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 *
3784 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003785 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 *
3787 */
3788
3789static int ata_sg_setup(struct ata_queued_cmd *qc)
3790{
3791 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003792 struct scatterlist *sg = qc->__sg;
3793 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05003794 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795
3796 VPRINTK("ENTER, ata%u\n", ap->id);
Tejun Heoa4631472006-02-11 19:11:13 +09003797 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003799 /* we must lengthen transfers to end on a 32-bit boundary */
3800 qc->pad_len = lsg->length & 3;
3801 if (qc->pad_len) {
3802 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3803 struct scatterlist *psg = &qc->pad_sgent;
3804 unsigned int offset;
3805
Tejun Heoa4631472006-02-11 19:11:13 +09003806 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003807
3808 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
3809
3810 /*
3811 * psg->page/offset are used to copy to-be-written
3812 * data in this function or read data in ata_sg_clean.
3813 */
3814 offset = lsg->offset + lsg->length - qc->pad_len;
3815 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
3816 psg->offset = offset_in_page(offset);
3817
3818 if (qc->tf.flags & ATA_TFLAG_WRITE) {
3819 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3820 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003821 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003822 }
3823
3824 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
3825 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
3826 /* trim last sg */
3827 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05003828 if (lsg->length == 0)
3829 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003830
3831 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
3832 qc->n_elem - 1, lsg->length, qc->pad_len);
3833 }
3834
Jeff Garzike1410f22005-11-14 14:06:26 -05003835 pre_n_elem = qc->n_elem;
3836 if (trim_sg && pre_n_elem)
3837 pre_n_elem--;
3838
3839 if (!pre_n_elem) {
3840 n_elem = 0;
3841 goto skip_map;
3842 }
3843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06003845 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05003846 if (n_elem < 1) {
3847 /* restore last sg */
3848 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05003850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851
3852 DPRINTK("%d sg elements mapped\n", n_elem);
3853
Jeff Garzike1410f22005-11-14 14:06:26 -05003854skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 qc->n_elem = n_elem;
3856
3857 return 0;
3858}
3859
3860/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003861 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04003862 * @buf: Buffer to swap
3863 * @buf_words: Number of 16-bit words in buffer.
3864 *
3865 * Swap halves of 16-bit words if needed to convert from
3866 * little-endian byte order to native cpu byte order, or
3867 * vice-versa.
3868 *
3869 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04003870 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04003871 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872void swap_buf_le16(u16 *buf, unsigned int buf_words)
3873{
3874#ifdef __BIG_ENDIAN
3875 unsigned int i;
3876
3877 for (i = 0; i < buf_words; i++)
3878 buf[i] = le16_to_cpu(buf[i]);
3879#endif /* __BIG_ENDIAN */
3880}
3881
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003882/**
3883 * ata_mmio_data_xfer - Transfer data by MMIO
Jeff Garzikbf717b112006-06-13 20:27:03 -04003884 * @adev: device for this I/O
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003885 * @buf: data buffer
3886 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003887 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003888 *
3889 * Transfer data from/to the device data register by MMIO.
3890 *
3891 * LOCKING:
3892 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003893 */
3894
Tejun Heo88574552006-06-25 20:00:35 +09003895void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf,
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003896 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003898 struct ata_port *ap = adev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 unsigned int i;
3900 unsigned int words = buflen >> 1;
3901 u16 *buf16 = (u16 *) buf;
3902 void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr;
3903
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003904 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 if (write_data) {
3906 for (i = 0; i < words; i++)
3907 writew(le16_to_cpu(buf16[i]), mmio);
3908 } else {
3909 for (i = 0; i < words; i++)
3910 buf16[i] = cpu_to_le16(readw(mmio));
3911 }
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003912
3913 /* Transfer trailing 1 byte, if any. */
3914 if (unlikely(buflen & 0x01)) {
3915 u16 align_buf[1] = { 0 };
3916 unsigned char *trailing_buf = buf + buflen - 1;
3917
3918 if (write_data) {
3919 memcpy(align_buf, trailing_buf, 1);
3920 writew(le16_to_cpu(align_buf[0]), mmio);
3921 } else {
3922 align_buf[0] = cpu_to_le16(readw(mmio));
3923 memcpy(trailing_buf, align_buf, 1);
3924 }
3925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926}
3927
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003928/**
3929 * ata_pio_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003930 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003931 * @buf: data buffer
3932 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04003933 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003934 *
3935 * Transfer data from/to the device data register by PIO.
3936 *
3937 * LOCKING:
3938 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003939 */
3940
Tejun Heo88574552006-06-25 20:00:35 +09003941void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf,
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003942 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01003944 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003945 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003947 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 if (write_data)
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003949 outsw(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 else
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003951 insw(ap->ioaddr.data_addr, buf, words);
3952
3953 /* Transfer trailing 1 byte, if any. */
3954 if (unlikely(buflen & 0x01)) {
3955 u16 align_buf[1] = { 0 };
3956 unsigned char *trailing_buf = buf + buflen - 1;
3957
3958 if (write_data) {
3959 memcpy(align_buf, trailing_buf, 1);
3960 outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
3961 } else {
3962 align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr));
3963 memcpy(trailing_buf, align_buf, 1);
3964 }
3965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966}
3967
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003968/**
Alan Cox75e99582006-05-24 14:14:41 +01003969 * ata_pio_data_xfer_noirq - Transfer data by PIO
3970 * @adev: device to target
3971 * @buf: data buffer
3972 * @buflen: buffer length
3973 * @write_data: read/write
3974 *
Tejun Heo88574552006-06-25 20:00:35 +09003975 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01003976 * transfer with interrupts disabled.
3977 *
3978 * LOCKING:
3979 * Inherited from caller.
3980 */
3981
3982void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
3983 unsigned int buflen, int write_data)
3984{
3985 unsigned long flags;
3986 local_irq_save(flags);
3987 ata_pio_data_xfer(adev, buf, buflen, write_data);
3988 local_irq_restore(flags);
3989}
3990
3991
3992/**
Albert Lee6ae4cfb2005-08-12 14:15:34 +08003993 * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data.
3994 * @qc: Command on going
3995 *
3996 * Transfer ATA_SECT_SIZE of data from/to the ATA device.
3997 *
3998 * LOCKING:
3999 * Inherited from caller.
4000 */
4001
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002static void ata_pio_sector(struct ata_queued_cmd *qc)
4003{
4004 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004005 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 struct ata_port *ap = qc->ap;
4007 struct page *page;
4008 unsigned int offset;
4009 unsigned char *buf;
4010
Tejun Heo726f0782007-01-03 17:30:39 +09004011 if (qc->curbytes == qc->nbytes - ATA_SECT_SIZE)
Albert Lee14be71f2005-09-27 17:36:35 +08004012 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
4014 page = sg[qc->cursg].page;
Tejun Heo726f0782007-01-03 17:30:39 +09004015 offset = sg[qc->cursg].offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016
4017 /* get the current page and offset */
4018 page = nth_page(page, (offset >> PAGE_SHIFT));
4019 offset %= PAGE_SIZE;
4020
Albert Lee7282aa42005-10-09 09:46:07 -04004021 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4022
Albert Lee91b8b312005-10-09 09:48:44 -04004023 if (PageHighMem(page)) {
4024 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004025
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004026 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004027 local_irq_save(flags);
4028 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004029
Albert Lee91b8b312005-10-09 09:48:44 -04004030 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004031 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004032
4033 kunmap_atomic(buf, KM_IRQ0);
4034 local_irq_restore(flags);
4035 } else {
4036 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004037 ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
Tejun Heo726f0782007-01-03 17:30:39 +09004040 qc->curbytes += ATA_SECT_SIZE;
4041 qc->cursg_ofs += ATA_SECT_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
Tejun Heo726f0782007-01-03 17:30:39 +09004043 if (qc->cursg_ofs == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 qc->cursg++;
4045 qc->cursg_ofs = 0;
4046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004049/**
Albert Lee07f6f7d2005-11-01 19:33:20 +08004050 * ata_pio_sectors - Transfer one or many 512-byte sectors.
4051 * @qc: Command on going
4052 *
Jeff Garzikc81e29b2006-05-24 01:49:12 -04004053 * Transfer one or many ATA_SECT_SIZE of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08004054 * ATA device for the DRQ request.
4055 *
4056 * LOCKING:
4057 * Inherited from caller.
4058 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
Albert Lee07f6f7d2005-11-01 19:33:20 +08004060static void ata_pio_sectors(struct ata_queued_cmd *qc)
4061{
4062 if (is_multi_taskfile(&qc->tf)) {
4063 /* READ/WRITE MULTIPLE */
4064 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
Jeff Garzik587005d2006-02-11 18:17:32 -05004066 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004067
Tejun Heo726f0782007-01-03 17:30:39 +09004068 nsect = min((qc->nbytes - qc->curbytes) / ATA_SECT_SIZE,
4069 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004070 while (nsect--)
4071 ata_pio_sector(qc);
4072 } else
4073 ata_pio_sector(qc);
4074}
4075
4076/**
Albert Leec71c1852005-10-04 06:03:45 -04004077 * atapi_send_cdb - Write CDB bytes to hardware
4078 * @ap: Port to which ATAPI device is attached.
4079 * @qc: Taskfile currently active
4080 *
4081 * When device has indicated its readiness to accept
4082 * a CDB, this function is called. Send the CDB.
4083 *
4084 * LOCKING:
4085 * caller.
4086 */
4087
4088static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
4089{
4090 /* send SCSI cdb */
4091 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05004092 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04004093
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004094 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04004095 ata_altstatus(ap); /* flush */
4096
4097 switch (qc->tf.protocol) {
4098 case ATA_PROT_ATAPI:
4099 ap->hsm_task_state = HSM_ST;
4100 break;
4101 case ATA_PROT_ATAPI_NODATA:
4102 ap->hsm_task_state = HSM_ST_LAST;
4103 break;
4104 case ATA_PROT_ATAPI_DMA:
4105 ap->hsm_task_state = HSM_ST_LAST;
4106 /* initiate bmdma */
4107 ap->ops->bmdma_start(qc);
4108 break;
4109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110}
4111
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004112/**
4113 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
4114 * @qc: Command on going
4115 * @bytes: number of bytes
4116 *
4117 * Transfer Transfer data from/to the ATAPI device.
4118 *
4119 * LOCKING:
4120 * Inherited from caller.
4121 *
4122 */
4123
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
4125{
4126 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004127 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 struct ata_port *ap = qc->ap;
4129 struct page *page;
4130 unsigned char *buf;
4131 unsigned int offset, count;
4132
Albert Lee563a6e12005-08-12 14:17:50 +08004133 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08004134 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
4136next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08004137 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004138 /*
Albert Lee563a6e12005-08-12 14:17:50 +08004139 * The end of qc->sg is reached and the device expects
4140 * more data to transfer. In order not to overrun qc->sg
4141 * and fulfill length specified in the byte count register,
4142 * - for read case, discard trailing data from the device
4143 * - for write case, padding zero data to the device
4144 */
4145 u16 pad_buf[1] = { 0 };
4146 unsigned int words = bytes >> 1;
4147 unsigned int i;
4148
4149 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09004150 ata_dev_printk(qc->dev, KERN_WARNING,
4151 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08004152
4153 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004154 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08004155
Albert Lee14be71f2005-09-27 17:36:35 +08004156 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08004157 return;
4158 }
4159
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004160 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 page = sg->page;
4163 offset = sg->offset + qc->cursg_ofs;
4164
4165 /* get the current page and offset */
4166 page = nth_page(page, (offset >> PAGE_SHIFT));
4167 offset %= PAGE_SIZE;
4168
Albert Lee6952df02005-06-06 15:56:03 +08004169 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04004170 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
4172 /* don't cross page boundaries */
4173 count = min(count, (unsigned int)PAGE_SIZE - offset);
4174
Albert Lee7282aa42005-10-09 09:46:07 -04004175 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4176
Albert Lee91b8b312005-10-09 09:48:44 -04004177 if (PageHighMem(page)) {
4178 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004179
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004180 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004181 local_irq_save(flags);
4182 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004183
Albert Lee91b8b312005-10-09 09:48:44 -04004184 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004185 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004186
4187 kunmap_atomic(buf, KM_IRQ0);
4188 local_irq_restore(flags);
4189 } else {
4190 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004191 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
4194 bytes -= count;
4195 qc->curbytes += count;
4196 qc->cursg_ofs += count;
4197
Albert Lee32529e02005-05-26 03:49:42 -04004198 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 qc->cursg++;
4200 qc->cursg_ofs = 0;
4201 }
4202
Albert Lee563a6e12005-08-12 14:17:50 +08004203 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205}
4206
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004207/**
4208 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
4209 * @qc: Command on going
4210 *
4211 * Transfer Transfer data from/to the ATAPI device.
4212 *
4213 * LOCKING:
4214 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004215 */
4216
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217static void atapi_pio_bytes(struct ata_queued_cmd *qc)
4218{
4219 struct ata_port *ap = qc->ap;
4220 struct ata_device *dev = qc->dev;
4221 unsigned int ireason, bc_lo, bc_hi, bytes;
4222 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
4223
Albert Leeeec4c3f2006-05-18 17:51:10 +08004224 /* Abuse qc->result_tf for temp storage of intermediate TF
4225 * here to save some kernel stack usage.
4226 * For normal completion, qc->result_tf is not relevant. For
4227 * error, qc->result_tf is later overwritten by ata_qc_complete().
4228 * So, the correctness of qc->result_tf is not affected.
4229 */
4230 ap->ops->tf_read(ap, &qc->result_tf);
4231 ireason = qc->result_tf.nsect;
4232 bc_lo = qc->result_tf.lbam;
4233 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 bytes = (bc_hi << 8) | bc_lo;
4235
4236 /* shall be cleared to zero, indicating xfer of data */
4237 if (ireason & (1 << 0))
4238 goto err_out;
4239
4240 /* make sure transfer direction matches expected */
4241 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
4242 if (do_write != i_write)
4243 goto err_out;
4244
Albert Lee312f7da2005-09-27 17:38:03 +08004245 VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes);
4246
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 __atapi_pio_bytes(qc, bytes);
4248
4249 return;
4250
4251err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09004252 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09004253 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08004254 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255}
4256
4257/**
Albert Leec234fb02006-03-25 17:58:38 +08004258 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
4259 * @ap: the target ata_port
4260 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 *
Albert Leec234fb02006-03-25 17:58:38 +08004262 * RETURNS:
4263 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 */
Albert Leec234fb02006-03-25 17:58:38 +08004265
4266static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267{
Albert Leec234fb02006-03-25 17:58:38 +08004268 if (qc->tf.flags & ATA_TFLAG_POLLING)
4269 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
Albert Leec234fb02006-03-25 17:58:38 +08004271 if (ap->hsm_task_state == HSM_ST_FIRST) {
4272 if (qc->tf.protocol == ATA_PROT_PIO &&
4273 (qc->tf.flags & ATA_TFLAG_WRITE))
4274 return 1;
4275
4276 if (is_atapi_taskfile(&qc->tf) &&
4277 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
4278 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 }
4280
Albert Leec234fb02006-03-25 17:58:38 +08004281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282}
4283
Albert Leec234fb02006-03-25 17:58:38 +08004284/**
Tejun Heoc17ea202006-05-15 20:59:29 +09004285 * ata_hsm_qc_complete - finish a qc running on standard HSM
4286 * @qc: Command to complete
4287 * @in_wq: 1 if called from workqueue, 0 otherwise
4288 *
4289 * Finish @qc which is running on standard HSM.
4290 *
4291 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004292 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09004293 * Otherwise, none on entry and grabs host lock.
4294 */
4295static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
4296{
4297 struct ata_port *ap = qc->ap;
4298 unsigned long flags;
4299
4300 if (ap->ops->error_handler) {
4301 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004302 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004303
Jeff Garzikcca39742006-08-24 03:19:22 -04004304 /* EH might have kicked in while host lock is
4305 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09004306 */
4307 qc = ata_qc_from_tag(ap, qc->tag);
4308 if (qc) {
4309 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
4310 ata_irq_on(ap);
4311 ata_qc_complete(qc);
4312 } else
4313 ata_port_freeze(ap);
4314 }
4315
Jeff Garzikba6a1302006-06-22 23:46:10 -04004316 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004317 } else {
4318 if (likely(!(qc->err_mask & AC_ERR_HSM)))
4319 ata_qc_complete(qc);
4320 else
4321 ata_port_freeze(ap);
4322 }
4323 } else {
4324 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004325 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004326 ata_irq_on(ap);
4327 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04004328 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004329 } else
4330 ata_qc_complete(qc);
4331 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04004332
4333 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09004334}
4335
4336/**
Albert Leebb5cb292006-03-25 17:48:02 +08004337 * ata_hsm_move - move the HSM to the next state.
4338 * @ap: the target ata_port
4339 * @qc: qc on going
4340 * @status: current device status
4341 * @in_wq: 1 if called from workqueue, 0 otherwise
4342 *
4343 * RETURNS:
4344 * 1 when poll next status needed, 0 otherwise.
4345 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004346int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4347 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348{
Albert Leebb5cb292006-03-25 17:48:02 +08004349 unsigned long flags = 0;
4350 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
Albert Lee6912ccd2006-03-25 17:45:49 +08004352 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004353
Albert Leebb5cb292006-03-25 17:48:02 +08004354 /* Make sure ata_qc_issue_prot() does not throw things
4355 * like DMA polling into the workqueue. Notice that
4356 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004357 */
Albert Leec234fb02006-03-25 17:58:38 +08004358 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004359
Albert Leee2cec772006-03-25 17:43:49 +08004360fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004361 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
4362 ap->id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
Albert Leee2cec772006-03-25 17:43:49 +08004364 switch (ap->hsm_task_state) {
4365 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004366 /* Send first data block or PACKET CDB */
4367
4368 /* If polling, we will stay in the work queue after
4369 * sending the data. Otherwise, interrupt handler
4370 * takes over after sending the data.
4371 */
4372 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4373
Albert Leee2cec772006-03-25 17:43:49 +08004374 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004375 if (unlikely((status & ATA_DRQ) == 0)) {
4376 /* handle BSY=0, DRQ=0 as error */
4377 if (likely(status & (ATA_ERR | ATA_DF)))
4378 /* device stops HSM for abort/error */
4379 qc->err_mask |= AC_ERR_DEV;
4380 else
4381 /* HSM violation. Let EH handle this */
4382 qc->err_mask |= AC_ERR_HSM;
4383
Albert Leee2cec772006-03-25 17:43:49 +08004384 ap->hsm_task_state = HSM_ST_ERR;
4385 goto fsm_start;
4386 }
4387
Albert Lee71601952006-03-25 18:11:12 +08004388 /* Device should not ask for data transfer (DRQ=1)
4389 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004390 * We ignore DRQ here and stop the HSM by
4391 * changing hsm_task_state to HSM_ST_ERR and
4392 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004393 */
4394 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4395 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4396 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004397 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004398 ap->hsm_task_state = HSM_ST_ERR;
4399 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004400 }
4401
Albert Leebb5cb292006-03-25 17:48:02 +08004402 /* Send the CDB (atapi) or the first data block (ata pio out).
4403 * During the state transition, interrupt handler shouldn't
4404 * be invoked before the data transfer is complete and
4405 * hsm_task_state is changed. Hence, the following locking.
4406 */
4407 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004408 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004409
Albert Leebb5cb292006-03-25 17:48:02 +08004410 if (qc->tf.protocol == ATA_PROT_PIO) {
4411 /* PIO data out protocol.
4412 * send first data block.
4413 */
4414
4415 /* ata_pio_sectors() might change the state
4416 * to HSM_ST_LAST. so, the state is changed here
4417 * before ata_pio_sectors().
4418 */
4419 ap->hsm_task_state = HSM_ST;
4420 ata_pio_sectors(qc);
4421 ata_altstatus(ap); /* flush */
4422 } else
4423 /* send CDB */
4424 atapi_send_cdb(ap, qc);
4425
4426 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004427 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004428
4429 /* if polling, ata_pio_task() handles the rest.
4430 * otherwise, interrupt handler takes over from here.
4431 */
Albert Leee2cec772006-03-25 17:43:49 +08004432 break;
4433
4434 case HSM_ST:
4435 /* complete command or read/write the data register */
4436 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4437 /* ATAPI PIO protocol */
4438 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004439 /* No more data to transfer or device error.
4440 * Device error will be tagged in HSM_ST_LAST.
4441 */
Albert Leee2cec772006-03-25 17:43:49 +08004442 ap->hsm_task_state = HSM_ST_LAST;
4443 goto fsm_start;
4444 }
4445
Albert Lee71601952006-03-25 18:11:12 +08004446 /* Device should not ask for data transfer (DRQ=1)
4447 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004448 * We ignore DRQ here and stop the HSM by
4449 * changing hsm_task_state to HSM_ST_ERR and
4450 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004451 */
4452 if (unlikely(status & (ATA_ERR | ATA_DF))) {
4453 printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n",
4454 ap->id, status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004455 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004456 ap->hsm_task_state = HSM_ST_ERR;
4457 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004458 }
4459
Albert Leee2cec772006-03-25 17:43:49 +08004460 atapi_pio_bytes(qc);
4461
4462 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4463 /* bad ireason reported by device */
4464 goto fsm_start;
4465
4466 } else {
4467 /* ATA PIO protocol */
4468 if (unlikely((status & ATA_DRQ) == 0)) {
4469 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004470 if (likely(status & (ATA_ERR | ATA_DF)))
4471 /* device stops HSM for abort/error */
4472 qc->err_mask |= AC_ERR_DEV;
4473 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09004474 /* HSM violation. Let EH handle this.
4475 * Phantom devices also trigger this
4476 * condition. Mark hint.
4477 */
4478 qc->err_mask |= AC_ERR_HSM |
4479 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08004480
Albert Leee2cec772006-03-25 17:43:49 +08004481 ap->hsm_task_state = HSM_ST_ERR;
4482 goto fsm_start;
4483 }
4484
Albert Leeeee6c322006-04-01 17:38:43 +08004485 /* For PIO reads, some devices may ask for
4486 * data transfer (DRQ=1) alone with ERR=1.
4487 * We respect DRQ here and transfer one
4488 * block of junk data before changing the
4489 * hsm_task_state to HSM_ST_ERR.
4490 *
4491 * For PIO writes, ERR=1 DRQ=1 doesn't make
4492 * sense since the data block has been
4493 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004494 */
4495 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004496 /* data might be corrputed */
4497 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004498
4499 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4500 ata_pio_sectors(qc);
4501 ata_altstatus(ap);
4502 status = ata_wait_idle(ap);
4503 }
4504
Albert Lee3655d1d2006-05-19 11:43:04 +08004505 if (status & (ATA_BUSY | ATA_DRQ))
4506 qc->err_mask |= AC_ERR_HSM;
4507
Albert Leeeee6c322006-04-01 17:38:43 +08004508 /* ata_pio_sectors() might change the
4509 * state to HSM_ST_LAST. so, the state
4510 * is changed after ata_pio_sectors().
4511 */
4512 ap->hsm_task_state = HSM_ST_ERR;
4513 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004514 }
4515
Albert Leee2cec772006-03-25 17:43:49 +08004516 ata_pio_sectors(qc);
4517
4518 if (ap->hsm_task_state == HSM_ST_LAST &&
4519 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4520 /* all data read */
4521 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004522 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004523 goto fsm_start;
4524 }
4525 }
4526
4527 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004528 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004529 break;
4530
4531 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004532 if (unlikely(!ata_ok(status))) {
4533 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004534 ap->hsm_task_state = HSM_ST_ERR;
4535 goto fsm_start;
4536 }
4537
4538 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004539 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
4540 ap->id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004541
Albert Lee6912ccd2006-03-25 17:45:49 +08004542 WARN_ON(qc->err_mask);
4543
Albert Leee2cec772006-03-25 17:43:49 +08004544 ap->hsm_task_state = HSM_ST_IDLE;
4545
4546 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004547 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004548
4549 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004550 break;
4551
4552 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004553 /* make sure qc->err_mask is available to
4554 * know what's wrong and recover
4555 */
4556 WARN_ON(qc->err_mask == 0);
4557
4558 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004559
Albert Lee999bb6f2006-03-25 18:07:48 +08004560 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004561 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004562
4563 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004564 break;
4565 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004566 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004567 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004568 }
4569
Albert Leebb5cb292006-03-25 17:48:02 +08004570 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571}
4572
David Howells65f27f32006-11-22 14:55:48 +00004573static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574{
David Howells65f27f32006-11-22 14:55:48 +00004575 struct ata_port *ap =
4576 container_of(work, struct ata_port, port_task.work);
4577 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08004578 u8 status;
4579 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004580
4581fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004582 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
Albert Leea1af3732006-03-25 17:50:15 +08004584 /*
4585 * This is purely heuristic. This is a fast path.
4586 * Sometimes when we enter, BSY will be cleared in
4587 * a chk-status or two. If not, the drive is probably seeking
4588 * or something. Snooze for a couple msecs, then
4589 * chk-status again. If still busy, queue delayed work.
4590 */
4591 status = ata_busy_wait(ap, ATA_BUSY, 5);
4592 if (status & ATA_BUSY) {
4593 msleep(2);
4594 status = ata_busy_wait(ap, ATA_BUSY, 10);
4595 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004596 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004597 return;
4598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 }
4600
Albert Leea1af3732006-03-25 17:50:15 +08004601 /* move the HSM */
4602 poll_next = ata_hsm_move(ap, qc, status, 1);
4603
4604 /* another command or interrupt handler
4605 * may be running at this point.
4606 */
4607 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004608 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609}
4610
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 * ata_qc_new - Request an available ATA command, for queueing
4613 * @ap: Port associated with device @dev
4614 * @dev: Device from whom we request an available command structure
4615 *
4616 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004617 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 */
4619
4620static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4621{
4622 struct ata_queued_cmd *qc = NULL;
4623 unsigned int i;
4624
Tejun Heoe3180492006-05-15 20:58:09 +09004625 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09004626 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09004627 return NULL;
4628
Tejun Heo2ab7db12006-05-15 20:58:02 +09004629 /* the last tag is reserved for internal command. */
4630 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004631 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004632 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 break;
4634 }
4635
4636 if (qc)
4637 qc->tag = i;
4638
4639 return qc;
4640}
4641
4642/**
4643 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 * @dev: Device from whom we request an available command structure
4645 *
4646 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004647 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 */
4649
Tejun Heo3373efd2006-05-15 20:57:53 +09004650struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651{
Tejun Heo3373efd2006-05-15 20:57:53 +09004652 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 struct ata_queued_cmd *qc;
4654
4655 qc = ata_qc_new(ap);
4656 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 qc->scsicmd = NULL;
4658 qc->ap = ap;
4659 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004661 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 }
4663
4664 return qc;
4665}
4666
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667/**
4668 * ata_qc_free - free unused ata_queued_cmd
4669 * @qc: Command to complete
4670 *
4671 * Designed to free unused ata_queued_cmd object
4672 * in case something prevents using it.
4673 *
4674 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004675 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 */
4677void ata_qc_free(struct ata_queued_cmd *qc)
4678{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004679 struct ata_port *ap = qc->ap;
4680 unsigned int tag;
4681
Tejun Heoa4631472006-02-11 19:11:13 +09004682 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
Tejun Heo4ba946e2006-01-23 13:09:36 +09004684 qc->flags = 0;
4685 tag = qc->tag;
4686 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004687 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004688 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690}
4691
Tejun Heo76014422006-02-11 15:13:49 +09004692void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004694 struct ata_port *ap = qc->ap;
4695
Tejun Heoa4631472006-02-11 19:11:13 +09004696 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4697 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
4699 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4700 ata_sg_clean(qc);
4701
Tejun Heo7401abf2006-05-15 20:57:32 +09004702 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09004703 if (qc->tf.protocol == ATA_PROT_NCQ)
4704 ap->sactive &= ~(1 << qc->tag);
4705 else
4706 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09004707
Albert Lee3f3791d2005-08-16 14:25:38 +08004708 /* atapi: mark qc as inactive to prevent the interrupt handler
4709 * from completing the command twice later, before the error handler
4710 * is called. (when rc != 0 and atapi request sense is needed)
4711 */
4712 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004713 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004714
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004716 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717}
4718
Tejun Heo39599a52006-11-14 22:37:35 +09004719static void fill_result_tf(struct ata_queued_cmd *qc)
4720{
4721 struct ata_port *ap = qc->ap;
4722
4723 ap->ops->tf_read(ap, &qc->result_tf);
4724 qc->result_tf.flags = qc->tf.flags;
4725}
4726
Tejun Heof686bcb2006-05-15 20:58:05 +09004727/**
4728 * ata_qc_complete - Complete an active ATA command
4729 * @qc: Command to complete
4730 * @err_mask: ATA Status register contents
4731 *
4732 * Indicate to the mid and upper layers that an ATA
4733 * command has completed, with either an ok or not-ok status.
4734 *
4735 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004736 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09004737 */
4738void ata_qc_complete(struct ata_queued_cmd *qc)
4739{
4740 struct ata_port *ap = qc->ap;
4741
4742 /* XXX: New EH and old EH use different mechanisms to
4743 * synchronize EH with regular execution path.
4744 *
4745 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4746 * Normal execution path is responsible for not accessing a
4747 * failed qc. libata core enforces the rule by returning NULL
4748 * from ata_qc_from_tag() for failed qcs.
4749 *
4750 * Old EH depends on ata_qc_complete() nullifying completion
4751 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4752 * not synchronize with interrupt handler. Only PIO task is
4753 * taken care of.
4754 */
4755 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09004756 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09004757
4758 if (unlikely(qc->err_mask))
4759 qc->flags |= ATA_QCFLAG_FAILED;
4760
4761 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4762 if (!ata_tag_internal(qc->tag)) {
4763 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09004764 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004765 ata_qc_schedule_eh(qc);
4766 return;
4767 }
4768 }
4769
4770 /* read result TF if requested */
4771 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004772 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004773
4774 __ata_qc_complete(qc);
4775 } else {
4776 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4777 return;
4778
4779 /* read result TF if failed or requested */
4780 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004781 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004782
4783 __ata_qc_complete(qc);
4784 }
4785}
4786
Tejun Heodedaf2b2006-05-15 21:03:43 +09004787/**
4788 * ata_qc_complete_multiple - Complete multiple qcs successfully
4789 * @ap: port in question
4790 * @qc_active: new qc_active mask
4791 * @finish_qc: LLDD callback invoked before completing a qc
4792 *
4793 * Complete in-flight commands. This functions is meant to be
4794 * called from low-level driver's interrupt routine to complete
4795 * requests normally. ap->qc_active and @qc_active is compared
4796 * and commands are completed accordingly.
4797 *
4798 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004799 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004800 *
4801 * RETURNS:
4802 * Number of completed commands on success, -errno otherwise.
4803 */
4804int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4805 void (*finish_qc)(struct ata_queued_cmd *))
4806{
4807 int nr_done = 0;
4808 u32 done_mask;
4809 int i;
4810
4811 done_mask = ap->qc_active ^ qc_active;
4812
4813 if (unlikely(done_mask & qc_active)) {
4814 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4815 "(%08x->%08x)\n", ap->qc_active, qc_active);
4816 return -EINVAL;
4817 }
4818
4819 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4820 struct ata_queued_cmd *qc;
4821
4822 if (!(done_mask & (1 << i)))
4823 continue;
4824
4825 if ((qc = ata_qc_from_tag(ap, i))) {
4826 if (finish_qc)
4827 finish_qc(qc);
4828 ata_qc_complete(qc);
4829 nr_done++;
4830 }
4831 }
4832
4833 return nr_done;
4834}
4835
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
4837{
4838 struct ata_port *ap = qc->ap;
4839
4840 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09004841 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 case ATA_PROT_DMA:
4843 case ATA_PROT_ATAPI_DMA:
4844 return 1;
4845
4846 case ATA_PROT_ATAPI:
4847 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 if (ap->flags & ATA_FLAG_PIO_DMA)
4849 return 1;
4850
4851 /* fall through */
4852
4853 default:
4854 return 0;
4855 }
4856
4857 /* never reached */
4858}
4859
4860/**
4861 * ata_qc_issue - issue taskfile to device
4862 * @qc: command to issue to device
4863 *
4864 * Prepare an ATA command to submission to device.
4865 * This includes mapping the data into a DMA-able
4866 * area, filling in the S/G table, and finally
4867 * writing the taskfile to hardware, starting the command.
4868 *
4869 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004870 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004872void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873{
4874 struct ata_port *ap = qc->ap;
4875
Tejun Heodedaf2b2006-05-15 21:03:43 +09004876 /* Make sure only one non-NCQ command is outstanding. The
4877 * check is skipped for old EH because it reuses active qc to
4878 * request ATAPI sense.
4879 */
4880 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
4881
4882 if (qc->tf.protocol == ATA_PROT_NCQ) {
4883 WARN_ON(ap->sactive & (1 << qc->tag));
4884 ap->sactive |= 1 << qc->tag;
4885 } else {
4886 WARN_ON(ap->sactive);
4887 ap->active_tag = qc->tag;
4888 }
4889
Tejun Heoe4a70e72006-03-31 20:36:47 +09004890 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004891 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004892
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 if (ata_should_dma_map(qc)) {
4894 if (qc->flags & ATA_QCFLAG_SG) {
4895 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004896 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
4898 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09004899 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 }
4901 } else {
4902 qc->flags &= ~ATA_QCFLAG_DMAMAP;
4903 }
4904
4905 ap->ops->qc_prep(qc);
4906
Tejun Heo8e0e6942006-03-31 20:41:11 +09004907 qc->err_mask |= ap->ops->qc_issue(qc);
4908 if (unlikely(qc->err_mask))
4909 goto err;
4910 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911
Tejun Heo8e436af2006-01-23 13:09:36 +09004912sg_err:
4913 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09004914 qc->err_mask |= AC_ERR_SYSTEM;
4915err:
4916 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917}
4918
4919/**
4920 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
4921 * @qc: command to issue to device
4922 *
4923 * Using various libata functions and hooks, this function
4924 * starts an ATA command. ATA commands are grouped into
4925 * classes called "protocols", and issuing each type of protocol
4926 * is slightly different.
4927 *
Edward Falk0baab862005-06-02 18:17:13 -04004928 * May be used as the qc_issue() entry in ata_port_operations.
4929 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004931 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 *
4933 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004934 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 */
4936
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09004937unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938{
4939 struct ata_port *ap = qc->ap;
4940
Albert Leee50362e2005-09-27 17:39:50 +08004941 /* Use polling pio if the LLD doesn't handle
4942 * interrupt driven pio and atapi CDB interrupt.
4943 */
4944 if (ap->flags & ATA_FLAG_PIO_POLLING) {
4945 switch (qc->tf.protocol) {
4946 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08004947 case ATA_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08004948 case ATA_PROT_ATAPI:
4949 case ATA_PROT_ATAPI_NODATA:
4950 qc->tf.flags |= ATA_TFLAG_POLLING;
4951 break;
4952 case ATA_PROT_ATAPI_DMA:
4953 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08004954 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08004955 BUG();
4956 break;
4957 default:
4958 break;
4959 }
4960 }
4961
Tejun Heo3d3cca32006-11-16 10:50:50 +09004962 /* Some controllers show flaky interrupt behavior after
4963 * setting xfer mode. Use polling instead.
4964 */
4965 if (unlikely(qc->tf.command == ATA_CMD_SET_FEATURES &&
4966 qc->tf.feature == SETFEATURES_XFER) &&
4967 (ap->flags & ATA_FLAG_SETXFER_POLLING))
4968 qc->tf.flags |= ATA_TFLAG_POLLING;
4969
Albert Lee312f7da2005-09-27 17:38:03 +08004970 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 ata_dev_select(ap, qc->dev->devno, 1, 0);
4972
Albert Lee312f7da2005-09-27 17:38:03 +08004973 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 switch (qc->tf.protocol) {
4975 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08004976 if (qc->tf.flags & ATA_TFLAG_POLLING)
4977 ata_qc_set_polling(qc);
4978
Jeff Garzike5338252005-10-30 21:37:17 -05004979 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08004980 ap->hsm_task_state = HSM_ST_LAST;
4981
4982 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08004983 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08004984
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 break;
4986
4987 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05004988 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08004989
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
4991 ap->ops->bmdma_setup(qc); /* set up bmdma */
4992 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08004993 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 break;
4995
Albert Lee312f7da2005-09-27 17:38:03 +08004996 case ATA_PROT_PIO:
4997 if (qc->tf.flags & ATA_TFLAG_POLLING)
4998 ata_qc_set_polling(qc);
4999
Jeff Garzike5338252005-10-30 21:37:17 -05005000 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005001
Albert Lee54f00382005-09-30 19:14:19 +08005002 if (qc->tf.flags & ATA_TFLAG_WRITE) {
5003 /* PIO data out protocol */
5004 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08005005 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08005006
5007 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08005008 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08005009 */
Albert Lee312f7da2005-09-27 17:38:03 +08005010 } else {
Albert Lee54f00382005-09-30 19:14:19 +08005011 /* PIO data in protocol */
5012 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08005013
Albert Lee54f00382005-09-30 19:14:19 +08005014 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005015 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005016
Albert Lee54f00382005-09-30 19:14:19 +08005017 /* if polling, ata_pio_task() handles the rest.
5018 * otherwise, interrupt handler takes over from here.
5019 */
Albert Lee312f7da2005-09-27 17:38:03 +08005020 }
5021
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 break;
5023
5024 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005026 if (qc->tf.flags & ATA_TFLAG_POLLING)
5027 ata_qc_set_polling(qc);
5028
Jeff Garzike5338252005-10-30 21:37:17 -05005029 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05005030
Albert Lee312f7da2005-09-27 17:38:03 +08005031 ap->hsm_task_state = HSM_ST_FIRST;
5032
5033 /* send cdb by polling if no cdb interrupt */
5034 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
5035 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08005036 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 break;
5038
5039 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005040 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005041
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5043 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005044 ap->hsm_task_state = HSM_ST_FIRST;
5045
5046 /* send cdb by polling if no cdb interrupt */
5047 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08005048 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 break;
5050
5051 default:
5052 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005053 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 }
5055
5056 return 0;
5057}
5058
5059/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 * ata_host_intr - Handle host interrupt for given (port, task)
5061 * @ap: Port on which interrupt arrived (possibly...)
5062 * @qc: Taskfile currently active in engine
5063 *
5064 * Handle host interrupt for given queued command. Currently,
5065 * only DMA interrupts are handled. All other commands are
5066 * handled via polling with interrupts disabled (nIEN bit).
5067 *
5068 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005069 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 *
5071 * RETURNS:
5072 * One if interrupt was handled, zero if not (shared irq).
5073 */
5074
5075inline unsigned int ata_host_intr (struct ata_port *ap,
5076 struct ata_queued_cmd *qc)
5077{
Tejun Heoea547632006-11-17 12:06:21 +09005078 struct ata_eh_info *ehi = &ap->eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08005079 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
Albert Lee312f7da2005-09-27 17:38:03 +08005081 VPRINTK("ata%u: protocol %d task_state %d\n",
5082 ap->id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
Albert Lee312f7da2005-09-27 17:38:03 +08005084 /* Check whether we are expecting interrupt in this state */
5085 switch (ap->hsm_task_state) {
5086 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005087 /* Some pre-ATAPI-4 devices assert INTRQ
5088 * at this state when ready to receive CDB.
5089 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
Albert Lee312f7da2005-09-27 17:38:03 +08005091 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
5092 * The flag was turned on only for atapi devices.
5093 * No need to check is_atapi_taskfile(&qc->tf) again.
5094 */
5095 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 break;
Albert Lee312f7da2005-09-27 17:38:03 +08005098 case HSM_ST_LAST:
5099 if (qc->tf.protocol == ATA_PROT_DMA ||
5100 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
5101 /* check status of DMA engine */
5102 host_stat = ap->ops->bmdma_status(ap);
5103 VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104
Albert Lee312f7da2005-09-27 17:38:03 +08005105 /* if it's not our irq... */
5106 if (!(host_stat & ATA_DMA_INTR))
5107 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
Albert Lee312f7da2005-09-27 17:38:03 +08005109 /* before we do anything else, clear DMA-Start bit */
5110 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08005111
5112 if (unlikely(host_stat & ATA_DMA_ERR)) {
5113 /* error when transfering data to/from memory */
5114 qc->err_mask |= AC_ERR_HOST_BUS;
5115 ap->hsm_task_state = HSM_ST_ERR;
5116 }
Albert Lee312f7da2005-09-27 17:38:03 +08005117 }
5118 break;
5119 case HSM_ST:
5120 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 default:
5122 goto idle_irq;
5123 }
5124
Albert Lee312f7da2005-09-27 17:38:03 +08005125 /* check altstatus */
5126 status = ata_altstatus(ap);
5127 if (status & ATA_BUSY)
5128 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
Albert Lee312f7da2005-09-27 17:38:03 +08005130 /* check main status, clearing INTRQ */
5131 status = ata_chk_status(ap);
5132 if (unlikely(status & ATA_BUSY))
5133 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134
Albert Lee312f7da2005-09-27 17:38:03 +08005135 /* ack bmdma irq events */
5136 ap->ops->irq_clear(ap);
5137
Albert Leebb5cb292006-03-25 17:48:02 +08005138 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09005139
5140 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
5141 qc->tf.protocol == ATA_PROT_ATAPI_DMA))
5142 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
5143
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 return 1; /* irq handled */
5145
5146idle_irq:
5147 ap->stats.idle_irq++;
5148
5149#ifdef ATA_IRQ_TRAP
5150 if ((ap->stats.idle_irq % 1000) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 ata_irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09005152 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00005153 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 }
5155#endif
5156 return 0; /* irq not handled */
5157}
5158
5159/**
5160 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04005161 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04005162 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005164 * Default interrupt handler for PCI IDE devices. Calls
5165 * ata_host_intr() for each port that is not disabled.
5166 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005168 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 *
5170 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005171 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172 */
5173
David Howells7d12e782006-10-05 14:55:46 +01005174irqreturn_t ata_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175{
Jeff Garzikcca39742006-08-24 03:19:22 -04005176 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177 unsigned int i;
5178 unsigned int handled = 0;
5179 unsigned long flags;
5180
5181 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04005182 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183
Jeff Garzikcca39742006-08-24 03:19:22 -04005184 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 struct ata_port *ap;
5186
Jeff Garzikcca39742006-08-24 03:19:22 -04005187 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09005188 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04005189 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 struct ata_queued_cmd *qc;
5191
5192 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08005193 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08005194 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 handled |= ata_host_intr(ap, qc);
5196 }
5197 }
5198
Jeff Garzikcca39742006-08-24 03:19:22 -04005199 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200
5201 return IRQ_RETVAL(handled);
5202}
5203
Tejun Heo34bf2172006-05-15 20:57:46 +09005204/**
5205 * sata_scr_valid - test whether SCRs are accessible
5206 * @ap: ATA port to test SCR accessibility for
5207 *
5208 * Test whether SCRs are accessible for @ap.
5209 *
5210 * LOCKING:
5211 * None.
5212 *
5213 * RETURNS:
5214 * 1 if SCRs are accessible, 0 otherwise.
5215 */
5216int sata_scr_valid(struct ata_port *ap)
5217{
5218 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
5219}
5220
5221/**
5222 * sata_scr_read - read SCR register of the specified port
5223 * @ap: ATA port to read SCR for
5224 * @reg: SCR to read
5225 * @val: Place to store read value
5226 *
5227 * Read SCR register @reg of @ap into *@val. This function is
5228 * guaranteed to succeed if the cable type of the port is SATA
5229 * and the port implements ->scr_read.
5230 *
5231 * LOCKING:
5232 * None.
5233 *
5234 * RETURNS:
5235 * 0 on success, negative errno on failure.
5236 */
5237int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
5238{
5239 if (sata_scr_valid(ap)) {
5240 *val = ap->ops->scr_read(ap, reg);
5241 return 0;
5242 }
5243 return -EOPNOTSUPP;
5244}
5245
5246/**
5247 * sata_scr_write - write SCR register of the specified port
5248 * @ap: ATA port to write SCR for
5249 * @reg: SCR to write
5250 * @val: value to write
5251 *
5252 * Write @val to SCR register @reg of @ap. This function is
5253 * guaranteed to succeed if the cable type of the port is SATA
5254 * and the port implements ->scr_read.
5255 *
5256 * LOCKING:
5257 * None.
5258 *
5259 * RETURNS:
5260 * 0 on success, negative errno on failure.
5261 */
5262int sata_scr_write(struct ata_port *ap, int reg, u32 val)
5263{
5264 if (sata_scr_valid(ap)) {
5265 ap->ops->scr_write(ap, reg, val);
5266 return 0;
5267 }
5268 return -EOPNOTSUPP;
5269}
5270
5271/**
5272 * sata_scr_write_flush - write SCR register of the specified port and flush
5273 * @ap: ATA port to write SCR for
5274 * @reg: SCR to write
5275 * @val: value to write
5276 *
5277 * This function is identical to sata_scr_write() except that this
5278 * function performs flush after writing to the register.
5279 *
5280 * LOCKING:
5281 * None.
5282 *
5283 * RETURNS:
5284 * 0 on success, negative errno on failure.
5285 */
5286int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
5287{
5288 if (sata_scr_valid(ap)) {
5289 ap->ops->scr_write(ap, reg, val);
5290 ap->ops->scr_read(ap, reg);
5291 return 0;
5292 }
5293 return -EOPNOTSUPP;
5294}
5295
5296/**
5297 * ata_port_online - test whether the given port is online
5298 * @ap: ATA port to test
5299 *
5300 * Test whether @ap is online. Note that this function returns 0
5301 * if online status of @ap cannot be obtained, so
5302 * ata_port_online(ap) != !ata_port_offline(ap).
5303 *
5304 * LOCKING:
5305 * None.
5306 *
5307 * RETURNS:
5308 * 1 if the port online status is available and online.
5309 */
5310int ata_port_online(struct ata_port *ap)
5311{
5312 u32 sstatus;
5313
5314 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
5315 return 1;
5316 return 0;
5317}
5318
5319/**
5320 * ata_port_offline - test whether the given port is offline
5321 * @ap: ATA port to test
5322 *
5323 * Test whether @ap is offline. Note that this function returns
5324 * 0 if offline status of @ap cannot be obtained, so
5325 * ata_port_online(ap) != !ata_port_offline(ap).
5326 *
5327 * LOCKING:
5328 * None.
5329 *
5330 * RETURNS:
5331 * 1 if the port offline status is available and offline.
5332 */
5333int ata_port_offline(struct ata_port *ap)
5334{
5335 u32 sstatus;
5336
5337 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
5338 return 1;
5339 return 0;
5340}
Edward Falk0baab862005-06-02 18:17:13 -04005341
Tejun Heo77b08fb2006-06-24 20:30:19 +09005342int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005343{
Tejun Heo977e6b92006-06-24 20:30:19 +09005344 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01005345 u8 cmd;
5346
5347 if (!ata_try_flush_cache(dev))
5348 return 0;
5349
Tejun Heo6fc49ad2006-11-11 20:10:45 +09005350 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01005351 cmd = ATA_CMD_FLUSH_EXT;
5352 else
5353 cmd = ATA_CMD_FLUSH;
5354
Tejun Heo977e6b92006-06-24 20:30:19 +09005355 err_mask = ata_do_simple_cmd(dev, cmd);
5356 if (err_mask) {
5357 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
5358 return -EIO;
5359 }
5360
5361 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005362}
5363
Jeff Garzikcca39742006-08-24 03:19:22 -04005364static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5365 unsigned int action, unsigned int ehi_flags,
5366 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005367{
5368 unsigned long flags;
5369 int i, rc;
5370
Jeff Garzikcca39742006-08-24 03:19:22 -04005371 for (i = 0; i < host->n_ports; i++) {
5372 struct ata_port *ap = host->ports[i];
Tejun Heo500530f2006-07-03 16:07:27 +09005373
5374 /* Previous resume operation might still be in
5375 * progress. Wait for PM_PENDING to clear.
5376 */
5377 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5378 ata_port_wait_eh(ap);
5379 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5380 }
5381
5382 /* request PM ops to EH */
5383 spin_lock_irqsave(ap->lock, flags);
5384
5385 ap->pm_mesg = mesg;
5386 if (wait) {
5387 rc = 0;
5388 ap->pm_result = &rc;
5389 }
5390
5391 ap->pflags |= ATA_PFLAG_PM_PENDING;
5392 ap->eh_info.action |= action;
5393 ap->eh_info.flags |= ehi_flags;
5394
5395 ata_port_schedule_eh(ap);
5396
5397 spin_unlock_irqrestore(ap->lock, flags);
5398
5399 /* wait and check result */
5400 if (wait) {
5401 ata_port_wait_eh(ap);
5402 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5403 if (rc)
5404 return rc;
5405 }
5406 }
5407
5408 return 0;
5409}
5410
5411/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005412 * ata_host_suspend - suspend host
5413 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09005414 * @mesg: PM message
5415 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005416 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005417 * function requests EH to perform PM operations and waits for EH
5418 * to finish.
5419 *
5420 * LOCKING:
5421 * Kernel thread context (may sleep).
5422 *
5423 * RETURNS:
5424 * 0 on success, -errno on failure.
5425 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005426int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005427{
5428 int i, j, rc;
5429
Jeff Garzikcca39742006-08-24 03:19:22 -04005430 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Tejun Heo500530f2006-07-03 16:07:27 +09005431 if (rc)
5432 goto fail;
5433
5434 /* EH is quiescent now. Fail if we have any ready device.
5435 * This happens if hotplug occurs between completion of device
5436 * suspension and here.
5437 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005438 for (i = 0; i < host->n_ports; i++) {
5439 struct ata_port *ap = host->ports[i];
Tejun Heo500530f2006-07-03 16:07:27 +09005440
5441 for (j = 0; j < ATA_MAX_DEVICES; j++) {
5442 struct ata_device *dev = &ap->device[j];
5443
5444 if (ata_dev_ready(dev)) {
5445 ata_port_printk(ap, KERN_WARNING,
5446 "suspend failed, device %d "
5447 "still active\n", dev->devno);
5448 rc = -EBUSY;
5449 goto fail;
5450 }
5451 }
5452 }
5453
Jeff Garzikcca39742006-08-24 03:19:22 -04005454 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005455 return 0;
5456
5457 fail:
Jeff Garzikcca39742006-08-24 03:19:22 -04005458 ata_host_resume(host);
Tejun Heo500530f2006-07-03 16:07:27 +09005459 return rc;
5460}
5461
5462/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005463 * ata_host_resume - resume host
5464 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005465 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005466 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005467 * function requests EH to perform PM operations and returns.
5468 * Note that all resume operations are performed parallely.
5469 *
5470 * LOCKING:
5471 * Kernel thread context (may sleep).
5472 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005473void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005474{
Jeff Garzikcca39742006-08-24 03:19:22 -04005475 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
5476 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
5477 host->dev->power.power_state = PMSG_ON;
Tejun Heo500530f2006-07-03 16:07:27 +09005478}
5479
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005480/**
5481 * ata_port_start - Set port up for dma.
5482 * @ap: Port to initialize
5483 *
5484 * Called just after data structures for each port are
5485 * initialized. Allocates space for PRD table.
5486 *
5487 * May be used as the port_start() entry in ata_port_operations.
5488 *
5489 * LOCKING:
5490 * Inherited from caller.
5491 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005492int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493{
Brian King2f1f6102006-03-23 17:30:15 -06005494 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005495 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496
Tejun Heof0d36ef2007-01-20 16:00:28 +09005497 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5498 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 if (!ap->prd)
5500 return -ENOMEM;
5501
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005502 rc = ata_pad_alloc(ap, dev);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005503 if (rc)
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005504 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005505
Tejun Heof0d36ef2007-01-20 16:00:28 +09005506 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd,
5507 (unsigned long long)ap->prd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 return 0;
5509}
5510
Edward Falk0baab862005-06-02 18:17:13 -04005511/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005512 * ata_dev_init - Initialize an ata_device structure
5513 * @dev: Device structure to initialize
5514 *
5515 * Initialize @dev in preparation for probing.
5516 *
5517 * LOCKING:
5518 * Inherited from caller.
5519 */
5520void ata_dev_init(struct ata_device *dev)
5521{
5522 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005523 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005524
Tejun Heo5a04bf42006-05-31 18:27:38 +09005525 /* SATA spd limit is bound to the first device */
5526 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5527
Tejun Heo72fa4b72006-05-31 18:27:32 +09005528 /* High bits of dev->flags are used to record warm plug
5529 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04005530 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09005531 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005532 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005533 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005534 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005535
5536 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5537 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005538 dev->pio_mask = UINT_MAX;
5539 dev->mwdma_mask = UINT_MAX;
5540 dev->udma_mask = UINT_MAX;
5541}
5542
5543/**
Brian King155a8a92006-08-07 14:27:17 -05005544 * ata_port_init - Initialize an ata_port structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545 * @ap: Structure to initialize
Jeff Garzikcca39742006-08-24 03:19:22 -04005546 * @host: Collection of hosts to which @ap belongs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547 * @ent: Probe information provided by low-level driver
5548 * @port_no: Port number associated with this ata_port
5549 *
Brian King155a8a92006-08-07 14:27:17 -05005550 * Initialize a new ata_port structure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005551 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005553 * Inherited from caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005555void ata_port_init(struct ata_port *ap, struct ata_host *host,
Brian King155a8a92006-08-07 14:27:17 -05005556 const struct ata_probe_ent *ent, unsigned int port_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557{
5558 unsigned int i;
5559
Jeff Garzikcca39742006-08-24 03:19:22 -04005560 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005561 ap->flags = ATA_FLAG_DISABLED;
Brian King155a8a92006-08-07 14:27:17 -05005562 ap->id = ata_unique_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04005564 ap->host = host;
Brian King2f1f6102006-03-23 17:30:15 -06005565 ap->dev = ent->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566 ap->port_no = port_no;
Tejun Heofea63e32006-09-16 03:04:15 +09005567 if (port_no == 1 && ent->pinfo2) {
5568 ap->pio_mask = ent->pinfo2->pio_mask;
5569 ap->mwdma_mask = ent->pinfo2->mwdma_mask;
5570 ap->udma_mask = ent->pinfo2->udma_mask;
5571 ap->flags |= ent->pinfo2->flags;
5572 ap->ops = ent->pinfo2->port_ops;
5573 } else {
5574 ap->pio_mask = ent->pio_mask;
5575 ap->mwdma_mask = ent->mwdma_mask;
5576 ap->udma_mask = ent->udma_mask;
5577 ap->flags |= ent->port_flags;
5578 ap->ops = ent->port_ops;
5579 }
Tejun Heo5a04bf42006-05-31 18:27:38 +09005580 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581 ap->active_tag = ATA_TAG_POISON;
5582 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005583
5584#if defined(ATA_VERBOSE_DEBUG)
5585 /* turn on all debugging levels */
5586 ap->msg_enable = 0x00FF;
5587#elif defined(ATA_DEBUG)
5588 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 +09005589#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005590 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005591#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
David Howells65f27f32006-11-22 14:55:48 +00005593 INIT_DELAYED_WORK(&ap->port_task, NULL);
5594 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5595 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005596 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005597 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598
Tejun Heo838df622006-05-15 20:57:44 +09005599 /* set cable type */
5600 ap->cbl = ATA_CBL_NONE;
5601 if (ap->flags & ATA_FLAG_SATA)
5602 ap->cbl = ATA_CBL_SATA;
5603
Tejun Heoacf356b2006-03-24 14:07:50 +09005604 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5605 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005606 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005607 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005608 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610
5611#ifdef ATA_IRQ_TRAP
5612 ap->stats.unhandled_irq = 1;
5613 ap->stats.idle_irq = 1;
5614#endif
5615
5616 memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports));
5617}
5618
5619/**
Tejun Heo4608c162006-08-10 16:59:01 +09005620 * ata_port_init_shost - Initialize SCSI host associated with ATA port
5621 * @ap: ATA port to initialize SCSI host for
5622 * @shost: SCSI host associated with @ap
Brian King155a8a92006-08-07 14:27:17 -05005623 *
Tejun Heo4608c162006-08-10 16:59:01 +09005624 * Initialize SCSI host @shost associated with ATA port @ap.
Brian King155a8a92006-08-07 14:27:17 -05005625 *
5626 * LOCKING:
5627 * Inherited from caller.
5628 */
Tejun Heo4608c162006-08-10 16:59:01 +09005629static void ata_port_init_shost(struct ata_port *ap, struct Scsi_Host *shost)
Brian King155a8a92006-08-07 14:27:17 -05005630{
Jeff Garzikcca39742006-08-24 03:19:22 -04005631 ap->scsi_host = shost;
Brian King155a8a92006-08-07 14:27:17 -05005632
Tejun Heo4608c162006-08-10 16:59:01 +09005633 shost->unique_id = ap->id;
5634 shost->max_id = 16;
5635 shost->max_lun = 1;
5636 shost->max_channel = 1;
5637 shost->max_cmd_len = 12;
Brian King155a8a92006-08-07 14:27:17 -05005638}
5639
5640/**
Jeff Garzik996139f2006-08-10 16:59:03 +09005641 * ata_port_add - Attach low-level ATA driver to system
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 * @ent: Information provided by low-level driver
Jeff Garzikcca39742006-08-24 03:19:22 -04005643 * @host: Collections of ports to which we add
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644 * @port_no: Port number associated with this host
5645 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005646 * Attach low-level ATA driver to system.
5647 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005649 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650 *
5651 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005652 * New ata_port on success, for NULL on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653 */
Jeff Garzik996139f2006-08-10 16:59:03 +09005654static struct ata_port * ata_port_add(const struct ata_probe_ent *ent,
Jeff Garzikcca39742006-08-24 03:19:22 -04005655 struct ata_host *host,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656 unsigned int port_no)
5657{
Jeff Garzik996139f2006-08-10 16:59:03 +09005658 struct Scsi_Host *shost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660
5661 DPRINTK("ENTER\n");
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005662
Tejun Heo52783c52006-05-31 18:28:22 +09005663 if (!ent->port_ops->error_handler &&
Jeff Garzikcca39742006-08-24 03:19:22 -04005664 !(ent->port_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) {
Tejun Heoaec5c3c2006-03-25 01:33:34 +09005665 printk(KERN_ERR "ata%u: no reset mechanism available\n",
5666 port_no);
5667 return NULL;
5668 }
5669
Jeff Garzik996139f2006-08-10 16:59:03 +09005670 shost = scsi_host_alloc(ent->sht, sizeof(struct ata_port));
5671 if (!shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672 return NULL;
5673
Jeff Garzik996139f2006-08-10 16:59:03 +09005674 shost->transportt = &ata_scsi_transport_template;
Tejun Heo30afc842006-03-18 18:40:14 +09005675
Jeff Garzik996139f2006-08-10 16:59:03 +09005676 ap = ata_shost_to_port(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677
Jeff Garzikcca39742006-08-24 03:19:22 -04005678 ata_port_init(ap, host, ent, port_no);
Jeff Garzik996139f2006-08-10 16:59:03 +09005679 ata_port_init_shost(ap, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682}
5683
Tejun Heof0d36ef2007-01-20 16:00:28 +09005684static void ata_host_release(struct device *gendev, void *res)
5685{
5686 struct ata_host *host = dev_get_drvdata(gendev);
5687 int i;
5688
5689 for (i = 0; i < host->n_ports; i++) {
5690 struct ata_port *ap = host->ports[i];
5691
5692 if (!ap)
5693 continue;
5694
5695 if (ap->ops->port_stop)
5696 ap->ops->port_stop(ap);
5697
5698 scsi_host_put(ap->scsi_host);
5699 }
5700
5701 if (host->ops->host_stop)
5702 host->ops->host_stop(host);
5703}
5704
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005706 * ata_sas_host_init - Initialize a host struct
5707 * @host: host to initialize
5708 * @dev: device host is attached to
5709 * @flags: host flags
5710 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05005711 *
5712 * LOCKING:
5713 * PCI/etc. bus probe sem.
5714 *
5715 */
5716
Jeff Garzikcca39742006-08-24 03:19:22 -04005717void ata_host_init(struct ata_host *host, struct device *dev,
5718 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05005719{
Jeff Garzikcca39742006-08-24 03:19:22 -04005720 spin_lock_init(&host->lock);
5721 host->dev = dev;
5722 host->flags = flags;
5723 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05005724}
5725
5726/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005727 * ata_device_add - Register hardware device with ATA and SCSI layers
5728 * @ent: Probe information describing hardware device to be registered
5729 *
5730 * This function processes the information provided in the probe
5731 * information struct @ent, allocates the necessary ATA and SCSI
5732 * host information structures, initializes them, and registers
5733 * everything with requisite kernel subsystems.
5734 *
5735 * This function requests irqs, probes the ATA bus, and probes
5736 * the SCSI bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737 *
5738 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005739 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740 *
5741 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005742 * Number of ports registered. Zero on error (no ports registered).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743 */
Jeff Garzik057ace52005-10-22 14:27:05 -04005744int ata_device_add(const struct ata_probe_ent *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745{
Jeff Garzik6d0500d2006-08-10 16:59:05 +09005746 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 struct device *dev = ent->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04005748 struct ata_host *host;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005749 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
5751 DPRINTK("ENTER\n");
Jeff Garzikf20b16f2006-12-11 11:14:06 -05005752
Alan Cox02f076a2006-09-26 17:35:32 +01005753 if (ent->irq == 0) {
5754 dev_printk(KERN_ERR, dev, "is not available: No interrupt assigned.\n");
5755 return 0;
5756 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09005757
5758 if (!devres_open_group(dev, ata_device_add, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
Tejun Heof0d36ef2007-01-20 16:00:28 +09005761 /* alloc a container for our list of ATA ports (buses) */
5762 host = devres_alloc(ata_host_release, sizeof(struct ata_host) +
5763 (ent->n_ports * sizeof(void *)), GFP_KERNEL);
5764 if (!host)
5765 goto err_out;
5766 devres_add(dev, host);
5767 dev_set_drvdata(dev, host);
5768
Jeff Garzikcca39742006-08-24 03:19:22 -04005769 ata_host_init(host, dev, ent->_host_flags, ent->port_ops);
5770 host->n_ports = ent->n_ports;
5771 host->irq = ent->irq;
5772 host->irq2 = ent->irq2;
5773 host->mmio_base = ent->mmio_base;
5774 host->private_data = ent->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775
5776 /* register each port bound to this device */
Jeff Garzikcca39742006-08-24 03:19:22 -04005777 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778 struct ata_port *ap;
5779 unsigned long xfer_mode_mask;
Alan Cox2ec7df02006-08-10 16:59:10 +09005780 int irq_line = ent->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781
Jeff Garzikcca39742006-08-24 03:19:22 -04005782 ap = ata_port_add(ent, host, i);
Dave Jonesc38778c2006-09-26 23:52:50 -07005783 host->ports[i] = ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784 if (!ap)
5785 goto err_out;
5786
Tejun Heodd5b06c2006-08-10 16:59:12 +09005787 /* dummy? */
5788 if (ent->dummy_port_mask & (1 << i)) {
5789 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
5790 ap->ops = &ata_dummy_port_ops;
5791 continue;
5792 }
5793
5794 /* start port */
5795 rc = ap->ops->port_start(ap);
5796 if (rc) {
Jeff Garzikcca39742006-08-24 03:19:22 -04005797 host->ports[i] = NULL;
5798 scsi_host_put(ap->scsi_host);
Tejun Heodd5b06c2006-08-10 16:59:12 +09005799 goto err_out;
5800 }
5801
Alan Cox2ec7df02006-08-10 16:59:10 +09005802 /* Report the secondary IRQ for second channel legacy */
5803 if (i == 1 && ent->irq2)
5804 irq_line = ent->irq2;
5805
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806 xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) |
5807 (ap->mwdma_mask << ATA_SHIFT_MWDMA) |
5808 (ap->pio_mask << ATA_SHIFT_PIO);
5809
5810 /* print per-port info to dmesg */
Tejun Heof15a1da2006-05-15 20:57:56 +09005811 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX "
Alan Cox2ec7df02006-08-10 16:59:10 +09005812 "ctl 0x%lX bmdma 0x%lX irq %d\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09005813 ap->flags & ATA_FLAG_SATA ? 'S' : 'P',
5814 ata_mode_string(xfer_mode_mask),
5815 ap->ioaddr.cmd_addr,
5816 ap->ioaddr.ctl_addr,
5817 ap->ioaddr.bmdma_addr,
Alan Cox2ec7df02006-08-10 16:59:10 +09005818 irq_line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819
Tejun Heo0f0a3ad2006-11-17 12:24:22 +09005820 /* freeze port before requesting IRQ */
5821 ata_eh_freeze_port(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 }
5823
Alan Cox2ec7df02006-08-10 16:59:10 +09005824 /* obtain irq, that may be shared between channels */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005825 rc = devm_request_irq(dev, ent->irq, ent->port_ops->irq_handler,
5826 ent->irq_flags, DRV_NAME, host);
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005827 if (rc) {
5828 dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n",
5829 ent->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 goto err_out;
Jeff Garzik39b07ce2006-06-11 23:59:44 -04005831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
Alan Cox2ec7df02006-08-10 16:59:10 +09005833 /* do we have a second IRQ for the other channel, eg legacy mode */
5834 if (ent->irq2) {
5835 /* We will get weird core code crashes later if this is true
5836 so trap it now */
5837 BUG_ON(ent->irq == ent->irq2);
5838
Tejun Heof0d36ef2007-01-20 16:00:28 +09005839 rc = devm_request_irq(dev, ent->irq2,
5840 ent->port_ops->irq_handler, ent->irq_flags,
5841 DRV_NAME, host);
Alan Cox2ec7df02006-08-10 16:59:10 +09005842 if (rc) {
5843 dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n",
5844 ent->irq2, rc);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005845 goto err_out;
Alan Cox2ec7df02006-08-10 16:59:10 +09005846 }
5847 }
5848
Tejun Heof0d36ef2007-01-20 16:00:28 +09005849 /* resource acquisition complete */
Tejun Heob878ca52007-01-20 16:00:28 +09005850 devres_remove_group(dev, ata_device_add);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005851
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852 /* perform each probe synchronously */
5853 DPRINTK("probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04005854 for (i = 0; i < host->n_ports; i++) {
5855 struct ata_port *ap = host->ports[i];
Tejun Heo5a04bf42006-05-31 18:27:38 +09005856 u32 scontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857 int rc;
5858
Tejun Heo5a04bf42006-05-31 18:27:38 +09005859 /* init sata_spd_limit to the current value */
5860 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
5861 int spd = (scontrol >> 4) & 0xf;
5862 ap->hw_sata_spd_limit &= (1 << spd) - 1;
5863 }
5864 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5865
Jeff Garzikcca39742006-08-24 03:19:22 -04005866 rc = scsi_add_host(ap->scsi_host, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867 if (rc) {
Tejun Heof15a1da2006-05-15 20:57:56 +09005868 ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869 /* FIXME: do something useful here */
5870 /* FIXME: handle unconditional calls to
5871 * scsi_scan_host and ata_host_remove, below,
5872 * at the very least
5873 */
5874 }
Tejun Heo3e706392006-05-31 18:28:11 +09005875
Tejun Heo52783c52006-05-31 18:28:22 +09005876 if (ap->ops->error_handler) {
Tejun Heo1cdaf532006-07-03 16:07:26 +09005877 struct ata_eh_info *ehi = &ap->eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09005878 unsigned long flags;
5879
5880 ata_port_probe(ap);
5881
5882 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005883 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005884
Tejun Heo1cdaf532006-07-03 16:07:26 +09005885 ehi->probe_mask = (1 << ATA_MAX_DEVICES) - 1;
5886 ehi->action |= ATA_EH_SOFTRESET;
5887 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09005888
Tejun Heob51e9e52006-06-29 01:29:30 +09005889 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09005890 ata_port_schedule_eh(ap);
5891
Jeff Garzikba6a1302006-06-22 23:46:10 -04005892 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005893
5894 /* wait for EH to finish */
5895 ata_port_wait_eh(ap);
5896 } else {
5897 DPRINTK("ata%u: bus probe begin\n", ap->id);
5898 rc = ata_bus_probe(ap);
5899 DPRINTK("ata%u: bus probe end\n", ap->id);
5900
5901 if (rc) {
5902 /* FIXME: do something useful here?
5903 * Current libata behavior will
5904 * tear down everything when
5905 * the module is removed
5906 * or the h/w is unplugged.
5907 */
5908 }
5909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910 }
5911
5912 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005913 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04005914 for (i = 0; i < host->n_ports; i++) {
5915 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916
Jeff Garzik644dd0c2005-10-03 15:55:19 -04005917 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 }
5919
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920 VPRINTK("EXIT, returning %u\n", ent->n_ports);
5921 return ent->n_ports; /* success */
5922
Tejun Heof0d36ef2007-01-20 16:00:28 +09005923 err_out:
5924 devres_release_group(dev, ata_device_add);
5925 dev_set_drvdata(dev, NULL);
5926 VPRINTK("EXIT, returning %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 return 0;
5928}
5929
5930/**
Tejun Heo720ba122006-05-31 18:28:13 +09005931 * ata_port_detach - Detach ATA port in prepration of device removal
5932 * @ap: ATA port to be detached
5933 *
5934 * Detach all ATA devices and the associated SCSI devices of @ap;
5935 * then, remove the associated SCSI host. @ap is guaranteed to
5936 * be quiescent on return from this function.
5937 *
5938 * LOCKING:
5939 * Kernel thread context (may sleep).
5940 */
5941void ata_port_detach(struct ata_port *ap)
5942{
5943 unsigned long flags;
5944 int i;
5945
5946 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005947 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09005948
5949 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005950 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09005951 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005952 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005953
5954 ata_port_wait_eh(ap);
5955
5956 /* EH is now guaranteed to see UNLOADING, so no new device
5957 * will be attached. Disable all existing devices.
5958 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005959 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005960
5961 for (i = 0; i < ATA_MAX_DEVICES; i++)
5962 ata_dev_disable(&ap->device[i]);
5963
Jeff Garzikba6a1302006-06-22 23:46:10 -04005964 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005965
5966 /* Final freeze & EH. All in-flight commands are aborted. EH
5967 * will be skipped and retrials will be terminated with bad
5968 * target.
5969 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005970 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005971 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005972 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005973
5974 ata_port_wait_eh(ap);
5975
5976 /* Flush hotplug task. The sequence is similar to
5977 * ata_port_flush_task().
5978 */
5979 flush_workqueue(ata_aux_wq);
5980 cancel_delayed_work(&ap->hotplug_task);
5981 flush_workqueue(ata_aux_wq);
5982
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005983 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09005984 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04005985 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09005986}
5987
5988/**
Tejun Heo0529c152007-01-20 16:00:26 +09005989 * ata_host_detach - Detach all ports of an ATA host
5990 * @host: Host to detach
5991 *
5992 * Detach all ports of @host.
5993 *
5994 * LOCKING:
5995 * Kernel thread context (may sleep).
5996 */
5997void ata_host_detach(struct ata_host *host)
5998{
5999 int i;
6000
6001 for (i = 0; i < host->n_ports; i++)
6002 ata_port_detach(host->ports[i]);
6003}
6004
Brian Kingf6d950e2006-08-07 14:27:24 -05006005struct ata_probe_ent *
6006ata_probe_ent_alloc(struct device *dev, const struct ata_port_info *port)
6007{
6008 struct ata_probe_ent *probe_ent;
6009
Tejun Heof0d36ef2007-01-20 16:00:28 +09006010 /* XXX - the following if can go away once all LLDs are managed */
6011 if (!list_empty(&dev->devres_head))
6012 probe_ent = devm_kzalloc(dev, sizeof(*probe_ent), GFP_KERNEL);
6013 else
6014 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Brian Kingf6d950e2006-08-07 14:27:24 -05006015 if (!probe_ent) {
6016 printk(KERN_ERR DRV_NAME "(%s): out of memory\n",
6017 kobject_name(&(dev->kobj)));
6018 return NULL;
6019 }
6020
6021 INIT_LIST_HEAD(&probe_ent->node);
6022 probe_ent->dev = dev;
6023
6024 probe_ent->sht = port->sht;
Jeff Garzikcca39742006-08-24 03:19:22 -04006025 probe_ent->port_flags = port->flags;
Brian Kingf6d950e2006-08-07 14:27:24 -05006026 probe_ent->pio_mask = port->pio_mask;
6027 probe_ent->mwdma_mask = port->mwdma_mask;
6028 probe_ent->udma_mask = port->udma_mask;
6029 probe_ent->port_ops = port->port_ops;
Jeff Garzikd639ca92006-09-28 03:48:18 -04006030 probe_ent->private_data = port->private_data;
Brian Kingf6d950e2006-08-07 14:27:24 -05006031
6032 return probe_ent;
6033}
6034
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035/**
6036 * ata_std_ports - initialize ioaddr with standard port offsets.
6037 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04006038 *
6039 * Utility function which initializes data_addr, error_addr,
6040 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
6041 * device_addr, status_addr, and command_addr to standard offsets
6042 * relative to cmd_addr.
6043 *
6044 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045 */
Edward Falk0baab862005-06-02 18:17:13 -04006046
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047void ata_std_ports(struct ata_ioports *ioaddr)
6048{
6049 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
6050 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
6051 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
6052 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
6053 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
6054 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
6055 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
6056 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
6057 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
6058 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
6059}
6060
Edward Falk0baab862005-06-02 18:17:13 -04006061
Jeff Garzik374b1872005-08-30 05:42:52 -04006062#ifdef CONFIG_PCI
6063
Edward Falk0baab862005-06-02 18:17:13 -04006064/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 * ata_pci_remove_one - PCI layer callback for device removal
6066 * @pdev: PCI device that was removed
6067 *
Tejun Heob878ca52007-01-20 16:00:28 +09006068 * PCI layer indicates to libata via this hook that hot-unplug or
6069 * module unload event has occurred. Detach all ports. Resource
6070 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071 *
6072 * LOCKING:
6073 * Inherited from PCI layer (may sleep).
6074 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006075void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076{
6077 struct device *dev = pci_dev_to_dev(pdev);
Jeff Garzikcca39742006-08-24 03:19:22 -04006078 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
Tejun Heob878ca52007-01-20 16:00:28 +09006080 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081}
6082
6083/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006084int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085{
6086 unsigned long tmp = 0;
6087
6088 switch (bits->width) {
6089 case 1: {
6090 u8 tmp8 = 0;
6091 pci_read_config_byte(pdev, bits->reg, &tmp8);
6092 tmp = tmp8;
6093 break;
6094 }
6095 case 2: {
6096 u16 tmp16 = 0;
6097 pci_read_config_word(pdev, bits->reg, &tmp16);
6098 tmp = tmp16;
6099 break;
6100 }
6101 case 4: {
6102 u32 tmp32 = 0;
6103 pci_read_config_dword(pdev, bits->reg, &tmp32);
6104 tmp = tmp32;
6105 break;
6106 }
6107
6108 default:
6109 return -EINVAL;
6110 }
6111
6112 tmp &= bits->mask;
6113
6114 return (tmp == bits->val) ? 1 : 0;
6115}
Jens Axboe9b847542006-01-06 09:28:07 +01006116
Tejun Heo3c5100c2006-07-26 16:58:33 +09006117void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006118{
6119 pci_save_state(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006120
Tejun Heo3c5100c2006-07-26 16:58:33 +09006121 if (mesg.event == PM_EVENT_SUSPEND) {
Tejun Heo500530f2006-07-03 16:07:27 +09006122 pci_disable_device(pdev);
6123 pci_set_power_state(pdev, PCI_D3hot);
6124 }
Jens Axboe9b847542006-01-06 09:28:07 +01006125}
6126
Tejun Heo553c4aa2006-12-26 19:39:50 +09006127int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006128{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006129 int rc;
6130
Jens Axboe9b847542006-01-06 09:28:07 +01006131 pci_set_power_state(pdev, PCI_D0);
6132 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006133
Tejun Heob878ca52007-01-20 16:00:28 +09006134 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006135 if (rc) {
6136 dev_printk(KERN_ERR, &pdev->dev,
6137 "failed to enable device after resume (%d)\n", rc);
6138 return rc;
6139 }
6140
Jens Axboe9b847542006-01-06 09:28:07 +01006141 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006142 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006143}
6144
Tejun Heo3c5100c2006-07-26 16:58:33 +09006145int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006146{
Jeff Garzikcca39742006-08-24 03:19:22 -04006147 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006148 int rc = 0;
6149
Jeff Garzikcca39742006-08-24 03:19:22 -04006150 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006151 if (rc)
6152 return rc;
6153
Tejun Heo3c5100c2006-07-26 16:58:33 +09006154 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006155
6156 return 0;
6157}
6158
6159int ata_pci_device_resume(struct pci_dev *pdev)
6160{
Jeff Garzikcca39742006-08-24 03:19:22 -04006161 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006162 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006163
Tejun Heo553c4aa2006-12-26 19:39:50 +09006164 rc = ata_pci_device_do_resume(pdev);
6165 if (rc == 0)
6166 ata_host_resume(host);
6167 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006168}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169#endif /* CONFIG_PCI */
6170
6171
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172static int __init ata_init(void)
6173{
Andrew Mortona8601e52006-06-25 01:36:52 -07006174 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175 ata_wq = create_workqueue("ata");
6176 if (!ata_wq)
6177 return -ENOMEM;
6178
Tejun Heo453b07a2006-05-31 18:27:42 +09006179 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6180 if (!ata_aux_wq) {
6181 destroy_workqueue(ata_wq);
6182 return -ENOMEM;
6183 }
6184
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6186 return 0;
6187}
6188
6189static void __exit ata_exit(void)
6190{
6191 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006192 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193}
6194
Brian Kinga4625082006-11-13 16:32:36 -06006195subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196module_exit(ata_exit);
6197
Jeff Garzik67846b32005-10-05 02:58:32 -04006198static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006199static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006200
6201int ata_ratelimit(void)
6202{
6203 int rc;
6204 unsigned long flags;
6205
6206 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6207
6208 if (time_after(jiffies, ratelimit_time)) {
6209 rc = 1;
6210 ratelimit_time = jiffies + (HZ/5);
6211 } else
6212 rc = 0;
6213
6214 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6215
6216 return rc;
6217}
6218
Tejun Heoc22daff2006-04-11 22:22:29 +09006219/**
6220 * ata_wait_register - wait until register value changes
6221 * @reg: IO-mapped register
6222 * @mask: Mask to apply to read register value
6223 * @val: Wait condition
6224 * @interval_msec: polling interval in milliseconds
6225 * @timeout_msec: timeout in milliseconds
6226 *
6227 * Waiting for some bits of register to change is a common
6228 * operation for ATA controllers. This function reads 32bit LE
6229 * IO-mapped register @reg and tests for the following condition.
6230 *
6231 * (*@reg & mask) != val
6232 *
6233 * If the condition is met, it returns; otherwise, the process is
6234 * repeated after @interval_msec until timeout.
6235 *
6236 * LOCKING:
6237 * Kernel thread context (may sleep)
6238 *
6239 * RETURNS:
6240 * The final register value.
6241 */
6242u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6243 unsigned long interval_msec,
6244 unsigned long timeout_msec)
6245{
6246 unsigned long timeout;
6247 u32 tmp;
6248
6249 tmp = ioread32(reg);
6250
6251 /* Calculate timeout _after_ the first read to make sure
6252 * preceding writes reach the controller before starting to
6253 * eat away the timeout.
6254 */
6255 timeout = jiffies + (timeout_msec * HZ) / 1000;
6256
6257 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6258 msleep(interval_msec);
6259 tmp = ioread32(reg);
6260 }
6261
6262 return tmp;
6263}
6264
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006266 * Dummy port_ops
6267 */
6268static void ata_dummy_noret(struct ata_port *ap) { }
6269static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
6270static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
6271
6272static u8 ata_dummy_check_status(struct ata_port *ap)
6273{
6274 return ATA_DRDY;
6275}
6276
6277static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6278{
6279 return AC_ERR_SYSTEM;
6280}
6281
6282const struct ata_port_operations ata_dummy_port_ops = {
6283 .port_disable = ata_port_disable,
6284 .check_status = ata_dummy_check_status,
6285 .check_altstatus = ata_dummy_check_status,
6286 .dev_select = ata_noop_dev_select,
6287 .qc_prep = ata_noop_qc_prep,
6288 .qc_issue = ata_dummy_qc_issue,
6289 .freeze = ata_dummy_noret,
6290 .thaw = ata_dummy_noret,
6291 .error_handler = ata_dummy_noret,
6292 .post_internal_cmd = ata_dummy_qc_noret,
6293 .irq_clear = ata_dummy_noret,
6294 .port_start = ata_dummy_ret0,
6295 .port_stop = ata_dummy_noret,
6296};
6297
6298/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299 * libata is essentially a library of internal helper functions for
6300 * low-level ATA host controller drivers. As such, the API/ABI is
6301 * likely to change as new drivers are added and updated.
6302 * Do not depend on ABI/API stability.
6303 */
6304
Tejun Heoe9c83912006-07-03 16:07:26 +09006305EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6306EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6307EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006308EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309EXPORT_SYMBOL_GPL(ata_std_bios_param);
6310EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04006311EXPORT_SYMBOL_GPL(ata_host_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312EXPORT_SYMBOL_GPL(ata_device_add);
Tejun Heo0529c152007-01-20 16:00:26 +09006313EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314EXPORT_SYMBOL_GPL(ata_sg_init);
6315EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09006316EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09006317EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006318EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320EXPORT_SYMBOL_GPL(ata_tf_load);
6321EXPORT_SYMBOL_GPL(ata_tf_read);
6322EXPORT_SYMBOL_GPL(ata_noop_dev_select);
6323EXPORT_SYMBOL_GPL(ata_std_dev_select);
6324EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6325EXPORT_SYMBOL_GPL(ata_tf_from_fis);
6326EXPORT_SYMBOL_GPL(ata_check_status);
6327EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328EXPORT_SYMBOL_GPL(ata_exec_command);
6329EXPORT_SYMBOL_GPL(ata_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330EXPORT_SYMBOL_GPL(ata_interrupt);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01006331EXPORT_SYMBOL_GPL(ata_mmio_data_xfer);
6332EXPORT_SYMBOL_GPL(ata_pio_data_xfer);
Alan Cox75e99582006-05-24 14:14:41 +01006333EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06006335EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336EXPORT_SYMBOL_GPL(ata_bmdma_setup);
6337EXPORT_SYMBOL_GPL(ata_bmdma_start);
6338EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
6339EXPORT_SYMBOL_GPL(ata_bmdma_status);
6340EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09006341EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
6342EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
6343EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
6344EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
6345EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346EXPORT_SYMBOL_GPL(ata_port_probe);
Tejun Heo3c567b72006-05-15 20:57:23 +09006347EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09006348EXPORT_SYMBOL_GPL(sata_phy_debounce);
6349EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350EXPORT_SYMBOL_GPL(sata_phy_reset);
6351EXPORT_SYMBOL_GPL(__sata_phy_reset);
6352EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09006353EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006354EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heob6103f62006-11-01 17:59:53 +09006355EXPORT_SYMBOL_GPL(sata_port_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006356EXPORT_SYMBOL_GPL(sata_std_hardreset);
6357EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006358EXPORT_SYMBOL_GPL(ata_dev_classify);
6359EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006361EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006362EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09006363EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09006364EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6366EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006368EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006369EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09006371EXPORT_SYMBOL_GPL(sata_scr_valid);
6372EXPORT_SYMBOL_GPL(sata_scr_read);
6373EXPORT_SYMBOL_GPL(sata_scr_write);
6374EXPORT_SYMBOL_GPL(sata_scr_write_flush);
6375EXPORT_SYMBOL_GPL(ata_port_online);
6376EXPORT_SYMBOL_GPL(ata_port_offline);
Jeff Garzikcca39742006-08-24 03:19:22 -04006377EXPORT_SYMBOL_GPL(ata_host_suspend);
6378EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6a62a042006-02-13 10:02:46 +09006379EXPORT_SYMBOL_GPL(ata_id_string);
6380EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan Cox6919a0a2006-10-27 19:08:46 -07006381EXPORT_SYMBOL_GPL(ata_device_blacklisted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6383
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006384EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04006385EXPORT_SYMBOL_GPL(ata_timing_compute);
6386EXPORT_SYMBOL_GPL(ata_timing_merge);
6387
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388#ifdef CONFIG_PCI
6389EXPORT_SYMBOL_GPL(pci_test_config_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
6391EXPORT_SYMBOL_GPL(ata_pci_init_one);
6392EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo500530f2006-07-03 16:07:27 +09006393EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6394EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006395EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6396EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Alan Cox67951ad2006-03-22 15:55:54 +00006397EXPORT_SYMBOL_GPL(ata_pci_default_filter);
6398EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006400
Jens Axboe9b847542006-01-06 09:28:07 +01006401EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
6402EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heoece1d632006-04-02 18:51:53 +09006403
Tejun Heoece1d632006-04-02 18:51:53 +09006404EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006405EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
6406EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006407EXPORT_SYMBOL_GPL(ata_port_freeze);
6408EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6409EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006410EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6411EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09006412EXPORT_SYMBOL_GPL(ata_do_eh);