blob: 5532a6564d050d24d0f8155eea72a7da3280ac00 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/pci.h>
38#include <linux/init.h>
39#include <linux/list.h>
40#include <linux/mm.h>
41#include <linux/highmem.h>
42#include <linux/spinlock.h>
43#include <linux/blkdev.h>
44#include <linux/delay.h>
45#include <linux/timer.h>
46#include <linux/interrupt.h>
47#include <linux/completion.h>
48#include <linux/suspend.h>
49#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040050#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100051#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050053#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <scsi/scsi_host.h>
55#include <linux/libata.h>
56#include <asm/io.h>
57#include <asm/semaphore.h>
58#include <asm/byteorder.h>
59
60#include "libata.h"
61
Jeff Garzikfda0efc2007-01-31 07:43:15 -050062
Tejun Heod7bb4cc2006-05-31 18:27:46 +090063/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090064const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
65const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
66const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090067
Tejun Heo3373efd2006-05-15 20:57:53 +090068static unsigned int ata_dev_init_params(struct ata_device *dev,
69 u16 heads, u16 sectors);
70static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -040071static unsigned int ata_dev_set_AN(struct ata_device *dev, u8 enable);
Tejun Heo3373efd2006-05-15 20:57:53 +090072static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090073static unsigned long ata_dev_blacklisted(const 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
Mark Lordbaf4fdf2007-08-08 01:08:45 +090088int atapi_passthru16 = 1;
89module_param(atapi_passthru16, int, 0444);
90MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
91
Jeff Garzikc3c013a2006-02-27 22:31:19 -050092int libata_fua = 0;
93module_param_named(fua, libata_fua, int, 0444);
94MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
95
Alan Cox1e999732007-04-11 00:23:13 +010096static int ata_ignore_hpa = 0;
97module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
98MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
99
Andrew Mortona8601e52006-06-25 01:36:52 -0700100static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
101module_param(ata_probe_timeout, int, 0444);
102MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
103
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400104int libata_noacpi = 1;
105module_param_named(noacpi, libata_noacpi, int, 0444);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700106MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in suspend/resume when set");
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108MODULE_AUTHOR("Jeff Garzik");
109MODULE_DESCRIPTION("Library module for ATA devices");
110MODULE_LICENSE("GPL");
111MODULE_VERSION(DRV_VERSION);
112
Edward Falk0baab862005-06-02 18:17:13 -0400113
114/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
116 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900118 * @is_cmd: This FIS is for command
119 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 *
121 * Converts a standard ATA taskfile to a Serial ATA
122 * FIS structure (Register - Host to Device).
123 *
124 * LOCKING:
125 * Inherited from caller.
126 */
Tejun Heo99771262007-07-16 14:29:38 +0900127void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Tejun Heo99771262007-07-16 14:29:38 +0900129 fis[0] = 0x27; /* Register - Host to Device FIS */
130 fis[1] = pmp & 0xf; /* Port multiplier number*/
131 if (is_cmd)
132 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 fis[2] = tf->command;
135 fis[3] = tf->feature;
136
137 fis[4] = tf->lbal;
138 fis[5] = tf->lbam;
139 fis[6] = tf->lbah;
140 fis[7] = tf->device;
141
142 fis[8] = tf->hob_lbal;
143 fis[9] = tf->hob_lbam;
144 fis[10] = tf->hob_lbah;
145 fis[11] = tf->hob_feature;
146
147 fis[12] = tf->nsect;
148 fis[13] = tf->hob_nsect;
149 fis[14] = 0;
150 fis[15] = tf->ctl;
151
152 fis[16] = 0;
153 fis[17] = 0;
154 fis[18] = 0;
155 fis[19] = 0;
156}
157
158/**
159 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
160 * @fis: Buffer from which data will be input
161 * @tf: Taskfile to output
162 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500163 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 *
165 * LOCKING:
166 * Inherited from caller.
167 */
168
Jeff Garzik057ace52005-10-22 14:27:05 -0400169void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 tf->command = fis[2]; /* status */
172 tf->feature = fis[3]; /* error */
173
174 tf->lbal = fis[4];
175 tf->lbam = fis[5];
176 tf->lbah = fis[6];
177 tf->device = fis[7];
178
179 tf->hob_lbal = fis[8];
180 tf->hob_lbam = fis[9];
181 tf->hob_lbah = fis[10];
182
183 tf->nsect = fis[12];
184 tf->hob_nsect = fis[13];
185}
186
Albert Lee8cbd6df2005-10-12 15:06:27 +0800187static const u8 ata_rw_cmds[] = {
188 /* pio multi */
189 ATA_CMD_READ_MULTI,
190 ATA_CMD_WRITE_MULTI,
191 ATA_CMD_READ_MULTI_EXT,
192 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100193 0,
194 0,
195 0,
196 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800197 /* pio */
198 ATA_CMD_PIO_READ,
199 ATA_CMD_PIO_WRITE,
200 ATA_CMD_PIO_READ_EXT,
201 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100202 0,
203 0,
204 0,
205 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800206 /* dma */
207 ATA_CMD_READ,
208 ATA_CMD_WRITE,
209 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100210 ATA_CMD_WRITE_EXT,
211 0,
212 0,
213 0,
214 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800215};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800218 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900219 * @tf: command to examine and configure
220 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500222 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800223 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 *
225 * LOCKING:
226 * caller.
227 */
Tejun Heobd056d72006-11-14 22:47:10 +0900228static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100230 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100232 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500233
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100234 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800235 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
236 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Albert Lee8cbd6df2005-10-12 15:06:27 +0800238 if (dev->flags & ATA_DFLAG_PIO) {
239 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100240 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900241 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000242 /* Unable to use DMA due to host limitation */
243 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800244 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800245 } else {
246 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100247 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100250 cmd = ata_rw_cmds[index + fua + lba48 + write];
251 if (cmd) {
252 tf->command = cmd;
253 return 0;
254 }
255 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Tejun Heocb95d562006-03-06 04:31:56 +0900258/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900259 * ata_tf_read_block - Read block address from ATA taskfile
260 * @tf: ATA taskfile of interest
261 * @dev: ATA device @tf belongs to
262 *
263 * LOCKING:
264 * None.
265 *
266 * Read block address from @tf. This function can handle all
267 * three address formats - LBA, LBA48 and CHS. tf->protocol and
268 * flags select the address format to use.
269 *
270 * RETURNS:
271 * Block address read from @tf.
272 */
273u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
274{
275 u64 block = 0;
276
277 if (tf->flags & ATA_TFLAG_LBA) {
278 if (tf->flags & ATA_TFLAG_LBA48) {
279 block |= (u64)tf->hob_lbah << 40;
280 block |= (u64)tf->hob_lbam << 32;
281 block |= tf->hob_lbal << 24;
282 } else
283 block |= (tf->device & 0xf) << 24;
284
285 block |= tf->lbah << 16;
286 block |= tf->lbam << 8;
287 block |= tf->lbal;
288 } else {
289 u32 cyl, head, sect;
290
291 cyl = tf->lbam | (tf->lbah << 8);
292 head = tf->device & 0xf;
293 sect = tf->lbal;
294
295 block = (cyl * dev->heads + head) * dev->sectors + sect;
296 }
297
298 return block;
299}
300
301/**
Tejun Heobd056d72006-11-14 22:47:10 +0900302 * ata_build_rw_tf - Build ATA taskfile for given read/write request
303 * @tf: Target ATA taskfile
304 * @dev: ATA device @tf belongs to
305 * @block: Block address
306 * @n_block: Number of blocks
307 * @tf_flags: RW/FUA etc...
308 * @tag: tag
309 *
310 * LOCKING:
311 * None.
312 *
313 * Build ATA taskfile @tf for read/write request described by
314 * @block, @n_block, @tf_flags and @tag on @dev.
315 *
316 * RETURNS:
317 *
318 * 0 on success, -ERANGE if the request is too large for @dev,
319 * -EINVAL if the request is invalid.
320 */
321int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
322 u64 block, u32 n_block, unsigned int tf_flags,
323 unsigned int tag)
324{
325 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
326 tf->flags |= tf_flags;
327
Tejun Heo6d1245b2007-02-20 23:20:27 +0900328 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900329 /* yay, NCQ */
330 if (!lba_48_ok(block, n_block))
331 return -ERANGE;
332
333 tf->protocol = ATA_PROT_NCQ;
334 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
335
336 if (tf->flags & ATA_TFLAG_WRITE)
337 tf->command = ATA_CMD_FPDMA_WRITE;
338 else
339 tf->command = ATA_CMD_FPDMA_READ;
340
341 tf->nsect = tag << 3;
342 tf->hob_feature = (n_block >> 8) & 0xff;
343 tf->feature = n_block & 0xff;
344
345 tf->hob_lbah = (block >> 40) & 0xff;
346 tf->hob_lbam = (block >> 32) & 0xff;
347 tf->hob_lbal = (block >> 24) & 0xff;
348 tf->lbah = (block >> 16) & 0xff;
349 tf->lbam = (block >> 8) & 0xff;
350 tf->lbal = block & 0xff;
351
352 tf->device = 1 << 6;
353 if (tf->flags & ATA_TFLAG_FUA)
354 tf->device |= 1 << 7;
355 } else if (dev->flags & ATA_DFLAG_LBA) {
356 tf->flags |= ATA_TFLAG_LBA;
357
358 if (lba_28_ok(block, n_block)) {
359 /* use LBA28 */
360 tf->device |= (block >> 24) & 0xf;
361 } else if (lba_48_ok(block, n_block)) {
362 if (!(dev->flags & ATA_DFLAG_LBA48))
363 return -ERANGE;
364
365 /* use LBA48 */
366 tf->flags |= ATA_TFLAG_LBA48;
367
368 tf->hob_nsect = (n_block >> 8) & 0xff;
369
370 tf->hob_lbah = (block >> 40) & 0xff;
371 tf->hob_lbam = (block >> 32) & 0xff;
372 tf->hob_lbal = (block >> 24) & 0xff;
373 } else
374 /* request too large even for LBA48 */
375 return -ERANGE;
376
377 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
378 return -EINVAL;
379
380 tf->nsect = n_block & 0xff;
381
382 tf->lbah = (block >> 16) & 0xff;
383 tf->lbam = (block >> 8) & 0xff;
384 tf->lbal = block & 0xff;
385
386 tf->device |= ATA_LBA;
387 } else {
388 /* CHS */
389 u32 sect, head, cyl, track;
390
391 /* The request -may- be too large for CHS addressing. */
392 if (!lba_28_ok(block, n_block))
393 return -ERANGE;
394
395 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
396 return -EINVAL;
397
398 /* Convert LBA to CHS */
399 track = (u32)block / dev->sectors;
400 cyl = track / dev->heads;
401 head = track % dev->heads;
402 sect = (u32)block % dev->sectors + 1;
403
404 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
405 (u32)block, track, cyl, head, sect);
406
407 /* Check whether the converted CHS can fit.
408 Cylinder: 0-65535
409 Head: 0-15
410 Sector: 1-255*/
411 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
412 return -ERANGE;
413
414 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
415 tf->lbal = sect;
416 tf->lbam = cyl;
417 tf->lbah = cyl >> 8;
418 tf->device |= head;
419 }
420
421 return 0;
422}
423
424/**
Tejun Heocb95d562006-03-06 04:31:56 +0900425 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
426 * @pio_mask: pio_mask
427 * @mwdma_mask: mwdma_mask
428 * @udma_mask: udma_mask
429 *
430 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
431 * unsigned int xfer_mask.
432 *
433 * LOCKING:
434 * None.
435 *
436 * RETURNS:
437 * Packed xfer_mask.
438 */
439static unsigned int ata_pack_xfermask(unsigned int pio_mask,
440 unsigned int mwdma_mask,
441 unsigned int udma_mask)
442{
443 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
444 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
445 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
446}
447
Tejun Heoc0489e42006-03-24 14:07:49 +0900448/**
449 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
450 * @xfer_mask: xfer_mask to unpack
451 * @pio_mask: resulting pio_mask
452 * @mwdma_mask: resulting mwdma_mask
453 * @udma_mask: resulting udma_mask
454 *
455 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
456 * Any NULL distination masks will be ignored.
457 */
458static void ata_unpack_xfermask(unsigned int xfer_mask,
459 unsigned int *pio_mask,
460 unsigned int *mwdma_mask,
461 unsigned int *udma_mask)
462{
463 if (pio_mask)
464 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
465 if (mwdma_mask)
466 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
467 if (udma_mask)
468 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
469}
470
Tejun Heocb95d562006-03-06 04:31:56 +0900471static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900472 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900473 u8 base;
474} ata_xfer_tbl[] = {
475 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
476 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
477 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
478 { -1, },
479};
480
481/**
482 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
483 * @xfer_mask: xfer_mask of interest
484 *
485 * Return matching XFER_* value for @xfer_mask. Only the highest
486 * bit of @xfer_mask is considered.
487 *
488 * LOCKING:
489 * None.
490 *
491 * RETURNS:
492 * Matching XFER_* value, 0 if no match found.
493 */
494static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
495{
496 int highbit = fls(xfer_mask) - 1;
497 const struct ata_xfer_ent *ent;
498
499 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
500 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
501 return ent->base + highbit - ent->shift;
502 return 0;
503}
504
505/**
506 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
507 * @xfer_mode: XFER_* of interest
508 *
509 * Return matching xfer_mask for @xfer_mode.
510 *
511 * LOCKING:
512 * None.
513 *
514 * RETURNS:
515 * Matching xfer_mask, 0 if no match found.
516 */
517static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
518{
519 const struct ata_xfer_ent *ent;
520
521 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
522 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
523 return 1 << (ent->shift + xfer_mode - ent->base);
524 return 0;
525}
526
527/**
528 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
529 * @xfer_mode: XFER_* of interest
530 *
531 * Return matching xfer_shift for @xfer_mode.
532 *
533 * LOCKING:
534 * None.
535 *
536 * RETURNS:
537 * Matching xfer_shift, -1 if no match found.
538 */
539static int ata_xfer_mode2shift(unsigned int xfer_mode)
540{
541 const struct ata_xfer_ent *ent;
542
543 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
544 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
545 return ent->shift;
546 return -1;
547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900550 * ata_mode_string - convert xfer_mask to string
551 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 *
553 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900554 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 *
556 * LOCKING:
557 * None.
558 *
559 * RETURNS:
560 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900561 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900563static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Tejun Heo75f554b2006-03-06 04:31:57 +0900565 static const char * const xfer_mode_str[] = {
566 "PIO0",
567 "PIO1",
568 "PIO2",
569 "PIO3",
570 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100571 "PIO5",
572 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900573 "MWDMA0",
574 "MWDMA1",
575 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100576 "MWDMA3",
577 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900578 "UDMA/16",
579 "UDMA/25",
580 "UDMA/33",
581 "UDMA/44",
582 "UDMA/66",
583 "UDMA/100",
584 "UDMA/133",
585 "UDMA7",
586 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900587 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900589 highbit = fls(xfer_mask) - 1;
590 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
591 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
Tejun Heo4c360c82006-04-01 01:38:17 +0900595static const char *sata_spd_string(unsigned int spd)
596{
597 static const char * const spd_str[] = {
598 "1.5 Gbps",
599 "3.0 Gbps",
600 };
601
602 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
603 return "<unknown>";
604 return spd_str[spd - 1];
605}
606
Tejun Heo3373efd2006-05-15 20:57:53 +0900607void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900608{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900609 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900610 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900611 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo4ae72a12007-02-02 16:22:30 +0900612 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
613 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900614 dev->class++;
615 }
616}
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 * ata_devchk - PATA device presence detection
620 * @ap: ATA channel to examine
621 * @device: Device to examine (starting at zero)
622 *
Tejun Heo0d5ff562007-02-01 15:06:36 +0900623 * This technique was originally described in
624 * Hale Landis's ATADRVR (www.ata-atapi.com), and
625 * later found its way into the ATA/ATAPI spec.
626 *
627 * Write a pattern to the ATA shadow registers,
628 * and if a device is present, it will respond by
629 * correctly storing and echoing back the
630 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 *
632 * LOCKING:
633 * caller.
634 */
635
Tejun Heo0d5ff562007-02-01 15:06:36 +0900636static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900638 struct ata_ioports *ioaddr = &ap->ioaddr;
639 u8 nsect, lbal;
640
641 ap->ops->dev_select(ap, device);
642
643 iowrite8(0x55, ioaddr->nsect_addr);
644 iowrite8(0xaa, ioaddr->lbal_addr);
645
646 iowrite8(0xaa, ioaddr->nsect_addr);
647 iowrite8(0x55, ioaddr->lbal_addr);
648
649 iowrite8(0x55, ioaddr->nsect_addr);
650 iowrite8(0xaa, ioaddr->lbal_addr);
651
652 nsect = ioread8(ioaddr->nsect_addr);
653 lbal = ioread8(ioaddr->lbal_addr);
654
655 if ((nsect == 0x55) && (lbal == 0xaa))
656 return 1; /* we found a device */
657
658 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661/**
662 * ata_dev_classify - determine device type based on ATA-spec signature
663 * @tf: ATA taskfile register set for device to be identified
664 *
665 * Determine from taskfile register contents whether a device is
666 * ATA or ATAPI, as per "Signature and persistence" section
667 * of ATA/PI spec (volume 1, sect 5.14).
668 *
669 * LOCKING:
670 * None.
671 *
672 * RETURNS:
Tejun Heo633273a32007-09-23 13:19:54 +0900673 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
674 * %ATA_DEV_UNKNOWN the event of failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 */
Jeff Garzik057ace52005-10-22 14:27:05 -0400676unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 /* Apple's open source Darwin code hints that some devices only
679 * put a proper signature into the LBA mid/high registers,
680 * So, we only check those. It's sufficient for uniqueness.
Tejun Heo633273a32007-09-23 13:19:54 +0900681 *
682 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
683 * signatures for ATA and ATAPI devices attached on SerialATA,
684 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
685 * spec has never mentioned about using different signatures
686 * for ATA/ATAPI devices. Then, Serial ATA II: Port
687 * Multiplier specification began to use 0x69/0x96 to identify
688 * port multpliers and 0x3c/0xc3 to identify SEMB device.
689 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
690 * 0x69/0x96 shortly and described them as reserved for
691 * SerialATA.
692 *
693 * We follow the current spec and consider that 0x69/0x96
694 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 */
Tejun Heo633273a32007-09-23 13:19:54 +0900696 if ((tf->lbam == 0) && (tf->lbah == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 DPRINTK("found ATA device by sig\n");
698 return ATA_DEV_ATA;
699 }
700
Tejun Heo633273a32007-09-23 13:19:54 +0900701 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 DPRINTK("found ATAPI device by sig\n");
703 return ATA_DEV_ATAPI;
704 }
705
Tejun Heo633273a32007-09-23 13:19:54 +0900706 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
707 DPRINTK("found PMP device by sig\n");
708 return ATA_DEV_PMP;
709 }
710
711 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
712 printk("ata: SEMB device ignored\n");
713 return ATA_DEV_SEMB_UNSUP; /* not yet */
714 }
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 DPRINTK("unknown device\n");
717 return ATA_DEV_UNKNOWN;
718}
719
720/**
721 * ata_dev_try_classify - Parse returned ATA device signature
Tejun Heo3f198592007-09-02 23:23:57 +0900722 * @dev: ATA device to classify (starting at zero)
723 * @present: device seems present
Tejun Heob4dc7622006-01-24 17:05:22 +0900724 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 *
726 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
727 * an ATA/ATAPI-defined set of values is placed in the ATA
728 * shadow registers, indicating the results of device detection
729 * and diagnostics.
730 *
731 * Select the ATA device, and read the values from the ATA shadow
732 * registers. Then parse according to the Error register value,
733 * and the spec-defined values examined by ata_dev_classify().
734 *
735 * LOCKING:
736 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900737 *
738 * RETURNS:
739 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 */
Tejun Heo3f198592007-09-02 23:23:57 +0900741unsigned int ata_dev_try_classify(struct ata_device *dev, int present,
742 u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Tejun Heo3f198592007-09-02 23:23:57 +0900744 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 struct ata_taskfile tf;
746 unsigned int class;
747 u8 err;
748
Tejun Heo3f198592007-09-02 23:23:57 +0900749 ap->ops->dev_select(ap, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 memset(&tf, 0, sizeof(tf));
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400754 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900755 if (r_err)
756 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Alan Cox93590852006-09-12 16:55:12 +0100758 /* see if device passed diags: if master then continue and warn later */
Tejun Heo3f198592007-09-02 23:23:57 +0900759 if (err == 0 && dev->devno == 0)
Alan Cox93590852006-09-12 16:55:12 +0100760 /* diagnostic fail : do nothing _YET_ */
Tejun Heo3f198592007-09-02 23:23:57 +0900761 dev->horkage |= ATA_HORKAGE_DIAGNOSTIC;
Alan Cox93590852006-09-12 16:55:12 +0100762 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /* do nothing */ ;
Tejun Heo3f198592007-09-02 23:23:57 +0900764 else if ((dev->devno == 0) && (err == 0x81))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /* do nothing */ ;
766 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900767 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Tejun Heob4dc7622006-01-24 17:05:22 +0900769 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900771
Tejun Heod7fbee02007-09-02 23:24:48 +0900772 if (class == ATA_DEV_UNKNOWN) {
773 /* If the device failed diagnostic, it's likely to
774 * have reported incorrect device signature too.
775 * Assume ATA device if the device seems present but
776 * device signature is invalid with diagnostic
777 * failure.
778 */
779 if (present && (dev->horkage & ATA_HORKAGE_DIAGNOSTIC))
780 class = ATA_DEV_ATA;
781 else
782 class = ATA_DEV_NONE;
783 } else if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
784 class = ATA_DEV_NONE;
785
Tejun Heob4dc7622006-01-24 17:05:22 +0900786 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900790 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * @id: IDENTIFY DEVICE results we will examine
792 * @s: string into which data is output
793 * @ofs: offset into identify device page
794 * @len: length of string to return. must be an even number.
795 *
796 * The strings in the IDENTIFY DEVICE page are broken up into
797 * 16-bit chunks. Run through the string, and output each
798 * 8-bit chunk linearly, regardless of platform.
799 *
800 * LOCKING:
801 * caller.
802 */
803
Tejun Heo6a62a042006-02-13 10:02:46 +0900804void ata_id_string(const u16 *id, unsigned char *s,
805 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 unsigned int c;
808
809 while (len > 0) {
810 c = id[ofs] >> 8;
811 *s = c;
812 s++;
813
814 c = id[ofs] & 0xff;
815 *s = c;
816 s++;
817
818 ofs++;
819 len -= 2;
820 }
821}
822
Tejun Heo0e949ff2006-02-12 22:47:04 +0900823/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900824 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900825 * @id: IDENTIFY DEVICE results we will examine
826 * @s: string into which data is output
827 * @ofs: offset into identify device page
828 * @len: length of string to return. must be an odd number.
829 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900830 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900831 * trims trailing spaces and terminates the resulting string with
832 * null. @len must be actual maximum length (even number) + 1.
833 *
834 * LOCKING:
835 * caller.
836 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900837void ata_id_c_string(const u16 *id, unsigned char *s,
838 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900839{
840 unsigned char *p;
841
842 WARN_ON(!(len & 1));
843
Tejun Heo6a62a042006-02-13 10:02:46 +0900844 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900845
846 p = s + strnlen(s, len - 1);
847 while (p > s && p[-1] == ' ')
848 p--;
849 *p = '\0';
850}
Edward Falk0baab862005-06-02 18:17:13 -0400851
Tejun Heodb6f8752007-09-03 12:31:58 +0900852static u64 ata_id_n_sectors(const u16 *id)
853{
854 if (ata_id_has_lba(id)) {
855 if (ata_id_has_lba48(id))
856 return ata_id_u64(id, 100);
857 else
858 return ata_id_u32(id, 60);
859 } else {
860 if (ata_id_current_chs_valid(id))
861 return ata_id_u32(id, 57);
862 else
863 return id[1] * id[3] * id[6];
864 }
865}
866
Alan Cox1e999732007-04-11 00:23:13 +0100867static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
868{
869 u64 sectors = 0;
870
871 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
872 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
873 sectors |= (tf->hob_lbal & 0xff) << 24;
874 sectors |= (tf->lbah & 0xff) << 16;
875 sectors |= (tf->lbam & 0xff) << 8;
876 sectors |= (tf->lbal & 0xff);
877
878 return ++sectors;
879}
880
881static u64 ata_tf_to_lba(struct ata_taskfile *tf)
882{
883 u64 sectors = 0;
884
885 sectors |= (tf->device & 0x0f) << 24;
886 sectors |= (tf->lbah & 0xff) << 16;
887 sectors |= (tf->lbam & 0xff) << 8;
888 sectors |= (tf->lbal & 0xff);
889
890 return ++sectors;
891}
892
893/**
Tejun Heoc728a912007-09-03 12:32:30 +0900894 * ata_read_native_max_address - Read native max address
895 * @dev: target device
896 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +0100897 *
Tejun Heoc728a912007-09-03 12:32:30 +0900898 * Perform an LBA48 or LBA28 native size query upon the device in
899 * question.
900 *
901 * RETURNS:
902 * 0 on success, -EACCES if command is aborted by the drive.
903 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +0100904 */
Tejun Heoc728a912007-09-03 12:32:30 +0900905static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +0100906{
Tejun Heoc728a912007-09-03 12:32:30 +0900907 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +0100908 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +0900909 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +0100910
911 ata_tf_init(dev, &tf);
912
Tejun Heoc728a912007-09-03 12:32:30 +0900913 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +0100914 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +0900915
916 if (lba48) {
917 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
918 tf.flags |= ATA_TFLAG_LBA48;
919 } else
920 tf.command = ATA_CMD_READ_NATIVE_MAX;
921
Alan Cox1e999732007-04-11 00:23:13 +0100922 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +0900923 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +0100924
Tejun Heoc728a912007-09-03 12:32:30 +0900925 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
926 if (err_mask) {
927 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
928 "max address (err_mask=0x%x)\n", err_mask);
929 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
930 return -EACCES;
931 return -EIO;
932 }
Alan Cox1e999732007-04-11 00:23:13 +0100933
Tejun Heoc728a912007-09-03 12:32:30 +0900934 if (lba48)
935 *max_sectors = ata_tf_to_lba48(&tf);
936 else
937 *max_sectors = ata_tf_to_lba(&tf);
Alan Cox93328e12007-09-29 04:06:48 -0400938 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
939 (*max_sectors)--;
Tejun Heoc728a912007-09-03 12:32:30 +0900940 return 0;
Alan Cox1e999732007-04-11 00:23:13 +0100941}
942
943/**
Tejun Heoc728a912007-09-03 12:32:30 +0900944 * ata_set_max_sectors - Set max sectors
945 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700946 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100947 *
Tejun Heoc728a912007-09-03 12:32:30 +0900948 * Set max sectors of @dev to @new_sectors.
949 *
950 * RETURNS:
951 * 0 on success, -EACCES if command is aborted or denied (due to
952 * previous non-volatile SET_MAX) by the drive. -EIO on other
953 * errors.
Alan Cox1e999732007-04-11 00:23:13 +0100954 */
Tejun Heo05027ad2007-09-03 12:32:57 +0900955static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +0100956{
Tejun Heoc728a912007-09-03 12:32:30 +0900957 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +0100958 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +0900959 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +0100960
961 new_sectors--;
962
963 ata_tf_init(dev, &tf);
964
Alan Cox1e999732007-04-11 00:23:13 +0100965 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +0900966
967 if (lba48) {
968 tf.command = ATA_CMD_SET_MAX_EXT;
969 tf.flags |= ATA_TFLAG_LBA48;
970
971 tf.hob_lbal = (new_sectors >> 24) & 0xff;
972 tf.hob_lbam = (new_sectors >> 32) & 0xff;
973 tf.hob_lbah = (new_sectors >> 40) & 0xff;
Tejun Heo1e582ba2007-09-21 20:07:14 +0900974 } else {
Tejun Heoc728a912007-09-03 12:32:30 +0900975 tf.command = ATA_CMD_SET_MAX;
976
Tejun Heo1e582ba2007-09-21 20:07:14 +0900977 tf.device |= (new_sectors >> 24) & 0xf;
978 }
979
Alan Cox1e999732007-04-11 00:23:13 +0100980 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +0900981 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +0100982
983 tf.lbal = (new_sectors >> 0) & 0xff;
984 tf.lbam = (new_sectors >> 8) & 0xff;
985 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +0100986
Tejun Heoc728a912007-09-03 12:32:30 +0900987 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
988 if (err_mask) {
989 ata_dev_printk(dev, KERN_WARNING, "failed to set "
990 "max address (err_mask=0x%x)\n", err_mask);
991 if (err_mask == AC_ERR_DEV &&
992 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
993 return -EACCES;
994 return -EIO;
995 }
Alan Cox1e999732007-04-11 00:23:13 +0100996
Tejun Heoc728a912007-09-03 12:32:30 +0900997 return 0;
Alan Cox1e999732007-04-11 00:23:13 +0100998}
999
1000/**
1001 * ata_hpa_resize - Resize a device with an HPA set
1002 * @dev: Device to resize
1003 *
1004 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1005 * it if required to the full size of the media. The caller must check
1006 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +09001007 *
1008 * RETURNS:
1009 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +01001010 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001011static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +01001012{
Tejun Heo05027ad2007-09-03 12:32:57 +09001013 struct ata_eh_context *ehc = &dev->link->eh_context;
1014 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1015 u64 sectors = ata_id_n_sectors(dev->id);
1016 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +09001017 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -04001018
Tejun Heo05027ad2007-09-03 12:32:57 +09001019 /* do we need to do it? */
1020 if (dev->class != ATA_DEV_ATA ||
1021 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1022 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +09001023 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001024
Tejun Heo05027ad2007-09-03 12:32:57 +09001025 /* read native max address */
1026 rc = ata_read_native_max_address(dev, &native_sectors);
1027 if (rc) {
1028 /* If HPA isn't going to be unlocked, skip HPA
1029 * resizing from the next try.
1030 */
1031 if (!ata_ignore_hpa) {
1032 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
1033 "broken, will skip HPA handling\n");
1034 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001035
Tejun Heo05027ad2007-09-03 12:32:57 +09001036 /* we can continue if device aborted the command */
1037 if (rc == -EACCES)
1038 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001039 }
Tejun Heo37301a52007-06-25 20:45:54 +09001040
Tejun Heo05027ad2007-09-03 12:32:57 +09001041 return rc;
1042 }
1043
1044 /* nothing to do? */
1045 if (native_sectors <= sectors || !ata_ignore_hpa) {
1046 if (!print_info || native_sectors == sectors)
1047 return 0;
1048
1049 if (native_sectors > sectors)
1050 ata_dev_printk(dev, KERN_INFO,
1051 "HPA detected: current %llu, native %llu\n",
1052 (unsigned long long)sectors,
1053 (unsigned long long)native_sectors);
1054 else if (native_sectors < sectors)
1055 ata_dev_printk(dev, KERN_WARNING,
1056 "native sectors (%llu) is smaller than "
1057 "sectors (%llu)\n",
1058 (unsigned long long)native_sectors,
1059 (unsigned long long)sectors);
1060 return 0;
1061 }
1062
1063 /* let's unlock HPA */
1064 rc = ata_set_max_sectors(dev, native_sectors);
1065 if (rc == -EACCES) {
1066 /* if device aborted the command, skip HPA resizing */
1067 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1068 "(%llu -> %llu), skipping HPA handling\n",
1069 (unsigned long long)sectors,
1070 (unsigned long long)native_sectors);
1071 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1072 return 0;
1073 } else if (rc)
1074 return rc;
1075
1076 /* re-read IDENTIFY data */
1077 rc = ata_dev_reread_id(dev, 0);
1078 if (rc) {
1079 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1080 "data after HPA resizing\n");
1081 return rc;
1082 }
1083
1084 if (print_info) {
1085 u64 new_sectors = ata_id_n_sectors(dev->id);
1086 ata_dev_printk(dev, KERN_INFO,
1087 "HPA unlocked: %llu -> %llu, native %llu\n",
1088 (unsigned long long)sectors,
1089 (unsigned long long)new_sectors,
1090 (unsigned long long)native_sectors);
1091 }
1092
1093 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001094}
1095
Edward Falk0baab862005-06-02 18:17:13 -04001096/**
Alan10305f02007-02-20 18:01:59 +00001097 * ata_id_to_dma_mode - Identify DMA mode from id block
1098 * @dev: device to identify
Randy Dunlapcc261262007-03-16 19:55:47 -07001099 * @unknown: mode to assume if we cannot tell
Alan10305f02007-02-20 18:01:59 +00001100 *
1101 * Set up the timing values for the device based upon the identify
1102 * reported values for the DMA mode. This function is used by drivers
1103 * which rely upon firmware configured modes, but wish to report the
1104 * mode correctly when possible.
1105 *
1106 * In addition we emit similarly formatted messages to the default
1107 * ata_dev_set_mode handler, in order to provide consistency of
1108 * presentation.
1109 */
1110
1111void ata_id_to_dma_mode(struct ata_device *dev, u8 unknown)
1112{
1113 unsigned int mask;
1114 u8 mode;
1115
1116 /* Pack the DMA modes */
1117 mask = ((dev->id[63] >> 8) << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA;
1118 if (dev->id[53] & 0x04)
1119 mask |= ((dev->id[88] >> 8) << ATA_SHIFT_UDMA) & ATA_MASK_UDMA;
1120
1121 /* Select the mode in use */
1122 mode = ata_xfer_mask2mode(mask);
1123
1124 if (mode != 0) {
1125 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
1126 ata_mode_string(mask));
1127 } else {
1128 /* SWDMA perhaps ? */
1129 mode = unknown;
1130 ata_dev_printk(dev, KERN_INFO, "configured for DMA\n");
1131 }
1132
1133 /* Configure the device reporting */
1134 dev->xfer_mode = mode;
1135 dev->xfer_shift = ata_xfer_mode2shift(mode);
1136}
1137
1138/**
Edward Falk0baab862005-06-02 18:17:13 -04001139 * ata_noop_dev_select - Select device 0/1 on ATA bus
1140 * @ap: ATA channel to manipulate
1141 * @device: ATA device (numbered from zero) to select
1142 *
1143 * This function performs no actual function.
1144 *
1145 * May be used as the dev_select() entry in ata_port_operations.
1146 *
1147 * LOCKING:
1148 * caller.
1149 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
1151{
1152}
1153
Edward Falk0baab862005-06-02 18:17:13 -04001154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155/**
1156 * ata_std_dev_select - Select device 0/1 on ATA bus
1157 * @ap: ATA channel to manipulate
1158 * @device: ATA device (numbered from zero) to select
1159 *
1160 * Use the method defined in the ATA specification to
1161 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -04001162 * ATA channel. Works with both PIO and MMIO.
1163 *
1164 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 *
1166 * LOCKING:
1167 * caller.
1168 */
1169
1170void ata_std_dev_select (struct ata_port *ap, unsigned int device)
1171{
1172 u8 tmp;
1173
1174 if (device == 0)
1175 tmp = ATA_DEVICE_OBS;
1176 else
1177 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1178
Tejun Heo0d5ff562007-02-01 15:06:36 +09001179 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 ata_pause(ap); /* needed; also flushes, for mmio */
1181}
1182
1183/**
1184 * ata_dev_select - Select device 0/1 on ATA bus
1185 * @ap: ATA channel to manipulate
1186 * @device: ATA device (numbered from zero) to select
1187 * @wait: non-zero to wait for Status register BSY bit to clear
1188 * @can_sleep: non-zero if context allows sleeping
1189 *
1190 * Use the method defined in the ATA specification to
1191 * make either device 0, or device 1, active on the
1192 * ATA channel.
1193 *
1194 * This is a high-level version of ata_std_dev_select(),
1195 * which additionally provides the services of inserting
1196 * the proper pauses and status polling, where needed.
1197 *
1198 * LOCKING:
1199 * caller.
1200 */
1201
1202void ata_dev_select(struct ata_port *ap, unsigned int device,
1203 unsigned int wait, unsigned int can_sleep)
1204{
Tejun Heo88574552006-06-25 20:00:35 +09001205 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001206 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
1207 "device %u, wait %u\n", device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 if (wait)
1210 ata_wait_idle(ap);
1211
1212 ap->ops->dev_select(ap, device);
1213
1214 if (wait) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001215 if (can_sleep && ap->link.device[device].class == ATA_DEV_ATAPI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 msleep(150);
1217 ata_wait_idle(ap);
1218 }
1219}
1220
1221/**
1222 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001223 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001225 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1226 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 *
1228 * LOCKING:
1229 * caller.
1230 */
1231
Tejun Heo0bd33002006-02-12 22:47:05 +09001232static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
1234 DPRINTK("49==0x%04x "
1235 "53==0x%04x "
1236 "63==0x%04x "
1237 "64==0x%04x "
1238 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001239 id[49],
1240 id[53],
1241 id[63],
1242 id[64],
1243 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 DPRINTK("80==0x%04x "
1245 "81==0x%04x "
1246 "82==0x%04x "
1247 "83==0x%04x "
1248 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001249 id[80],
1250 id[81],
1251 id[82],
1252 id[83],
1253 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 DPRINTK("88==0x%04x "
1255 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001256 id[88],
1257 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Tejun Heocb95d562006-03-06 04:31:56 +09001260/**
1261 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1262 * @id: IDENTIFY data to compute xfer mask from
1263 *
1264 * Compute the xfermask for this device. This is not as trivial
1265 * as it seems if we must consider early devices correctly.
1266 *
1267 * FIXME: pre IDE drive timing (do we care ?).
1268 *
1269 * LOCKING:
1270 * None.
1271 *
1272 * RETURNS:
1273 * Computed xfermask
1274 */
1275static unsigned int ata_id_xfermask(const u16 *id)
1276{
1277 unsigned int pio_mask, mwdma_mask, udma_mask;
1278
1279 /* Usual case. Word 53 indicates word 64 is valid */
1280 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1281 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1282 pio_mask <<= 3;
1283 pio_mask |= 0x7;
1284 } else {
1285 /* If word 64 isn't valid then Word 51 high byte holds
1286 * the PIO timing number for the maximum. Turn it into
1287 * a mask.
1288 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001289 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001290 if (mode < 5) /* Valid PIO range */
1291 pio_mask = (2 << mode) - 1;
1292 else
1293 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001294
1295 /* But wait.. there's more. Design your standards by
1296 * committee and you too can get a free iordy field to
1297 * process. However its the speeds not the modes that
1298 * are supported... Note drivers using the timing API
1299 * will get this right anyway
1300 */
1301 }
1302
1303 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001304
Alan Coxb352e572006-08-10 18:52:12 +01001305 if (ata_id_is_cfa(id)) {
1306 /*
1307 * Process compact flash extended modes
1308 */
1309 int pio = id[163] & 0x7;
1310 int dma = (id[163] >> 3) & 7;
1311
1312 if (pio)
1313 pio_mask |= (1 << 5);
1314 if (pio > 1)
1315 pio_mask |= (1 << 6);
1316 if (dma)
1317 mwdma_mask |= (1 << 3);
1318 if (dma > 1)
1319 mwdma_mask |= (1 << 4);
1320 }
1321
Tejun Heofb21f0d2006-03-12 12:34:35 +09001322 udma_mask = 0;
1323 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1324 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001325
1326 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1327}
1328
Tejun Heo86e45b62006-03-05 15:29:09 +09001329/**
1330 * ata_port_queue_task - Queue port_task
1331 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001332 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001333 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001334 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001335 *
1336 * Schedule @fn(@data) for execution after @delay jiffies using
1337 * port_task. There is one port_task per port and it's the
1338 * user(low level driver)'s responsibility to make sure that only
1339 * one task is active at any given time.
1340 *
1341 * libata core layer takes care of synchronization between
1342 * port_task and EH. ata_port_queue_task() may be ignored for EH
1343 * synchronization.
1344 *
1345 * LOCKING:
1346 * Inherited from caller.
1347 */
David Howells65f27f32006-11-22 14:55:48 +00001348void ata_port_queue_task(struct ata_port *ap, work_func_t fn, void *data,
Tejun Heo86e45b62006-03-05 15:29:09 +09001349 unsigned long delay)
1350{
David Howells65f27f32006-11-22 14:55:48 +00001351 PREPARE_DELAYED_WORK(&ap->port_task, fn);
1352 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001353
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001354 /* may fail if ata_port_flush_task() in progress */
1355 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001356}
1357
1358/**
1359 * ata_port_flush_task - Flush port_task
1360 * @ap: The ata_port to flush port_task for
1361 *
1362 * After this function completes, port_task is guranteed not to
1363 * be running or scheduled.
1364 *
1365 * LOCKING:
1366 * Kernel thread context (may sleep)
1367 */
1368void ata_port_flush_task(struct ata_port *ap)
1369{
Tejun Heo86e45b62006-03-05 15:29:09 +09001370 DPRINTK("ENTER\n");
1371
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001372 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001373
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001374 if (ata_msg_ctl(ap))
1375 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001376}
1377
Adrian Bunk7102d232007-01-04 00:09:36 +01001378static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001379{
Tejun Heo77853bf2006-01-23 13:09:36 +09001380 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001381
Tejun Heoa2a7a662005-12-13 14:48:31 +09001382 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001383}
1384
1385/**
Tejun Heo24326972006-11-14 22:47:09 +09001386 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001387 * @dev: Device to which the command is sent
1388 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001389 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001390 * @dma_dir: Data tranfer direction of the command
Tejun Heo24326972006-11-14 22:47:09 +09001391 * @sg: sg list for the data buffer of the command
1392 * @n_elem: Number of sg entries
Tejun Heoa2a7a662005-12-13 14:48:31 +09001393 *
1394 * Executes libata internal command with timeout. @tf contains
1395 * command on entry and result on return. Timeout and error
1396 * conditions are reported via return value. No recovery action
1397 * is taken after a command times out. It's caller's duty to
1398 * clean up after timeout.
1399 *
1400 * LOCKING:
1401 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001402 *
1403 * RETURNS:
1404 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001405 */
Tejun Heo24326972006-11-14 22:47:09 +09001406unsigned ata_exec_internal_sg(struct ata_device *dev,
1407 struct ata_taskfile *tf, const u8 *cdb,
1408 int dma_dir, struct scatterlist *sg,
1409 unsigned int n_elem)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001410{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001411 struct ata_link *link = dev->link;
1412 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001413 u8 command = tf->command;
1414 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001415 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001416 u32 preempted_sactive, preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001417 int preempted_nr_active_links;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001418 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001419 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001420 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001421 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001422
Jeff Garzikba6a1302006-06-22 23:46:10 -04001423 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001424
Tejun Heoe3180492006-05-15 20:58:09 +09001425 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001426 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001427 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001428 return AC_ERR_SYSTEM;
1429 }
1430
Tejun Heo2ab7db12006-05-15 20:58:02 +09001431 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001432
Tejun Heo2ab7db12006-05-15 20:58:02 +09001433 /* XXX: Tag 0 is used for drivers with legacy EH as some
1434 * drivers choke if any other tag is given. This breaks
1435 * ata_tag_internal() test for those drivers. Don't use new
1436 * EH stuff without converting to it.
1437 */
1438 if (ap->ops->error_handler)
1439 tag = ATA_TAG_INTERNAL;
1440 else
1441 tag = 0;
1442
Tejun Heo6cec4a32006-05-15 21:03:41 +09001443 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001444 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001445 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001446
1447 qc->tag = tag;
1448 qc->scsicmd = NULL;
1449 qc->ap = ap;
1450 qc->dev = dev;
1451 ata_qc_reinit(qc);
1452
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001453 preempted_tag = link->active_tag;
1454 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001455 preempted_qc_active = ap->qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001456 preempted_nr_active_links = ap->nr_active_links;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001457 link->active_tag = ATA_TAG_POISON;
1458 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001459 ap->qc_active = 0;
Tejun Heoda917d62007-09-23 13:14:12 +09001460 ap->nr_active_links = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001461
1462 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001463 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001464 if (cdb)
1465 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001466 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001467 qc->dma_dir = dma_dir;
1468 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001469 unsigned int i, buflen = 0;
1470
1471 for (i = 0; i < n_elem; i++)
1472 buflen += sg[i].length;
1473
1474 ata_sg_init(qc, sg, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001475 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001476 }
1477
Tejun Heo77853bf2006-01-23 13:09:36 +09001478 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001479 qc->complete_fn = ata_qc_complete_internal;
1480
Tejun Heo8e0e6942006-03-31 20:41:11 +09001481 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001482
Jeff Garzikba6a1302006-06-22 23:46:10 -04001483 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001484
Andrew Mortona8601e52006-06-25 01:36:52 -07001485 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001486
Tejun Heod95a7172006-05-15 20:58:14 +09001487 ata_port_flush_task(ap);
1488
1489 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001490 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001491
1492 /* We're racing with irq here. If we lose, the
1493 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001494 * twice. If we win, the port is frozen and will be
1495 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001496 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001497 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001498 qc->err_mask |= AC_ERR_TIMEOUT;
1499
1500 if (ap->ops->error_handler)
1501 ata_port_freeze(ap);
1502 else
1503 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001504
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001505 if (ata_msg_warn(ap))
1506 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001507 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001508 }
1509
Jeff Garzikba6a1302006-06-22 23:46:10 -04001510 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001511 }
1512
Tejun Heod95a7172006-05-15 20:58:14 +09001513 /* do post_internal_cmd */
1514 if (ap->ops->post_internal_cmd)
1515 ap->ops->post_internal_cmd(qc);
1516
Tejun Heoa51d6442007-03-20 15:24:11 +09001517 /* perform minimal error analysis */
1518 if (qc->flags & ATA_QCFLAG_FAILED) {
1519 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1520 qc->err_mask |= AC_ERR_DEV;
1521
1522 if (!qc->err_mask)
1523 qc->err_mask |= AC_ERR_OTHER;
1524
1525 if (qc->err_mask & ~AC_ERR_OTHER)
1526 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001527 }
1528
Tejun Heo15869302006-05-15 20:57:33 +09001529 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001530 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001531
Tejun Heoe61e0672006-05-15 20:57:40 +09001532 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001533 err_mask = qc->err_mask;
1534
1535 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001536 link->active_tag = preempted_tag;
1537 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001538 ap->qc_active = preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001539 ap->nr_active_links = preempted_nr_active_links;
Tejun Heo77853bf2006-01-23 13:09:36 +09001540
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001541 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1542 * Until those drivers are fixed, we detect the condition
1543 * here, fail the command with AC_ERR_SYSTEM and reenable the
1544 * port.
1545 *
1546 * Note that this doesn't change any behavior as internal
1547 * command failure results in disabling the device in the
1548 * higher layer for LLDDs without new reset/EH callbacks.
1549 *
1550 * Kill the following code as soon as those drivers are fixed.
1551 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001552 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001553 err_mask |= AC_ERR_SYSTEM;
1554 ata_port_probe(ap);
1555 }
1556
Jeff Garzikba6a1302006-06-22 23:46:10 -04001557 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001558
Tejun Heo77853bf2006-01-23 13:09:36 +09001559 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001560}
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562/**
Tejun Heo33480a02006-12-12 02:15:31 +09001563 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001564 * @dev: Device to which the command is sent
1565 * @tf: Taskfile registers for the command and the result
1566 * @cdb: CDB for packet command
1567 * @dma_dir: Data tranfer direction of the command
1568 * @buf: Data buffer of the command
1569 * @buflen: Length of data buffer
1570 *
1571 * Wrapper around ata_exec_internal_sg() which takes simple
1572 * buffer instead of sg list.
1573 *
1574 * LOCKING:
1575 * None. Should be called with kernel context, might sleep.
1576 *
1577 * RETURNS:
1578 * Zero on success, AC_ERR_* mask on failure
1579 */
1580unsigned ata_exec_internal(struct ata_device *dev,
1581 struct ata_taskfile *tf, const u8 *cdb,
1582 int dma_dir, void *buf, unsigned int buflen)
1583{
Tejun Heo33480a02006-12-12 02:15:31 +09001584 struct scatterlist *psg = NULL, sg;
1585 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001586
Tejun Heo33480a02006-12-12 02:15:31 +09001587 if (dma_dir != DMA_NONE) {
1588 WARN_ON(!buf);
1589 sg_init_one(&sg, buf, buflen);
1590 psg = &sg;
1591 n_elem++;
1592 }
Tejun Heo24326972006-11-14 22:47:09 +09001593
Tejun Heo33480a02006-12-12 02:15:31 +09001594 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem);
Tejun Heo24326972006-11-14 22:47:09 +09001595}
1596
1597/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001598 * ata_do_simple_cmd - execute simple internal command
1599 * @dev: Device to which the command is sent
1600 * @cmd: Opcode to execute
1601 *
1602 * Execute a 'simple' command, that only consists of the opcode
1603 * 'cmd' itself, without filling any other registers
1604 *
1605 * LOCKING:
1606 * Kernel thread context (may sleep).
1607 *
1608 * RETURNS:
1609 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001610 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001611unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001612{
1613 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001614
1615 ata_tf_init(dev, &tf);
1616
1617 tf.command = cmd;
1618 tf.flags |= ATA_TFLAG_DEVICE;
1619 tf.protocol = ATA_PROT_NODATA;
1620
Tejun Heo977e6b92006-06-24 20:30:19 +09001621 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001622}
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001625 * ata_pio_need_iordy - check if iordy needed
1626 * @adev: ATA device
1627 *
1628 * Check if the current speed of the device requires IORDY. Used
1629 * by various controllers for chip configuration.
1630 */
Jeff Garzika617c092007-05-21 20:14:23 -04001631
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001632unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1633{
Alan Cox432729f2007-03-08 23:22:59 +00001634 /* Controller doesn't support IORDY. Probably a pointless check
1635 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001636 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001637 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001638 /* PIO3 and higher it is mandatory */
1639 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001640 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001641 /* We turn it on when possible */
1642 if (ata_id_has_iordy(adev->id))
1643 return 1;
1644 return 0;
1645}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001646
Alan Cox432729f2007-03-08 23:22:59 +00001647/**
1648 * ata_pio_mask_no_iordy - Return the non IORDY mask
1649 * @adev: ATA device
1650 *
1651 * Compute the highest mode possible if we are not using iordy. Return
1652 * -1 if no iordy mode is available.
1653 */
Jeff Garzika617c092007-05-21 20:14:23 -04001654
Alan Cox432729f2007-03-08 23:22:59 +00001655static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1656{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001657 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001658 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001659 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001660 /* Is the speed faster than the drive allows non IORDY ? */
1661 if (pio) {
1662 /* This is cycle times not frequency - watch the logic! */
1663 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001664 return 3 << ATA_SHIFT_PIO;
1665 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001666 }
1667 }
Alan Cox432729f2007-03-08 23:22:59 +00001668 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001669}
1670
1671/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001672 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001673 * @dev: target device
1674 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001675 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001676 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001677 *
1678 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1679 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001680 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1681 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001682 *
Alan Cox50a99012007-08-08 14:27:00 +01001683 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
1684 * now we abort if we hit that case.
1685 *
Tejun Heo49016ac2006-02-21 02:12:11 +09001686 * LOCKING:
1687 * Kernel thread context (may sleep)
1688 *
1689 * RETURNS:
1690 * 0 on success, -errno otherwise.
1691 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001692int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001693 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001694{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001695 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001696 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001697 struct ata_taskfile tf;
1698 unsigned int err_mask = 0;
1699 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001700 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001701 int rc;
1702
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001703 if (ata_msg_ctl(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001704 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001705
Tejun Heo49016ac2006-02-21 02:12:11 +09001706 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
Tejun Heo49016ac2006-02-21 02:12:11 +09001707 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001708 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001709
1710 switch (class) {
1711 case ATA_DEV_ATA:
1712 tf.command = ATA_CMD_ID_ATA;
1713 break;
1714 case ATA_DEV_ATAPI:
1715 tf.command = ATA_CMD_ID_ATAPI;
1716 break;
1717 default:
1718 rc = -ENODEV;
1719 reason = "unsupported class";
1720 goto err_out;
1721 }
1722
1723 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001724
1725 /* Some devices choke if TF registers contain garbage. Make
1726 * sure those are properly initialized.
1727 */
1728 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1729
1730 /* Device presence detection is unreliable on some
1731 * controllers. Always poll IDENTIFY if available.
1732 */
1733 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001734
Tejun Heo3373efd2006-05-15 20:57:53 +09001735 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001736 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001737 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001738 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001739 DPRINTK("ata%u.%d: NODEV after polling detection\n",
Tejun Heo44877b42007-02-21 01:06:51 +09001740 ap->print_id, dev->devno);
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001741 return -ENOENT;
1742 }
1743
Tejun Heo54936f82007-05-11 14:35:29 +02001744 /* Device or controller might have reported the wrong
1745 * device class. Give a shot at the other IDENTIFY if
1746 * the current one is aborted by the device.
1747 */
1748 if (may_fallback &&
1749 (err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1750 may_fallback = 0;
1751
1752 if (class == ATA_DEV_ATA)
1753 class = ATA_DEV_ATAPI;
1754 else
1755 class = ATA_DEV_ATA;
1756 goto retry;
1757 }
1758
Tejun Heo49016ac2006-02-21 02:12:11 +09001759 rc = -EIO;
1760 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001761 goto err_out;
1762 }
1763
Tejun Heo54936f82007-05-11 14:35:29 +02001764 /* Falling back doesn't make sense if ID data was read
1765 * successfully at least once.
1766 */
1767 may_fallback = 0;
1768
Tejun Heo49016ac2006-02-21 02:12:11 +09001769 swap_buf_le16(id, ATA_ID_WORDS);
1770
Tejun Heo49016ac2006-02-21 02:12:11 +09001771 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001772 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01001773 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07001774
1775 if (class == ATA_DEV_ATA) {
1776 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1777 goto err_out;
1778 } else {
1779 if (ata_id_is_ata(id))
1780 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001781 }
1782
Mark Lord169439c2007-04-17 18:26:07 -04001783 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
1784 tried_spinup = 1;
1785 /*
1786 * Drive powered-up in standby mode, and requires a specific
1787 * SET_FEATURES spin-up subcommand before it will accept
1788 * anything other than the original IDENTIFY command.
1789 */
1790 ata_tf_init(dev, &tf);
1791 tf.command = ATA_CMD_SET_FEATURES;
1792 tf.feature = SETFEATURES_SPINUP;
1793 tf.protocol = ATA_PROT_NODATA;
1794 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1795 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07001796 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04001797 rc = -EIO;
1798 reason = "SPINUP failed";
1799 goto err_out;
1800 }
1801 /*
1802 * If the drive initially returned incomplete IDENTIFY info,
1803 * we now must reissue the IDENTIFY command.
1804 */
1805 if (id[2] == 0x37c8)
1806 goto retry;
1807 }
1808
Tejun Heobff04642006-11-10 18:08:10 +09001809 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001810 /*
1811 * The exact sequence expected by certain pre-ATA4 drives is:
1812 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01001813 * IDENTIFY (optional in early ATA)
1814 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09001815 * anything else..
1816 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01001817 *
1818 * Note that ATA4 says lba is mandatory so the second check
1819 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09001820 */
1821 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001822 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001823 if (err_mask) {
1824 rc = -EIO;
1825 reason = "INIT_DEV_PARAMS failed";
1826 goto err_out;
1827 }
1828
1829 /* current CHS translation info (id[53-58]) might be
1830 * changed. reread the identify device info.
1831 */
Tejun Heobff04642006-11-10 18:08:10 +09001832 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09001833 goto retry;
1834 }
1835 }
1836
1837 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001838
Tejun Heo49016ac2006-02-21 02:12:11 +09001839 return 0;
1840
1841 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001842 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001843 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001844 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001845 return rc;
1846}
1847
Tejun Heo3373efd2006-05-15 20:57:53 +09001848static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001849{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001850 struct ata_port *ap = dev->link->ap;
1851 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001852}
1853
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001854static void ata_dev_config_ncq(struct ata_device *dev,
1855 char *desc, size_t desc_sz)
1856{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001857 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001858 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1859
1860 if (!ata_id_has_ncq(dev->id)) {
1861 desc[0] = '\0';
1862 return;
1863 }
Tejun Heo75683fe2007-07-05 13:31:27 +09001864 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07001865 snprintf(desc, desc_sz, "NCQ (not used)");
1866 return;
1867 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001868 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04001869 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001870 dev->flags |= ATA_DFLAG_NCQ;
1871 }
1872
1873 if (hdepth >= ddepth)
1874 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1875 else
1876 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1877}
1878
Tejun Heo49016ac2006-02-21 02:12:11 +09001879/**
Tejun Heoffeae412006-03-01 16:09:35 +09001880 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001881 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 *
Tejun Heoffeae412006-03-01 16:09:35 +09001883 * Configure @dev according to @dev->id. Generic and low-level
1884 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 *
1886 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001887 * Kernel thread context (may sleep)
1888 *
1889 * RETURNS:
1890 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09001892int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001894 struct ata_port *ap = dev->link->ap;
1895 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09001896 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001897 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001898 unsigned int xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01001899 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001900 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
1901 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05001902 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001904 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09001905 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
1906 __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001907 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
1909
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001910 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001911 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Tejun Heo75683fe2007-07-05 13:31:27 +09001913 /* set horkage */
1914 dev->horkage |= ata_dev_blacklisted(dev);
1915
Tejun Heo67465442007-05-15 03:28:16 +09001916 /* let ACPI work its magic */
1917 rc = ata_acpi_on_devcfg(dev);
1918 if (rc)
1919 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08001920
Tejun Heo05027ad2007-09-03 12:32:57 +09001921 /* massage HPA, do it early as it might change IDENTIFY data */
1922 rc = ata_hpa_resize(dev);
1923 if (rc)
1924 return rc;
1925
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001926 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001927 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001928 ata_dev_printk(dev, KERN_DEBUG,
1929 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1930 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001931 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001932 id[49], id[82], id[83], id[84],
1933 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001934
Tejun Heo208a9932006-03-05 17:55:58 +09001935 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001936 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001937 dev->max_sectors = 0;
1938 dev->cdb_len = 0;
1939 dev->n_sectors = 0;
1940 dev->cylinders = 0;
1941 dev->heads = 0;
1942 dev->sectors = 0;
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 /*
1945 * common ATA, ATAPI feature tests
1946 */
1947
Tejun Heoff8854b2006-03-06 04:31:56 +09001948 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001949 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001951 if (ata_msg_probe(ap))
1952 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Albert Leeef143d52007-06-05 13:01:33 +08001954 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
1955 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
1956 sizeof(fwrevbuf));
1957
1958 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
1959 sizeof(modelbuf));
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 /* ATA-specific feature tests */
1962 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01001963 if (ata_id_is_cfa(id)) {
1964 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09001965 ata_dev_printk(dev, KERN_WARNING,
1966 "supports DRM functions and may "
1967 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01001968 snprintf(revbuf, 7, "CFA");
1969 }
1970 else
1971 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
1972
Tejun Heo1148c3a2006-03-13 19:48:04 +09001973 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001974
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001975 if (dev->id[59] & 0x100)
1976 dev->multi_count = dev->id[59] & 0xff;
1977
Tejun Heo1148c3a2006-03-13 19:48:04 +09001978 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001979 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001980 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001981
Tejun Heo4c2d7212006-03-05 17:55:58 +09001982 lba_desc = "LBA";
1983 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001984 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001985 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001986 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001987
1988 if (dev->n_sectors >= (1UL << 28) &&
1989 ata_id_has_flush_ext(id))
1990 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001991 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001992
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001993 /* config NCQ */
1994 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1995
Albert Lee8bf62ece2005-05-12 15:29:42 -04001996 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07001997 if (ata_msg_drv(ap) && print_info) {
1998 ata_dev_printk(dev, KERN_INFO,
1999 "%s: %s, %s, max %s\n",
2000 revbuf, modelbuf, fwrevbuf,
2001 ata_mode_string(xfer_mask));
2002 ata_dev_printk(dev, KERN_INFO,
2003 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002004 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002005 dev->multi_count, lba_desc, ncq_desc);
2006 }
Tejun Heoffeae412006-03-01 16:09:35 +09002007 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002008 /* CHS */
2009
2010 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002011 dev->cylinders = id[1];
2012 dev->heads = id[3];
2013 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002014
Tejun Heo1148c3a2006-03-13 19:48:04 +09002015 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002016 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002017 dev->cylinders = id[54];
2018 dev->heads = id[55];
2019 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002020 }
2021
2022 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002023 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002024 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002025 "%s: %s, %s, max %s\n",
2026 revbuf, modelbuf, fwrevbuf,
2027 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002028 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002029 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2030 (unsigned long long)dev->n_sectors,
2031 dev->multi_count, dev->cylinders,
2032 dev->heads, dev->sectors);
2033 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002034 }
2035
Tejun Heo6e7846e2006-02-12 23:32:58 +09002036 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
2038
2039 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002040 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002041 const char *cdb_intr_string = "";
2042 const char *atapi_an_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002043 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002044
Tejun Heo1148c3a2006-03-13 19:48:04 +09002045 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002047 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002048 ata_dev_printk(dev, KERN_WARNING,
2049 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002050 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 goto err_out_nosup;
2052 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002053 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Tejun Heo7d77b242007-09-23 13:14:13 +09002055 /* Enable ATAPI AN if both the host and device have
2056 * the support. If PMP is attached, SNTF is required
2057 * to enable ATAPI AN to discern between PHY status
2058 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002059 */
Tejun Heo7d77b242007-09-23 13:14:13 +09002060 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
2061 (!ap->nr_pmp_links ||
2062 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002063 unsigned int err_mask;
2064
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002065 /* issue SET feature command to turn this on */
Tejun Heo854c73a2007-09-23 13:14:11 +09002066 err_mask = ata_dev_set_AN(dev, SETFEATURES_SATA_ENABLE);
2067 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002068 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002069 "failed to enable ATAPI AN "
2070 "(err_mask=0x%x)\n", err_mask);
2071 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002072 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002073 atapi_an_string = ", ATAPI AN";
2074 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002075 }
2076
Albert Lee08a556d2006-03-31 13:29:04 +08002077 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002078 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002079 cdb_intr_string = ", CDB intr";
2080 }
Albert Lee312f7da2005-09-27 17:38:03 +08002081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002083 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002084 ata_dev_printk(dev, KERN_INFO,
Tejun Heo854c73a2007-09-23 13:14:11 +09002085 "ATAPI: %s, %s, max %s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002086 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002087 ata_mode_string(xfer_mask),
Tejun Heo854c73a2007-09-23 13:14:11 +09002088 cdb_intr_string, atapi_an_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090
Tejun Heo914ed352006-11-01 18:39:55 +09002091 /* determine max_sectors */
2092 dev->max_sectors = ATA_MAX_SECTORS;
2093 if (dev->flags & ATA_DFLAG_LBA48)
2094 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2095
Alan Cox93590852006-09-12 16:55:12 +01002096 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2097 /* Let the user know. We don't want to disallow opens for
2098 rescue purposes, or in case the vendor is just a blithering
2099 idiot */
2100 if (print_info) {
2101 ata_dev_printk(dev, KERN_WARNING,
2102"Drive reports diagnostics failure. This may indicate a drive\n");
2103 ata_dev_printk(dev, KERN_WARNING,
2104"fault or invalid emulation. Contact drive vendor for information.\n");
2105 }
2106 }
2107
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002108 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002109 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002110 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002111 ata_dev_printk(dev, KERN_INFO,
2112 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002113 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002114 dev->max_sectors = ATA_MAX_SECTORS;
2115 }
2116
Tejun Heo75683fe2007-07-05 13:31:27 +09002117 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002118 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2119 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002120
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002121 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002122 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002123
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002124 if (ata_msg_probe(ap))
2125 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
2126 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002130 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002131 ata_dev_printk(dev, KERN_DEBUG,
2132 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09002133 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
2136/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002137 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002138 * @ap: port
2139 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002140 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002141 * detection.
2142 */
2143
2144int ata_cable_40wire(struct ata_port *ap)
2145{
2146 return ATA_CBL_PATA40;
2147}
2148
2149/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002150 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002151 * @ap: port
2152 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002153 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002154 * detection.
2155 */
2156
2157int ata_cable_80wire(struct ata_port *ap)
2158{
2159 return ATA_CBL_PATA80;
2160}
2161
2162/**
2163 * ata_cable_unknown - return unknown PATA cable.
2164 * @ap: port
2165 *
2166 * Helper method for drivers which have no PATA cable detection.
2167 */
2168
2169int ata_cable_unknown(struct ata_port *ap)
2170{
2171 return ATA_CBL_PATA_UNK;
2172}
2173
2174/**
2175 * ata_cable_sata - return SATA cable type
2176 * @ap: port
2177 *
2178 * Helper method for drivers which have SATA cables
2179 */
2180
2181int ata_cable_sata(struct ata_port *ap)
2182{
2183 return ATA_CBL_SATA;
2184}
2185
2186/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 * ata_bus_probe - Reset and probe ATA bus
2188 * @ap: Bus to probe
2189 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002190 * Master ATA bus probing function. Initiates a hardware-dependent
2191 * bus reset, then attempts to identify any devices found on
2192 * the bus.
2193 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002195 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 *
2197 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002198 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 */
2200
Brian King80289162006-08-07 14:27:31 -05002201int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002203 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002204 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002205 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002206 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Tejun Heo28ca5c52006-03-01 16:09:36 +09002208 ata_port_probe(ap);
2209
Tejun Heof58229f2007-08-06 18:36:23 +09002210 ata_link_for_each_dev(dev, &ap->link)
2211 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002212
2213 retry:
Tejun Heo20444702006-03-13 01:57:01 +09002214 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002215 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002216
Tejun Heof58229f2007-08-06 18:36:23 +09002217 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002218 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2219 dev->class != ATA_DEV_UNKNOWN)
2220 classes[dev->devno] = dev->class;
2221 else
2222 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002223
Tejun Heo52783c52006-05-31 18:28:22 +09002224 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Tejun Heo52783c52006-05-31 18:28:22 +09002227 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002228
Alan Coxb6079ca2006-05-22 16:52:06 +01002229 /* after the reset the device state is PIO 0 and the controller
2230 state is undefined. Record the mode */
2231
Tejun Heof58229f2007-08-06 18:36:23 +09002232 ata_link_for_each_dev(dev, &ap->link)
2233 dev->pio_mode = XFER_PIO_0;
Alan Coxb6079ca2006-05-22 16:52:06 +01002234
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002235 /* read IDENTIFY page and configure devices. We have to do the identify
2236 specific sequence bass-ackwards so that PDIAG- is released by
2237 the slave device */
2238
Tejun Heof58229f2007-08-06 18:36:23 +09002239 ata_link_for_each_dev(dev, &ap->link) {
2240 if (tries[dev->devno])
2241 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002242
Tejun Heoe1211e32006-04-01 01:38:18 +09002243 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002244 continue;
2245
Tejun Heobff04642006-11-10 18:08:10 +09002246 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2247 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002248 if (rc)
2249 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002250 }
2251
Alan Coxbe0d18d2007-03-06 02:37:56 -08002252 /* Now ask for the cable type as PDIAG- should have been released */
2253 if (ap->ops->cable_detect)
2254 ap->cbl = ap->ops->cable_detect(ap);
2255
Alan Cox614fe292007-08-22 23:22:45 +01002256 /* We may have SATA bridge glue hiding here irrespective of the
2257 reported cable types and sensed types */
2258 ata_link_for_each_dev(dev, &ap->link) {
2259 if (!ata_dev_enabled(dev))
2260 continue;
2261 /* SATA drives indicate we have a bridge. We don't know which
2262 end of the link the bridge is which is a problem */
2263 if (ata_id_is_sata(dev->id))
2264 ap->cbl = ATA_CBL_SATA;
2265 }
2266
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002267 /* After the identify sequence we can now set up the devices. We do
2268 this in the normal order so that the user doesn't get confused */
2269
Tejun Heof58229f2007-08-06 18:36:23 +09002270 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002271 if (!ata_dev_enabled(dev))
2272 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002273
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002274 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002275 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002276 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002277 if (rc)
2278 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
2280
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002281 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002282 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002283 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002284 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Tejun Heof58229f2007-08-06 18:36:23 +09002286 ata_link_for_each_dev(dev, &ap->link)
2287 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002288 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002289
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002290 /* no device present, disable port */
2291 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002292 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002293
2294 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002295 tries[dev->devno]--;
2296
Tejun Heo14d2bac2006-04-02 17:54:46 +09002297 switch (rc) {
2298 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002299 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002300 tries[dev->devno] = 0;
2301 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002302
2303 case -ENODEV:
2304 /* give it just one more chance */
2305 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002306 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002307 if (tries[dev->devno] == 1) {
2308 /* This is the last chance, better to slow
2309 * down than lose it.
2310 */
Tejun Heo936fd732007-08-06 18:36:23 +09002311 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002312 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2313 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002314 }
2315
Tejun Heo4ae72a12007-02-02 16:22:30 +09002316 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002317 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002318
Tejun Heo14d2bac2006-04-02 17:54:46 +09002319 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320}
2321
2322/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002323 * ata_port_probe - Mark port as enabled
2324 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002326 * Modify @ap data structure such that the system
2327 * thinks that the entire port is enabled.
2328 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002329 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002330 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 */
2332
2333void ata_port_probe(struct ata_port *ap)
2334{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002335 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
2338/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002339 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002340 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002341 *
2342 * This function prints link speed and status of a SATA link.
2343 *
2344 * LOCKING:
2345 * None.
2346 */
Tejun Heo936fd732007-08-06 18:36:23 +09002347void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002348{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002349 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002350
Tejun Heo936fd732007-08-06 18:36:23 +09002351 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002352 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002353 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002354
Tejun Heo936fd732007-08-06 18:36:23 +09002355 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002356 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002357 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002358 "SATA link up %s (SStatus %X SControl %X)\n",
2359 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002360 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002361 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002362 "SATA link down (SStatus %X SControl %X)\n",
2363 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002364 }
2365}
2366
2367/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002368 * __sata_phy_reset - Wake/reset a low-level SATA PHY
2369 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002371 * This function issues commands to standard SATA Sxxx
2372 * PHY registers, to wake up the phy (and device), and
2373 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 *
2375 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002376 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 *
2378 */
2379void __sata_phy_reset(struct ata_port *ap)
2380{
Tejun Heo936fd732007-08-06 18:36:23 +09002381 struct ata_link *link = &ap->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo936fd732007-08-06 18:36:23 +09002383 u32 sstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05002386 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002387 sata_scr_write_flush(link, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09002388 /* Couldn't find anything in SATA I/II specs, but
2389 * AHCI-1.1 10.4.2 says at least 1 ms. */
2390 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 }
Tejun Heo81952c52006-05-15 20:57:47 +09002392 /* phy wake/clear reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002393 sata_scr_write_flush(link, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 /* wait for phy to become ready, if necessary */
2396 do {
2397 msleep(200);
Tejun Heo936fd732007-08-06 18:36:23 +09002398 sata_scr_read(link, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 if ((sstatus & 0xf) != 1)
2400 break;
2401 } while (time_before(jiffies, timeout));
2402
Tejun Heo3be680b2005-12-19 22:35:02 +09002403 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09002404 sata_print_link_status(link);
Jeff Garzik656563e2005-11-20 03:36:45 -05002405
Tejun Heo3be680b2005-12-19 22:35:02 +09002406 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09002407 if (!ata_link_offline(link))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09002409 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Tejun Heo198e0fe2006-04-02 18:51:52 +09002412 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 return;
2414
2415 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2416 ata_port_disable(ap);
2417 return;
2418 }
2419
2420 ap->cbl = ATA_CBL_SATA;
2421}
2422
2423/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002424 * sata_phy_reset - Reset SATA bus.
2425 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002427 * This function resets the SATA bus, and then probes
2428 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 *
2430 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002431 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 *
2433 */
2434void sata_phy_reset(struct ata_port *ap)
2435{
2436 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09002437 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 return;
2439 ata_bus_reset(ap);
2440}
2441
2442/**
Alan Coxebdfca62006-03-23 15:38:34 +00002443 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002444 * @adev: device
2445 *
2446 * Obtain the other device on the same cable, or if none is
2447 * present NULL is returned
2448 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002449
Tejun Heo3373efd2006-05-15 20:57:53 +09002450struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002451{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002452 struct ata_link *link = adev->link;
2453 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002454 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002455 return NULL;
2456 return pair;
2457}
2458
2459/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002460 * ata_port_disable - Disable port.
2461 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002463 * Modify @ap data structure such that the system
2464 * thinks that the entire port is disabled, and should
2465 * never attempt to probe or communicate with devices
2466 * on this port.
2467 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002468 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002469 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 */
2471
2472void ata_port_disable(struct ata_port *ap)
2473{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002474 ap->link.device[0].class = ATA_DEV_NONE;
2475 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002476 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477}
2478
Tejun Heo1c3fae42006-04-02 20:53:28 +09002479/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002480 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002481 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002482 *
Tejun Heo936fd732007-08-06 18:36:23 +09002483 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002484 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002485 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002486 *
2487 * LOCKING:
2488 * Inherited from caller.
2489 *
2490 * RETURNS:
2491 * 0 on success, negative errno on failure
2492 */
Tejun Heo936fd732007-08-06 18:36:23 +09002493int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002494{
Tejun Heo81952c52006-05-15 20:57:47 +09002495 u32 sstatus, spd, mask;
2496 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002497
Tejun Heo936fd732007-08-06 18:36:23 +09002498 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002499 return -EOPNOTSUPP;
2500
2501 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002502 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002503 */
Tejun Heo936fd732007-08-06 18:36:23 +09002504 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002505 if (rc == 0)
2506 spd = (sstatus >> 4) & 0xf;
2507 else
Tejun Heo936fd732007-08-06 18:36:23 +09002508 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002509
Tejun Heo936fd732007-08-06 18:36:23 +09002510 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002511 if (mask <= 1)
2512 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002513
2514 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002515 highbit = fls(mask) - 1;
2516 mask &= ~(1 << highbit);
2517
Tejun Heo008a7892007-07-16 14:29:40 +09002518 /* Mask off all speeds higher than or equal to the current
2519 * one. Force 1.5Gbps if current SPD is not available.
2520 */
2521 if (spd > 1)
2522 mask &= (1 << (spd - 1)) - 1;
2523 else
2524 mask &= 1;
2525
2526 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002527 if (!mask)
2528 return -EINVAL;
2529
Tejun Heo936fd732007-08-06 18:36:23 +09002530 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002531
Tejun Heo936fd732007-08-06 18:36:23 +09002532 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002533 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002534
2535 return 0;
2536}
2537
Tejun Heo936fd732007-08-06 18:36:23 +09002538static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002539{
2540 u32 spd, limit;
2541
Tejun Heo936fd732007-08-06 18:36:23 +09002542 if (link->sata_spd_limit == UINT_MAX)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002543 limit = 0;
2544 else
Tejun Heo936fd732007-08-06 18:36:23 +09002545 limit = fls(link->sata_spd_limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002546
2547 spd = (*scontrol >> 4) & 0xf;
2548 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
2549
2550 return spd != limit;
2551}
2552
2553/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002554 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002555 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002556 *
2557 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002558 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002559 * whether hardreset is necessary to apply SATA spd
2560 * configuration.
2561 *
2562 * LOCKING:
2563 * Inherited from caller.
2564 *
2565 * RETURNS:
2566 * 1 if SATA spd configuration is needed, 0 otherwise.
2567 */
Tejun Heo936fd732007-08-06 18:36:23 +09002568int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002569{
2570 u32 scontrol;
2571
Tejun Heo936fd732007-08-06 18:36:23 +09002572 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002573 return 0;
2574
Tejun Heo936fd732007-08-06 18:36:23 +09002575 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002576}
2577
2578/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002579 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002580 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002581 *
Tejun Heo936fd732007-08-06 18:36:23 +09002582 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002583 *
2584 * LOCKING:
2585 * Inherited from caller.
2586 *
2587 * RETURNS:
2588 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002589 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002590 */
Tejun Heo936fd732007-08-06 18:36:23 +09002591int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002592{
2593 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002594 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002595
Tejun Heo936fd732007-08-06 18:36:23 +09002596 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002597 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002598
Tejun Heo936fd732007-08-06 18:36:23 +09002599 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002600 return 0;
2601
Tejun Heo936fd732007-08-06 18:36:23 +09002602 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002603 return rc;
2604
Tejun Heo1c3fae42006-04-02 20:53:28 +09002605 return 1;
2606}
2607
Alan Cox452503f2005-10-21 19:01:32 -04002608/*
2609 * This mode timing computation functionality is ported over from
2610 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2611 */
2612/*
Alan Coxb352e572006-08-10 18:52:12 +01002613 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002614 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002615 * for UDMA6, which is currently supported only by Maxtor drives.
2616 *
2617 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002618 */
2619
2620static const struct ata_timing ata_timing[] = {
2621
2622 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
2623 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2624 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2625 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2626
Alan Coxb352e572006-08-10 18:52:12 +01002627 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
2628 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002629 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2630 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2631 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2632
2633/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002634
Alan Cox452503f2005-10-21 19:01:32 -04002635 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
2636 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2637 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002638
Alan Cox452503f2005-10-21 19:01:32 -04002639 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
2640 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2641 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2642
Alan Coxb352e572006-08-10 18:52:12 +01002643 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
2644 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002645 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2646 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2647
2648 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2649 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2650 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2651
2652/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2653
2654 { 0xFF }
2655};
2656
2657#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
2658#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
2659
2660static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2661{
2662 q->setup = EZ(t->setup * 1000, T);
2663 q->act8b = EZ(t->act8b * 1000, T);
2664 q->rec8b = EZ(t->rec8b * 1000, T);
2665 q->cyc8b = EZ(t->cyc8b * 1000, T);
2666 q->active = EZ(t->active * 1000, T);
2667 q->recover = EZ(t->recover * 1000, T);
2668 q->cycle = EZ(t->cycle * 1000, T);
2669 q->udma = EZ(t->udma * 1000, UT);
2670}
2671
2672void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2673 struct ata_timing *m, unsigned int what)
2674{
2675 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2676 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2677 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2678 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2679 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2680 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2681 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2682 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2683}
2684
2685static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
2686{
2687 const struct ata_timing *t;
2688
2689 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04002690 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04002691 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002692 return t;
Alan Cox452503f2005-10-21 19:01:32 -04002693}
2694
2695int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2696 struct ata_timing *t, int T, int UT)
2697{
2698 const struct ata_timing *s;
2699 struct ata_timing p;
2700
2701 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002702 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002703 */
Alan Cox452503f2005-10-21 19:01:32 -04002704
2705 if (!(s = ata_timing_find_mode(speed)))
2706 return -EINVAL;
2707
Albert Lee75b1f2f2005-11-16 17:06:18 +08002708 memcpy(t, s, sizeof(*s));
2709
Alan Cox452503f2005-10-21 19:01:32 -04002710 /*
2711 * If the drive is an EIDE drive, it can tell us it needs extended
2712 * PIO/MW_DMA cycle timing.
2713 */
2714
2715 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2716 memset(&p, 0, sizeof(p));
2717 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2718 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2719 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2720 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2721 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2722 }
2723 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2724 }
2725
2726 /*
2727 * Convert the timing to bus clock counts.
2728 */
2729
Albert Lee75b1f2f2005-11-16 17:06:18 +08002730 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002731
2732 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002733 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2734 * S.M.A.R.T * and some other commands. We have to ensure that the
2735 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002736 */
2737
Alanfd3367af2006-12-07 12:41:18 +00002738 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002739 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2740 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2741 }
2742
2743 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002744 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002745 */
2746
2747 if (t->act8b + t->rec8b < t->cyc8b) {
2748 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2749 t->rec8b = t->cyc8b - t->act8b;
2750 }
2751
2752 if (t->active + t->recover < t->cycle) {
2753 t->active += (t->cycle - (t->active + t->recover)) / 2;
2754 t->recover = t->cycle - t->active;
2755 }
Jeff Garzika617c092007-05-21 20:14:23 -04002756
Alan Cox4f701d12007-04-23 11:55:36 +01002757 /* In a few cases quantisation may produce enough errors to
2758 leave t->cycle too low for the sum of active and recovery
2759 if so we must correct this */
2760 if (t->active + t->recover > t->cycle)
2761 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002762
2763 return 0;
2764}
2765
Tejun Heocf176e12006-04-02 17:54:46 +09002766/**
2767 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002768 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09002769 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09002770 *
2771 * Adjust xfer masks of @dev downward. Note that this function
2772 * does not apply the change. Invoking ata_set_mode() afterwards
2773 * will apply the limit.
2774 *
2775 * LOCKING:
2776 * Inherited from caller.
2777 *
2778 * RETURNS:
2779 * 0 on success, negative errno on failure
2780 */
Tejun Heo458337d2007-02-02 16:22:30 +09002781int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09002782{
Tejun Heo458337d2007-02-02 16:22:30 +09002783 char buf[32];
2784 unsigned int orig_mask, xfer_mask;
2785 unsigned int pio_mask, mwdma_mask, udma_mask;
2786 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09002787
Tejun Heo458337d2007-02-02 16:22:30 +09002788 quiet = !!(sel & ATA_DNXFER_QUIET);
2789 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09002790
Tejun Heo458337d2007-02-02 16:22:30 +09002791 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
2792 dev->mwdma_mask,
2793 dev->udma_mask);
2794 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09002795
Tejun Heo458337d2007-02-02 16:22:30 +09002796 switch (sel) {
2797 case ATA_DNXFER_PIO:
2798 highbit = fls(pio_mask) - 1;
2799 pio_mask &= ~(1 << highbit);
2800 break;
2801
2802 case ATA_DNXFER_DMA:
2803 if (udma_mask) {
2804 highbit = fls(udma_mask) - 1;
2805 udma_mask &= ~(1 << highbit);
2806 if (!udma_mask)
2807 return -ENOENT;
2808 } else if (mwdma_mask) {
2809 highbit = fls(mwdma_mask) - 1;
2810 mwdma_mask &= ~(1 << highbit);
2811 if (!mwdma_mask)
2812 return -ENOENT;
2813 }
2814 break;
2815
2816 case ATA_DNXFER_40C:
2817 udma_mask &= ATA_UDMA_MASK_40C;
2818 break;
2819
2820 case ATA_DNXFER_FORCE_PIO0:
2821 pio_mask &= 1;
2822 case ATA_DNXFER_FORCE_PIO:
2823 mwdma_mask = 0;
2824 udma_mask = 0;
2825 break;
2826
Tejun Heo458337d2007-02-02 16:22:30 +09002827 default:
2828 BUG();
2829 }
2830
2831 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
2832
2833 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
2834 return -ENOENT;
2835
2836 if (!quiet) {
2837 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
2838 snprintf(buf, sizeof(buf), "%s:%s",
2839 ata_mode_string(xfer_mask),
2840 ata_mode_string(xfer_mask & ATA_MASK_PIO));
2841 else
2842 snprintf(buf, sizeof(buf), "%s",
2843 ata_mode_string(xfer_mask));
2844
2845 ata_dev_printk(dev, KERN_WARNING,
2846 "limiting speed to %s\n", buf);
2847 }
Tejun Heocf176e12006-04-02 17:54:46 +09002848
2849 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2850 &dev->udma_mask);
2851
Tejun Heocf176e12006-04-02 17:54:46 +09002852 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09002853}
2854
Tejun Heo3373efd2006-05-15 20:57:53 +09002855static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002857 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo83206a22006-03-24 15:25:31 +09002858 unsigned int err_mask;
2859 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
Tejun Heoe8384602006-04-02 18:51:53 +09002861 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (dev->xfer_shift == ATA_SHIFT_PIO)
2863 dev->flags |= ATA_DFLAG_PIO;
2864
Tejun Heo3373efd2006-05-15 20:57:53 +09002865 err_mask = ata_dev_set_xfermode(dev);
Alan11750a42007-02-05 16:28:30 +00002866 /* Old CFA may refuse this command, which is just fine */
2867 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
2868 err_mask &= ~AC_ERR_DEV;
Alan Cox0bc2a792007-07-31 14:01:48 +01002869 /* Some very old devices and some bad newer ones fail any kind of
2870 SET_XFERMODE request but support PIO0-2 timings and no IORDY */
2871 if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) &&
2872 dev->pio_mode <= XFER_PIO_2)
2873 err_mask &= ~AC_ERR_DEV;
Tejun Heo83206a22006-03-24 15:25:31 +09002874 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002875 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2876 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002877 return -EIO;
2878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Tejun Heobaa1e782006-11-01 18:39:27 +09002880 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09002881 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09002882 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002883 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002884 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002885
Tejun Heo23e71c32006-03-06 04:31:57 +09002886 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2887 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Tejun Heof15a1da2006-05-15 20:57:56 +09002889 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2890 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002891 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892}
2893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894/**
Alan04351822007-03-06 02:37:52 -08002895 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09002896 * @link: link on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002897 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 *
Alan04351822007-03-06 02:37:52 -08002899 * Standard implementation of the function used to tune and set
2900 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2901 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002902 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002903 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002905 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002906 *
2907 * RETURNS:
2908 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 */
Alan04351822007-03-06 02:37:52 -08002910
Tejun Heo02607312007-08-06 18:36:23 +09002911int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912{
Tejun Heo02607312007-08-06 18:36:23 +09002913 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09002914 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09002915 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09002916
Tejun Heoa6d5a512006-03-06 04:31:57 +09002917 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09002918 ata_link_for_each_dev(dev, link) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002919 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002920
Tejun Heoe1211e32006-04-01 01:38:18 +09002921 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002922 continue;
2923
Tejun Heo3373efd2006-05-15 20:57:53 +09002924 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002925
Tejun Heoacf356b2006-03-24 14:07:50 +09002926 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2927 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2928 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2929 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002930
Tejun Heo4f659772006-04-01 01:38:18 +09002931 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002932 if (dev->dma_mode)
2933 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002934 }
Tejun Heo4f659772006-04-01 01:38:18 +09002935 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002936 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002937
2938 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002939 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002940 if (!ata_dev_enabled(dev))
2941 continue;
2942
2943 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002944 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002945 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002946 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002947 }
2948
2949 dev->xfer_mode = dev->pio_mode;
2950 dev->xfer_shift = ATA_SHIFT_PIO;
2951 if (ap->ops->set_piomode)
2952 ap->ops->set_piomode(ap, dev);
2953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
Tejun Heoa6d5a512006-03-06 04:31:57 +09002955 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002956 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002957 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2958 continue;
2959
2960 dev->xfer_mode = dev->dma_mode;
2961 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2962 if (ap->ops->set_dmamode)
2963 ap->ops->set_dmamode(ap, dev);
2964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
2966 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09002967 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00002968 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02002969 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002970 continue;
2971
Tejun Heo3373efd2006-05-15 20:57:53 +09002972 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002973 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002974 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Tejun Heoe8e06192006-04-01 01:38:18 +09002977 /* Record simplex status. If we selected DMA then the other
2978 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002979 */
Jeff Garzikcca39742006-08-24 03:19:22 -04002980 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00002981 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002982
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002983 out:
2984 if (rc)
2985 *r_failed_dev = dev;
2986 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987}
2988
2989/**
Alan04351822007-03-06 02:37:52 -08002990 * ata_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09002991 * @link: link on which timings will be programmed
Alan04351822007-03-06 02:37:52 -08002992 * @r_failed_dev: out paramter for failed device
2993 *
2994 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2995 * ata_set_mode() fails, pointer to the failing device is
2996 * returned in @r_failed_dev.
2997 *
2998 * LOCKING:
2999 * PCI/etc. bus probe sem.
3000 *
3001 * RETURNS:
3002 * 0 on success, negative errno otherwise
3003 */
Tejun Heo02607312007-08-06 18:36:23 +09003004int ata_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Alan04351822007-03-06 02:37:52 -08003005{
Tejun Heo02607312007-08-06 18:36:23 +09003006 struct ata_port *ap = link->ap;
3007
Alan04351822007-03-06 02:37:52 -08003008 /* has private set_mode? */
3009 if (ap->ops->set_mode)
Tejun Heo02607312007-08-06 18:36:23 +09003010 return ap->ops->set_mode(link, r_failed_dev);
3011 return ata_do_set_mode(link, r_failed_dev);
Alan04351822007-03-06 02:37:52 -08003012}
3013
3014/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05003015 * ata_tf_to_host - issue ATA taskfile to host controller
3016 * @ap: port to which command is being issued
3017 * @tf: ATA taskfile register set
3018 *
3019 * Issues ATA taskfile register set to ATA host controller,
3020 * with proper synchronization with interrupt handler and
3021 * other threads.
3022 *
3023 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003024 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05003025 */
3026
3027static inline void ata_tf_to_host(struct ata_port *ap,
3028 const struct ata_taskfile *tf)
3029{
3030 ap->ops->tf_load(ap, tf);
3031 ap->ops->exec_command(ap, tf);
3032}
3033
3034/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 * ata_busy_sleep - sleep until BSY clears, or timeout
3036 * @ap: port containing status register to be polled
3037 * @tmout_pat: impatience timeout
3038 * @tmout: overall timeout
3039 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003040 * Sleep until ATA Status register bit BSY clears,
3041 * or a timeout occurs.
3042 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09003043 * LOCKING:
3044 * Kernel thread context (may sleep).
3045 *
3046 * RETURNS:
3047 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003049int ata_busy_sleep(struct ata_port *ap,
3050 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051{
3052 unsigned long timer_start, timeout;
3053 u8 status;
3054
3055 status = ata_busy_wait(ap, ATA_BUSY, 300);
3056 timer_start = jiffies;
3057 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09003058 while (status != 0xff && (status & ATA_BUSY) &&
3059 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 msleep(50);
3061 status = ata_busy_wait(ap, ATA_BUSY, 3);
3062 }
3063
Tejun Heod1adc1b2006-10-09 18:32:15 +09003064 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09003065 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04003066 "port is slow to respond, please be patient "
3067 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
3069 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09003070 while (status != 0xff && (status & ATA_BUSY) &&
3071 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 msleep(50);
3073 status = ata_chk_status(ap);
3074 }
3075
Tejun Heod1adc1b2006-10-09 18:32:15 +09003076 if (status == 0xff)
3077 return -ENODEV;
3078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003080 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04003081 "(%lu secs, Status 0x%x)\n",
3082 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09003083 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
3085
3086 return 0;
3087}
3088
Tejun Heod4b2bab2007-02-02 16:50:52 +09003089/**
3090 * ata_wait_ready - sleep until BSY clears, or timeout
3091 * @ap: port containing status register to be polled
3092 * @deadline: deadline jiffies for the operation
3093 *
3094 * Sleep until ATA Status register bit BSY clears, or timeout
3095 * occurs.
3096 *
3097 * LOCKING:
3098 * Kernel thread context (may sleep).
3099 *
3100 * RETURNS:
3101 * 0 on success, -errno otherwise.
3102 */
3103int ata_wait_ready(struct ata_port *ap, unsigned long deadline)
3104{
3105 unsigned long start = jiffies;
3106 int warned = 0;
3107
3108 while (1) {
3109 u8 status = ata_chk_status(ap);
3110 unsigned long now = jiffies;
3111
3112 if (!(status & ATA_BUSY))
3113 return 0;
Tejun Heo936fd732007-08-06 18:36:23 +09003114 if (!ata_link_online(&ap->link) && status == 0xff)
Tejun Heod4b2bab2007-02-02 16:50:52 +09003115 return -ENODEV;
3116 if (time_after(now, deadline))
3117 return -EBUSY;
3118
3119 if (!warned && time_after(now, start + 5 * HZ) &&
3120 (deadline - now > 3 * HZ)) {
3121 ata_port_printk(ap, KERN_WARNING,
3122 "port is slow to respond, please be patient "
3123 "(Status 0x%x)\n", status);
3124 warned = 1;
3125 }
3126
3127 msleep(50);
3128 }
3129}
3130
3131static int ata_bus_post_reset(struct ata_port *ap, unsigned int devmask,
3132 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133{
3134 struct ata_ioports *ioaddr = &ap->ioaddr;
3135 unsigned int dev0 = devmask & (1 << 0);
3136 unsigned int dev1 = devmask & (1 << 1);
Tejun Heo9b893912007-02-02 16:50:52 +09003137 int rc, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
3139 /* if device 0 was found in ata_devchk, wait for its
3140 * BSY bit to clear
3141 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003142 if (dev0) {
3143 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003144 if (rc) {
3145 if (rc != -ENODEV)
3146 return rc;
3147 ret = rc;
3148 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
Tejun Heoe141d992007-06-10 14:26:20 +09003151 /* if device 1 was found in ata_devchk, wait for register
3152 * access briefly, then wait for BSY to clear.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 */
Tejun Heoe141d992007-06-10 14:26:20 +09003154 if (dev1) {
3155 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
3157 ap->ops->dev_select(ap, 1);
Tejun Heoe141d992007-06-10 14:26:20 +09003158
3159 /* Wait for register access. Some ATAPI devices fail
3160 * to set nsect/lbal after reset, so don't waste too
3161 * much time on it. We're gonna wait for !BSY anyway.
3162 */
3163 for (i = 0; i < 2; i++) {
3164 u8 nsect, lbal;
3165
3166 nsect = ioread8(ioaddr->nsect_addr);
3167 lbal = ioread8(ioaddr->lbal_addr);
3168 if ((nsect == 1) && (lbal == 1))
3169 break;
3170 msleep(50); /* give drive a breather */
3171 }
3172
Tejun Heod4b2bab2007-02-02 16:50:52 +09003173 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003174 if (rc) {
3175 if (rc != -ENODEV)
3176 return rc;
3177 ret = rc;
3178 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
3181 /* is all this really necessary? */
3182 ap->ops->dev_select(ap, 0);
3183 if (dev1)
3184 ap->ops->dev_select(ap, 1);
3185 if (dev0)
3186 ap->ops->dev_select(ap, 0);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003187
Tejun Heo9b893912007-02-02 16:50:52 +09003188 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189}
3190
Tejun Heod4b2bab2007-02-02 16:50:52 +09003191static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
3192 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193{
3194 struct ata_ioports *ioaddr = &ap->ioaddr;
3195
Tejun Heo44877b42007-02-21 01:06:51 +09003196 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
3198 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003199 iowrite8(ap->ctl, ioaddr->ctl_addr);
3200 udelay(20); /* FIXME: flush */
3201 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
3202 udelay(20); /* FIXME: flush */
3203 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
3205 /* spec mandates ">= 2ms" before checking status.
3206 * We wait 150ms, because that was the magic delay used for
3207 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
3208 * between when the ATA command register is written, and then
3209 * status is checked. Because waiting for "a while" before
3210 * checking status is fine, post SRST, we perform this magic
3211 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00003212 *
3213 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 */
3215 msleep(150);
3216
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003217 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09003218 * the bus shows 0xFF because the odd clown forgets the D7
3219 * pulldown resistor.
3220 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003221 if (ata_check_status(ap) == 0xFF)
Tejun Heo9b893912007-02-02 16:50:52 +09003222 return -ENODEV;
Alan Cox09c7ad72006-03-22 15:52:40 +00003223
Tejun Heod4b2bab2007-02-02 16:50:52 +09003224 return ata_bus_post_reset(ap, devmask, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225}
3226
3227/**
3228 * ata_bus_reset - reset host port and associated ATA channel
3229 * @ap: port to reset
3230 *
3231 * This is typically the first time we actually start issuing
3232 * commands to the ATA channel. We wait for BSY to clear, then
3233 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
3234 * result. Determine what devices, if any, are on the channel
3235 * by looking at the device 0/1 error register. Look at the signature
3236 * stored in each device's taskfile registers, to determine if
3237 * the device is ATA or ATAPI.
3238 *
3239 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003240 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04003241 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 *
3243 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09003244 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 */
3246
3247void ata_bus_reset(struct ata_port *ap)
3248{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003249 struct ata_device *device = ap->link.device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 struct ata_ioports *ioaddr = &ap->ioaddr;
3251 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3252 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003253 unsigned int dev0, dev1 = 0, devmask = 0;
Tejun Heo9b893912007-02-02 16:50:52 +09003254 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Tejun Heo44877b42007-02-21 01:06:51 +09003256 DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
3258 /* determine if device 0/1 are present */
3259 if (ap->flags & ATA_FLAG_SATA_RESET)
3260 dev0 = 1;
3261 else {
3262 dev0 = ata_devchk(ap, 0);
3263 if (slave_possible)
3264 dev1 = ata_devchk(ap, 1);
3265 }
3266
3267 if (dev0)
3268 devmask |= (1 << 0);
3269 if (dev1)
3270 devmask |= (1 << 1);
3271
3272 /* select device 0 again */
3273 ap->ops->dev_select(ap, 0);
3274
3275 /* issue bus reset */
Tejun Heo9b893912007-02-02 16:50:52 +09003276 if (ap->flags & ATA_FLAG_SRST) {
3277 rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ);
3278 if (rc && rc != -ENODEV)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003279 goto err_out;
Tejun Heo9b893912007-02-02 16:50:52 +09003280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
3282 /*
3283 * determine by signature whether we have ATA or ATAPI devices
3284 */
Tejun Heo3f198592007-09-02 23:23:57 +09003285 device[0].class = ata_dev_try_classify(&device[0], dev0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 if ((slave_possible) && (err != 0x81))
Tejun Heo3f198592007-09-02 23:23:57 +09003287 device[1].class = ata_dev_try_classify(&device[1], dev1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 /* is double-select really necessary? */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003290 if (device[1].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 ap->ops->dev_select(ap, 1);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003292 if (device[0].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 ap->ops->dev_select(ap, 0);
3294
3295 /* if no devices were detected, disable this port */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003296 if ((device[0].class == ATA_DEV_NONE) &&
3297 (device[1].class == ATA_DEV_NONE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 goto err_out;
3299
3300 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
3301 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003302 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 }
3304
3305 DPRINTK("EXIT\n");
3306 return;
3307
3308err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003309 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Jeff Garzikac8869d2007-08-16 03:17:03 -04003310 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
3312 DPRINTK("EXIT\n");
3313}
3314
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003315/**
Tejun Heo936fd732007-08-06 18:36:23 +09003316 * sata_link_debounce - debounce SATA phy status
3317 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003318 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003319 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003320 *
Tejun Heo936fd732007-08-06 18:36:23 +09003321* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003322 * holding the same value where DET is not 1 for @duration polled
3323 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003324 * beginning of the stable state. Because DET gets stuck at 1 on
3325 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003326 * until timeout then returns 0 if DET is stable at 1.
3327 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003328 * @timeout is further limited by @deadline. The sooner of the
3329 * two is used.
3330 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003331 * LOCKING:
3332 * Kernel thread context (may sleep)
3333 *
3334 * RETURNS:
3335 * 0 on success, -errno on failure.
3336 */
Tejun Heo936fd732007-08-06 18:36:23 +09003337int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3338 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003339{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003340 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003341 unsigned long duration = msecs_to_jiffies(params[1]);
3342 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003343 u32 last, cur;
3344 int rc;
3345
Tejun Heod4b2bab2007-02-02 16:50:52 +09003346 t = jiffies + msecs_to_jiffies(params[2]);
3347 if (time_before(t, deadline))
3348 deadline = t;
3349
Tejun Heo936fd732007-08-06 18:36:23 +09003350 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003351 return rc;
3352 cur &= 0xf;
3353
3354 last = cur;
3355 last_jiffies = jiffies;
3356
3357 while (1) {
3358 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003359 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003360 return rc;
3361 cur &= 0xf;
3362
3363 /* DET stable? */
3364 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003365 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003366 continue;
3367 if (time_after(jiffies, last_jiffies + duration))
3368 return 0;
3369 continue;
3370 }
3371
3372 /* unstable, start over */
3373 last = cur;
3374 last_jiffies = jiffies;
3375
Tejun Heof1545152007-07-16 14:29:40 +09003376 /* Check deadline. If debouncing failed, return
3377 * -EPIPE to tell upper layer to lower link speed.
3378 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003379 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003380 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003381 }
3382}
3383
3384/**
Tejun Heo936fd732007-08-06 18:36:23 +09003385 * sata_link_resume - resume SATA link
3386 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003387 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003388 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003389 *
Tejun Heo936fd732007-08-06 18:36:23 +09003390 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003391 *
3392 * LOCKING:
3393 * Kernel thread context (may sleep)
3394 *
3395 * RETURNS:
3396 * 0 on success, -errno on failure.
3397 */
Tejun Heo936fd732007-08-06 18:36:23 +09003398int sata_link_resume(struct ata_link *link, const unsigned long *params,
3399 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003400{
3401 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003402 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003403
Tejun Heo936fd732007-08-06 18:36:23 +09003404 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003405 return rc;
3406
Tejun Heo852ee162006-04-01 01:38:18 +09003407 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003408
Tejun Heo936fd732007-08-06 18:36:23 +09003409 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003410 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003411
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003412 /* Some PHYs react badly if SStatus is pounded immediately
3413 * after resuming. Delay 200ms before debouncing.
3414 */
3415 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003416
Tejun Heo936fd732007-08-06 18:36:23 +09003417 return sata_link_debounce(link, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003418}
3419
Tejun Heof5914a42006-05-31 18:27:48 +09003420/**
3421 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003422 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003423 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003424 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003425 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003426 * prereset makes libata abort whole reset sequence and give up
3427 * that port, so prereset should be best-effort. It does its
3428 * best to prepare for reset sequence but if things go wrong, it
3429 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003430 *
3431 * LOCKING:
3432 * Kernel thread context (may sleep)
3433 *
3434 * RETURNS:
3435 * 0 on success, -errno otherwise.
3436 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003437int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003438{
Tejun Heocc0680a2007-08-06 18:36:23 +09003439 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003440 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003441 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003442 int rc;
3443
Tejun Heo31daabd2007-02-02 16:50:52 +09003444 /* handle link resume */
Tejun Heo28324302006-07-03 16:07:26 +09003445 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
Tejun Heo0c887582007-08-06 18:36:23 +09003446 (link->flags & ATA_LFLAG_HRST_TO_RESUME))
Tejun Heo28324302006-07-03 16:07:26 +09003447 ehc->i.action |= ATA_EH_HARDRESET;
3448
Tejun Heo633273a32007-09-23 13:19:54 +09003449 /* Some PMPs don't work with only SRST, force hardreset if PMP
3450 * is supported.
3451 */
3452 if (ap->flags & ATA_FLAG_PMP)
3453 ehc->i.action |= ATA_EH_HARDRESET;
3454
Tejun Heof5914a42006-05-31 18:27:48 +09003455 /* if we're about to do hardreset, nothing more to do */
3456 if (ehc->i.action & ATA_EH_HARDRESET)
3457 return 0;
3458
Tejun Heo936fd732007-08-06 18:36:23 +09003459 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003460 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003461 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003462 /* whine about phy resume failure but proceed */
3463 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003464 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003465 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003466 }
3467
3468 /* Wait for !BSY if the controller can wait for the first D2H
3469 * Reg FIS and we don't know that no device is attached.
3470 */
Tejun Heo0c887582007-08-06 18:36:23 +09003471 if (!(link->flags & ATA_LFLAG_SKIP_D2H_BSY) && !ata_link_offline(link)) {
Tejun Heob8cffc62007-02-02 16:50:52 +09003472 rc = ata_wait_ready(ap, deadline);
Tejun Heo6dffaf62007-05-23 11:58:52 +02003473 if (rc && rc != -ENODEV) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003474 ata_link_printk(link, KERN_WARNING, "device not ready "
Tejun Heob8cffc62007-02-02 16:50:52 +09003475 "(errno=%d), forcing hardreset\n", rc);
3476 ehc->i.action |= ATA_EH_HARDRESET;
3477 }
3478 }
Tejun Heof5914a42006-05-31 18:27:48 +09003479
3480 return 0;
3481}
3482
Tejun Heoc2bd5802006-01-24 17:05:22 +09003483/**
3484 * ata_std_softreset - reset host port via ATA SRST
Tejun Heocc0680a2007-08-06 18:36:23 +09003485 * @link: ATA link to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003486 * @classes: resulting classes of attached devices
Tejun Heod4b2bab2007-02-02 16:50:52 +09003487 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003488 *
Tejun Heo52783c52006-05-31 18:28:22 +09003489 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003490 *
3491 * LOCKING:
3492 * Kernel thread context (may sleep)
3493 *
3494 * RETURNS:
3495 * 0 on success, -errno otherwise.
3496 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003497int ata_std_softreset(struct ata_link *link, unsigned int *classes,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003498 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003499{
Tejun Heocc0680a2007-08-06 18:36:23 +09003500 struct ata_port *ap = link->ap;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003501 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
Tejun Heod4b2bab2007-02-02 16:50:52 +09003502 unsigned int devmask = 0;
3503 int rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003504 u8 err;
3505
3506 DPRINTK("ENTER\n");
3507
Tejun Heo936fd732007-08-06 18:36:23 +09003508 if (ata_link_offline(link)) {
Tejun Heo3a397462006-02-10 23:58:48 +09003509 classes[0] = ATA_DEV_NONE;
3510 goto out;
3511 }
3512
Tejun Heoc2bd5802006-01-24 17:05:22 +09003513 /* determine if device 0/1 are present */
3514 if (ata_devchk(ap, 0))
3515 devmask |= (1 << 0);
3516 if (slave_possible && ata_devchk(ap, 1))
3517 devmask |= (1 << 1);
3518
Tejun Heoc2bd5802006-01-24 17:05:22 +09003519 /* select device 0 again */
3520 ap->ops->dev_select(ap, 0);
3521
3522 /* issue bus reset */
3523 DPRINTK("about to softreset, devmask=%x\n", devmask);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003524 rc = ata_bus_softreset(ap, devmask, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003525 /* if link is occupied, -ENODEV too is an error */
Tejun Heo936fd732007-08-06 18:36:23 +09003526 if (rc && (rc != -ENODEV || sata_scr_valid(link))) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003527 ata_link_printk(link, KERN_ERR, "SRST failed (errno=%d)\n", rc);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003528 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003529 }
3530
3531 /* determine by signature whether we have ATA or ATAPI devices */
Tejun Heo3f198592007-09-02 23:23:57 +09003532 classes[0] = ata_dev_try_classify(&link->device[0],
3533 devmask & (1 << 0), &err);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003534 if (slave_possible && err != 0x81)
Tejun Heo3f198592007-09-02 23:23:57 +09003535 classes[1] = ata_dev_try_classify(&link->device[1],
3536 devmask & (1 << 1), &err);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003537
Tejun Heo3a397462006-02-10 23:58:48 +09003538 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09003539 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
3540 return 0;
3541}
3542
3543/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003544 * sata_link_hardreset - reset link via SATA phy reset
3545 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003546 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003547 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003548 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003549 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003550 *
3551 * LOCKING:
3552 * Kernel thread context (may sleep)
3553 *
3554 * RETURNS:
3555 * 0 on success, -errno otherwise.
3556 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003557int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003558 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003559{
Tejun Heo852ee162006-04-01 01:38:18 +09003560 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003561 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003562
Tejun Heoc2bd5802006-01-24 17:05:22 +09003563 DPRINTK("ENTER\n");
3564
Tejun Heo936fd732007-08-06 18:36:23 +09003565 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003566 /* SATA spec says nothing about how to reconfigure
3567 * spd. To be on the safe side, turn off phy during
3568 * reconfiguration. This works for at least ICH7 AHCI
3569 * and Sil3124.
3570 */
Tejun Heo936fd732007-08-06 18:36:23 +09003571 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003572 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003573
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003574 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003575
Tejun Heo936fd732007-08-06 18:36:23 +09003576 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003577 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003578
Tejun Heo936fd732007-08-06 18:36:23 +09003579 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003580 }
3581
3582 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003583 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003584 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003585
Tejun Heo852ee162006-04-01 01:38:18 +09003586 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003587
Tejun Heo936fd732007-08-06 18:36:23 +09003588 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003589 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003590
Tejun Heo1c3fae42006-04-02 20:53:28 +09003591 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003592 * 10.4.2 says at least 1 ms.
3593 */
3594 msleep(1);
3595
Tejun Heo936fd732007-08-06 18:36:23 +09003596 /* bring link back */
3597 rc = sata_link_resume(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003598 out:
3599 DPRINTK("EXIT, rc=%d\n", rc);
3600 return rc;
3601}
3602
3603/**
3604 * sata_std_hardreset - reset host port via SATA phy reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003605 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003606 * @class: resulting class of attached device
Tejun Heod4b2bab2007-02-02 16:50:52 +09003607 * @deadline: deadline jiffies for the operation
Tejun Heob6103f62006-11-01 17:59:53 +09003608 *
3609 * SATA phy-reset host port using DET bits of SControl register,
3610 * wait for !BSY and classify the attached device.
3611 *
3612 * LOCKING:
3613 * Kernel thread context (may sleep)
3614 *
3615 * RETURNS:
3616 * 0 on success, -errno otherwise.
3617 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003618int sata_std_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003619 unsigned long deadline)
Tejun Heob6103f62006-11-01 17:59:53 +09003620{
Tejun Heocc0680a2007-08-06 18:36:23 +09003621 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003622 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heob6103f62006-11-01 17:59:53 +09003623 int rc;
3624
3625 DPRINTK("ENTER\n");
3626
3627 /* do hardreset */
Tejun Heocc0680a2007-08-06 18:36:23 +09003628 rc = sata_link_hardreset(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003629 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003630 ata_link_printk(link, KERN_ERR,
Tejun Heob6103f62006-11-01 17:59:53 +09003631 "COMRESET failed (errno=%d)\n", rc);
3632 return rc;
3633 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003634
Tejun Heoc2bd5802006-01-24 17:05:22 +09003635 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09003636 if (ata_link_offline(link)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09003637 *class = ATA_DEV_NONE;
3638 DPRINTK("EXIT, link offline\n");
3639 return 0;
3640 }
3641
Tejun Heo34fee222007-02-02 15:29:27 +09003642 /* wait a while before checking status, see SRST for more info */
3643 msleep(150);
3644
Tejun Heo633273a32007-09-23 13:19:54 +09003645 /* If PMP is supported, we have to do follow-up SRST. Note
3646 * that some PMPs don't send D2H Reg FIS after hardreset at
3647 * all if the first port is empty. Wait for it just for a
3648 * second and request follow-up SRST.
3649 */
3650 if (ap->flags & ATA_FLAG_PMP) {
3651 ata_wait_ready(ap, jiffies + HZ);
3652 return -EAGAIN;
3653 }
3654
Tejun Heod4b2bab2007-02-02 16:50:52 +09003655 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003656 /* link occupied, -ENODEV too is an error */
3657 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003658 ata_link_printk(link, KERN_ERR,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003659 "COMRESET failed (errno=%d)\n", rc);
3660 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003661 }
3662
Tejun Heo3a397462006-02-10 23:58:48 +09003663 ap->ops->dev_select(ap, 0); /* probably unnecessary */
3664
Tejun Heo3f198592007-09-02 23:23:57 +09003665 *class = ata_dev_try_classify(link->device, 1, NULL);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003666
3667 DPRINTK("EXIT, class=%u\n", *class);
3668 return 0;
3669}
3670
3671/**
3672 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003673 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003674 * @classes: classes of attached devices
3675 *
3676 * This function is invoked after a successful reset. Note that
3677 * the device might have been reset more than once using
3678 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003679 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003680 * LOCKING:
3681 * Kernel thread context (may sleep)
3682 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003683void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003684{
Tejun Heocc0680a2007-08-06 18:36:23 +09003685 struct ata_port *ap = link->ap;
Tejun Heodc2b3512006-05-15 20:58:00 +09003686 u32 serror;
3687
Tejun Heoc2bd5802006-01-24 17:05:22 +09003688 DPRINTK("ENTER\n");
3689
Tejun Heoc2bd5802006-01-24 17:05:22 +09003690 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003691 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003692
Tejun Heodc2b3512006-05-15 20:58:00 +09003693 /* clear SError */
Tejun Heo936fd732007-08-06 18:36:23 +09003694 if (sata_scr_read(link, SCR_ERROR, &serror) == 0)
3695 sata_scr_write(link, SCR_ERROR, serror);
Tejun Heodc2b3512006-05-15 20:58:00 +09003696
Tejun Heoc2bd5802006-01-24 17:05:22 +09003697 /* is double-select really necessary? */
3698 if (classes[0] != ATA_DEV_NONE)
3699 ap->ops->dev_select(ap, 1);
3700 if (classes[1] != ATA_DEV_NONE)
3701 ap->ops->dev_select(ap, 0);
3702
Tejun Heo3a397462006-02-10 23:58:48 +09003703 /* bail out if no device is present */
3704 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3705 DPRINTK("EXIT, no device\n");
3706 return;
3707 }
3708
3709 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003710 if (ap->ioaddr.ctl_addr)
3711 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003712
3713 DPRINTK("EXIT\n");
3714}
3715
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003716/**
Tejun Heo623a3122006-03-05 17:55:58 +09003717 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003718 * @dev: device to compare against
3719 * @new_class: class of the new device
3720 * @new_id: IDENTIFY page of the new device
3721 *
3722 * Compare @new_class and @new_id against @dev and determine
3723 * whether @dev is the device indicated by @new_class and
3724 * @new_id.
3725 *
3726 * LOCKING:
3727 * None.
3728 *
3729 * RETURNS:
3730 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3731 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003732static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3733 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003734{
3735 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003736 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3737 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003738
3739 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003740 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3741 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003742 return 0;
3743 }
3744
Tejun Heoa0cf7332007-01-02 20:18:49 +09003745 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3746 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3747 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3748 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003749
3750 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003751 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3752 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003753 return 0;
3754 }
3755
3756 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003757 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3758 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003759 return 0;
3760 }
3761
Tejun Heo623a3122006-03-05 17:55:58 +09003762 return 1;
3763}
3764
3765/**
Tejun Heofe309112007-05-15 03:28:15 +09003766 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003767 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003768 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003769 *
3770 * Re-read IDENTIFY page and make sure @dev is still attached to
3771 * the port.
3772 *
3773 * LOCKING:
3774 * Kernel thread context (may sleep)
3775 *
3776 * RETURNS:
3777 * 0 on success, negative errno otherwise
3778 */
Tejun Heofe309112007-05-15 03:28:15 +09003779int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003780{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003781 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003782 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003783 int rc;
3784
Tejun Heofe635c72006-05-15 20:57:35 +09003785 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003786 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003787 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003788 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003789
3790 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003791 if (!ata_dev_same_device(dev, class, id))
3792 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003793
Tejun Heofe635c72006-05-15 20:57:35 +09003794 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003795 return 0;
3796}
3797
3798/**
3799 * ata_dev_revalidate - Revalidate ATA device
3800 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09003801 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09003802 * @readid_flags: read ID flags
3803 *
3804 * Re-read IDENTIFY page, make sure @dev is still attached to the
3805 * port and reconfigure it according to the new IDENTIFY page.
3806 *
3807 * LOCKING:
3808 * Kernel thread context (may sleep)
3809 *
3810 * RETURNS:
3811 * 0 on success, negative errno otherwise
3812 */
Tejun Heo422c9da2007-09-23 13:14:12 +09003813int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
3814 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09003815{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003816 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003817 int rc;
3818
3819 if (!ata_dev_enabled(dev))
3820 return -ENODEV;
3821
Tejun Heo422c9da2007-09-23 13:14:12 +09003822 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
3823 if (ata_class_enabled(new_class) &&
3824 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
3825 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
3826 dev->class, new_class);
3827 rc = -ENODEV;
3828 goto fail;
3829 }
3830
Tejun Heofe309112007-05-15 03:28:15 +09003831 /* re-read ID */
3832 rc = ata_dev_reread_id(dev, readid_flags);
3833 if (rc)
3834 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003835
3836 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003837 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003838 if (rc)
3839 goto fail;
3840
3841 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09003842 if (dev->class == ATA_DEV_ATA && n_sectors &&
3843 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003844 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3845 "%llu != %llu\n",
3846 (unsigned long long)n_sectors,
3847 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09003848
3849 /* restore original n_sectors */
3850 dev->n_sectors = n_sectors;
3851
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003852 rc = -ENODEV;
3853 goto fail;
3854 }
3855
3856 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003857
3858 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003859 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003860 return rc;
3861}
3862
Alan Cox6919a0a2006-10-27 19:08:46 -07003863struct ata_blacklist_entry {
3864 const char *model_num;
3865 const char *model_rev;
3866 unsigned long horkage;
3867};
3868
3869static const struct ata_blacklist_entry ata_device_blacklist [] = {
3870 /* Devices with DMA related problems under Linux */
3871 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3872 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3873 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3874 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3875 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3876 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3877 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3878 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3879 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3880 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3881 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3882 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3883 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3884 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3885 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3886 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3887 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3888 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3889 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3890 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3891 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3892 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3893 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3894 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3895 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3896 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003897 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3898 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3899 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003900 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo5acd50f2007-06-10 14:52:36 +09003901 { "IOMEGA ZIP 250 ATAPI", NULL, ATA_HORKAGE_NODMA }, /* temporary fix */
Tejun Heo39ce7122007-07-05 12:31:31 +09003902 { "IOMEGA ZIP 250 ATAPI Floppy",
3903 NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09003904 /* Odd clown on sil3726/4726 PMPs */
3905 { "Config Disk", NULL, ATA_HORKAGE_NODMA |
3906 ATA_HORKAGE_SKIP_PM },
Alan Cox6919a0a2006-10-27 19:08:46 -07003907
Albert Lee18d6e9d2007-04-02 11:34:15 +08003908 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003909 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003910
Alan Cox6919a0a2006-10-27 19:08:46 -07003911 /* Devices we expect to fail diagnostics */
3912
3913 /* Devices where NCQ should be avoided */
3914 /* NCQ is slow */
3915 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo09125ea2007-02-28 15:21:23 +09003916 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3917 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003918 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003919 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003920 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
David Milburn0b0a43e2007-09-28 14:29:06 -05003921 { "HITACHI HDS7250SASUN500G*", NULL, ATA_HORKAGE_NONCQ },
3922 { "HITACHI HDS7225SBSUN250G*", NULL, ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003923
Robert Hancock36e337d2007-04-02 22:05:29 -06003924 /* Blacklist entries taken from Silicon Image 3124/3132
3925 Windows driver .inf file - also several Linux problem reports */
3926 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3927 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3928 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Tejun Heobd9c5a32007-06-08 22:20:59 +09003929 /* Drives which do spurious command completion */
3930 { "HTS541680J9SA00", "SB2IC7EP", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003931 { "HTS541612J9SA00", "SBDIC7JP", ATA_HORKAGE_NONCQ, },
Tejun Heoe14cbfa2007-06-25 11:28:59 +09003932 { "Hitachi HTS541616J9SA00", "SB4OC70P", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003933 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo7f567622007-09-28 06:29:23 -07003934 { "WDC WD3200AAJS-00RYA0", "12.01B01", ATA_HORKAGE_NONCQ, },
Tejun Heoa520f262007-07-10 16:16:18 +09003935 { "FUJITSU MHV2080BH", "00840028", ATA_HORKAGE_NONCQ, },
Tejun Heo7f567622007-09-28 06:29:23 -07003936 { "ST9120822AS", "3.CLF", ATA_HORKAGE_NONCQ, },
Tejun Heo3fb65892007-07-20 12:49:38 +09003937 { "ST9160821AS", "3.CLF", ATA_HORKAGE_NONCQ, },
Tejun Heo7f567622007-09-28 06:29:23 -07003938 { "ST3160812AS", "3.ADJ", ATA_HORKAGE_NONCQ, },
3939 { "ST980813AS", "3.ADB", ATA_HORKAGE_NONCQ, },
Tejun Heo5d6aca82007-07-28 16:25:25 +09003940 { "SAMSUNG HD401LJ", "ZZ100-15", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003941
Tejun Heo16c55b02007-08-29 11:58:33 +09003942 /* devices which puke on READ_NATIVE_MAX */
3943 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3944 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3945 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3946 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003947
Alan Cox93328e12007-09-29 04:06:48 -04003948 /* Devices which report 1 sector over size HPA */
3949 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
3950 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
3951
Alan Cox6919a0a2006-10-27 19:08:46 -07003952 /* End Marker */
3953 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003955
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003956int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
3957{
3958 const char *p;
3959 int len;
3960
3961 /*
3962 * check for trailing wildcard: *\0
3963 */
3964 p = strchr(patt, wildchar);
3965 if (p && ((*(p + 1)) == 0))
3966 len = p - patt;
3967 else
3968 len = strlen(name);
3969
3970 return strncmp(patt, name, len);
3971}
3972
Tejun Heo75683fe2007-07-05 13:31:27 +09003973static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003975 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3976 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003977 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003978
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003979 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3980 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
Alan Cox6919a0a2006-10-27 19:08:46 -07003982 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003983 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003984 if (ad->model_rev == NULL)
3985 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003986 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07003987 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003988 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003989 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 return 0;
3992}
3993
Alan Cox6919a0a2006-10-27 19:08:46 -07003994static int ata_dma_blacklisted(const struct ata_device *dev)
3995{
3996 /* We don't support polling DMA.
3997 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3998 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3999 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004000 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07004001 (dev->flags & ATA_DFLAG_CDB_INTR))
4002 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09004003 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07004004}
4005
Tejun Heoa6d5a512006-03-06 04:31:57 +09004006/**
4007 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09004008 * @dev: Device to compute xfermask for
4009 *
Tejun Heoacf356b2006-03-24 14:07:50 +09004010 * Compute supported xfermask of @dev and store it in
4011 * dev->*_mask. This function is responsible for applying all
4012 * known limits including host controller limits, device
4013 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09004014 *
4015 * LOCKING:
4016 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09004017 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004018static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004020 struct ata_link *link = dev->link;
4021 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04004022 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09004023 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Tejun Heo37deecb2006-08-10 16:59:07 +09004025 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09004026 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4027 ap->mwdma_mask, ap->udma_mask);
4028
Robert Hancock8343f882007-03-06 02:37:51 -08004029 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09004030 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4031 dev->mwdma_mask, dev->udma_mask);
4032 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09004033
Alan Coxb352e572006-08-10 18:52:12 +01004034 /*
4035 * CFA Advanced TrueIDE timings are not allowed on a shared
4036 * cable
4037 */
4038 if (ata_dev_pair(dev)) {
4039 /* No PIO5 or PIO6 */
4040 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4041 /* No MWDMA3 or MWDMA 4 */
4042 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4043 }
4044
Tejun Heo37deecb2006-08-10 16:59:07 +09004045 if (ata_dma_blacklisted(dev)) {
4046 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09004047 ata_dev_printk(dev, KERN_WARNING,
4048 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09004049 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09004050
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01004051 if ((host->flags & ATA_HOST_SIMPLEX) &&
4052 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09004053 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4054 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4055 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01004056 }
Tejun Heo565083e2006-04-02 17:54:47 +09004057
Jeff Garzike4246752007-03-09 09:56:46 -05004058 if (ap->flags & ATA_FLAG_NO_IORDY)
4059 xfer_mask &= ata_pio_mask_no_iordy(dev);
4060
Alan Cox5444a6f2006-03-27 18:58:20 +01004061 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05004062 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01004063
Robert Hancock8343f882007-03-06 02:37:51 -08004064 /* Apply cable rule here. Don't apply it early because when
4065 * we handle hot plug the cable type can itself change.
4066 * Check this last so that we know if the transfer rate was
4067 * solely limited by the cable.
4068 * Unknown or 80 wire cables reported host side are checked
4069 * drive side as well. Cases where we know a 40wire cable
4070 * is used safely for 80 are not checked here.
4071 */
4072 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4073 /* UDMA/44 or higher would be available */
4074 if((ap->cbl == ATA_CBL_PATA40) ||
4075 (ata_drive_40wire(dev->id) &&
4076 (ap->cbl == ATA_CBL_PATA_UNK ||
4077 ap->cbl == ATA_CBL_PATA80))) {
4078 ata_dev_printk(dev, KERN_WARNING,
4079 "limited to UDMA/33 due to 40-wire cable\n");
4080 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4081 }
4082
Tejun Heo565083e2006-04-02 17:54:47 +09004083 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4084 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085}
4086
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 * @dev: Device to which command will be sent
4090 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004091 * Issue SET FEATURES - XFER MODE command to device @dev
4092 * on port @ap.
4093 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004095 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004096 *
4097 * RETURNS:
4098 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 */
4100
Tejun Heo3373efd2006-05-15 20:57:53 +09004101static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102{
Tejun Heoa0123702005-12-13 14:49:31 +09004103 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004104 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
4106 /* set up set-features taskfile */
4107 DPRINTK("set features - xfer mode\n");
4108
Tejun Heo464cf172007-05-27 15:10:40 +02004109 /* Some controllers and ATAPI devices show flaky interrupt
4110 * behavior after setting xfer mode. Use polling instead.
4111 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004112 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004113 tf.command = ATA_CMD_SET_FEATURES;
4114 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004115 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004116 tf.protocol = ATA_PROT_NODATA;
4117 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
Tejun Heo3373efd2006-05-15 20:57:53 +09004119 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120
Tejun Heo83206a22006-03-24 15:25:31 +09004121 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4122 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123}
4124
4125/**
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004126 * ata_dev_set_AN - Issue SET FEATURES - SATA FEATURES
4127 * @dev: Device to which command will be sent
4128 * @enable: Whether to enable or disable the feature
4129 *
4130 * Issue SET FEATURES - SATA FEATURES command to device @dev
4131 * on port @ap with sector count set to indicate Asynchronous
4132 * Notification feature
4133 *
4134 * LOCKING:
4135 * PCI/etc. bus probe sem.
4136 *
4137 * RETURNS:
4138 * 0 on success, AC_ERR_* mask otherwise.
4139 */
4140static unsigned int ata_dev_set_AN(struct ata_device *dev, u8 enable)
4141{
4142 struct ata_taskfile tf;
4143 unsigned int err_mask;
4144
4145 /* set up set-features taskfile */
4146 DPRINTK("set features - SATA features\n");
4147
4148 ata_tf_init(dev, &tf);
4149 tf.command = ATA_CMD_SET_FEATURES;
4150 tf.feature = enable;
4151 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4152 tf.protocol = ATA_PROT_NODATA;
4153 tf.nsect = SATA_AN;
4154
4155 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
4156
4157 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4158 return err_mask;
4159}
4160
4161/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004162 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004163 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004164 * @heads: Number of heads (taskfile parameter)
4165 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004166 *
4167 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004168 * Kernel thread context (may sleep)
4169 *
4170 * RETURNS:
4171 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004172 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004173static unsigned int ata_dev_init_params(struct ata_device *dev,
4174 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004175{
Tejun Heoa0123702005-12-13 14:49:31 +09004176 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004177 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004178
4179 /* Number of sectors per track 1-255. Number of heads 1-16 */
4180 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004181 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004182
4183 /* set up init dev params taskfile */
4184 DPRINTK("init dev params \n");
4185
Tejun Heo3373efd2006-05-15 20:57:53 +09004186 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004187 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4188 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4189 tf.protocol = ATA_PROT_NODATA;
4190 tf.nsect = sectors;
4191 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004192
Tejun Heo3373efd2006-05-15 20:57:53 +09004193 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004194 /* A clean abort indicates an original or just out of spec drive
4195 and we should continue as we issue the setup based on the
4196 drive reported working geometry */
4197 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4198 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004199
Tejun Heo6aff8f12006-02-15 18:24:09 +09004200 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4201 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004202}
4203
4204/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004205 * ata_sg_clean - Unmap DMA memory associated with command
4206 * @qc: Command containing DMA memory to be released
4207 *
4208 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 *
4210 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004211 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004213void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214{
4215 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004216 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004218 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219
Tejun Heoa46314742006-02-11 19:11:13 +09004220 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
4221 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
4223 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05004224 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004226 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004228 /* if we padded the buffer out to 32-bit bound, and data
4229 * xfer direction is from-device, we must copy from the
4230 * pad buffer back into the supplied buffer
4231 */
4232 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
4233 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4234
4235 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05004236 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004237 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004238 /* restore last sg */
4239 sg[qc->orig_n_elem - 1].length += qc->pad_len;
4240 if (pad_buf) {
4241 struct scatterlist *psg = &qc->pad_sgent;
4242 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4243 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004244 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004245 }
4246 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09004247 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004248 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05004249 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
4250 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004251 /* restore sg */
4252 sg->length += qc->pad_len;
4253 if (pad_buf)
4254 memcpy(qc->buf_virt + sg->length - qc->pad_len,
4255 pad_buf, qc->pad_len);
4256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
4258 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004259 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260}
4261
4262/**
4263 * ata_fill_sg - Fill PCI IDE PRD table
4264 * @qc: Metadata associated with taskfile to be transferred
4265 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004266 * Fill PCI IDE PRD (scatter-gather) table with segments
4267 * associated with the current disk command.
4268 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004270 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 *
4272 */
4273static void ata_fill_sg(struct ata_queued_cmd *qc)
4274{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004276 struct scatterlist *sg;
4277 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278
Tejun Heoa46314742006-02-11 19:11:13 +09004279 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05004280 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
4282 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004283 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 u32 addr, offset;
4285 u32 sg_len, len;
4286
4287 /* determine if physical DMA addr spans 64K boundary.
4288 * Note h/w doesn't support 64-bit, so we unconditionally
4289 * truncate dma_addr_t to u32.
4290 */
4291 addr = (u32) sg_dma_address(sg);
4292 sg_len = sg_dma_len(sg);
4293
4294 while (sg_len) {
4295 offset = addr & 0xffff;
4296 len = sg_len;
4297 if ((offset + sg_len) > 0x10000)
4298 len = 0x10000 - offset;
4299
4300 ap->prd[idx].addr = cpu_to_le32(addr);
4301 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
4302 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4303
4304 idx++;
4305 sg_len -= len;
4306 addr += len;
4307 }
4308 }
4309
4310 if (idx)
4311 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4312}
Tejun Heob9a41972007-06-27 02:48:43 +09004313
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314/**
Alan Coxd26fc952007-07-06 19:13:52 -04004315 * ata_fill_sg_dumb - Fill PCI IDE PRD table
4316 * @qc: Metadata associated with taskfile to be transferred
4317 *
4318 * Fill PCI IDE PRD (scatter-gather) table with segments
4319 * associated with the current disk command. Perform the fill
4320 * so that we avoid writing any length 64K records for
4321 * controllers that don't follow the spec.
4322 *
4323 * LOCKING:
4324 * spin_lock_irqsave(host lock)
4325 *
4326 */
4327static void ata_fill_sg_dumb(struct ata_queued_cmd *qc)
4328{
4329 struct ata_port *ap = qc->ap;
4330 struct scatterlist *sg;
4331 unsigned int idx;
4332
4333 WARN_ON(qc->__sg == NULL);
4334 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
4335
4336 idx = 0;
4337 ata_for_each_sg(sg, qc) {
4338 u32 addr, offset;
4339 u32 sg_len, len, blen;
4340
4341 /* determine if physical DMA addr spans 64K boundary.
4342 * Note h/w doesn't support 64-bit, so we unconditionally
4343 * truncate dma_addr_t to u32.
4344 */
4345 addr = (u32) sg_dma_address(sg);
4346 sg_len = sg_dma_len(sg);
4347
4348 while (sg_len) {
4349 offset = addr & 0xffff;
4350 len = sg_len;
4351 if ((offset + sg_len) > 0x10000)
4352 len = 0x10000 - offset;
4353
4354 blen = len & 0xffff;
4355 ap->prd[idx].addr = cpu_to_le32(addr);
4356 if (blen == 0) {
4357 /* Some PATA chipsets like the CS5530 can't
4358 cope with 0x0000 meaning 64K as the spec says */
4359 ap->prd[idx].flags_len = cpu_to_le32(0x8000);
4360 blen = 0x8000;
4361 ap->prd[++idx].addr = cpu_to_le32(addr + 0x8000);
4362 }
4363 ap->prd[idx].flags_len = cpu_to_le32(blen);
4364 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4365
4366 idx++;
4367 sg_len -= len;
4368 addr += len;
4369 }
4370 }
4371
4372 if (idx)
4373 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4374}
4375
4376/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4378 * @qc: Metadata associated with taskfile to check
4379 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004380 * Allow low-level driver to filter ATA PACKET commands, returning
4381 * a status indicating whether or not it is OK to use DMA for the
4382 * supplied PACKET command.
4383 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004385 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004386 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 * RETURNS: 0 when ATAPI DMA can be used
4388 * nonzero otherwise
4389 */
4390int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4391{
4392 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393
Tejun Heob9a41972007-06-27 02:48:43 +09004394 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4395 * few ATAPI devices choke on such DMA requests.
4396 */
4397 if (unlikely(qc->nbytes & 15))
4398 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004399
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004401 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
Tejun Heob9a41972007-06-27 02:48:43 +09004403 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404}
Tejun Heob9a41972007-06-27 02:48:43 +09004405
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004407 * ata_std_qc_defer - Check whether a qc needs to be deferred
4408 * @qc: ATA command in question
4409 *
4410 * Non-NCQ commands cannot run with any other command, NCQ or
4411 * not. As upper layer only knows the queue depth, we are
4412 * responsible for maintaining exclusion. This function checks
4413 * whether a new command @qc can be issued.
4414 *
4415 * LOCKING:
4416 * spin_lock_irqsave(host lock)
4417 *
4418 * RETURNS:
4419 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4420 */
4421int ata_std_qc_defer(struct ata_queued_cmd *qc)
4422{
4423 struct ata_link *link = qc->dev->link;
4424
4425 if (qc->tf.protocol == ATA_PROT_NCQ) {
4426 if (!ata_tag_valid(link->active_tag))
4427 return 0;
4428 } else {
4429 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4430 return 0;
4431 }
4432
4433 return ATA_DEFER_LINK;
4434}
4435
4436/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 * ata_qc_prep - Prepare taskfile for submission
4438 * @qc: Metadata associated with taskfile to be prepared
4439 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004440 * Prepare ATA taskfile for submission.
4441 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004443 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 */
4445void ata_qc_prep(struct ata_queued_cmd *qc)
4446{
4447 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4448 return;
4449
4450 ata_fill_sg(qc);
4451}
4452
Alan Coxd26fc952007-07-06 19:13:52 -04004453/**
4454 * ata_dumb_qc_prep - Prepare taskfile for submission
4455 * @qc: Metadata associated with taskfile to be prepared
4456 *
4457 * Prepare ATA taskfile for submission.
4458 *
4459 * LOCKING:
4460 * spin_lock_irqsave(host lock)
4461 */
4462void ata_dumb_qc_prep(struct ata_queued_cmd *qc)
4463{
4464 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4465 return;
4466
4467 ata_fill_sg_dumb(qc);
4468}
4469
Brian Kinge46834c2006-03-17 17:04:03 -06004470void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4471
Jeff Garzik0cba6322005-05-30 19:49:12 -04004472/**
4473 * ata_sg_init_one - Associate command with memory buffer
4474 * @qc: Command to be associated
4475 * @buf: Memory buffer
4476 * @buflen: Length of memory buffer, in bytes.
4477 *
4478 * Initialize the data-related elements of queued_cmd @qc
4479 * to point to a single memory buffer, @buf of byte length @buflen.
4480 *
4481 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004482 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004483 */
4484
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
4486{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 qc->flags |= ATA_QCFLAG_SINGLE;
4488
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004489 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004491 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05004493 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494
Tejun Heo61c05962006-11-14 22:35:43 +09004495 sg_init_one(&qc->sgent, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496}
4497
Jeff Garzik0cba6322005-05-30 19:49:12 -04004498/**
4499 * ata_sg_init - Associate command with scatter-gather table.
4500 * @qc: Command to be associated
4501 * @sg: Scatter-gather table.
4502 * @n_elem: Number of elements in s/g table.
4503 *
4504 * Initialize the data-related elements of queued_cmd @qc
4505 * to point to a scatter-gather table @sg, containing @n_elem
4506 * elements.
4507 *
4508 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004509 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004510 */
4511
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4513 unsigned int n_elem)
4514{
4515 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004516 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004518 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519}
4520
4521/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004522 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
4523 * @qc: Command with memory buffer to be mapped.
4524 *
4525 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 *
4527 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004528 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 *
4530 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004531 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 */
4533
4534static int ata_sg_setup_one(struct ata_queued_cmd *qc)
4535{
4536 struct ata_port *ap = qc->ap;
4537 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004538 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004540 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004542 /* we must lengthen transfers to end on a 32-bit boundary */
4543 qc->pad_len = sg->length & 3;
4544 if (qc->pad_len) {
4545 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4546 struct scatterlist *psg = &qc->pad_sgent;
4547
Tejun Heoa46314742006-02-11 19:11:13 +09004548 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004549
4550 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4551
4552 if (qc->tf.flags & ATA_TFLAG_WRITE)
4553 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
4554 qc->pad_len);
4555
4556 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4557 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4558 /* trim sg */
4559 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004560 if (sg->length == 0)
4561 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004562
4563 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
4564 sg->length, qc->pad_len);
4565 }
4566
Tejun Heo2e242fa2006-02-20 23:48:38 +09004567 if (trim_sg) {
4568 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05004569 goto skip_map;
4570 }
4571
Brian King2f1f6102006-03-23 17:30:15 -06004572 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04004573 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004574 if (dma_mapping_error(dma_address)) {
4575 /* restore sg */
4576 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579
4580 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04004581 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
Tejun Heo2e242fa2006-02-20 23:48:38 +09004583skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
4585 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4586
4587 return 0;
4588}
4589
4590/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004591 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4592 * @qc: Command with scatter-gather table to be mapped.
4593 *
4594 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 *
4596 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004597 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 *
4599 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004600 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 *
4602 */
4603
4604static int ata_sg_setup(struct ata_queued_cmd *qc)
4605{
4606 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004607 struct scatterlist *sg = qc->__sg;
4608 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05004609 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610
Tejun Heo44877b42007-02-21 01:06:51 +09004611 VPRINTK("ENTER, ata%u\n", ap->print_id);
Tejun Heoa46314742006-02-11 19:11:13 +09004612 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004614 /* we must lengthen transfers to end on a 32-bit boundary */
4615 qc->pad_len = lsg->length & 3;
4616 if (qc->pad_len) {
4617 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4618 struct scatterlist *psg = &qc->pad_sgent;
4619 unsigned int offset;
4620
Tejun Heoa46314742006-02-11 19:11:13 +09004621 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004622
4623 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4624
4625 /*
4626 * psg->page/offset are used to copy to-be-written
4627 * data in this function or read data in ata_sg_clean.
4628 */
4629 offset = lsg->offset + lsg->length - qc->pad_len;
4630 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
4631 psg->offset = offset_in_page(offset);
4632
4633 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4634 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4635 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004636 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004637 }
4638
4639 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4640 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4641 /* trim last sg */
4642 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05004643 if (lsg->length == 0)
4644 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004645
4646 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
4647 qc->n_elem - 1, lsg->length, qc->pad_len);
4648 }
4649
Jeff Garzike1410f22005-11-14 14:06:26 -05004650 pre_n_elem = qc->n_elem;
4651 if (trim_sg && pre_n_elem)
4652 pre_n_elem--;
4653
4654 if (!pre_n_elem) {
4655 n_elem = 0;
4656 goto skip_map;
4657 }
4658
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06004660 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004661 if (n_elem < 1) {
4662 /* restore last sg */
4663 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
4667 DPRINTK("%d sg elements mapped\n", n_elem);
4668
Jeff Garzike1410f22005-11-14 14:06:26 -05004669skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 qc->n_elem = n_elem;
4671
4672 return 0;
4673}
4674
4675/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004676 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004677 * @buf: Buffer to swap
4678 * @buf_words: Number of 16-bit words in buffer.
4679 *
4680 * Swap halves of 16-bit words if needed to convert from
4681 * little-endian byte order to native cpu byte order, or
4682 * vice-versa.
4683 *
4684 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004685 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004686 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687void swap_buf_le16(u16 *buf, unsigned int buf_words)
4688{
4689#ifdef __BIG_ENDIAN
4690 unsigned int i;
4691
4692 for (i = 0; i < buf_words; i++)
4693 buf[i] = le16_to_cpu(buf[i]);
4694#endif /* __BIG_ENDIAN */
4695}
4696
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004697/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004698 * ata_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004699 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004700 * @buf: data buffer
4701 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04004702 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004703 *
4704 * Transfer data from/to the device data register by PIO.
4705 *
4706 * LOCKING:
4707 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004708 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004709void ata_data_xfer(struct ata_device *adev, unsigned char *buf,
4710 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004712 struct ata_port *ap = adev->link->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004713 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004715 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 if (write_data)
Tejun Heo0d5ff562007-02-01 15:06:36 +09004717 iowrite16_rep(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 else
Tejun Heo0d5ff562007-02-01 15:06:36 +09004719 ioread16_rep(ap->ioaddr.data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004720
4721 /* Transfer trailing 1 byte, if any. */
4722 if (unlikely(buflen & 0x01)) {
4723 u16 align_buf[1] = { 0 };
4724 unsigned char *trailing_buf = buf + buflen - 1;
4725
4726 if (write_data) {
4727 memcpy(align_buf, trailing_buf, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004728 iowrite16(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004729 } else {
Tejun Heo0d5ff562007-02-01 15:06:36 +09004730 align_buf[0] = cpu_to_le16(ioread16(ap->ioaddr.data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004731 memcpy(trailing_buf, align_buf, 1);
4732 }
4733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734}
4735
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004736/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004737 * ata_data_xfer_noirq - Transfer data by PIO
Alan Cox75e99582006-05-24 14:14:41 +01004738 * @adev: device to target
4739 * @buf: data buffer
4740 * @buflen: buffer length
4741 * @write_data: read/write
4742 *
Tejun Heo88574552006-06-25 20:00:35 +09004743 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01004744 * transfer with interrupts disabled.
4745 *
4746 * LOCKING:
4747 * Inherited from caller.
4748 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004749void ata_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
4750 unsigned int buflen, int write_data)
Alan Cox75e99582006-05-24 14:14:41 +01004751{
4752 unsigned long flags;
4753 local_irq_save(flags);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004754 ata_data_xfer(adev, buf, buflen, write_data);
Alan Cox75e99582006-05-24 14:14:41 +01004755 local_irq_restore(flags);
4756}
4757
4758
4759/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004760 * ata_pio_sector - Transfer a sector of data.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004761 * @qc: Command on going
4762 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004763 * Transfer qc->sect_size bytes of data from/to the ATA device.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004764 *
4765 * LOCKING:
4766 * Inherited from caller.
4767 */
4768
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769static void ata_pio_sector(struct ata_queued_cmd *qc)
4770{
4771 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004772 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 struct ata_port *ap = qc->ap;
4774 struct page *page;
4775 unsigned int offset;
4776 unsigned char *buf;
4777
Mark Lord5a5dbd12007-03-16 10:22:26 -04004778 if (qc->curbytes == qc->nbytes - qc->sect_size)
Albert Lee14be71f2005-09-27 17:36:35 +08004779 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780
4781 page = sg[qc->cursg].page;
Tejun Heo726f0782007-01-03 17:30:39 +09004782 offset = sg[qc->cursg].offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
4784 /* get the current page and offset */
4785 page = nth_page(page, (offset >> PAGE_SHIFT));
4786 offset %= PAGE_SIZE;
4787
Albert Lee7282aa42005-10-09 09:46:07 -04004788 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4789
Albert Lee91b8b312005-10-09 09:48:44 -04004790 if (PageHighMem(page)) {
4791 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004792
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004793 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004794 local_irq_save(flags);
4795 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004796
Albert Lee91b8b312005-10-09 09:48:44 -04004797 /* do the actual data transfer */
Mark Lord5a5dbd12007-03-16 10:22:26 -04004798 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004799
4800 kunmap_atomic(buf, KM_IRQ0);
4801 local_irq_restore(flags);
4802 } else {
4803 buf = page_address(page);
Mark Lord5a5dbd12007-03-16 10:22:26 -04004804 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806
Mark Lord5a5dbd12007-03-16 10:22:26 -04004807 qc->curbytes += qc->sect_size;
4808 qc->cursg_ofs += qc->sect_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
Tejun Heo726f0782007-01-03 17:30:39 +09004810 if (qc->cursg_ofs == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 qc->cursg++;
4812 qc->cursg_ofs = 0;
4813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004816/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004817 * ata_pio_sectors - Transfer one or many sectors.
Albert Lee07f6f7d2005-11-01 19:33:20 +08004818 * @qc: Command on going
4819 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004820 * Transfer one or many sectors of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08004821 * ATA device for the DRQ request.
4822 *
4823 * LOCKING:
4824 * Inherited from caller.
4825 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
Albert Lee07f6f7d2005-11-01 19:33:20 +08004827static void ata_pio_sectors(struct ata_queued_cmd *qc)
4828{
4829 if (is_multi_taskfile(&qc->tf)) {
4830 /* READ/WRITE MULTIPLE */
4831 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
Jeff Garzik587005d2006-02-11 18:17:32 -05004833 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004834
Mark Lord5a5dbd12007-03-16 10:22:26 -04004835 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
Tejun Heo726f0782007-01-03 17:30:39 +09004836 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004837 while (nsect--)
4838 ata_pio_sector(qc);
4839 } else
4840 ata_pio_sector(qc);
Albert Lee4cc980b2007-08-15 03:19:45 -04004841
4842 ata_altstatus(qc->ap); /* flush */
Albert Lee07f6f7d2005-11-01 19:33:20 +08004843}
4844
4845/**
Albert Leec71c1852005-10-04 06:03:45 -04004846 * atapi_send_cdb - Write CDB bytes to hardware
4847 * @ap: Port to which ATAPI device is attached.
4848 * @qc: Taskfile currently active
4849 *
4850 * When device has indicated its readiness to accept
4851 * a CDB, this function is called. Send the CDB.
4852 *
4853 * LOCKING:
4854 * caller.
4855 */
4856
4857static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
4858{
4859 /* send SCSI cdb */
4860 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05004861 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04004862
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004863 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04004864 ata_altstatus(ap); /* flush */
4865
4866 switch (qc->tf.protocol) {
4867 case ATA_PROT_ATAPI:
4868 ap->hsm_task_state = HSM_ST;
4869 break;
4870 case ATA_PROT_ATAPI_NODATA:
4871 ap->hsm_task_state = HSM_ST_LAST;
4872 break;
4873 case ATA_PROT_ATAPI_DMA:
4874 ap->hsm_task_state = HSM_ST_LAST;
4875 /* initiate bmdma */
4876 ap->ops->bmdma_start(qc);
4877 break;
4878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879}
4880
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004881/**
4882 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
4883 * @qc: Command on going
4884 * @bytes: number of bytes
4885 *
4886 * Transfer Transfer data from/to the ATAPI device.
4887 *
4888 * LOCKING:
4889 * Inherited from caller.
4890 *
4891 */
4892
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
4894{
4895 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004896 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897 struct ata_port *ap = qc->ap;
4898 struct page *page;
4899 unsigned char *buf;
4900 unsigned int offset, count;
4901
Albert Lee563a6e12005-08-12 14:17:50 +08004902 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08004903 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904
4905next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08004906 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004907 /*
Albert Lee563a6e12005-08-12 14:17:50 +08004908 * The end of qc->sg is reached and the device expects
4909 * more data to transfer. In order not to overrun qc->sg
4910 * and fulfill length specified in the byte count register,
4911 * - for read case, discard trailing data from the device
4912 * - for write case, padding zero data to the device
4913 */
4914 u16 pad_buf[1] = { 0 };
4915 unsigned int words = bytes >> 1;
4916 unsigned int i;
4917
4918 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09004919 ata_dev_printk(qc->dev, KERN_WARNING,
4920 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08004921
4922 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004923 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08004924
Albert Lee14be71f2005-09-27 17:36:35 +08004925 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08004926 return;
4927 }
4928
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004929 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 page = sg->page;
4932 offset = sg->offset + qc->cursg_ofs;
4933
4934 /* get the current page and offset */
4935 page = nth_page(page, (offset >> PAGE_SHIFT));
4936 offset %= PAGE_SIZE;
4937
Albert Lee6952df02005-06-06 15:56:03 +08004938 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04004939 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940
4941 /* don't cross page boundaries */
4942 count = min(count, (unsigned int)PAGE_SIZE - offset);
4943
Albert Lee7282aa42005-10-09 09:46:07 -04004944 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4945
Albert Lee91b8b312005-10-09 09:48:44 -04004946 if (PageHighMem(page)) {
4947 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004948
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004949 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004950 local_irq_save(flags);
4951 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004952
Albert Lee91b8b312005-10-09 09:48:44 -04004953 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004954 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004955
4956 kunmap_atomic(buf, KM_IRQ0);
4957 local_irq_restore(flags);
4958 } else {
4959 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004960 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
4963 bytes -= count;
4964 qc->curbytes += count;
4965 qc->cursg_ofs += count;
4966
Albert Lee32529e02005-05-26 03:49:42 -04004967 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 qc->cursg++;
4969 qc->cursg_ofs = 0;
4970 }
4971
Albert Lee563a6e12005-08-12 14:17:50 +08004972 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974}
4975
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004976/**
4977 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
4978 * @qc: Command on going
4979 *
4980 * Transfer Transfer data from/to the ATAPI device.
4981 *
4982 * LOCKING:
4983 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004984 */
4985
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986static void atapi_pio_bytes(struct ata_queued_cmd *qc)
4987{
4988 struct ata_port *ap = qc->ap;
4989 struct ata_device *dev = qc->dev;
4990 unsigned int ireason, bc_lo, bc_hi, bytes;
4991 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
4992
Albert Leeeec4c3f2006-05-18 17:51:10 +08004993 /* Abuse qc->result_tf for temp storage of intermediate TF
4994 * here to save some kernel stack usage.
4995 * For normal completion, qc->result_tf is not relevant. For
4996 * error, qc->result_tf is later overwritten by ata_qc_complete().
4997 * So, the correctness of qc->result_tf is not affected.
4998 */
4999 ap->ops->tf_read(ap, &qc->result_tf);
5000 ireason = qc->result_tf.nsect;
5001 bc_lo = qc->result_tf.lbam;
5002 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003 bytes = (bc_hi << 8) | bc_lo;
5004
5005 /* shall be cleared to zero, indicating xfer of data */
5006 if (ireason & (1 << 0))
5007 goto err_out;
5008
5009 /* make sure transfer direction matches expected */
5010 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
5011 if (do_write != i_write)
5012 goto err_out;
5013
Tejun Heo44877b42007-02-21 01:06:51 +09005014 VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
Albert Lee312f7da2005-09-27 17:38:03 +08005015
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 __atapi_pio_bytes(qc, bytes);
Albert Lee4cc980b2007-08-15 03:19:45 -04005017 ata_altstatus(ap); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
5019 return;
5020
5021err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09005022 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09005023 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08005024 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025}
5026
5027/**
Albert Leec234fb02006-03-25 17:58:38 +08005028 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
5029 * @ap: the target ata_port
5030 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 *
Albert Leec234fb02006-03-25 17:58:38 +08005032 * RETURNS:
5033 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 */
Albert Leec234fb02006-03-25 17:58:38 +08005035
5036static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037{
Albert Leec234fb02006-03-25 17:58:38 +08005038 if (qc->tf.flags & ATA_TFLAG_POLLING)
5039 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
Albert Leec234fb02006-03-25 17:58:38 +08005041 if (ap->hsm_task_state == HSM_ST_FIRST) {
5042 if (qc->tf.protocol == ATA_PROT_PIO &&
5043 (qc->tf.flags & ATA_TFLAG_WRITE))
5044 return 1;
5045
5046 if (is_atapi_taskfile(&qc->tf) &&
5047 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
5048 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 }
5050
Albert Leec234fb02006-03-25 17:58:38 +08005051 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052}
5053
Albert Leec234fb02006-03-25 17:58:38 +08005054/**
Tejun Heoc17ea202006-05-15 20:59:29 +09005055 * ata_hsm_qc_complete - finish a qc running on standard HSM
5056 * @qc: Command to complete
5057 * @in_wq: 1 if called from workqueue, 0 otherwise
5058 *
5059 * Finish @qc which is running on standard HSM.
5060 *
5061 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005062 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09005063 * Otherwise, none on entry and grabs host lock.
5064 */
5065static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
5066{
5067 struct ata_port *ap = qc->ap;
5068 unsigned long flags;
5069
5070 if (ap->ops->error_handler) {
5071 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04005072 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09005073
Jeff Garzikcca39742006-08-24 03:19:22 -04005074 /* EH might have kicked in while host lock is
5075 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09005076 */
5077 qc = ata_qc_from_tag(ap, qc->tag);
5078 if (qc) {
5079 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi83625002007-01-26 16:27:32 +09005080 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09005081 ata_qc_complete(qc);
5082 } else
5083 ata_port_freeze(ap);
5084 }
5085
Jeff Garzikba6a1302006-06-22 23:46:10 -04005086 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09005087 } else {
5088 if (likely(!(qc->err_mask & AC_ERR_HSM)))
5089 ata_qc_complete(qc);
5090 else
5091 ata_port_freeze(ap);
5092 }
5093 } else {
5094 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04005095 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi83625002007-01-26 16:27:32 +09005096 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09005097 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04005098 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09005099 } else
5100 ata_qc_complete(qc);
5101 }
5102}
5103
5104/**
Albert Leebb5cb292006-03-25 17:48:02 +08005105 * ata_hsm_move - move the HSM to the next state.
5106 * @ap: the target ata_port
5107 * @qc: qc on going
5108 * @status: current device status
5109 * @in_wq: 1 if called from workqueue, 0 otherwise
5110 *
5111 * RETURNS:
5112 * 1 when poll next status needed, 0 otherwise.
5113 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09005114int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
5115 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116{
Albert Leebb5cb292006-03-25 17:48:02 +08005117 unsigned long flags = 0;
5118 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119
Albert Lee6912ccd2006-03-25 17:45:49 +08005120 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08005121
Albert Leebb5cb292006-03-25 17:48:02 +08005122 /* Make sure ata_qc_issue_prot() does not throw things
5123 * like DMA polling into the workqueue. Notice that
5124 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08005125 */
Albert Leec234fb02006-03-25 17:58:38 +08005126 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08005127
Albert Leee2cec772006-03-25 17:43:49 +08005128fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08005129 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005130 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131
Albert Leee2cec772006-03-25 17:43:49 +08005132 switch (ap->hsm_task_state) {
5133 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08005134 /* Send first data block or PACKET CDB */
5135
5136 /* If polling, we will stay in the work queue after
5137 * sending the data. Otherwise, interrupt handler
5138 * takes over after sending the data.
5139 */
5140 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
5141
Albert Leee2cec772006-03-25 17:43:49 +08005142 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08005143 if (unlikely((status & ATA_DRQ) == 0)) {
5144 /* handle BSY=0, DRQ=0 as error */
5145 if (likely(status & (ATA_ERR | ATA_DF)))
5146 /* device stops HSM for abort/error */
5147 qc->err_mask |= AC_ERR_DEV;
5148 else
5149 /* HSM violation. Let EH handle this */
5150 qc->err_mask |= AC_ERR_HSM;
5151
Albert Leee2cec772006-03-25 17:43:49 +08005152 ap->hsm_task_state = HSM_ST_ERR;
5153 goto fsm_start;
5154 }
5155
Albert Lee71601952006-03-25 18:11:12 +08005156 /* Device should not ask for data transfer (DRQ=1)
5157 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005158 * We ignore DRQ here and stop the HSM by
5159 * changing hsm_task_state to HSM_ST_ERR and
5160 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005161 */
5162 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09005163 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with device "
5164 "error, dev_stat 0x%X\n", status);
Albert Lee3655d1d2006-05-19 11:43:04 +08005165 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08005166 ap->hsm_task_state = HSM_ST_ERR;
5167 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005168 }
5169
Albert Leebb5cb292006-03-25 17:48:02 +08005170 /* Send the CDB (atapi) or the first data block (ata pio out).
5171 * During the state transition, interrupt handler shouldn't
5172 * be invoked before the data transfer is complete and
5173 * hsm_task_state is changed. Hence, the following locking.
5174 */
5175 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005176 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08005177
Albert Leebb5cb292006-03-25 17:48:02 +08005178 if (qc->tf.protocol == ATA_PROT_PIO) {
5179 /* PIO data out protocol.
5180 * send first data block.
5181 */
5182
5183 /* ata_pio_sectors() might change the state
5184 * to HSM_ST_LAST. so, the state is changed here
5185 * before ata_pio_sectors().
5186 */
5187 ap->hsm_task_state = HSM_ST;
5188 ata_pio_sectors(qc);
Albert Leebb5cb292006-03-25 17:48:02 +08005189 } else
5190 /* send CDB */
5191 atapi_send_cdb(ap, qc);
5192
5193 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005194 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08005195
5196 /* if polling, ata_pio_task() handles the rest.
5197 * otherwise, interrupt handler takes over from here.
5198 */
Albert Leee2cec772006-03-25 17:43:49 +08005199 break;
5200
5201 case HSM_ST:
5202 /* complete command or read/write the data register */
5203 if (qc->tf.protocol == ATA_PROT_ATAPI) {
5204 /* ATAPI PIO protocol */
5205 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08005206 /* No more data to transfer or device error.
5207 * Device error will be tagged in HSM_ST_LAST.
5208 */
Albert Leee2cec772006-03-25 17:43:49 +08005209 ap->hsm_task_state = HSM_ST_LAST;
5210 goto fsm_start;
5211 }
5212
Albert Lee71601952006-03-25 18:11:12 +08005213 /* Device should not ask for data transfer (DRQ=1)
5214 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005215 * We ignore DRQ here and stop the HSM by
5216 * changing hsm_task_state to HSM_ST_ERR and
5217 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005218 */
5219 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09005220 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
5221 "device error, dev_stat 0x%X\n",
5222 status);
Albert Lee3655d1d2006-05-19 11:43:04 +08005223 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08005224 ap->hsm_task_state = HSM_ST_ERR;
5225 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005226 }
5227
Albert Leee2cec772006-03-25 17:43:49 +08005228 atapi_pio_bytes(qc);
5229
5230 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
5231 /* bad ireason reported by device */
5232 goto fsm_start;
5233
5234 } else {
5235 /* ATA PIO protocol */
5236 if (unlikely((status & ATA_DRQ) == 0)) {
5237 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08005238 if (likely(status & (ATA_ERR | ATA_DF)))
5239 /* device stops HSM for abort/error */
5240 qc->err_mask |= AC_ERR_DEV;
5241 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09005242 /* HSM violation. Let EH handle this.
5243 * Phantom devices also trigger this
5244 * condition. Mark hint.
5245 */
5246 qc->err_mask |= AC_ERR_HSM |
5247 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08005248
Albert Leee2cec772006-03-25 17:43:49 +08005249 ap->hsm_task_state = HSM_ST_ERR;
5250 goto fsm_start;
5251 }
5252
Albert Leeeee6c322006-04-01 17:38:43 +08005253 /* For PIO reads, some devices may ask for
5254 * data transfer (DRQ=1) alone with ERR=1.
5255 * We respect DRQ here and transfer one
5256 * block of junk data before changing the
5257 * hsm_task_state to HSM_ST_ERR.
5258 *
5259 * For PIO writes, ERR=1 DRQ=1 doesn't make
5260 * sense since the data block has been
5261 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08005262 */
5263 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08005264 /* data might be corrputed */
5265 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08005266
5267 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
5268 ata_pio_sectors(qc);
Albert Leeeee6c322006-04-01 17:38:43 +08005269 status = ata_wait_idle(ap);
5270 }
5271
Albert Lee3655d1d2006-05-19 11:43:04 +08005272 if (status & (ATA_BUSY | ATA_DRQ))
5273 qc->err_mask |= AC_ERR_HSM;
5274
Albert Leeeee6c322006-04-01 17:38:43 +08005275 /* ata_pio_sectors() might change the
5276 * state to HSM_ST_LAST. so, the state
5277 * is changed after ata_pio_sectors().
5278 */
5279 ap->hsm_task_state = HSM_ST_ERR;
5280 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005281 }
5282
Albert Leee2cec772006-03-25 17:43:49 +08005283 ata_pio_sectors(qc);
5284
5285 if (ap->hsm_task_state == HSM_ST_LAST &&
5286 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
5287 /* all data read */
Albert Lee52a32202006-03-25 18:18:15 +08005288 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08005289 goto fsm_start;
5290 }
5291 }
5292
Albert Leebb5cb292006-03-25 17:48:02 +08005293 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08005294 break;
5295
5296 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005297 if (unlikely(!ata_ok(status))) {
5298 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08005299 ap->hsm_task_state = HSM_ST_ERR;
5300 goto fsm_start;
5301 }
5302
5303 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08005304 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005305 ap->print_id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08005306
Albert Lee6912ccd2006-03-25 17:45:49 +08005307 WARN_ON(qc->err_mask);
5308
Albert Leee2cec772006-03-25 17:43:49 +08005309 ap->hsm_task_state = HSM_ST_IDLE;
5310
5311 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005312 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005313
5314 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005315 break;
5316
5317 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08005318 /* make sure qc->err_mask is available to
5319 * know what's wrong and recover
5320 */
5321 WARN_ON(qc->err_mask == 0);
5322
5323 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08005324
Albert Lee999bb6f2006-03-25 18:07:48 +08005325 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005326 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005327
5328 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005329 break;
5330 default:
Albert Leebb5cb292006-03-25 17:48:02 +08005331 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08005332 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08005333 }
5334
Albert Leebb5cb292006-03-25 17:48:02 +08005335 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336}
5337
David Howells65f27f32006-11-22 14:55:48 +00005338static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339{
David Howells65f27f32006-11-22 14:55:48 +00005340 struct ata_port *ap =
5341 container_of(work, struct ata_port, port_task.work);
5342 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08005343 u8 status;
5344 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005345
5346fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08005347 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348
Albert Leea1af3732006-03-25 17:50:15 +08005349 /*
5350 * This is purely heuristic. This is a fast path.
5351 * Sometimes when we enter, BSY will be cleared in
5352 * a chk-status or two. If not, the drive is probably seeking
5353 * or something. Snooze for a couple msecs, then
5354 * chk-status again. If still busy, queue delayed work.
5355 */
5356 status = ata_busy_wait(ap, ATA_BUSY, 5);
5357 if (status & ATA_BUSY) {
5358 msleep(2);
5359 status = ata_busy_wait(ap, ATA_BUSY, 10);
5360 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08005361 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08005362 return;
5363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 }
5365
Albert Leea1af3732006-03-25 17:50:15 +08005366 /* move the HSM */
5367 poll_next = ata_hsm_move(ap, qc, status, 1);
5368
5369 /* another command or interrupt handler
5370 * may be running at this point.
5371 */
5372 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005373 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374}
5375
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 * ata_qc_new - Request an available ATA command, for queueing
5378 * @ap: Port associated with device @dev
5379 * @dev: Device from whom we request an available command structure
5380 *
5381 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005382 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 */
5384
5385static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
5386{
5387 struct ata_queued_cmd *qc = NULL;
5388 unsigned int i;
5389
Tejun Heoe3180492006-05-15 20:58:09 +09005390 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09005391 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09005392 return NULL;
5393
Tejun Heo2ab7db12006-05-15 20:58:02 +09005394 /* the last tag is reserved for internal command. */
5395 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09005396 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09005397 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 break;
5399 }
5400
5401 if (qc)
5402 qc->tag = i;
5403
5404 return qc;
5405}
5406
5407/**
5408 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 * @dev: Device from whom we request an available command structure
5410 *
5411 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005412 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 */
5414
Tejun Heo3373efd2006-05-15 20:57:53 +09005415struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005417 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418 struct ata_queued_cmd *qc;
5419
5420 qc = ata_qc_new(ap);
5421 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422 qc->scsicmd = NULL;
5423 qc->ap = ap;
5424 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05005426 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 }
5428
5429 return qc;
5430}
5431
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432/**
5433 * ata_qc_free - free unused ata_queued_cmd
5434 * @qc: Command to complete
5435 *
5436 * Designed to free unused ata_queued_cmd object
5437 * in case something prevents using it.
5438 *
5439 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005440 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 */
5442void ata_qc_free(struct ata_queued_cmd *qc)
5443{
Tejun Heo4ba946e2006-01-23 13:09:36 +09005444 struct ata_port *ap = qc->ap;
5445 unsigned int tag;
5446
Tejun Heoa46314742006-02-11 19:11:13 +09005447 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448
Tejun Heo4ba946e2006-01-23 13:09:36 +09005449 qc->flags = 0;
5450 tag = qc->tag;
5451 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09005452 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09005453 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09005454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455}
5456
Tejun Heo76014422006-02-11 15:13:49 +09005457void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458{
Tejun Heodedaf2b2006-05-15 21:03:43 +09005459 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005460 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005461
Tejun Heoa46314742006-02-11 19:11:13 +09005462 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
5463 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464
5465 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
5466 ata_sg_clean(qc);
5467
Tejun Heo7401abf2006-05-15 20:57:32 +09005468 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09005469 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005470 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09005471 if (!link->sactive)
5472 ap->nr_active_links--;
5473 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005474 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09005475 ap->nr_active_links--;
5476 }
5477
5478 /* clear exclusive status */
5479 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
5480 ap->excl_link == link))
5481 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09005482
Albert Lee3f3791d2005-08-16 14:25:38 +08005483 /* atapi: mark qc as inactive to prevent the interrupt handler
5484 * from completing the command twice later, before the error handler
5485 * is called. (when rc != 0 and atapi request sense is needed)
5486 */
5487 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005488 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08005489
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09005491 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492}
5493
Tejun Heo39599a52006-11-14 22:37:35 +09005494static void fill_result_tf(struct ata_queued_cmd *qc)
5495{
5496 struct ata_port *ap = qc->ap;
5497
Tejun Heo39599a52006-11-14 22:37:35 +09005498 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04005499 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09005500}
5501
Tejun Heof686bcb2006-05-15 20:58:05 +09005502/**
5503 * ata_qc_complete - Complete an active ATA command
5504 * @qc: Command to complete
5505 * @err_mask: ATA Status register contents
5506 *
5507 * Indicate to the mid and upper layers that an ATA
5508 * command has completed, with either an ok or not-ok status.
5509 *
5510 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005511 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09005512 */
5513void ata_qc_complete(struct ata_queued_cmd *qc)
5514{
5515 struct ata_port *ap = qc->ap;
5516
5517 /* XXX: New EH and old EH use different mechanisms to
5518 * synchronize EH with regular execution path.
5519 *
5520 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
5521 * Normal execution path is responsible for not accessing a
5522 * failed qc. libata core enforces the rule by returning NULL
5523 * from ata_qc_from_tag() for failed qcs.
5524 *
5525 * Old EH depends on ata_qc_complete() nullifying completion
5526 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
5527 * not synchronize with interrupt handler. Only PIO task is
5528 * taken care of.
5529 */
5530 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09005531 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09005532
5533 if (unlikely(qc->err_mask))
5534 qc->flags |= ATA_QCFLAG_FAILED;
5535
5536 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
5537 if (!ata_tag_internal(qc->tag)) {
5538 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09005539 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005540 ata_qc_schedule_eh(qc);
5541 return;
5542 }
5543 }
5544
5545 /* read result TF if requested */
5546 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005547 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005548
5549 __ata_qc_complete(qc);
5550 } else {
5551 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5552 return;
5553
5554 /* read result TF if failed or requested */
5555 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005556 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005557
5558 __ata_qc_complete(qc);
5559 }
5560}
5561
Tejun Heodedaf2b2006-05-15 21:03:43 +09005562/**
5563 * ata_qc_complete_multiple - Complete multiple qcs successfully
5564 * @ap: port in question
5565 * @qc_active: new qc_active mask
5566 * @finish_qc: LLDD callback invoked before completing a qc
5567 *
5568 * Complete in-flight commands. This functions is meant to be
5569 * called from low-level driver's interrupt routine to complete
5570 * requests normally. ap->qc_active and @qc_active is compared
5571 * and commands are completed accordingly.
5572 *
5573 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005574 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005575 *
5576 * RETURNS:
5577 * Number of completed commands on success, -errno otherwise.
5578 */
5579int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
5580 void (*finish_qc)(struct ata_queued_cmd *))
5581{
5582 int nr_done = 0;
5583 u32 done_mask;
5584 int i;
5585
5586 done_mask = ap->qc_active ^ qc_active;
5587
5588 if (unlikely(done_mask & qc_active)) {
5589 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
5590 "(%08x->%08x)\n", ap->qc_active, qc_active);
5591 return -EINVAL;
5592 }
5593
5594 for (i = 0; i < ATA_MAX_QUEUE; i++) {
5595 struct ata_queued_cmd *qc;
5596
5597 if (!(done_mask & (1 << i)))
5598 continue;
5599
5600 if ((qc = ata_qc_from_tag(ap, i))) {
5601 if (finish_qc)
5602 finish_qc(qc);
5603 ata_qc_complete(qc);
5604 nr_done++;
5605 }
5606 }
5607
5608 return nr_done;
5609}
5610
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
5612{
5613 struct ata_port *ap = qc->ap;
5614
5615 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09005616 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617 case ATA_PROT_DMA:
5618 case ATA_PROT_ATAPI_DMA:
5619 return 1;
5620
5621 case ATA_PROT_ATAPI:
5622 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623 if (ap->flags & ATA_FLAG_PIO_DMA)
5624 return 1;
5625
5626 /* fall through */
5627
5628 default:
5629 return 0;
5630 }
5631
5632 /* never reached */
5633}
5634
5635/**
5636 * ata_qc_issue - issue taskfile to device
5637 * @qc: command to issue to device
5638 *
5639 * Prepare an ATA command to submission to device.
5640 * This includes mapping the data into a DMA-able
5641 * area, filling in the S/G table, and finally
5642 * writing the taskfile to hardware, starting the command.
5643 *
5644 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005645 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09005647void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648{
5649 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005650 struct ata_link *link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651
Tejun Heodedaf2b2006-05-15 21:03:43 +09005652 /* Make sure only one non-NCQ command is outstanding. The
5653 * check is skipped for old EH because it reuses active qc to
5654 * request ATAPI sense.
5655 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005656 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09005657
5658 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005659 WARN_ON(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09005660
5661 if (!link->sactive)
5662 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005663 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005664 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005665 WARN_ON(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09005666
5667 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005668 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005669 }
5670
Tejun Heoe4a70e72006-03-31 20:36:47 +09005671 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005672 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005673
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674 if (ata_should_dma_map(qc)) {
5675 if (qc->flags & ATA_QCFLAG_SG) {
5676 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005677 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
5679 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005680 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681 }
5682 } else {
5683 qc->flags &= ~ATA_QCFLAG_DMAMAP;
5684 }
5685
5686 ap->ops->qc_prep(qc);
5687
Tejun Heo8e0e6942006-03-31 20:41:11 +09005688 qc->err_mask |= ap->ops->qc_issue(qc);
5689 if (unlikely(qc->err_mask))
5690 goto err;
5691 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692
Tejun Heo8e436af2006-01-23 13:09:36 +09005693sg_err:
5694 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09005695 qc->err_mask |= AC_ERR_SYSTEM;
5696err:
5697 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698}
5699
5700/**
5701 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
5702 * @qc: command to issue to device
5703 *
5704 * Using various libata functions and hooks, this function
5705 * starts an ATA command. ATA commands are grouped into
5706 * classes called "protocols", and issuing each type of protocol
5707 * is slightly different.
5708 *
Edward Falk0baab862005-06-02 18:17:13 -04005709 * May be used as the qc_issue() entry in ata_port_operations.
5710 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005712 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713 *
5714 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005715 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716 */
5717
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005718unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719{
5720 struct ata_port *ap = qc->ap;
5721
Albert Leee50362e2005-09-27 17:39:50 +08005722 /* Use polling pio if the LLD doesn't handle
5723 * interrupt driven pio and atapi CDB interrupt.
5724 */
5725 if (ap->flags & ATA_FLAG_PIO_POLLING) {
5726 switch (qc->tf.protocol) {
5727 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08005728 case ATA_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08005729 case ATA_PROT_ATAPI:
5730 case ATA_PROT_ATAPI_NODATA:
5731 qc->tf.flags |= ATA_TFLAG_POLLING;
5732 break;
5733 case ATA_PROT_ATAPI_DMA:
5734 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08005735 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08005736 BUG();
5737 break;
5738 default:
5739 break;
5740 }
5741 }
5742
Albert Lee312f7da2005-09-27 17:38:03 +08005743 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744 ata_dev_select(ap, qc->dev->devno, 1, 0);
5745
Albert Lee312f7da2005-09-27 17:38:03 +08005746 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 switch (qc->tf.protocol) {
5748 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005749 if (qc->tf.flags & ATA_TFLAG_POLLING)
5750 ata_qc_set_polling(qc);
5751
Jeff Garzike5338252005-10-30 21:37:17 -05005752 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005753 ap->hsm_task_state = HSM_ST_LAST;
5754
5755 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005756 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005757
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758 break;
5759
5760 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005761 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005762
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5764 ap->ops->bmdma_setup(qc); /* set up bmdma */
5765 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005766 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 break;
5768
Albert Lee312f7da2005-09-27 17:38:03 +08005769 case ATA_PROT_PIO:
5770 if (qc->tf.flags & ATA_TFLAG_POLLING)
5771 ata_qc_set_polling(qc);
5772
Jeff Garzike5338252005-10-30 21:37:17 -05005773 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005774
Albert Lee54f00382005-09-30 19:14:19 +08005775 if (qc->tf.flags & ATA_TFLAG_WRITE) {
5776 /* PIO data out protocol */
5777 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08005778 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08005779
5780 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08005781 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08005782 */
Albert Lee312f7da2005-09-27 17:38:03 +08005783 } else {
Albert Lee54f00382005-09-30 19:14:19 +08005784 /* PIO data in protocol */
5785 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08005786
Albert Lee54f00382005-09-30 19:14:19 +08005787 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005788 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005789
Albert Lee54f00382005-09-30 19:14:19 +08005790 /* if polling, ata_pio_task() handles the rest.
5791 * otherwise, interrupt handler takes over from here.
5792 */
Albert Lee312f7da2005-09-27 17:38:03 +08005793 }
5794
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 break;
5796
5797 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005799 if (qc->tf.flags & ATA_TFLAG_POLLING)
5800 ata_qc_set_polling(qc);
5801
Jeff Garzike5338252005-10-30 21:37:17 -05005802 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05005803
Albert Lee312f7da2005-09-27 17:38:03 +08005804 ap->hsm_task_state = HSM_ST_FIRST;
5805
5806 /* send cdb by polling if no cdb interrupt */
5807 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
5808 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08005809 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 break;
5811
5812 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005813 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005814
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5816 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005817 ap->hsm_task_state = HSM_ST_FIRST;
5818
5819 /* send cdb by polling if no cdb interrupt */
5820 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08005821 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 break;
5823
5824 default:
5825 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005826 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827 }
5828
5829 return 0;
5830}
5831
5832/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833 * ata_host_intr - Handle host interrupt for given (port, task)
5834 * @ap: Port on which interrupt arrived (possibly...)
5835 * @qc: Taskfile currently active in engine
5836 *
5837 * Handle host interrupt for given queued command. Currently,
5838 * only DMA interrupts are handled. All other commands are
5839 * handled via polling with interrupts disabled (nIEN bit).
5840 *
5841 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005842 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843 *
5844 * RETURNS:
5845 * One if interrupt was handled, zero if not (shared irq).
5846 */
5847
5848inline unsigned int ata_host_intr (struct ata_port *ap,
5849 struct ata_queued_cmd *qc)
5850{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005851 struct ata_eh_info *ehi = &ap->link.eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08005852 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853
Albert Lee312f7da2005-09-27 17:38:03 +08005854 VPRINTK("ata%u: protocol %d task_state %d\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005855 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
Albert Lee312f7da2005-09-27 17:38:03 +08005857 /* Check whether we are expecting interrupt in this state */
5858 switch (ap->hsm_task_state) {
5859 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005860 /* Some pre-ATAPI-4 devices assert INTRQ
5861 * at this state when ready to receive CDB.
5862 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863
Albert Lee312f7da2005-09-27 17:38:03 +08005864 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
5865 * The flag was turned on only for atapi devices.
5866 * No need to check is_atapi_taskfile(&qc->tf) again.
5867 */
5868 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870 break;
Albert Lee312f7da2005-09-27 17:38:03 +08005871 case HSM_ST_LAST:
5872 if (qc->tf.protocol == ATA_PROT_DMA ||
5873 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
5874 /* check status of DMA engine */
5875 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005876 VPRINTK("ata%u: host_stat 0x%X\n",
5877 ap->print_id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878
Albert Lee312f7da2005-09-27 17:38:03 +08005879 /* if it's not our irq... */
5880 if (!(host_stat & ATA_DMA_INTR))
5881 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882
Albert Lee312f7da2005-09-27 17:38:03 +08005883 /* before we do anything else, clear DMA-Start bit */
5884 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08005885
5886 if (unlikely(host_stat & ATA_DMA_ERR)) {
5887 /* error when transfering data to/from memory */
5888 qc->err_mask |= AC_ERR_HOST_BUS;
5889 ap->hsm_task_state = HSM_ST_ERR;
5890 }
Albert Lee312f7da2005-09-27 17:38:03 +08005891 }
5892 break;
5893 case HSM_ST:
5894 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895 default:
5896 goto idle_irq;
5897 }
5898
Albert Lee312f7da2005-09-27 17:38:03 +08005899 /* check altstatus */
5900 status = ata_altstatus(ap);
5901 if (status & ATA_BUSY)
5902 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903
Albert Lee312f7da2005-09-27 17:38:03 +08005904 /* check main status, clearing INTRQ */
5905 status = ata_chk_status(ap);
5906 if (unlikely(status & ATA_BUSY))
5907 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908
Albert Lee312f7da2005-09-27 17:38:03 +08005909 /* ack bmdma irq events */
5910 ap->ops->irq_clear(ap);
5911
Albert Leebb5cb292006-03-25 17:48:02 +08005912 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09005913
5914 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
5915 qc->tf.protocol == ATA_PROT_ATAPI_DMA))
5916 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
5917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 return 1; /* irq handled */
5919
5920idle_irq:
5921 ap->stats.idle_irq++;
5922
5923#ifdef ATA_IRQ_TRAP
5924 if ((ap->stats.idle_irq % 1000) == 0) {
Jeff Garzik6d32d302007-08-15 05:38:46 -04005925 ata_chk_status(ap);
5926 ap->ops->irq_clear(ap);
Tejun Heof15a1da2006-05-15 20:57:56 +09005927 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00005928 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 }
5930#endif
5931 return 0; /* irq not handled */
5932}
5933
5934/**
5935 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04005936 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04005937 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005939 * Default interrupt handler for PCI IDE devices. Calls
5940 * ata_host_intr() for each port that is not disabled.
5941 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005943 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944 *
5945 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005946 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 */
5948
David Howells7d12e782006-10-05 14:55:46 +01005949irqreturn_t ata_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950{
Jeff Garzikcca39742006-08-24 03:19:22 -04005951 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952 unsigned int i;
5953 unsigned int handled = 0;
5954 unsigned long flags;
5955
5956 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04005957 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958
Jeff Garzikcca39742006-08-24 03:19:22 -04005959 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960 struct ata_port *ap;
5961
Jeff Garzikcca39742006-08-24 03:19:22 -04005962 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09005963 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04005964 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965 struct ata_queued_cmd *qc;
5966
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005967 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08005968 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08005969 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970 handled |= ata_host_intr(ap, qc);
5971 }
5972 }
5973
Jeff Garzikcca39742006-08-24 03:19:22 -04005974 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
5976 return IRQ_RETVAL(handled);
5977}
5978
Tejun Heo34bf2172006-05-15 20:57:46 +09005979/**
5980 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09005981 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09005982 *
Tejun Heo936fd732007-08-06 18:36:23 +09005983 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09005984 *
5985 * LOCKING:
5986 * None.
5987 *
5988 * RETURNS:
5989 * 1 if SCRs are accessible, 0 otherwise.
5990 */
Tejun Heo936fd732007-08-06 18:36:23 +09005991int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005992{
Tejun Heo936fd732007-08-06 18:36:23 +09005993 struct ata_port *ap = link->ap;
5994
Tejun Heoa16abc02007-05-21 18:33:47 +02005995 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09005996}
5997
5998/**
5999 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09006000 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09006001 * @reg: SCR to read
6002 * @val: Place to store read value
6003 *
Tejun Heo936fd732007-08-06 18:36:23 +09006004 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09006005 * guaranteed to succeed if @link is ap->link, the cable type of
6006 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09006007 *
6008 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09006009 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09006010 *
6011 * RETURNS:
6012 * 0 on success, negative errno on failure.
6013 */
Tejun Heo936fd732007-08-06 18:36:23 +09006014int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09006015{
Tejun Heo633273a32007-09-23 13:19:54 +09006016 if (ata_is_host_link(link)) {
6017 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09006018
Tejun Heo633273a32007-09-23 13:19:54 +09006019 if (sata_scr_valid(link))
6020 return ap->ops->scr_read(ap, reg, val);
6021 return -EOPNOTSUPP;
6022 }
6023
6024 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09006025}
6026
6027/**
6028 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09006029 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09006030 * @reg: SCR to write
6031 * @val: value to write
6032 *
Tejun Heo936fd732007-08-06 18:36:23 +09006033 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09006034 * guaranteed to succeed if @link is ap->link, the cable type of
6035 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09006036 *
6037 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09006038 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09006039 *
6040 * RETURNS:
6041 * 0 on success, negative errno on failure.
6042 */
Tejun Heo936fd732007-08-06 18:36:23 +09006043int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09006044{
Tejun Heo633273a32007-09-23 13:19:54 +09006045 if (ata_is_host_link(link)) {
6046 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09006047
Tejun Heo633273a32007-09-23 13:19:54 +09006048 if (sata_scr_valid(link))
6049 return ap->ops->scr_write(ap, reg, val);
6050 return -EOPNOTSUPP;
6051 }
6052
6053 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09006054}
6055
6056/**
6057 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09006058 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09006059 * @reg: SCR to write
6060 * @val: value to write
6061 *
6062 * This function is identical to sata_scr_write() except that this
6063 * function performs flush after writing to the register.
6064 *
6065 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09006066 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09006067 *
6068 * RETURNS:
6069 * 0 on success, negative errno on failure.
6070 */
Tejun Heo936fd732007-08-06 18:36:23 +09006071int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09006072{
Tejun Heo633273a32007-09-23 13:19:54 +09006073 if (ata_is_host_link(link)) {
6074 struct ata_port *ap = link->ap;
6075 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09006076
Tejun Heo633273a32007-09-23 13:19:54 +09006077 if (sata_scr_valid(link)) {
6078 rc = ap->ops->scr_write(ap, reg, val);
6079 if (rc == 0)
6080 rc = ap->ops->scr_read(ap, reg, &val);
6081 return rc;
6082 }
6083 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09006084 }
Tejun Heo633273a32007-09-23 13:19:54 +09006085
6086 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09006087}
6088
6089/**
Tejun Heo936fd732007-08-06 18:36:23 +09006090 * ata_link_online - test whether the given link is online
6091 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09006092 *
Tejun Heo936fd732007-08-06 18:36:23 +09006093 * Test whether @link is online. Note that this function returns
6094 * 0 if online status of @link cannot be obtained, so
6095 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09006096 *
6097 * LOCKING:
6098 * None.
6099 *
6100 * RETURNS:
6101 * 1 if the port online status is available and online.
6102 */
Tejun Heo936fd732007-08-06 18:36:23 +09006103int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09006104{
6105 u32 sstatus;
6106
Tejun Heo936fd732007-08-06 18:36:23 +09006107 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
6108 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09006109 return 1;
6110 return 0;
6111}
6112
6113/**
Tejun Heo936fd732007-08-06 18:36:23 +09006114 * ata_link_offline - test whether the given link is offline
6115 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09006116 *
Tejun Heo936fd732007-08-06 18:36:23 +09006117 * Test whether @link is offline. Note that this function
6118 * returns 0 if offline status of @link cannot be obtained, so
6119 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09006120 *
6121 * LOCKING:
6122 * None.
6123 *
6124 * RETURNS:
6125 * 1 if the port offline status is available and offline.
6126 */
Tejun Heo936fd732007-08-06 18:36:23 +09006127int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09006128{
6129 u32 sstatus;
6130
Tejun Heo936fd732007-08-06 18:36:23 +09006131 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
6132 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09006133 return 1;
6134 return 0;
6135}
Edward Falk0baab862005-06-02 18:17:13 -04006136
Tejun Heo77b08fb2006-06-24 20:30:19 +09006137int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01006138{
Tejun Heo977e6b92006-06-24 20:30:19 +09006139 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01006140 u8 cmd;
6141
6142 if (!ata_try_flush_cache(dev))
6143 return 0;
6144
Tejun Heo6fc49ad2006-11-11 20:10:45 +09006145 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01006146 cmd = ATA_CMD_FLUSH_EXT;
6147 else
6148 cmd = ATA_CMD_FLUSH;
6149
Alan Cox4f343372007-08-08 14:30:31 +01006150 /* This is wrong. On a failed flush we get back the LBA of the lost
6151 sector and we should (assuming it wasn't aborted as unknown) issue
6152 a further flush command to continue the writeback until it
6153 does not error */
Tejun Heo977e6b92006-06-24 20:30:19 +09006154 err_mask = ata_do_simple_cmd(dev, cmd);
6155 if (err_mask) {
6156 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
6157 return -EIO;
6158 }
6159
6160 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01006161}
6162
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006163#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006164static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
6165 unsigned int action, unsigned int ehi_flags,
6166 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09006167{
6168 unsigned long flags;
6169 int i, rc;
6170
Jeff Garzikcca39742006-08-24 03:19:22 -04006171 for (i = 0; i < host->n_ports; i++) {
6172 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09006173 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09006174
6175 /* Previous resume operation might still be in
6176 * progress. Wait for PM_PENDING to clear.
6177 */
6178 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
6179 ata_port_wait_eh(ap);
6180 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
6181 }
6182
6183 /* request PM ops to EH */
6184 spin_lock_irqsave(ap->lock, flags);
6185
6186 ap->pm_mesg = mesg;
6187 if (wait) {
6188 rc = 0;
6189 ap->pm_result = &rc;
6190 }
6191
6192 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09006193 __ata_port_for_each_link(link, ap) {
6194 link->eh_info.action |= action;
6195 link->eh_info.flags |= ehi_flags;
6196 }
Tejun Heo500530f2006-07-03 16:07:27 +09006197
6198 ata_port_schedule_eh(ap);
6199
6200 spin_unlock_irqrestore(ap->lock, flags);
6201
6202 /* wait and check result */
6203 if (wait) {
6204 ata_port_wait_eh(ap);
6205 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
6206 if (rc)
6207 return rc;
6208 }
6209 }
6210
6211 return 0;
6212}
6213
6214/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006215 * ata_host_suspend - suspend host
6216 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09006217 * @mesg: PM message
6218 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006219 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006220 * function requests EH to perform PM operations and waits for EH
6221 * to finish.
6222 *
6223 * LOCKING:
6224 * Kernel thread context (may sleep).
6225 *
6226 * RETURNS:
6227 * 0 on success, -errno on failure.
6228 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006229int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006230{
Tejun Heo9666f402007-05-04 21:27:47 +02006231 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006232
Jeff Garzikcca39742006-08-24 03:19:22 -04006233 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Tejun Heo9666f402007-05-04 21:27:47 +02006234 if (rc == 0)
6235 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09006236 return rc;
6237}
6238
6239/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006240 * ata_host_resume - resume host
6241 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09006242 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006243 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006244 * function requests EH to perform PM operations and returns.
6245 * Note that all resume operations are performed parallely.
6246 *
6247 * LOCKING:
6248 * Kernel thread context (may sleep).
6249 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006250void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09006251{
Jeff Garzikcca39742006-08-24 03:19:22 -04006252 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
6253 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
6254 host->dev->power.power_state = PMSG_ON;
Tejun Heo500530f2006-07-03 16:07:27 +09006255}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006256#endif
Tejun Heo500530f2006-07-03 16:07:27 +09006257
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006258/**
6259 * ata_port_start - Set port up for dma.
6260 * @ap: Port to initialize
6261 *
6262 * Called just after data structures for each port are
6263 * initialized. Allocates space for PRD table.
6264 *
6265 * May be used as the port_start() entry in ata_port_operations.
6266 *
6267 * LOCKING:
6268 * Inherited from caller.
6269 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006270int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271{
Brian King2f1f6102006-03-23 17:30:15 -06006272 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006273 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274
Tejun Heof0d36ef2007-01-20 16:00:28 +09006275 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
6276 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277 if (!ap->prd)
6278 return -ENOMEM;
6279
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006280 rc = ata_pad_alloc(ap, dev);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006281 if (rc)
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006282 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04006283
Tejun Heof0d36ef2007-01-20 16:00:28 +09006284 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd,
6285 (unsigned long long)ap->prd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286 return 0;
6287}
6288
Edward Falk0baab862005-06-02 18:17:13 -04006289/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09006290 * ata_dev_init - Initialize an ata_device structure
6291 * @dev: Device structure to initialize
6292 *
6293 * Initialize @dev in preparation for probing.
6294 *
6295 * LOCKING:
6296 * Inherited from caller.
6297 */
6298void ata_dev_init(struct ata_device *dev)
6299{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006300 struct ata_link *link = dev->link;
6301 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09006302 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09006303
Tejun Heo5a04bf42006-05-31 18:27:38 +09006304 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006305 link->sata_spd_limit = link->hw_sata_spd_limit;
6306 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006307
Tejun Heo72fa4b72006-05-31 18:27:32 +09006308 /* High bits of dev->flags are used to record warm plug
6309 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04006310 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09006311 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006312 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006313 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09006314 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006315 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006316
6317 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
6318 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09006319 dev->pio_mask = UINT_MAX;
6320 dev->mwdma_mask = UINT_MAX;
6321 dev->udma_mask = UINT_MAX;
6322}
6323
6324/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09006325 * ata_link_init - Initialize an ata_link structure
6326 * @ap: ATA port link is attached to
6327 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09006328 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09006329 *
6330 * Initialize @link.
6331 *
6332 * LOCKING:
6333 * Kernel thread context (may sleep)
6334 */
Tejun Heofb7fd612007-09-23 13:14:12 +09006335void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09006336{
6337 int i;
6338
6339 /* clear everything except for devices */
6340 memset(link, 0, offsetof(struct ata_link, device[0]));
6341
6342 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09006343 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09006344 link->active_tag = ATA_TAG_POISON;
6345 link->hw_sata_spd_limit = UINT_MAX;
6346
6347 /* can't use iterator, ap isn't initialized yet */
6348 for (i = 0; i < ATA_MAX_DEVICES; i++) {
6349 struct ata_device *dev = &link->device[i];
6350
6351 dev->link = link;
6352 dev->devno = dev - link->device;
6353 ata_dev_init(dev);
6354 }
6355}
6356
6357/**
6358 * sata_link_init_spd - Initialize link->sata_spd_limit
6359 * @link: Link to configure sata_spd_limit for
6360 *
6361 * Initialize @link->[hw_]sata_spd_limit to the currently
6362 * configured value.
6363 *
6364 * LOCKING:
6365 * Kernel thread context (may sleep).
6366 *
6367 * RETURNS:
6368 * 0 on success, -errno on failure.
6369 */
Tejun Heofb7fd612007-09-23 13:14:12 +09006370int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09006371{
6372 u32 scontrol, spd;
6373 int rc;
6374
6375 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
6376 if (rc)
6377 return rc;
6378
6379 spd = (scontrol >> 4) & 0xf;
6380 if (spd)
6381 link->hw_sata_spd_limit &= (1 << spd) - 1;
6382
6383 link->sata_spd_limit = link->hw_sata_spd_limit;
6384
6385 return 0;
6386}
6387
6388/**
Tejun Heof3187192007-04-17 23:44:07 +09006389 * ata_port_alloc - allocate and initialize basic ATA port resources
6390 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006391 *
Tejun Heof3187192007-04-17 23:44:07 +09006392 * Allocate and initialize basic ATA port resources.
6393 *
6394 * RETURNS:
6395 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04006396 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006398 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399 */
Tejun Heof3187192007-04-17 23:44:07 +09006400struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401{
Tejun Heof3187192007-04-17 23:44:07 +09006402 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403
Tejun Heof3187192007-04-17 23:44:07 +09006404 DPRINTK("ENTER\n");
6405
6406 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
6407 if (!ap)
6408 return NULL;
6409
Tejun Heof4d6d002007-05-01 11:50:15 +02006410 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04006411 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09006412 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09006413 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04006415 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09006416 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006418
6419#if defined(ATA_VERBOSE_DEBUG)
6420 /* turn on all debugging levels */
6421 ap->msg_enable = 0x00FF;
6422#elif defined(ATA_DEBUG)
6423 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 +09006424#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04006425 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006426#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427
David Howells65f27f32006-11-22 14:55:48 +00006428 INIT_DELAYED_WORK(&ap->port_task, NULL);
6429 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
6430 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09006431 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09006432 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09006433 init_timer_deferrable(&ap->fastdrain_timer);
6434 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
6435 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436
Tejun Heo838df622006-05-15 20:57:44 +09006437 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09006438
Tejun Heo89898052007-08-06 18:36:23 +09006439 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440
6441#ifdef ATA_IRQ_TRAP
6442 ap->stats.unhandled_irq = 1;
6443 ap->stats.idle_irq = 1;
6444#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446}
6447
Tejun Heof0d36ef2007-01-20 16:00:28 +09006448static void ata_host_release(struct device *gendev, void *res)
6449{
6450 struct ata_host *host = dev_get_drvdata(gendev);
6451 int i;
6452
6453 for (i = 0; i < host->n_ports; i++) {
6454 struct ata_port *ap = host->ports[i];
6455
Tejun Heoecef7252007-04-17 23:44:06 +09006456 if (!ap)
6457 continue;
6458
6459 if ((host->flags & ATA_HOST_STARTED) && ap->ops->port_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006460 ap->ops->port_stop(ap);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006461 }
6462
Tejun Heoecef7252007-04-17 23:44:06 +09006463 if ((host->flags & ATA_HOST_STARTED) && host->ops->host_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006464 host->ops->host_stop(host);
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006465
Tejun Heo1aa506e2007-03-09 19:36:12 +09006466 for (i = 0; i < host->n_ports; i++) {
6467 struct ata_port *ap = host->ports[i];
6468
Tejun Heo49114872007-04-17 23:44:06 +09006469 if (!ap)
6470 continue;
6471
6472 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09006473 scsi_host_put(ap->scsi_host);
6474
Tejun Heo633273a32007-09-23 13:19:54 +09006475 kfree(ap->pmp_link);
Tejun Heo49114872007-04-17 23:44:06 +09006476 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09006477 host->ports[i] = NULL;
6478 }
6479
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006480 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006481}
6482
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483/**
Tejun Heof3187192007-04-17 23:44:07 +09006484 * ata_host_alloc - allocate and init basic ATA host resources
6485 * @dev: generic device this host is associated with
6486 * @max_ports: maximum number of ATA ports associated with this host
6487 *
6488 * Allocate and initialize basic ATA host resources. LLD calls
6489 * this function to allocate a host, initializes it fully and
6490 * attaches it using ata_host_register().
6491 *
6492 * @max_ports ports are allocated and host->n_ports is
6493 * initialized to @max_ports. The caller is allowed to decrease
6494 * host->n_ports before calling ata_host_register(). The unused
6495 * ports will be automatically freed on registration.
6496 *
6497 * RETURNS:
6498 * Allocate ATA host on success, NULL on failure.
6499 *
6500 * LOCKING:
6501 * Inherited from calling layer (may sleep).
6502 */
6503struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
6504{
6505 struct ata_host *host;
6506 size_t sz;
6507 int i;
6508
6509 DPRINTK("ENTER\n");
6510
6511 if (!devres_open_group(dev, NULL, GFP_KERNEL))
6512 return NULL;
6513
6514 /* alloc a container for our list of ATA ports (buses) */
6515 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
6516 /* alloc a container for our list of ATA ports (buses) */
6517 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
6518 if (!host)
6519 goto err_out;
6520
6521 devres_add(dev, host);
6522 dev_set_drvdata(dev, host);
6523
6524 spin_lock_init(&host->lock);
6525 host->dev = dev;
6526 host->n_ports = max_ports;
6527
6528 /* allocate ports bound to this host */
6529 for (i = 0; i < max_ports; i++) {
6530 struct ata_port *ap;
6531
6532 ap = ata_port_alloc(host);
6533 if (!ap)
6534 goto err_out;
6535
6536 ap->port_no = i;
6537 host->ports[i] = ap;
6538 }
6539
6540 devres_remove_group(dev, NULL);
6541 return host;
6542
6543 err_out:
6544 devres_release_group(dev, NULL);
6545 return NULL;
6546}
6547
6548/**
Tejun Heof5cda252007-04-17 23:44:07 +09006549 * ata_host_alloc_pinfo - alloc host and init with port_info array
6550 * @dev: generic device this host is associated with
6551 * @ppi: array of ATA port_info to initialize host with
6552 * @n_ports: number of ATA ports attached to this host
6553 *
6554 * Allocate ATA host and initialize with info from @ppi. If NULL
6555 * terminated, @ppi may contain fewer entries than @n_ports. The
6556 * last entry will be used for the remaining ports.
6557 *
6558 * RETURNS:
6559 * Allocate ATA host on success, NULL on failure.
6560 *
6561 * LOCKING:
6562 * Inherited from calling layer (may sleep).
6563 */
6564struct ata_host *ata_host_alloc_pinfo(struct device *dev,
6565 const struct ata_port_info * const * ppi,
6566 int n_ports)
6567{
6568 const struct ata_port_info *pi;
6569 struct ata_host *host;
6570 int i, j;
6571
6572 host = ata_host_alloc(dev, n_ports);
6573 if (!host)
6574 return NULL;
6575
6576 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
6577 struct ata_port *ap = host->ports[i];
6578
6579 if (ppi[j])
6580 pi = ppi[j++];
6581
6582 ap->pio_mask = pi->pio_mask;
6583 ap->mwdma_mask = pi->mwdma_mask;
6584 ap->udma_mask = pi->udma_mask;
6585 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09006586 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09006587 ap->ops = pi->port_ops;
6588
6589 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
6590 host->ops = pi->port_ops;
6591 if (!host->private_data && pi->private_data)
6592 host->private_data = pi->private_data;
6593 }
6594
6595 return host;
6596}
6597
6598/**
Tejun Heoecef7252007-04-17 23:44:06 +09006599 * ata_host_start - start and freeze ports of an ATA host
6600 * @host: ATA host to start ports for
6601 *
6602 * Start and then freeze ports of @host. Started status is
6603 * recorded in host->flags, so this function can be called
6604 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09006605 * once. If host->ops isn't initialized yet, its set to the
6606 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09006607 *
6608 * LOCKING:
6609 * Inherited from calling layer (may sleep).
6610 *
6611 * RETURNS:
6612 * 0 if all ports are started successfully, -errno otherwise.
6613 */
6614int ata_host_start(struct ata_host *host)
6615{
6616 int i, rc;
6617
6618 if (host->flags & ATA_HOST_STARTED)
6619 return 0;
6620
6621 for (i = 0; i < host->n_ports; i++) {
6622 struct ata_port *ap = host->ports[i];
6623
Tejun Heof3187192007-04-17 23:44:07 +09006624 if (!host->ops && !ata_port_is_dummy(ap))
6625 host->ops = ap->ops;
6626
Tejun Heoecef7252007-04-17 23:44:06 +09006627 if (ap->ops->port_start) {
6628 rc = ap->ops->port_start(ap);
6629 if (rc) {
6630 ata_port_printk(ap, KERN_ERR, "failed to "
6631 "start port (errno=%d)\n", rc);
6632 goto err_out;
6633 }
6634 }
6635
6636 ata_eh_freeze_port(ap);
6637 }
6638
6639 host->flags |= ATA_HOST_STARTED;
6640 return 0;
6641
6642 err_out:
6643 while (--i >= 0) {
6644 struct ata_port *ap = host->ports[i];
6645
6646 if (ap->ops->port_stop)
6647 ap->ops->port_stop(ap);
6648 }
6649 return rc;
6650}
6651
6652/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006653 * ata_sas_host_init - Initialize a host struct
6654 * @host: host to initialize
6655 * @dev: device host is attached to
6656 * @flags: host flags
6657 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05006658 *
6659 * LOCKING:
6660 * PCI/etc. bus probe sem.
6661 *
6662 */
Tejun Heof3187192007-04-17 23:44:07 +09006663/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04006664void ata_host_init(struct ata_host *host, struct device *dev,
6665 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05006666{
Jeff Garzikcca39742006-08-24 03:19:22 -04006667 spin_lock_init(&host->lock);
6668 host->dev = dev;
6669 host->flags = flags;
6670 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05006671}
6672
6673/**
Tejun Heof3187192007-04-17 23:44:07 +09006674 * ata_host_register - register initialized ATA host
6675 * @host: ATA host to register
6676 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04006677 *
Tejun Heof3187192007-04-17 23:44:07 +09006678 * Register initialized ATA host. @host is allocated using
6679 * ata_host_alloc() and fully initialized by LLD. This function
6680 * starts ports, registers @host with ATA and SCSI layers and
6681 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682 *
6683 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006684 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685 *
6686 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09006687 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688 */
Tejun Heof3187192007-04-17 23:44:07 +09006689int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690{
Tejun Heof3187192007-04-17 23:44:07 +09006691 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006692
Tejun Heof3187192007-04-17 23:44:07 +09006693 /* host must have been started */
6694 if (!(host->flags & ATA_HOST_STARTED)) {
6695 dev_printk(KERN_ERR, host->dev,
6696 "BUG: trying to register unstarted host\n");
6697 WARN_ON(1);
6698 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01006699 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09006700
Tejun Heof3187192007-04-17 23:44:07 +09006701 /* Blow away unused ports. This happens when LLD can't
6702 * determine the exact number of ports to allocate at
6703 * allocation time.
6704 */
6705 for (i = host->n_ports; host->ports[i]; i++)
6706 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707
Tejun Heof3187192007-04-17 23:44:07 +09006708 /* give ports names and add SCSI hosts */
6709 for (i = 0; i < host->n_ports; i++)
6710 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006711
Tejun Heof3187192007-04-17 23:44:07 +09006712 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006713 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006714 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006715
Tejun Heofafbae82007-05-15 03:28:16 +09006716 /* associate with ACPI nodes */
6717 ata_acpi_associate(host);
6718
Tejun Heof3187192007-04-17 23:44:07 +09006719 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006720 for (i = 0; i < host->n_ports; i++) {
6721 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006722 unsigned long xfer_mask;
6723
6724 /* set SATA cable type if still unset */
6725 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6726 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727
Tejun Heo5a04bf42006-05-31 18:27:38 +09006728 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09006729 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09006730
Tejun Heocbcdd872007-08-18 13:14:55 +09006731 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09006732 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6733 ap->udma_mask);
6734
Tejun Heof3187192007-04-17 23:44:07 +09006735 if (!ata_port_is_dummy(ap))
Tejun Heocbcdd872007-08-18 13:14:55 +09006736 ata_port_printk(ap, KERN_INFO,
6737 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02006738 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09006739 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09006740 ap->link.eh_info.desc);
Tejun Heof3187192007-04-17 23:44:07 +09006741 else
6742 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6743 }
6744
6745 /* perform each probe synchronously */
6746 DPRINTK("probe begin\n");
6747 for (i = 0; i < host->n_ports; i++) {
6748 struct ata_port *ap = host->ports[i];
6749 int rc;
6750
6751 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09006752 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006753 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09006754 unsigned long flags;
6755
6756 ata_port_probe(ap);
6757
6758 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006759 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006760
Tejun Heof58229f2007-08-06 18:36:23 +09006761 ehi->probe_mask =
6762 (1 << ata_link_max_devices(&ap->link)) - 1;
Tejun Heo1cdaf532006-07-03 16:07:26 +09006763 ehi->action |= ATA_EH_SOFTRESET;
6764 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09006765
Tejun Heof4d6d002007-05-01 11:50:15 +02006766 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09006767 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09006768 ata_port_schedule_eh(ap);
6769
Jeff Garzikba6a1302006-06-22 23:46:10 -04006770 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09006771
6772 /* wait for EH to finish */
6773 ata_port_wait_eh(ap);
6774 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09006775 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006776 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09006777 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09006778
6779 if (rc) {
6780 /* FIXME: do something useful here?
6781 * Current libata behavior will
6782 * tear down everything when
6783 * the module is removed
6784 * or the h/w is unplugged.
6785 */
6786 }
6787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788 }
6789
6790 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006791 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04006792 for (i = 0; i < host->n_ports; i++) {
6793 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794
Tejun Heo1ae46312007-07-16 14:29:40 +09006795 ata_scsi_scan_host(ap, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796 }
6797
Tejun Heof3187192007-04-17 23:44:07 +09006798 return 0;
6799}
6800
6801/**
Tejun Heof5cda252007-04-17 23:44:07 +09006802 * ata_host_activate - start host, request IRQ and register it
6803 * @host: target ATA host
6804 * @irq: IRQ to request
6805 * @irq_handler: irq_handler used when requesting IRQ
6806 * @irq_flags: irq_flags used when requesting IRQ
6807 * @sht: scsi_host_template to use when registering the host
6808 *
6809 * After allocating an ATA host and initializing it, most libata
6810 * LLDs perform three steps to activate the host - start host,
6811 * request IRQ and register it. This helper takes necessasry
6812 * arguments and performs the three steps in one go.
6813 *
6814 * LOCKING:
6815 * Inherited from calling layer (may sleep).
6816 *
6817 * RETURNS:
6818 * 0 on success, -errno otherwise.
6819 */
6820int ata_host_activate(struct ata_host *host, int irq,
6821 irq_handler_t irq_handler, unsigned long irq_flags,
6822 struct scsi_host_template *sht)
6823{
Tejun Heocbcdd872007-08-18 13:14:55 +09006824 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09006825
6826 rc = ata_host_start(host);
6827 if (rc)
6828 return rc;
6829
6830 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6831 dev_driver_string(host->dev), host);
6832 if (rc)
6833 return rc;
6834
Tejun Heocbcdd872007-08-18 13:14:55 +09006835 for (i = 0; i < host->n_ports; i++)
6836 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09006837
Tejun Heof5cda252007-04-17 23:44:07 +09006838 rc = ata_host_register(host, sht);
6839 /* if failed, just free the IRQ and leave ports alone */
6840 if (rc)
6841 devm_free_irq(host->dev, irq, host);
6842
6843 return rc;
6844}
6845
6846/**
Tejun Heo720ba122006-05-31 18:28:13 +09006847 * ata_port_detach - Detach ATA port in prepration of device removal
6848 * @ap: ATA port to be detached
6849 *
6850 * Detach all ATA devices and the associated SCSI devices of @ap;
6851 * then, remove the associated SCSI host. @ap is guaranteed to
6852 * be quiescent on return from this function.
6853 *
6854 * LOCKING:
6855 * Kernel thread context (may sleep).
6856 */
6857void ata_port_detach(struct ata_port *ap)
6858{
6859 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09006860 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09006861 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09006862
6863 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006864 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006865
6866 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006867 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006868 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006869 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006870
6871 ata_port_wait_eh(ap);
6872
6873 /* EH is now guaranteed to see UNLOADING, so no new device
6874 * will be attached. Disable all existing devices.
6875 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006876 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006877
Tejun Heo41bda9c2007-08-06 18:36:24 +09006878 ata_port_for_each_link(link, ap) {
6879 ata_link_for_each_dev(dev, link)
6880 ata_dev_disable(dev);
6881 }
Tejun Heo720ba122006-05-31 18:28:13 +09006882
Jeff Garzikba6a1302006-06-22 23:46:10 -04006883 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006884
6885 /* Final freeze & EH. All in-flight commands are aborted. EH
6886 * will be skipped and retrials will be terminated with bad
6887 * target.
6888 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006889 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006890 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006891 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006892
6893 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07006894 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09006895
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006896 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006897 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006898 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006899}
6900
6901/**
Tejun Heo0529c152007-01-20 16:00:26 +09006902 * ata_host_detach - Detach all ports of an ATA host
6903 * @host: Host to detach
6904 *
6905 * Detach all ports of @host.
6906 *
6907 * LOCKING:
6908 * Kernel thread context (may sleep).
6909 */
6910void ata_host_detach(struct ata_host *host)
6911{
6912 int i;
6913
6914 for (i = 0; i < host->n_ports; i++)
6915 ata_port_detach(host->ports[i]);
6916}
6917
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918/**
6919 * ata_std_ports - initialize ioaddr with standard port offsets.
6920 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04006921 *
6922 * Utility function which initializes data_addr, error_addr,
6923 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
6924 * device_addr, status_addr, and command_addr to standard offsets
6925 * relative to cmd_addr.
6926 *
6927 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928 */
Edward Falk0baab862005-06-02 18:17:13 -04006929
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930void ata_std_ports(struct ata_ioports *ioaddr)
6931{
6932 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
6933 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
6934 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
6935 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
6936 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
6937 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
6938 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
6939 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
6940 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
6941 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
6942}
6943
Edward Falk0baab862005-06-02 18:17:13 -04006944
Jeff Garzik374b1872005-08-30 05:42:52 -04006945#ifdef CONFIG_PCI
6946
Edward Falk0baab862005-06-02 18:17:13 -04006947/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948 * ata_pci_remove_one - PCI layer callback for device removal
6949 * @pdev: PCI device that was removed
6950 *
Tejun Heob878ca52007-01-20 16:00:28 +09006951 * PCI layer indicates to libata via this hook that hot-unplug or
6952 * module unload event has occurred. Detach all ports. Resource
6953 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006954 *
6955 * LOCKING:
6956 * Inherited from PCI layer (may sleep).
6957 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006958void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006959{
6960 struct device *dev = pci_dev_to_dev(pdev);
Jeff Garzikcca39742006-08-24 03:19:22 -04006961 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962
Tejun Heob878ca52007-01-20 16:00:28 +09006963 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964}
6965
6966/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006967int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968{
6969 unsigned long tmp = 0;
6970
6971 switch (bits->width) {
6972 case 1: {
6973 u8 tmp8 = 0;
6974 pci_read_config_byte(pdev, bits->reg, &tmp8);
6975 tmp = tmp8;
6976 break;
6977 }
6978 case 2: {
6979 u16 tmp16 = 0;
6980 pci_read_config_word(pdev, bits->reg, &tmp16);
6981 tmp = tmp16;
6982 break;
6983 }
6984 case 4: {
6985 u32 tmp32 = 0;
6986 pci_read_config_dword(pdev, bits->reg, &tmp32);
6987 tmp = tmp32;
6988 break;
6989 }
6990
6991 default:
6992 return -EINVAL;
6993 }
6994
6995 tmp &= bits->mask;
6996
6997 return (tmp == bits->val) ? 1 : 0;
6998}
Jens Axboe9b847542006-01-06 09:28:07 +01006999
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007000#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09007001void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01007002{
7003 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09007004 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09007005
Tejun Heo4c90d972007-02-20 18:14:48 +09007006 if (mesg.event == PM_EVENT_SUSPEND)
Tejun Heo500530f2006-07-03 16:07:27 +09007007 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01007008}
7009
Tejun Heo553c4aa2006-12-26 19:39:50 +09007010int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01007011{
Tejun Heo553c4aa2006-12-26 19:39:50 +09007012 int rc;
7013
Jens Axboe9b847542006-01-06 09:28:07 +01007014 pci_set_power_state(pdev, PCI_D0);
7015 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007016
Tejun Heob878ca52007-01-20 16:00:28 +09007017 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007018 if (rc) {
7019 dev_printk(KERN_ERR, &pdev->dev,
7020 "failed to enable device after resume (%d)\n", rc);
7021 return rc;
7022 }
7023
Jens Axboe9b847542006-01-06 09:28:07 +01007024 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007025 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09007026}
7027
Tejun Heo3c5100c2006-07-26 16:58:33 +09007028int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09007029{
Jeff Garzikcca39742006-08-24 03:19:22 -04007030 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09007031 int rc = 0;
7032
Jeff Garzikcca39742006-08-24 03:19:22 -04007033 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09007034 if (rc)
7035 return rc;
7036
Tejun Heo3c5100c2006-07-26 16:58:33 +09007037 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09007038
7039 return 0;
7040}
7041
7042int ata_pci_device_resume(struct pci_dev *pdev)
7043{
Jeff Garzikcca39742006-08-24 03:19:22 -04007044 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007045 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09007046
Tejun Heo553c4aa2006-12-26 19:39:50 +09007047 rc = ata_pci_device_do_resume(pdev);
7048 if (rc == 0)
7049 ata_host_resume(host);
7050 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01007051}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007052#endif /* CONFIG_PM */
7053
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054#endif /* CONFIG_PCI */
7055
7056
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057static int __init ata_init(void)
7058{
Andrew Mortona8601e52006-06-25 01:36:52 -07007059 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060 ata_wq = create_workqueue("ata");
7061 if (!ata_wq)
7062 return -ENOMEM;
7063
Tejun Heo453b07a2006-05-31 18:27:42 +09007064 ata_aux_wq = create_singlethread_workqueue("ata_aux");
7065 if (!ata_aux_wq) {
7066 destroy_workqueue(ata_wq);
7067 return -ENOMEM;
7068 }
7069
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
7071 return 0;
7072}
7073
7074static void __exit ata_exit(void)
7075{
7076 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09007077 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078}
7079
Brian Kinga4625082006-11-13 16:32:36 -06007080subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081module_exit(ata_exit);
7082
Jeff Garzik67846b32005-10-05 02:58:32 -04007083static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07007084static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04007085
7086int ata_ratelimit(void)
7087{
7088 int rc;
7089 unsigned long flags;
7090
7091 spin_lock_irqsave(&ata_ratelimit_lock, flags);
7092
7093 if (time_after(jiffies, ratelimit_time)) {
7094 rc = 1;
7095 ratelimit_time = jiffies + (HZ/5);
7096 } else
7097 rc = 0;
7098
7099 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
7100
7101 return rc;
7102}
7103
Tejun Heoc22daff2006-04-11 22:22:29 +09007104/**
7105 * ata_wait_register - wait until register value changes
7106 * @reg: IO-mapped register
7107 * @mask: Mask to apply to read register value
7108 * @val: Wait condition
7109 * @interval_msec: polling interval in milliseconds
7110 * @timeout_msec: timeout in milliseconds
7111 *
7112 * Waiting for some bits of register to change is a common
7113 * operation for ATA controllers. This function reads 32bit LE
7114 * IO-mapped register @reg and tests for the following condition.
7115 *
7116 * (*@reg & mask) != val
7117 *
7118 * If the condition is met, it returns; otherwise, the process is
7119 * repeated after @interval_msec until timeout.
7120 *
7121 * LOCKING:
7122 * Kernel thread context (may sleep)
7123 *
7124 * RETURNS:
7125 * The final register value.
7126 */
7127u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
7128 unsigned long interval_msec,
7129 unsigned long timeout_msec)
7130{
7131 unsigned long timeout;
7132 u32 tmp;
7133
7134 tmp = ioread32(reg);
7135
7136 /* Calculate timeout _after_ the first read to make sure
7137 * preceding writes reach the controller before starting to
7138 * eat away the timeout.
7139 */
7140 timeout = jiffies + (timeout_msec * HZ) / 1000;
7141
7142 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
7143 msleep(interval_msec);
7144 tmp = ioread32(reg);
7145 }
7146
7147 return tmp;
7148}
7149
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09007151 * Dummy port_ops
7152 */
7153static void ata_dummy_noret(struct ata_port *ap) { }
7154static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
7155static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
7156
7157static u8 ata_dummy_check_status(struct ata_port *ap)
7158{
7159 return ATA_DRDY;
7160}
7161
7162static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
7163{
7164 return AC_ERR_SYSTEM;
7165}
7166
7167const struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09007168 .check_status = ata_dummy_check_status,
7169 .check_altstatus = ata_dummy_check_status,
7170 .dev_select = ata_noop_dev_select,
7171 .qc_prep = ata_noop_qc_prep,
7172 .qc_issue = ata_dummy_qc_issue,
7173 .freeze = ata_dummy_noret,
7174 .thaw = ata_dummy_noret,
7175 .error_handler = ata_dummy_noret,
7176 .post_internal_cmd = ata_dummy_qc_noret,
7177 .irq_clear = ata_dummy_noret,
7178 .port_start = ata_dummy_ret0,
7179 .port_stop = ata_dummy_noret,
7180};
7181
Tejun Heo21b0ad42007-04-17 23:44:07 +09007182const struct ata_port_info ata_dummy_port_info = {
7183 .port_ops = &ata_dummy_port_ops,
7184};
7185
Tejun Heodd5b06c2006-08-10 16:59:12 +09007186/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007187 * libata is essentially a library of internal helper functions for
7188 * low-level ATA host controller drivers. As such, the API/ABI is
7189 * likely to change as new drivers are added and updated.
7190 * Do not depend on ABI/API stability.
7191 */
7192
Tejun Heoe9c83912006-07-03 16:07:26 +09007193EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
7194EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
7195EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09007196EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09007197EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007198EXPORT_SYMBOL_GPL(ata_std_bios_param);
7199EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04007200EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09007201EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09007202EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09007203EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09007204EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09007205EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09007206EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207EXPORT_SYMBOL_GPL(ata_sg_init);
7208EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09007209EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09007210EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09007211EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007213EXPORT_SYMBOL_GPL(ata_tf_load);
7214EXPORT_SYMBOL_GPL(ata_tf_read);
7215EXPORT_SYMBOL_GPL(ata_noop_dev_select);
7216EXPORT_SYMBOL_GPL(ata_std_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05007217EXPORT_SYMBOL_GPL(sata_print_link_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218EXPORT_SYMBOL_GPL(ata_tf_to_fis);
7219EXPORT_SYMBOL_GPL(ata_tf_from_fis);
7220EXPORT_SYMBOL_GPL(ata_check_status);
7221EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007222EXPORT_SYMBOL_GPL(ata_exec_command);
7223EXPORT_SYMBOL_GPL(ata_port_start);
Alan Coxd92e74d2007-06-07 16:19:15 +01007224EXPORT_SYMBOL_GPL(ata_sff_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225EXPORT_SYMBOL_GPL(ata_interrupt);
Alan04351822007-03-06 02:37:52 -08007226EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo0d5ff562007-02-01 15:06:36 +09007227EXPORT_SYMBOL_GPL(ata_data_xfer);
7228EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Tejun Heo31cc23b2007-09-23 13:14:12 +09007229EXPORT_SYMBOL_GPL(ata_std_qc_defer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007230EXPORT_SYMBOL_GPL(ata_qc_prep);
Alan Coxd26fc952007-07-06 19:13:52 -04007231EXPORT_SYMBOL_GPL(ata_dumb_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06007232EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007233EXPORT_SYMBOL_GPL(ata_bmdma_setup);
7234EXPORT_SYMBOL_GPL(ata_bmdma_start);
7235EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
7236EXPORT_SYMBOL_GPL(ata_bmdma_status);
7237EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09007238EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
7239EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
7240EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
7241EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
7242EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00007244EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09007245EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heo936fd732007-08-06 18:36:23 +09007246EXPORT_SYMBOL_GPL(sata_link_debounce);
7247EXPORT_SYMBOL_GPL(sata_link_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007248EXPORT_SYMBOL_GPL(sata_phy_reset);
7249EXPORT_SYMBOL_GPL(__sata_phy_reset);
7250EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09007251EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007252EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heocc0680a2007-08-06 18:36:23 +09007253EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007254EXPORT_SYMBOL_GPL(sata_std_hardreset);
7255EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05007256EXPORT_SYMBOL_GPL(ata_dev_classify);
7257EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007258EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04007259EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09007260EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09007261EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heod4b2bab2007-02-02 16:50:52 +09007262EXPORT_SYMBOL_GPL(ata_wait_ready);
Tejun Heo86e45b62006-03-05 15:29:09 +09007263EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
7265EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007266EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09007267EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09007268EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007269EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09007270EXPORT_SYMBOL_GPL(sata_scr_valid);
7271EXPORT_SYMBOL_GPL(sata_scr_read);
7272EXPORT_SYMBOL_GPL(sata_scr_write);
7273EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09007274EXPORT_SYMBOL_GPL(ata_link_online);
7275EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007276#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04007277EXPORT_SYMBOL_GPL(ata_host_suspend);
7278EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007279#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09007280EXPORT_SYMBOL_GPL(ata_id_string);
7281EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan10305f02007-02-20 18:01:59 +00007282EXPORT_SYMBOL_GPL(ata_id_to_dma_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283EXPORT_SYMBOL_GPL(ata_scsi_simulate);
7284
Alan Cox1bc4ccf2006-01-09 17:18:14 +00007285EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04007286EXPORT_SYMBOL_GPL(ata_timing_compute);
7287EXPORT_SYMBOL_GPL(ata_timing_merge);
7288
Linus Torvalds1da177e2005-04-16 15:20:36 -07007289#ifdef CONFIG_PCI
7290EXPORT_SYMBOL_GPL(pci_test_config_bits);
Tejun Heod583bc12007-07-04 18:02:07 +09007291EXPORT_SYMBOL_GPL(ata_pci_init_sff_host);
Tejun Heo1626aeb2007-05-04 12:43:58 +02007292EXPORT_SYMBOL_GPL(ata_pci_init_bmdma);
Tejun Heod583bc12007-07-04 18:02:07 +09007293EXPORT_SYMBOL_GPL(ata_pci_prepare_sff_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294EXPORT_SYMBOL_GPL(ata_pci_init_one);
7295EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007296#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09007297EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
7298EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01007299EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
7300EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007301#endif /* CONFIG_PM */
Alan Cox67951ad2006-03-22 15:55:54 +00007302EXPORT_SYMBOL_GPL(ata_pci_default_filter);
7303EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01007305
Tejun Heo31f88382007-09-23 13:19:54 +09007306EXPORT_SYMBOL_GPL(sata_pmp_qc_defer_cmd_switch);
Tejun Heo3af9a772007-09-23 13:19:54 +09007307EXPORT_SYMBOL_GPL(sata_pmp_read_init_tf);
7308EXPORT_SYMBOL_GPL(sata_pmp_read_val);
7309EXPORT_SYMBOL_GPL(sata_pmp_write_init_tf);
7310EXPORT_SYMBOL_GPL(sata_pmp_std_prereset);
7311EXPORT_SYMBOL_GPL(sata_pmp_std_hardreset);
7312EXPORT_SYMBOL_GPL(sata_pmp_std_postreset);
7313EXPORT_SYMBOL_GPL(sata_pmp_do_eh);
7314
Tejun Heob64bbc32007-07-16 14:29:39 +09007315EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
7316EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
7317EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09007318EXPORT_SYMBOL_GPL(ata_port_desc);
7319#ifdef CONFIG_PCI
7320EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
7321#endif /* CONFIG_PCI */
Tejun Heoece1d632006-04-02 18:51:53 +09007322EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007323EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09007324EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007325EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09007326EXPORT_SYMBOL_GPL(ata_port_freeze);
Tejun Heo7d77b242007-09-23 13:14:13 +09007327EXPORT_SYMBOL_GPL(sata_async_notification);
Tejun Heoe3180492006-05-15 20:58:09 +09007328EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
7329EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09007330EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
7331EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09007332EXPORT_SYMBOL_GPL(ata_do_eh);
Akira Iguchi83625002007-01-26 16:27:32 +09007333EXPORT_SYMBOL_GPL(ata_irq_on);
Akira Iguchia619f981b2007-01-26 16:28:18 +09007334EXPORT_SYMBOL_GPL(ata_dev_try_classify);
Alan Coxbe0d18d2007-03-06 02:37:56 -08007335
7336EXPORT_SYMBOL_GPL(ata_cable_40wire);
7337EXPORT_SYMBOL_GPL(ata_cable_80wire);
7338EXPORT_SYMBOL_GPL(ata_cable_unknown);
7339EXPORT_SYMBOL_GPL(ata_cable_sata);