blob: 4e1df5382b9a197977d806b2606a5a5b420b26dc [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 Garzikcb48cab2007-02-26 06:04:24 -050062#define DRV_VERSION "2.20" /* must be exactly four chars */
Jeff Garzikfda0efc2007-01-31 07:43:15 -050063
64
Tejun Heod7bb4cc2006-05-31 18:27:46 +090065/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090066const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
67const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
68const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090069
Tejun Heo3373efd2006-05-15 20:57:53 +090070static unsigned int ata_dev_init_params(struct ata_device *dev,
71 u16 heads, u16 sectors);
72static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
73static void ata_dev_xfermask(struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Tejun Heof3187192007-04-17 23:44:07 +090075unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static 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
Alan Cox1e999732007-04-11 00:23:13 +010092static int ata_ignore_hpa = 0;
93module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
94MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
95
Andrew Mortona8601e52006-06-25 01:36:52 -070096static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
97module_param(ata_probe_timeout, int, 0444);
98MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
99
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400100int libata_noacpi = 1;
101module_param_named(noacpi, libata_noacpi, int, 0444);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700102MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in suspend/resume when set");
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104MODULE_AUTHOR("Jeff Garzik");
105MODULE_DESCRIPTION("Library module for ATA devices");
106MODULE_LICENSE("GPL");
107MODULE_VERSION(DRV_VERSION);
108
Edward Falk0baab862005-06-02 18:17:13 -0400109
110/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
112 * @tf: Taskfile to convert
113 * @fis: Buffer into which data will output
114 * @pmp: Port multiplier port
115 *
116 * Converts a standard ATA taskfile to a Serial ATA
117 * FIS structure (Register - Host to Device).
118 *
119 * LOCKING:
120 * Inherited from caller.
121 */
122
Jeff Garzik057ace52005-10-22 14:27:05 -0400123void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 fis[0] = 0x27; /* Register - Host to Device FIS */
126 fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number,
127 bit 7 indicates Command FIS */
128 fis[2] = tf->command;
129 fis[3] = tf->feature;
130
131 fis[4] = tf->lbal;
132 fis[5] = tf->lbam;
133 fis[6] = tf->lbah;
134 fis[7] = tf->device;
135
136 fis[8] = tf->hob_lbal;
137 fis[9] = tf->hob_lbam;
138 fis[10] = tf->hob_lbah;
139 fis[11] = tf->hob_feature;
140
141 fis[12] = tf->nsect;
142 fis[13] = tf->hob_nsect;
143 fis[14] = 0;
144 fis[15] = tf->ctl;
145
146 fis[16] = 0;
147 fis[17] = 0;
148 fis[18] = 0;
149 fis[19] = 0;
150}
151
152/**
153 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
154 * @fis: Buffer from which data will be input
155 * @tf: Taskfile to output
156 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500157 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 *
159 * LOCKING:
160 * Inherited from caller.
161 */
162
Jeff Garzik057ace52005-10-22 14:27:05 -0400163void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 tf->command = fis[2]; /* status */
166 tf->feature = fis[3]; /* error */
167
168 tf->lbal = fis[4];
169 tf->lbam = fis[5];
170 tf->lbah = fis[6];
171 tf->device = fis[7];
172
173 tf->hob_lbal = fis[8];
174 tf->hob_lbam = fis[9];
175 tf->hob_lbah = fis[10];
176
177 tf->nsect = fis[12];
178 tf->hob_nsect = fis[13];
179}
180
Albert Lee8cbd6df2005-10-12 15:06:27 +0800181static const u8 ata_rw_cmds[] = {
182 /* pio multi */
183 ATA_CMD_READ_MULTI,
184 ATA_CMD_WRITE_MULTI,
185 ATA_CMD_READ_MULTI_EXT,
186 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100187 0,
188 0,
189 0,
190 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800191 /* pio */
192 ATA_CMD_PIO_READ,
193 ATA_CMD_PIO_WRITE,
194 ATA_CMD_PIO_READ_EXT,
195 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100196 0,
197 0,
198 0,
199 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800200 /* dma */
201 ATA_CMD_READ,
202 ATA_CMD_WRITE,
203 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100204 ATA_CMD_WRITE_EXT,
205 0,
206 0,
207 0,
208 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800209};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800212 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900213 * @tf: command to examine and configure
214 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500216 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800217 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 *
219 * LOCKING:
220 * caller.
221 */
Tejun Heobd056d72006-11-14 22:47:10 +0900222static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100224 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100226 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500227
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100228 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800229 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
230 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Albert Lee8cbd6df2005-10-12 15:06:27 +0800232 if (dev->flags & ATA_DFLAG_PIO) {
233 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100234 index = dev->multi_count ? 0 : 8;
Tejun Heobd056d72006-11-14 22:47:10 +0900235 } else if (lba48 && (dev->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000236 /* Unable to use DMA due to host limitation */
237 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800238 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800239 } else {
240 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100241 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100244 cmd = ata_rw_cmds[index + fua + lba48 + write];
245 if (cmd) {
246 tf->command = cmd;
247 return 0;
248 }
249 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Tejun Heocb95d562006-03-06 04:31:56 +0900252/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900253 * ata_tf_read_block - Read block address from ATA taskfile
254 * @tf: ATA taskfile of interest
255 * @dev: ATA device @tf belongs to
256 *
257 * LOCKING:
258 * None.
259 *
260 * Read block address from @tf. This function can handle all
261 * three address formats - LBA, LBA48 and CHS. tf->protocol and
262 * flags select the address format to use.
263 *
264 * RETURNS:
265 * Block address read from @tf.
266 */
267u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
268{
269 u64 block = 0;
270
271 if (tf->flags & ATA_TFLAG_LBA) {
272 if (tf->flags & ATA_TFLAG_LBA48) {
273 block |= (u64)tf->hob_lbah << 40;
274 block |= (u64)tf->hob_lbam << 32;
275 block |= tf->hob_lbal << 24;
276 } else
277 block |= (tf->device & 0xf) << 24;
278
279 block |= tf->lbah << 16;
280 block |= tf->lbam << 8;
281 block |= tf->lbal;
282 } else {
283 u32 cyl, head, sect;
284
285 cyl = tf->lbam | (tf->lbah << 8);
286 head = tf->device & 0xf;
287 sect = tf->lbal;
288
289 block = (cyl * dev->heads + head) * dev->sectors + sect;
290 }
291
292 return block;
293}
294
295/**
Tejun Heobd056d72006-11-14 22:47:10 +0900296 * ata_build_rw_tf - Build ATA taskfile for given read/write request
297 * @tf: Target ATA taskfile
298 * @dev: ATA device @tf belongs to
299 * @block: Block address
300 * @n_block: Number of blocks
301 * @tf_flags: RW/FUA etc...
302 * @tag: tag
303 *
304 * LOCKING:
305 * None.
306 *
307 * Build ATA taskfile @tf for read/write request described by
308 * @block, @n_block, @tf_flags and @tag on @dev.
309 *
310 * RETURNS:
311 *
312 * 0 on success, -ERANGE if the request is too large for @dev,
313 * -EINVAL if the request is invalid.
314 */
315int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
316 u64 block, u32 n_block, unsigned int tf_flags,
317 unsigned int tag)
318{
319 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
320 tf->flags |= tf_flags;
321
Tejun Heo6d1245b2007-02-20 23:20:27 +0900322 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900323 /* yay, NCQ */
324 if (!lba_48_ok(block, n_block))
325 return -ERANGE;
326
327 tf->protocol = ATA_PROT_NCQ;
328 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
329
330 if (tf->flags & ATA_TFLAG_WRITE)
331 tf->command = ATA_CMD_FPDMA_WRITE;
332 else
333 tf->command = ATA_CMD_FPDMA_READ;
334
335 tf->nsect = tag << 3;
336 tf->hob_feature = (n_block >> 8) & 0xff;
337 tf->feature = n_block & 0xff;
338
339 tf->hob_lbah = (block >> 40) & 0xff;
340 tf->hob_lbam = (block >> 32) & 0xff;
341 tf->hob_lbal = (block >> 24) & 0xff;
342 tf->lbah = (block >> 16) & 0xff;
343 tf->lbam = (block >> 8) & 0xff;
344 tf->lbal = block & 0xff;
345
346 tf->device = 1 << 6;
347 if (tf->flags & ATA_TFLAG_FUA)
348 tf->device |= 1 << 7;
349 } else if (dev->flags & ATA_DFLAG_LBA) {
350 tf->flags |= ATA_TFLAG_LBA;
351
352 if (lba_28_ok(block, n_block)) {
353 /* use LBA28 */
354 tf->device |= (block >> 24) & 0xf;
355 } else if (lba_48_ok(block, n_block)) {
356 if (!(dev->flags & ATA_DFLAG_LBA48))
357 return -ERANGE;
358
359 /* use LBA48 */
360 tf->flags |= ATA_TFLAG_LBA48;
361
362 tf->hob_nsect = (n_block >> 8) & 0xff;
363
364 tf->hob_lbah = (block >> 40) & 0xff;
365 tf->hob_lbam = (block >> 32) & 0xff;
366 tf->hob_lbal = (block >> 24) & 0xff;
367 } else
368 /* request too large even for LBA48 */
369 return -ERANGE;
370
371 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
372 return -EINVAL;
373
374 tf->nsect = n_block & 0xff;
375
376 tf->lbah = (block >> 16) & 0xff;
377 tf->lbam = (block >> 8) & 0xff;
378 tf->lbal = block & 0xff;
379
380 tf->device |= ATA_LBA;
381 } else {
382 /* CHS */
383 u32 sect, head, cyl, track;
384
385 /* The request -may- be too large for CHS addressing. */
386 if (!lba_28_ok(block, n_block))
387 return -ERANGE;
388
389 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
390 return -EINVAL;
391
392 /* Convert LBA to CHS */
393 track = (u32)block / dev->sectors;
394 cyl = track / dev->heads;
395 head = track % dev->heads;
396 sect = (u32)block % dev->sectors + 1;
397
398 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
399 (u32)block, track, cyl, head, sect);
400
401 /* Check whether the converted CHS can fit.
402 Cylinder: 0-65535
403 Head: 0-15
404 Sector: 1-255*/
405 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
406 return -ERANGE;
407
408 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
409 tf->lbal = sect;
410 tf->lbam = cyl;
411 tf->lbah = cyl >> 8;
412 tf->device |= head;
413 }
414
415 return 0;
416}
417
418/**
Tejun Heocb95d562006-03-06 04:31:56 +0900419 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
420 * @pio_mask: pio_mask
421 * @mwdma_mask: mwdma_mask
422 * @udma_mask: udma_mask
423 *
424 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
425 * unsigned int xfer_mask.
426 *
427 * LOCKING:
428 * None.
429 *
430 * RETURNS:
431 * Packed xfer_mask.
432 */
433static unsigned int ata_pack_xfermask(unsigned int pio_mask,
434 unsigned int mwdma_mask,
435 unsigned int udma_mask)
436{
437 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
438 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
439 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
440}
441
Tejun Heoc0489e42006-03-24 14:07:49 +0900442/**
443 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
444 * @xfer_mask: xfer_mask to unpack
445 * @pio_mask: resulting pio_mask
446 * @mwdma_mask: resulting mwdma_mask
447 * @udma_mask: resulting udma_mask
448 *
449 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
450 * Any NULL distination masks will be ignored.
451 */
452static void ata_unpack_xfermask(unsigned int xfer_mask,
453 unsigned int *pio_mask,
454 unsigned int *mwdma_mask,
455 unsigned int *udma_mask)
456{
457 if (pio_mask)
458 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
459 if (mwdma_mask)
460 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
461 if (udma_mask)
462 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
463}
464
Tejun Heocb95d562006-03-06 04:31:56 +0900465static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900466 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900467 u8 base;
468} ata_xfer_tbl[] = {
469 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
470 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
471 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
472 { -1, },
473};
474
475/**
476 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
477 * @xfer_mask: xfer_mask of interest
478 *
479 * Return matching XFER_* value for @xfer_mask. Only the highest
480 * bit of @xfer_mask is considered.
481 *
482 * LOCKING:
483 * None.
484 *
485 * RETURNS:
486 * Matching XFER_* value, 0 if no match found.
487 */
488static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
489{
490 int highbit = fls(xfer_mask) - 1;
491 const struct ata_xfer_ent *ent;
492
493 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
494 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
495 return ent->base + highbit - ent->shift;
496 return 0;
497}
498
499/**
500 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
501 * @xfer_mode: XFER_* of interest
502 *
503 * Return matching xfer_mask for @xfer_mode.
504 *
505 * LOCKING:
506 * None.
507 *
508 * RETURNS:
509 * Matching xfer_mask, 0 if no match found.
510 */
511static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
512{
513 const struct ata_xfer_ent *ent;
514
515 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
516 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
517 return 1 << (ent->shift + xfer_mode - ent->base);
518 return 0;
519}
520
521/**
522 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
523 * @xfer_mode: XFER_* of interest
524 *
525 * Return matching xfer_shift for @xfer_mode.
526 *
527 * LOCKING:
528 * None.
529 *
530 * RETURNS:
531 * Matching xfer_shift, -1 if no match found.
532 */
533static int ata_xfer_mode2shift(unsigned int xfer_mode)
534{
535 const struct ata_xfer_ent *ent;
536
537 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
538 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
539 return ent->shift;
540 return -1;
541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900544 * ata_mode_string - convert xfer_mask to string
545 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 *
547 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900548 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *
550 * LOCKING:
551 * None.
552 *
553 * RETURNS:
554 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900555 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900557static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Tejun Heo75f554b2006-03-06 04:31:57 +0900559 static const char * const xfer_mode_str[] = {
560 "PIO0",
561 "PIO1",
562 "PIO2",
563 "PIO3",
564 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100565 "PIO5",
566 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900567 "MWDMA0",
568 "MWDMA1",
569 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100570 "MWDMA3",
571 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900572 "UDMA/16",
573 "UDMA/25",
574 "UDMA/33",
575 "UDMA/44",
576 "UDMA/66",
577 "UDMA/100",
578 "UDMA/133",
579 "UDMA7",
580 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900581 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900583 highbit = fls(xfer_mask) - 1;
584 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
585 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
Tejun Heo4c360c82006-04-01 01:38:17 +0900589static const char *sata_spd_string(unsigned int spd)
590{
591 static const char * const spd_str[] = {
592 "1.5 Gbps",
593 "3.0 Gbps",
594 };
595
596 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
597 return "<unknown>";
598 return spd_str[spd - 1];
599}
600
Tejun Heo3373efd2006-05-15 20:57:53 +0900601void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900602{
Borislav Petkov0dd4b212006-06-23 02:29:08 -0400603 if (ata_dev_enabled(dev) && ata_msg_drv(dev->ap)) {
Tejun Heof15a1da2006-05-15 20:57:56 +0900604 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo4ae72a12007-02-02 16:22:30 +0900605 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
606 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900607 dev->class++;
608 }
609}
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 * ata_devchk - PATA device presence detection
613 * @ap: ATA channel to examine
614 * @device: Device to examine (starting at zero)
615 *
Tejun Heo0d5ff562007-02-01 15:06:36 +0900616 * This technique was originally described in
617 * Hale Landis's ATADRVR (www.ata-atapi.com), and
618 * later found its way into the ATA/ATAPI spec.
619 *
620 * Write a pattern to the ATA shadow registers,
621 * and if a device is present, it will respond by
622 * correctly storing and echoing back the
623 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 *
625 * LOCKING:
626 * caller.
627 */
628
Tejun Heo0d5ff562007-02-01 15:06:36 +0900629static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900631 struct ata_ioports *ioaddr = &ap->ioaddr;
632 u8 nsect, lbal;
633
634 ap->ops->dev_select(ap, device);
635
636 iowrite8(0x55, ioaddr->nsect_addr);
637 iowrite8(0xaa, ioaddr->lbal_addr);
638
639 iowrite8(0xaa, ioaddr->nsect_addr);
640 iowrite8(0x55, ioaddr->lbal_addr);
641
642 iowrite8(0x55, ioaddr->nsect_addr);
643 iowrite8(0xaa, ioaddr->lbal_addr);
644
645 nsect = ioread8(ioaddr->nsect_addr);
646 lbal = ioread8(ioaddr->lbal_addr);
647
648 if ((nsect == 0x55) && (lbal == 0xaa))
649 return 1; /* we found a device */
650
651 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654/**
655 * ata_dev_classify - determine device type based on ATA-spec signature
656 * @tf: ATA taskfile register set for device to be identified
657 *
658 * Determine from taskfile register contents whether a device is
659 * ATA or ATAPI, as per "Signature and persistence" section
660 * of ATA/PI spec (volume 1, sect 5.14).
661 *
662 * LOCKING:
663 * None.
664 *
665 * RETURNS:
666 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
667 * the event of failure.
668 */
669
Jeff Garzik057ace52005-10-22 14:27:05 -0400670unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 /* Apple's open source Darwin code hints that some devices only
673 * put a proper signature into the LBA mid/high registers,
674 * So, we only check those. It's sufficient for uniqueness.
675 */
676
677 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
678 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
679 DPRINTK("found ATA device by sig\n");
680 return ATA_DEV_ATA;
681 }
682
683 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
684 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
685 DPRINTK("found ATAPI device by sig\n");
686 return ATA_DEV_ATAPI;
687 }
688
689 DPRINTK("unknown device\n");
690 return ATA_DEV_UNKNOWN;
691}
692
693/**
694 * ata_dev_try_classify - Parse returned ATA device signature
695 * @ap: ATA channel to examine
696 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900697 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 *
699 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
700 * an ATA/ATAPI-defined set of values is placed in the ATA
701 * shadow registers, indicating the results of device detection
702 * and diagnostics.
703 *
704 * Select the ATA device, and read the values from the ATA shadow
705 * registers. Then parse according to the Error register value,
706 * and the spec-defined values examined by ata_dev_classify().
707 *
708 * LOCKING:
709 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900710 *
711 * RETURNS:
712 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 */
714
Akira Iguchia619f981b2007-01-26 16:28:18 +0900715unsigned int
Tejun Heob4dc7622006-01-24 17:05:22 +0900716ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 struct ata_taskfile tf;
719 unsigned int class;
720 u8 err;
721
722 ap->ops->dev_select(ap, device);
723
724 memset(&tf, 0, sizeof(tf));
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400727 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900728 if (r_err)
729 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Alan Cox93590852006-09-12 16:55:12 +0100731 /* see if device passed diags: if master then continue and warn later */
732 if (err == 0 && device == 0)
733 /* diagnostic fail : do nothing _YET_ */
734 ap->device[device].horkage |= ATA_HORKAGE_DIAGNOSTIC;
735 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 /* do nothing */ ;
737 else if ((device == 0) && (err == 0x81))
738 /* do nothing */ ;
739 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900740 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Tejun Heob4dc7622006-01-24 17:05:22 +0900742 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900746 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900748 return ATA_DEV_NONE;
749 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
752/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900753 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 * @id: IDENTIFY DEVICE results we will examine
755 * @s: string into which data is output
756 * @ofs: offset into identify device page
757 * @len: length of string to return. must be an even number.
758 *
759 * The strings in the IDENTIFY DEVICE page are broken up into
760 * 16-bit chunks. Run through the string, and output each
761 * 8-bit chunk linearly, regardless of platform.
762 *
763 * LOCKING:
764 * caller.
765 */
766
Tejun Heo6a62a042006-02-13 10:02:46 +0900767void ata_id_string(const u16 *id, unsigned char *s,
768 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
770 unsigned int c;
771
772 while (len > 0) {
773 c = id[ofs] >> 8;
774 *s = c;
775 s++;
776
777 c = id[ofs] & 0xff;
778 *s = c;
779 s++;
780
781 ofs++;
782 len -= 2;
783 }
784}
785
Tejun Heo0e949ff2006-02-12 22:47:04 +0900786/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900787 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900788 * @id: IDENTIFY DEVICE results we will examine
789 * @s: string into which data is output
790 * @ofs: offset into identify device page
791 * @len: length of string to return. must be an odd number.
792 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900793 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900794 * trims trailing spaces and terminates the resulting string with
795 * null. @len must be actual maximum length (even number) + 1.
796 *
797 * LOCKING:
798 * caller.
799 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900800void ata_id_c_string(const u16 *id, unsigned char *s,
801 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900802{
803 unsigned char *p;
804
805 WARN_ON(!(len & 1));
806
Tejun Heo6a62a042006-02-13 10:02:46 +0900807 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900808
809 p = s + strnlen(s, len - 1);
810 while (p > s && p[-1] == ' ')
811 p--;
812 *p = '\0';
813}
Edward Falk0baab862005-06-02 18:17:13 -0400814
Alan Cox1e999732007-04-11 00:23:13 +0100815static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
816{
817 u64 sectors = 0;
818
819 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
820 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
821 sectors |= (tf->hob_lbal & 0xff) << 24;
822 sectors |= (tf->lbah & 0xff) << 16;
823 sectors |= (tf->lbam & 0xff) << 8;
824 sectors |= (tf->lbal & 0xff);
825
826 return ++sectors;
827}
828
829static u64 ata_tf_to_lba(struct ata_taskfile *tf)
830{
831 u64 sectors = 0;
832
833 sectors |= (tf->device & 0x0f) << 24;
834 sectors |= (tf->lbah & 0xff) << 16;
835 sectors |= (tf->lbam & 0xff) << 8;
836 sectors |= (tf->lbal & 0xff);
837
838 return ++sectors;
839}
840
841/**
842 * ata_read_native_max_address_ext - LBA48 native max query
843 * @dev: Device to query
844 *
845 * Perform an LBA48 size query upon the device in question. Return the
846 * actual LBA48 size or zero if the command fails.
847 */
848
849static u64 ata_read_native_max_address_ext(struct ata_device *dev)
850{
851 unsigned int err;
852 struct ata_taskfile tf;
853
854 ata_tf_init(dev, &tf);
855
856 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
857 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
858 tf.protocol |= ATA_PROT_NODATA;
859 tf.device |= 0x40;
860
861 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
862 if (err)
863 return 0;
864
865 return ata_tf_to_lba48(&tf);
866}
867
868/**
869 * ata_read_native_max_address - LBA28 native max query
870 * @dev: Device to query
871 *
872 * Performa an LBA28 size query upon the device in question. Return the
873 * actual LBA28 size or zero if the command fails.
874 */
875
876static u64 ata_read_native_max_address(struct ata_device *dev)
877{
878 unsigned int err;
879 struct ata_taskfile tf;
880
881 ata_tf_init(dev, &tf);
882
883 tf.command = ATA_CMD_READ_NATIVE_MAX;
884 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
885 tf.protocol |= ATA_PROT_NODATA;
886 tf.device |= 0x40;
887
888 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
889 if (err)
890 return 0;
891
892 return ata_tf_to_lba(&tf);
893}
894
895/**
896 * ata_set_native_max_address_ext - LBA48 native max set
897 * @dev: Device to query
898 *
899 * Perform an LBA48 size set max upon the device in question. Return the
900 * actual LBA48 size or zero if the command fails.
901 */
902
903static u64 ata_set_native_max_address_ext(struct ata_device *dev, u64 new_sectors)
904{
905 unsigned int err;
906 struct ata_taskfile tf;
907
908 new_sectors--;
909
910 ata_tf_init(dev, &tf);
911
912 tf.command = ATA_CMD_SET_MAX_EXT;
913 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 | ATA_TFLAG_ISADDR;
914 tf.protocol |= ATA_PROT_NODATA;
915 tf.device |= 0x40;
916
917 tf.lbal = (new_sectors >> 0) & 0xff;
918 tf.lbam = (new_sectors >> 8) & 0xff;
919 tf.lbah = (new_sectors >> 16) & 0xff;
920
921 tf.hob_lbal = (new_sectors >> 24) & 0xff;
922 tf.hob_lbam = (new_sectors >> 32) & 0xff;
923 tf.hob_lbah = (new_sectors >> 40) & 0xff;
924
925 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
926 if (err)
927 return 0;
928
929 return ata_tf_to_lba48(&tf);
930}
931
932/**
933 * ata_set_native_max_address - LBA28 native max set
934 * @dev: Device to query
935 *
936 * Perform an LBA28 size set max upon the device in question. Return the
937 * actual LBA28 size or zero if the command fails.
938 */
939
940static u64 ata_set_native_max_address(struct ata_device *dev, u64 new_sectors)
941{
942 unsigned int err;
943 struct ata_taskfile tf;
944
945 new_sectors--;
946
947 ata_tf_init(dev, &tf);
948
949 tf.command = ATA_CMD_SET_MAX;
950 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
951 tf.protocol |= ATA_PROT_NODATA;
952
953 tf.lbal = (new_sectors >> 0) & 0xff;
954 tf.lbam = (new_sectors >> 8) & 0xff;
955 tf.lbah = (new_sectors >> 16) & 0xff;
956 tf.device |= ((new_sectors >> 24) & 0x0f) | 0x40;
957
958 err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
959 if (err)
960 return 0;
961
962 return ata_tf_to_lba(&tf);
963}
964
965/**
966 * ata_hpa_resize - Resize a device with an HPA set
967 * @dev: Device to resize
968 *
969 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
970 * it if required to the full size of the media. The caller must check
971 * the drive has the HPA feature set enabled.
972 */
973
974static u64 ata_hpa_resize(struct ata_device *dev)
975{
976 u64 sectors = dev->n_sectors;
977 u64 hpa_sectors;
978
979 if (ata_id_has_lba48(dev->id))
980 hpa_sectors = ata_read_native_max_address_ext(dev);
981 else
982 hpa_sectors = ata_read_native_max_address(dev);
983
984 /* if no hpa, both should be equal */
985 ata_dev_printk(dev, KERN_INFO, "%s 1: sectors = %lld, hpa_sectors = %lld\n",
986 __FUNCTION__, sectors, hpa_sectors);
987
988 if (hpa_sectors > sectors) {
989 ata_dev_printk(dev, KERN_INFO,
990 "Host Protected Area detected:\n"
991 "\tcurrent size: %lld sectors\n"
992 "\tnative size: %lld sectors\n",
993 sectors, hpa_sectors);
994
995 if (ata_ignore_hpa) {
996 if (ata_id_has_lba48(dev->id))
997 hpa_sectors = ata_set_native_max_address_ext(dev, hpa_sectors);
998 else
999 hpa_sectors = ata_set_native_max_address(dev, hpa_sectors);
1000
1001 if (hpa_sectors) {
1002 ata_dev_printk(dev, KERN_INFO,
1003 "native size increased to %lld sectors\n", hpa_sectors);
1004 return hpa_sectors;
1005 }
1006 }
1007 }
1008 return sectors;
1009}
1010
Tejun Heo29407402006-02-12 22:47:04 +09001011static u64 ata_id_n_sectors(const u16 *id)
1012{
1013 if (ata_id_has_lba(id)) {
1014 if (ata_id_has_lba48(id))
1015 return ata_id_u64(id, 100);
1016 else
1017 return ata_id_u32(id, 60);
1018 } else {
1019 if (ata_id_current_chs_valid(id))
1020 return ata_id_u32(id, 57);
1021 else
1022 return id[1] * id[3] * id[6];
1023 }
1024}
1025
Edward Falk0baab862005-06-02 18:17:13 -04001026/**
Alan10305f02007-02-20 18:01:59 +00001027 * ata_id_to_dma_mode - Identify DMA mode from id block
1028 * @dev: device to identify
Randy Dunlapcc261262007-03-16 19:55:47 -07001029 * @unknown: mode to assume if we cannot tell
Alan10305f02007-02-20 18:01:59 +00001030 *
1031 * Set up the timing values for the device based upon the identify
1032 * reported values for the DMA mode. This function is used by drivers
1033 * which rely upon firmware configured modes, but wish to report the
1034 * mode correctly when possible.
1035 *
1036 * In addition we emit similarly formatted messages to the default
1037 * ata_dev_set_mode handler, in order to provide consistency of
1038 * presentation.
1039 */
1040
1041void ata_id_to_dma_mode(struct ata_device *dev, u8 unknown)
1042{
1043 unsigned int mask;
1044 u8 mode;
1045
1046 /* Pack the DMA modes */
1047 mask = ((dev->id[63] >> 8) << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA;
1048 if (dev->id[53] & 0x04)
1049 mask |= ((dev->id[88] >> 8) << ATA_SHIFT_UDMA) & ATA_MASK_UDMA;
1050
1051 /* Select the mode in use */
1052 mode = ata_xfer_mask2mode(mask);
1053
1054 if (mode != 0) {
1055 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
1056 ata_mode_string(mask));
1057 } else {
1058 /* SWDMA perhaps ? */
1059 mode = unknown;
1060 ata_dev_printk(dev, KERN_INFO, "configured for DMA\n");
1061 }
1062
1063 /* Configure the device reporting */
1064 dev->xfer_mode = mode;
1065 dev->xfer_shift = ata_xfer_mode2shift(mode);
1066}
1067
1068/**
Edward Falk0baab862005-06-02 18:17:13 -04001069 * ata_noop_dev_select - Select device 0/1 on ATA bus
1070 * @ap: ATA channel to manipulate
1071 * @device: ATA device (numbered from zero) to select
1072 *
1073 * This function performs no actual function.
1074 *
1075 * May be used as the dev_select() entry in ata_port_operations.
1076 *
1077 * LOCKING:
1078 * caller.
1079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
1081{
1082}
1083
Edward Falk0baab862005-06-02 18:17:13 -04001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085/**
1086 * ata_std_dev_select - Select device 0/1 on ATA bus
1087 * @ap: ATA channel to manipulate
1088 * @device: ATA device (numbered from zero) to select
1089 *
1090 * Use the method defined in the ATA specification to
1091 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -04001092 * ATA channel. Works with both PIO and MMIO.
1093 *
1094 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 *
1096 * LOCKING:
1097 * caller.
1098 */
1099
1100void ata_std_dev_select (struct ata_port *ap, unsigned int device)
1101{
1102 u8 tmp;
1103
1104 if (device == 0)
1105 tmp = ATA_DEVICE_OBS;
1106 else
1107 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1108
Tejun Heo0d5ff562007-02-01 15:06:36 +09001109 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 ata_pause(ap); /* needed; also flushes, for mmio */
1111}
1112
1113/**
1114 * ata_dev_select - Select device 0/1 on ATA bus
1115 * @ap: ATA channel to manipulate
1116 * @device: ATA device (numbered from zero) to select
1117 * @wait: non-zero to wait for Status register BSY bit to clear
1118 * @can_sleep: non-zero if context allows sleeping
1119 *
1120 * Use the method defined in the ATA specification to
1121 * make either device 0, or device 1, active on the
1122 * ATA channel.
1123 *
1124 * This is a high-level version of ata_std_dev_select(),
1125 * which additionally provides the services of inserting
1126 * the proper pauses and status polling, where needed.
1127 *
1128 * LOCKING:
1129 * caller.
1130 */
1131
1132void ata_dev_select(struct ata_port *ap, unsigned int device,
1133 unsigned int wait, unsigned int can_sleep)
1134{
Tejun Heo88574552006-06-25 20:00:35 +09001135 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001136 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
1137 "device %u, wait %u\n", device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 if (wait)
1140 ata_wait_idle(ap);
1141
1142 ap->ops->dev_select(ap, device);
1143
1144 if (wait) {
1145 if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI)
1146 msleep(150);
1147 ata_wait_idle(ap);
1148 }
1149}
1150
1151/**
1152 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001153 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001155 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1156 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 *
1158 * LOCKING:
1159 * caller.
1160 */
1161
Tejun Heo0bd33002006-02-12 22:47:05 +09001162static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 DPRINTK("49==0x%04x "
1165 "53==0x%04x "
1166 "63==0x%04x "
1167 "64==0x%04x "
1168 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001169 id[49],
1170 id[53],
1171 id[63],
1172 id[64],
1173 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 DPRINTK("80==0x%04x "
1175 "81==0x%04x "
1176 "82==0x%04x "
1177 "83==0x%04x "
1178 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001179 id[80],
1180 id[81],
1181 id[82],
1182 id[83],
1183 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 DPRINTK("88==0x%04x "
1185 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001186 id[88],
1187 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
Tejun Heocb95d562006-03-06 04:31:56 +09001190/**
1191 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1192 * @id: IDENTIFY data to compute xfer mask from
1193 *
1194 * Compute the xfermask for this device. This is not as trivial
1195 * as it seems if we must consider early devices correctly.
1196 *
1197 * FIXME: pre IDE drive timing (do we care ?).
1198 *
1199 * LOCKING:
1200 * None.
1201 *
1202 * RETURNS:
1203 * Computed xfermask
1204 */
1205static unsigned int ata_id_xfermask(const u16 *id)
1206{
1207 unsigned int pio_mask, mwdma_mask, udma_mask;
1208
1209 /* Usual case. Word 53 indicates word 64 is valid */
1210 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1211 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1212 pio_mask <<= 3;
1213 pio_mask |= 0x7;
1214 } else {
1215 /* If word 64 isn't valid then Word 51 high byte holds
1216 * the PIO timing number for the maximum. Turn it into
1217 * a mask.
1218 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001219 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001220 if (mode < 5) /* Valid PIO range */
1221 pio_mask = (2 << mode) - 1;
1222 else
1223 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001224
1225 /* But wait.. there's more. Design your standards by
1226 * committee and you too can get a free iordy field to
1227 * process. However its the speeds not the modes that
1228 * are supported... Note drivers using the timing API
1229 * will get this right anyway
1230 */
1231 }
1232
1233 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001234
Alan Coxb352e572006-08-10 18:52:12 +01001235 if (ata_id_is_cfa(id)) {
1236 /*
1237 * Process compact flash extended modes
1238 */
1239 int pio = id[163] & 0x7;
1240 int dma = (id[163] >> 3) & 7;
1241
1242 if (pio)
1243 pio_mask |= (1 << 5);
1244 if (pio > 1)
1245 pio_mask |= (1 << 6);
1246 if (dma)
1247 mwdma_mask |= (1 << 3);
1248 if (dma > 1)
1249 mwdma_mask |= (1 << 4);
1250 }
1251
Tejun Heofb21f0d2006-03-12 12:34:35 +09001252 udma_mask = 0;
1253 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1254 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001255
1256 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1257}
1258
Tejun Heo86e45b62006-03-05 15:29:09 +09001259/**
1260 * ata_port_queue_task - Queue port_task
1261 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001262 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001263 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001264 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001265 *
1266 * Schedule @fn(@data) for execution after @delay jiffies using
1267 * port_task. There is one port_task per port and it's the
1268 * user(low level driver)'s responsibility to make sure that only
1269 * one task is active at any given time.
1270 *
1271 * libata core layer takes care of synchronization between
1272 * port_task and EH. ata_port_queue_task() may be ignored for EH
1273 * synchronization.
1274 *
1275 * LOCKING:
1276 * Inherited from caller.
1277 */
David Howells65f27f32006-11-22 14:55:48 +00001278void ata_port_queue_task(struct ata_port *ap, work_func_t fn, void *data,
Tejun Heo86e45b62006-03-05 15:29:09 +09001279 unsigned long delay)
1280{
1281 int rc;
1282
Tejun Heob51e9e52006-06-29 01:29:30 +09001283 if (ap->pflags & ATA_PFLAG_FLUSH_PORT_TASK)
Tejun Heo86e45b62006-03-05 15:29:09 +09001284 return;
1285
David Howells65f27f32006-11-22 14:55:48 +00001286 PREPARE_DELAYED_WORK(&ap->port_task, fn);
1287 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001288
David Howells52bad642006-11-22 14:54:01 +00001289 rc = queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001290
1291 /* rc == 0 means that another user is using port task */
1292 WARN_ON(rc == 0);
1293}
1294
1295/**
1296 * ata_port_flush_task - Flush port_task
1297 * @ap: The ata_port to flush port_task for
1298 *
1299 * After this function completes, port_task is guranteed not to
1300 * be running or scheduled.
1301 *
1302 * LOCKING:
1303 * Kernel thread context (may sleep)
1304 */
1305void ata_port_flush_task(struct ata_port *ap)
1306{
1307 unsigned long flags;
1308
1309 DPRINTK("ENTER\n");
1310
Jeff Garzikba6a1302006-06-22 23:46:10 -04001311 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09001312 ap->pflags |= ATA_PFLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04001313 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +09001314
1315 DPRINTK("flush #1\n");
1316 flush_workqueue(ata_wq);
1317
1318 /*
1319 * At this point, if a task is running, it's guaranteed to see
1320 * the FLUSH flag; thus, it will never queue pio tasks again.
1321 * Cancel and flush.
1322 */
1323 if (!cancel_delayed_work(&ap->port_task)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001324 if (ata_msg_ctl(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001325 ata_port_printk(ap, KERN_DEBUG, "%s: flush #2\n",
1326 __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001327 flush_workqueue(ata_wq);
1328 }
1329
Jeff Garzikba6a1302006-06-22 23:46:10 -04001330 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09001331 ap->pflags &= ~ATA_PFLAG_FLUSH_PORT_TASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04001332 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo86e45b62006-03-05 15:29:09 +09001333
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001334 if (ata_msg_ctl(ap))
1335 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001336}
1337
Adrian Bunk7102d232007-01-04 00:09:36 +01001338static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001339{
Tejun Heo77853bf2006-01-23 13:09:36 +09001340 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001341
Tejun Heoa2a7a662005-12-13 14:48:31 +09001342 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001343}
1344
1345/**
Tejun Heo24326972006-11-14 22:47:09 +09001346 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001347 * @dev: Device to which the command is sent
1348 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001349 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001350 * @dma_dir: Data tranfer direction of the command
Tejun Heo24326972006-11-14 22:47:09 +09001351 * @sg: sg list for the data buffer of the command
1352 * @n_elem: Number of sg entries
Tejun Heoa2a7a662005-12-13 14:48:31 +09001353 *
1354 * Executes libata internal command with timeout. @tf contains
1355 * command on entry and result on return. Timeout and error
1356 * conditions are reported via return value. No recovery action
1357 * is taken after a command times out. It's caller's duty to
1358 * clean up after timeout.
1359 *
1360 * LOCKING:
1361 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001362 *
1363 * RETURNS:
1364 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001365 */
Tejun Heo24326972006-11-14 22:47:09 +09001366unsigned ata_exec_internal_sg(struct ata_device *dev,
1367 struct ata_taskfile *tf, const u8 *cdb,
1368 int dma_dir, struct scatterlist *sg,
1369 unsigned int n_elem)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001370{
Tejun Heo3373efd2006-05-15 20:57:53 +09001371 struct ata_port *ap = dev->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001372 u8 command = tf->command;
1373 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001374 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001375 u32 preempted_sactive, preempted_qc_active;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001376 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001377 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001378 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001379 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001380
Jeff Garzikba6a1302006-06-22 23:46:10 -04001381 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001382
Tejun Heoe3180492006-05-15 20:58:09 +09001383 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001384 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001385 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001386 return AC_ERR_SYSTEM;
1387 }
1388
Tejun Heo2ab7db12006-05-15 20:58:02 +09001389 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001390
Tejun Heo2ab7db12006-05-15 20:58:02 +09001391 /* XXX: Tag 0 is used for drivers with legacy EH as some
1392 * drivers choke if any other tag is given. This breaks
1393 * ata_tag_internal() test for those drivers. Don't use new
1394 * EH stuff without converting to it.
1395 */
1396 if (ap->ops->error_handler)
1397 tag = ATA_TAG_INTERNAL;
1398 else
1399 tag = 0;
1400
Tejun Heo6cec4a32006-05-15 21:03:41 +09001401 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001402 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001403 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001404
1405 qc->tag = tag;
1406 qc->scsicmd = NULL;
1407 qc->ap = ap;
1408 qc->dev = dev;
1409 ata_qc_reinit(qc);
1410
1411 preempted_tag = ap->active_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001412 preempted_sactive = ap->sactive;
1413 preempted_qc_active = ap->qc_active;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001414 ap->active_tag = ATA_TAG_POISON;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001415 ap->sactive = 0;
1416 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001417
1418 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001419 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001420 if (cdb)
1421 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001422 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001423 qc->dma_dir = dma_dir;
1424 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001425 unsigned int i, buflen = 0;
1426
1427 for (i = 0; i < n_elem; i++)
1428 buflen += sg[i].length;
1429
1430 ata_sg_init(qc, sg, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001431 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001432 }
1433
Tejun Heo77853bf2006-01-23 13:09:36 +09001434 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001435 qc->complete_fn = ata_qc_complete_internal;
1436
Tejun Heo8e0e6942006-03-31 20:41:11 +09001437 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001438
Jeff Garzikba6a1302006-06-22 23:46:10 -04001439 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001440
Andrew Mortona8601e52006-06-25 01:36:52 -07001441 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001442
Tejun Heod95a7172006-05-15 20:58:14 +09001443 ata_port_flush_task(ap);
1444
1445 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001446 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001447
1448 /* We're racing with irq here. If we lose, the
1449 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001450 * twice. If we win, the port is frozen and will be
1451 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001452 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001453 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001454 qc->err_mask |= AC_ERR_TIMEOUT;
1455
1456 if (ap->ops->error_handler)
1457 ata_port_freeze(ap);
1458 else
1459 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001460
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001461 if (ata_msg_warn(ap))
1462 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001463 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001464 }
1465
Jeff Garzikba6a1302006-06-22 23:46:10 -04001466 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001467 }
1468
Tejun Heod95a7172006-05-15 20:58:14 +09001469 /* do post_internal_cmd */
1470 if (ap->ops->post_internal_cmd)
1471 ap->ops->post_internal_cmd(qc);
1472
Tejun Heoa51d6442007-03-20 15:24:11 +09001473 /* perform minimal error analysis */
1474 if (qc->flags & ATA_QCFLAG_FAILED) {
1475 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1476 qc->err_mask |= AC_ERR_DEV;
1477
1478 if (!qc->err_mask)
1479 qc->err_mask |= AC_ERR_OTHER;
1480
1481 if (qc->err_mask & ~AC_ERR_OTHER)
1482 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001483 }
1484
Tejun Heo15869302006-05-15 20:57:33 +09001485 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001486 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001487
Tejun Heoe61e0672006-05-15 20:57:40 +09001488 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001489 err_mask = qc->err_mask;
1490
1491 ata_qc_free(qc);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001492 ap->active_tag = preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001493 ap->sactive = preempted_sactive;
1494 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001495
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001496 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1497 * Until those drivers are fixed, we detect the condition
1498 * here, fail the command with AC_ERR_SYSTEM and reenable the
1499 * port.
1500 *
1501 * Note that this doesn't change any behavior as internal
1502 * command failure results in disabling the device in the
1503 * higher layer for LLDDs without new reset/EH callbacks.
1504 *
1505 * Kill the following code as soon as those drivers are fixed.
1506 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001507 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001508 err_mask |= AC_ERR_SYSTEM;
1509 ata_port_probe(ap);
1510 }
1511
Jeff Garzikba6a1302006-06-22 23:46:10 -04001512 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001513
Tejun Heo77853bf2006-01-23 13:09:36 +09001514 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001515}
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517/**
Tejun Heo33480a02006-12-12 02:15:31 +09001518 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001519 * @dev: Device to which the command is sent
1520 * @tf: Taskfile registers for the command and the result
1521 * @cdb: CDB for packet command
1522 * @dma_dir: Data tranfer direction of the command
1523 * @buf: Data buffer of the command
1524 * @buflen: Length of data buffer
1525 *
1526 * Wrapper around ata_exec_internal_sg() which takes simple
1527 * buffer instead of sg list.
1528 *
1529 * LOCKING:
1530 * None. Should be called with kernel context, might sleep.
1531 *
1532 * RETURNS:
1533 * Zero on success, AC_ERR_* mask on failure
1534 */
1535unsigned ata_exec_internal(struct ata_device *dev,
1536 struct ata_taskfile *tf, const u8 *cdb,
1537 int dma_dir, void *buf, unsigned int buflen)
1538{
Tejun Heo33480a02006-12-12 02:15:31 +09001539 struct scatterlist *psg = NULL, sg;
1540 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001541
Tejun Heo33480a02006-12-12 02:15:31 +09001542 if (dma_dir != DMA_NONE) {
1543 WARN_ON(!buf);
1544 sg_init_one(&sg, buf, buflen);
1545 psg = &sg;
1546 n_elem++;
1547 }
Tejun Heo24326972006-11-14 22:47:09 +09001548
Tejun Heo33480a02006-12-12 02:15:31 +09001549 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem);
Tejun Heo24326972006-11-14 22:47:09 +09001550}
1551
1552/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001553 * ata_do_simple_cmd - execute simple internal command
1554 * @dev: Device to which the command is sent
1555 * @cmd: Opcode to execute
1556 *
1557 * Execute a 'simple' command, that only consists of the opcode
1558 * 'cmd' itself, without filling any other registers
1559 *
1560 * LOCKING:
1561 * Kernel thread context (may sleep).
1562 *
1563 * RETURNS:
1564 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001565 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001566unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001567{
1568 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001569
1570 ata_tf_init(dev, &tf);
1571
1572 tf.command = cmd;
1573 tf.flags |= ATA_TFLAG_DEVICE;
1574 tf.protocol = ATA_PROT_NODATA;
1575
Tejun Heo977e6b92006-06-24 20:30:19 +09001576 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001577}
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001580 * ata_pio_need_iordy - check if iordy needed
1581 * @adev: ATA device
1582 *
1583 * Check if the current speed of the device requires IORDY. Used
1584 * by various controllers for chip configuration.
1585 */
Alan Cox432729f2007-03-08 23:22:59 +00001586
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001587unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1588{
Alan Cox432729f2007-03-08 23:22:59 +00001589 /* Controller doesn't support IORDY. Probably a pointless check
1590 as the caller should know this */
1591 if (adev->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001592 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001593 /* PIO3 and higher it is mandatory */
1594 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001595 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001596 /* We turn it on when possible */
1597 if (ata_id_has_iordy(adev->id))
1598 return 1;
1599 return 0;
1600}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001601
Alan Cox432729f2007-03-08 23:22:59 +00001602/**
1603 * ata_pio_mask_no_iordy - Return the non IORDY mask
1604 * @adev: ATA device
1605 *
1606 * Compute the highest mode possible if we are not using iordy. Return
1607 * -1 if no iordy mode is available.
1608 */
1609
1610static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1611{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001612 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001613 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001614 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001615 /* Is the speed faster than the drive allows non IORDY ? */
1616 if (pio) {
1617 /* This is cycle times not frequency - watch the logic! */
1618 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001619 return 3 << ATA_SHIFT_PIO;
1620 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001621 }
1622 }
Alan Cox432729f2007-03-08 23:22:59 +00001623 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001624}
1625
1626/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001627 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001628 * @dev: target device
1629 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001630 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001631 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001632 *
1633 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1634 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001635 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1636 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001637 *
1638 * LOCKING:
1639 * Kernel thread context (may sleep)
1640 *
1641 * RETURNS:
1642 * 0 on success, -errno otherwise.
1643 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001644int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001645 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001646{
Tejun Heo3373efd2006-05-15 20:57:53 +09001647 struct ata_port *ap = dev->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001648 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001649 struct ata_taskfile tf;
1650 unsigned int err_mask = 0;
1651 const char *reason;
Mark Lord169439c2007-04-17 18:26:07 -04001652 int tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001653 int rc;
1654
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001655 if (ata_msg_ctl(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001656 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001657
Tejun Heo49016ac2006-02-21 02:12:11 +09001658 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
Tejun Heo49016ac2006-02-21 02:12:11 +09001659 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001660 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001661
1662 switch (class) {
1663 case ATA_DEV_ATA:
1664 tf.command = ATA_CMD_ID_ATA;
1665 break;
1666 case ATA_DEV_ATAPI:
1667 tf.command = ATA_CMD_ID_ATAPI;
1668 break;
1669 default:
1670 rc = -ENODEV;
1671 reason = "unsupported class";
1672 goto err_out;
1673 }
1674
1675 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001676
1677 /* Some devices choke if TF registers contain garbage. Make
1678 * sure those are properly initialized.
1679 */
1680 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1681
1682 /* Device presence detection is unreliable on some
1683 * controllers. Always poll IDENTIFY if available.
1684 */
1685 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001686
Tejun Heo3373efd2006-05-15 20:57:53 +09001687 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001688 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001689 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001690 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001691 DPRINTK("ata%u.%d: NODEV after polling detection\n",
Tejun Heo44877b42007-02-21 01:06:51 +09001692 ap->print_id, dev->devno);
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001693 return -ENOENT;
1694 }
1695
Tejun Heo49016ac2006-02-21 02:12:11 +09001696 rc = -EIO;
1697 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001698 goto err_out;
1699 }
1700
1701 swap_buf_le16(id, ATA_ID_WORDS);
1702
Tejun Heo49016ac2006-02-21 02:12:11 +09001703 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001704 rc = -EINVAL;
1705 reason = "device reports illegal type";
1706
1707 if (class == ATA_DEV_ATA) {
1708 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1709 goto err_out;
1710 } else {
1711 if (ata_id_is_ata(id))
1712 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001713 }
1714
Mark Lord169439c2007-04-17 18:26:07 -04001715 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
1716 tried_spinup = 1;
1717 /*
1718 * Drive powered-up in standby mode, and requires a specific
1719 * SET_FEATURES spin-up subcommand before it will accept
1720 * anything other than the original IDENTIFY command.
1721 */
1722 ata_tf_init(dev, &tf);
1723 tf.command = ATA_CMD_SET_FEATURES;
1724 tf.feature = SETFEATURES_SPINUP;
1725 tf.protocol = ATA_PROT_NODATA;
1726 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1727 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
1728 if (err_mask) {
1729 rc = -EIO;
1730 reason = "SPINUP failed";
1731 goto err_out;
1732 }
1733 /*
1734 * If the drive initially returned incomplete IDENTIFY info,
1735 * we now must reissue the IDENTIFY command.
1736 */
1737 if (id[2] == 0x37c8)
1738 goto retry;
1739 }
1740
Tejun Heobff04642006-11-10 18:08:10 +09001741 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001742 /*
1743 * The exact sequence expected by certain pre-ATA4 drives is:
1744 * SRST RESET
1745 * IDENTIFY
1746 * INITIALIZE DEVICE PARAMETERS
1747 * anything else..
1748 * Some drives were very specific about that exact sequence.
1749 */
1750 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001751 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001752 if (err_mask) {
1753 rc = -EIO;
1754 reason = "INIT_DEV_PARAMS failed";
1755 goto err_out;
1756 }
1757
1758 /* current CHS translation info (id[53-58]) might be
1759 * changed. reread the identify device info.
1760 */
Tejun Heobff04642006-11-10 18:08:10 +09001761 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09001762 goto retry;
1763 }
1764 }
1765
1766 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001767
Tejun Heo49016ac2006-02-21 02:12:11 +09001768 return 0;
1769
1770 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001771 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001772 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001773 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001774 return rc;
1775}
1776
Tejun Heo3373efd2006-05-15 20:57:53 +09001777static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001778{
Tejun Heo3373efd2006-05-15 20:57:53 +09001779 return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001780}
1781
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001782static void ata_dev_config_ncq(struct ata_device *dev,
1783 char *desc, size_t desc_sz)
1784{
1785 struct ata_port *ap = dev->ap;
1786 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1787
1788 if (!ata_id_has_ncq(dev->id)) {
1789 desc[0] = '\0';
1790 return;
1791 }
Alan Cox6919a0a2006-10-27 19:08:46 -07001792 if (ata_device_blacklisted(dev) & ATA_HORKAGE_NONCQ) {
1793 snprintf(desc, desc_sz, "NCQ (not used)");
1794 return;
1795 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001796 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04001797 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001798 dev->flags |= ATA_DFLAG_NCQ;
1799 }
1800
1801 if (hdepth >= ddepth)
1802 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1803 else
1804 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1805}
1806
Tejun Heo49016ac2006-02-21 02:12:11 +09001807/**
Tejun Heoffeae412006-03-01 16:09:35 +09001808 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001809 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 *
Tejun Heoffeae412006-03-01 16:09:35 +09001811 * Configure @dev according to @dev->id. Generic and low-level
1812 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 *
1814 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001815 * Kernel thread context (may sleep)
1816 *
1817 * RETURNS:
1818 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09001820int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
Tejun Heo3373efd2006-05-15 20:57:53 +09001822 struct ata_port *ap = dev->ap;
Tejun Heoefdaedc2006-11-01 18:38:52 +09001823 int print_info = ap->eh_context.i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001824 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001825 unsigned int xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01001826 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001827 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
1828 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05001829 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001831 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09001832 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
1833 __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001834 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 }
1836
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001837 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001838 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08001840 /* set _SDD */
1841 rc = ata_acpi_push_id(ap, dev->devno);
1842 if (rc) {
1843 ata_dev_printk(dev, KERN_WARNING, "failed to set _SDD(%d)\n",
1844 rc);
1845 }
1846
1847 /* retrieve and execute the ATA task file of _GTF */
1848 ata_acpi_exec_tfs(ap);
1849
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001850 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001851 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001852 ata_dev_printk(dev, KERN_DEBUG,
1853 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1854 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001855 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001856 id[49], id[82], id[83], id[84],
1857 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001858
Tejun Heo208a9932006-03-05 17:55:58 +09001859 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001860 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001861 dev->max_sectors = 0;
1862 dev->cdb_len = 0;
1863 dev->n_sectors = 0;
1864 dev->cylinders = 0;
1865 dev->heads = 0;
1866 dev->sectors = 0;
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 /*
1869 * common ATA, ATAPI feature tests
1870 */
1871
Tejun Heoff8854b2006-03-06 04:31:56 +09001872 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001873 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001875 if (ata_msg_probe(ap))
1876 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 /* ATA-specific feature tests */
1879 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01001880 if (ata_id_is_cfa(id)) {
1881 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09001882 ata_dev_printk(dev, KERN_WARNING,
1883 "supports DRM functions and may "
1884 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01001885 snprintf(revbuf, 7, "CFA");
1886 }
1887 else
1888 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
1889
Tejun Heo1148c3a2006-03-13 19:48:04 +09001890 dev->n_sectors = ata_id_n_sectors(id);
Alan Cox1e999732007-04-11 00:23:13 +01001891 dev->n_sectors_boot = dev->n_sectors;
Tejun Heo29407402006-02-12 22:47:04 +09001892
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001893 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
Jeff Garzik591a6e8e2007-02-06 21:08:14 -05001894 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001895 sizeof(fwrevbuf));
1896
Jeff Garzik591a6e8e2007-02-06 21:08:14 -05001897 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001898 sizeof(modelbuf));
1899
1900 if (dev->id[59] & 0x100)
1901 dev->multi_count = dev->id[59] & 0xff;
1902
Tejun Heo1148c3a2006-03-13 19:48:04 +09001903 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001904 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001905 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001906
Tejun Heo4c2d7212006-03-05 17:55:58 +09001907 lba_desc = "LBA";
1908 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001909 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001910 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001911 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001912
1913 if (dev->n_sectors >= (1UL << 28) &&
1914 ata_id_has_flush_ext(id))
1915 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001916 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001917
Alan Cox1e999732007-04-11 00:23:13 +01001918 if (ata_id_hpa_enabled(dev->id))
1919 dev->n_sectors = ata_hpa_resize(dev);
1920
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001921 /* config NCQ */
1922 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1923
Albert Lee8bf62ece2005-05-12 15:29:42 -04001924 /* print device info to dmesg */
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001925 if (ata_msg_drv(ap) && print_info) {
1926 ata_dev_printk(dev, KERN_INFO,
1927 "%s: %s, %s, max %s\n",
1928 revbuf, modelbuf, fwrevbuf,
1929 ata_mode_string(xfer_mask));
1930 ata_dev_printk(dev, KERN_INFO,
1931 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001932 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001933 dev->multi_count, lba_desc, ncq_desc);
1934 }
Tejun Heoffeae412006-03-01 16:09:35 +09001935 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001936 /* CHS */
1937
1938 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001939 dev->cylinders = id[1];
1940 dev->heads = id[3];
1941 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001942
Tejun Heo1148c3a2006-03-13 19:48:04 +09001943 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001944 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001945 dev->cylinders = id[54];
1946 dev->heads = id[55];
1947 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001948 }
1949
1950 /* print device info to dmesg */
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001951 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09001952 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001953 "%s: %s, %s, max %s\n",
1954 revbuf, modelbuf, fwrevbuf,
1955 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05001956 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001957 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
1958 (unsigned long long)dev->n_sectors,
1959 dev->multi_count, dev->cylinders,
1960 dev->heads, dev->sectors);
1961 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08001962 }
1963
Tejun Heo6e7846e2006-02-12 23:32:58 +09001964 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 }
1966
1967 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05001968 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08001969 char *cdb_intr_string = "";
1970
Tejun Heo1148c3a2006-03-13 19:48:04 +09001971 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001973 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001974 ata_dev_printk(dev, KERN_WARNING,
1975 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09001976 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 goto err_out_nosup;
1978 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09001979 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Albert Lee08a556d2006-03-31 13:29:04 +08001981 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08001982 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08001983 cdb_intr_string = ", CDB intr";
1984 }
Albert Lee312f7da2005-09-27 17:38:03 +08001985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02001987 if (ata_msg_drv(ap) && print_info)
Tejun Heo12436c32006-05-15 20:59:15 +09001988 ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n",
1989 ata_mode_string(xfer_mask),
1990 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
1992
Tejun Heo914ed352006-11-01 18:39:55 +09001993 /* determine max_sectors */
1994 dev->max_sectors = ATA_MAX_SECTORS;
1995 if (dev->flags & ATA_DFLAG_LBA48)
1996 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
1997
Alan Cox93590852006-09-12 16:55:12 +01001998 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
1999 /* Let the user know. We don't want to disallow opens for
2000 rescue purposes, or in case the vendor is just a blithering
2001 idiot */
2002 if (print_info) {
2003 ata_dev_printk(dev, KERN_WARNING,
2004"Drive reports diagnostics failure. This may indicate a drive\n");
2005 ata_dev_printk(dev, KERN_WARNING,
2006"fault or invalid emulation. Contact drive vendor for information.\n");
2007 }
2008 }
2009
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002010 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002011 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002012 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002013 ata_dev_printk(dev, KERN_INFO,
2014 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002015 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002016 dev->max_sectors = ATA_MAX_SECTORS;
2017 }
2018
Albert Lee18d6e9d2007-04-02 11:34:15 +08002019 if (ata_device_blacklisted(dev) & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002020 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2021 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002022
Albert Lee6f23a312007-04-02 11:39:25 +08002023 /* limit ATAPI DMA to R/W commands only */
2024 if (ata_device_blacklisted(dev) & ATA_HORKAGE_DMA_RW_ONLY)
2025 dev->horkage |= ATA_HORKAGE_DMA_RW_ONLY;
2026
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002027 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002028 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002029
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002030 if (ata_msg_probe(ap))
2031 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
2032 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002033 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002036 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002037 ata_dev_printk(dev, KERN_DEBUG,
2038 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09002039 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040}
2041
2042/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002043 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002044 * @ap: port
2045 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002046 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002047 * detection.
2048 */
2049
2050int ata_cable_40wire(struct ata_port *ap)
2051{
2052 return ATA_CBL_PATA40;
2053}
2054
2055/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002056 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002057 * @ap: port
2058 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002059 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002060 * detection.
2061 */
2062
2063int ata_cable_80wire(struct ata_port *ap)
2064{
2065 return ATA_CBL_PATA80;
2066}
2067
2068/**
2069 * ata_cable_unknown - return unknown PATA cable.
2070 * @ap: port
2071 *
2072 * Helper method for drivers which have no PATA cable detection.
2073 */
2074
2075int ata_cable_unknown(struct ata_port *ap)
2076{
2077 return ATA_CBL_PATA_UNK;
2078}
2079
2080/**
2081 * ata_cable_sata - return SATA cable type
2082 * @ap: port
2083 *
2084 * Helper method for drivers which have SATA cables
2085 */
2086
2087int ata_cable_sata(struct ata_port *ap)
2088{
2089 return ATA_CBL_SATA;
2090}
2091
2092/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 * ata_bus_probe - Reset and probe ATA bus
2094 * @ap: Bus to probe
2095 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002096 * Master ATA bus probing function. Initiates a hardware-dependent
2097 * bus reset, then attempts to identify any devices found on
2098 * the bus.
2099 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002101 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 *
2103 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002104 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 */
2106
Brian King80289162006-08-07 14:27:31 -05002107int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002109 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002110 int tries[ATA_MAX_DEVICES];
Tejun Heo4ae72a12007-02-02 16:22:30 +09002111 int i, rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002112 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Tejun Heo28ca5c52006-03-01 16:09:36 +09002114 ata_port_probe(ap);
2115
Tejun Heo14d2bac2006-04-02 17:54:46 +09002116 for (i = 0; i < ATA_MAX_DEVICES; i++)
2117 tries[i] = ATA_PROBE_MAX_TRIES;
2118
2119 retry:
Tejun Heo20444702006-03-13 01:57:01 +09002120 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002121 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002122
Tejun Heo52783c52006-05-31 18:28:22 +09002123 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2124 dev = &ap->device[i];
Tejun Heoc19ba8a2006-01-24 17:05:22 +09002125
Tejun Heo52783c52006-05-31 18:28:22 +09002126 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2127 dev->class != ATA_DEV_UNKNOWN)
2128 classes[dev->devno] = dev->class;
2129 else
2130 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002131
Tejun Heo52783c52006-05-31 18:28:22 +09002132 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Tejun Heo52783c52006-05-31 18:28:22 +09002135 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002136
Alan Coxb6079ca2006-05-22 16:52:06 +01002137 /* after the reset the device state is PIO 0 and the controller
2138 state is undefined. Record the mode */
2139
2140 for (i = 0; i < ATA_MAX_DEVICES; i++)
2141 ap->device[i].pio_mode = XFER_PIO_0;
2142
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002143 /* read IDENTIFY page and configure devices. We have to do the identify
2144 specific sequence bass-ackwards so that PDIAG- is released by
2145 the slave device */
2146
2147 for (i = ATA_MAX_DEVICES - 1; i >= 0; i--) {
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002148 dev = &ap->device[i];
Tejun Heo28ca5c52006-03-01 16:09:36 +09002149
Tejun Heoec573752006-04-11 22:26:29 +09002150 if (tries[i])
2151 dev->class = classes[i];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002152
Tejun Heoe1211e32006-04-01 01:38:18 +09002153 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002154 continue;
2155
Tejun Heobff04642006-11-10 18:08:10 +09002156 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2157 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002158 if (rc)
2159 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002160 }
2161
Alan Coxbe0d18d2007-03-06 02:37:56 -08002162 /* Now ask for the cable type as PDIAG- should have been released */
2163 if (ap->ops->cable_detect)
2164 ap->cbl = ap->ops->cable_detect(ap);
2165
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002166 /* After the identify sequence we can now set up the devices. We do
2167 this in the normal order so that the user doesn't get confused */
2168
2169 for(i = 0; i < ATA_MAX_DEVICES; i++) {
2170 dev = &ap->device[i];
2171 if (!ata_dev_enabled(dev))
2172 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002173
Tejun Heoefdaedc2006-11-01 18:38:52 +09002174 ap->eh_context.i.flags |= ATA_EHI_PRINTINFO;
2175 rc = ata_dev_configure(dev);
2176 ap->eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002177 if (rc)
2178 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 }
2180
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002181 /* configure transfer mode */
Tejun Heo3adcebb2006-05-15 20:57:37 +09002182 rc = ata_set_mode(ap, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002183 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002184 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002186 for (i = 0; i < ATA_MAX_DEVICES; i++)
2187 if (ata_dev_enabled(&ap->device[i]))
2188 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002189
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002190 /* no device present, disable port */
2191 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 ap->ops->port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002193 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002194
2195 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002196 tries[dev->devno]--;
2197
Tejun Heo14d2bac2006-04-02 17:54:46 +09002198 switch (rc) {
2199 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002200 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002201 tries[dev->devno] = 0;
2202 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002203
2204 case -ENODEV:
2205 /* give it just one more chance */
2206 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002207 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002208 if (tries[dev->devno] == 1) {
2209 /* This is the last chance, better to slow
2210 * down than lose it.
2211 */
2212 sata_down_spd_limit(ap);
2213 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2214 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002215 }
2216
Tejun Heo4ae72a12007-02-02 16:22:30 +09002217 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002218 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002219
Tejun Heo14d2bac2006-04-02 17:54:46 +09002220 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221}
2222
2223/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002224 * ata_port_probe - Mark port as enabled
2225 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002227 * Modify @ap data structure such that the system
2228 * thinks that the entire port is enabled.
2229 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002230 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002231 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 */
2233
2234void ata_port_probe(struct ata_port *ap)
2235{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002236 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
2238
2239/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002240 * sata_print_link_status - Print SATA link status
2241 * @ap: SATA port to printk link status about
2242 *
2243 * This function prints link speed and status of a SATA link.
2244 *
2245 * LOCKING:
2246 * None.
2247 */
Jeff Garzik43727fb2007-02-25 16:50:52 -05002248void sata_print_link_status(struct ata_port *ap)
Tejun Heo3be680b2005-12-19 22:35:02 +09002249{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002250 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002251
Tejun Heo81952c52006-05-15 20:57:47 +09002252 if (sata_scr_read(ap, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002253 return;
Tejun Heo81952c52006-05-15 20:57:47 +09002254 sata_scr_read(ap, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002255
Tejun Heo81952c52006-05-15 20:57:47 +09002256 if (ata_port_online(ap)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002257 tmp = (sstatus >> 4) & 0xf;
Tejun Heof15a1da2006-05-15 20:57:56 +09002258 ata_port_printk(ap, KERN_INFO,
2259 "SATA link up %s (SStatus %X SControl %X)\n",
2260 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002261 } else {
Tejun Heof15a1da2006-05-15 20:57:56 +09002262 ata_port_printk(ap, KERN_INFO,
2263 "SATA link down (SStatus %X SControl %X)\n",
2264 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002265 }
2266}
2267
2268/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002269 * __sata_phy_reset - Wake/reset a low-level SATA PHY
2270 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002272 * This function issues commands to standard SATA Sxxx
2273 * PHY registers, to wake up the phy (and device), and
2274 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 *
2276 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002277 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 *
2279 */
2280void __sata_phy_reset(struct ata_port *ap)
2281{
2282 u32 sstatus;
2283 unsigned long timeout = jiffies + (HZ * 5);
2284
2285 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05002286 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09002287 sata_scr_write_flush(ap, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09002288 /* Couldn't find anything in SATA I/II specs, but
2289 * AHCI-1.1 10.4.2 says at least 1 ms. */
2290 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 }
Tejun Heo81952c52006-05-15 20:57:47 +09002292 /* phy wake/clear reset */
2293 sata_scr_write_flush(ap, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 /* wait for phy to become ready, if necessary */
2296 do {
2297 msleep(200);
Tejun Heo81952c52006-05-15 20:57:47 +09002298 sata_scr_read(ap, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 if ((sstatus & 0xf) != 1)
2300 break;
2301 } while (time_before(jiffies, timeout));
2302
Tejun Heo3be680b2005-12-19 22:35:02 +09002303 /* print link status */
2304 sata_print_link_status(ap);
Jeff Garzik656563e2005-11-20 03:36:45 -05002305
Tejun Heo3be680b2005-12-19 22:35:02 +09002306 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09002307 if (!ata_port_offline(ap))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09002309 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Tejun Heo198e0fe2006-04-02 18:51:52 +09002312 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 return;
2314
2315 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2316 ata_port_disable(ap);
2317 return;
2318 }
2319
2320 ap->cbl = ATA_CBL_SATA;
2321}
2322
2323/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002324 * sata_phy_reset - Reset SATA bus.
2325 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002327 * This function resets the SATA bus, and then probes
2328 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 *
2330 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002331 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 *
2333 */
2334void sata_phy_reset(struct ata_port *ap)
2335{
2336 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09002337 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 return;
2339 ata_bus_reset(ap);
2340}
2341
2342/**
Alan Coxebdfca6e2006-03-23 15:38:34 +00002343 * ata_dev_pair - return other device on cable
Alan Coxebdfca6e2006-03-23 15:38:34 +00002344 * @adev: device
2345 *
2346 * Obtain the other device on the same cable, or if none is
2347 * present NULL is returned
2348 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002349
Tejun Heo3373efd2006-05-15 20:57:53 +09002350struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca6e2006-03-23 15:38:34 +00002351{
Tejun Heo3373efd2006-05-15 20:57:53 +09002352 struct ata_port *ap = adev->ap;
Alan Coxebdfca6e2006-03-23 15:38:34 +00002353 struct ata_device *pair = &ap->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002354 if (!ata_dev_enabled(pair))
Alan Coxebdfca6e2006-03-23 15:38:34 +00002355 return NULL;
2356 return pair;
2357}
2358
2359/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002360 * ata_port_disable - Disable port.
2361 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002363 * Modify @ap data structure such that the system
2364 * thinks that the entire port is disabled, and should
2365 * never attempt to probe or communicate with devices
2366 * on this port.
2367 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002368 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002369 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 */
2371
2372void ata_port_disable(struct ata_port *ap)
2373{
2374 ap->device[0].class = ATA_DEV_NONE;
2375 ap->device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002376 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377}
2378
Tejun Heo1c3fae42006-04-02 20:53:28 +09002379/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002380 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo1c3fae42006-04-02 20:53:28 +09002381 * @ap: Port to adjust SATA spd limit for
2382 *
2383 * Adjust SATA spd limit of @ap downward. Note that this
2384 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002385 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002386 *
2387 * LOCKING:
2388 * Inherited from caller.
2389 *
2390 * RETURNS:
2391 * 0 on success, negative errno on failure
2392 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002393int sata_down_spd_limit(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002394{
Tejun Heo81952c52006-05-15 20:57:47 +09002395 u32 sstatus, spd, mask;
2396 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002397
Tejun Heo81952c52006-05-15 20:57:47 +09002398 rc = sata_scr_read(ap, SCR_STATUS, &sstatus);
2399 if (rc)
2400 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002401
2402 mask = ap->sata_spd_limit;
2403 if (mask <= 1)
2404 return -EINVAL;
2405 highbit = fls(mask) - 1;
2406 mask &= ~(1 << highbit);
2407
Tejun Heo81952c52006-05-15 20:57:47 +09002408 spd = (sstatus >> 4) & 0xf;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002409 if (spd <= 1)
2410 return -EINVAL;
2411 spd--;
2412 mask &= (1 << spd) - 1;
2413 if (!mask)
2414 return -EINVAL;
2415
2416 ap->sata_spd_limit = mask;
2417
Tejun Heof15a1da2006-05-15 20:57:56 +09002418 ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n",
2419 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002420
2421 return 0;
2422}
2423
Tejun Heo3c567b72006-05-15 20:57:23 +09002424static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002425{
2426 u32 spd, limit;
2427
2428 if (ap->sata_spd_limit == UINT_MAX)
2429 limit = 0;
2430 else
2431 limit = fls(ap->sata_spd_limit);
2432
2433 spd = (*scontrol >> 4) & 0xf;
2434 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
2435
2436 return spd != limit;
2437}
2438
2439/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002440 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo1c3fae42006-04-02 20:53:28 +09002441 * @ap: Port in question
2442 *
2443 * Test whether the spd limit in SControl matches
2444 * @ap->sata_spd_limit. This function is used to determine
2445 * whether hardreset is necessary to apply SATA spd
2446 * configuration.
2447 *
2448 * LOCKING:
2449 * Inherited from caller.
2450 *
2451 * RETURNS:
2452 * 1 if SATA spd configuration is needed, 0 otherwise.
2453 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002454int sata_set_spd_needed(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002455{
2456 u32 scontrol;
2457
Tejun Heo81952c52006-05-15 20:57:47 +09002458 if (sata_scr_read(ap, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002459 return 0;
2460
Tejun Heo3c567b72006-05-15 20:57:23 +09002461 return __sata_set_spd_needed(ap, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002462}
2463
2464/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002465 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09002466 * @ap: Port to set SATA spd for
2467 *
2468 * Set SATA spd of @ap according to sata_spd_limit.
2469 *
2470 * LOCKING:
2471 * Inherited from caller.
2472 *
2473 * RETURNS:
2474 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002475 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002476 */
Tejun Heo3c567b72006-05-15 20:57:23 +09002477int sata_set_spd(struct ata_port *ap)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002478{
2479 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002480 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002481
Tejun Heo81952c52006-05-15 20:57:47 +09002482 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
2483 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002484
Tejun Heo3c567b72006-05-15 20:57:23 +09002485 if (!__sata_set_spd_needed(ap, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002486 return 0;
2487
Tejun Heo81952c52006-05-15 20:57:47 +09002488 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
2489 return rc;
2490
Tejun Heo1c3fae42006-04-02 20:53:28 +09002491 return 1;
2492}
2493
Alan Cox452503f2005-10-21 19:01:32 -04002494/*
2495 * This mode timing computation functionality is ported over from
2496 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2497 */
2498/*
Alan Coxb352e572006-08-10 18:52:12 +01002499 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002500 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002501 * for UDMA6, which is currently supported only by Maxtor drives.
2502 *
2503 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002504 */
2505
2506static const struct ata_timing ata_timing[] = {
2507
2508 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
2509 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2510 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2511 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2512
Alan Coxb352e572006-08-10 18:52:12 +01002513 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
2514 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002515 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2516 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2517 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2518
2519/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002520
Alan Cox452503f2005-10-21 19:01:32 -04002521 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
2522 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2523 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002524
Alan Cox452503f2005-10-21 19:01:32 -04002525 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
2526 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2527 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2528
Alan Coxb352e572006-08-10 18:52:12 +01002529 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
2530 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002531 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2532 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2533
2534 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2535 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2536 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2537
2538/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2539
2540 { 0xFF }
2541};
2542
2543#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
2544#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
2545
2546static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2547{
2548 q->setup = EZ(t->setup * 1000, T);
2549 q->act8b = EZ(t->act8b * 1000, T);
2550 q->rec8b = EZ(t->rec8b * 1000, T);
2551 q->cyc8b = EZ(t->cyc8b * 1000, T);
2552 q->active = EZ(t->active * 1000, T);
2553 q->recover = EZ(t->recover * 1000, T);
2554 q->cycle = EZ(t->cycle * 1000, T);
2555 q->udma = EZ(t->udma * 1000, UT);
2556}
2557
2558void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2559 struct ata_timing *m, unsigned int what)
2560{
2561 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2562 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2563 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2564 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2565 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2566 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2567 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2568 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2569}
2570
2571static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
2572{
2573 const struct ata_timing *t;
2574
2575 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04002576 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04002577 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002578 return t;
Alan Cox452503f2005-10-21 19:01:32 -04002579}
2580
2581int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2582 struct ata_timing *t, int T, int UT)
2583{
2584 const struct ata_timing *s;
2585 struct ata_timing p;
2586
2587 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002588 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002589 */
Alan Cox452503f2005-10-21 19:01:32 -04002590
2591 if (!(s = ata_timing_find_mode(speed)))
2592 return -EINVAL;
2593
Albert Lee75b1f2f2005-11-16 17:06:18 +08002594 memcpy(t, s, sizeof(*s));
2595
Alan Cox452503f2005-10-21 19:01:32 -04002596 /*
2597 * If the drive is an EIDE drive, it can tell us it needs extended
2598 * PIO/MW_DMA cycle timing.
2599 */
2600
2601 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2602 memset(&p, 0, sizeof(p));
2603 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2604 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2605 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2606 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2607 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2608 }
2609 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2610 }
2611
2612 /*
2613 * Convert the timing to bus clock counts.
2614 */
2615
Albert Lee75b1f2f2005-11-16 17:06:18 +08002616 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002617
2618 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002619 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2620 * S.M.A.R.T * and some other commands. We have to ensure that the
2621 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002622 */
2623
Alanfd3367af2006-12-07 12:41:18 +00002624 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002625 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2626 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2627 }
2628
2629 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002630 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002631 */
2632
2633 if (t->act8b + t->rec8b < t->cyc8b) {
2634 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2635 t->rec8b = t->cyc8b - t->act8b;
2636 }
2637
2638 if (t->active + t->recover < t->cycle) {
2639 t->active += (t->cycle - (t->active + t->recover)) / 2;
2640 t->recover = t->cycle - t->active;
2641 }
Alan Cox4f701d12007-04-23 11:55:36 +01002642
2643 /* In a few cases quantisation may produce enough errors to
2644 leave t->cycle too low for the sum of active and recovery
2645 if so we must correct this */
2646 if (t->active + t->recover > t->cycle)
2647 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002648
2649 return 0;
2650}
2651
Tejun Heocf176e12006-04-02 17:54:46 +09002652/**
2653 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002654 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09002655 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09002656 *
2657 * Adjust xfer masks of @dev downward. Note that this function
2658 * does not apply the change. Invoking ata_set_mode() afterwards
2659 * will apply the limit.
2660 *
2661 * LOCKING:
2662 * Inherited from caller.
2663 *
2664 * RETURNS:
2665 * 0 on success, negative errno on failure
2666 */
Tejun Heo458337d2007-02-02 16:22:30 +09002667int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09002668{
Tejun Heo458337d2007-02-02 16:22:30 +09002669 char buf[32];
2670 unsigned int orig_mask, xfer_mask;
2671 unsigned int pio_mask, mwdma_mask, udma_mask;
2672 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09002673
Tejun Heo458337d2007-02-02 16:22:30 +09002674 quiet = !!(sel & ATA_DNXFER_QUIET);
2675 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09002676
Tejun Heo458337d2007-02-02 16:22:30 +09002677 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
2678 dev->mwdma_mask,
2679 dev->udma_mask);
2680 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09002681
Tejun Heo458337d2007-02-02 16:22:30 +09002682 switch (sel) {
2683 case ATA_DNXFER_PIO:
2684 highbit = fls(pio_mask) - 1;
2685 pio_mask &= ~(1 << highbit);
2686 break;
2687
2688 case ATA_DNXFER_DMA:
2689 if (udma_mask) {
2690 highbit = fls(udma_mask) - 1;
2691 udma_mask &= ~(1 << highbit);
2692 if (!udma_mask)
2693 return -ENOENT;
2694 } else if (mwdma_mask) {
2695 highbit = fls(mwdma_mask) - 1;
2696 mwdma_mask &= ~(1 << highbit);
2697 if (!mwdma_mask)
2698 return -ENOENT;
2699 }
2700 break;
2701
2702 case ATA_DNXFER_40C:
2703 udma_mask &= ATA_UDMA_MASK_40C;
2704 break;
2705
2706 case ATA_DNXFER_FORCE_PIO0:
2707 pio_mask &= 1;
2708 case ATA_DNXFER_FORCE_PIO:
2709 mwdma_mask = 0;
2710 udma_mask = 0;
2711 break;
2712
Tejun Heo458337d2007-02-02 16:22:30 +09002713 default:
2714 BUG();
2715 }
2716
2717 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
2718
2719 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
2720 return -ENOENT;
2721
2722 if (!quiet) {
2723 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
2724 snprintf(buf, sizeof(buf), "%s:%s",
2725 ata_mode_string(xfer_mask),
2726 ata_mode_string(xfer_mask & ATA_MASK_PIO));
2727 else
2728 snprintf(buf, sizeof(buf), "%s",
2729 ata_mode_string(xfer_mask));
2730
2731 ata_dev_printk(dev, KERN_WARNING,
2732 "limiting speed to %s\n", buf);
2733 }
Tejun Heocf176e12006-04-02 17:54:46 +09002734
2735 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2736 &dev->udma_mask);
2737
Tejun Heocf176e12006-04-02 17:54:46 +09002738 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09002739}
2740
Tejun Heo3373efd2006-05-15 20:57:53 +09002741static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742{
Tejun Heobaa1e782006-11-01 18:39:27 +09002743 struct ata_eh_context *ehc = &dev->ap->eh_context;
Tejun Heo83206a22006-03-24 15:25:31 +09002744 unsigned int err_mask;
2745 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Tejun Heoe8384602006-04-02 18:51:53 +09002747 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 if (dev->xfer_shift == ATA_SHIFT_PIO)
2749 dev->flags |= ATA_DFLAG_PIO;
2750
Tejun Heo3373efd2006-05-15 20:57:53 +09002751 err_mask = ata_dev_set_xfermode(dev);
Alan11750a42007-02-05 16:28:30 +00002752 /* Old CFA may refuse this command, which is just fine */
2753 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
2754 err_mask &= ~AC_ERR_DEV;
2755
Tejun Heo83206a22006-03-24 15:25:31 +09002756 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002757 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2758 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002759 return -EIO;
2760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Tejun Heobaa1e782006-11-01 18:39:27 +09002762 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo3373efd2006-05-15 20:57:53 +09002763 rc = ata_dev_revalidate(dev, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09002764 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002765 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002766 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002767
Tejun Heo23e71c32006-03-06 04:31:57 +09002768 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2769 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
Tejun Heof15a1da2006-05-15 20:57:56 +09002771 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2772 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002773 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774}
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776/**
Alan04351822007-03-06 02:37:52 -08002777 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 * @ap: port on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002779 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 *
Alan04351822007-03-06 02:37:52 -08002781 * Standard implementation of the function used to tune and set
2782 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2783 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002784 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002785 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002787 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002788 *
2789 * RETURNS:
2790 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 */
Alan04351822007-03-06 02:37:52 -08002792
2793int ata_do_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794{
Tejun Heoe8e06192006-04-01 01:38:18 +09002795 struct ata_device *dev;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002796 int i, rc = 0, used_dma = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Tejun Heo3adcebb2006-05-15 20:57:37 +09002798
Tejun Heoa6d5a512006-03-06 04:31:57 +09002799 /* step 1: calculate xfer_mask */
2800 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002801 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002802
Tejun Heoe8e06192006-04-01 01:38:18 +09002803 dev = &ap->device[i];
2804
Tejun Heoe1211e32006-04-01 01:38:18 +09002805 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002806 continue;
2807
Tejun Heo3373efd2006-05-15 20:57:53 +09002808 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002809
Tejun Heoacf356b2006-03-24 14:07:50 +09002810 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2811 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2812 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2813 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002814
Tejun Heo4f659772006-04-01 01:38:18 +09002815 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002816 if (dev->dma_mode)
2817 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002818 }
Tejun Heo4f659772006-04-01 01:38:18 +09002819 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002820 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002821
2822 /* step 2: always set host PIO timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002823 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2824 dev = &ap->device[i];
2825 if (!ata_dev_enabled(dev))
2826 continue;
2827
2828 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002829 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002830 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002831 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002832 }
2833
2834 dev->xfer_mode = dev->pio_mode;
2835 dev->xfer_shift = ATA_SHIFT_PIO;
2836 if (ap->ops->set_piomode)
2837 ap->ops->set_piomode(ap, dev);
2838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Tejun Heoa6d5a512006-03-06 04:31:57 +09002840 /* step 3: set host DMA timings */
Tejun Heoe8e06192006-04-01 01:38:18 +09002841 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2842 dev = &ap->device[i];
2843
2844 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2845 continue;
2846
2847 dev->xfer_mode = dev->dma_mode;
2848 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2849 if (ap->ops->set_dmamode)
2850 ap->ops->set_dmamode(ap, dev);
2851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
2853 /* step 4: update devices' xfer mode */
Tejun Heo83206a22006-03-24 15:25:31 +09002854 for (i = 0; i < ATA_MAX_DEVICES; i++) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002855 dev = &ap->device[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
Alan18d90de2007-01-24 11:42:38 +00002857 /* don't update suspended devices' xfer mode */
Tejun Heo02670bf2006-07-03 16:07:26 +09002858 if (!ata_dev_ready(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002859 continue;
2860
Tejun Heo3373efd2006-05-15 20:57:53 +09002861 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002862 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002863 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Tejun Heoe8e06192006-04-01 01:38:18 +09002866 /* Record simplex status. If we selected DMA then the other
2867 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002868 */
Jeff Garzikcca39742006-08-24 03:19:22 -04002869 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00002870 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002871
Tejun Heoe8e06192006-04-01 01:38:18 +09002872 /* step5: chip specific finalisation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 if (ap->ops->post_set_mode)
2874 ap->ops->post_set_mode(ap);
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002875 out:
2876 if (rc)
2877 *r_failed_dev = dev;
2878 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879}
2880
2881/**
Alan04351822007-03-06 02:37:52 -08002882 * ata_set_mode - Program timings and issue SET FEATURES - XFER
2883 * @ap: port on which timings will be programmed
2884 * @r_failed_dev: out paramter for failed device
2885 *
2886 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2887 * ata_set_mode() fails, pointer to the failing device is
2888 * returned in @r_failed_dev.
2889 *
2890 * LOCKING:
2891 * PCI/etc. bus probe sem.
2892 *
2893 * RETURNS:
2894 * 0 on success, negative errno otherwise
2895 */
2896int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
2897{
2898 /* has private set_mode? */
2899 if (ap->ops->set_mode)
2900 return ap->ops->set_mode(ap, r_failed_dev);
2901 return ata_do_set_mode(ap, r_failed_dev);
2902}
2903
2904/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002905 * ata_tf_to_host - issue ATA taskfile to host controller
2906 * @ap: port to which command is being issued
2907 * @tf: ATA taskfile register set
2908 *
2909 * Issues ATA taskfile register set to ATA host controller,
2910 * with proper synchronization with interrupt handler and
2911 * other threads.
2912 *
2913 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002914 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002915 */
2916
2917static inline void ata_tf_to_host(struct ata_port *ap,
2918 const struct ata_taskfile *tf)
2919{
2920 ap->ops->tf_load(ap, tf);
2921 ap->ops->exec_command(ap, tf);
2922}
2923
2924/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 * ata_busy_sleep - sleep until BSY clears, or timeout
2926 * @ap: port containing status register to be polled
2927 * @tmout_pat: impatience timeout
2928 * @tmout: overall timeout
2929 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002930 * Sleep until ATA Status register bit BSY clears,
2931 * or a timeout occurs.
2932 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09002933 * LOCKING:
2934 * Kernel thread context (may sleep).
2935 *
2936 * RETURNS:
2937 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09002939int ata_busy_sleep(struct ata_port *ap,
2940 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941{
2942 unsigned long timer_start, timeout;
2943 u8 status;
2944
2945 status = ata_busy_wait(ap, ATA_BUSY, 300);
2946 timer_start = jiffies;
2947 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002948 while (status != 0xff && (status & ATA_BUSY) &&
2949 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 msleep(50);
2951 status = ata_busy_wait(ap, ATA_BUSY, 3);
2952 }
2953
Tejun Heod1adc1b2006-10-09 18:32:15 +09002954 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09002955 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002956 "port is slow to respond, please be patient "
2957 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
2959 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09002960 while (status != 0xff && (status & ATA_BUSY) &&
2961 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 msleep(50);
2963 status = ata_chk_status(ap);
2964 }
2965
Tejun Heod1adc1b2006-10-09 18:32:15 +09002966 if (status == 0xff)
2967 return -ENODEV;
2968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002970 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04002971 "(%lu secs, Status 0x%x)\n",
2972 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09002973 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 }
2975
2976 return 0;
2977}
2978
2979static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask)
2980{
2981 struct ata_ioports *ioaddr = &ap->ioaddr;
2982 unsigned int dev0 = devmask & (1 << 0);
2983 unsigned int dev1 = devmask & (1 << 1);
2984 unsigned long timeout;
2985
2986 /* if device 0 was found in ata_devchk, wait for its
2987 * BSY bit to clear
2988 */
2989 if (dev0)
2990 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
2991
2992 /* if device 1 was found in ata_devchk, wait for
2993 * register access, then wait for BSY to clear
2994 */
2995 timeout = jiffies + ATA_TMOUT_BOOT;
2996 while (dev1) {
2997 u8 nsect, lbal;
2998
2999 ap->ops->dev_select(ap, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003000 nsect = ioread8(ioaddr->nsect_addr);
3001 lbal = ioread8(ioaddr->lbal_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if ((nsect == 1) && (lbal == 1))
3003 break;
3004 if (time_after(jiffies, timeout)) {
3005 dev1 = 0;
3006 break;
3007 }
3008 msleep(50); /* give drive a breather */
3009 }
3010 if (dev1)
3011 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
3012
3013 /* is all this really necessary? */
3014 ap->ops->dev_select(ap, 0);
3015 if (dev1)
3016 ap->ops->dev_select(ap, 1);
3017 if (dev0)
3018 ap->ops->dev_select(ap, 0);
3019}
3020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021static unsigned int ata_bus_softreset(struct ata_port *ap,
3022 unsigned int devmask)
3023{
3024 struct ata_ioports *ioaddr = &ap->ioaddr;
3025
Tejun Heo44877b42007-02-21 01:06:51 +09003026 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
3028 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003029 iowrite8(ap->ctl, ioaddr->ctl_addr);
3030 udelay(20); /* FIXME: flush */
3031 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
3032 udelay(20); /* FIXME: flush */
3033 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
3035 /* spec mandates ">= 2ms" before checking status.
3036 * We wait 150ms, because that was the magic delay used for
3037 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
3038 * between when the ATA command register is written, and then
3039 * status is checked. Because waiting for "a while" before
3040 * checking status is fine, post SRST, we perform this magic
3041 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00003042 *
3043 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 */
3045 msleep(150);
3046
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003047 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09003048 * the bus shows 0xFF because the odd clown forgets the D7
3049 * pulldown resistor.
3050 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003051 if (ata_check_status(ap) == 0xFF)
3052 return 0;
Alan Cox09c7ad72006-03-22 15:52:40 +00003053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 ata_bus_post_reset(ap, devmask);
3055
3056 return 0;
3057}
3058
3059/**
3060 * ata_bus_reset - reset host port and associated ATA channel
3061 * @ap: port to reset
3062 *
3063 * This is typically the first time we actually start issuing
3064 * commands to the ATA channel. We wait for BSY to clear, then
3065 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
3066 * result. Determine what devices, if any, are on the channel
3067 * by looking at the device 0/1 error register. Look at the signature
3068 * stored in each device's taskfile registers, to determine if
3069 * the device is ATA or ATAPI.
3070 *
3071 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003072 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04003073 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 *
3075 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09003076 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 */
3078
3079void ata_bus_reset(struct ata_port *ap)
3080{
3081 struct ata_ioports *ioaddr = &ap->ioaddr;
3082 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3083 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003084 unsigned int dev0, dev1 = 0, devmask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Tejun Heo44877b42007-02-21 01:06:51 +09003086 DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
3088 /* determine if device 0/1 are present */
3089 if (ap->flags & ATA_FLAG_SATA_RESET)
3090 dev0 = 1;
3091 else {
3092 dev0 = ata_devchk(ap, 0);
3093 if (slave_possible)
3094 dev1 = ata_devchk(ap, 1);
3095 }
3096
3097 if (dev0)
3098 devmask |= (1 << 0);
3099 if (dev1)
3100 devmask |= (1 << 1);
3101
3102 /* select device 0 again */
3103 ap->ops->dev_select(ap, 0);
3104
3105 /* issue bus reset */
3106 if (ap->flags & ATA_FLAG_SRST)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003107 if (ata_bus_softreset(ap, devmask))
3108 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
3110 /*
3111 * determine by signature whether we have ATA or ATAPI devices
3112 */
Tejun Heob4dc7622006-01-24 17:05:22 +09003113 ap->device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 if ((slave_possible) && (err != 0x81))
Tejun Heob4dc7622006-01-24 17:05:22 +09003115 ap->device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
3117 /* re-enable interrupts */
Akira Iguchi836250062007-01-26 16:27:32 +09003118 ap->ops->irq_on(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
3120 /* is double-select really necessary? */
3121 if (ap->device[1].class != ATA_DEV_NONE)
3122 ap->ops->dev_select(ap, 1);
3123 if (ap->device[0].class != ATA_DEV_NONE)
3124 ap->ops->dev_select(ap, 0);
3125
3126 /* if no devices were detected, disable this port */
3127 if ((ap->device[0].class == ATA_DEV_NONE) &&
3128 (ap->device[1].class == ATA_DEV_NONE))
3129 goto err_out;
3130
3131 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
3132 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003133 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 }
3135
3136 DPRINTK("EXIT\n");
3137 return;
3138
3139err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003140 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 ap->ops->port_disable(ap);
3142
3143 DPRINTK("EXIT\n");
3144}
3145
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003146/**
3147 * sata_phy_debounce - debounce SATA phy status
3148 * @ap: ATA port to debounce SATA phy status for
3149 * @params: timing parameters { interval, duratinon, timeout } in msec
3150 *
3151 * Make sure SStatus of @ap reaches stable state, determined by
3152 * holding the same value where DET is not 1 for @duration polled
3153 * every @interval, before @timeout. Timeout constraints the
3154 * beginning of the stable state. Because, after hot unplugging,
3155 * DET gets stuck at 1 on some controllers, this functions waits
3156 * until timeout then returns 0 if DET is stable at 1.
3157 *
3158 * LOCKING:
3159 * Kernel thread context (may sleep)
3160 *
3161 * RETURNS:
3162 * 0 on success, -errno on failure.
3163 */
3164int sata_phy_debounce(struct ata_port *ap, const unsigned long *params)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003165{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003166 unsigned long interval_msec = params[0];
3167 unsigned long duration = params[1] * HZ / 1000;
3168 unsigned long timeout = jiffies + params[2] * HZ / 1000;
3169 unsigned long last_jiffies;
3170 u32 last, cur;
3171 int rc;
3172
3173 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
3174 return rc;
3175 cur &= 0xf;
3176
3177 last = cur;
3178 last_jiffies = jiffies;
3179
3180 while (1) {
3181 msleep(interval_msec);
3182 if ((rc = sata_scr_read(ap, SCR_STATUS, &cur)))
3183 return rc;
3184 cur &= 0xf;
3185
3186 /* DET stable? */
3187 if (cur == last) {
3188 if (cur == 1 && time_before(jiffies, timeout))
3189 continue;
3190 if (time_after(jiffies, last_jiffies + duration))
3191 return 0;
3192 continue;
3193 }
3194
3195 /* unstable, start over */
3196 last = cur;
3197 last_jiffies = jiffies;
3198
3199 /* check timeout */
3200 if (time_after(jiffies, timeout))
3201 return -EBUSY;
3202 }
3203}
3204
3205/**
3206 * sata_phy_resume - resume SATA phy
3207 * @ap: ATA port to resume SATA phy for
3208 * @params: timing parameters { interval, duratinon, timeout } in msec
3209 *
3210 * Resume SATA phy of @ap and debounce it.
3211 *
3212 * LOCKING:
3213 * Kernel thread context (may sleep)
3214 *
3215 * RETURNS:
3216 * 0 on success, -errno on failure.
3217 */
3218int sata_phy_resume(struct ata_port *ap, const unsigned long *params)
3219{
3220 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003221 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003222
Tejun Heo81952c52006-05-15 20:57:47 +09003223 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
3224 return rc;
3225
Tejun Heo852ee16a2006-04-01 01:38:18 +09003226 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003227
3228 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
3229 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003230
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003231 /* Some PHYs react badly if SStatus is pounded immediately
3232 * after resuming. Delay 200ms before debouncing.
3233 */
3234 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003235
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003236 return sata_phy_debounce(ap, params);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003237}
3238
Tejun Heof5914a42006-05-31 18:27:48 +09003239static void ata_wait_spinup(struct ata_port *ap)
3240{
3241 struct ata_eh_context *ehc = &ap->eh_context;
3242 unsigned long end, secs;
3243 int rc;
3244
3245 /* first, debounce phy if SATA */
3246 if (ap->cbl == ATA_CBL_SATA) {
Tejun Heoe9c83912006-07-03 16:07:26 +09003247 rc = sata_phy_debounce(ap, sata_deb_timing_hotplug);
Tejun Heof5914a42006-05-31 18:27:48 +09003248
3249 /* if debounced successfully and offline, no need to wait */
3250 if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap))
3251 return;
3252 }
3253
3254 /* okay, let's give the drive time to spin up */
3255 end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000;
3256 secs = ((end - jiffies) + HZ - 1) / HZ;
3257
3258 if (time_after(jiffies, end))
3259 return;
3260
3261 if (secs > 5)
3262 ata_port_printk(ap, KERN_INFO, "waiting for device to spin up "
3263 "(%lu secs)\n", secs);
3264
3265 schedule_timeout_uninterruptible(end - jiffies);
3266}
3267
3268/**
3269 * ata_std_prereset - prepare for reset
3270 * @ap: ATA port to be reset
3271 *
3272 * @ap is about to be reset. Initialize it.
3273 *
3274 * LOCKING:
3275 * Kernel thread context (may sleep)
3276 *
3277 * RETURNS:
3278 * 0 on success, -errno otherwise.
3279 */
3280int ata_std_prereset(struct ata_port *ap)
3281{
3282 struct ata_eh_context *ehc = &ap->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003283 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003284 int rc;
3285
Tejun Heo28324302006-07-03 16:07:26 +09003286 /* handle link resume & hotplug spinup */
3287 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
3288 (ap->flags & ATA_FLAG_HRST_TO_RESUME))
3289 ehc->i.action |= ATA_EH_HARDRESET;
3290
3291 if ((ehc->i.flags & ATA_EHI_HOTPLUGGED) &&
3292 (ap->flags & ATA_FLAG_SKIP_D2H_BSY))
3293 ata_wait_spinup(ap);
Tejun Heof5914a42006-05-31 18:27:48 +09003294
3295 /* if we're about to do hardreset, nothing more to do */
3296 if (ehc->i.action & ATA_EH_HARDRESET)
3297 return 0;
3298
3299 /* if SATA, resume phy */
3300 if (ap->cbl == ATA_CBL_SATA) {
Tejun Heof5914a42006-05-31 18:27:48 +09003301 rc = sata_phy_resume(ap, timing);
3302 if (rc && rc != -EOPNOTSUPP) {
3303 /* phy resume failed */
3304 ata_port_printk(ap, KERN_WARNING, "failed to resume "
3305 "link for reset (errno=%d)\n", rc);
3306 return rc;
3307 }
3308 }
3309
3310 /* Wait for !BSY if the controller can wait for the first D2H
3311 * Reg FIS and we don't know that no device is attached.
3312 */
3313 if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap))
3314 ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
3315
3316 return 0;
3317}
3318
Tejun Heoc2bd5802006-01-24 17:05:22 +09003319/**
3320 * ata_std_softreset - reset host port via ATA SRST
3321 * @ap: port to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003322 * @classes: resulting classes of attached devices
3323 *
Tejun Heo52783c52006-05-31 18:28:22 +09003324 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003325 *
3326 * LOCKING:
3327 * Kernel thread context (may sleep)
3328 *
3329 * RETURNS:
3330 * 0 on success, -errno otherwise.
3331 */
Tejun Heo2bf2cb22006-04-11 22:16:45 +09003332int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003333{
3334 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3335 unsigned int devmask = 0, err_mask;
3336 u8 err;
3337
3338 DPRINTK("ENTER\n");
3339
Tejun Heo81952c52006-05-15 20:57:47 +09003340 if (ata_port_offline(ap)) {
Tejun Heo3a397462006-02-10 23:58:48 +09003341 classes[0] = ATA_DEV_NONE;
3342 goto out;
3343 }
3344
Tejun Heoc2bd5802006-01-24 17:05:22 +09003345 /* determine if device 0/1 are present */
3346 if (ata_devchk(ap, 0))
3347 devmask |= (1 << 0);
3348 if (slave_possible && ata_devchk(ap, 1))
3349 devmask |= (1 << 1);
3350
Tejun Heoc2bd5802006-01-24 17:05:22 +09003351 /* select device 0 again */
3352 ap->ops->dev_select(ap, 0);
3353
3354 /* issue bus reset */
3355 DPRINTK("about to softreset, devmask=%x\n", devmask);
3356 err_mask = ata_bus_softreset(ap, devmask);
3357 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003358 ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n",
3359 err_mask);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003360 return -EIO;
3361 }
3362
3363 /* determine by signature whether we have ATA or ATAPI devices */
3364 classes[0] = ata_dev_try_classify(ap, 0, &err);
3365 if (slave_possible && err != 0x81)
3366 classes[1] = ata_dev_try_classify(ap, 1, &err);
3367
Tejun Heo3a397462006-02-10 23:58:48 +09003368 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09003369 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
3370 return 0;
3371}
3372
3373/**
Tejun Heob6103f62006-11-01 17:59:53 +09003374 * sata_port_hardreset - reset port via SATA phy reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003375 * @ap: port to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003376 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heoc2bd5802006-01-24 17:05:22 +09003377 *
3378 * SATA phy-reset host port using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003379 *
3380 * LOCKING:
3381 * Kernel thread context (may sleep)
3382 *
3383 * RETURNS:
3384 * 0 on success, -errno otherwise.
3385 */
Tejun Heob6103f62006-11-01 17:59:53 +09003386int sata_port_hardreset(struct ata_port *ap, const unsigned long *timing)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003387{
Tejun Heo852ee16a2006-04-01 01:38:18 +09003388 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003389 int rc;
Tejun Heo852ee16a2006-04-01 01:38:18 +09003390
Tejun Heoc2bd5802006-01-24 17:05:22 +09003391 DPRINTK("ENTER\n");
3392
Tejun Heo3c567b72006-05-15 20:57:23 +09003393 if (sata_set_spd_needed(ap)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003394 /* SATA spec says nothing about how to reconfigure
3395 * spd. To be on the safe side, turn off phy during
3396 * reconfiguration. This works for at least ICH7 AHCI
3397 * and Sil3124.
3398 */
Tejun Heo81952c52006-05-15 20:57:47 +09003399 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003400 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003401
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003402 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003403
3404 if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003405 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003406
Tejun Heo3c567b72006-05-15 20:57:23 +09003407 sata_set_spd(ap);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003408 }
3409
3410 /* issue phy wake/reset */
Tejun Heo81952c52006-05-15 20:57:47 +09003411 if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003412 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003413
Tejun Heo852ee16a2006-04-01 01:38:18 +09003414 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003415
3416 if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003417 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003418
Tejun Heo1c3fae42006-04-02 20:53:28 +09003419 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003420 * 10.4.2 says at least 1 ms.
3421 */
3422 msleep(1);
3423
Tejun Heo1c3fae42006-04-02 20:53:28 +09003424 /* bring phy back */
Tejun Heob6103f62006-11-01 17:59:53 +09003425 rc = sata_phy_resume(ap, timing);
3426 out:
3427 DPRINTK("EXIT, rc=%d\n", rc);
3428 return rc;
3429}
3430
3431/**
3432 * sata_std_hardreset - reset host port via SATA phy reset
3433 * @ap: port to reset
3434 * @class: resulting class of attached device
3435 *
3436 * SATA phy-reset host port using DET bits of SControl register,
3437 * wait for !BSY and classify the attached device.
3438 *
3439 * LOCKING:
3440 * Kernel thread context (may sleep)
3441 *
3442 * RETURNS:
3443 * 0 on success, -errno otherwise.
3444 */
3445int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
3446{
3447 const unsigned long *timing = sata_ehc_deb_timing(&ap->eh_context);
3448 int rc;
3449
3450 DPRINTK("ENTER\n");
3451
3452 /* do hardreset */
3453 rc = sata_port_hardreset(ap, timing);
3454 if (rc) {
3455 ata_port_printk(ap, KERN_ERR,
3456 "COMRESET failed (errno=%d)\n", rc);
3457 return rc;
3458 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003459
Tejun Heoc2bd5802006-01-24 17:05:22 +09003460 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo81952c52006-05-15 20:57:47 +09003461 if (ata_port_offline(ap)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09003462 *class = ATA_DEV_NONE;
3463 DPRINTK("EXIT, link offline\n");
3464 return 0;
3465 }
3466
Tejun Heo34fee222007-02-02 15:29:27 +09003467 /* wait a while before checking status, see SRST for more info */
3468 msleep(150);
3469
Tejun Heoc2bd5802006-01-24 17:05:22 +09003470 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003471 ata_port_printk(ap, KERN_ERR,
3472 "COMRESET failed (device not ready)\n");
Tejun Heoc2bd5802006-01-24 17:05:22 +09003473 return -EIO;
3474 }
3475
Tejun Heo3a397462006-02-10 23:58:48 +09003476 ap->ops->dev_select(ap, 0); /* probably unnecessary */
3477
Tejun Heoc2bd5802006-01-24 17:05:22 +09003478 *class = ata_dev_try_classify(ap, 0, NULL);
3479
3480 DPRINTK("EXIT, class=%u\n", *class);
3481 return 0;
3482}
3483
3484/**
3485 * ata_std_postreset - standard postreset callback
3486 * @ap: the target ata_port
3487 * @classes: classes of attached devices
3488 *
3489 * This function is invoked after a successful reset. Note that
3490 * the device might have been reset more than once using
3491 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003492 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003493 * LOCKING:
3494 * Kernel thread context (may sleep)
3495 */
3496void ata_std_postreset(struct ata_port *ap, unsigned int *classes)
3497{
Tejun Heodc2b3512006-05-15 20:58:00 +09003498 u32 serror;
3499
Tejun Heoc2bd5802006-01-24 17:05:22 +09003500 DPRINTK("ENTER\n");
3501
Tejun Heoc2bd5802006-01-24 17:05:22 +09003502 /* print link status */
Tejun Heo81952c52006-05-15 20:57:47 +09003503 sata_print_link_status(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003504
Tejun Heodc2b3512006-05-15 20:58:00 +09003505 /* clear SError */
3506 if (sata_scr_read(ap, SCR_ERROR, &serror) == 0)
3507 sata_scr_write(ap, SCR_ERROR, serror);
3508
Tejun Heo3a397462006-02-10 23:58:48 +09003509 /* re-enable interrupts */
Akira Iguchi836250062007-01-26 16:27:32 +09003510 if (!ap->ops->error_handler)
3511 ap->ops->irq_on(ap);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003512
3513 /* is double-select really necessary? */
3514 if (classes[0] != ATA_DEV_NONE)
3515 ap->ops->dev_select(ap, 1);
3516 if (classes[1] != ATA_DEV_NONE)
3517 ap->ops->dev_select(ap, 0);
3518
Tejun Heo3a397462006-02-10 23:58:48 +09003519 /* bail out if no device is present */
3520 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3521 DPRINTK("EXIT, no device\n");
3522 return;
3523 }
3524
3525 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003526 if (ap->ioaddr.ctl_addr)
3527 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003528
3529 DPRINTK("EXIT\n");
3530}
3531
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003532/**
Tejun Heo623a3122006-03-05 17:55:58 +09003533 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003534 * @dev: device to compare against
3535 * @new_class: class of the new device
3536 * @new_id: IDENTIFY page of the new device
3537 *
3538 * Compare @new_class and @new_id against @dev and determine
3539 * whether @dev is the device indicated by @new_class and
3540 * @new_id.
3541 *
3542 * LOCKING:
3543 * None.
3544 *
3545 * RETURNS:
3546 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3547 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003548static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3549 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003550{
3551 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003552 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3553 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003554 u64 new_n_sectors;
3555
3556 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003557 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3558 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003559 return 0;
3560 }
3561
Tejun Heoa0cf7332007-01-02 20:18:49 +09003562 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3563 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3564 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3565 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003566 new_n_sectors = ata_id_n_sectors(new_id);
3567
3568 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003569 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3570 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003571 return 0;
3572 }
3573
3574 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003575 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3576 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003577 return 0;
3578 }
3579
3580 if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003581 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3582 "%llu != %llu\n",
3583 (unsigned long long)dev->n_sectors,
3584 (unsigned long long)new_n_sectors);
Alan Cox1e999732007-04-11 00:23:13 +01003585 /* Are we the boot time size - if so we appear to be the
3586 same disk at this point and our HPA got reapplied */
3587 if (ata_ignore_hpa && dev->n_sectors_boot == new_n_sectors
3588 && ata_id_hpa_enabled(new_id))
3589 return 1;
Tejun Heo623a3122006-03-05 17:55:58 +09003590 return 0;
3591 }
3592
3593 return 1;
3594}
3595
3596/**
3597 * ata_dev_revalidate - Revalidate ATA device
Tejun Heo623a3122006-03-05 17:55:58 +09003598 * @dev: device to revalidate
Tejun Heobff04642006-11-10 18:08:10 +09003599 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003600 *
3601 * Re-read IDENTIFY page and make sure @dev is still attached to
3602 * the port.
3603 *
3604 * LOCKING:
3605 * Kernel thread context (may sleep)
3606 *
3607 * RETURNS:
3608 * 0 on success, negative errno otherwise
3609 */
Tejun Heobff04642006-11-10 18:08:10 +09003610int ata_dev_revalidate(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003611{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003612 unsigned int class = dev->class;
Tejun Heof15a1da2006-05-15 20:57:56 +09003613 u16 *id = (void *)dev->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003614 int rc;
3615
Tejun Heo5eb45c02006-04-02 18:51:52 +09003616 if (!ata_dev_enabled(dev)) {
3617 rc = -ENODEV;
3618 goto fail;
3619 }
Tejun Heo623a3122006-03-05 17:55:58 +09003620
Tejun Heofe635c72006-05-15 20:57:35 +09003621 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003622 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003623 if (rc)
3624 goto fail;
3625
3626 /* is the device still there? */
Tejun Heo3373efd2006-05-15 20:57:53 +09003627 if (!ata_dev_same_device(dev, class, id)) {
Tejun Heo623a3122006-03-05 17:55:58 +09003628 rc = -ENODEV;
3629 goto fail;
3630 }
3631
Tejun Heofe635c72006-05-15 20:57:35 +09003632 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo623a3122006-03-05 17:55:58 +09003633
3634 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003635 rc = ata_dev_configure(dev);
Tejun Heo5eb45c02006-04-02 18:51:52 +09003636 if (rc == 0)
3637 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003638
3639 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003640 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003641 return rc;
3642}
3643
Alan Cox6919a0a2006-10-27 19:08:46 -07003644struct ata_blacklist_entry {
3645 const char *model_num;
3646 const char *model_rev;
3647 unsigned long horkage;
3648};
3649
3650static const struct ata_blacklist_entry ata_device_blacklist [] = {
3651 /* Devices with DMA related problems under Linux */
3652 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3653 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3654 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3655 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3656 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3657 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3658 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3659 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3660 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3661 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3662 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3663 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3664 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3665 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3666 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3667 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3668 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3669 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3670 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3671 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3672 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3673 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3674 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3675 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3676 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3677 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003678 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3679 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3680 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
3681
Albert Lee18d6e9d2007-04-02 11:34:15 +08003682 /* Weird ATAPI devices */
Albert Lee6f23a312007-04-02 11:39:25 +08003683 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 |
3684 ATA_HORKAGE_DMA_RW_ONLY },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003685
Alan Cox6919a0a2006-10-27 19:08:46 -07003686 /* Devices we expect to fail diagnostics */
3687
3688 /* Devices where NCQ should be avoided */
3689 /* NCQ is slow */
3690 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo09125ea2007-02-28 15:21:23 +09003691 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3692 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003693 /* NCQ is broken */
3694 { "Maxtor 6L250S0", "BANC1G10", ATA_HORKAGE_NONCQ },
Jens Axboe96442922007-03-30 09:27:58 +02003695 /* NCQ hard hangs device under heavier load, needs hard power cycle */
3696 { "Maxtor 6B250S0", "BANC1B70", ATA_HORKAGE_NONCQ },
Robert Hancock36e337d2007-04-02 22:05:29 -06003697 /* Blacklist entries taken from Silicon Image 3124/3132
3698 Windows driver .inf file - also several Linux problem reports */
3699 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3700 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3701 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003702
3703 /* Devices with NCQ limits */
3704
3705 /* End Marker */
3706 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003708
Alan Cox6919a0a2006-10-27 19:08:46 -07003709unsigned long ata_device_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003711 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3712 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003713 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003714
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003715 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3716 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
Alan Cox6919a0a2006-10-27 19:08:46 -07003718 while (ad->model_num) {
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003719 if (!strcmp(ad->model_num, model_num)) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003720 if (ad->model_rev == NULL)
3721 return ad->horkage;
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003722 if (!strcmp(ad->model_rev, model_rev))
Alan Cox6919a0a2006-10-27 19:08:46 -07003723 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003724 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003725 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 return 0;
3728}
3729
Alan Cox6919a0a2006-10-27 19:08:46 -07003730static int ata_dma_blacklisted(const struct ata_device *dev)
3731{
3732 /* We don't support polling DMA.
3733 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3734 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3735 */
3736 if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) &&
3737 (dev->flags & ATA_DFLAG_CDB_INTR))
3738 return 1;
3739 return (ata_device_blacklisted(dev) & ATA_HORKAGE_NODMA) ? 1 : 0;
3740}
3741
Tejun Heoa6d5a512006-03-06 04:31:57 +09003742/**
3743 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003744 * @dev: Device to compute xfermask for
3745 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003746 * Compute supported xfermask of @dev and store it in
3747 * dev->*_mask. This function is responsible for applying all
3748 * known limits including host controller limits, device
3749 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003750 *
3751 * LOCKING:
3752 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003753 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003754static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755{
Tejun Heo3373efd2006-05-15 20:57:53 +09003756 struct ata_port *ap = dev->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04003757 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003758 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
Tejun Heo37deecb2006-08-10 16:59:07 +09003760 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09003761 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3762 ap->mwdma_mask, ap->udma_mask);
3763
Robert Hancock8343f882007-03-06 02:37:51 -08003764 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09003765 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
3766 dev->mwdma_mask, dev->udma_mask);
3767 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09003768
Alan Coxb352e572006-08-10 18:52:12 +01003769 /*
3770 * CFA Advanced TrueIDE timings are not allowed on a shared
3771 * cable
3772 */
3773 if (ata_dev_pair(dev)) {
3774 /* No PIO5 or PIO6 */
3775 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
3776 /* No MWDMA3 or MWDMA 4 */
3777 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
3778 }
3779
Tejun Heo37deecb2006-08-10 16:59:07 +09003780 if (ata_dma_blacklisted(dev)) {
3781 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09003782 ata_dev_printk(dev, KERN_WARNING,
3783 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09003784 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09003785
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01003786 if ((host->flags & ATA_HOST_SIMPLEX) &&
3787 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09003788 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3789 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
3790 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01003791 }
Tejun Heo565083e2006-04-02 17:54:47 +09003792
Jeff Garzike4246752007-03-09 09:56:46 -05003793 if (ap->flags & ATA_FLAG_NO_IORDY)
3794 xfer_mask &= ata_pio_mask_no_iordy(dev);
3795
Alan Cox5444a6f2006-03-27 18:58:20 +01003796 if (ap->ops->mode_filter)
Alan Coxa76b62ca2007-03-09 09:34:07 -05003797 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003798
Robert Hancock8343f882007-03-06 02:37:51 -08003799 /* Apply cable rule here. Don't apply it early because when
3800 * we handle hot plug the cable type can itself change.
3801 * Check this last so that we know if the transfer rate was
3802 * solely limited by the cable.
3803 * Unknown or 80 wire cables reported host side are checked
3804 * drive side as well. Cases where we know a 40wire cable
3805 * is used safely for 80 are not checked here.
3806 */
3807 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
3808 /* UDMA/44 or higher would be available */
3809 if((ap->cbl == ATA_CBL_PATA40) ||
3810 (ata_drive_40wire(dev->id) &&
3811 (ap->cbl == ATA_CBL_PATA_UNK ||
3812 ap->cbl == ATA_CBL_PATA80))) {
3813 ata_dev_printk(dev, KERN_WARNING,
3814 "limited to UDMA/33 due to 40-wire cable\n");
3815 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
3816 }
3817
Tejun Heo565083e2006-04-02 17:54:47 +09003818 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3819 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820}
3821
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 * @dev: Device to which command will be sent
3825 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003826 * Issue SET FEATURES - XFER MODE command to device @dev
3827 * on port @ap.
3828 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003830 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003831 *
3832 * RETURNS:
3833 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 */
3835
Tejun Heo3373efd2006-05-15 20:57:53 +09003836static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837{
Tejun Heoa0123702005-12-13 14:49:31 +09003838 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003839 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
3841 /* set up set-features taskfile */
3842 DPRINTK("set features - xfer mode\n");
3843
Tejun Heo3373efd2006-05-15 20:57:53 +09003844 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003845 tf.command = ATA_CMD_SET_FEATURES;
3846 tf.feature = SETFEATURES_XFER;
3847 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3848 tf.protocol = ATA_PROT_NODATA;
3849 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
Tejun Heo3373efd2006-05-15 20:57:53 +09003851 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
Tejun Heo83206a22006-03-24 15:25:31 +09003853 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3854 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855}
3856
3857/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04003858 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04003859 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07003860 * @heads: Number of heads (taskfile parameter)
3861 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003862 *
3863 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09003864 * Kernel thread context (may sleep)
3865 *
3866 * RETURNS:
3867 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04003868 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003869static unsigned int ata_dev_init_params(struct ata_device *dev,
3870 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04003871{
Tejun Heoa0123702005-12-13 14:49:31 +09003872 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09003873 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003874
3875 /* Number of sectors per track 1-255. Number of heads 1-16 */
3876 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08003877 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003878
3879 /* set up init dev params taskfile */
3880 DPRINTK("init dev params \n");
3881
Tejun Heo3373efd2006-05-15 20:57:53 +09003882 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003883 tf.command = ATA_CMD_INIT_DEV_PARAMS;
3884 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
3885 tf.protocol = ATA_PROT_NODATA;
3886 tf.nsect = sectors;
3887 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04003888
Tejun Heo3373efd2006-05-15 20:57:53 +09003889 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Albert Lee8bf62ece2005-05-12 15:29:42 -04003890
Tejun Heo6aff8f12006-02-15 18:24:09 +09003891 DPRINTK("EXIT, err_mask=%x\n", err_mask);
3892 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04003893}
3894
3895/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04003896 * ata_sg_clean - Unmap DMA memory associated with command
3897 * @qc: Command containing DMA memory to be released
3898 *
3899 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 *
3901 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003902 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09003904void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905{
3906 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003907 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003909 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910
Tejun Heoa46314742006-02-11 19:11:13 +09003911 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
3912 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
3914 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05003915 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05003917 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003919 /* if we padded the buffer out to 32-bit bound, and data
3920 * xfer direction is from-device, we must copy from the
3921 * pad buffer back into the supplied buffer
3922 */
3923 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
3924 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
3925
3926 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05003927 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003928 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003929 /* restore last sg */
3930 sg[qc->orig_n_elem - 1].length += qc->pad_len;
3931 if (pad_buf) {
3932 struct scatterlist *psg = &qc->pad_sgent;
3933 void *addr = kmap_atomic(psg->page, KM_IRQ0);
3934 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05003935 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003936 }
3937 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09003938 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06003939 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05003940 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
3941 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003942 /* restore sg */
3943 sg->length += qc->pad_len;
3944 if (pad_buf)
3945 memcpy(qc->buf_virt + sg->length - qc->pad_len,
3946 pad_buf, qc->pad_len);
3947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
3949 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003950 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951}
3952
3953/**
3954 * ata_fill_sg - Fill PCI IDE PRD table
3955 * @qc: Metadata associated with taskfile to be transferred
3956 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003957 * Fill PCI IDE PRD (scatter-gather) table with segments
3958 * associated with the current disk command.
3959 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003961 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 *
3963 */
3964static void ata_fill_sg(struct ata_queued_cmd *qc)
3965{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003967 struct scatterlist *sg;
3968 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
Tejun Heoa46314742006-02-11 19:11:13 +09003970 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05003971 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972
3973 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04003974 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 u32 addr, offset;
3976 u32 sg_len, len;
3977
3978 /* determine if physical DMA addr spans 64K boundary.
3979 * Note h/w doesn't support 64-bit, so we unconditionally
3980 * truncate dma_addr_t to u32.
3981 */
3982 addr = (u32) sg_dma_address(sg);
3983 sg_len = sg_dma_len(sg);
3984
3985 while (sg_len) {
3986 offset = addr & 0xffff;
3987 len = sg_len;
3988 if ((offset + sg_len) > 0x10000)
3989 len = 0x10000 - offset;
3990
3991 ap->prd[idx].addr = cpu_to_le32(addr);
3992 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
3993 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
3994
3995 idx++;
3996 sg_len -= len;
3997 addr += len;
3998 }
3999 }
4000
4001 if (idx)
4002 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4003}
4004/**
4005 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4006 * @qc: Metadata associated with taskfile to check
4007 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004008 * Allow low-level driver to filter ATA PACKET commands, returning
4009 * a status indicating whether or not it is OK to use DMA for the
4010 * supplied PACKET command.
4011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004013 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 * RETURNS: 0 when ATAPI DMA can be used
4016 * nonzero otherwise
4017 */
4018int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4019{
4020 struct ata_port *ap = qc->ap;
4021 int rc = 0; /* Assume ATAPI DMA is OK by default */
4022
Albert Lee6f23a312007-04-02 11:39:25 +08004023 /* some drives can only do ATAPI DMA on read/write */
4024 if (unlikely(qc->dev->horkage & ATA_HORKAGE_DMA_RW_ONLY)) {
4025 struct scsi_cmnd *cmd = qc->scsicmd;
4026 u8 *scsicmd = cmd->cmnd;
4027
4028 switch (scsicmd[0]) {
4029 case READ_10:
4030 case WRITE_10:
4031 case READ_12:
4032 case WRITE_12:
4033 case READ_6:
4034 case WRITE_6:
4035 /* atapi dma maybe ok */
4036 break;
4037 default:
4038 /* turn off atapi dma */
4039 return 1;
4040 }
4041 }
4042
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 if (ap->ops->check_atapi_dma)
4044 rc = ap->ops->check_atapi_dma(qc);
4045
4046 return rc;
4047}
4048/**
4049 * ata_qc_prep - Prepare taskfile for submission
4050 * @qc: Metadata associated with taskfile to be prepared
4051 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004052 * Prepare ATA taskfile for submission.
4053 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004055 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 */
4057void ata_qc_prep(struct ata_queued_cmd *qc)
4058{
4059 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4060 return;
4061
4062 ata_fill_sg(qc);
4063}
4064
Brian Kinge46834c2006-03-17 17:04:03 -06004065void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4066
Jeff Garzik0cba6322005-05-30 19:49:12 -04004067/**
4068 * ata_sg_init_one - Associate command with memory buffer
4069 * @qc: Command to be associated
4070 * @buf: Memory buffer
4071 * @buflen: Length of memory buffer, in bytes.
4072 *
4073 * Initialize the data-related elements of queued_cmd @qc
4074 * to point to a single memory buffer, @buf of byte length @buflen.
4075 *
4076 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004077 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004078 */
4079
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
4081{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 qc->flags |= ATA_QCFLAG_SINGLE;
4083
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004084 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004086 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05004088 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Tejun Heo61c05962006-11-14 22:35:43 +09004090 sg_init_one(&qc->sgent, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091}
4092
Jeff Garzik0cba6322005-05-30 19:49:12 -04004093/**
4094 * ata_sg_init - Associate command with scatter-gather table.
4095 * @qc: Command to be associated
4096 * @sg: Scatter-gather table.
4097 * @n_elem: Number of elements in s/g table.
4098 *
4099 * Initialize the data-related elements of queued_cmd @qc
4100 * to point to a scatter-gather table @sg, containing @n_elem
4101 * elements.
4102 *
4103 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004104 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004105 */
4106
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4108 unsigned int n_elem)
4109{
4110 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004111 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004113 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114}
4115
4116/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004117 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
4118 * @qc: Command with memory buffer to be mapped.
4119 *
4120 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 *
4122 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004123 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 *
4125 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004126 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 */
4128
4129static int ata_sg_setup_one(struct ata_queued_cmd *qc)
4130{
4131 struct ata_port *ap = qc->ap;
4132 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004133 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004135 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004137 /* we must lengthen transfers to end on a 32-bit boundary */
4138 qc->pad_len = sg->length & 3;
4139 if (qc->pad_len) {
4140 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4141 struct scatterlist *psg = &qc->pad_sgent;
4142
Tejun Heoa46314742006-02-11 19:11:13 +09004143 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004144
4145 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4146
4147 if (qc->tf.flags & ATA_TFLAG_WRITE)
4148 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
4149 qc->pad_len);
4150
4151 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4152 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4153 /* trim sg */
4154 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004155 if (sg->length == 0)
4156 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004157
4158 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
4159 sg->length, qc->pad_len);
4160 }
4161
Tejun Heo2e242fa2006-02-20 23:48:38 +09004162 if (trim_sg) {
4163 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05004164 goto skip_map;
4165 }
4166
Brian King2f1f6102006-03-23 17:30:15 -06004167 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04004168 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004169 if (dma_mapping_error(dma_address)) {
4170 /* restore sg */
4171 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
4175 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04004176 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
Tejun Heo2e242fa2006-02-20 23:48:38 +09004178skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
4180 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4181
4182 return 0;
4183}
4184
4185/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004186 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4187 * @qc: Command with scatter-gather table to be mapped.
4188 *
4189 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 *
4191 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004192 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 *
4194 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004195 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 *
4197 */
4198
4199static int ata_sg_setup(struct ata_queued_cmd *qc)
4200{
4201 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004202 struct scatterlist *sg = qc->__sg;
4203 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05004204 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205
Tejun Heo44877b42007-02-21 01:06:51 +09004206 VPRINTK("ENTER, ata%u\n", ap->print_id);
Tejun Heoa46314742006-02-11 19:11:13 +09004207 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004209 /* we must lengthen transfers to end on a 32-bit boundary */
4210 qc->pad_len = lsg->length & 3;
4211 if (qc->pad_len) {
4212 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4213 struct scatterlist *psg = &qc->pad_sgent;
4214 unsigned int offset;
4215
Tejun Heoa46314742006-02-11 19:11:13 +09004216 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004217
4218 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4219
4220 /*
4221 * psg->page/offset are used to copy to-be-written
4222 * data in this function or read data in ata_sg_clean.
4223 */
4224 offset = lsg->offset + lsg->length - qc->pad_len;
4225 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
4226 psg->offset = offset_in_page(offset);
4227
4228 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4229 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4230 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004231 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004232 }
4233
4234 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4235 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4236 /* trim last sg */
4237 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05004238 if (lsg->length == 0)
4239 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004240
4241 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
4242 qc->n_elem - 1, lsg->length, qc->pad_len);
4243 }
4244
Jeff Garzike1410f22005-11-14 14:06:26 -05004245 pre_n_elem = qc->n_elem;
4246 if (trim_sg && pre_n_elem)
4247 pre_n_elem--;
4248
4249 if (!pre_n_elem) {
4250 n_elem = 0;
4251 goto skip_map;
4252 }
4253
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06004255 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004256 if (n_elem < 1) {
4257 /* restore last sg */
4258 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
4262 DPRINTK("%d sg elements mapped\n", n_elem);
4263
Jeff Garzike1410f22005-11-14 14:06:26 -05004264skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 qc->n_elem = n_elem;
4266
4267 return 0;
4268}
4269
4270/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004271 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004272 * @buf: Buffer to swap
4273 * @buf_words: Number of 16-bit words in buffer.
4274 *
4275 * Swap halves of 16-bit words if needed to convert from
4276 * little-endian byte order to native cpu byte order, or
4277 * vice-versa.
4278 *
4279 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004280 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004281 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282void swap_buf_le16(u16 *buf, unsigned int buf_words)
4283{
4284#ifdef __BIG_ENDIAN
4285 unsigned int i;
4286
4287 for (i = 0; i < buf_words; i++)
4288 buf[i] = le16_to_cpu(buf[i]);
4289#endif /* __BIG_ENDIAN */
4290}
4291
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004292/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004293 * ata_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004294 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004295 * @buf: data buffer
4296 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04004297 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004298 *
4299 * Transfer data from/to the device data register by PIO.
4300 *
4301 * LOCKING:
4302 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004303 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004304void ata_data_xfer(struct ata_device *adev, unsigned char *buf,
4305 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306{
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004307 struct ata_port *ap = adev->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004308 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004310 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 if (write_data)
Tejun Heo0d5ff562007-02-01 15:06:36 +09004312 iowrite16_rep(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 else
Tejun Heo0d5ff562007-02-01 15:06:36 +09004314 ioread16_rep(ap->ioaddr.data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004315
4316 /* Transfer trailing 1 byte, if any. */
4317 if (unlikely(buflen & 0x01)) {
4318 u16 align_buf[1] = { 0 };
4319 unsigned char *trailing_buf = buf + buflen - 1;
4320
4321 if (write_data) {
4322 memcpy(align_buf, trailing_buf, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004323 iowrite16(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004324 } else {
Tejun Heo0d5ff562007-02-01 15:06:36 +09004325 align_buf[0] = cpu_to_le16(ioread16(ap->ioaddr.data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004326 memcpy(trailing_buf, align_buf, 1);
4327 }
4328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329}
4330
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004331/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004332 * ata_data_xfer_noirq - Transfer data by PIO
Alan Cox75e99582006-05-24 14:14:41 +01004333 * @adev: device to target
4334 * @buf: data buffer
4335 * @buflen: buffer length
4336 * @write_data: read/write
4337 *
Tejun Heo88574552006-06-25 20:00:35 +09004338 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01004339 * transfer with interrupts disabled.
4340 *
4341 * LOCKING:
4342 * Inherited from caller.
4343 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004344void ata_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
4345 unsigned int buflen, int write_data)
Alan Cox75e99582006-05-24 14:14:41 +01004346{
4347 unsigned long flags;
4348 local_irq_save(flags);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004349 ata_data_xfer(adev, buf, buflen, write_data);
Alan Cox75e99582006-05-24 14:14:41 +01004350 local_irq_restore(flags);
4351}
4352
4353
4354/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004355 * ata_pio_sector - Transfer a sector of data.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004356 * @qc: Command on going
4357 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004358 * Transfer qc->sect_size bytes of data from/to the ATA device.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004359 *
4360 * LOCKING:
4361 * Inherited from caller.
4362 */
4363
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364static void ata_pio_sector(struct ata_queued_cmd *qc)
4365{
4366 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004367 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 struct ata_port *ap = qc->ap;
4369 struct page *page;
4370 unsigned int offset;
4371 unsigned char *buf;
4372
Mark Lord5a5dbd12007-03-16 10:22:26 -04004373 if (qc->curbytes == qc->nbytes - qc->sect_size)
Albert Lee14be71f2005-09-27 17:36:35 +08004374 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375
4376 page = sg[qc->cursg].page;
Tejun Heo726f0782007-01-03 17:30:39 +09004377 offset = sg[qc->cursg].offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378
4379 /* get the current page and offset */
4380 page = nth_page(page, (offset >> PAGE_SHIFT));
4381 offset %= PAGE_SIZE;
4382
Albert Lee7282aa42005-10-09 09:46:07 -04004383 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4384
Albert Lee91b8b312005-10-09 09:48:44 -04004385 if (PageHighMem(page)) {
4386 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004387
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004388 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004389 local_irq_save(flags);
4390 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004391
Albert Lee91b8b312005-10-09 09:48:44 -04004392 /* do the actual data transfer */
Mark Lord5a5dbd12007-03-16 10:22:26 -04004393 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004394
4395 kunmap_atomic(buf, KM_IRQ0);
4396 local_irq_restore(flags);
4397 } else {
4398 buf = page_address(page);
Mark Lord5a5dbd12007-03-16 10:22:26 -04004399 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Mark Lord5a5dbd12007-03-16 10:22:26 -04004402 qc->curbytes += qc->sect_size;
4403 qc->cursg_ofs += qc->sect_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404
Tejun Heo726f0782007-01-03 17:30:39 +09004405 if (qc->cursg_ofs == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 qc->cursg++;
4407 qc->cursg_ofs = 0;
4408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004411/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004412 * ata_pio_sectors - Transfer one or many sectors.
Albert Lee07f6f7d2005-11-01 19:33:20 +08004413 * @qc: Command on going
4414 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004415 * Transfer one or many sectors of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08004416 * ATA device for the DRQ request.
4417 *
4418 * LOCKING:
4419 * Inherited from caller.
4420 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421
Albert Lee07f6f7d2005-11-01 19:33:20 +08004422static void ata_pio_sectors(struct ata_queued_cmd *qc)
4423{
4424 if (is_multi_taskfile(&qc->tf)) {
4425 /* READ/WRITE MULTIPLE */
4426 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
Jeff Garzik587005d2006-02-11 18:17:32 -05004428 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004429
Mark Lord5a5dbd12007-03-16 10:22:26 -04004430 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
Tejun Heo726f0782007-01-03 17:30:39 +09004431 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004432 while (nsect--)
4433 ata_pio_sector(qc);
4434 } else
4435 ata_pio_sector(qc);
4436}
4437
4438/**
Albert Leec71c1852005-10-04 06:03:45 -04004439 * atapi_send_cdb - Write CDB bytes to hardware
4440 * @ap: Port to which ATAPI device is attached.
4441 * @qc: Taskfile currently active
4442 *
4443 * When device has indicated its readiness to accept
4444 * a CDB, this function is called. Send the CDB.
4445 *
4446 * LOCKING:
4447 * caller.
4448 */
4449
4450static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
4451{
4452 /* send SCSI cdb */
4453 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05004454 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04004455
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004456 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04004457 ata_altstatus(ap); /* flush */
4458
4459 switch (qc->tf.protocol) {
4460 case ATA_PROT_ATAPI:
4461 ap->hsm_task_state = HSM_ST;
4462 break;
4463 case ATA_PROT_ATAPI_NODATA:
4464 ap->hsm_task_state = HSM_ST_LAST;
4465 break;
4466 case ATA_PROT_ATAPI_DMA:
4467 ap->hsm_task_state = HSM_ST_LAST;
4468 /* initiate bmdma */
4469 ap->ops->bmdma_start(qc);
4470 break;
4471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472}
4473
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004474/**
4475 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
4476 * @qc: Command on going
4477 * @bytes: number of bytes
4478 *
4479 * Transfer Transfer data from/to the ATAPI device.
4480 *
4481 * LOCKING:
4482 * Inherited from caller.
4483 *
4484 */
4485
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
4487{
4488 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004489 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 struct ata_port *ap = qc->ap;
4491 struct page *page;
4492 unsigned char *buf;
4493 unsigned int offset, count;
4494
Albert Lee563a6e12005-08-12 14:17:50 +08004495 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08004496 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
4498next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08004499 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004500 /*
Albert Lee563a6e12005-08-12 14:17:50 +08004501 * The end of qc->sg is reached and the device expects
4502 * more data to transfer. In order not to overrun qc->sg
4503 * and fulfill length specified in the byte count register,
4504 * - for read case, discard trailing data from the device
4505 * - for write case, padding zero data to the device
4506 */
4507 u16 pad_buf[1] = { 0 };
4508 unsigned int words = bytes >> 1;
4509 unsigned int i;
4510
4511 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09004512 ata_dev_printk(qc->dev, KERN_WARNING,
4513 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08004514
4515 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004516 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08004517
Albert Lee14be71f2005-09-27 17:36:35 +08004518 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08004519 return;
4520 }
4521
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004522 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 page = sg->page;
4525 offset = sg->offset + qc->cursg_ofs;
4526
4527 /* get the current page and offset */
4528 page = nth_page(page, (offset >> PAGE_SHIFT));
4529 offset %= PAGE_SIZE;
4530
Albert Lee6952df02005-06-06 15:56:03 +08004531 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04004532 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533
4534 /* don't cross page boundaries */
4535 count = min(count, (unsigned int)PAGE_SIZE - offset);
4536
Albert Lee7282aa42005-10-09 09:46:07 -04004537 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4538
Albert Lee91b8b312005-10-09 09:48:44 -04004539 if (PageHighMem(page)) {
4540 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004541
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004542 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004543 local_irq_save(flags);
4544 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004545
Albert Lee91b8b312005-10-09 09:48:44 -04004546 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004547 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004548
4549 kunmap_atomic(buf, KM_IRQ0);
4550 local_irq_restore(flags);
4551 } else {
4552 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004553 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
4556 bytes -= count;
4557 qc->curbytes += count;
4558 qc->cursg_ofs += count;
4559
Albert Lee32529e02005-05-26 03:49:42 -04004560 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 qc->cursg++;
4562 qc->cursg_ofs = 0;
4563 }
4564
Albert Lee563a6e12005-08-12 14:17:50 +08004565 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567}
4568
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004569/**
4570 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
4571 * @qc: Command on going
4572 *
4573 * Transfer Transfer data from/to the ATAPI device.
4574 *
4575 * LOCKING:
4576 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004577 */
4578
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579static void atapi_pio_bytes(struct ata_queued_cmd *qc)
4580{
4581 struct ata_port *ap = qc->ap;
4582 struct ata_device *dev = qc->dev;
4583 unsigned int ireason, bc_lo, bc_hi, bytes;
4584 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
4585
Albert Leeeec4c3f2006-05-18 17:51:10 +08004586 /* Abuse qc->result_tf for temp storage of intermediate TF
4587 * here to save some kernel stack usage.
4588 * For normal completion, qc->result_tf is not relevant. For
4589 * error, qc->result_tf is later overwritten by ata_qc_complete().
4590 * So, the correctness of qc->result_tf is not affected.
4591 */
4592 ap->ops->tf_read(ap, &qc->result_tf);
4593 ireason = qc->result_tf.nsect;
4594 bc_lo = qc->result_tf.lbam;
4595 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 bytes = (bc_hi << 8) | bc_lo;
4597
4598 /* shall be cleared to zero, indicating xfer of data */
4599 if (ireason & (1 << 0))
4600 goto err_out;
4601
4602 /* make sure transfer direction matches expected */
4603 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
4604 if (do_write != i_write)
4605 goto err_out;
4606
Tejun Heo44877b42007-02-21 01:06:51 +09004607 VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
Albert Lee312f7da2005-09-27 17:38:03 +08004608
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 __atapi_pio_bytes(qc, bytes);
4610
4611 return;
4612
4613err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09004614 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09004615 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08004616 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617}
4618
4619/**
Albert Leec234fb02006-03-25 17:58:38 +08004620 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
4621 * @ap: the target ata_port
4622 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 *
Albert Leec234fb02006-03-25 17:58:38 +08004624 * RETURNS:
4625 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 */
Albert Leec234fb02006-03-25 17:58:38 +08004627
4628static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629{
Albert Leec234fb02006-03-25 17:58:38 +08004630 if (qc->tf.flags & ATA_TFLAG_POLLING)
4631 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
Albert Leec234fb02006-03-25 17:58:38 +08004633 if (ap->hsm_task_state == HSM_ST_FIRST) {
4634 if (qc->tf.protocol == ATA_PROT_PIO &&
4635 (qc->tf.flags & ATA_TFLAG_WRITE))
4636 return 1;
4637
4638 if (is_atapi_taskfile(&qc->tf) &&
4639 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
4640 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 }
4642
Albert Leec234fb02006-03-25 17:58:38 +08004643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644}
4645
Albert Leec234fb02006-03-25 17:58:38 +08004646/**
Tejun Heoc17ea202006-05-15 20:59:29 +09004647 * ata_hsm_qc_complete - finish a qc running on standard HSM
4648 * @qc: Command to complete
4649 * @in_wq: 1 if called from workqueue, 0 otherwise
4650 *
4651 * Finish @qc which is running on standard HSM.
4652 *
4653 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004654 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09004655 * Otherwise, none on entry and grabs host lock.
4656 */
4657static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
4658{
4659 struct ata_port *ap = qc->ap;
4660 unsigned long flags;
4661
4662 if (ap->ops->error_handler) {
4663 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004664 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004665
Jeff Garzikcca39742006-08-24 03:19:22 -04004666 /* EH might have kicked in while host lock is
4667 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09004668 */
4669 qc = ata_qc_from_tag(ap, qc->tag);
4670 if (qc) {
4671 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi836250062007-01-26 16:27:32 +09004672 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004673 ata_qc_complete(qc);
4674 } else
4675 ata_port_freeze(ap);
4676 }
4677
Jeff Garzikba6a1302006-06-22 23:46:10 -04004678 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004679 } else {
4680 if (likely(!(qc->err_mask & AC_ERR_HSM)))
4681 ata_qc_complete(qc);
4682 else
4683 ata_port_freeze(ap);
4684 }
4685 } else {
4686 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004687 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi836250062007-01-26 16:27:32 +09004688 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004689 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04004690 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004691 } else
4692 ata_qc_complete(qc);
4693 }
Jeff Garzikc81e29b2006-05-24 01:49:12 -04004694
4695 ata_altstatus(ap); /* flush */
Tejun Heoc17ea202006-05-15 20:59:29 +09004696}
4697
4698/**
Albert Leebb5cb292006-03-25 17:48:02 +08004699 * ata_hsm_move - move the HSM to the next state.
4700 * @ap: the target ata_port
4701 * @qc: qc on going
4702 * @status: current device status
4703 * @in_wq: 1 if called from workqueue, 0 otherwise
4704 *
4705 * RETURNS:
4706 * 1 when poll next status needed, 0 otherwise.
4707 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09004708int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
4709 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710{
Albert Leebb5cb292006-03-25 17:48:02 +08004711 unsigned long flags = 0;
4712 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
Albert Lee6912ccd2006-03-25 17:45:49 +08004714 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08004715
Albert Leebb5cb292006-03-25 17:48:02 +08004716 /* Make sure ata_qc_issue_prot() does not throw things
4717 * like DMA polling into the workqueue. Notice that
4718 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08004719 */
Albert Leec234fb02006-03-25 17:58:38 +08004720 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08004721
Albert Leee2cec772006-03-25 17:43:49 +08004722fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08004723 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
Tejun Heo44877b42007-02-21 01:06:51 +09004724 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725
Albert Leee2cec772006-03-25 17:43:49 +08004726 switch (ap->hsm_task_state) {
4727 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08004728 /* Send first data block or PACKET CDB */
4729
4730 /* If polling, we will stay in the work queue after
4731 * sending the data. Otherwise, interrupt handler
4732 * takes over after sending the data.
4733 */
4734 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
4735
Albert Leee2cec772006-03-25 17:43:49 +08004736 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08004737 if (unlikely((status & ATA_DRQ) == 0)) {
4738 /* handle BSY=0, DRQ=0 as error */
4739 if (likely(status & (ATA_ERR | ATA_DF)))
4740 /* device stops HSM for abort/error */
4741 qc->err_mask |= AC_ERR_DEV;
4742 else
4743 /* HSM violation. Let EH handle this */
4744 qc->err_mask |= AC_ERR_HSM;
4745
Albert Leee2cec772006-03-25 17:43:49 +08004746 ap->hsm_task_state = HSM_ST_ERR;
4747 goto fsm_start;
4748 }
4749
Albert Lee71601952006-03-25 18:11:12 +08004750 /* Device should not ask for data transfer (DRQ=1)
4751 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004752 * We ignore DRQ here and stop the HSM by
4753 * changing hsm_task_state to HSM_ST_ERR and
4754 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004755 */
4756 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09004757 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with device "
4758 "error, dev_stat 0x%X\n", status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004759 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004760 ap->hsm_task_state = HSM_ST_ERR;
4761 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004762 }
4763
Albert Leebb5cb292006-03-25 17:48:02 +08004764 /* Send the CDB (atapi) or the first data block (ata pio out).
4765 * During the state transition, interrupt handler shouldn't
4766 * be invoked before the data transfer is complete and
4767 * hsm_task_state is changed. Hence, the following locking.
4768 */
4769 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004770 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08004771
Albert Leebb5cb292006-03-25 17:48:02 +08004772 if (qc->tf.protocol == ATA_PROT_PIO) {
4773 /* PIO data out protocol.
4774 * send first data block.
4775 */
4776
4777 /* ata_pio_sectors() might change the state
4778 * to HSM_ST_LAST. so, the state is changed here
4779 * before ata_pio_sectors().
4780 */
4781 ap->hsm_task_state = HSM_ST;
4782 ata_pio_sectors(qc);
4783 ata_altstatus(ap); /* flush */
4784 } else
4785 /* send CDB */
4786 atapi_send_cdb(ap, qc);
4787
4788 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04004789 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08004790
4791 /* if polling, ata_pio_task() handles the rest.
4792 * otherwise, interrupt handler takes over from here.
4793 */
Albert Leee2cec772006-03-25 17:43:49 +08004794 break;
4795
4796 case HSM_ST:
4797 /* complete command or read/write the data register */
4798 if (qc->tf.protocol == ATA_PROT_ATAPI) {
4799 /* ATAPI PIO protocol */
4800 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08004801 /* No more data to transfer or device error.
4802 * Device error will be tagged in HSM_ST_LAST.
4803 */
Albert Leee2cec772006-03-25 17:43:49 +08004804 ap->hsm_task_state = HSM_ST_LAST;
4805 goto fsm_start;
4806 }
4807
Albert Lee71601952006-03-25 18:11:12 +08004808 /* Device should not ask for data transfer (DRQ=1)
4809 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08004810 * We ignore DRQ here and stop the HSM by
4811 * changing hsm_task_state to HSM_ST_ERR and
4812 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08004813 */
4814 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09004815 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
4816 "device error, dev_stat 0x%X\n",
4817 status);
Albert Lee3655d1d2006-05-19 11:43:04 +08004818 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08004819 ap->hsm_task_state = HSM_ST_ERR;
4820 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004821 }
4822
Albert Leee2cec772006-03-25 17:43:49 +08004823 atapi_pio_bytes(qc);
4824
4825 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
4826 /* bad ireason reported by device */
4827 goto fsm_start;
4828
4829 } else {
4830 /* ATA PIO protocol */
4831 if (unlikely((status & ATA_DRQ) == 0)) {
4832 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08004833 if (likely(status & (ATA_ERR | ATA_DF)))
4834 /* device stops HSM for abort/error */
4835 qc->err_mask |= AC_ERR_DEV;
4836 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09004837 /* HSM violation. Let EH handle this.
4838 * Phantom devices also trigger this
4839 * condition. Mark hint.
4840 */
4841 qc->err_mask |= AC_ERR_HSM |
4842 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08004843
Albert Leee2cec772006-03-25 17:43:49 +08004844 ap->hsm_task_state = HSM_ST_ERR;
4845 goto fsm_start;
4846 }
4847
Albert Leeeee6c322006-04-01 17:38:43 +08004848 /* For PIO reads, some devices may ask for
4849 * data transfer (DRQ=1) alone with ERR=1.
4850 * We respect DRQ here and transfer one
4851 * block of junk data before changing the
4852 * hsm_task_state to HSM_ST_ERR.
4853 *
4854 * For PIO writes, ERR=1 DRQ=1 doesn't make
4855 * sense since the data block has been
4856 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08004857 */
4858 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08004859 /* data might be corrputed */
4860 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08004861
4862 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
4863 ata_pio_sectors(qc);
4864 ata_altstatus(ap);
4865 status = ata_wait_idle(ap);
4866 }
4867
Albert Lee3655d1d2006-05-19 11:43:04 +08004868 if (status & (ATA_BUSY | ATA_DRQ))
4869 qc->err_mask |= AC_ERR_HSM;
4870
Albert Leeeee6c322006-04-01 17:38:43 +08004871 /* ata_pio_sectors() might change the
4872 * state to HSM_ST_LAST. so, the state
4873 * is changed after ata_pio_sectors().
4874 */
4875 ap->hsm_task_state = HSM_ST_ERR;
4876 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08004877 }
4878
Albert Leee2cec772006-03-25 17:43:49 +08004879 ata_pio_sectors(qc);
4880
4881 if (ap->hsm_task_state == HSM_ST_LAST &&
4882 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
4883 /* all data read */
4884 ata_altstatus(ap);
Albert Lee52a32202006-03-25 18:18:15 +08004885 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08004886 goto fsm_start;
4887 }
4888 }
4889
4890 ata_altstatus(ap); /* flush */
Albert Leebb5cb292006-03-25 17:48:02 +08004891 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08004892 break;
4893
4894 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08004895 if (unlikely(!ata_ok(status))) {
4896 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08004897 ap->hsm_task_state = HSM_ST_ERR;
4898 goto fsm_start;
4899 }
4900
4901 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08004902 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09004903 ap->print_id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08004904
Albert Lee6912ccd2006-03-25 17:45:49 +08004905 WARN_ON(qc->err_mask);
4906
Albert Leee2cec772006-03-25 17:43:49 +08004907 ap->hsm_task_state = HSM_ST_IDLE;
4908
4909 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004910 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004911
4912 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004913 break;
4914
4915 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08004916 /* make sure qc->err_mask is available to
4917 * know what's wrong and recover
4918 */
4919 WARN_ON(qc->err_mask == 0);
4920
4921 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08004922
Albert Lee999bb6f2006-03-25 18:07:48 +08004923 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09004924 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08004925
4926 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08004927 break;
4928 default:
Albert Leebb5cb292006-03-25 17:48:02 +08004929 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08004930 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08004931 }
4932
Albert Leebb5cb292006-03-25 17:48:02 +08004933 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934}
4935
David Howells65f27f32006-11-22 14:55:48 +00004936static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937{
David Howells65f27f32006-11-22 14:55:48 +00004938 struct ata_port *ap =
4939 container_of(work, struct ata_port, port_task.work);
4940 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08004941 u8 status;
4942 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004943
4944fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08004945 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946
Albert Leea1af3732006-03-25 17:50:15 +08004947 /*
4948 * This is purely heuristic. This is a fast path.
4949 * Sometimes when we enter, BSY will be cleared in
4950 * a chk-status or two. If not, the drive is probably seeking
4951 * or something. Snooze for a couple msecs, then
4952 * chk-status again. If still busy, queue delayed work.
4953 */
4954 status = ata_busy_wait(ap, ATA_BUSY, 5);
4955 if (status & ATA_BUSY) {
4956 msleep(2);
4957 status = ata_busy_wait(ap, ATA_BUSY, 10);
4958 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08004959 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08004960 return;
4961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 }
4963
Albert Leea1af3732006-03-25 17:50:15 +08004964 /* move the HSM */
4965 poll_next = ata_hsm_move(ap, qc, status, 1);
4966
4967 /* another command or interrupt handler
4968 * may be running at this point.
4969 */
4970 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004971 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972}
4973
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 * ata_qc_new - Request an available ATA command, for queueing
4976 * @ap: Port associated with device @dev
4977 * @dev: Device from whom we request an available command structure
4978 *
4979 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004980 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 */
4982
4983static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4984{
4985 struct ata_queued_cmd *qc = NULL;
4986 unsigned int i;
4987
Tejun Heoe3180492006-05-15 20:58:09 +09004988 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09004989 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09004990 return NULL;
4991
Tejun Heo2ab7db12006-05-15 20:58:02 +09004992 /* the last tag is reserved for internal command. */
4993 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004994 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004995 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 break;
4997 }
4998
4999 if (qc)
5000 qc->tag = i;
5001
5002 return qc;
5003}
5004
5005/**
5006 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007 * @dev: Device from whom we request an available command structure
5008 *
5009 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005010 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 */
5012
Tejun Heo3373efd2006-05-15 20:57:53 +09005013struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014{
Tejun Heo3373efd2006-05-15 20:57:53 +09005015 struct ata_port *ap = dev->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 struct ata_queued_cmd *qc;
5017
5018 qc = ata_qc_new(ap);
5019 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 qc->scsicmd = NULL;
5021 qc->ap = ap;
5022 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05005024 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 }
5026
5027 return qc;
5028}
5029
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030/**
5031 * ata_qc_free - free unused ata_queued_cmd
5032 * @qc: Command to complete
5033 *
5034 * Designed to free unused ata_queued_cmd object
5035 * in case something prevents using it.
5036 *
5037 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005038 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 */
5040void ata_qc_free(struct ata_queued_cmd *qc)
5041{
Tejun Heo4ba946e2006-01-23 13:09:36 +09005042 struct ata_port *ap = qc->ap;
5043 unsigned int tag;
5044
Tejun Heoa46314742006-02-11 19:11:13 +09005045 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
Tejun Heo4ba946e2006-01-23 13:09:36 +09005047 qc->flags = 0;
5048 tag = qc->tag;
5049 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09005050 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09005051 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09005052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053}
5054
Tejun Heo76014422006-02-11 15:13:49 +09005055void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056{
Tejun Heodedaf2b2006-05-15 21:03:43 +09005057 struct ata_port *ap = qc->ap;
5058
Tejun Heoa46314742006-02-11 19:11:13 +09005059 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
5060 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061
5062 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
5063 ata_sg_clean(qc);
5064
Tejun Heo7401abf2006-05-15 20:57:32 +09005065 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09005066 if (qc->tf.protocol == ATA_PROT_NCQ)
5067 ap->sactive &= ~(1 << qc->tag);
5068 else
5069 ap->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09005070
Albert Lee3f3791d2005-08-16 14:25:38 +08005071 /* atapi: mark qc as inactive to prevent the interrupt handler
5072 * from completing the command twice later, before the error handler
5073 * is called. (when rc != 0 and atapi request sense is needed)
5074 */
5075 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005076 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08005077
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09005079 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080}
5081
Tejun Heo39599a52006-11-14 22:37:35 +09005082static void fill_result_tf(struct ata_queued_cmd *qc)
5083{
5084 struct ata_port *ap = qc->ap;
5085
Tejun Heo39599a52006-11-14 22:37:35 +09005086 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04005087 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09005088}
5089
Tejun Heof686bcb2006-05-15 20:58:05 +09005090/**
5091 * ata_qc_complete - Complete an active ATA command
5092 * @qc: Command to complete
5093 * @err_mask: ATA Status register contents
5094 *
5095 * Indicate to the mid and upper layers that an ATA
5096 * command has completed, with either an ok or not-ok status.
5097 *
5098 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005099 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09005100 */
5101void ata_qc_complete(struct ata_queued_cmd *qc)
5102{
5103 struct ata_port *ap = qc->ap;
5104
5105 /* XXX: New EH and old EH use different mechanisms to
5106 * synchronize EH with regular execution path.
5107 *
5108 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
5109 * Normal execution path is responsible for not accessing a
5110 * failed qc. libata core enforces the rule by returning NULL
5111 * from ata_qc_from_tag() for failed qcs.
5112 *
5113 * Old EH depends on ata_qc_complete() nullifying completion
5114 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
5115 * not synchronize with interrupt handler. Only PIO task is
5116 * taken care of.
5117 */
5118 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09005119 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09005120
5121 if (unlikely(qc->err_mask))
5122 qc->flags |= ATA_QCFLAG_FAILED;
5123
5124 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
5125 if (!ata_tag_internal(qc->tag)) {
5126 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09005127 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005128 ata_qc_schedule_eh(qc);
5129 return;
5130 }
5131 }
5132
5133 /* read result TF if requested */
5134 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005135 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005136
5137 __ata_qc_complete(qc);
5138 } else {
5139 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5140 return;
5141
5142 /* read result TF if failed or requested */
5143 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005144 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005145
5146 __ata_qc_complete(qc);
5147 }
5148}
5149
Tejun Heodedaf2b2006-05-15 21:03:43 +09005150/**
5151 * ata_qc_complete_multiple - Complete multiple qcs successfully
5152 * @ap: port in question
5153 * @qc_active: new qc_active mask
5154 * @finish_qc: LLDD callback invoked before completing a qc
5155 *
5156 * Complete in-flight commands. This functions is meant to be
5157 * called from low-level driver's interrupt routine to complete
5158 * requests normally. ap->qc_active and @qc_active is compared
5159 * and commands are completed accordingly.
5160 *
5161 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005162 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005163 *
5164 * RETURNS:
5165 * Number of completed commands on success, -errno otherwise.
5166 */
5167int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
5168 void (*finish_qc)(struct ata_queued_cmd *))
5169{
5170 int nr_done = 0;
5171 u32 done_mask;
5172 int i;
5173
5174 done_mask = ap->qc_active ^ qc_active;
5175
5176 if (unlikely(done_mask & qc_active)) {
5177 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
5178 "(%08x->%08x)\n", ap->qc_active, qc_active);
5179 return -EINVAL;
5180 }
5181
5182 for (i = 0; i < ATA_MAX_QUEUE; i++) {
5183 struct ata_queued_cmd *qc;
5184
5185 if (!(done_mask & (1 << i)))
5186 continue;
5187
5188 if ((qc = ata_qc_from_tag(ap, i))) {
5189 if (finish_qc)
5190 finish_qc(qc);
5191 ata_qc_complete(qc);
5192 nr_done++;
5193 }
5194 }
5195
5196 return nr_done;
5197}
5198
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
5200{
5201 struct ata_port *ap = qc->ap;
5202
5203 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09005204 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 case ATA_PROT_DMA:
5206 case ATA_PROT_ATAPI_DMA:
5207 return 1;
5208
5209 case ATA_PROT_ATAPI:
5210 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 if (ap->flags & ATA_FLAG_PIO_DMA)
5212 return 1;
5213
5214 /* fall through */
5215
5216 default:
5217 return 0;
5218 }
5219
5220 /* never reached */
5221}
5222
5223/**
5224 * ata_qc_issue - issue taskfile to device
5225 * @qc: command to issue to device
5226 *
5227 * Prepare an ATA command to submission to device.
5228 * This includes mapping the data into a DMA-able
5229 * area, filling in the S/G table, and finally
5230 * writing the taskfile to hardware, starting the command.
5231 *
5232 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005233 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09005235void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236{
5237 struct ata_port *ap = qc->ap;
5238
Tejun Heodedaf2b2006-05-15 21:03:43 +09005239 /* Make sure only one non-NCQ command is outstanding. The
5240 * check is skipped for old EH because it reuses active qc to
5241 * request ATAPI sense.
5242 */
5243 WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag));
5244
5245 if (qc->tf.protocol == ATA_PROT_NCQ) {
5246 WARN_ON(ap->sactive & (1 << qc->tag));
5247 ap->sactive |= 1 << qc->tag;
5248 } else {
5249 WARN_ON(ap->sactive);
5250 ap->active_tag = qc->tag;
5251 }
5252
Tejun Heoe4a70e72006-03-31 20:36:47 +09005253 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005254 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005255
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 if (ata_should_dma_map(qc)) {
5257 if (qc->flags & ATA_QCFLAG_SG) {
5258 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005259 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
5261 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005262 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 }
5264 } else {
5265 qc->flags &= ~ATA_QCFLAG_DMAMAP;
5266 }
5267
5268 ap->ops->qc_prep(qc);
5269
Tejun Heo8e0e6942006-03-31 20:41:11 +09005270 qc->err_mask |= ap->ops->qc_issue(qc);
5271 if (unlikely(qc->err_mask))
5272 goto err;
5273 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274
Tejun Heo8e436af2006-01-23 13:09:36 +09005275sg_err:
5276 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09005277 qc->err_mask |= AC_ERR_SYSTEM;
5278err:
5279 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280}
5281
5282/**
5283 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
5284 * @qc: command to issue to device
5285 *
5286 * Using various libata functions and hooks, this function
5287 * starts an ATA command. ATA commands are grouped into
5288 * classes called "protocols", and issuing each type of protocol
5289 * is slightly different.
5290 *
Edward Falk0baab862005-06-02 18:17:13 -04005291 * May be used as the qc_issue() entry in ata_port_operations.
5292 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005294 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 *
5296 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005297 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298 */
5299
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005300unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301{
5302 struct ata_port *ap = qc->ap;
5303
Albert Leee50362e2005-09-27 17:39:50 +08005304 /* Use polling pio if the LLD doesn't handle
5305 * interrupt driven pio and atapi CDB interrupt.
5306 */
5307 if (ap->flags & ATA_FLAG_PIO_POLLING) {
5308 switch (qc->tf.protocol) {
5309 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08005310 case ATA_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08005311 case ATA_PROT_ATAPI:
5312 case ATA_PROT_ATAPI_NODATA:
5313 qc->tf.flags |= ATA_TFLAG_POLLING;
5314 break;
5315 case ATA_PROT_ATAPI_DMA:
5316 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08005317 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08005318 BUG();
5319 break;
5320 default:
5321 break;
5322 }
5323 }
5324
Tejun Heo3d3cca32006-11-16 10:50:50 +09005325 /* Some controllers show flaky interrupt behavior after
5326 * setting xfer mode. Use polling instead.
5327 */
5328 if (unlikely(qc->tf.command == ATA_CMD_SET_FEATURES &&
5329 qc->tf.feature == SETFEATURES_XFER) &&
5330 (ap->flags & ATA_FLAG_SETXFER_POLLING))
5331 qc->tf.flags |= ATA_TFLAG_POLLING;
5332
Albert Lee312f7da2005-09-27 17:38:03 +08005333 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 ata_dev_select(ap, qc->dev->devno, 1, 0);
5335
Albert Lee312f7da2005-09-27 17:38:03 +08005336 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337 switch (qc->tf.protocol) {
5338 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005339 if (qc->tf.flags & ATA_TFLAG_POLLING)
5340 ata_qc_set_polling(qc);
5341
Jeff Garzike5338252005-10-30 21:37:17 -05005342 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005343 ap->hsm_task_state = HSM_ST_LAST;
5344
5345 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005346 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005347
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348 break;
5349
5350 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005351 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005352
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5354 ap->ops->bmdma_setup(qc); /* set up bmdma */
5355 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005356 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 break;
5358
Albert Lee312f7da2005-09-27 17:38:03 +08005359 case ATA_PROT_PIO:
5360 if (qc->tf.flags & ATA_TFLAG_POLLING)
5361 ata_qc_set_polling(qc);
5362
Jeff Garzike5338252005-10-30 21:37:17 -05005363 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005364
Albert Lee54f00382005-09-30 19:14:19 +08005365 if (qc->tf.flags & ATA_TFLAG_WRITE) {
5366 /* PIO data out protocol */
5367 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08005368 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08005369
5370 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08005371 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08005372 */
Albert Lee312f7da2005-09-27 17:38:03 +08005373 } else {
Albert Lee54f00382005-09-30 19:14:19 +08005374 /* PIO data in protocol */
5375 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08005376
Albert Lee54f00382005-09-30 19:14:19 +08005377 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005378 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005379
Albert Lee54f00382005-09-30 19:14:19 +08005380 /* if polling, ata_pio_task() handles the rest.
5381 * otherwise, interrupt handler takes over from here.
5382 */
Albert Lee312f7da2005-09-27 17:38:03 +08005383 }
5384
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385 break;
5386
5387 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005389 if (qc->tf.flags & ATA_TFLAG_POLLING)
5390 ata_qc_set_polling(qc);
5391
Jeff Garzike5338252005-10-30 21:37:17 -05005392 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05005393
Albert Lee312f7da2005-09-27 17:38:03 +08005394 ap->hsm_task_state = HSM_ST_FIRST;
5395
5396 /* send cdb by polling if no cdb interrupt */
5397 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
5398 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08005399 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400 break;
5401
5402 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005403 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005404
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5406 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005407 ap->hsm_task_state = HSM_ST_FIRST;
5408
5409 /* send cdb by polling if no cdb interrupt */
5410 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08005411 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 break;
5413
5414 default:
5415 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005416 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417 }
5418
5419 return 0;
5420}
5421
5422/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423 * ata_host_intr - Handle host interrupt for given (port, task)
5424 * @ap: Port on which interrupt arrived (possibly...)
5425 * @qc: Taskfile currently active in engine
5426 *
5427 * Handle host interrupt for given queued command. Currently,
5428 * only DMA interrupts are handled. All other commands are
5429 * handled via polling with interrupts disabled (nIEN bit).
5430 *
5431 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005432 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 *
5434 * RETURNS:
5435 * One if interrupt was handled, zero if not (shared irq).
5436 */
5437
5438inline unsigned int ata_host_intr (struct ata_port *ap,
5439 struct ata_queued_cmd *qc)
5440{
Tejun Heoea547632006-11-17 12:06:21 +09005441 struct ata_eh_info *ehi = &ap->eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08005442 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
Albert Lee312f7da2005-09-27 17:38:03 +08005444 VPRINTK("ata%u: protocol %d task_state %d\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005445 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446
Albert Lee312f7da2005-09-27 17:38:03 +08005447 /* Check whether we are expecting interrupt in this state */
5448 switch (ap->hsm_task_state) {
5449 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005450 /* Some pre-ATAPI-4 devices assert INTRQ
5451 * at this state when ready to receive CDB.
5452 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
Albert Lee312f7da2005-09-27 17:38:03 +08005454 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
5455 * The flag was turned on only for atapi devices.
5456 * No need to check is_atapi_taskfile(&qc->tf) again.
5457 */
5458 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 break;
Albert Lee312f7da2005-09-27 17:38:03 +08005461 case HSM_ST_LAST:
5462 if (qc->tf.protocol == ATA_PROT_DMA ||
5463 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
5464 /* check status of DMA engine */
5465 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005466 VPRINTK("ata%u: host_stat 0x%X\n",
5467 ap->print_id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
Albert Lee312f7da2005-09-27 17:38:03 +08005469 /* if it's not our irq... */
5470 if (!(host_stat & ATA_DMA_INTR))
5471 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472
Albert Lee312f7da2005-09-27 17:38:03 +08005473 /* before we do anything else, clear DMA-Start bit */
5474 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08005475
5476 if (unlikely(host_stat & ATA_DMA_ERR)) {
5477 /* error when transfering data to/from memory */
5478 qc->err_mask |= AC_ERR_HOST_BUS;
5479 ap->hsm_task_state = HSM_ST_ERR;
5480 }
Albert Lee312f7da2005-09-27 17:38:03 +08005481 }
5482 break;
5483 case HSM_ST:
5484 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 default:
5486 goto idle_irq;
5487 }
5488
Albert Lee312f7da2005-09-27 17:38:03 +08005489 /* check altstatus */
5490 status = ata_altstatus(ap);
5491 if (status & ATA_BUSY)
5492 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493
Albert Lee312f7da2005-09-27 17:38:03 +08005494 /* check main status, clearing INTRQ */
5495 status = ata_chk_status(ap);
5496 if (unlikely(status & ATA_BUSY))
5497 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498
Albert Lee312f7da2005-09-27 17:38:03 +08005499 /* ack bmdma irq events */
5500 ap->ops->irq_clear(ap);
5501
Albert Leebb5cb292006-03-25 17:48:02 +08005502 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09005503
5504 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
5505 qc->tf.protocol == ATA_PROT_ATAPI_DMA))
5506 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
5507
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 return 1; /* irq handled */
5509
5510idle_irq:
5511 ap->stats.idle_irq++;
5512
5513#ifdef ATA_IRQ_TRAP
5514 if ((ap->stats.idle_irq % 1000) == 0) {
Akira Iguchi836250062007-01-26 16:27:32 +09005515 ap->ops->irq_ack(ap, 0); /* debug trap */
Tejun Heof15a1da2006-05-15 20:57:56 +09005516 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00005517 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518 }
5519#endif
5520 return 0; /* irq not handled */
5521}
5522
5523/**
5524 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04005525 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04005526 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005528 * Default interrupt handler for PCI IDE devices. Calls
5529 * ata_host_intr() for each port that is not disabled.
5530 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005532 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533 *
5534 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005535 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536 */
5537
David Howells7d12e782006-10-05 14:55:46 +01005538irqreturn_t ata_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539{
Jeff Garzikcca39742006-08-24 03:19:22 -04005540 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541 unsigned int i;
5542 unsigned int handled = 0;
5543 unsigned long flags;
5544
5545 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04005546 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547
Jeff Garzikcca39742006-08-24 03:19:22 -04005548 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549 struct ata_port *ap;
5550
Jeff Garzikcca39742006-08-24 03:19:22 -04005551 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09005552 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04005553 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554 struct ata_queued_cmd *qc;
5555
5556 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08005557 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08005558 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559 handled |= ata_host_intr(ap, qc);
5560 }
5561 }
5562
Jeff Garzikcca39742006-08-24 03:19:22 -04005563 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564
5565 return IRQ_RETVAL(handled);
5566}
5567
Tejun Heo34bf2172006-05-15 20:57:46 +09005568/**
5569 * sata_scr_valid - test whether SCRs are accessible
5570 * @ap: ATA port to test SCR accessibility for
5571 *
5572 * Test whether SCRs are accessible for @ap.
5573 *
5574 * LOCKING:
5575 * None.
5576 *
5577 * RETURNS:
5578 * 1 if SCRs are accessible, 0 otherwise.
5579 */
5580int sata_scr_valid(struct ata_port *ap)
5581{
5582 return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read;
5583}
5584
5585/**
5586 * sata_scr_read - read SCR register of the specified port
5587 * @ap: ATA port to read SCR for
5588 * @reg: SCR to read
5589 * @val: Place to store read value
5590 *
5591 * Read SCR register @reg of @ap into *@val. This function is
5592 * guaranteed to succeed if the cable type of the port is SATA
5593 * and the port implements ->scr_read.
5594 *
5595 * LOCKING:
5596 * None.
5597 *
5598 * RETURNS:
5599 * 0 on success, negative errno on failure.
5600 */
5601int sata_scr_read(struct ata_port *ap, int reg, u32 *val)
5602{
5603 if (sata_scr_valid(ap)) {
5604 *val = ap->ops->scr_read(ap, reg);
5605 return 0;
5606 }
5607 return -EOPNOTSUPP;
5608}
5609
5610/**
5611 * sata_scr_write - write SCR register of the specified port
5612 * @ap: ATA port to write SCR for
5613 * @reg: SCR to write
5614 * @val: value to write
5615 *
5616 * Write @val to SCR register @reg of @ap. This function is
5617 * guaranteed to succeed if the cable type of the port is SATA
5618 * and the port implements ->scr_read.
5619 *
5620 * LOCKING:
5621 * None.
5622 *
5623 * RETURNS:
5624 * 0 on success, negative errno on failure.
5625 */
5626int sata_scr_write(struct ata_port *ap, int reg, u32 val)
5627{
5628 if (sata_scr_valid(ap)) {
5629 ap->ops->scr_write(ap, reg, val);
5630 return 0;
5631 }
5632 return -EOPNOTSUPP;
5633}
5634
5635/**
5636 * sata_scr_write_flush - write SCR register of the specified port and flush
5637 * @ap: ATA port to write SCR for
5638 * @reg: SCR to write
5639 * @val: value to write
5640 *
5641 * This function is identical to sata_scr_write() except that this
5642 * function performs flush after writing to the register.
5643 *
5644 * LOCKING:
5645 * None.
5646 *
5647 * RETURNS:
5648 * 0 on success, negative errno on failure.
5649 */
5650int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val)
5651{
5652 if (sata_scr_valid(ap)) {
5653 ap->ops->scr_write(ap, reg, val);
5654 ap->ops->scr_read(ap, reg);
5655 return 0;
5656 }
5657 return -EOPNOTSUPP;
5658}
5659
5660/**
5661 * ata_port_online - test whether the given port is online
5662 * @ap: ATA port to test
5663 *
5664 * Test whether @ap is online. Note that this function returns 0
5665 * if online status of @ap cannot be obtained, so
5666 * ata_port_online(ap) != !ata_port_offline(ap).
5667 *
5668 * LOCKING:
5669 * None.
5670 *
5671 * RETURNS:
5672 * 1 if the port online status is available and online.
5673 */
5674int ata_port_online(struct ata_port *ap)
5675{
5676 u32 sstatus;
5677
5678 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3)
5679 return 1;
5680 return 0;
5681}
5682
5683/**
5684 * ata_port_offline - test whether the given port is offline
5685 * @ap: ATA port to test
5686 *
5687 * Test whether @ap is offline. Note that this function returns
5688 * 0 if offline status of @ap cannot be obtained, so
5689 * ata_port_online(ap) != !ata_port_offline(ap).
5690 *
5691 * LOCKING:
5692 * None.
5693 *
5694 * RETURNS:
5695 * 1 if the port offline status is available and offline.
5696 */
5697int ata_port_offline(struct ata_port *ap)
5698{
5699 u32 sstatus;
5700
5701 if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3)
5702 return 1;
5703 return 0;
5704}
Edward Falk0baab862005-06-02 18:17:13 -04005705
Tejun Heo77b08fb2006-06-24 20:30:19 +09005706int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005707{
Tejun Heo977e6b92006-06-24 20:30:19 +09005708 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01005709 u8 cmd;
5710
5711 if (!ata_try_flush_cache(dev))
5712 return 0;
5713
Tejun Heo6fc49ad2006-11-11 20:10:45 +09005714 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01005715 cmd = ATA_CMD_FLUSH_EXT;
5716 else
5717 cmd = ATA_CMD_FLUSH;
5718
Tejun Heo977e6b92006-06-24 20:30:19 +09005719 err_mask = ata_do_simple_cmd(dev, cmd);
5720 if (err_mask) {
5721 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
5722 return -EIO;
5723 }
5724
5725 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01005726}
5727
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005728#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04005729static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5730 unsigned int action, unsigned int ehi_flags,
5731 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005732{
5733 unsigned long flags;
5734 int i, rc;
5735
Jeff Garzikcca39742006-08-24 03:19:22 -04005736 for (i = 0; i < host->n_ports; i++) {
5737 struct ata_port *ap = host->ports[i];
Tejun Heo500530f2006-07-03 16:07:27 +09005738
5739 /* Previous resume operation might still be in
5740 * progress. Wait for PM_PENDING to clear.
5741 */
5742 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5743 ata_port_wait_eh(ap);
5744 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5745 }
5746
5747 /* request PM ops to EH */
5748 spin_lock_irqsave(ap->lock, flags);
5749
5750 ap->pm_mesg = mesg;
5751 if (wait) {
5752 rc = 0;
5753 ap->pm_result = &rc;
5754 }
5755
5756 ap->pflags |= ATA_PFLAG_PM_PENDING;
5757 ap->eh_info.action |= action;
5758 ap->eh_info.flags |= ehi_flags;
5759
5760 ata_port_schedule_eh(ap);
5761
5762 spin_unlock_irqrestore(ap->lock, flags);
5763
5764 /* wait and check result */
5765 if (wait) {
5766 ata_port_wait_eh(ap);
5767 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5768 if (rc)
5769 return rc;
5770 }
5771 }
5772
5773 return 0;
5774}
5775
5776/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005777 * ata_host_suspend - suspend host
5778 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09005779 * @mesg: PM message
5780 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005781 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005782 * function requests EH to perform PM operations and waits for EH
5783 * to finish.
5784 *
5785 * LOCKING:
5786 * Kernel thread context (may sleep).
5787 *
5788 * RETURNS:
5789 * 0 on success, -errno on failure.
5790 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005791int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005792{
5793 int i, j, rc;
5794
Jeff Garzikcca39742006-08-24 03:19:22 -04005795 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Tejun Heo500530f2006-07-03 16:07:27 +09005796 if (rc)
5797 goto fail;
5798
5799 /* EH is quiescent now. Fail if we have any ready device.
5800 * This happens if hotplug occurs between completion of device
5801 * suspension and here.
5802 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005803 for (i = 0; i < host->n_ports; i++) {
5804 struct ata_port *ap = host->ports[i];
Tejun Heo500530f2006-07-03 16:07:27 +09005805
5806 for (j = 0; j < ATA_MAX_DEVICES; j++) {
5807 struct ata_device *dev = &ap->device[j];
5808
5809 if (ata_dev_ready(dev)) {
5810 ata_port_printk(ap, KERN_WARNING,
5811 "suspend failed, device %d "
5812 "still active\n", dev->devno);
5813 rc = -EBUSY;
5814 goto fail;
5815 }
5816 }
5817 }
5818
Jeff Garzikcca39742006-08-24 03:19:22 -04005819 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005820 return 0;
5821
5822 fail:
Jeff Garzikcca39742006-08-24 03:19:22 -04005823 ata_host_resume(host);
Tejun Heo500530f2006-07-03 16:07:27 +09005824 return rc;
5825}
5826
5827/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005828 * ata_host_resume - resume host
5829 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005830 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005831 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005832 * function requests EH to perform PM operations and returns.
5833 * Note that all resume operations are performed parallely.
5834 *
5835 * LOCKING:
5836 * Kernel thread context (may sleep).
5837 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005838void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005839{
Jeff Garzikcca39742006-08-24 03:19:22 -04005840 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
5841 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
5842 host->dev->power.power_state = PMSG_ON;
Tejun Heo500530f2006-07-03 16:07:27 +09005843}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005844#endif
Tejun Heo500530f2006-07-03 16:07:27 +09005845
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005846/**
5847 * ata_port_start - Set port up for dma.
5848 * @ap: Port to initialize
5849 *
5850 * Called just after data structures for each port are
5851 * initialized. Allocates space for PRD table.
5852 *
5853 * May be used as the port_start() entry in ata_port_operations.
5854 *
5855 * LOCKING:
5856 * Inherited from caller.
5857 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005858int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859{
Brian King2f1f6102006-03-23 17:30:15 -06005860 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005861 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862
Tejun Heof0d36ef2007-01-20 16:00:28 +09005863 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5864 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 if (!ap->prd)
5866 return -ENOMEM;
5867
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005868 rc = ata_pad_alloc(ap, dev);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005869 if (rc)
Jeff Garzik6037d6b2005-11-04 22:08:00 -05005870 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005871
Tejun Heof0d36ef2007-01-20 16:00:28 +09005872 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd,
5873 (unsigned long long)ap->prd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874 return 0;
5875}
5876
Edward Falk0baab862005-06-02 18:17:13 -04005877/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005878 * ata_dev_init - Initialize an ata_device structure
5879 * @dev: Device structure to initialize
5880 *
5881 * Initialize @dev in preparation for probing.
5882 *
5883 * LOCKING:
5884 * Inherited from caller.
5885 */
5886void ata_dev_init(struct ata_device *dev)
5887{
5888 struct ata_port *ap = dev->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005889 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005890
Tejun Heo5a04bf42006-05-31 18:27:38 +09005891 /* SATA spd limit is bound to the first device */
5892 ap->sata_spd_limit = ap->hw_sata_spd_limit;
5893
Tejun Heo72fa4b72006-05-31 18:27:32 +09005894 /* High bits of dev->flags are used to record warm plug
5895 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04005896 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09005897 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005898 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005899 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005900 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005901
5902 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5903 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005904 dev->pio_mask = UINT_MAX;
5905 dev->mwdma_mask = UINT_MAX;
5906 dev->udma_mask = UINT_MAX;
5907}
5908
5909/**
Tejun Heof3187192007-04-17 23:44:07 +09005910 * ata_port_alloc - allocate and initialize basic ATA port resources
5911 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912 *
Tejun Heof3187192007-04-17 23:44:07 +09005913 * Allocate and initialize basic ATA port resources.
5914 *
5915 * RETURNS:
5916 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005917 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005919 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920 */
Tejun Heof3187192007-04-17 23:44:07 +09005921struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922{
Tejun Heof3187192007-04-17 23:44:07 +09005923 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924 unsigned int i;
5925
Tejun Heof3187192007-04-17 23:44:07 +09005926 DPRINTK("ENTER\n");
5927
5928 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5929 if (!ap)
5930 return NULL;
5931
Jeff Garzikcca39742006-08-24 03:19:22 -04005932 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005933 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09005934 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04005936 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09005937 ap->dev = host->dev;
5938
Tejun Heo5a04bf42006-05-31 18:27:38 +09005939 ap->hw_sata_spd_limit = UINT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940 ap->active_tag = ATA_TAG_POISON;
5941 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005942
5943#if defined(ATA_VERBOSE_DEBUG)
5944 /* turn on all debugging levels */
5945 ap->msg_enable = 0x00FF;
5946#elif defined(ATA_DEBUG)
5947 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 +09005948#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005949 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005950#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951
David Howells65f27f32006-11-22 14:55:48 +00005952 INIT_DELAYED_WORK(&ap->port_task, NULL);
5953 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5954 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005955 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005956 init_waitqueue_head(&ap->eh_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957
Tejun Heo838df622006-05-15 20:57:44 +09005958 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09005959
Tejun Heoacf356b2006-03-24 14:07:50 +09005960 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5961 struct ata_device *dev = &ap->device[i];
Tejun Heo38d87232006-05-15 20:57:51 +09005962 dev->ap = ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005963 dev->devno = i;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005964 ata_dev_init(dev);
Tejun Heoacf356b2006-03-24 14:07:50 +09005965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966
5967#ifdef ATA_IRQ_TRAP
5968 ap->stats.unhandled_irq = 1;
5969 ap->stats.idle_irq = 1;
5970#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972}
5973
Tejun Heof0d36ef2007-01-20 16:00:28 +09005974static void ata_host_release(struct device *gendev, void *res)
5975{
5976 struct ata_host *host = dev_get_drvdata(gendev);
5977 int i;
5978
5979 for (i = 0; i < host->n_ports; i++) {
5980 struct ata_port *ap = host->ports[i];
5981
Tejun Heoecef7252007-04-17 23:44:06 +09005982 if (!ap)
5983 continue;
5984
5985 if ((host->flags & ATA_HOST_STARTED) && ap->ops->port_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09005986 ap->ops->port_stop(ap);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005987 }
5988
Tejun Heoecef7252007-04-17 23:44:06 +09005989 if ((host->flags & ATA_HOST_STARTED) && host->ops->host_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09005990 host->ops->host_stop(host);
Tejun Heo1aa56cc2007-02-27 22:33:21 +09005991
Tejun Heo1aa506e42007-03-09 19:36:12 +09005992 for (i = 0; i < host->n_ports; i++) {
5993 struct ata_port *ap = host->ports[i];
5994
Tejun Heo49114872007-04-17 23:44:06 +09005995 if (!ap)
5996 continue;
5997
5998 if (ap->scsi_host)
Tejun Heo1aa506e42007-03-09 19:36:12 +09005999 scsi_host_put(ap->scsi_host);
6000
Tejun Heo49114872007-04-17 23:44:06 +09006001 kfree(ap);
Tejun Heo1aa506e42007-03-09 19:36:12 +09006002 host->ports[i] = NULL;
6003 }
6004
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006005 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006006}
6007
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008/**
Tejun Heof3187192007-04-17 23:44:07 +09006009 * ata_host_alloc - allocate and init basic ATA host resources
6010 * @dev: generic device this host is associated with
6011 * @max_ports: maximum number of ATA ports associated with this host
6012 *
6013 * Allocate and initialize basic ATA host resources. LLD calls
6014 * this function to allocate a host, initializes it fully and
6015 * attaches it using ata_host_register().
6016 *
6017 * @max_ports ports are allocated and host->n_ports is
6018 * initialized to @max_ports. The caller is allowed to decrease
6019 * host->n_ports before calling ata_host_register(). The unused
6020 * ports will be automatically freed on registration.
6021 *
6022 * RETURNS:
6023 * Allocate ATA host on success, NULL on failure.
6024 *
6025 * LOCKING:
6026 * Inherited from calling layer (may sleep).
6027 */
6028struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
6029{
6030 struct ata_host *host;
6031 size_t sz;
6032 int i;
6033
6034 DPRINTK("ENTER\n");
6035
6036 if (!devres_open_group(dev, NULL, GFP_KERNEL))
6037 return NULL;
6038
6039 /* alloc a container for our list of ATA ports (buses) */
6040 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
6041 /* alloc a container for our list of ATA ports (buses) */
6042 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
6043 if (!host)
6044 goto err_out;
6045
6046 devres_add(dev, host);
6047 dev_set_drvdata(dev, host);
6048
6049 spin_lock_init(&host->lock);
6050 host->dev = dev;
6051 host->n_ports = max_ports;
6052
6053 /* allocate ports bound to this host */
6054 for (i = 0; i < max_ports; i++) {
6055 struct ata_port *ap;
6056
6057 ap = ata_port_alloc(host);
6058 if (!ap)
6059 goto err_out;
6060
6061 ap->port_no = i;
6062 host->ports[i] = ap;
6063 }
6064
6065 devres_remove_group(dev, NULL);
6066 return host;
6067
6068 err_out:
6069 devres_release_group(dev, NULL);
6070 return NULL;
6071}
6072
6073/**
Tejun Heof5cda252007-04-17 23:44:07 +09006074 * ata_host_alloc_pinfo - alloc host and init with port_info array
6075 * @dev: generic device this host is associated with
6076 * @ppi: array of ATA port_info to initialize host with
6077 * @n_ports: number of ATA ports attached to this host
6078 *
6079 * Allocate ATA host and initialize with info from @ppi. If NULL
6080 * terminated, @ppi may contain fewer entries than @n_ports. The
6081 * last entry will be used for the remaining ports.
6082 *
6083 * RETURNS:
6084 * Allocate ATA host on success, NULL on failure.
6085 *
6086 * LOCKING:
6087 * Inherited from calling layer (may sleep).
6088 */
6089struct ata_host *ata_host_alloc_pinfo(struct device *dev,
6090 const struct ata_port_info * const * ppi,
6091 int n_ports)
6092{
6093 const struct ata_port_info *pi;
6094 struct ata_host *host;
6095 int i, j;
6096
6097 host = ata_host_alloc(dev, n_ports);
6098 if (!host)
6099 return NULL;
6100
6101 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
6102 struct ata_port *ap = host->ports[i];
6103
6104 if (ppi[j])
6105 pi = ppi[j++];
6106
6107 ap->pio_mask = pi->pio_mask;
6108 ap->mwdma_mask = pi->mwdma_mask;
6109 ap->udma_mask = pi->udma_mask;
6110 ap->flags |= pi->flags;
6111 ap->ops = pi->port_ops;
6112
6113 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
6114 host->ops = pi->port_ops;
6115 if (!host->private_data && pi->private_data)
6116 host->private_data = pi->private_data;
6117 }
6118
6119 return host;
6120}
6121
6122/**
Tejun Heoecef7252007-04-17 23:44:06 +09006123 * ata_host_start - start and freeze ports of an ATA host
6124 * @host: ATA host to start ports for
6125 *
6126 * Start and then freeze ports of @host. Started status is
6127 * recorded in host->flags, so this function can be called
6128 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09006129 * once. If host->ops isn't initialized yet, its set to the
6130 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09006131 *
6132 * LOCKING:
6133 * Inherited from calling layer (may sleep).
6134 *
6135 * RETURNS:
6136 * 0 if all ports are started successfully, -errno otherwise.
6137 */
6138int ata_host_start(struct ata_host *host)
6139{
6140 int i, rc;
6141
6142 if (host->flags & ATA_HOST_STARTED)
6143 return 0;
6144
6145 for (i = 0; i < host->n_ports; i++) {
6146 struct ata_port *ap = host->ports[i];
6147
Tejun Heof3187192007-04-17 23:44:07 +09006148 if (!host->ops && !ata_port_is_dummy(ap))
6149 host->ops = ap->ops;
6150
Tejun Heoecef7252007-04-17 23:44:06 +09006151 if (ap->ops->port_start) {
6152 rc = ap->ops->port_start(ap);
6153 if (rc) {
6154 ata_port_printk(ap, KERN_ERR, "failed to "
6155 "start port (errno=%d)\n", rc);
6156 goto err_out;
6157 }
6158 }
6159
6160 ata_eh_freeze_port(ap);
6161 }
6162
6163 host->flags |= ATA_HOST_STARTED;
6164 return 0;
6165
6166 err_out:
6167 while (--i >= 0) {
6168 struct ata_port *ap = host->ports[i];
6169
6170 if (ap->ops->port_stop)
6171 ap->ops->port_stop(ap);
6172 }
6173 return rc;
6174}
6175
6176/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006177 * ata_sas_host_init - Initialize a host struct
6178 * @host: host to initialize
6179 * @dev: device host is attached to
6180 * @flags: host flags
6181 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05006182 *
6183 * LOCKING:
6184 * PCI/etc. bus probe sem.
6185 *
6186 */
Tejun Heof3187192007-04-17 23:44:07 +09006187/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04006188void ata_host_init(struct ata_host *host, struct device *dev,
6189 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05006190{
Jeff Garzikcca39742006-08-24 03:19:22 -04006191 spin_lock_init(&host->lock);
6192 host->dev = dev;
6193 host->flags = flags;
6194 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05006195}
6196
6197/**
Tejun Heof3187192007-04-17 23:44:07 +09006198 * ata_host_register - register initialized ATA host
6199 * @host: ATA host to register
6200 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04006201 *
Tejun Heof3187192007-04-17 23:44:07 +09006202 * Register initialized ATA host. @host is allocated using
6203 * ata_host_alloc() and fully initialized by LLD. This function
6204 * starts ports, registers @host with ATA and SCSI layers and
6205 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206 *
6207 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006208 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209 *
6210 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09006211 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212 */
Tejun Heof3187192007-04-17 23:44:07 +09006213int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214{
Tejun Heof3187192007-04-17 23:44:07 +09006215 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216
Tejun Heof3187192007-04-17 23:44:07 +09006217 /* host must have been started */
6218 if (!(host->flags & ATA_HOST_STARTED)) {
6219 dev_printk(KERN_ERR, host->dev,
6220 "BUG: trying to register unstarted host\n");
6221 WARN_ON(1);
6222 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01006223 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09006224
Tejun Heof3187192007-04-17 23:44:07 +09006225 /* Blow away unused ports. This happens when LLD can't
6226 * determine the exact number of ports to allocate at
6227 * allocation time.
6228 */
6229 for (i = host->n_ports; host->ports[i]; i++)
6230 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231
Tejun Heof3187192007-04-17 23:44:07 +09006232 /* give ports names and add SCSI hosts */
6233 for (i = 0; i < host->n_ports; i++)
6234 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006235
Tejun Heof3187192007-04-17 23:44:07 +09006236 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006237 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006238 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006239
Tejun Heof3187192007-04-17 23:44:07 +09006240 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006241 for (i = 0; i < host->n_ports; i++) {
6242 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006243 int irq_line;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006244 u32 scontrol;
Tejun Heof3187192007-04-17 23:44:07 +09006245 unsigned long xfer_mask;
6246
6247 /* set SATA cable type if still unset */
6248 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6249 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250
Tejun Heo5a04bf42006-05-31 18:27:38 +09006251 /* init sata_spd_limit to the current value */
6252 if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) {
6253 int spd = (scontrol >> 4) & 0xf;
6254 ap->hw_sata_spd_limit &= (1 << spd) - 1;
6255 }
6256 ap->sata_spd_limit = ap->hw_sata_spd_limit;
6257
Tejun Heof3187192007-04-17 23:44:07 +09006258 /* report the secondary IRQ for second channel legacy */
6259 irq_line = host->irq;
6260 if (i == 1 && host->irq2)
6261 irq_line = host->irq2;
Tejun Heo3e7063992006-05-31 18:28:11 +09006262
Tejun Heof3187192007-04-17 23:44:07 +09006263 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6264 ap->udma_mask);
6265
6266 /* print per-port info to dmesg */
6267 if (!ata_port_is_dummy(ap))
6268 ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%p "
6269 "ctl 0x%p bmdma 0x%p irq %d\n",
6270 ap->cbl == ATA_CBL_SATA ? 'S' : 'P',
6271 ata_mode_string(xfer_mask),
6272 ap->ioaddr.cmd_addr,
6273 ap->ioaddr.ctl_addr,
6274 ap->ioaddr.bmdma_addr,
6275 irq_line);
6276 else
6277 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6278 }
6279
6280 /* perform each probe synchronously */
6281 DPRINTK("probe begin\n");
6282 for (i = 0; i < host->n_ports; i++) {
6283 struct ata_port *ap = host->ports[i];
6284 int rc;
6285
6286 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09006287 if (ap->ops->error_handler) {
Tejun Heo1cdaf532006-07-03 16:07:26 +09006288 struct ata_eh_info *ehi = &ap->eh_info;
Tejun Heo3e7063992006-05-31 18:28:11 +09006289 unsigned long flags;
6290
6291 ata_port_probe(ap);
6292
6293 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006294 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e7063992006-05-31 18:28:11 +09006295
Tejun Heo1cdaf532006-07-03 16:07:26 +09006296 ehi->probe_mask = (1 << ATA_MAX_DEVICES) - 1;
6297 ehi->action |= ATA_EH_SOFTRESET;
6298 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e7063992006-05-31 18:28:11 +09006299
Tejun Heob51e9e52006-06-29 01:29:30 +09006300 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e7063992006-05-31 18:28:11 +09006301 ata_port_schedule_eh(ap);
6302
Jeff Garzikba6a1302006-06-22 23:46:10 -04006303 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e7063992006-05-31 18:28:11 +09006304
6305 /* wait for EH to finish */
6306 ata_port_wait_eh(ap);
6307 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09006308 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e7063992006-05-31 18:28:11 +09006309 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09006310 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e7063992006-05-31 18:28:11 +09006311
6312 if (rc) {
6313 /* FIXME: do something useful here?
6314 * Current libata behavior will
6315 * tear down everything when
6316 * the module is removed
6317 * or the h/w is unplugged.
6318 */
6319 }
6320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321 }
6322
6323 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006324 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04006325 for (i = 0; i < host->n_ports; i++) {
6326 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327
Jeff Garzik644dd0c2005-10-03 15:55:19 -04006328 ata_scsi_scan_host(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329 }
6330
Tejun Heof3187192007-04-17 23:44:07 +09006331 return 0;
6332}
6333
6334/**
Tejun Heof5cda252007-04-17 23:44:07 +09006335 * ata_host_activate - start host, request IRQ and register it
6336 * @host: target ATA host
6337 * @irq: IRQ to request
6338 * @irq_handler: irq_handler used when requesting IRQ
6339 * @irq_flags: irq_flags used when requesting IRQ
6340 * @sht: scsi_host_template to use when registering the host
6341 *
6342 * After allocating an ATA host and initializing it, most libata
6343 * LLDs perform three steps to activate the host - start host,
6344 * request IRQ and register it. This helper takes necessasry
6345 * arguments and performs the three steps in one go.
6346 *
6347 * LOCKING:
6348 * Inherited from calling layer (may sleep).
6349 *
6350 * RETURNS:
6351 * 0 on success, -errno otherwise.
6352 */
6353int ata_host_activate(struct ata_host *host, int irq,
6354 irq_handler_t irq_handler, unsigned long irq_flags,
6355 struct scsi_host_template *sht)
6356{
6357 int rc;
6358
6359 rc = ata_host_start(host);
6360 if (rc)
6361 return rc;
6362
6363 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6364 dev_driver_string(host->dev), host);
6365 if (rc)
6366 return rc;
6367
6368 rc = ata_host_register(host, sht);
6369 /* if failed, just free the IRQ and leave ports alone */
6370 if (rc)
6371 devm_free_irq(host->dev, irq, host);
6372
6373 return rc;
6374}
6375
6376/**
Tejun Heo720ba122006-05-31 18:28:13 +09006377 * ata_port_detach - Detach ATA port in prepration of device removal
6378 * @ap: ATA port to be detached
6379 *
6380 * Detach all ATA devices and the associated SCSI devices of @ap;
6381 * then, remove the associated SCSI host. @ap is guaranteed to
6382 * be quiescent on return from this function.
6383 *
6384 * LOCKING:
6385 * Kernel thread context (may sleep).
6386 */
6387void ata_port_detach(struct ata_port *ap)
6388{
6389 unsigned long flags;
6390 int i;
6391
6392 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006393 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006394
6395 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006396 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006397 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006398 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006399
6400 ata_port_wait_eh(ap);
6401
6402 /* EH is now guaranteed to see UNLOADING, so no new device
6403 * will be attached. Disable all existing devices.
6404 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006405 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006406
6407 for (i = 0; i < ATA_MAX_DEVICES; i++)
6408 ata_dev_disable(&ap->device[i]);
6409
Jeff Garzikba6a1302006-06-22 23:46:10 -04006410 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006411
6412 /* Final freeze & EH. All in-flight commands are aborted. EH
6413 * will be skipped and retrials will be terminated with bad
6414 * target.
6415 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006416 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006417 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006418 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006419
6420 ata_port_wait_eh(ap);
6421
6422 /* Flush hotplug task. The sequence is similar to
6423 * ata_port_flush_task().
6424 */
6425 flush_workqueue(ata_aux_wq);
6426 cancel_delayed_work(&ap->hotplug_task);
6427 flush_workqueue(ata_aux_wq);
6428
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006429 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006430 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006431 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006432}
6433
6434/**
Tejun Heo0529c1592007-01-20 16:00:26 +09006435 * ata_host_detach - Detach all ports of an ATA host
6436 * @host: Host to detach
6437 *
6438 * Detach all ports of @host.
6439 *
6440 * LOCKING:
6441 * Kernel thread context (may sleep).
6442 */
6443void ata_host_detach(struct ata_host *host)
6444{
6445 int i;
6446
6447 for (i = 0; i < host->n_ports; i++)
6448 ata_port_detach(host->ports[i]);
6449}
6450
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451/**
6452 * ata_std_ports - initialize ioaddr with standard port offsets.
6453 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04006454 *
6455 * Utility function which initializes data_addr, error_addr,
6456 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
6457 * device_addr, status_addr, and command_addr to standard offsets
6458 * relative to cmd_addr.
6459 *
6460 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461 */
Edward Falk0baab862005-06-02 18:17:13 -04006462
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463void ata_std_ports(struct ata_ioports *ioaddr)
6464{
6465 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
6466 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
6467 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
6468 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
6469 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
6470 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
6471 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
6472 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
6473 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
6474 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
6475}
6476
Edward Falk0baab862005-06-02 18:17:13 -04006477
Jeff Garzik374b1872005-08-30 05:42:52 -04006478#ifdef CONFIG_PCI
6479
Edward Falk0baab862005-06-02 18:17:13 -04006480/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 * ata_pci_remove_one - PCI layer callback for device removal
6482 * @pdev: PCI device that was removed
6483 *
Tejun Heob878ca52007-01-20 16:00:28 +09006484 * PCI layer indicates to libata via this hook that hot-unplug or
6485 * module unload event has occurred. Detach all ports. Resource
6486 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487 *
6488 * LOCKING:
6489 * Inherited from PCI layer (may sleep).
6490 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006491void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492{
6493 struct device *dev = pci_dev_to_dev(pdev);
Jeff Garzikcca39742006-08-24 03:19:22 -04006494 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495
Tejun Heob878ca52007-01-20 16:00:28 +09006496 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497}
6498
6499/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006500int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501{
6502 unsigned long tmp = 0;
6503
6504 switch (bits->width) {
6505 case 1: {
6506 u8 tmp8 = 0;
6507 pci_read_config_byte(pdev, bits->reg, &tmp8);
6508 tmp = tmp8;
6509 break;
6510 }
6511 case 2: {
6512 u16 tmp16 = 0;
6513 pci_read_config_word(pdev, bits->reg, &tmp16);
6514 tmp = tmp16;
6515 break;
6516 }
6517 case 4: {
6518 u32 tmp32 = 0;
6519 pci_read_config_dword(pdev, bits->reg, &tmp32);
6520 tmp = tmp32;
6521 break;
6522 }
6523
6524 default:
6525 return -EINVAL;
6526 }
6527
6528 tmp &= bits->mask;
6529
6530 return (tmp == bits->val) ? 1 : 0;
6531}
Jens Axboe9b847542006-01-06 09:28:07 +01006532
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006533#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09006534void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006535{
6536 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09006537 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006538
Tejun Heo4c90d972007-02-20 18:14:48 +09006539 if (mesg.event == PM_EVENT_SUSPEND)
Tejun Heo500530f2006-07-03 16:07:27 +09006540 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01006541}
6542
Tejun Heo553c4aa2006-12-26 19:39:50 +09006543int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006544{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006545 int rc;
6546
Jens Axboe9b847542006-01-06 09:28:07 +01006547 pci_set_power_state(pdev, PCI_D0);
6548 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006549
Tejun Heob878ca52007-01-20 16:00:28 +09006550 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006551 if (rc) {
6552 dev_printk(KERN_ERR, &pdev->dev,
6553 "failed to enable device after resume (%d)\n", rc);
6554 return rc;
6555 }
6556
Jens Axboe9b847542006-01-06 09:28:07 +01006557 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006558 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006559}
6560
Tejun Heo3c5100c2006-07-26 16:58:33 +09006561int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006562{
Jeff Garzikcca39742006-08-24 03:19:22 -04006563 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006564 int rc = 0;
6565
Jeff Garzikcca39742006-08-24 03:19:22 -04006566 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006567 if (rc)
6568 return rc;
6569
Tejun Heo3c5100c2006-07-26 16:58:33 +09006570 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006571
6572 return 0;
6573}
6574
6575int ata_pci_device_resume(struct pci_dev *pdev)
6576{
Jeff Garzikcca39742006-08-24 03:19:22 -04006577 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006578 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006579
Tejun Heo553c4aa2006-12-26 19:39:50 +09006580 rc = ata_pci_device_do_resume(pdev);
6581 if (rc == 0)
6582 ata_host_resume(host);
6583 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006584}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006585#endif /* CONFIG_PM */
6586
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587#endif /* CONFIG_PCI */
6588
6589
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590static int __init ata_init(void)
6591{
Andrew Mortona8601e52006-06-25 01:36:52 -07006592 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 ata_wq = create_workqueue("ata");
6594 if (!ata_wq)
6595 return -ENOMEM;
6596
Tejun Heo453b07a2006-05-31 18:27:42 +09006597 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6598 if (!ata_aux_wq) {
6599 destroy_workqueue(ata_wq);
6600 return -ENOMEM;
6601 }
6602
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6604 return 0;
6605}
6606
6607static void __exit ata_exit(void)
6608{
6609 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006610 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611}
6612
Brian Kinga4625082006-11-13 16:32:36 -06006613subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614module_exit(ata_exit);
6615
Jeff Garzik67846b32005-10-05 02:58:32 -04006616static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006617static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006618
6619int ata_ratelimit(void)
6620{
6621 int rc;
6622 unsigned long flags;
6623
6624 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6625
6626 if (time_after(jiffies, ratelimit_time)) {
6627 rc = 1;
6628 ratelimit_time = jiffies + (HZ/5);
6629 } else
6630 rc = 0;
6631
6632 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6633
6634 return rc;
6635}
6636
Tejun Heoc22daff2006-04-11 22:22:29 +09006637/**
6638 * ata_wait_register - wait until register value changes
6639 * @reg: IO-mapped register
6640 * @mask: Mask to apply to read register value
6641 * @val: Wait condition
6642 * @interval_msec: polling interval in milliseconds
6643 * @timeout_msec: timeout in milliseconds
6644 *
6645 * Waiting for some bits of register to change is a common
6646 * operation for ATA controllers. This function reads 32bit LE
6647 * IO-mapped register @reg and tests for the following condition.
6648 *
6649 * (*@reg & mask) != val
6650 *
6651 * If the condition is met, it returns; otherwise, the process is
6652 * repeated after @interval_msec until timeout.
6653 *
6654 * LOCKING:
6655 * Kernel thread context (may sleep)
6656 *
6657 * RETURNS:
6658 * The final register value.
6659 */
6660u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6661 unsigned long interval_msec,
6662 unsigned long timeout_msec)
6663{
6664 unsigned long timeout;
6665 u32 tmp;
6666
6667 tmp = ioread32(reg);
6668
6669 /* Calculate timeout _after_ the first read to make sure
6670 * preceding writes reach the controller before starting to
6671 * eat away the timeout.
6672 */
6673 timeout = jiffies + (timeout_msec * HZ) / 1000;
6674
6675 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6676 msleep(interval_msec);
6677 tmp = ioread32(reg);
6678 }
6679
6680 return tmp;
6681}
6682
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006684 * Dummy port_ops
6685 */
6686static void ata_dummy_noret(struct ata_port *ap) { }
6687static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
6688static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
6689
6690static u8 ata_dummy_check_status(struct ata_port *ap)
6691{
6692 return ATA_DRDY;
6693}
6694
6695static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6696{
6697 return AC_ERR_SYSTEM;
6698}
6699
6700const struct ata_port_operations ata_dummy_port_ops = {
6701 .port_disable = ata_port_disable,
6702 .check_status = ata_dummy_check_status,
6703 .check_altstatus = ata_dummy_check_status,
6704 .dev_select = ata_noop_dev_select,
6705 .qc_prep = ata_noop_qc_prep,
6706 .qc_issue = ata_dummy_qc_issue,
6707 .freeze = ata_dummy_noret,
6708 .thaw = ata_dummy_noret,
6709 .error_handler = ata_dummy_noret,
6710 .post_internal_cmd = ata_dummy_qc_noret,
6711 .irq_clear = ata_dummy_noret,
6712 .port_start = ata_dummy_ret0,
6713 .port_stop = ata_dummy_noret,
6714};
6715
Tejun Heo21b0ad42007-04-17 23:44:07 +09006716const struct ata_port_info ata_dummy_port_info = {
6717 .port_ops = &ata_dummy_port_ops,
6718};
6719
Tejun Heodd5b06c2006-08-10 16:59:12 +09006720/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721 * libata is essentially a library of internal helper functions for
6722 * low-level ATA host controller drivers. As such, the API/ABI is
6723 * likely to change as new drivers are added and updated.
6724 * Do not depend on ABI/API stability.
6725 */
6726
Tejun Heoe9c83912006-07-03 16:07:26 +09006727EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6728EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6729EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006730EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006731EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732EXPORT_SYMBOL_GPL(ata_std_bios_param);
6733EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04006734EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006735EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006736EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09006737EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006738EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006739EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c1592007-01-20 16:00:26 +09006740EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741EXPORT_SYMBOL_GPL(ata_sg_init);
6742EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09006743EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09006744EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006745EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747EXPORT_SYMBOL_GPL(ata_tf_load);
6748EXPORT_SYMBOL_GPL(ata_tf_read);
6749EXPORT_SYMBOL_GPL(ata_noop_dev_select);
6750EXPORT_SYMBOL_GPL(ata_std_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05006751EXPORT_SYMBOL_GPL(sata_print_link_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6753EXPORT_SYMBOL_GPL(ata_tf_from_fis);
6754EXPORT_SYMBOL_GPL(ata_check_status);
6755EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756EXPORT_SYMBOL_GPL(ata_exec_command);
6757EXPORT_SYMBOL_GPL(ata_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758EXPORT_SYMBOL_GPL(ata_interrupt);
Alan04351822007-03-06 02:37:52 -08006759EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo0d5ff562007-02-01 15:06:36 +09006760EXPORT_SYMBOL_GPL(ata_data_xfer);
6761EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006762EXPORT_SYMBOL_GPL(ata_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06006763EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764EXPORT_SYMBOL_GPL(ata_bmdma_setup);
6765EXPORT_SYMBOL_GPL(ata_bmdma_start);
6766EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
6767EXPORT_SYMBOL_GPL(ata_bmdma_status);
6768EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09006769EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
6770EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
6771EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
6772EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
6773EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00006775EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09006776EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heod7bb4cc2006-05-31 18:27:46 +09006777EXPORT_SYMBOL_GPL(sata_phy_debounce);
6778EXPORT_SYMBOL_GPL(sata_phy_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779EXPORT_SYMBOL_GPL(sata_phy_reset);
6780EXPORT_SYMBOL_GPL(__sata_phy_reset);
6781EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09006782EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006783EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heob6103f62006-11-01 17:59:53 +09006784EXPORT_SYMBOL_GPL(sata_port_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09006785EXPORT_SYMBOL_GPL(sata_std_hardreset);
6786EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006787EXPORT_SYMBOL_GPL(ata_dev_classify);
6788EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006790EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006791EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09006792EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo86e45b62006-03-05 15:29:09 +09006793EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6795EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006797EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006798EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09006800EXPORT_SYMBOL_GPL(sata_scr_valid);
6801EXPORT_SYMBOL_GPL(sata_scr_read);
6802EXPORT_SYMBOL_GPL(sata_scr_write);
6803EXPORT_SYMBOL_GPL(sata_scr_write_flush);
6804EXPORT_SYMBOL_GPL(ata_port_online);
6805EXPORT_SYMBOL_GPL(ata_port_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006806#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006807EXPORT_SYMBOL_GPL(ata_host_suspend);
6808EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006809#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09006810EXPORT_SYMBOL_GPL(ata_id_string);
6811EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan10305f02007-02-20 18:01:59 +00006812EXPORT_SYMBOL_GPL(ata_id_to_dma_mode);
Alan Cox6919a0a2006-10-27 19:08:46 -07006813EXPORT_SYMBOL_GPL(ata_device_blacklisted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6815
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006816EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04006817EXPORT_SYMBOL_GPL(ata_timing_compute);
6818EXPORT_SYMBOL_GPL(ata_timing_merge);
6819
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820#ifdef CONFIG_PCI
6821EXPORT_SYMBOL_GPL(pci_test_config_bits);
Tejun Heod491b272007-04-17 23:44:07 +09006822EXPORT_SYMBOL_GPL(ata_pci_init_native_host);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006823EXPORT_SYMBOL_GPL(ata_pci_prepare_native_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824EXPORT_SYMBOL_GPL(ata_pci_init_one);
6825EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006826#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09006827EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6828EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006829EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6830EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006831#endif /* CONFIG_PM */
Alan Cox67951ad2006-03-22 15:55:54 +00006832EXPORT_SYMBOL_GPL(ata_pci_default_filter);
6833EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006835
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006836#ifdef CONFIG_PM
Jens Axboe9b847542006-01-06 09:28:07 +01006837EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
6838EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006839#endif /* CONFIG_PM */
Tejun Heoece1d632006-04-02 18:51:53 +09006840
Tejun Heoece1d632006-04-02 18:51:53 +09006841EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006842EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
6843EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006844EXPORT_SYMBOL_GPL(ata_port_freeze);
6845EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6846EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006847EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6848EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09006849EXPORT_SYMBOL_GPL(ata_do_eh);
Akira Iguchi836250062007-01-26 16:27:32 +09006850EXPORT_SYMBOL_GPL(ata_irq_on);
6851EXPORT_SYMBOL_GPL(ata_dummy_irq_on);
6852EXPORT_SYMBOL_GPL(ata_irq_ack);
6853EXPORT_SYMBOL_GPL(ata_dummy_irq_ack);
Akira Iguchia619f981b2007-01-26 16:28:18 +09006854EXPORT_SYMBOL_GPL(ata_dev_try_classify);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006855
6856EXPORT_SYMBOL_GPL(ata_cable_40wire);
6857EXPORT_SYMBOL_GPL(ata_cable_80wire);
6858EXPORT_SYMBOL_GPL(ata_cable_unknown);
6859EXPORT_SYMBOL_GPL(ata_cable_sata);