blob: b01b5a897dcfdb78ac5710f06b5e221c13da040c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/kernel.h>
36#include <linux/module.h>
37#include <linux/pci.h>
38#include <linux/init.h>
39#include <linux/list.h>
40#include <linux/mm.h>
41#include <linux/highmem.h>
42#include <linux/spinlock.h>
43#include <linux/blkdev.h>
44#include <linux/delay.h>
45#include <linux/timer.h>
46#include <linux/interrupt.h>
47#include <linux/completion.h>
48#include <linux/suspend.h>
49#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040050#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100051#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050053#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <scsi/scsi_host.h>
55#include <linux/libata.h>
56#include <asm/io.h>
57#include <asm/semaphore.h>
58#include <asm/byteorder.h>
59
60#include "libata.h"
61
Jeff Garzik8bc3fc42007-05-21 20:26:38 -040062#define DRV_VERSION "2.21" /* must be exactly four chars */
Jeff Garzikfda0efc2007-01-31 07:43:15 -050063
64
Tejun Heod7bb4cc2006-05-31 18:27:46 +090065/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090066const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
67const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
68const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090069
Tejun Heo3373efd2006-05-15 20:57:53 +090070static unsigned int ata_dev_init_params(struct ata_device *dev,
71 u16 heads, u16 sectors);
72static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -040073static unsigned int ata_dev_set_AN(struct ata_device *dev, u8 enable);
Tejun Heo3373efd2006-05-15 20:57:53 +090074static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090075static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Tejun Heof3187192007-04-17 23:44:07 +090077unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static struct workqueue_struct *ata_wq;
79
Tejun Heo453b07a2006-05-31 18:27:42 +090080struct workqueue_struct *ata_aux_wq;
81
Jeff Garzik418dc1f2006-03-11 20:50:08 -050082int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -040083module_param(atapi_enabled, int, 0444);
84MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
85
Albert Lee95de7192006-04-04 10:57:18 +080086int atapi_dmadir = 0;
87module_param(atapi_dmadir, int, 0444);
88MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
89
Mark Lordbaf4fdf2007-08-08 01:08:45 +090090int atapi_passthru16 = 1;
91module_param(atapi_passthru16, int, 0444);
92MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
93
Jeff Garzikc3c013a2006-02-27 22:31:19 -050094int libata_fua = 0;
95module_param_named(fua, libata_fua, int, 0444);
96MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
97
Alan Cox1e999732007-04-11 00:23:13 +010098static int ata_ignore_hpa = 0;
99module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
100MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
101
Andrew Mortona8601e52006-06-25 01:36:52 -0700102static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
103module_param(ata_probe_timeout, int, 0444);
104MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
105
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400106int libata_noacpi = 1;
107module_param_named(noacpi, libata_noacpi, int, 0444);
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700108MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in suspend/resume when set");
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110MODULE_AUTHOR("Jeff Garzik");
111MODULE_DESCRIPTION("Library module for ATA devices");
112MODULE_LICENSE("GPL");
113MODULE_VERSION(DRV_VERSION);
114
Edward Falk0baab862005-06-02 18:17:13 -0400115
116/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
118 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900120 * @is_cmd: This FIS is for command
121 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 *
123 * Converts a standard ATA taskfile to a Serial ATA
124 * FIS structure (Register - Host to Device).
125 *
126 * LOCKING:
127 * Inherited from caller.
128 */
Tejun Heo99771262007-07-16 14:29:38 +0900129void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Tejun Heo99771262007-07-16 14:29:38 +0900131 fis[0] = 0x27; /* Register - Host to Device FIS */
132 fis[1] = pmp & 0xf; /* Port multiplier number*/
133 if (is_cmd)
134 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 fis[2] = tf->command;
137 fis[3] = tf->feature;
138
139 fis[4] = tf->lbal;
140 fis[5] = tf->lbam;
141 fis[6] = tf->lbah;
142 fis[7] = tf->device;
143
144 fis[8] = tf->hob_lbal;
145 fis[9] = tf->hob_lbam;
146 fis[10] = tf->hob_lbah;
147 fis[11] = tf->hob_feature;
148
149 fis[12] = tf->nsect;
150 fis[13] = tf->hob_nsect;
151 fis[14] = 0;
152 fis[15] = tf->ctl;
153
154 fis[16] = 0;
155 fis[17] = 0;
156 fis[18] = 0;
157 fis[19] = 0;
158}
159
160/**
161 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
162 * @fis: Buffer from which data will be input
163 * @tf: Taskfile to output
164 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500165 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 *
167 * LOCKING:
168 * Inherited from caller.
169 */
170
Jeff Garzik057ace52005-10-22 14:27:05 -0400171void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 tf->command = fis[2]; /* status */
174 tf->feature = fis[3]; /* error */
175
176 tf->lbal = fis[4];
177 tf->lbam = fis[5];
178 tf->lbah = fis[6];
179 tf->device = fis[7];
180
181 tf->hob_lbal = fis[8];
182 tf->hob_lbam = fis[9];
183 tf->hob_lbah = fis[10];
184
185 tf->nsect = fis[12];
186 tf->hob_nsect = fis[13];
187}
188
Albert Lee8cbd6df2005-10-12 15:06:27 +0800189static const u8 ata_rw_cmds[] = {
190 /* pio multi */
191 ATA_CMD_READ_MULTI,
192 ATA_CMD_WRITE_MULTI,
193 ATA_CMD_READ_MULTI_EXT,
194 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100195 0,
196 0,
197 0,
198 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800199 /* pio */
200 ATA_CMD_PIO_READ,
201 ATA_CMD_PIO_WRITE,
202 ATA_CMD_PIO_READ_EXT,
203 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100204 0,
205 0,
206 0,
207 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800208 /* dma */
209 ATA_CMD_READ,
210 ATA_CMD_WRITE,
211 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100212 ATA_CMD_WRITE_EXT,
213 0,
214 0,
215 0,
216 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800217};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800220 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900221 * @tf: command to examine and configure
222 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500224 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800225 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 *
227 * LOCKING:
228 * caller.
229 */
Tejun Heobd056d72006-11-14 22:47:10 +0900230static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100232 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100234 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500235
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100236 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800237 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
238 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Albert Lee8cbd6df2005-10-12 15:06:27 +0800240 if (dev->flags & ATA_DFLAG_PIO) {
241 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100242 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900243 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000244 /* Unable to use DMA due to host limitation */
245 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800246 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800247 } else {
248 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100249 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100252 cmd = ata_rw_cmds[index + fua + lba48 + write];
253 if (cmd) {
254 tf->command = cmd;
255 return 0;
256 }
257 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Tejun Heocb95d562006-03-06 04:31:56 +0900260/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900261 * ata_tf_read_block - Read block address from ATA taskfile
262 * @tf: ATA taskfile of interest
263 * @dev: ATA device @tf belongs to
264 *
265 * LOCKING:
266 * None.
267 *
268 * Read block address from @tf. This function can handle all
269 * three address formats - LBA, LBA48 and CHS. tf->protocol and
270 * flags select the address format to use.
271 *
272 * RETURNS:
273 * Block address read from @tf.
274 */
275u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
276{
277 u64 block = 0;
278
279 if (tf->flags & ATA_TFLAG_LBA) {
280 if (tf->flags & ATA_TFLAG_LBA48) {
281 block |= (u64)tf->hob_lbah << 40;
282 block |= (u64)tf->hob_lbam << 32;
283 block |= tf->hob_lbal << 24;
284 } else
285 block |= (tf->device & 0xf) << 24;
286
287 block |= tf->lbah << 16;
288 block |= tf->lbam << 8;
289 block |= tf->lbal;
290 } else {
291 u32 cyl, head, sect;
292
293 cyl = tf->lbam | (tf->lbah << 8);
294 head = tf->device & 0xf;
295 sect = tf->lbal;
296
297 block = (cyl * dev->heads + head) * dev->sectors + sect;
298 }
299
300 return block;
301}
302
303/**
Tejun Heobd056d72006-11-14 22:47:10 +0900304 * ata_build_rw_tf - Build ATA taskfile for given read/write request
305 * @tf: Target ATA taskfile
306 * @dev: ATA device @tf belongs to
307 * @block: Block address
308 * @n_block: Number of blocks
309 * @tf_flags: RW/FUA etc...
310 * @tag: tag
311 *
312 * LOCKING:
313 * None.
314 *
315 * Build ATA taskfile @tf for read/write request described by
316 * @block, @n_block, @tf_flags and @tag on @dev.
317 *
318 * RETURNS:
319 *
320 * 0 on success, -ERANGE if the request is too large for @dev,
321 * -EINVAL if the request is invalid.
322 */
323int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
324 u64 block, u32 n_block, unsigned int tf_flags,
325 unsigned int tag)
326{
327 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
328 tf->flags |= tf_flags;
329
Tejun Heo6d1245b2007-02-20 23:20:27 +0900330 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900331 /* yay, NCQ */
332 if (!lba_48_ok(block, n_block))
333 return -ERANGE;
334
335 tf->protocol = ATA_PROT_NCQ;
336 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
337
338 if (tf->flags & ATA_TFLAG_WRITE)
339 tf->command = ATA_CMD_FPDMA_WRITE;
340 else
341 tf->command = ATA_CMD_FPDMA_READ;
342
343 tf->nsect = tag << 3;
344 tf->hob_feature = (n_block >> 8) & 0xff;
345 tf->feature = n_block & 0xff;
346
347 tf->hob_lbah = (block >> 40) & 0xff;
348 tf->hob_lbam = (block >> 32) & 0xff;
349 tf->hob_lbal = (block >> 24) & 0xff;
350 tf->lbah = (block >> 16) & 0xff;
351 tf->lbam = (block >> 8) & 0xff;
352 tf->lbal = block & 0xff;
353
354 tf->device = 1 << 6;
355 if (tf->flags & ATA_TFLAG_FUA)
356 tf->device |= 1 << 7;
357 } else if (dev->flags & ATA_DFLAG_LBA) {
358 tf->flags |= ATA_TFLAG_LBA;
359
360 if (lba_28_ok(block, n_block)) {
361 /* use LBA28 */
362 tf->device |= (block >> 24) & 0xf;
363 } else if (lba_48_ok(block, n_block)) {
364 if (!(dev->flags & ATA_DFLAG_LBA48))
365 return -ERANGE;
366
367 /* use LBA48 */
368 tf->flags |= ATA_TFLAG_LBA48;
369
370 tf->hob_nsect = (n_block >> 8) & 0xff;
371
372 tf->hob_lbah = (block >> 40) & 0xff;
373 tf->hob_lbam = (block >> 32) & 0xff;
374 tf->hob_lbal = (block >> 24) & 0xff;
375 } else
376 /* request too large even for LBA48 */
377 return -ERANGE;
378
379 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
380 return -EINVAL;
381
382 tf->nsect = n_block & 0xff;
383
384 tf->lbah = (block >> 16) & 0xff;
385 tf->lbam = (block >> 8) & 0xff;
386 tf->lbal = block & 0xff;
387
388 tf->device |= ATA_LBA;
389 } else {
390 /* CHS */
391 u32 sect, head, cyl, track;
392
393 /* The request -may- be too large for CHS addressing. */
394 if (!lba_28_ok(block, n_block))
395 return -ERANGE;
396
397 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
398 return -EINVAL;
399
400 /* Convert LBA to CHS */
401 track = (u32)block / dev->sectors;
402 cyl = track / dev->heads;
403 head = track % dev->heads;
404 sect = (u32)block % dev->sectors + 1;
405
406 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
407 (u32)block, track, cyl, head, sect);
408
409 /* Check whether the converted CHS can fit.
410 Cylinder: 0-65535
411 Head: 0-15
412 Sector: 1-255*/
413 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
414 return -ERANGE;
415
416 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
417 tf->lbal = sect;
418 tf->lbam = cyl;
419 tf->lbah = cyl >> 8;
420 tf->device |= head;
421 }
422
423 return 0;
424}
425
426/**
Tejun Heocb95d562006-03-06 04:31:56 +0900427 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
428 * @pio_mask: pio_mask
429 * @mwdma_mask: mwdma_mask
430 * @udma_mask: udma_mask
431 *
432 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
433 * unsigned int xfer_mask.
434 *
435 * LOCKING:
436 * None.
437 *
438 * RETURNS:
439 * Packed xfer_mask.
440 */
441static unsigned int ata_pack_xfermask(unsigned int pio_mask,
442 unsigned int mwdma_mask,
443 unsigned int udma_mask)
444{
445 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
446 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
447 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
448}
449
Tejun Heoc0489e42006-03-24 14:07:49 +0900450/**
451 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
452 * @xfer_mask: xfer_mask to unpack
453 * @pio_mask: resulting pio_mask
454 * @mwdma_mask: resulting mwdma_mask
455 * @udma_mask: resulting udma_mask
456 *
457 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
458 * Any NULL distination masks will be ignored.
459 */
460static void ata_unpack_xfermask(unsigned int xfer_mask,
461 unsigned int *pio_mask,
462 unsigned int *mwdma_mask,
463 unsigned int *udma_mask)
464{
465 if (pio_mask)
466 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
467 if (mwdma_mask)
468 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
469 if (udma_mask)
470 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
471}
472
Tejun Heocb95d562006-03-06 04:31:56 +0900473static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900474 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900475 u8 base;
476} ata_xfer_tbl[] = {
477 { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 },
478 { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 },
479 { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 },
480 { -1, },
481};
482
483/**
484 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
485 * @xfer_mask: xfer_mask of interest
486 *
487 * Return matching XFER_* value for @xfer_mask. Only the highest
488 * bit of @xfer_mask is considered.
489 *
490 * LOCKING:
491 * None.
492 *
493 * RETURNS:
494 * Matching XFER_* value, 0 if no match found.
495 */
496static u8 ata_xfer_mask2mode(unsigned int xfer_mask)
497{
498 int highbit = fls(xfer_mask) - 1;
499 const struct ata_xfer_ent *ent;
500
501 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
502 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
503 return ent->base + highbit - ent->shift;
504 return 0;
505}
506
507/**
508 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
509 * @xfer_mode: XFER_* of interest
510 *
511 * Return matching xfer_mask for @xfer_mode.
512 *
513 * LOCKING:
514 * None.
515 *
516 * RETURNS:
517 * Matching xfer_mask, 0 if no match found.
518 */
519static unsigned int ata_xfer_mode2mask(u8 xfer_mode)
520{
521 const struct ata_xfer_ent *ent;
522
523 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
524 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
525 return 1 << (ent->shift + xfer_mode - ent->base);
526 return 0;
527}
528
529/**
530 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
531 * @xfer_mode: XFER_* of interest
532 *
533 * Return matching xfer_shift for @xfer_mode.
534 *
535 * LOCKING:
536 * None.
537 *
538 * RETURNS:
539 * Matching xfer_shift, -1 if no match found.
540 */
541static int ata_xfer_mode2shift(unsigned int xfer_mode)
542{
543 const struct ata_xfer_ent *ent;
544
545 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
546 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
547 return ent->shift;
548 return -1;
549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900552 * ata_mode_string - convert xfer_mask to string
553 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 *
555 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900556 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 *
558 * LOCKING:
559 * None.
560 *
561 * RETURNS:
562 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900563 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 */
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900565static const char *ata_mode_string(unsigned int xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Tejun Heo75f554b2006-03-06 04:31:57 +0900567 static const char * const xfer_mode_str[] = {
568 "PIO0",
569 "PIO1",
570 "PIO2",
571 "PIO3",
572 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100573 "PIO5",
574 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900575 "MWDMA0",
576 "MWDMA1",
577 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100578 "MWDMA3",
579 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900580 "UDMA/16",
581 "UDMA/25",
582 "UDMA/33",
583 "UDMA/44",
584 "UDMA/66",
585 "UDMA/100",
586 "UDMA/133",
587 "UDMA7",
588 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900589 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900591 highbit = fls(xfer_mask) - 1;
592 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
593 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Tejun Heo4c360c82006-04-01 01:38:17 +0900597static const char *sata_spd_string(unsigned int spd)
598{
599 static const char * const spd_str[] = {
600 "1.5 Gbps",
601 "3.0 Gbps",
602 };
603
604 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
605 return "<unknown>";
606 return spd_str[spd - 1];
607}
608
Tejun Heo3373efd2006-05-15 20:57:53 +0900609void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900610{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900611 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900612 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900613 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo4ae72a12007-02-02 16:22:30 +0900614 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
615 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900616 dev->class++;
617 }
618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 * ata_devchk - PATA device presence detection
622 * @ap: ATA channel to examine
623 * @device: Device to examine (starting at zero)
624 *
Tejun Heo0d5ff562007-02-01 15:06:36 +0900625 * This technique was originally described in
626 * Hale Landis's ATADRVR (www.ata-atapi.com), and
627 * later found its way into the ATA/ATAPI spec.
628 *
629 * Write a pattern to the ATA shadow registers,
630 * and if a device is present, it will respond by
631 * correctly storing and echoing back the
632 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 *
634 * LOCKING:
635 * caller.
636 */
637
Tejun Heo0d5ff562007-02-01 15:06:36 +0900638static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Tejun Heo0d5ff562007-02-01 15:06:36 +0900640 struct ata_ioports *ioaddr = &ap->ioaddr;
641 u8 nsect, lbal;
642
643 ap->ops->dev_select(ap, device);
644
645 iowrite8(0x55, ioaddr->nsect_addr);
646 iowrite8(0xaa, ioaddr->lbal_addr);
647
648 iowrite8(0xaa, ioaddr->nsect_addr);
649 iowrite8(0x55, ioaddr->lbal_addr);
650
651 iowrite8(0x55, ioaddr->nsect_addr);
652 iowrite8(0xaa, ioaddr->lbal_addr);
653
654 nsect = ioread8(ioaddr->nsect_addr);
655 lbal = ioread8(ioaddr->lbal_addr);
656
657 if ((nsect == 0x55) && (lbal == 0xaa))
658 return 1; /* we found a device */
659
660 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663/**
664 * ata_dev_classify - determine device type based on ATA-spec signature
665 * @tf: ATA taskfile register set for device to be identified
666 *
667 * Determine from taskfile register contents whether a device is
668 * ATA or ATAPI, as per "Signature and persistence" section
669 * of ATA/PI spec (volume 1, sect 5.14).
670 *
671 * LOCKING:
672 * None.
673 *
674 * RETURNS:
675 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN
676 * the event of failure.
677 */
678
Jeff Garzik057ace52005-10-22 14:27:05 -0400679unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 /* Apple's open source Darwin code hints that some devices only
682 * put a proper signature into the LBA mid/high registers,
683 * So, we only check those. It's sufficient for uniqueness.
684 */
685
686 if (((tf->lbam == 0) && (tf->lbah == 0)) ||
687 ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
688 DPRINTK("found ATA device by sig\n");
689 return ATA_DEV_ATA;
690 }
691
692 if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) ||
693 ((tf->lbam == 0x69) && (tf->lbah == 0x96))) {
694 DPRINTK("found ATAPI device by sig\n");
695 return ATA_DEV_ATAPI;
696 }
697
698 DPRINTK("unknown device\n");
699 return ATA_DEV_UNKNOWN;
700}
701
702/**
703 * ata_dev_try_classify - Parse returned ATA device signature
704 * @ap: ATA channel to examine
705 * @device: Device to examine (starting at zero)
Tejun Heob4dc7622006-01-24 17:05:22 +0900706 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 *
708 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
709 * an ATA/ATAPI-defined set of values is placed in the ATA
710 * shadow registers, indicating the results of device detection
711 * and diagnostics.
712 *
713 * Select the ATA device, and read the values from the ATA shadow
714 * registers. Then parse according to the Error register value,
715 * and the spec-defined values examined by ata_dev_classify().
716 *
717 * LOCKING:
718 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +0900719 *
720 * RETURNS:
721 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 */
723
Akira Iguchia619f981b2007-01-26 16:28:18 +0900724unsigned int
Tejun Heob4dc7622006-01-24 17:05:22 +0900725ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct ata_taskfile tf;
728 unsigned int class;
729 u8 err;
730
731 ap->ops->dev_select(ap, device);
732
733 memset(&tf, 0, sizeof(tf));
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -0400736 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +0900737 if (r_err)
738 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Alan Cox93590852006-09-12 16:55:12 +0100740 /* see if device passed diags: if master then continue and warn later */
741 if (err == 0 && device == 0)
742 /* diagnostic fail : do nothing _YET_ */
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900743 ap->link.device[device].horkage |= ATA_HORKAGE_DIAGNOSTIC;
Alan Cox93590852006-09-12 16:55:12 +0100744 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 /* do nothing */ ;
746 else if ((device == 0) && (err == 0x81))
747 /* do nothing */ ;
748 else
Tejun Heob4dc7622006-01-24 17:05:22 +0900749 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Tejun Heob4dc7622006-01-24 17:05:22 +0900751 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +0900753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (class == ATA_DEV_UNKNOWN)
Tejun Heob4dc7622006-01-24 17:05:22 +0900755 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
Tejun Heob4dc7622006-01-24 17:05:22 +0900757 return ATA_DEV_NONE;
758 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
761/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900762 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * @id: IDENTIFY DEVICE results we will examine
764 * @s: string into which data is output
765 * @ofs: offset into identify device page
766 * @len: length of string to return. must be an even number.
767 *
768 * The strings in the IDENTIFY DEVICE page are broken up into
769 * 16-bit chunks. Run through the string, and output each
770 * 8-bit chunk linearly, regardless of platform.
771 *
772 * LOCKING:
773 * caller.
774 */
775
Tejun Heo6a62a042006-02-13 10:02:46 +0900776void ata_id_string(const u16 *id, unsigned char *s,
777 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
779 unsigned int c;
780
781 while (len > 0) {
782 c = id[ofs] >> 8;
783 *s = c;
784 s++;
785
786 c = id[ofs] & 0xff;
787 *s = c;
788 s++;
789
790 ofs++;
791 len -= 2;
792 }
793}
794
Tejun Heo0e949ff2006-02-12 22:47:04 +0900795/**
Tejun Heo6a62a042006-02-13 10:02:46 +0900796 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +0900797 * @id: IDENTIFY DEVICE results we will examine
798 * @s: string into which data is output
799 * @ofs: offset into identify device page
800 * @len: length of string to return. must be an odd number.
801 *
Tejun Heo6a62a042006-02-13 10:02:46 +0900802 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +0900803 * trims trailing spaces and terminates the resulting string with
804 * null. @len must be actual maximum length (even number) + 1.
805 *
806 * LOCKING:
807 * caller.
808 */
Tejun Heo6a62a042006-02-13 10:02:46 +0900809void ata_id_c_string(const u16 *id, unsigned char *s,
810 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +0900811{
812 unsigned char *p;
813
814 WARN_ON(!(len & 1));
815
Tejun Heo6a62a042006-02-13 10:02:46 +0900816 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +0900817
818 p = s + strnlen(s, len - 1);
819 while (p > s && p[-1] == ' ')
820 p--;
821 *p = '\0';
822}
Edward Falk0baab862005-06-02 18:17:13 -0400823
Tejun Heodb6f8752007-09-03 12:31:58 +0900824static u64 ata_id_n_sectors(const u16 *id)
825{
826 if (ata_id_has_lba(id)) {
827 if (ata_id_has_lba48(id))
828 return ata_id_u64(id, 100);
829 else
830 return ata_id_u32(id, 60);
831 } else {
832 if (ata_id_current_chs_valid(id))
833 return ata_id_u32(id, 57);
834 else
835 return id[1] * id[3] * id[6];
836 }
837}
838
Alan Cox1e999732007-04-11 00:23:13 +0100839static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
840{
841 u64 sectors = 0;
842
843 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
844 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
845 sectors |= (tf->hob_lbal & 0xff) << 24;
846 sectors |= (tf->lbah & 0xff) << 16;
847 sectors |= (tf->lbam & 0xff) << 8;
848 sectors |= (tf->lbal & 0xff);
849
850 return ++sectors;
851}
852
853static u64 ata_tf_to_lba(struct ata_taskfile *tf)
854{
855 u64 sectors = 0;
856
857 sectors |= (tf->device & 0x0f) << 24;
858 sectors |= (tf->lbah & 0xff) << 16;
859 sectors |= (tf->lbam & 0xff) << 8;
860 sectors |= (tf->lbal & 0xff);
861
862 return ++sectors;
863}
864
865/**
Tejun Heoc728a912007-09-03 12:32:30 +0900866 * ata_read_native_max_address - Read native max address
867 * @dev: target device
868 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +0100869 *
Tejun Heoc728a912007-09-03 12:32:30 +0900870 * Perform an LBA48 or LBA28 native size query upon the device in
871 * question.
872 *
873 * RETURNS:
874 * 0 on success, -EACCES if command is aborted by the drive.
875 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +0100876 */
Tejun Heoc728a912007-09-03 12:32:30 +0900877static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +0100878{
Tejun Heoc728a912007-09-03 12:32:30 +0900879 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +0100880 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +0900881 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +0100882
883 ata_tf_init(dev, &tf);
884
Tejun Heoc728a912007-09-03 12:32:30 +0900885 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +0100886 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +0900887
888 if (lba48) {
889 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
890 tf.flags |= ATA_TFLAG_LBA48;
891 } else
892 tf.command = ATA_CMD_READ_NATIVE_MAX;
893
Alan Cox1e999732007-04-11 00:23:13 +0100894 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +0900895 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +0100896
Tejun Heoc728a912007-09-03 12:32:30 +0900897 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
898 if (err_mask) {
899 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
900 "max address (err_mask=0x%x)\n", err_mask);
901 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
902 return -EACCES;
903 return -EIO;
904 }
Alan Cox1e999732007-04-11 00:23:13 +0100905
Tejun Heoc728a912007-09-03 12:32:30 +0900906 if (lba48)
907 *max_sectors = ata_tf_to_lba48(&tf);
908 else
909 *max_sectors = ata_tf_to_lba(&tf);
910
911 return 0;
Alan Cox1e999732007-04-11 00:23:13 +0100912}
913
914/**
Tejun Heoc728a912007-09-03 12:32:30 +0900915 * ata_set_max_sectors - Set max sectors
916 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -0700917 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +0100918 *
Tejun Heoc728a912007-09-03 12:32:30 +0900919 * Set max sectors of @dev to @new_sectors.
920 *
921 * RETURNS:
922 * 0 on success, -EACCES if command is aborted or denied (due to
923 * previous non-volatile SET_MAX) by the drive. -EIO on other
924 * errors.
Alan Cox1e999732007-04-11 00:23:13 +0100925 */
Tejun Heo05027ad2007-09-03 12:32:57 +0900926static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +0100927{
Tejun Heoc728a912007-09-03 12:32:30 +0900928 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +0100929 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +0900930 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +0100931
932 new_sectors--;
933
934 ata_tf_init(dev, &tf);
935
Alan Cox1e999732007-04-11 00:23:13 +0100936 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +0900937
938 if (lba48) {
939 tf.command = ATA_CMD_SET_MAX_EXT;
940 tf.flags |= ATA_TFLAG_LBA48;
941
942 tf.hob_lbal = (new_sectors >> 24) & 0xff;
943 tf.hob_lbam = (new_sectors >> 32) & 0xff;
944 tf.hob_lbah = (new_sectors >> 40) & 0xff;
945 } else
946 tf.command = ATA_CMD_SET_MAX;
947
Alan Cox1e999732007-04-11 00:23:13 +0100948 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +0900949 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +0100950
951 tf.lbal = (new_sectors >> 0) & 0xff;
952 tf.lbam = (new_sectors >> 8) & 0xff;
953 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +0100954
Tejun Heoc728a912007-09-03 12:32:30 +0900955 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
956 if (err_mask) {
957 ata_dev_printk(dev, KERN_WARNING, "failed to set "
958 "max address (err_mask=0x%x)\n", err_mask);
959 if (err_mask == AC_ERR_DEV &&
960 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
961 return -EACCES;
962 return -EIO;
963 }
Alan Cox1e999732007-04-11 00:23:13 +0100964
Tejun Heoc728a912007-09-03 12:32:30 +0900965 return 0;
Alan Cox1e999732007-04-11 00:23:13 +0100966}
967
968/**
969 * ata_hpa_resize - Resize a device with an HPA set
970 * @dev: Device to resize
971 *
972 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
973 * it if required to the full size of the media. The caller must check
974 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +0900975 *
976 * RETURNS:
977 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +0100978 */
Tejun Heo05027ad2007-09-03 12:32:57 +0900979static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +0100980{
Tejun Heo05027ad2007-09-03 12:32:57 +0900981 struct ata_eh_context *ehc = &dev->link->eh_context;
982 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
983 u64 sectors = ata_id_n_sectors(dev->id);
984 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +0900985 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -0400986
Tejun Heo05027ad2007-09-03 12:32:57 +0900987 /* do we need to do it? */
988 if (dev->class != ATA_DEV_ATA ||
989 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
990 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +0900991 return 0;
Alan Cox1e999732007-04-11 00:23:13 +0100992
Tejun Heo05027ad2007-09-03 12:32:57 +0900993 /* read native max address */
994 rc = ata_read_native_max_address(dev, &native_sectors);
995 if (rc) {
996 /* If HPA isn't going to be unlocked, skip HPA
997 * resizing from the next try.
998 */
999 if (!ata_ignore_hpa) {
1000 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
1001 "broken, will skip HPA handling\n");
1002 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001003
Tejun Heo05027ad2007-09-03 12:32:57 +09001004 /* we can continue if device aborted the command */
1005 if (rc == -EACCES)
1006 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001007 }
Tejun Heo37301a52007-06-25 20:45:54 +09001008
Tejun Heo05027ad2007-09-03 12:32:57 +09001009 return rc;
1010 }
1011
1012 /* nothing to do? */
1013 if (native_sectors <= sectors || !ata_ignore_hpa) {
1014 if (!print_info || native_sectors == sectors)
1015 return 0;
1016
1017 if (native_sectors > sectors)
1018 ata_dev_printk(dev, KERN_INFO,
1019 "HPA detected: current %llu, native %llu\n",
1020 (unsigned long long)sectors,
1021 (unsigned long long)native_sectors);
1022 else if (native_sectors < sectors)
1023 ata_dev_printk(dev, KERN_WARNING,
1024 "native sectors (%llu) is smaller than "
1025 "sectors (%llu)\n",
1026 (unsigned long long)native_sectors,
1027 (unsigned long long)sectors);
1028 return 0;
1029 }
1030
1031 /* let's unlock HPA */
1032 rc = ata_set_max_sectors(dev, native_sectors);
1033 if (rc == -EACCES) {
1034 /* if device aborted the command, skip HPA resizing */
1035 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1036 "(%llu -> %llu), skipping HPA handling\n",
1037 (unsigned long long)sectors,
1038 (unsigned long long)native_sectors);
1039 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1040 return 0;
1041 } else if (rc)
1042 return rc;
1043
1044 /* re-read IDENTIFY data */
1045 rc = ata_dev_reread_id(dev, 0);
1046 if (rc) {
1047 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1048 "data after HPA resizing\n");
1049 return rc;
1050 }
1051
1052 if (print_info) {
1053 u64 new_sectors = ata_id_n_sectors(dev->id);
1054 ata_dev_printk(dev, KERN_INFO,
1055 "HPA unlocked: %llu -> %llu, native %llu\n",
1056 (unsigned long long)sectors,
1057 (unsigned long long)new_sectors,
1058 (unsigned long long)native_sectors);
1059 }
1060
1061 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001062}
1063
Edward Falk0baab862005-06-02 18:17:13 -04001064/**
Alan10305f02007-02-20 18:01:59 +00001065 * ata_id_to_dma_mode - Identify DMA mode from id block
1066 * @dev: device to identify
Randy Dunlapcc261262007-03-16 19:55:47 -07001067 * @unknown: mode to assume if we cannot tell
Alan10305f02007-02-20 18:01:59 +00001068 *
1069 * Set up the timing values for the device based upon the identify
1070 * reported values for the DMA mode. This function is used by drivers
1071 * which rely upon firmware configured modes, but wish to report the
1072 * mode correctly when possible.
1073 *
1074 * In addition we emit similarly formatted messages to the default
1075 * ata_dev_set_mode handler, in order to provide consistency of
1076 * presentation.
1077 */
1078
1079void ata_id_to_dma_mode(struct ata_device *dev, u8 unknown)
1080{
1081 unsigned int mask;
1082 u8 mode;
1083
1084 /* Pack the DMA modes */
1085 mask = ((dev->id[63] >> 8) << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA;
1086 if (dev->id[53] & 0x04)
1087 mask |= ((dev->id[88] >> 8) << ATA_SHIFT_UDMA) & ATA_MASK_UDMA;
1088
1089 /* Select the mode in use */
1090 mode = ata_xfer_mask2mode(mask);
1091
1092 if (mode != 0) {
1093 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
1094 ata_mode_string(mask));
1095 } else {
1096 /* SWDMA perhaps ? */
1097 mode = unknown;
1098 ata_dev_printk(dev, KERN_INFO, "configured for DMA\n");
1099 }
1100
1101 /* Configure the device reporting */
1102 dev->xfer_mode = mode;
1103 dev->xfer_shift = ata_xfer_mode2shift(mode);
1104}
1105
1106/**
Edward Falk0baab862005-06-02 18:17:13 -04001107 * ata_noop_dev_select - Select device 0/1 on ATA bus
1108 * @ap: ATA channel to manipulate
1109 * @device: ATA device (numbered from zero) to select
1110 *
1111 * This function performs no actual function.
1112 *
1113 * May be used as the dev_select() entry in ata_port_operations.
1114 *
1115 * LOCKING:
1116 * caller.
1117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118void ata_noop_dev_select (struct ata_port *ap, unsigned int device)
1119{
1120}
1121
Edward Falk0baab862005-06-02 18:17:13 -04001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123/**
1124 * ata_std_dev_select - Select device 0/1 on ATA bus
1125 * @ap: ATA channel to manipulate
1126 * @device: ATA device (numbered from zero) to select
1127 *
1128 * Use the method defined in the ATA specification to
1129 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -04001130 * ATA channel. Works with both PIO and MMIO.
1131 *
1132 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 *
1134 * LOCKING:
1135 * caller.
1136 */
1137
1138void ata_std_dev_select (struct ata_port *ap, unsigned int device)
1139{
1140 u8 tmp;
1141
1142 if (device == 0)
1143 tmp = ATA_DEVICE_OBS;
1144 else
1145 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1146
Tejun Heo0d5ff562007-02-01 15:06:36 +09001147 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 ata_pause(ap); /* needed; also flushes, for mmio */
1149}
1150
1151/**
1152 * ata_dev_select - Select device 0/1 on ATA bus
1153 * @ap: ATA channel to manipulate
1154 * @device: ATA device (numbered from zero) to select
1155 * @wait: non-zero to wait for Status register BSY bit to clear
1156 * @can_sleep: non-zero if context allows sleeping
1157 *
1158 * Use the method defined in the ATA specification to
1159 * make either device 0, or device 1, active on the
1160 * ATA channel.
1161 *
1162 * This is a high-level version of ata_std_dev_select(),
1163 * which additionally provides the services of inserting
1164 * the proper pauses and status polling, where needed.
1165 *
1166 * LOCKING:
1167 * caller.
1168 */
1169
1170void ata_dev_select(struct ata_port *ap, unsigned int device,
1171 unsigned int wait, unsigned int can_sleep)
1172{
Tejun Heo88574552006-06-25 20:00:35 +09001173 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001174 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
1175 "device %u, wait %u\n", device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 if (wait)
1178 ata_wait_idle(ap);
1179
1180 ap->ops->dev_select(ap, device);
1181
1182 if (wait) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001183 if (can_sleep && ap->link.device[device].class == ATA_DEV_ATAPI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 msleep(150);
1185 ata_wait_idle(ap);
1186 }
1187}
1188
1189/**
1190 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001191 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001193 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1194 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 *
1196 * LOCKING:
1197 * caller.
1198 */
1199
Tejun Heo0bd33002006-02-12 22:47:05 +09001200static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
1202 DPRINTK("49==0x%04x "
1203 "53==0x%04x "
1204 "63==0x%04x "
1205 "64==0x%04x "
1206 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001207 id[49],
1208 id[53],
1209 id[63],
1210 id[64],
1211 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 DPRINTK("80==0x%04x "
1213 "81==0x%04x "
1214 "82==0x%04x "
1215 "83==0x%04x "
1216 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001217 id[80],
1218 id[81],
1219 id[82],
1220 id[83],
1221 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 DPRINTK("88==0x%04x "
1223 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001224 id[88],
1225 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Tejun Heocb95d562006-03-06 04:31:56 +09001228/**
1229 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1230 * @id: IDENTIFY data to compute xfer mask from
1231 *
1232 * Compute the xfermask for this device. This is not as trivial
1233 * as it seems if we must consider early devices correctly.
1234 *
1235 * FIXME: pre IDE drive timing (do we care ?).
1236 *
1237 * LOCKING:
1238 * None.
1239 *
1240 * RETURNS:
1241 * Computed xfermask
1242 */
1243static unsigned int ata_id_xfermask(const u16 *id)
1244{
1245 unsigned int pio_mask, mwdma_mask, udma_mask;
1246
1247 /* Usual case. Word 53 indicates word 64 is valid */
1248 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1249 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1250 pio_mask <<= 3;
1251 pio_mask |= 0x7;
1252 } else {
1253 /* If word 64 isn't valid then Word 51 high byte holds
1254 * the PIO timing number for the maximum. Turn it into
1255 * a mask.
1256 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001257 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001258 if (mode < 5) /* Valid PIO range */
1259 pio_mask = (2 << mode) - 1;
1260 else
1261 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001262
1263 /* But wait.. there's more. Design your standards by
1264 * committee and you too can get a free iordy field to
1265 * process. However its the speeds not the modes that
1266 * are supported... Note drivers using the timing API
1267 * will get this right anyway
1268 */
1269 }
1270
1271 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001272
Alan Coxb352e572006-08-10 18:52:12 +01001273 if (ata_id_is_cfa(id)) {
1274 /*
1275 * Process compact flash extended modes
1276 */
1277 int pio = id[163] & 0x7;
1278 int dma = (id[163] >> 3) & 7;
1279
1280 if (pio)
1281 pio_mask |= (1 << 5);
1282 if (pio > 1)
1283 pio_mask |= (1 << 6);
1284 if (dma)
1285 mwdma_mask |= (1 << 3);
1286 if (dma > 1)
1287 mwdma_mask |= (1 << 4);
1288 }
1289
Tejun Heofb21f0d2006-03-12 12:34:35 +09001290 udma_mask = 0;
1291 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1292 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001293
1294 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1295}
1296
Tejun Heo86e45b62006-03-05 15:29:09 +09001297/**
1298 * ata_port_queue_task - Queue port_task
1299 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001300 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001301 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001302 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001303 *
1304 * Schedule @fn(@data) for execution after @delay jiffies using
1305 * port_task. There is one port_task per port and it's the
1306 * user(low level driver)'s responsibility to make sure that only
1307 * one task is active at any given time.
1308 *
1309 * libata core layer takes care of synchronization between
1310 * port_task and EH. ata_port_queue_task() may be ignored for EH
1311 * synchronization.
1312 *
1313 * LOCKING:
1314 * Inherited from caller.
1315 */
David Howells65f27f32006-11-22 14:55:48 +00001316void ata_port_queue_task(struct ata_port *ap, work_func_t fn, void *data,
Tejun Heo86e45b62006-03-05 15:29:09 +09001317 unsigned long delay)
1318{
David Howells65f27f32006-11-22 14:55:48 +00001319 PREPARE_DELAYED_WORK(&ap->port_task, fn);
1320 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001321
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001322 /* may fail if ata_port_flush_task() in progress */
1323 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001324}
1325
1326/**
1327 * ata_port_flush_task - Flush port_task
1328 * @ap: The ata_port to flush port_task for
1329 *
1330 * After this function completes, port_task is guranteed not to
1331 * be running or scheduled.
1332 *
1333 * LOCKING:
1334 * Kernel thread context (may sleep)
1335 */
1336void ata_port_flush_task(struct ata_port *ap)
1337{
Tejun Heo86e45b62006-03-05 15:29:09 +09001338 DPRINTK("ENTER\n");
1339
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001340 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001341
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001342 if (ata_msg_ctl(ap))
1343 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001344}
1345
Adrian Bunk7102d232007-01-04 00:09:36 +01001346static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001347{
Tejun Heo77853bf2006-01-23 13:09:36 +09001348 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001349
Tejun Heoa2a7a662005-12-13 14:48:31 +09001350 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001351}
1352
1353/**
Tejun Heo24326972006-11-14 22:47:09 +09001354 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001355 * @dev: Device to which the command is sent
1356 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001357 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001358 * @dma_dir: Data tranfer direction of the command
Tejun Heo24326972006-11-14 22:47:09 +09001359 * @sg: sg list for the data buffer of the command
1360 * @n_elem: Number of sg entries
Tejun Heoa2a7a662005-12-13 14:48:31 +09001361 *
1362 * Executes libata internal command with timeout. @tf contains
1363 * command on entry and result on return. Timeout and error
1364 * conditions are reported via return value. No recovery action
1365 * is taken after a command times out. It's caller's duty to
1366 * clean up after timeout.
1367 *
1368 * LOCKING:
1369 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001370 *
1371 * RETURNS:
1372 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001373 */
Tejun Heo24326972006-11-14 22:47:09 +09001374unsigned ata_exec_internal_sg(struct ata_device *dev,
1375 struct ata_taskfile *tf, const u8 *cdb,
1376 int dma_dir, struct scatterlist *sg,
1377 unsigned int n_elem)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001378{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001379 struct ata_link *link = dev->link;
1380 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001381 u8 command = tf->command;
1382 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001383 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001384 u32 preempted_sactive, preempted_qc_active;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001385 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001386 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001387 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001388 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001389
Jeff Garzikba6a1302006-06-22 23:46:10 -04001390 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001391
Tejun Heoe3180492006-05-15 20:58:09 +09001392 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001393 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001394 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001395 return AC_ERR_SYSTEM;
1396 }
1397
Tejun Heo2ab7db12006-05-15 20:58:02 +09001398 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001399
Tejun Heo2ab7db12006-05-15 20:58:02 +09001400 /* XXX: Tag 0 is used for drivers with legacy EH as some
1401 * drivers choke if any other tag is given. This breaks
1402 * ata_tag_internal() test for those drivers. Don't use new
1403 * EH stuff without converting to it.
1404 */
1405 if (ap->ops->error_handler)
1406 tag = ATA_TAG_INTERNAL;
1407 else
1408 tag = 0;
1409
Tejun Heo6cec4a32006-05-15 21:03:41 +09001410 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001411 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001412 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001413
1414 qc->tag = tag;
1415 qc->scsicmd = NULL;
1416 qc->ap = ap;
1417 qc->dev = dev;
1418 ata_qc_reinit(qc);
1419
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001420 preempted_tag = link->active_tag;
1421 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001422 preempted_qc_active = ap->qc_active;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001423 link->active_tag = ATA_TAG_POISON;
1424 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001425 ap->qc_active = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001426
1427 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001428 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001429 if (cdb)
1430 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001431 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001432 qc->dma_dir = dma_dir;
1433 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001434 unsigned int i, buflen = 0;
1435
1436 for (i = 0; i < n_elem; i++)
1437 buflen += sg[i].length;
1438
1439 ata_sg_init(qc, sg, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001440 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001441 }
1442
Tejun Heo77853bf2006-01-23 13:09:36 +09001443 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001444 qc->complete_fn = ata_qc_complete_internal;
1445
Tejun Heo8e0e6942006-03-31 20:41:11 +09001446 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001447
Jeff Garzikba6a1302006-06-22 23:46:10 -04001448 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001449
Andrew Mortona8601e52006-06-25 01:36:52 -07001450 rc = wait_for_completion_timeout(&wait, ata_probe_timeout);
Albert Lee41ade502006-03-14 11:19:04 +08001451
Tejun Heod95a7172006-05-15 20:58:14 +09001452 ata_port_flush_task(ap);
1453
1454 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001455 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001456
1457 /* We're racing with irq here. If we lose, the
1458 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001459 * twice. If we win, the port is frozen and will be
1460 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001461 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001462 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001463 qc->err_mask |= AC_ERR_TIMEOUT;
1464
1465 if (ap->ops->error_handler)
1466 ata_port_freeze(ap);
1467 else
1468 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001469
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001470 if (ata_msg_warn(ap))
1471 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001472 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001473 }
1474
Jeff Garzikba6a1302006-06-22 23:46:10 -04001475 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001476 }
1477
Tejun Heod95a7172006-05-15 20:58:14 +09001478 /* do post_internal_cmd */
1479 if (ap->ops->post_internal_cmd)
1480 ap->ops->post_internal_cmd(qc);
1481
Tejun Heoa51d6442007-03-20 15:24:11 +09001482 /* perform minimal error analysis */
1483 if (qc->flags & ATA_QCFLAG_FAILED) {
1484 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1485 qc->err_mask |= AC_ERR_DEV;
1486
1487 if (!qc->err_mask)
1488 qc->err_mask |= AC_ERR_OTHER;
1489
1490 if (qc->err_mask & ~AC_ERR_OTHER)
1491 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001492 }
1493
Tejun Heo15869302006-05-15 20:57:33 +09001494 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001495 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001496
Tejun Heoe61e0672006-05-15 20:57:40 +09001497 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001498 err_mask = qc->err_mask;
1499
1500 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001501 link->active_tag = preempted_tag;
1502 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001503 ap->qc_active = preempted_qc_active;
Tejun Heo77853bf2006-01-23 13:09:36 +09001504
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001505 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1506 * Until those drivers are fixed, we detect the condition
1507 * here, fail the command with AC_ERR_SYSTEM and reenable the
1508 * port.
1509 *
1510 * Note that this doesn't change any behavior as internal
1511 * command failure results in disabling the device in the
1512 * higher layer for LLDDs without new reset/EH callbacks.
1513 *
1514 * Kill the following code as soon as those drivers are fixed.
1515 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001516 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001517 err_mask |= AC_ERR_SYSTEM;
1518 ata_port_probe(ap);
1519 }
1520
Jeff Garzikba6a1302006-06-22 23:46:10 -04001521 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001522
Tejun Heo77853bf2006-01-23 13:09:36 +09001523 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001524}
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526/**
Tejun Heo33480a02006-12-12 02:15:31 +09001527 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001528 * @dev: Device to which the command is sent
1529 * @tf: Taskfile registers for the command and the result
1530 * @cdb: CDB for packet command
1531 * @dma_dir: Data tranfer direction of the command
1532 * @buf: Data buffer of the command
1533 * @buflen: Length of data buffer
1534 *
1535 * Wrapper around ata_exec_internal_sg() which takes simple
1536 * buffer instead of sg list.
1537 *
1538 * LOCKING:
1539 * None. Should be called with kernel context, might sleep.
1540 *
1541 * RETURNS:
1542 * Zero on success, AC_ERR_* mask on failure
1543 */
1544unsigned ata_exec_internal(struct ata_device *dev,
1545 struct ata_taskfile *tf, const u8 *cdb,
1546 int dma_dir, void *buf, unsigned int buflen)
1547{
Tejun Heo33480a02006-12-12 02:15:31 +09001548 struct scatterlist *psg = NULL, sg;
1549 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001550
Tejun Heo33480a02006-12-12 02:15:31 +09001551 if (dma_dir != DMA_NONE) {
1552 WARN_ON(!buf);
1553 sg_init_one(&sg, buf, buflen);
1554 psg = &sg;
1555 n_elem++;
1556 }
Tejun Heo24326972006-11-14 22:47:09 +09001557
Tejun Heo33480a02006-12-12 02:15:31 +09001558 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem);
Tejun Heo24326972006-11-14 22:47:09 +09001559}
1560
1561/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001562 * ata_do_simple_cmd - execute simple internal command
1563 * @dev: Device to which the command is sent
1564 * @cmd: Opcode to execute
1565 *
1566 * Execute a 'simple' command, that only consists of the opcode
1567 * 'cmd' itself, without filling any other registers
1568 *
1569 * LOCKING:
1570 * Kernel thread context (may sleep).
1571 *
1572 * RETURNS:
1573 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001574 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001575unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001576{
1577 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001578
1579 ata_tf_init(dev, &tf);
1580
1581 tf.command = cmd;
1582 tf.flags |= ATA_TFLAG_DEVICE;
1583 tf.protocol = ATA_PROT_NODATA;
1584
Tejun Heo977e6b92006-06-24 20:30:19 +09001585 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001586}
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001589 * ata_pio_need_iordy - check if iordy needed
1590 * @adev: ATA device
1591 *
1592 * Check if the current speed of the device requires IORDY. Used
1593 * by various controllers for chip configuration.
1594 */
Jeff Garzika617c092007-05-21 20:14:23 -04001595
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001596unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1597{
Alan Cox432729f2007-03-08 23:22:59 +00001598 /* Controller doesn't support IORDY. Probably a pointless check
1599 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001600 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001601 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001602 /* PIO3 and higher it is mandatory */
1603 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001604 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001605 /* We turn it on when possible */
1606 if (ata_id_has_iordy(adev->id))
1607 return 1;
1608 return 0;
1609}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001610
Alan Cox432729f2007-03-08 23:22:59 +00001611/**
1612 * ata_pio_mask_no_iordy - Return the non IORDY mask
1613 * @adev: ATA device
1614 *
1615 * Compute the highest mode possible if we are not using iordy. Return
1616 * -1 if no iordy mode is available.
1617 */
Jeff Garzika617c092007-05-21 20:14:23 -04001618
Alan Cox432729f2007-03-08 23:22:59 +00001619static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1620{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001621 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001622 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001623 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001624 /* Is the speed faster than the drive allows non IORDY ? */
1625 if (pio) {
1626 /* This is cycle times not frequency - watch the logic! */
1627 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001628 return 3 << ATA_SHIFT_PIO;
1629 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001630 }
1631 }
Alan Cox432729f2007-03-08 23:22:59 +00001632 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001633}
1634
1635/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001636 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001637 * @dev: target device
1638 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001639 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001640 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001641 *
1642 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1643 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001644 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1645 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001646 *
Alan Cox50a99012007-08-08 14:27:00 +01001647 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
1648 * now we abort if we hit that case.
1649 *
Tejun Heo49016ac2006-02-21 02:12:11 +09001650 * LOCKING:
1651 * Kernel thread context (may sleep)
1652 *
1653 * RETURNS:
1654 * 0 on success, -errno otherwise.
1655 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001656int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001657 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001658{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001659 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001660 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001661 struct ata_taskfile tf;
1662 unsigned int err_mask = 0;
1663 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001664 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001665 int rc;
1666
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001667 if (ata_msg_ctl(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001668 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001669
Tejun Heo49016ac2006-02-21 02:12:11 +09001670 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
Tejun Heo49016ac2006-02-21 02:12:11 +09001671 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001672 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001673
1674 switch (class) {
1675 case ATA_DEV_ATA:
1676 tf.command = ATA_CMD_ID_ATA;
1677 break;
1678 case ATA_DEV_ATAPI:
1679 tf.command = ATA_CMD_ID_ATAPI;
1680 break;
1681 default:
1682 rc = -ENODEV;
1683 reason = "unsupported class";
1684 goto err_out;
1685 }
1686
1687 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001688
1689 /* Some devices choke if TF registers contain garbage. Make
1690 * sure those are properly initialized.
1691 */
1692 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1693
1694 /* Device presence detection is unreliable on some
1695 * controllers. Always poll IDENTIFY if available.
1696 */
1697 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001698
Tejun Heo3373efd2006-05-15 20:57:53 +09001699 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo49016ac2006-02-21 02:12:11 +09001700 id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heo49016ac2006-02-21 02:12:11 +09001701 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001702 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001703 DPRINTK("ata%u.%d: NODEV after polling detection\n",
Tejun Heo44877b42007-02-21 01:06:51 +09001704 ap->print_id, dev->devno);
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001705 return -ENOENT;
1706 }
1707
Tejun Heo54936f82007-05-11 14:35:29 +02001708 /* Device or controller might have reported the wrong
1709 * device class. Give a shot at the other IDENTIFY if
1710 * the current one is aborted by the device.
1711 */
1712 if (may_fallback &&
1713 (err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1714 may_fallback = 0;
1715
1716 if (class == ATA_DEV_ATA)
1717 class = ATA_DEV_ATAPI;
1718 else
1719 class = ATA_DEV_ATA;
1720 goto retry;
1721 }
1722
Tejun Heo49016ac2006-02-21 02:12:11 +09001723 rc = -EIO;
1724 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001725 goto err_out;
1726 }
1727
Tejun Heo54936f82007-05-11 14:35:29 +02001728 /* Falling back doesn't make sense if ID data was read
1729 * successfully at least once.
1730 */
1731 may_fallback = 0;
1732
Tejun Heo49016ac2006-02-21 02:12:11 +09001733 swap_buf_le16(id, ATA_ID_WORDS);
1734
Tejun Heo49016ac2006-02-21 02:12:11 +09001735 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001736 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01001737 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07001738
1739 if (class == ATA_DEV_ATA) {
1740 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1741 goto err_out;
1742 } else {
1743 if (ata_id_is_ata(id))
1744 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001745 }
1746
Mark Lord169439c2007-04-17 18:26:07 -04001747 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
1748 tried_spinup = 1;
1749 /*
1750 * Drive powered-up in standby mode, and requires a specific
1751 * SET_FEATURES spin-up subcommand before it will accept
1752 * anything other than the original IDENTIFY command.
1753 */
1754 ata_tf_init(dev, &tf);
1755 tf.command = ATA_CMD_SET_FEATURES;
1756 tf.feature = SETFEATURES_SPINUP;
1757 tf.protocol = ATA_PROT_NODATA;
1758 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1759 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07001760 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04001761 rc = -EIO;
1762 reason = "SPINUP failed";
1763 goto err_out;
1764 }
1765 /*
1766 * If the drive initially returned incomplete IDENTIFY info,
1767 * we now must reissue the IDENTIFY command.
1768 */
1769 if (id[2] == 0x37c8)
1770 goto retry;
1771 }
1772
Tejun Heobff04642006-11-10 18:08:10 +09001773 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09001774 /*
1775 * The exact sequence expected by certain pre-ATA4 drives is:
1776 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01001777 * IDENTIFY (optional in early ATA)
1778 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09001779 * anything else..
1780 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01001781 *
1782 * Note that ATA4 says lba is mandatory so the second check
1783 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09001784 */
1785 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09001786 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09001787 if (err_mask) {
1788 rc = -EIO;
1789 reason = "INIT_DEV_PARAMS failed";
1790 goto err_out;
1791 }
1792
1793 /* current CHS translation info (id[53-58]) might be
1794 * changed. reread the identify device info.
1795 */
Tejun Heobff04642006-11-10 18:08:10 +09001796 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09001797 goto retry;
1798 }
1799 }
1800
1801 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09001802
Tejun Heo49016ac2006-02-21 02:12:11 +09001803 return 0;
1804
1805 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09001806 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001807 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09001808 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09001809 return rc;
1810}
1811
Tejun Heo3373efd2006-05-15 20:57:53 +09001812static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001813{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001814 struct ata_port *ap = dev->link->ap;
1815 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09001816}
1817
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001818static void ata_dev_config_ncq(struct ata_device *dev,
1819 char *desc, size_t desc_sz)
1820{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001821 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001822 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
1823
1824 if (!ata_id_has_ncq(dev->id)) {
1825 desc[0] = '\0';
1826 return;
1827 }
Tejun Heo75683fe2007-07-05 13:31:27 +09001828 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07001829 snprintf(desc, desc_sz, "NCQ (not used)");
1830 return;
1831 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001832 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04001833 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001834 dev->flags |= ATA_DFLAG_NCQ;
1835 }
1836
1837 if (hdepth >= ddepth)
1838 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
1839 else
1840 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
1841}
1842
Tejun Heo49016ac2006-02-21 02:12:11 +09001843/**
Tejun Heoffeae412006-03-01 16:09:35 +09001844 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09001845 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 *
Tejun Heoffeae412006-03-01 16:09:35 +09001847 * Configure @dev according to @dev->id. Generic and low-level
1848 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 *
1850 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09001851 * Kernel thread context (may sleep)
1852 *
1853 * RETURNS:
1854 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09001856int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001858 struct ata_port *ap = dev->link->ap;
1859 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09001860 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001861 const u16 *id = dev->id;
Tejun Heoff8854b2006-03-06 04:31:56 +09001862 unsigned int xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01001863 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001864 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
1865 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05001866 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001868 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09001869 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
1870 __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09001871 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
1873
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001874 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001875 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Tejun Heo75683fe2007-07-05 13:31:27 +09001877 /* set horkage */
1878 dev->horkage |= ata_dev_blacklisted(dev);
1879
Tejun Heo67465442007-05-15 03:28:16 +09001880 /* let ACPI work its magic */
1881 rc = ata_acpi_on_devcfg(dev);
1882 if (rc)
1883 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08001884
Tejun Heo05027ad2007-09-03 12:32:57 +09001885 /* massage HPA, do it early as it might change IDENTIFY data */
1886 rc = ata_hpa_resize(dev);
1887 if (rc)
1888 return rc;
1889
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001890 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001891 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09001892 ata_dev_printk(dev, KERN_DEBUG,
1893 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
1894 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001895 __FUNCTION__,
Tejun Heof15a1da2006-05-15 20:57:56 +09001896 id[49], id[82], id[83], id[84],
1897 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09001898
Tejun Heo208a9932006-03-05 17:55:58 +09001899 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09001900 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09001901 dev->max_sectors = 0;
1902 dev->cdb_len = 0;
1903 dev->n_sectors = 0;
1904 dev->cylinders = 0;
1905 dev->heads = 0;
1906 dev->sectors = 0;
1907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 /*
1909 * common ATA, ATAPI feature tests
1910 */
1911
Tejun Heoff8854b2006-03-06 04:31:56 +09001912 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001913 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001915 if (ata_msg_probe(ap))
1916 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Albert Leeef143d52007-06-05 13:01:33 +08001918 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
1919 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
1920 sizeof(fwrevbuf));
1921
1922 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
1923 sizeof(modelbuf));
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 /* ATA-specific feature tests */
1926 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01001927 if (ata_id_is_cfa(id)) {
1928 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09001929 ata_dev_printk(dev, KERN_WARNING,
1930 "supports DRM functions and may "
1931 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01001932 snprintf(revbuf, 7, "CFA");
1933 }
1934 else
1935 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
1936
Tejun Heo1148c3a2006-03-13 19:48:04 +09001937 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09001938
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001939 if (dev->id[59] & 0x100)
1940 dev->multi_count = dev->id[59] & 0xff;
1941
Tejun Heo1148c3a2006-03-13 19:48:04 +09001942 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09001943 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001944 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001945
Tejun Heo4c2d7212006-03-05 17:55:58 +09001946 lba_desc = "LBA";
1947 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09001948 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001949 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001950 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001951
1952 if (dev->n_sectors >= (1UL << 28) &&
1953 ata_id_has_flush_ext(id))
1954 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09001955 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04001956
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001957 /* config NCQ */
1958 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
1959
Albert Lee8bf62ece2005-05-12 15:29:42 -04001960 /* print device info to dmesg */
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001961 if (ata_msg_drv(ap) && print_info) {
1962 ata_dev_printk(dev, KERN_INFO,
1963 "%s: %s, %s, max %s\n",
1964 revbuf, modelbuf, fwrevbuf,
1965 ata_mode_string(xfer_mask));
1966 ata_dev_printk(dev, KERN_INFO,
1967 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09001968 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001969 dev->multi_count, lba_desc, ncq_desc);
1970 }
Tejun Heoffeae412006-03-01 16:09:35 +09001971 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001972 /* CHS */
1973
1974 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001975 dev->cylinders = id[1];
1976 dev->heads = id[3];
1977 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001978
Tejun Heo1148c3a2006-03-13 19:48:04 +09001979 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04001980 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09001981 dev->cylinders = id[54];
1982 dev->heads = id[55];
1983 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04001984 }
1985
1986 /* print device info to dmesg */
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001987 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09001988 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001989 "%s: %s, %s, max %s\n",
1990 revbuf, modelbuf, fwrevbuf,
1991 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05001992 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07001993 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
1994 (unsigned long long)dev->n_sectors,
1995 dev->multi_count, dev->cylinders,
1996 dev->heads, dev->sectors);
1997 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08001998 }
1999
Tejun Heo6e7846e2006-02-12 23:32:58 +09002000 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
2002
2003 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002004 else if (dev->class == ATA_DEV_ATAPI) {
Albert Lee08a556d2006-03-31 13:29:04 +08002005 char *cdb_intr_string = "";
2006
Tejun Heo1148c3a2006-03-13 19:48:04 +09002007 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002009 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002010 ata_dev_printk(dev, KERN_WARNING,
2011 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002012 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 goto err_out_nosup;
2014 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002015 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002017 /*
2018 * check to see if this ATAPI device supports
2019 * Asynchronous Notification
2020 */
2021 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_AN(id)) {
2022 int err;
2023 /* issue SET feature command to turn this on */
2024 err = ata_dev_set_AN(dev, SETFEATURES_SATA_ENABLE);
2025 if (err)
2026 ata_dev_printk(dev, KERN_ERR,
2027 "unable to set AN, err %x\n",
2028 err);
2029 else
2030 dev->flags |= ATA_DFLAG_AN;
2031 }
2032
Albert Lee08a556d2006-03-31 13:29:04 +08002033 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002034 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002035 cdb_intr_string = ", CDB intr";
2036 }
Albert Lee312f7da2005-09-27 17:38:03 +08002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002039 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002040 ata_dev_printk(dev, KERN_INFO,
2041 "ATAPI: %s, %s, max %s%s\n",
2042 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002043 ata_mode_string(xfer_mask),
2044 cdb_intr_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 }
2046
Tejun Heo914ed352006-11-01 18:39:55 +09002047 /* determine max_sectors */
2048 dev->max_sectors = ATA_MAX_SECTORS;
2049 if (dev->flags & ATA_DFLAG_LBA48)
2050 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2051
Alan Cox93590852006-09-12 16:55:12 +01002052 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2053 /* Let the user know. We don't want to disallow opens for
2054 rescue purposes, or in case the vendor is just a blithering
2055 idiot */
2056 if (print_info) {
2057 ata_dev_printk(dev, KERN_WARNING,
2058"Drive reports diagnostics failure. This may indicate a drive\n");
2059 ata_dev_printk(dev, KERN_WARNING,
2060"fault or invalid emulation. Contact drive vendor for information.\n");
2061 }
2062 }
2063
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002064 /* limit bridge transfers to udma5, 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002065 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002066 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002067 ata_dev_printk(dev, KERN_INFO,
2068 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002069 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002070 dev->max_sectors = ATA_MAX_SECTORS;
2071 }
2072
Tejun Heo75683fe2007-07-05 13:31:27 +09002073 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002074 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2075 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002076
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002077 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002078 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002079
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002080 if (ata_msg_probe(ap))
2081 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
2082 __FUNCTION__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002083 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002086 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002087 ata_dev_printk(dev, KERN_DEBUG,
2088 "%s: EXIT, err\n", __FUNCTION__);
Tejun Heoffeae412006-03-01 16:09:35 +09002089 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
2092/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002093 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002094 * @ap: port
2095 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002096 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002097 * detection.
2098 */
2099
2100int ata_cable_40wire(struct ata_port *ap)
2101{
2102 return ATA_CBL_PATA40;
2103}
2104
2105/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002106 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002107 * @ap: port
2108 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002109 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002110 * detection.
2111 */
2112
2113int ata_cable_80wire(struct ata_port *ap)
2114{
2115 return ATA_CBL_PATA80;
2116}
2117
2118/**
2119 * ata_cable_unknown - return unknown PATA cable.
2120 * @ap: port
2121 *
2122 * Helper method for drivers which have no PATA cable detection.
2123 */
2124
2125int ata_cable_unknown(struct ata_port *ap)
2126{
2127 return ATA_CBL_PATA_UNK;
2128}
2129
2130/**
2131 * ata_cable_sata - return SATA cable type
2132 * @ap: port
2133 *
2134 * Helper method for drivers which have SATA cables
2135 */
2136
2137int ata_cable_sata(struct ata_port *ap)
2138{
2139 return ATA_CBL_SATA;
2140}
2141
2142/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 * ata_bus_probe - Reset and probe ATA bus
2144 * @ap: Bus to probe
2145 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002146 * Master ATA bus probing function. Initiates a hardware-dependent
2147 * bus reset, then attempts to identify any devices found on
2148 * the bus.
2149 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002151 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 *
2153 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002154 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 */
2156
Brian King80289162006-08-07 14:27:31 -05002157int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002159 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002160 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002161 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002162 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Tejun Heo28ca5c52006-03-01 16:09:36 +09002164 ata_port_probe(ap);
2165
Tejun Heof58229f2007-08-06 18:36:23 +09002166 ata_link_for_each_dev(dev, &ap->link)
2167 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002168
2169 retry:
Tejun Heo20444702006-03-13 01:57:01 +09002170 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002171 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002172
Tejun Heof58229f2007-08-06 18:36:23 +09002173 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002174 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2175 dev->class != ATA_DEV_UNKNOWN)
2176 classes[dev->devno] = dev->class;
2177 else
2178 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002179
Tejun Heo52783c52006-05-31 18:28:22 +09002180 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Tejun Heo52783c52006-05-31 18:28:22 +09002183 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002184
Alan Coxb6079ca2006-05-22 16:52:06 +01002185 /* after the reset the device state is PIO 0 and the controller
2186 state is undefined. Record the mode */
2187
Tejun Heof58229f2007-08-06 18:36:23 +09002188 ata_link_for_each_dev(dev, &ap->link)
2189 dev->pio_mode = XFER_PIO_0;
Alan Coxb6079ca2006-05-22 16:52:06 +01002190
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002191 /* read IDENTIFY page and configure devices. We have to do the identify
2192 specific sequence bass-ackwards so that PDIAG- is released by
2193 the slave device */
2194
Tejun Heof58229f2007-08-06 18:36:23 +09002195 ata_link_for_each_dev(dev, &ap->link) {
2196 if (tries[dev->devno])
2197 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002198
Tejun Heoe1211e32006-04-01 01:38:18 +09002199 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002200 continue;
2201
Tejun Heobff04642006-11-10 18:08:10 +09002202 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2203 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002204 if (rc)
2205 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002206 }
2207
Alan Coxbe0d18d2007-03-06 02:37:56 -08002208 /* Now ask for the cable type as PDIAG- should have been released */
2209 if (ap->ops->cable_detect)
2210 ap->cbl = ap->ops->cable_detect(ap);
2211
Alan Cox614fe292007-08-22 23:22:45 +01002212 /* We may have SATA bridge glue hiding here irrespective of the
2213 reported cable types and sensed types */
2214 ata_link_for_each_dev(dev, &ap->link) {
2215 if (!ata_dev_enabled(dev))
2216 continue;
2217 /* SATA drives indicate we have a bridge. We don't know which
2218 end of the link the bridge is which is a problem */
2219 if (ata_id_is_sata(dev->id))
2220 ap->cbl = ATA_CBL_SATA;
2221 }
2222
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002223 /* After the identify sequence we can now set up the devices. We do
2224 this in the normal order so that the user doesn't get confused */
2225
Tejun Heof58229f2007-08-06 18:36:23 +09002226 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002227 if (!ata_dev_enabled(dev))
2228 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002229
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002230 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002231 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002232 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002233 if (rc)
2234 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 }
2236
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002237 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002238 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002239 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002240 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Tejun Heof58229f2007-08-06 18:36:23 +09002242 ata_link_for_each_dev(dev, &ap->link)
2243 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002244 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002245
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002246 /* no device present, disable port */
2247 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002248 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002249
2250 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002251 tries[dev->devno]--;
2252
Tejun Heo14d2bac2006-04-02 17:54:46 +09002253 switch (rc) {
2254 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002255 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002256 tries[dev->devno] = 0;
2257 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002258
2259 case -ENODEV:
2260 /* give it just one more chance */
2261 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002262 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002263 if (tries[dev->devno] == 1) {
2264 /* This is the last chance, better to slow
2265 * down than lose it.
2266 */
Tejun Heo936fd732007-08-06 18:36:23 +09002267 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002268 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2269 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002270 }
2271
Tejun Heo4ae72a12007-02-02 16:22:30 +09002272 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002273 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002274
Tejun Heo14d2bac2006-04-02 17:54:46 +09002275 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
2278/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002279 * ata_port_probe - Mark port as enabled
2280 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002282 * Modify @ap data structure such that the system
2283 * thinks that the entire port is enabled.
2284 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002285 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002286 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 */
2288
2289void ata_port_probe(struct ata_port *ap)
2290{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002291 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292}
2293
2294/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002295 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002296 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002297 *
2298 * This function prints link speed and status of a SATA link.
2299 *
2300 * LOCKING:
2301 * None.
2302 */
Tejun Heo936fd732007-08-06 18:36:23 +09002303void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002304{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002305 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002306
Tejun Heo936fd732007-08-06 18:36:23 +09002307 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002308 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002309 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002310
Tejun Heo936fd732007-08-06 18:36:23 +09002311 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002312 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002313 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002314 "SATA link up %s (SStatus %X SControl %X)\n",
2315 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002316 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002317 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002318 "SATA link down (SStatus %X SControl %X)\n",
2319 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002320 }
2321}
2322
2323/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002324 * __sata_phy_reset - Wake/reset a low-level SATA PHY
2325 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002327 * This function issues commands to standard SATA Sxxx
2328 * PHY registers, to wake up the phy (and device), and
2329 * clear any reset condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 *
2331 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002332 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 *
2334 */
2335void __sata_phy_reset(struct ata_port *ap)
2336{
Tejun Heo936fd732007-08-06 18:36:23 +09002337 struct ata_link *link = &ap->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 unsigned long timeout = jiffies + (HZ * 5);
Tejun Heo936fd732007-08-06 18:36:23 +09002339 u32 sstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
2341 if (ap->flags & ATA_FLAG_SATA_RESET) {
Brett Russcdcca89e2005-03-28 15:10:27 -05002342 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002343 sata_scr_write_flush(link, SCR_CONTROL, 0x301);
Tejun Heo62ba2842005-06-26 23:27:19 +09002344 /* Couldn't find anything in SATA I/II specs, but
2345 * AHCI-1.1 10.4.2 says at least 1 ms. */
2346 mdelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
Tejun Heo81952c52006-05-15 20:57:47 +09002348 /* phy wake/clear reset */
Tejun Heo936fd732007-08-06 18:36:23 +09002349 sata_scr_write_flush(link, SCR_CONTROL, 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
2351 /* wait for phy to become ready, if necessary */
2352 do {
2353 msleep(200);
Tejun Heo936fd732007-08-06 18:36:23 +09002354 sata_scr_read(link, SCR_STATUS, &sstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if ((sstatus & 0xf) != 1)
2356 break;
2357 } while (time_before(jiffies, timeout));
2358
Tejun Heo3be680b2005-12-19 22:35:02 +09002359 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09002360 sata_print_link_status(link);
Jeff Garzik656563e2005-11-20 03:36:45 -05002361
Tejun Heo3be680b2005-12-19 22:35:02 +09002362 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09002363 if (!ata_link_offline(link))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 ata_port_probe(ap);
Tejun Heo3be680b2005-12-19 22:35:02 +09002365 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Tejun Heo198e0fe2006-04-02 18:51:52 +09002368 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 return;
2370
2371 if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) {
2372 ata_port_disable(ap);
2373 return;
2374 }
2375
2376 ap->cbl = ATA_CBL_SATA;
2377}
2378
2379/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002380 * sata_phy_reset - Reset SATA bus.
2381 * @ap: SATA port associated with target SATA PHY.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002383 * This function resets the SATA bus, and then probes
2384 * the bus for devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 *
2386 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002387 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 *
2389 */
2390void sata_phy_reset(struct ata_port *ap)
2391{
2392 __sata_phy_reset(ap);
Tejun Heo198e0fe2006-04-02 18:51:52 +09002393 if (ap->flags & ATA_FLAG_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 return;
2395 ata_bus_reset(ap);
2396}
2397
2398/**
Alan Coxebdfca6e2006-03-23 15:38:34 +00002399 * ata_dev_pair - return other device on cable
Alan Coxebdfca6e2006-03-23 15:38:34 +00002400 * @adev: device
2401 *
2402 * Obtain the other device on the same cable, or if none is
2403 * present NULL is returned
2404 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002405
Tejun Heo3373efd2006-05-15 20:57:53 +09002406struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca6e2006-03-23 15:38:34 +00002407{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002408 struct ata_link *link = adev->link;
2409 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002410 if (!ata_dev_enabled(pair))
Alan Coxebdfca6e2006-03-23 15:38:34 +00002411 return NULL;
2412 return pair;
2413}
2414
2415/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002416 * ata_port_disable - Disable port.
2417 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002419 * Modify @ap data structure such that the system
2420 * thinks that the entire port is disabled, and should
2421 * never attempt to probe or communicate with devices
2422 * on this port.
2423 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002424 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002425 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 */
2427
2428void ata_port_disable(struct ata_port *ap)
2429{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002430 ap->link.device[0].class = ATA_DEV_NONE;
2431 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002432 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
Tejun Heo1c3fae42006-04-02 20:53:28 +09002435/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002436 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002437 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002438 *
Tejun Heo936fd732007-08-06 18:36:23 +09002439 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002440 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002441 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002442 *
2443 * LOCKING:
2444 * Inherited from caller.
2445 *
2446 * RETURNS:
2447 * 0 on success, negative errno on failure
2448 */
Tejun Heo936fd732007-08-06 18:36:23 +09002449int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002450{
Tejun Heo81952c52006-05-15 20:57:47 +09002451 u32 sstatus, spd, mask;
2452 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002453
Tejun Heo936fd732007-08-06 18:36:23 +09002454 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002455 return -EOPNOTSUPP;
2456
2457 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002458 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002459 */
Tejun Heo936fd732007-08-06 18:36:23 +09002460 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002461 if (rc == 0)
2462 spd = (sstatus >> 4) & 0xf;
2463 else
Tejun Heo936fd732007-08-06 18:36:23 +09002464 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002465
Tejun Heo936fd732007-08-06 18:36:23 +09002466 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002467 if (mask <= 1)
2468 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002469
2470 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002471 highbit = fls(mask) - 1;
2472 mask &= ~(1 << highbit);
2473
Tejun Heo008a7892007-07-16 14:29:40 +09002474 /* Mask off all speeds higher than or equal to the current
2475 * one. Force 1.5Gbps if current SPD is not available.
2476 */
2477 if (spd > 1)
2478 mask &= (1 << (spd - 1)) - 1;
2479 else
2480 mask &= 1;
2481
2482 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002483 if (!mask)
2484 return -EINVAL;
2485
Tejun Heo936fd732007-08-06 18:36:23 +09002486 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002487
Tejun Heo936fd732007-08-06 18:36:23 +09002488 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002489 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002490
2491 return 0;
2492}
2493
Tejun Heo936fd732007-08-06 18:36:23 +09002494static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002495{
2496 u32 spd, limit;
2497
Tejun Heo936fd732007-08-06 18:36:23 +09002498 if (link->sata_spd_limit == UINT_MAX)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002499 limit = 0;
2500 else
Tejun Heo936fd732007-08-06 18:36:23 +09002501 limit = fls(link->sata_spd_limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002502
2503 spd = (*scontrol >> 4) & 0xf;
2504 *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4);
2505
2506 return spd != limit;
2507}
2508
2509/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002510 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002511 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002512 *
2513 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002514 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002515 * whether hardreset is necessary to apply SATA spd
2516 * configuration.
2517 *
2518 * LOCKING:
2519 * Inherited from caller.
2520 *
2521 * RETURNS:
2522 * 1 if SATA spd configuration is needed, 0 otherwise.
2523 */
Tejun Heo936fd732007-08-06 18:36:23 +09002524int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002525{
2526 u32 scontrol;
2527
Tejun Heo936fd732007-08-06 18:36:23 +09002528 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002529 return 0;
2530
Tejun Heo936fd732007-08-06 18:36:23 +09002531 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002532}
2533
2534/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002535 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002536 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002537 *
Tejun Heo936fd732007-08-06 18:36:23 +09002538 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002539 *
2540 * LOCKING:
2541 * Inherited from caller.
2542 *
2543 * RETURNS:
2544 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002545 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002546 */
Tejun Heo936fd732007-08-06 18:36:23 +09002547int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002548{
2549 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002550 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002551
Tejun Heo936fd732007-08-06 18:36:23 +09002552 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002553 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002554
Tejun Heo936fd732007-08-06 18:36:23 +09002555 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002556 return 0;
2557
Tejun Heo936fd732007-08-06 18:36:23 +09002558 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002559 return rc;
2560
Tejun Heo1c3fae42006-04-02 20:53:28 +09002561 return 1;
2562}
2563
Alan Cox452503f2005-10-21 19:01:32 -04002564/*
2565 * This mode timing computation functionality is ported over from
2566 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2567 */
2568/*
Alan Coxb352e572006-08-10 18:52:12 +01002569 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002570 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002571 * for UDMA6, which is currently supported only by Maxtor drives.
2572 *
2573 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002574 */
2575
2576static const struct ata_timing ata_timing[] = {
2577
2578 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
2579 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2580 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2581 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2582
Alan Coxb352e572006-08-10 18:52:12 +01002583 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
2584 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002585 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2586 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2587 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2588
2589/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002590
Alan Cox452503f2005-10-21 19:01:32 -04002591 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
2592 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2593 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002594
Alan Cox452503f2005-10-21 19:01:32 -04002595 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
2596 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2597 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2598
Alan Coxb352e572006-08-10 18:52:12 +01002599 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
2600 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002601 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2602 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2603
2604 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2605 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2606 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2607
2608/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2609
2610 { 0xFF }
2611};
2612
2613#define ENOUGH(v,unit) (((v)-1)/(unit)+1)
2614#define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
2615
2616static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2617{
2618 q->setup = EZ(t->setup * 1000, T);
2619 q->act8b = EZ(t->act8b * 1000, T);
2620 q->rec8b = EZ(t->rec8b * 1000, T);
2621 q->cyc8b = EZ(t->cyc8b * 1000, T);
2622 q->active = EZ(t->active * 1000, T);
2623 q->recover = EZ(t->recover * 1000, T);
2624 q->cycle = EZ(t->cycle * 1000, T);
2625 q->udma = EZ(t->udma * 1000, UT);
2626}
2627
2628void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2629 struct ata_timing *m, unsigned int what)
2630{
2631 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2632 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2633 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2634 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2635 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2636 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2637 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2638 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2639}
2640
2641static const struct ata_timing* ata_timing_find_mode(unsigned short speed)
2642{
2643 const struct ata_timing *t;
2644
2645 for (t = ata_timing; t->mode != speed; t++)
Alan Cox91190752005-10-26 12:17:46 -04002646 if (t->mode == 0xFF)
Alan Cox452503f2005-10-21 19:01:32 -04002647 return NULL;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002648 return t;
Alan Cox452503f2005-10-21 19:01:32 -04002649}
2650
2651int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2652 struct ata_timing *t, int T, int UT)
2653{
2654 const struct ata_timing *s;
2655 struct ata_timing p;
2656
2657 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002658 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002659 */
Alan Cox452503f2005-10-21 19:01:32 -04002660
2661 if (!(s = ata_timing_find_mode(speed)))
2662 return -EINVAL;
2663
Albert Lee75b1f2f2005-11-16 17:06:18 +08002664 memcpy(t, s, sizeof(*s));
2665
Alan Cox452503f2005-10-21 19:01:32 -04002666 /*
2667 * If the drive is an EIDE drive, it can tell us it needs extended
2668 * PIO/MW_DMA cycle timing.
2669 */
2670
2671 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2672 memset(&p, 0, sizeof(p));
2673 if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
2674 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2675 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2676 } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
2677 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2678 }
2679 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2680 }
2681
2682 /*
2683 * Convert the timing to bus clock counts.
2684 */
2685
Albert Lee75b1f2f2005-11-16 17:06:18 +08002686 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002687
2688 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002689 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2690 * S.M.A.R.T * and some other commands. We have to ensure that the
2691 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002692 */
2693
Alanfd3367af2006-12-07 12:41:18 +00002694 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002695 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2696 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2697 }
2698
2699 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002700 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002701 */
2702
2703 if (t->act8b + t->rec8b < t->cyc8b) {
2704 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2705 t->rec8b = t->cyc8b - t->act8b;
2706 }
2707
2708 if (t->active + t->recover < t->cycle) {
2709 t->active += (t->cycle - (t->active + t->recover)) / 2;
2710 t->recover = t->cycle - t->active;
2711 }
Jeff Garzika617c092007-05-21 20:14:23 -04002712
Alan Cox4f701d12007-04-23 11:55:36 +01002713 /* In a few cases quantisation may produce enough errors to
2714 leave t->cycle too low for the sum of active and recovery
2715 if so we must correct this */
2716 if (t->active + t->recover > t->cycle)
2717 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002718
2719 return 0;
2720}
2721
Tejun Heocf176e12006-04-02 17:54:46 +09002722/**
2723 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09002724 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09002725 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09002726 *
2727 * Adjust xfer masks of @dev downward. Note that this function
2728 * does not apply the change. Invoking ata_set_mode() afterwards
2729 * will apply the limit.
2730 *
2731 * LOCKING:
2732 * Inherited from caller.
2733 *
2734 * RETURNS:
2735 * 0 on success, negative errno on failure
2736 */
Tejun Heo458337d2007-02-02 16:22:30 +09002737int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09002738{
Tejun Heo458337d2007-02-02 16:22:30 +09002739 char buf[32];
2740 unsigned int orig_mask, xfer_mask;
2741 unsigned int pio_mask, mwdma_mask, udma_mask;
2742 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09002743
Tejun Heo458337d2007-02-02 16:22:30 +09002744 quiet = !!(sel & ATA_DNXFER_QUIET);
2745 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09002746
Tejun Heo458337d2007-02-02 16:22:30 +09002747 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
2748 dev->mwdma_mask,
2749 dev->udma_mask);
2750 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09002751
Tejun Heo458337d2007-02-02 16:22:30 +09002752 switch (sel) {
2753 case ATA_DNXFER_PIO:
2754 highbit = fls(pio_mask) - 1;
2755 pio_mask &= ~(1 << highbit);
2756 break;
2757
2758 case ATA_DNXFER_DMA:
2759 if (udma_mask) {
2760 highbit = fls(udma_mask) - 1;
2761 udma_mask &= ~(1 << highbit);
2762 if (!udma_mask)
2763 return -ENOENT;
2764 } else if (mwdma_mask) {
2765 highbit = fls(mwdma_mask) - 1;
2766 mwdma_mask &= ~(1 << highbit);
2767 if (!mwdma_mask)
2768 return -ENOENT;
2769 }
2770 break;
2771
2772 case ATA_DNXFER_40C:
2773 udma_mask &= ATA_UDMA_MASK_40C;
2774 break;
2775
2776 case ATA_DNXFER_FORCE_PIO0:
2777 pio_mask &= 1;
2778 case ATA_DNXFER_FORCE_PIO:
2779 mwdma_mask = 0;
2780 udma_mask = 0;
2781 break;
2782
Tejun Heo458337d2007-02-02 16:22:30 +09002783 default:
2784 BUG();
2785 }
2786
2787 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
2788
2789 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
2790 return -ENOENT;
2791
2792 if (!quiet) {
2793 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
2794 snprintf(buf, sizeof(buf), "%s:%s",
2795 ata_mode_string(xfer_mask),
2796 ata_mode_string(xfer_mask & ATA_MASK_PIO));
2797 else
2798 snprintf(buf, sizeof(buf), "%s",
2799 ata_mode_string(xfer_mask));
2800
2801 ata_dev_printk(dev, KERN_WARNING,
2802 "limiting speed to %s\n", buf);
2803 }
Tejun Heocf176e12006-04-02 17:54:46 +09002804
2805 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
2806 &dev->udma_mask);
2807
Tejun Heocf176e12006-04-02 17:54:46 +09002808 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09002809}
2810
Tejun Heo3373efd2006-05-15 20:57:53 +09002811static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002813 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo83206a22006-03-24 15:25:31 +09002814 unsigned int err_mask;
2815 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Tejun Heoe8384602006-04-02 18:51:53 +09002817 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 if (dev->xfer_shift == ATA_SHIFT_PIO)
2819 dev->flags |= ATA_DFLAG_PIO;
2820
Tejun Heo3373efd2006-05-15 20:57:53 +09002821 err_mask = ata_dev_set_xfermode(dev);
Alan11750a42007-02-05 16:28:30 +00002822 /* Old CFA may refuse this command, which is just fine */
2823 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
2824 err_mask &= ~AC_ERR_DEV;
Alan Cox0bc2a792007-07-31 14:01:48 +01002825 /* Some very old devices and some bad newer ones fail any kind of
2826 SET_XFERMODE request but support PIO0-2 timings and no IORDY */
2827 if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) &&
2828 dev->pio_mode <= XFER_PIO_2)
2829 err_mask &= ~AC_ERR_DEV;
Tejun Heo83206a22006-03-24 15:25:31 +09002830 if (err_mask) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002831 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
2832 "(err_mask=0x%x)\n", err_mask);
Tejun Heo83206a22006-03-24 15:25:31 +09002833 return -EIO;
2834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Tejun Heobaa1e782006-11-01 18:39:27 +09002836 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo3373efd2006-05-15 20:57:53 +09002837 rc = ata_dev_revalidate(dev, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09002838 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09002839 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09002840 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09002841
Tejun Heo23e71c32006-03-06 04:31:57 +09002842 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
2843 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Tejun Heof15a1da2006-05-15 20:57:56 +09002845 ata_dev_printk(dev, KERN_INFO, "configured for %s\n",
2846 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)));
Tejun Heo83206a22006-03-24 15:25:31 +09002847 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848}
2849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850/**
Alan04351822007-03-06 02:37:52 -08002851 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09002852 * @link: link on which timings will be programmed
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002853 * @r_failed_dev: out paramter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 *
Alan04351822007-03-06 02:37:52 -08002855 * Standard implementation of the function used to tune and set
2856 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2857 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002858 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04002859 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002861 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002862 *
2863 * RETURNS:
2864 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 */
Alan04351822007-03-06 02:37:52 -08002866
Tejun Heo02607312007-08-06 18:36:23 +09002867int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868{
Tejun Heo02607312007-08-06 18:36:23 +09002869 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09002870 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09002871 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09002872
Tejun Heoa6d5a512006-03-06 04:31:57 +09002873 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09002874 ata_link_for_each_dev(dev, link) {
Tejun Heoacf356b2006-03-24 14:07:50 +09002875 unsigned int pio_mask, dma_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002876
Tejun Heoe1211e32006-04-01 01:38:18 +09002877 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09002878 continue;
2879
Tejun Heo3373efd2006-05-15 20:57:53 +09002880 ata_dev_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09002881
Tejun Heoacf356b2006-03-24 14:07:50 +09002882 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
2883 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
2884 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
2885 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01002886
Tejun Heo4f659772006-04-01 01:38:18 +09002887 found = 1;
Alan Cox5444a6f2006-03-27 18:58:20 +01002888 if (dev->dma_mode)
2889 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002890 }
Tejun Heo4f659772006-04-01 01:38:18 +09002891 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002892 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09002893
2894 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002895 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002896 if (!ata_dev_enabled(dev))
2897 continue;
2898
2899 if (!dev->pio_mode) {
Tejun Heof15a1da2006-05-15 20:57:56 +09002900 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09002901 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002902 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09002903 }
2904
2905 dev->xfer_mode = dev->pio_mode;
2906 dev->xfer_shift = ATA_SHIFT_PIO;
2907 if (ap->ops->set_piomode)
2908 ap->ops->set_piomode(ap, dev);
2909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Tejun Heoa6d5a512006-03-06 04:31:57 +09002911 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09002912 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09002913 if (!ata_dev_enabled(dev) || !dev->dma_mode)
2914 continue;
2915
2916 dev->xfer_mode = dev->dma_mode;
2917 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
2918 if (ap->ops->set_dmamode)
2919 ap->ops->set_dmamode(ap, dev);
2920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
2922 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09002923 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00002924 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02002925 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09002926 continue;
2927
Tejun Heo3373efd2006-05-15 20:57:53 +09002928 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09002929 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002930 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09002931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Tejun Heoe8e06192006-04-01 01:38:18 +09002933 /* Record simplex status. If we selected DMA then the other
2934 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01002935 */
Jeff Garzikcca39742006-08-24 03:19:22 -04002936 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00002937 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01002938
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002939 out:
2940 if (rc)
2941 *r_failed_dev = dev;
2942 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943}
2944
2945/**
Alan04351822007-03-06 02:37:52 -08002946 * ata_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09002947 * @link: link on which timings will be programmed
Alan04351822007-03-06 02:37:52 -08002948 * @r_failed_dev: out paramter for failed device
2949 *
2950 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
2951 * ata_set_mode() fails, pointer to the failing device is
2952 * returned in @r_failed_dev.
2953 *
2954 * LOCKING:
2955 * PCI/etc. bus probe sem.
2956 *
2957 * RETURNS:
2958 * 0 on success, negative errno otherwise
2959 */
Tejun Heo02607312007-08-06 18:36:23 +09002960int ata_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Alan04351822007-03-06 02:37:52 -08002961{
Tejun Heo02607312007-08-06 18:36:23 +09002962 struct ata_port *ap = link->ap;
2963
Alan04351822007-03-06 02:37:52 -08002964 /* has private set_mode? */
2965 if (ap->ops->set_mode)
Tejun Heo02607312007-08-06 18:36:23 +09002966 return ap->ops->set_mode(link, r_failed_dev);
2967 return ata_do_set_mode(link, r_failed_dev);
Alan04351822007-03-06 02:37:52 -08002968}
2969
2970/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002971 * ata_tf_to_host - issue ATA taskfile to host controller
2972 * @ap: port to which command is being issued
2973 * @tf: ATA taskfile register set
2974 *
2975 * Issues ATA taskfile register set to ATA host controller,
2976 * with proper synchronization with interrupt handler and
2977 * other threads.
2978 *
2979 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002980 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05002981 */
2982
2983static inline void ata_tf_to_host(struct ata_port *ap,
2984 const struct ata_taskfile *tf)
2985{
2986 ap->ops->tf_load(ap, tf);
2987 ap->ops->exec_command(ap, tf);
2988}
2989
2990/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 * ata_busy_sleep - sleep until BSY clears, or timeout
2992 * @ap: port containing status register to be polled
2993 * @tmout_pat: impatience timeout
2994 * @tmout: overall timeout
2995 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002996 * Sleep until ATA Status register bit BSY clears,
2997 * or a timeout occurs.
2998 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09002999 * LOCKING:
3000 * Kernel thread context (may sleep).
3001 *
3002 * RETURNS:
3003 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003005int ata_busy_sleep(struct ata_port *ap,
3006 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007{
3008 unsigned long timer_start, timeout;
3009 u8 status;
3010
3011 status = ata_busy_wait(ap, ATA_BUSY, 300);
3012 timer_start = jiffies;
3013 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09003014 while (status != 0xff && (status & ATA_BUSY) &&
3015 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 msleep(50);
3017 status = ata_busy_wait(ap, ATA_BUSY, 3);
3018 }
3019
Tejun Heod1adc1b2006-10-09 18:32:15 +09003020 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09003021 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04003022 "port is slow to respond, please be patient "
3023 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
3025 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09003026 while (status != 0xff && (status & ATA_BUSY) &&
3027 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 msleep(50);
3029 status = ata_chk_status(ap);
3030 }
3031
Tejun Heod1adc1b2006-10-09 18:32:15 +09003032 if (status == 0xff)
3033 return -ENODEV;
3034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003036 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04003037 "(%lu secs, Status 0x%x)\n",
3038 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09003039 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 }
3041
3042 return 0;
3043}
3044
Tejun Heod4b2bab2007-02-02 16:50:52 +09003045/**
3046 * ata_wait_ready - sleep until BSY clears, or timeout
3047 * @ap: port containing status register to be polled
3048 * @deadline: deadline jiffies for the operation
3049 *
3050 * Sleep until ATA Status register bit BSY clears, or timeout
3051 * occurs.
3052 *
3053 * LOCKING:
3054 * Kernel thread context (may sleep).
3055 *
3056 * RETURNS:
3057 * 0 on success, -errno otherwise.
3058 */
3059int ata_wait_ready(struct ata_port *ap, unsigned long deadline)
3060{
3061 unsigned long start = jiffies;
3062 int warned = 0;
3063
3064 while (1) {
3065 u8 status = ata_chk_status(ap);
3066 unsigned long now = jiffies;
3067
3068 if (!(status & ATA_BUSY))
3069 return 0;
Tejun Heo936fd732007-08-06 18:36:23 +09003070 if (!ata_link_online(&ap->link) && status == 0xff)
Tejun Heod4b2bab2007-02-02 16:50:52 +09003071 return -ENODEV;
3072 if (time_after(now, deadline))
3073 return -EBUSY;
3074
3075 if (!warned && time_after(now, start + 5 * HZ) &&
3076 (deadline - now > 3 * HZ)) {
3077 ata_port_printk(ap, KERN_WARNING,
3078 "port is slow to respond, please be patient "
3079 "(Status 0x%x)\n", status);
3080 warned = 1;
3081 }
3082
3083 msleep(50);
3084 }
3085}
3086
3087static int ata_bus_post_reset(struct ata_port *ap, unsigned int devmask,
3088 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089{
3090 struct ata_ioports *ioaddr = &ap->ioaddr;
3091 unsigned int dev0 = devmask & (1 << 0);
3092 unsigned int dev1 = devmask & (1 << 1);
Tejun Heo9b893912007-02-02 16:50:52 +09003093 int rc, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
3095 /* if device 0 was found in ata_devchk, wait for its
3096 * BSY bit to clear
3097 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003098 if (dev0) {
3099 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003100 if (rc) {
3101 if (rc != -ENODEV)
3102 return rc;
3103 ret = rc;
3104 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Tejun Heoe141d992007-06-10 14:26:20 +09003107 /* if device 1 was found in ata_devchk, wait for register
3108 * access briefly, then wait for BSY to clear.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 */
Tejun Heoe141d992007-06-10 14:26:20 +09003110 if (dev1) {
3111 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
3113 ap->ops->dev_select(ap, 1);
Tejun Heoe141d992007-06-10 14:26:20 +09003114
3115 /* Wait for register access. Some ATAPI devices fail
3116 * to set nsect/lbal after reset, so don't waste too
3117 * much time on it. We're gonna wait for !BSY anyway.
3118 */
3119 for (i = 0; i < 2; i++) {
3120 u8 nsect, lbal;
3121
3122 nsect = ioread8(ioaddr->nsect_addr);
3123 lbal = ioread8(ioaddr->lbal_addr);
3124 if ((nsect == 1) && (lbal == 1))
3125 break;
3126 msleep(50); /* give drive a breather */
3127 }
3128
Tejun Heod4b2bab2007-02-02 16:50:52 +09003129 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003130 if (rc) {
3131 if (rc != -ENODEV)
3132 return rc;
3133 ret = rc;
3134 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
3137 /* is all this really necessary? */
3138 ap->ops->dev_select(ap, 0);
3139 if (dev1)
3140 ap->ops->dev_select(ap, 1);
3141 if (dev0)
3142 ap->ops->dev_select(ap, 0);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003143
Tejun Heo9b893912007-02-02 16:50:52 +09003144 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145}
3146
Tejun Heod4b2bab2007-02-02 16:50:52 +09003147static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
3148 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149{
3150 struct ata_ioports *ioaddr = &ap->ioaddr;
3151
Tejun Heo44877b42007-02-21 01:06:51 +09003152 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
3154 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003155 iowrite8(ap->ctl, ioaddr->ctl_addr);
3156 udelay(20); /* FIXME: flush */
3157 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
3158 udelay(20); /* FIXME: flush */
3159 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
3161 /* spec mandates ">= 2ms" before checking status.
3162 * We wait 150ms, because that was the magic delay used for
3163 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
3164 * between when the ATA command register is written, and then
3165 * status is checked. Because waiting for "a while" before
3166 * checking status is fine, post SRST, we perform this magic
3167 * delay here as well.
Alan Cox09c7ad72006-03-22 15:52:40 +00003168 *
3169 * Old drivers/ide uses the 2mS rule and then waits for ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 */
3171 msleep(150);
3172
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003173 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09003174 * the bus shows 0xFF because the odd clown forgets the D7
3175 * pulldown resistor.
3176 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003177 if (ata_check_status(ap) == 0xFF)
Tejun Heo9b893912007-02-02 16:50:52 +09003178 return -ENODEV;
Alan Cox09c7ad72006-03-22 15:52:40 +00003179
Tejun Heod4b2bab2007-02-02 16:50:52 +09003180 return ata_bus_post_reset(ap, devmask, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181}
3182
3183/**
3184 * ata_bus_reset - reset host port and associated ATA channel
3185 * @ap: port to reset
3186 *
3187 * This is typically the first time we actually start issuing
3188 * commands to the ATA channel. We wait for BSY to clear, then
3189 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
3190 * result. Determine what devices, if any, are on the channel
3191 * by looking at the device 0/1 error register. Look at the signature
3192 * stored in each device's taskfile registers, to determine if
3193 * the device is ATA or ATAPI.
3194 *
3195 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003196 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04003197 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 *
3199 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09003200 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 */
3202
3203void ata_bus_reset(struct ata_port *ap)
3204{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003205 struct ata_device *device = ap->link.device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 struct ata_ioports *ioaddr = &ap->ioaddr;
3207 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3208 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003209 unsigned int dev0, dev1 = 0, devmask = 0;
Tejun Heo9b893912007-02-02 16:50:52 +09003210 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
Tejun Heo44877b42007-02-21 01:06:51 +09003212 DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
3214 /* determine if device 0/1 are present */
3215 if (ap->flags & ATA_FLAG_SATA_RESET)
3216 dev0 = 1;
3217 else {
3218 dev0 = ata_devchk(ap, 0);
3219 if (slave_possible)
3220 dev1 = ata_devchk(ap, 1);
3221 }
3222
3223 if (dev0)
3224 devmask |= (1 << 0);
3225 if (dev1)
3226 devmask |= (1 << 1);
3227
3228 /* select device 0 again */
3229 ap->ops->dev_select(ap, 0);
3230
3231 /* issue bus reset */
Tejun Heo9b893912007-02-02 16:50:52 +09003232 if (ap->flags & ATA_FLAG_SRST) {
3233 rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ);
3234 if (rc && rc != -ENODEV)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003235 goto err_out;
Tejun Heo9b893912007-02-02 16:50:52 +09003236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
3238 /*
3239 * determine by signature whether we have ATA or ATAPI devices
3240 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003241 device[0].class = ata_dev_try_classify(ap, 0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 if ((slave_possible) && (err != 0x81))
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003243 device[1].class = ata_dev_try_classify(ap, 1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 /* is double-select really necessary? */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003246 if (device[1].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 ap->ops->dev_select(ap, 1);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003248 if (device[0].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 ap->ops->dev_select(ap, 0);
3250
3251 /* if no devices were detected, disable this port */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003252 if ((device[0].class == ATA_DEV_NONE) &&
3253 (device[1].class == ATA_DEV_NONE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 goto err_out;
3255
3256 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
3257 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003258 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 }
3260
3261 DPRINTK("EXIT\n");
3262 return;
3263
3264err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003265 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Jeff Garzikac8869d2007-08-16 03:17:03 -04003266 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 DPRINTK("EXIT\n");
3269}
3270
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003271/**
Tejun Heo936fd732007-08-06 18:36:23 +09003272 * sata_link_debounce - debounce SATA phy status
3273 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003274 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003275 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003276 *
Tejun Heo936fd732007-08-06 18:36:23 +09003277* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003278 * holding the same value where DET is not 1 for @duration polled
3279 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003280 * beginning of the stable state. Because DET gets stuck at 1 on
3281 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003282 * until timeout then returns 0 if DET is stable at 1.
3283 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003284 * @timeout is further limited by @deadline. The sooner of the
3285 * two is used.
3286 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003287 * LOCKING:
3288 * Kernel thread context (may sleep)
3289 *
3290 * RETURNS:
3291 * 0 on success, -errno on failure.
3292 */
Tejun Heo936fd732007-08-06 18:36:23 +09003293int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3294 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003295{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003296 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003297 unsigned long duration = msecs_to_jiffies(params[1]);
3298 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003299 u32 last, cur;
3300 int rc;
3301
Tejun Heod4b2bab2007-02-02 16:50:52 +09003302 t = jiffies + msecs_to_jiffies(params[2]);
3303 if (time_before(t, deadline))
3304 deadline = t;
3305
Tejun Heo936fd732007-08-06 18:36:23 +09003306 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003307 return rc;
3308 cur &= 0xf;
3309
3310 last = cur;
3311 last_jiffies = jiffies;
3312
3313 while (1) {
3314 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003315 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003316 return rc;
3317 cur &= 0xf;
3318
3319 /* DET stable? */
3320 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003321 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003322 continue;
3323 if (time_after(jiffies, last_jiffies + duration))
3324 return 0;
3325 continue;
3326 }
3327
3328 /* unstable, start over */
3329 last = cur;
3330 last_jiffies = jiffies;
3331
Tejun Heof1545152007-07-16 14:29:40 +09003332 /* Check deadline. If debouncing failed, return
3333 * -EPIPE to tell upper layer to lower link speed.
3334 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003335 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003336 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003337 }
3338}
3339
3340/**
Tejun Heo936fd732007-08-06 18:36:23 +09003341 * sata_link_resume - resume SATA link
3342 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003343 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003344 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003345 *
Tejun Heo936fd732007-08-06 18:36:23 +09003346 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003347 *
3348 * LOCKING:
3349 * Kernel thread context (may sleep)
3350 *
3351 * RETURNS:
3352 * 0 on success, -errno on failure.
3353 */
Tejun Heo936fd732007-08-06 18:36:23 +09003354int sata_link_resume(struct ata_link *link, const unsigned long *params,
3355 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003356{
3357 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003358 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003359
Tejun Heo936fd732007-08-06 18:36:23 +09003360 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003361 return rc;
3362
Tejun Heo852ee16a2006-04-01 01:38:18 +09003363 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003364
Tejun Heo936fd732007-08-06 18:36:23 +09003365 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003366 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003367
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003368 /* Some PHYs react badly if SStatus is pounded immediately
3369 * after resuming. Delay 200ms before debouncing.
3370 */
3371 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003372
Tejun Heo936fd732007-08-06 18:36:23 +09003373 return sata_link_debounce(link, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003374}
3375
Tejun Heof5914a42006-05-31 18:27:48 +09003376/**
3377 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003378 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003379 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003380 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003381 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003382 * prereset makes libata abort whole reset sequence and give up
3383 * that port, so prereset should be best-effort. It does its
3384 * best to prepare for reset sequence but if things go wrong, it
3385 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003386 *
3387 * LOCKING:
3388 * Kernel thread context (may sleep)
3389 *
3390 * RETURNS:
3391 * 0 on success, -errno otherwise.
3392 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003393int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003394{
Tejun Heocc0680a2007-08-06 18:36:23 +09003395 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003396 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003397 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003398 int rc;
3399
Tejun Heo31daabd2007-02-02 16:50:52 +09003400 /* handle link resume */
Tejun Heo28324302006-07-03 16:07:26 +09003401 if ((ehc->i.flags & ATA_EHI_RESUME_LINK) &&
Tejun Heo0c887582007-08-06 18:36:23 +09003402 (link->flags & ATA_LFLAG_HRST_TO_RESUME))
Tejun Heo28324302006-07-03 16:07:26 +09003403 ehc->i.action |= ATA_EH_HARDRESET;
3404
Tejun Heof5914a42006-05-31 18:27:48 +09003405 /* if we're about to do hardreset, nothing more to do */
3406 if (ehc->i.action & ATA_EH_HARDRESET)
3407 return 0;
3408
Tejun Heo936fd732007-08-06 18:36:23 +09003409 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003410 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003411 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003412 /* whine about phy resume failure but proceed */
3413 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003414 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003415 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003416 }
3417
3418 /* Wait for !BSY if the controller can wait for the first D2H
3419 * Reg FIS and we don't know that no device is attached.
3420 */
Tejun Heo0c887582007-08-06 18:36:23 +09003421 if (!(link->flags & ATA_LFLAG_SKIP_D2H_BSY) && !ata_link_offline(link)) {
Tejun Heob8cffc62007-02-02 16:50:52 +09003422 rc = ata_wait_ready(ap, deadline);
Tejun Heo6dffaf62007-05-23 11:58:52 +02003423 if (rc && rc != -ENODEV) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003424 ata_link_printk(link, KERN_WARNING, "device not ready "
Tejun Heob8cffc62007-02-02 16:50:52 +09003425 "(errno=%d), forcing hardreset\n", rc);
3426 ehc->i.action |= ATA_EH_HARDRESET;
3427 }
3428 }
Tejun Heof5914a42006-05-31 18:27:48 +09003429
3430 return 0;
3431}
3432
Tejun Heoc2bd5802006-01-24 17:05:22 +09003433/**
3434 * ata_std_softreset - reset host port via ATA SRST
Tejun Heocc0680a2007-08-06 18:36:23 +09003435 * @link: ATA link to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09003436 * @classes: resulting classes of attached devices
Tejun Heod4b2bab2007-02-02 16:50:52 +09003437 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003438 *
Tejun Heo52783c52006-05-31 18:28:22 +09003439 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003440 *
3441 * LOCKING:
3442 * Kernel thread context (may sleep)
3443 *
3444 * RETURNS:
3445 * 0 on success, -errno otherwise.
3446 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003447int ata_std_softreset(struct ata_link *link, unsigned int *classes,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003448 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003449{
Tejun Heocc0680a2007-08-06 18:36:23 +09003450 struct ata_port *ap = link->ap;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003451 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
Tejun Heod4b2bab2007-02-02 16:50:52 +09003452 unsigned int devmask = 0;
3453 int rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003454 u8 err;
3455
3456 DPRINTK("ENTER\n");
3457
Tejun Heo936fd732007-08-06 18:36:23 +09003458 if (ata_link_offline(link)) {
Tejun Heo3a397462006-02-10 23:58:48 +09003459 classes[0] = ATA_DEV_NONE;
3460 goto out;
3461 }
3462
Tejun Heoc2bd5802006-01-24 17:05:22 +09003463 /* determine if device 0/1 are present */
3464 if (ata_devchk(ap, 0))
3465 devmask |= (1 << 0);
3466 if (slave_possible && ata_devchk(ap, 1))
3467 devmask |= (1 << 1);
3468
Tejun Heoc2bd5802006-01-24 17:05:22 +09003469 /* select device 0 again */
3470 ap->ops->dev_select(ap, 0);
3471
3472 /* issue bus reset */
3473 DPRINTK("about to softreset, devmask=%x\n", devmask);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003474 rc = ata_bus_softreset(ap, devmask, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003475 /* if link is occupied, -ENODEV too is an error */
Tejun Heo936fd732007-08-06 18:36:23 +09003476 if (rc && (rc != -ENODEV || sata_scr_valid(link))) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003477 ata_link_printk(link, KERN_ERR, "SRST failed (errno=%d)\n", rc);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003478 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003479 }
3480
3481 /* determine by signature whether we have ATA or ATAPI devices */
3482 classes[0] = ata_dev_try_classify(ap, 0, &err);
3483 if (slave_possible && err != 0x81)
3484 classes[1] = ata_dev_try_classify(ap, 1, &err);
3485
Tejun Heo3a397462006-02-10 23:58:48 +09003486 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09003487 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
3488 return 0;
3489}
3490
3491/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003492 * sata_link_hardreset - reset link via SATA phy reset
3493 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003494 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003495 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003496 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003497 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003498 *
3499 * LOCKING:
3500 * Kernel thread context (may sleep)
3501 *
3502 * RETURNS:
3503 * 0 on success, -errno otherwise.
3504 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003505int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003506 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003507{
Tejun Heo852ee16a2006-04-01 01:38:18 +09003508 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003509 int rc;
Tejun Heo852ee16a2006-04-01 01:38:18 +09003510
Tejun Heoc2bd5802006-01-24 17:05:22 +09003511 DPRINTK("ENTER\n");
3512
Tejun Heo936fd732007-08-06 18:36:23 +09003513 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003514 /* SATA spec says nothing about how to reconfigure
3515 * spd. To be on the safe side, turn off phy during
3516 * reconfiguration. This works for at least ICH7 AHCI
3517 * and Sil3124.
3518 */
Tejun Heo936fd732007-08-06 18:36:23 +09003519 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003520 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003521
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003522 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003523
Tejun Heo936fd732007-08-06 18:36:23 +09003524 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003525 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003526
Tejun Heo936fd732007-08-06 18:36:23 +09003527 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003528 }
3529
3530 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003531 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003532 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003533
Tejun Heo852ee16a2006-04-01 01:38:18 +09003534 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003535
Tejun Heo936fd732007-08-06 18:36:23 +09003536 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003537 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003538
Tejun Heo1c3fae42006-04-02 20:53:28 +09003539 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003540 * 10.4.2 says at least 1 ms.
3541 */
3542 msleep(1);
3543
Tejun Heo936fd732007-08-06 18:36:23 +09003544 /* bring link back */
3545 rc = sata_link_resume(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003546 out:
3547 DPRINTK("EXIT, rc=%d\n", rc);
3548 return rc;
3549}
3550
3551/**
3552 * sata_std_hardreset - reset host port via SATA phy reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003553 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003554 * @class: resulting class of attached device
Tejun Heod4b2bab2007-02-02 16:50:52 +09003555 * @deadline: deadline jiffies for the operation
Tejun Heob6103f62006-11-01 17:59:53 +09003556 *
3557 * SATA phy-reset host port using DET bits of SControl register,
3558 * wait for !BSY and classify the attached device.
3559 *
3560 * LOCKING:
3561 * Kernel thread context (may sleep)
3562 *
3563 * RETURNS:
3564 * 0 on success, -errno otherwise.
3565 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003566int sata_std_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003567 unsigned long deadline)
Tejun Heob6103f62006-11-01 17:59:53 +09003568{
Tejun Heocc0680a2007-08-06 18:36:23 +09003569 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003570 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heob6103f62006-11-01 17:59:53 +09003571 int rc;
3572
3573 DPRINTK("ENTER\n");
3574
3575 /* do hardreset */
Tejun Heocc0680a2007-08-06 18:36:23 +09003576 rc = sata_link_hardreset(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003577 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003578 ata_link_printk(link, KERN_ERR,
Tejun Heob6103f62006-11-01 17:59:53 +09003579 "COMRESET failed (errno=%d)\n", rc);
3580 return rc;
3581 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09003582
Tejun Heoc2bd5802006-01-24 17:05:22 +09003583 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09003584 if (ata_link_offline(link)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09003585 *class = ATA_DEV_NONE;
3586 DPRINTK("EXIT, link offline\n");
3587 return 0;
3588 }
3589
Tejun Heo34fee222007-02-02 15:29:27 +09003590 /* wait a while before checking status, see SRST for more info */
3591 msleep(150);
3592
Tejun Heod4b2bab2007-02-02 16:50:52 +09003593 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003594 /* link occupied, -ENODEV too is an error */
3595 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003596 ata_link_printk(link, KERN_ERR,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003597 "COMRESET failed (errno=%d)\n", rc);
3598 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003599 }
3600
Tejun Heo3a397462006-02-10 23:58:48 +09003601 ap->ops->dev_select(ap, 0); /* probably unnecessary */
3602
Tejun Heoc2bd5802006-01-24 17:05:22 +09003603 *class = ata_dev_try_classify(ap, 0, NULL);
3604
3605 DPRINTK("EXIT, class=%u\n", *class);
3606 return 0;
3607}
3608
3609/**
3610 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003611 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003612 * @classes: classes of attached devices
3613 *
3614 * This function is invoked after a successful reset. Note that
3615 * the device might have been reset more than once using
3616 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003617 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003618 * LOCKING:
3619 * Kernel thread context (may sleep)
3620 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003621void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003622{
Tejun Heocc0680a2007-08-06 18:36:23 +09003623 struct ata_port *ap = link->ap;
Tejun Heodc2b3512006-05-15 20:58:00 +09003624 u32 serror;
3625
Tejun Heoc2bd5802006-01-24 17:05:22 +09003626 DPRINTK("ENTER\n");
3627
Tejun Heoc2bd5802006-01-24 17:05:22 +09003628 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003629 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003630
Tejun Heodc2b3512006-05-15 20:58:00 +09003631 /* clear SError */
Tejun Heo936fd732007-08-06 18:36:23 +09003632 if (sata_scr_read(link, SCR_ERROR, &serror) == 0)
3633 sata_scr_write(link, SCR_ERROR, serror);
Tejun Heodc2b3512006-05-15 20:58:00 +09003634
Tejun Heoc2bd5802006-01-24 17:05:22 +09003635 /* is double-select really necessary? */
3636 if (classes[0] != ATA_DEV_NONE)
3637 ap->ops->dev_select(ap, 1);
3638 if (classes[1] != ATA_DEV_NONE)
3639 ap->ops->dev_select(ap, 0);
3640
Tejun Heo3a397462006-02-10 23:58:48 +09003641 /* bail out if no device is present */
3642 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3643 DPRINTK("EXIT, no device\n");
3644 return;
3645 }
3646
3647 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003648 if (ap->ioaddr.ctl_addr)
3649 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003650
3651 DPRINTK("EXIT\n");
3652}
3653
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003654/**
Tejun Heo623a3122006-03-05 17:55:58 +09003655 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003656 * @dev: device to compare against
3657 * @new_class: class of the new device
3658 * @new_id: IDENTIFY page of the new device
3659 *
3660 * Compare @new_class and @new_id against @dev and determine
3661 * whether @dev is the device indicated by @new_class and
3662 * @new_id.
3663 *
3664 * LOCKING:
3665 * None.
3666 *
3667 * RETURNS:
3668 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3669 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003670static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3671 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003672{
3673 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003674 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3675 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003676
3677 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003678 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3679 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003680 return 0;
3681 }
3682
Tejun Heoa0cf7332007-01-02 20:18:49 +09003683 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3684 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3685 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3686 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003687
3688 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003689 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3690 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003691 return 0;
3692 }
3693
3694 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003695 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3696 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003697 return 0;
3698 }
3699
Tejun Heo623a3122006-03-05 17:55:58 +09003700 return 1;
3701}
3702
3703/**
Tejun Heofe309112007-05-15 03:28:15 +09003704 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003705 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003706 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003707 *
3708 * Re-read IDENTIFY page and make sure @dev is still attached to
3709 * the port.
3710 *
3711 * LOCKING:
3712 * Kernel thread context (may sleep)
3713 *
3714 * RETURNS:
3715 * 0 on success, negative errno otherwise
3716 */
Tejun Heofe309112007-05-15 03:28:15 +09003717int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003718{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003719 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003720 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003721 int rc;
3722
Tejun Heofe635c72006-05-15 20:57:35 +09003723 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003724 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003725 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003726 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003727
3728 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003729 if (!ata_dev_same_device(dev, class, id))
3730 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003731
Tejun Heofe635c72006-05-15 20:57:35 +09003732 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003733 return 0;
3734}
3735
3736/**
3737 * ata_dev_revalidate - Revalidate ATA device
3738 * @dev: device to revalidate
3739 * @readid_flags: read ID flags
3740 *
3741 * Re-read IDENTIFY page, make sure @dev is still attached to the
3742 * port and reconfigure it according to the new IDENTIFY page.
3743 *
3744 * LOCKING:
3745 * Kernel thread context (may sleep)
3746 *
3747 * RETURNS:
3748 * 0 on success, negative errno otherwise
3749 */
3750int ata_dev_revalidate(struct ata_device *dev, unsigned int readid_flags)
3751{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003752 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003753 int rc;
3754
3755 if (!ata_dev_enabled(dev))
3756 return -ENODEV;
3757
3758 /* re-read ID */
3759 rc = ata_dev_reread_id(dev, readid_flags);
3760 if (rc)
3761 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003762
3763 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003764 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003765 if (rc)
3766 goto fail;
3767
3768 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09003769 if (dev->class == ATA_DEV_ATA && n_sectors &&
3770 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003771 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3772 "%llu != %llu\n",
3773 (unsigned long long)n_sectors,
3774 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09003775
3776 /* restore original n_sectors */
3777 dev->n_sectors = n_sectors;
3778
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003779 rc = -ENODEV;
3780 goto fail;
3781 }
3782
3783 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003784
3785 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003786 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003787 return rc;
3788}
3789
Alan Cox6919a0a2006-10-27 19:08:46 -07003790struct ata_blacklist_entry {
3791 const char *model_num;
3792 const char *model_rev;
3793 unsigned long horkage;
3794};
3795
3796static const struct ata_blacklist_entry ata_device_blacklist [] = {
3797 /* Devices with DMA related problems under Linux */
3798 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3799 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3800 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3801 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3802 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3803 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3804 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3805 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3806 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3807 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3808 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3809 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3810 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3811 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3812 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3813 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3814 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3815 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3816 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3817 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3818 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3819 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3820 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3821 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3822 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3823 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003824 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3825 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3826 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003827 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo5acd50f2007-06-10 14:52:36 +09003828 { "IOMEGA ZIP 250 ATAPI", NULL, ATA_HORKAGE_NODMA }, /* temporary fix */
Tejun Heo39ce7122007-07-05 12:31:31 +09003829 { "IOMEGA ZIP 250 ATAPI Floppy",
3830 NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003831
Albert Lee18d6e9d2007-04-02 11:34:15 +08003832 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003833 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003834
Alan Cox6919a0a2006-10-27 19:08:46 -07003835 /* Devices we expect to fail diagnostics */
3836
3837 /* Devices where NCQ should be avoided */
3838 /* NCQ is slow */
3839 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo09125ea2007-02-28 15:21:23 +09003840 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3841 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003842 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003843 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003844 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Prarit Bhargava2f8d90a2007-07-10 18:13:28 -04003845 { "HITACHI HDS7250SASUN500G 0621KTAWSD", "K2AOAJ0AHITACHI",
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003846 ATA_HORKAGE_NONCQ },
3847
Robert Hancock36e337d2007-04-02 22:05:29 -06003848 /* Blacklist entries taken from Silicon Image 3124/3132
3849 Windows driver .inf file - also several Linux problem reports */
3850 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3851 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3852 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Tejun Heobd9c5a32007-06-08 22:20:59 +09003853 /* Drives which do spurious command completion */
3854 { "HTS541680J9SA00", "SB2IC7EP", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003855 { "HTS541612J9SA00", "SBDIC7JP", ATA_HORKAGE_NONCQ, },
Tejun Heoe14cbfa2007-06-25 11:28:59 +09003856 { "Hitachi HTS541616J9SA00", "SB4OC70P", ATA_HORKAGE_NONCQ, },
Tejun Heo2f8fceb2007-06-18 14:38:41 +09003857 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heoa520f262007-07-10 16:16:18 +09003858 { "FUJITSU MHV2080BH", "00840028", ATA_HORKAGE_NONCQ, },
Tejun Heo3fb65892007-07-20 12:49:38 +09003859 { "ST9160821AS", "3.CLF", ATA_HORKAGE_NONCQ, },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003860 { "ST3160812AS", "3.AD", ATA_HORKAGE_NONCQ, },
Tejun Heo5d6aca82007-07-28 16:25:25 +09003861 { "SAMSUNG HD401LJ", "ZZ100-15", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003862
Tejun Heo16c55b02007-08-29 11:58:33 +09003863 /* devices which puke on READ_NATIVE_MAX */
3864 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3865 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3866 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3867 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003868
3869 /* End Marker */
3870 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003872
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003873int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
3874{
3875 const char *p;
3876 int len;
3877
3878 /*
3879 * check for trailing wildcard: *\0
3880 */
3881 p = strchr(patt, wildchar);
3882 if (p && ((*(p + 1)) == 0))
3883 len = p - patt;
3884 else
3885 len = strlen(name);
3886
3887 return strncmp(patt, name, len);
3888}
3889
Tejun Heo75683fe2007-07-05 13:31:27 +09003890static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003892 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3893 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003894 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003895
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003896 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3897 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Alan Cox6919a0a2006-10-27 19:08:46 -07003899 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003900 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003901 if (ad->model_rev == NULL)
3902 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003903 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07003904 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003905 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003906 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 return 0;
3909}
3910
Alan Cox6919a0a2006-10-27 19:08:46 -07003911static int ata_dma_blacklisted(const struct ata_device *dev)
3912{
3913 /* We don't support polling DMA.
3914 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3915 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3916 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003917 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07003918 (dev->flags & ATA_DFLAG_CDB_INTR))
3919 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09003920 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07003921}
3922
Tejun Heoa6d5a512006-03-06 04:31:57 +09003923/**
3924 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003925 * @dev: Device to compute xfermask for
3926 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003927 * Compute supported xfermask of @dev and store it in
3928 * dev->*_mask. This function is responsible for applying all
3929 * known limits including host controller limits, device
3930 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003931 *
3932 * LOCKING:
3933 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003934 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003935static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003937 struct ata_link *link = dev->link;
3938 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04003939 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003940 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Tejun Heo37deecb2006-08-10 16:59:07 +09003942 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09003943 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3944 ap->mwdma_mask, ap->udma_mask);
3945
Robert Hancock8343f882007-03-06 02:37:51 -08003946 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09003947 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
3948 dev->mwdma_mask, dev->udma_mask);
3949 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09003950
Alan Coxb352e572006-08-10 18:52:12 +01003951 /*
3952 * CFA Advanced TrueIDE timings are not allowed on a shared
3953 * cable
3954 */
3955 if (ata_dev_pair(dev)) {
3956 /* No PIO5 or PIO6 */
3957 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
3958 /* No MWDMA3 or MWDMA 4 */
3959 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
3960 }
3961
Tejun Heo37deecb2006-08-10 16:59:07 +09003962 if (ata_dma_blacklisted(dev)) {
3963 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09003964 ata_dev_printk(dev, KERN_WARNING,
3965 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09003966 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09003967
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01003968 if ((host->flags & ATA_HOST_SIMPLEX) &&
3969 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09003970 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3971 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
3972 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01003973 }
Tejun Heo565083e2006-04-02 17:54:47 +09003974
Jeff Garzike4246752007-03-09 09:56:46 -05003975 if (ap->flags & ATA_FLAG_NO_IORDY)
3976 xfer_mask &= ata_pio_mask_no_iordy(dev);
3977
Alan Cox5444a6f2006-03-27 18:58:20 +01003978 if (ap->ops->mode_filter)
Alan Coxa76b62ca2007-03-09 09:34:07 -05003979 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003980
Robert Hancock8343f882007-03-06 02:37:51 -08003981 /* Apply cable rule here. Don't apply it early because when
3982 * we handle hot plug the cable type can itself change.
3983 * Check this last so that we know if the transfer rate was
3984 * solely limited by the cable.
3985 * Unknown or 80 wire cables reported host side are checked
3986 * drive side as well. Cases where we know a 40wire cable
3987 * is used safely for 80 are not checked here.
3988 */
3989 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
3990 /* UDMA/44 or higher would be available */
3991 if((ap->cbl == ATA_CBL_PATA40) ||
3992 (ata_drive_40wire(dev->id) &&
3993 (ap->cbl == ATA_CBL_PATA_UNK ||
3994 ap->cbl == ATA_CBL_PATA80))) {
3995 ata_dev_printk(dev, KERN_WARNING,
3996 "limited to UDMA/33 due to 40-wire cable\n");
3997 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
3998 }
3999
Tejun Heo565083e2006-04-02 17:54:47 +09004000 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4001 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002}
4003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 * @dev: Device to which command will be sent
4007 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004008 * Issue SET FEATURES - XFER MODE command to device @dev
4009 * on port @ap.
4010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004012 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004013 *
4014 * RETURNS:
4015 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 */
4017
Tejun Heo3373efd2006-05-15 20:57:53 +09004018static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019{
Tejun Heoa0123702005-12-13 14:49:31 +09004020 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004021 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
4023 /* set up set-features taskfile */
4024 DPRINTK("set features - xfer mode\n");
4025
Tejun Heo464cf172007-05-27 15:10:40 +02004026 /* Some controllers and ATAPI devices show flaky interrupt
4027 * behavior after setting xfer mode. Use polling instead.
4028 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004029 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004030 tf.command = ATA_CMD_SET_FEATURES;
4031 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004032 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004033 tf.protocol = ATA_PROT_NODATA;
4034 tf.nsect = dev->xfer_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
Tejun Heo3373efd2006-05-15 20:57:53 +09004036 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037
Tejun Heo83206a22006-03-24 15:25:31 +09004038 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4039 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040}
4041
4042/**
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004043 * ata_dev_set_AN - Issue SET FEATURES - SATA FEATURES
4044 * @dev: Device to which command will be sent
4045 * @enable: Whether to enable or disable the feature
4046 *
4047 * Issue SET FEATURES - SATA FEATURES command to device @dev
4048 * on port @ap with sector count set to indicate Asynchronous
4049 * Notification feature
4050 *
4051 * LOCKING:
4052 * PCI/etc. bus probe sem.
4053 *
4054 * RETURNS:
4055 * 0 on success, AC_ERR_* mask otherwise.
4056 */
4057static unsigned int ata_dev_set_AN(struct ata_device *dev, u8 enable)
4058{
4059 struct ata_taskfile tf;
4060 unsigned int err_mask;
4061
4062 /* set up set-features taskfile */
4063 DPRINTK("set features - SATA features\n");
4064
4065 ata_tf_init(dev, &tf);
4066 tf.command = ATA_CMD_SET_FEATURES;
4067 tf.feature = enable;
4068 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4069 tf.protocol = ATA_PROT_NODATA;
4070 tf.nsect = SATA_AN;
4071
4072 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
4073
4074 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4075 return err_mask;
4076}
4077
4078/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004079 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004080 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004081 * @heads: Number of heads (taskfile parameter)
4082 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004083 *
4084 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004085 * Kernel thread context (may sleep)
4086 *
4087 * RETURNS:
4088 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004089 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004090static unsigned int ata_dev_init_params(struct ata_device *dev,
4091 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004092{
Tejun Heoa0123702005-12-13 14:49:31 +09004093 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004094 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004095
4096 /* Number of sectors per track 1-255. Number of heads 1-16 */
4097 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004098 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004099
4100 /* set up init dev params taskfile */
4101 DPRINTK("init dev params \n");
4102
Tejun Heo3373efd2006-05-15 20:57:53 +09004103 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004104 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4105 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4106 tf.protocol = ATA_PROT_NODATA;
4107 tf.nsect = sectors;
4108 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004109
Tejun Heo3373efd2006-05-15 20:57:53 +09004110 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004111 /* A clean abort indicates an original or just out of spec drive
4112 and we should continue as we issue the setup based on the
4113 drive reported working geometry */
4114 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4115 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004116
Tejun Heo6aff8f12006-02-15 18:24:09 +09004117 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4118 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004119}
4120
4121/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004122 * ata_sg_clean - Unmap DMA memory associated with command
4123 * @qc: Command containing DMA memory to be released
4124 *
4125 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 *
4127 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004128 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004130void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131{
4132 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004133 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004135 void *pad_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
Tejun Heoa46314742006-02-11 19:11:13 +09004137 WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP));
4138 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
4140 if (qc->flags & ATA_QCFLAG_SINGLE)
Jeff Garzikf1318832006-02-20 16:55:56 -05004141 WARN_ON(qc->n_elem > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004143 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004145 /* if we padded the buffer out to 32-bit bound, and data
4146 * xfer direction is from-device, we must copy from the
4147 * pad buffer back into the supplied buffer
4148 */
4149 if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE))
4150 pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4151
4152 if (qc->flags & ATA_QCFLAG_SG) {
Jeff Garzike1410f22005-11-14 14:06:26 -05004153 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004154 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004155 /* restore last sg */
4156 sg[qc->orig_n_elem - 1].length += qc->pad_len;
4157 if (pad_buf) {
4158 struct scatterlist *psg = &qc->pad_sgent;
4159 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4160 memcpy(addr + psg->offset, pad_buf, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004161 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004162 }
4163 } else {
Tejun Heo2e242fa2006-02-20 23:48:38 +09004164 if (qc->n_elem)
Brian King2f1f6102006-03-23 17:30:15 -06004165 dma_unmap_single(ap->dev,
Jeff Garzike1410f22005-11-14 14:06:26 -05004166 sg_dma_address(&sg[0]), sg_dma_len(&sg[0]),
4167 dir);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004168 /* restore sg */
4169 sg->length += qc->pad_len;
4170 if (pad_buf)
4171 memcpy(qc->buf_virt + sg->length - qc->pad_len,
4172 pad_buf, qc->pad_len);
4173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
4175 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004176 qc->__sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177}
4178
4179/**
4180 * ata_fill_sg - Fill PCI IDE PRD table
4181 * @qc: Metadata associated with taskfile to be transferred
4182 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004183 * Fill PCI IDE PRD (scatter-gather) table with segments
4184 * associated with the current disk command.
4185 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004187 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 *
4189 */
4190static void ata_fill_sg(struct ata_queued_cmd *qc)
4191{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004193 struct scatterlist *sg;
4194 unsigned int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Tejun Heoa46314742006-02-11 19:11:13 +09004196 WARN_ON(qc->__sg == NULL);
Jeff Garzikf1318832006-02-20 16:55:56 -05004197 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
4199 idx = 0;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004200 ata_for_each_sg(sg, qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 u32 addr, offset;
4202 u32 sg_len, len;
4203
4204 /* determine if physical DMA addr spans 64K boundary.
4205 * Note h/w doesn't support 64-bit, so we unconditionally
4206 * truncate dma_addr_t to u32.
4207 */
4208 addr = (u32) sg_dma_address(sg);
4209 sg_len = sg_dma_len(sg);
4210
4211 while (sg_len) {
4212 offset = addr & 0xffff;
4213 len = sg_len;
4214 if ((offset + sg_len) > 0x10000)
4215 len = 0x10000 - offset;
4216
4217 ap->prd[idx].addr = cpu_to_le32(addr);
4218 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
4219 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4220
4221 idx++;
4222 sg_len -= len;
4223 addr += len;
4224 }
4225 }
4226
4227 if (idx)
4228 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4229}
Tejun Heob9a41972007-06-27 02:48:43 +09004230
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231/**
Alan Coxd26fc952007-07-06 19:13:52 -04004232 * ata_fill_sg_dumb - Fill PCI IDE PRD table
4233 * @qc: Metadata associated with taskfile to be transferred
4234 *
4235 * Fill PCI IDE PRD (scatter-gather) table with segments
4236 * associated with the current disk command. Perform the fill
4237 * so that we avoid writing any length 64K records for
4238 * controllers that don't follow the spec.
4239 *
4240 * LOCKING:
4241 * spin_lock_irqsave(host lock)
4242 *
4243 */
4244static void ata_fill_sg_dumb(struct ata_queued_cmd *qc)
4245{
4246 struct ata_port *ap = qc->ap;
4247 struct scatterlist *sg;
4248 unsigned int idx;
4249
4250 WARN_ON(qc->__sg == NULL);
4251 WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);
4252
4253 idx = 0;
4254 ata_for_each_sg(sg, qc) {
4255 u32 addr, offset;
4256 u32 sg_len, len, blen;
4257
4258 /* determine if physical DMA addr spans 64K boundary.
4259 * Note h/w doesn't support 64-bit, so we unconditionally
4260 * truncate dma_addr_t to u32.
4261 */
4262 addr = (u32) sg_dma_address(sg);
4263 sg_len = sg_dma_len(sg);
4264
4265 while (sg_len) {
4266 offset = addr & 0xffff;
4267 len = sg_len;
4268 if ((offset + sg_len) > 0x10000)
4269 len = 0x10000 - offset;
4270
4271 blen = len & 0xffff;
4272 ap->prd[idx].addr = cpu_to_le32(addr);
4273 if (blen == 0) {
4274 /* Some PATA chipsets like the CS5530 can't
4275 cope with 0x0000 meaning 64K as the spec says */
4276 ap->prd[idx].flags_len = cpu_to_le32(0x8000);
4277 blen = 0x8000;
4278 ap->prd[++idx].addr = cpu_to_le32(addr + 0x8000);
4279 }
4280 ap->prd[idx].flags_len = cpu_to_le32(blen);
4281 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
4282
4283 idx++;
4284 sg_len -= len;
4285 addr += len;
4286 }
4287 }
4288
4289 if (idx)
4290 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
4291}
4292
4293/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4295 * @qc: Metadata associated with taskfile to check
4296 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004297 * Allow low-level driver to filter ATA PACKET commands, returning
4298 * a status indicating whether or not it is OK to use DMA for the
4299 * supplied PACKET command.
4300 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004302 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004303 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 * RETURNS: 0 when ATAPI DMA can be used
4305 * nonzero otherwise
4306 */
4307int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4308{
4309 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310
Tejun Heob9a41972007-06-27 02:48:43 +09004311 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4312 * few ATAPI devices choke on such DMA requests.
4313 */
4314 if (unlikely(qc->nbytes & 15))
4315 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004316
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004318 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
Tejun Heob9a41972007-06-27 02:48:43 +09004320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321}
Tejun Heob9a41972007-06-27 02:48:43 +09004322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323/**
4324 * ata_qc_prep - Prepare taskfile for submission
4325 * @qc: Metadata associated with taskfile to be prepared
4326 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004327 * Prepare ATA taskfile for submission.
4328 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004330 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 */
4332void ata_qc_prep(struct ata_queued_cmd *qc)
4333{
4334 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4335 return;
4336
4337 ata_fill_sg(qc);
4338}
4339
Alan Coxd26fc952007-07-06 19:13:52 -04004340/**
4341 * ata_dumb_qc_prep - Prepare taskfile for submission
4342 * @qc: Metadata associated with taskfile to be prepared
4343 *
4344 * Prepare ATA taskfile for submission.
4345 *
4346 * LOCKING:
4347 * spin_lock_irqsave(host lock)
4348 */
4349void ata_dumb_qc_prep(struct ata_queued_cmd *qc)
4350{
4351 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4352 return;
4353
4354 ata_fill_sg_dumb(qc);
4355}
4356
Brian Kinge46834c2006-03-17 17:04:03 -06004357void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4358
Jeff Garzik0cba6322005-05-30 19:49:12 -04004359/**
4360 * ata_sg_init_one - Associate command with memory buffer
4361 * @qc: Command to be associated
4362 * @buf: Memory buffer
4363 * @buflen: Length of memory buffer, in bytes.
4364 *
4365 * Initialize the data-related elements of queued_cmd @qc
4366 * to point to a single memory buffer, @buf of byte length @buflen.
4367 *
4368 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004369 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004370 */
4371
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen)
4373{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 qc->flags |= ATA_QCFLAG_SINGLE;
4375
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004376 qc->__sg = &qc->sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 qc->n_elem = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004378 qc->orig_n_elem = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 qc->buf_virt = buf;
Brian King233277c2006-06-07 11:25:31 -05004380 qc->nbytes = buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381
Tejun Heo61c05962006-11-14 22:35:43 +09004382 sg_init_one(&qc->sgent, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383}
4384
Jeff Garzik0cba6322005-05-30 19:49:12 -04004385/**
4386 * ata_sg_init - Associate command with scatter-gather table.
4387 * @qc: Command to be associated
4388 * @sg: Scatter-gather table.
4389 * @n_elem: Number of elements in s/g table.
4390 *
4391 * Initialize the data-related elements of queued_cmd @qc
4392 * to point to a scatter-gather table @sg, containing @n_elem
4393 * elements.
4394 *
4395 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004396 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004397 */
4398
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4400 unsigned int n_elem)
4401{
4402 qc->flags |= ATA_QCFLAG_SG;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004403 qc->__sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 qc->n_elem = n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004405 qc->orig_n_elem = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406}
4407
4408/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004409 * ata_sg_setup_one - DMA-map the memory buffer associated with a command.
4410 * @qc: Command with memory buffer to be mapped.
4411 *
4412 * DMA-map the memory buffer associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 *
4414 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004415 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 *
4417 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004418 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 */
4420
4421static int ata_sg_setup_one(struct ata_queued_cmd *qc)
4422{
4423 struct ata_port *ap = qc->ap;
4424 int dir = qc->dma_dir;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004425 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 dma_addr_t dma_address;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004427 int trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004429 /* we must lengthen transfers to end on a 32-bit boundary */
4430 qc->pad_len = sg->length & 3;
4431 if (qc->pad_len) {
4432 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4433 struct scatterlist *psg = &qc->pad_sgent;
4434
Tejun Heoa46314742006-02-11 19:11:13 +09004435 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004436
4437 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4438
4439 if (qc->tf.flags & ATA_TFLAG_WRITE)
4440 memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len,
4441 qc->pad_len);
4442
4443 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4444 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4445 /* trim sg */
4446 sg->length -= qc->pad_len;
Tejun Heo2e242fa2006-02-20 23:48:38 +09004447 if (sg->length == 0)
4448 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004449
4450 DPRINTK("padding done, sg->length=%u pad_len=%u\n",
4451 sg->length, qc->pad_len);
4452 }
4453
Tejun Heo2e242fa2006-02-20 23:48:38 +09004454 if (trim_sg) {
4455 qc->n_elem--;
Jeff Garzike1410f22005-11-14 14:06:26 -05004456 goto skip_map;
4457 }
4458
Brian King2f1f6102006-03-23 17:30:15 -06004459 dma_address = dma_map_single(ap->dev, qc->buf_virt,
Albert Lee32529e02005-05-26 03:49:42 -04004460 sg->length, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004461 if (dma_mapping_error(dma_address)) {
4462 /* restore sg */
4463 sg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
4467 sg_dma_address(sg) = dma_address;
Albert Lee32529e02005-05-26 03:49:42 -04004468 sg_dma_len(sg) = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
Tejun Heo2e242fa2006-02-20 23:48:38 +09004470skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg),
4472 qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4473
4474 return 0;
4475}
4476
4477/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004478 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4479 * @qc: Command with scatter-gather table to be mapped.
4480 *
4481 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 *
4483 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004484 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 *
4486 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004487 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 *
4489 */
4490
4491static int ata_sg_setup(struct ata_queued_cmd *qc)
4492{
4493 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004494 struct scatterlist *sg = qc->__sg;
4495 struct scatterlist *lsg = &sg[qc->n_elem - 1];
Jeff Garzike1410f22005-11-14 14:06:26 -05004496 int n_elem, pre_n_elem, dir, trim_sg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
Tejun Heo44877b42007-02-21 01:06:51 +09004498 VPRINTK("ENTER, ata%u\n", ap->print_id);
Tejun Heoa46314742006-02-11 19:11:13 +09004499 WARN_ON(!(qc->flags & ATA_QCFLAG_SG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004501 /* we must lengthen transfers to end on a 32-bit boundary */
4502 qc->pad_len = lsg->length & 3;
4503 if (qc->pad_len) {
4504 void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ);
4505 struct scatterlist *psg = &qc->pad_sgent;
4506 unsigned int offset;
4507
Tejun Heoa46314742006-02-11 19:11:13 +09004508 WARN_ON(qc->dev->class != ATA_DEV_ATAPI);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004509
4510 memset(pad_buf, 0, ATA_DMA_PAD_SZ);
4511
4512 /*
4513 * psg->page/offset are used to copy to-be-written
4514 * data in this function or read data in ata_sg_clean.
4515 */
4516 offset = lsg->offset + lsg->length - qc->pad_len;
4517 psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT);
4518 psg->offset = offset_in_page(offset);
4519
4520 if (qc->tf.flags & ATA_TFLAG_WRITE) {
4521 void *addr = kmap_atomic(psg->page, KM_IRQ0);
4522 memcpy(pad_buf, addr + psg->offset, qc->pad_len);
Mark Lorddfa15982005-12-12 23:19:28 -05004523 kunmap_atomic(addr, KM_IRQ0);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004524 }
4525
4526 sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ);
4527 sg_dma_len(psg) = ATA_DMA_PAD_SZ;
4528 /* trim last sg */
4529 lsg->length -= qc->pad_len;
Jeff Garzike1410f22005-11-14 14:06:26 -05004530 if (lsg->length == 0)
4531 trim_sg = 1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004532
4533 DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n",
4534 qc->n_elem - 1, lsg->length, qc->pad_len);
4535 }
4536
Jeff Garzike1410f22005-11-14 14:06:26 -05004537 pre_n_elem = qc->n_elem;
4538 if (trim_sg && pre_n_elem)
4539 pre_n_elem--;
4540
4541 if (!pre_n_elem) {
4542 n_elem = 0;
4543 goto skip_map;
4544 }
4545
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 dir = qc->dma_dir;
Brian King2f1f6102006-03-23 17:30:15 -06004547 n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir);
Tejun Heo537a95d2005-11-05 14:29:01 -05004548 if (n_elem < 1) {
4549 /* restore last sg */
4550 lsg->length += qc->pad_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 return -1;
Tejun Heo537a95d2005-11-05 14:29:01 -05004552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
4554 DPRINTK("%d sg elements mapped\n", n_elem);
4555
Jeff Garzike1410f22005-11-14 14:06:26 -05004556skip_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 qc->n_elem = n_elem;
4558
4559 return 0;
4560}
4561
4562/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004563 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004564 * @buf: Buffer to swap
4565 * @buf_words: Number of 16-bit words in buffer.
4566 *
4567 * Swap halves of 16-bit words if needed to convert from
4568 * little-endian byte order to native cpu byte order, or
4569 * vice-versa.
4570 *
4571 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004572 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004573 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574void swap_buf_le16(u16 *buf, unsigned int buf_words)
4575{
4576#ifdef __BIG_ENDIAN
4577 unsigned int i;
4578
4579 for (i = 0; i < buf_words; i++)
4580 buf[i] = le16_to_cpu(buf[i]);
4581#endif /* __BIG_ENDIAN */
4582}
4583
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004584/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004585 * ata_data_xfer - Transfer data by PIO
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004586 * @adev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004587 * @buf: data buffer
4588 * @buflen: buffer length
Jeff Garzik344baba2005-09-07 01:15:17 -04004589 * @write_data: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004590 *
4591 * Transfer data from/to the device data register by PIO.
4592 *
4593 * LOCKING:
4594 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004595 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004596void ata_data_xfer(struct ata_device *adev, unsigned char *buf,
4597 unsigned int buflen, int write_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004599 struct ata_port *ap = adev->link->ap;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004600 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004602 /* Transfer multiple of 2 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 if (write_data)
Tejun Heo0d5ff562007-02-01 15:06:36 +09004604 iowrite16_rep(ap->ioaddr.data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 else
Tejun Heo0d5ff562007-02-01 15:06:36 +09004606 ioread16_rep(ap->ioaddr.data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004607
4608 /* Transfer trailing 1 byte, if any. */
4609 if (unlikely(buflen & 0x01)) {
4610 u16 align_buf[1] = { 0 };
4611 unsigned char *trailing_buf = buf + buflen - 1;
4612
4613 if (write_data) {
4614 memcpy(align_buf, trailing_buf, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004615 iowrite16(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004616 } else {
Tejun Heo0d5ff562007-02-01 15:06:36 +09004617 align_buf[0] = cpu_to_le16(ioread16(ap->ioaddr.data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004618 memcpy(trailing_buf, align_buf, 1);
4619 }
4620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621}
4622
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004623/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09004624 * ata_data_xfer_noirq - Transfer data by PIO
Alan Cox75e99582006-05-24 14:14:41 +01004625 * @adev: device to target
4626 * @buf: data buffer
4627 * @buflen: buffer length
4628 * @write_data: read/write
4629 *
Tejun Heo88574552006-06-25 20:00:35 +09004630 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01004631 * transfer with interrupts disabled.
4632 *
4633 * LOCKING:
4634 * Inherited from caller.
4635 */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004636void ata_data_xfer_noirq(struct ata_device *adev, unsigned char *buf,
4637 unsigned int buflen, int write_data)
Alan Cox75e99582006-05-24 14:14:41 +01004638{
4639 unsigned long flags;
4640 local_irq_save(flags);
Tejun Heo0d5ff562007-02-01 15:06:36 +09004641 ata_data_xfer(adev, buf, buflen, write_data);
Alan Cox75e99582006-05-24 14:14:41 +01004642 local_irq_restore(flags);
4643}
4644
4645
4646/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004647 * ata_pio_sector - Transfer a sector of data.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004648 * @qc: Command on going
4649 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004650 * Transfer qc->sect_size bytes of data from/to the ATA device.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004651 *
4652 * LOCKING:
4653 * Inherited from caller.
4654 */
4655
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656static void ata_pio_sector(struct ata_queued_cmd *qc)
4657{
4658 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004659 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 struct ata_port *ap = qc->ap;
4661 struct page *page;
4662 unsigned int offset;
4663 unsigned char *buf;
4664
Mark Lord5a5dbd12007-03-16 10:22:26 -04004665 if (qc->curbytes == qc->nbytes - qc->sect_size)
Albert Lee14be71f2005-09-27 17:36:35 +08004666 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
4668 page = sg[qc->cursg].page;
Tejun Heo726f0782007-01-03 17:30:39 +09004669 offset = sg[qc->cursg].offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670
4671 /* get the current page and offset */
4672 page = nth_page(page, (offset >> PAGE_SHIFT));
4673 offset %= PAGE_SIZE;
4674
Albert Lee7282aa42005-10-09 09:46:07 -04004675 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4676
Albert Lee91b8b312005-10-09 09:48:44 -04004677 if (PageHighMem(page)) {
4678 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004679
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004680 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004681 local_irq_save(flags);
4682 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004683
Albert Lee91b8b312005-10-09 09:48:44 -04004684 /* do the actual data transfer */
Mark Lord5a5dbd12007-03-16 10:22:26 -04004685 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004686
4687 kunmap_atomic(buf, KM_IRQ0);
4688 local_irq_restore(flags);
4689 } else {
4690 buf = page_address(page);
Mark Lord5a5dbd12007-03-16 10:22:26 -04004691 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
Mark Lord5a5dbd12007-03-16 10:22:26 -04004694 qc->curbytes += qc->sect_size;
4695 qc->cursg_ofs += qc->sect_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
Tejun Heo726f0782007-01-03 17:30:39 +09004697 if (qc->cursg_ofs == (&sg[qc->cursg])->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 qc->cursg++;
4699 qc->cursg_ofs = 0;
4700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004703/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04004704 * ata_pio_sectors - Transfer one or many sectors.
Albert Lee07f6f7d2005-11-01 19:33:20 +08004705 * @qc: Command on going
4706 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04004707 * Transfer one or many sectors of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08004708 * ATA device for the DRQ request.
4709 *
4710 * LOCKING:
4711 * Inherited from caller.
4712 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
Albert Lee07f6f7d2005-11-01 19:33:20 +08004714static void ata_pio_sectors(struct ata_queued_cmd *qc)
4715{
4716 if (is_multi_taskfile(&qc->tf)) {
4717 /* READ/WRITE MULTIPLE */
4718 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
Jeff Garzik587005d2006-02-11 18:17:32 -05004720 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004721
Mark Lord5a5dbd12007-03-16 10:22:26 -04004722 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
Tejun Heo726f0782007-01-03 17:30:39 +09004723 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08004724 while (nsect--)
4725 ata_pio_sector(qc);
4726 } else
4727 ata_pio_sector(qc);
Albert Lee4cc980b2007-08-15 03:19:45 -04004728
4729 ata_altstatus(qc->ap); /* flush */
Albert Lee07f6f7d2005-11-01 19:33:20 +08004730}
4731
4732/**
Albert Leec71c1852005-10-04 06:03:45 -04004733 * atapi_send_cdb - Write CDB bytes to hardware
4734 * @ap: Port to which ATAPI device is attached.
4735 * @qc: Taskfile currently active
4736 *
4737 * When device has indicated its readiness to accept
4738 * a CDB, this function is called. Send the CDB.
4739 *
4740 * LOCKING:
4741 * caller.
4742 */
4743
4744static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
4745{
4746 /* send SCSI cdb */
4747 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05004748 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04004749
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004750 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04004751 ata_altstatus(ap); /* flush */
4752
4753 switch (qc->tf.protocol) {
4754 case ATA_PROT_ATAPI:
4755 ap->hsm_task_state = HSM_ST;
4756 break;
4757 case ATA_PROT_ATAPI_NODATA:
4758 ap->hsm_task_state = HSM_ST_LAST;
4759 break;
4760 case ATA_PROT_ATAPI_DMA:
4761 ap->hsm_task_state = HSM_ST_LAST;
4762 /* initiate bmdma */
4763 ap->ops->bmdma_start(qc);
4764 break;
4765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766}
4767
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004768/**
4769 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
4770 * @qc: Command on going
4771 * @bytes: number of bytes
4772 *
4773 * Transfer Transfer data from/to the ATAPI device.
4774 *
4775 * LOCKING:
4776 * Inherited from caller.
4777 *
4778 */
4779
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
4781{
4782 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004783 struct scatterlist *sg = qc->__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 struct ata_port *ap = qc->ap;
4785 struct page *page;
4786 unsigned char *buf;
4787 unsigned int offset, count;
4788
Albert Lee563a6e12005-08-12 14:17:50 +08004789 if (qc->curbytes + bytes >= qc->nbytes)
Albert Lee14be71f2005-09-27 17:36:35 +08004790 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791
4792next_sg:
Albert Lee563a6e12005-08-12 14:17:50 +08004793 if (unlikely(qc->cursg >= qc->n_elem)) {
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04004794 /*
Albert Lee563a6e12005-08-12 14:17:50 +08004795 * The end of qc->sg is reached and the device expects
4796 * more data to transfer. In order not to overrun qc->sg
4797 * and fulfill length specified in the byte count register,
4798 * - for read case, discard trailing data from the device
4799 * - for write case, padding zero data to the device
4800 */
4801 u16 pad_buf[1] = { 0 };
4802 unsigned int words = bytes >> 1;
4803 unsigned int i;
4804
4805 if (words) /* warning if bytes > 1 */
Tejun Heof15a1da2006-05-15 20:57:56 +09004806 ata_dev_printk(qc->dev, KERN_WARNING,
4807 "%u bytes trailing data\n", bytes);
Albert Lee563a6e12005-08-12 14:17:50 +08004808
4809 for (i = 0; i < words; i++)
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004810 ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write);
Albert Lee563a6e12005-08-12 14:17:50 +08004811
Albert Lee14be71f2005-09-27 17:36:35 +08004812 ap->hsm_task_state = HSM_ST_LAST;
Albert Lee563a6e12005-08-12 14:17:50 +08004813 return;
4814 }
4815
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004816 sg = &qc->__sg[qc->cursg];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 page = sg->page;
4819 offset = sg->offset + qc->cursg_ofs;
4820
4821 /* get the current page and offset */
4822 page = nth_page(page, (offset >> PAGE_SHIFT));
4823 offset %= PAGE_SIZE;
4824
Albert Lee6952df02005-06-06 15:56:03 +08004825 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04004826 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
4828 /* don't cross page boundaries */
4829 count = min(count, (unsigned int)PAGE_SIZE - offset);
4830
Albert Lee7282aa42005-10-09 09:46:07 -04004831 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
4832
Albert Lee91b8b312005-10-09 09:48:44 -04004833 if (PageHighMem(page)) {
4834 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04004835
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004836 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04004837 local_irq_save(flags);
4838 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04004839
Albert Lee91b8b312005-10-09 09:48:44 -04004840 /* do the actual data transfer */
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004841 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004842
4843 kunmap_atomic(buf, KM_IRQ0);
4844 local_irq_restore(flags);
4845 } else {
4846 buf = page_address(page);
Alan Coxa6b2c5d2006-05-22 16:59:59 +01004847 ap->ops->data_xfer(qc->dev, buf + offset, count, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04004848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849
4850 bytes -= count;
4851 qc->curbytes += count;
4852 qc->cursg_ofs += count;
4853
Albert Lee32529e02005-05-26 03:49:42 -04004854 if (qc->cursg_ofs == sg->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 qc->cursg++;
4856 qc->cursg_ofs = 0;
4857 }
4858
Albert Lee563a6e12005-08-12 14:17:50 +08004859 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 goto next_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861}
4862
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004863/**
4864 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
4865 * @qc: Command on going
4866 *
4867 * Transfer Transfer data from/to the ATAPI device.
4868 *
4869 * LOCKING:
4870 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004871 */
4872
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873static void atapi_pio_bytes(struct ata_queued_cmd *qc)
4874{
4875 struct ata_port *ap = qc->ap;
4876 struct ata_device *dev = qc->dev;
4877 unsigned int ireason, bc_lo, bc_hi, bytes;
4878 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
4879
Albert Leeeec4c3f2006-05-18 17:51:10 +08004880 /* Abuse qc->result_tf for temp storage of intermediate TF
4881 * here to save some kernel stack usage.
4882 * For normal completion, qc->result_tf is not relevant. For
4883 * error, qc->result_tf is later overwritten by ata_qc_complete().
4884 * So, the correctness of qc->result_tf is not affected.
4885 */
4886 ap->ops->tf_read(ap, &qc->result_tf);
4887 ireason = qc->result_tf.nsect;
4888 bc_lo = qc->result_tf.lbam;
4889 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 bytes = (bc_hi << 8) | bc_lo;
4891
4892 /* shall be cleared to zero, indicating xfer of data */
4893 if (ireason & (1 << 0))
4894 goto err_out;
4895
4896 /* make sure transfer direction matches expected */
4897 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
4898 if (do_write != i_write)
4899 goto err_out;
4900
Tejun Heo44877b42007-02-21 01:06:51 +09004901 VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
Albert Lee312f7da2005-09-27 17:38:03 +08004902
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 __atapi_pio_bytes(qc, bytes);
Albert Lee4cc980b2007-08-15 03:19:45 -04004904 ata_altstatus(ap); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905
4906 return;
4907
4908err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09004909 ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n");
Tejun Heo11a56d22006-01-23 13:09:36 +09004910 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08004911 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912}
4913
4914/**
Albert Leec234fb02006-03-25 17:58:38 +08004915 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
4916 * @ap: the target ata_port
4917 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 *
Albert Leec234fb02006-03-25 17:58:38 +08004919 * RETURNS:
4920 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 */
Albert Leec234fb02006-03-25 17:58:38 +08004922
4923static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924{
Albert Leec234fb02006-03-25 17:58:38 +08004925 if (qc->tf.flags & ATA_TFLAG_POLLING)
4926 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927
Albert Leec234fb02006-03-25 17:58:38 +08004928 if (ap->hsm_task_state == HSM_ST_FIRST) {
4929 if (qc->tf.protocol == ATA_PROT_PIO &&
4930 (qc->tf.flags & ATA_TFLAG_WRITE))
4931 return 1;
4932
4933 if (is_atapi_taskfile(&qc->tf) &&
4934 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
4935 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936 }
4937
Albert Leec234fb02006-03-25 17:58:38 +08004938 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939}
4940
Albert Leec234fb02006-03-25 17:58:38 +08004941/**
Tejun Heoc17ea202006-05-15 20:59:29 +09004942 * ata_hsm_qc_complete - finish a qc running on standard HSM
4943 * @qc: Command to complete
4944 * @in_wq: 1 if called from workqueue, 0 otherwise
4945 *
4946 * Finish @qc which is running on standard HSM.
4947 *
4948 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004949 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09004950 * Otherwise, none on entry and grabs host lock.
4951 */
4952static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
4953{
4954 struct ata_port *ap = qc->ap;
4955 unsigned long flags;
4956
4957 if (ap->ops->error_handler) {
4958 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004959 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004960
Jeff Garzikcca39742006-08-24 03:19:22 -04004961 /* EH might have kicked in while host lock is
4962 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09004963 */
4964 qc = ata_qc_from_tag(ap, qc->tag);
4965 if (qc) {
4966 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi836250062007-01-26 16:27:32 +09004967 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004968 ata_qc_complete(qc);
4969 } else
4970 ata_port_freeze(ap);
4971 }
4972
Jeff Garzikba6a1302006-06-22 23:46:10 -04004973 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004974 } else {
4975 if (likely(!(qc->err_mask & AC_ERR_HSM)))
4976 ata_qc_complete(qc);
4977 else
4978 ata_port_freeze(ap);
4979 }
4980 } else {
4981 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04004982 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi836250062007-01-26 16:27:32 +09004983 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09004984 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04004985 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09004986 } else
4987 ata_qc_complete(qc);
4988 }
4989}
4990
4991/**
Albert Leebb5cb292006-03-25 17:48:02 +08004992 * ata_hsm_move - move the HSM to the next state.
4993 * @ap: the target ata_port
4994 * @qc: qc on going
4995 * @status: current device status
4996 * @in_wq: 1 if called from workqueue, 0 otherwise
4997 *
4998 * RETURNS:
4999 * 1 when poll next status needed, 0 otherwise.
5000 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09005001int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
5002 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003{
Albert Leebb5cb292006-03-25 17:48:02 +08005004 unsigned long flags = 0;
5005 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006
Albert Lee6912ccd2006-03-25 17:45:49 +08005007 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08005008
Albert Leebb5cb292006-03-25 17:48:02 +08005009 /* Make sure ata_qc_issue_prot() does not throw things
5010 * like DMA polling into the workqueue. Notice that
5011 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08005012 */
Albert Leec234fb02006-03-25 17:58:38 +08005013 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08005014
Albert Leee2cec772006-03-25 17:43:49 +08005015fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08005016 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005017 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
Albert Leee2cec772006-03-25 17:43:49 +08005019 switch (ap->hsm_task_state) {
5020 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08005021 /* Send first data block or PACKET CDB */
5022
5023 /* If polling, we will stay in the work queue after
5024 * sending the data. Otherwise, interrupt handler
5025 * takes over after sending the data.
5026 */
5027 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
5028
Albert Leee2cec772006-03-25 17:43:49 +08005029 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08005030 if (unlikely((status & ATA_DRQ) == 0)) {
5031 /* handle BSY=0, DRQ=0 as error */
5032 if (likely(status & (ATA_ERR | ATA_DF)))
5033 /* device stops HSM for abort/error */
5034 qc->err_mask |= AC_ERR_DEV;
5035 else
5036 /* HSM violation. Let EH handle this */
5037 qc->err_mask |= AC_ERR_HSM;
5038
Albert Leee2cec772006-03-25 17:43:49 +08005039 ap->hsm_task_state = HSM_ST_ERR;
5040 goto fsm_start;
5041 }
5042
Albert Lee71601952006-03-25 18:11:12 +08005043 /* Device should not ask for data transfer (DRQ=1)
5044 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005045 * We ignore DRQ here and stop the HSM by
5046 * changing hsm_task_state to HSM_ST_ERR and
5047 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005048 */
5049 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09005050 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with device "
5051 "error, dev_stat 0x%X\n", status);
Albert Lee3655d1d2006-05-19 11:43:04 +08005052 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08005053 ap->hsm_task_state = HSM_ST_ERR;
5054 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005055 }
5056
Albert Leebb5cb292006-03-25 17:48:02 +08005057 /* Send the CDB (atapi) or the first data block (ata pio out).
5058 * During the state transition, interrupt handler shouldn't
5059 * be invoked before the data transfer is complete and
5060 * hsm_task_state is changed. Hence, the following locking.
5061 */
5062 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005063 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08005064
Albert Leebb5cb292006-03-25 17:48:02 +08005065 if (qc->tf.protocol == ATA_PROT_PIO) {
5066 /* PIO data out protocol.
5067 * send first data block.
5068 */
5069
5070 /* ata_pio_sectors() might change the state
5071 * to HSM_ST_LAST. so, the state is changed here
5072 * before ata_pio_sectors().
5073 */
5074 ap->hsm_task_state = HSM_ST;
5075 ata_pio_sectors(qc);
Albert Leebb5cb292006-03-25 17:48:02 +08005076 } else
5077 /* send CDB */
5078 atapi_send_cdb(ap, qc);
5079
5080 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005081 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08005082
5083 /* if polling, ata_pio_task() handles the rest.
5084 * otherwise, interrupt handler takes over from here.
5085 */
Albert Leee2cec772006-03-25 17:43:49 +08005086 break;
5087
5088 case HSM_ST:
5089 /* complete command or read/write the data register */
5090 if (qc->tf.protocol == ATA_PROT_ATAPI) {
5091 /* ATAPI PIO protocol */
5092 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08005093 /* No more data to transfer or device error.
5094 * Device error will be tagged in HSM_ST_LAST.
5095 */
Albert Leee2cec772006-03-25 17:43:49 +08005096 ap->hsm_task_state = HSM_ST_LAST;
5097 goto fsm_start;
5098 }
5099
Albert Lee71601952006-03-25 18:11:12 +08005100 /* Device should not ask for data transfer (DRQ=1)
5101 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005102 * We ignore DRQ here and stop the HSM by
5103 * changing hsm_task_state to HSM_ST_ERR and
5104 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005105 */
5106 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09005107 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
5108 "device error, dev_stat 0x%X\n",
5109 status);
Albert Lee3655d1d2006-05-19 11:43:04 +08005110 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08005111 ap->hsm_task_state = HSM_ST_ERR;
5112 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005113 }
5114
Albert Leee2cec772006-03-25 17:43:49 +08005115 atapi_pio_bytes(qc);
5116
5117 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
5118 /* bad ireason reported by device */
5119 goto fsm_start;
5120
5121 } else {
5122 /* ATA PIO protocol */
5123 if (unlikely((status & ATA_DRQ) == 0)) {
5124 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08005125 if (likely(status & (ATA_ERR | ATA_DF)))
5126 /* device stops HSM for abort/error */
5127 qc->err_mask |= AC_ERR_DEV;
5128 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09005129 /* HSM violation. Let EH handle this.
5130 * Phantom devices also trigger this
5131 * condition. Mark hint.
5132 */
5133 qc->err_mask |= AC_ERR_HSM |
5134 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08005135
Albert Leee2cec772006-03-25 17:43:49 +08005136 ap->hsm_task_state = HSM_ST_ERR;
5137 goto fsm_start;
5138 }
5139
Albert Leeeee6c322006-04-01 17:38:43 +08005140 /* For PIO reads, some devices may ask for
5141 * data transfer (DRQ=1) alone with ERR=1.
5142 * We respect DRQ here and transfer one
5143 * block of junk data before changing the
5144 * hsm_task_state to HSM_ST_ERR.
5145 *
5146 * For PIO writes, ERR=1 DRQ=1 doesn't make
5147 * sense since the data block has been
5148 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08005149 */
5150 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08005151 /* data might be corrputed */
5152 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08005153
5154 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
5155 ata_pio_sectors(qc);
Albert Leeeee6c322006-04-01 17:38:43 +08005156 status = ata_wait_idle(ap);
5157 }
5158
Albert Lee3655d1d2006-05-19 11:43:04 +08005159 if (status & (ATA_BUSY | ATA_DRQ))
5160 qc->err_mask |= AC_ERR_HSM;
5161
Albert Leeeee6c322006-04-01 17:38:43 +08005162 /* ata_pio_sectors() might change the
5163 * state to HSM_ST_LAST. so, the state
5164 * is changed after ata_pio_sectors().
5165 */
5166 ap->hsm_task_state = HSM_ST_ERR;
5167 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005168 }
5169
Albert Leee2cec772006-03-25 17:43:49 +08005170 ata_pio_sectors(qc);
5171
5172 if (ap->hsm_task_state == HSM_ST_LAST &&
5173 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
5174 /* all data read */
Albert Lee52a32202006-03-25 18:18:15 +08005175 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08005176 goto fsm_start;
5177 }
5178 }
5179
Albert Leebb5cb292006-03-25 17:48:02 +08005180 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08005181 break;
5182
5183 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005184 if (unlikely(!ata_ok(status))) {
5185 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08005186 ap->hsm_task_state = HSM_ST_ERR;
5187 goto fsm_start;
5188 }
5189
5190 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08005191 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005192 ap->print_id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08005193
Albert Lee6912ccd2006-03-25 17:45:49 +08005194 WARN_ON(qc->err_mask);
5195
Albert Leee2cec772006-03-25 17:43:49 +08005196 ap->hsm_task_state = HSM_ST_IDLE;
5197
5198 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005199 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005200
5201 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005202 break;
5203
5204 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08005205 /* make sure qc->err_mask is available to
5206 * know what's wrong and recover
5207 */
5208 WARN_ON(qc->err_mask == 0);
5209
5210 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08005211
Albert Lee999bb6f2006-03-25 18:07:48 +08005212 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005213 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005214
5215 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005216 break;
5217 default:
Albert Leebb5cb292006-03-25 17:48:02 +08005218 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08005219 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08005220 }
5221
Albert Leebb5cb292006-03-25 17:48:02 +08005222 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223}
5224
David Howells65f27f32006-11-22 14:55:48 +00005225static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226{
David Howells65f27f32006-11-22 14:55:48 +00005227 struct ata_port *ap =
5228 container_of(work, struct ata_port, port_task.work);
5229 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08005230 u8 status;
5231 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005232
5233fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08005234 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235
Albert Leea1af3732006-03-25 17:50:15 +08005236 /*
5237 * This is purely heuristic. This is a fast path.
5238 * Sometimes when we enter, BSY will be cleared in
5239 * a chk-status or two. If not, the drive is probably seeking
5240 * or something. Snooze for a couple msecs, then
5241 * chk-status again. If still busy, queue delayed work.
5242 */
5243 status = ata_busy_wait(ap, ATA_BUSY, 5);
5244 if (status & ATA_BUSY) {
5245 msleep(2);
5246 status = ata_busy_wait(ap, ATA_BUSY, 10);
5247 if (status & ATA_BUSY) {
Albert Lee31ce6da2006-04-03 18:31:44 +08005248 ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08005249 return;
5250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251 }
5252
Albert Leea1af3732006-03-25 17:50:15 +08005253 /* move the HSM */
5254 poll_next = ata_hsm_move(ap, qc, status, 1);
5255
5256 /* another command or interrupt handler
5257 * may be running at this point.
5258 */
5259 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005260 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261}
5262
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 * ata_qc_new - Request an available ATA command, for queueing
5265 * @ap: Port associated with device @dev
5266 * @dev: Device from whom we request an available command structure
5267 *
5268 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005269 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 */
5271
5272static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
5273{
5274 struct ata_queued_cmd *qc = NULL;
5275 unsigned int i;
5276
Tejun Heoe3180492006-05-15 20:58:09 +09005277 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09005278 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09005279 return NULL;
5280
Tejun Heo2ab7db12006-05-15 20:58:02 +09005281 /* the last tag is reserved for internal command. */
5282 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09005283 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09005284 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 break;
5286 }
5287
5288 if (qc)
5289 qc->tag = i;
5290
5291 return qc;
5292}
5293
5294/**
5295 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 * @dev: Device from whom we request an available command structure
5297 *
5298 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005299 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 */
5301
Tejun Heo3373efd2006-05-15 20:57:53 +09005302struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005304 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305 struct ata_queued_cmd *qc;
5306
5307 qc = ata_qc_new(ap);
5308 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309 qc->scsicmd = NULL;
5310 qc->ap = ap;
5311 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05005313 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 }
5315
5316 return qc;
5317}
5318
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319/**
5320 * ata_qc_free - free unused ata_queued_cmd
5321 * @qc: Command to complete
5322 *
5323 * Designed to free unused ata_queued_cmd object
5324 * in case something prevents using it.
5325 *
5326 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005327 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328 */
5329void ata_qc_free(struct ata_queued_cmd *qc)
5330{
Tejun Heo4ba946e2006-01-23 13:09:36 +09005331 struct ata_port *ap = qc->ap;
5332 unsigned int tag;
5333
Tejun Heoa46314742006-02-11 19:11:13 +09005334 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
Tejun Heo4ba946e2006-01-23 13:09:36 +09005336 qc->flags = 0;
5337 tag = qc->tag;
5338 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09005339 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09005340 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09005341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342}
5343
Tejun Heo76014422006-02-11 15:13:49 +09005344void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345{
Tejun Heodedaf2b2006-05-15 21:03:43 +09005346 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005347 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005348
Tejun Heoa46314742006-02-11 19:11:13 +09005349 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
5350 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
5352 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
5353 ata_sg_clean(qc);
5354
Tejun Heo7401abf2006-05-15 20:57:32 +09005355 /* command should be marked inactive atomically with qc completion */
Tejun Heodedaf2b2006-05-15 21:03:43 +09005356 if (qc->tf.protocol == ATA_PROT_NCQ)
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005357 link->sactive &= ~(1 << qc->tag);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005358 else
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005359 link->active_tag = ATA_TAG_POISON;
Tejun Heo7401abf2006-05-15 20:57:32 +09005360
Albert Lee3f3791d2005-08-16 14:25:38 +08005361 /* atapi: mark qc as inactive to prevent the interrupt handler
5362 * from completing the command twice later, before the error handler
5363 * is called. (when rc != 0 and atapi request sense is needed)
5364 */
5365 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005366 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08005367
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09005369 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370}
5371
Tejun Heo39599a52006-11-14 22:37:35 +09005372static void fill_result_tf(struct ata_queued_cmd *qc)
5373{
5374 struct ata_port *ap = qc->ap;
5375
Tejun Heo39599a52006-11-14 22:37:35 +09005376 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04005377 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09005378}
5379
Tejun Heof686bcb2006-05-15 20:58:05 +09005380/**
5381 * ata_qc_complete - Complete an active ATA command
5382 * @qc: Command to complete
5383 * @err_mask: ATA Status register contents
5384 *
5385 * Indicate to the mid and upper layers that an ATA
5386 * command has completed, with either an ok or not-ok status.
5387 *
5388 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005389 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09005390 */
5391void ata_qc_complete(struct ata_queued_cmd *qc)
5392{
5393 struct ata_port *ap = qc->ap;
5394
5395 /* XXX: New EH and old EH use different mechanisms to
5396 * synchronize EH with regular execution path.
5397 *
5398 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
5399 * Normal execution path is responsible for not accessing a
5400 * failed qc. libata core enforces the rule by returning NULL
5401 * from ata_qc_from_tag() for failed qcs.
5402 *
5403 * Old EH depends on ata_qc_complete() nullifying completion
5404 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
5405 * not synchronize with interrupt handler. Only PIO task is
5406 * taken care of.
5407 */
5408 if (ap->ops->error_handler) {
Tejun Heob51e9e52006-06-29 01:29:30 +09005409 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09005410
5411 if (unlikely(qc->err_mask))
5412 qc->flags |= ATA_QCFLAG_FAILED;
5413
5414 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
5415 if (!ata_tag_internal(qc->tag)) {
5416 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09005417 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005418 ata_qc_schedule_eh(qc);
5419 return;
5420 }
5421 }
5422
5423 /* read result TF if requested */
5424 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005425 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005426
5427 __ata_qc_complete(qc);
5428 } else {
5429 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5430 return;
5431
5432 /* read result TF if failed or requested */
5433 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005434 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005435
5436 __ata_qc_complete(qc);
5437 }
5438}
5439
Tejun Heodedaf2b2006-05-15 21:03:43 +09005440/**
5441 * ata_qc_complete_multiple - Complete multiple qcs successfully
5442 * @ap: port in question
5443 * @qc_active: new qc_active mask
5444 * @finish_qc: LLDD callback invoked before completing a qc
5445 *
5446 * Complete in-flight commands. This functions is meant to be
5447 * called from low-level driver's interrupt routine to complete
5448 * requests normally. ap->qc_active and @qc_active is compared
5449 * and commands are completed accordingly.
5450 *
5451 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005452 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005453 *
5454 * RETURNS:
5455 * Number of completed commands on success, -errno otherwise.
5456 */
5457int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
5458 void (*finish_qc)(struct ata_queued_cmd *))
5459{
5460 int nr_done = 0;
5461 u32 done_mask;
5462 int i;
5463
5464 done_mask = ap->qc_active ^ qc_active;
5465
5466 if (unlikely(done_mask & qc_active)) {
5467 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
5468 "(%08x->%08x)\n", ap->qc_active, qc_active);
5469 return -EINVAL;
5470 }
5471
5472 for (i = 0; i < ATA_MAX_QUEUE; i++) {
5473 struct ata_queued_cmd *qc;
5474
5475 if (!(done_mask & (1 << i)))
5476 continue;
5477
5478 if ((qc = ata_qc_from_tag(ap, i))) {
5479 if (finish_qc)
5480 finish_qc(qc);
5481 ata_qc_complete(qc);
5482 nr_done++;
5483 }
5484 }
5485
5486 return nr_done;
5487}
5488
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489static inline int ata_should_dma_map(struct ata_queued_cmd *qc)
5490{
5491 struct ata_port *ap = qc->ap;
5492
5493 switch (qc->tf.protocol) {
Tejun Heo3dc1d882006-05-15 21:03:45 +09005494 case ATA_PROT_NCQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495 case ATA_PROT_DMA:
5496 case ATA_PROT_ATAPI_DMA:
5497 return 1;
5498
5499 case ATA_PROT_ATAPI:
5500 case ATA_PROT_PIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 if (ap->flags & ATA_FLAG_PIO_DMA)
5502 return 1;
5503
5504 /* fall through */
5505
5506 default:
5507 return 0;
5508 }
5509
5510 /* never reached */
5511}
5512
5513/**
5514 * ata_qc_issue - issue taskfile to device
5515 * @qc: command to issue to device
5516 *
5517 * Prepare an ATA command to submission to device.
5518 * This includes mapping the data into a DMA-able
5519 * area, filling in the S/G table, and finally
5520 * writing the taskfile to hardware, starting the command.
5521 *
5522 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005523 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09005525void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526{
5527 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005528 struct ata_link *link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
Tejun Heodedaf2b2006-05-15 21:03:43 +09005530 /* Make sure only one non-NCQ command is outstanding. The
5531 * check is skipped for old EH because it reuses active qc to
5532 * request ATAPI sense.
5533 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005534 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09005535
5536 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005537 WARN_ON(link->sactive & (1 << qc->tag));
5538 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005539 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005540 WARN_ON(link->sactive);
5541 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005542 }
5543
Tejun Heoe4a70e72006-03-31 20:36:47 +09005544 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005545 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005546
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547 if (ata_should_dma_map(qc)) {
5548 if (qc->flags & ATA_QCFLAG_SG) {
5549 if (ata_sg_setup(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005550 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 } else if (qc->flags & ATA_QCFLAG_SINGLE) {
5552 if (ata_sg_setup_one(qc))
Tejun Heo8e436af2006-01-23 13:09:36 +09005553 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554 }
5555 } else {
5556 qc->flags &= ~ATA_QCFLAG_DMAMAP;
5557 }
5558
5559 ap->ops->qc_prep(qc);
5560
Tejun Heo8e0e6942006-03-31 20:41:11 +09005561 qc->err_mask |= ap->ops->qc_issue(qc);
5562 if (unlikely(qc->err_mask))
5563 goto err;
5564 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565
Tejun Heo8e436af2006-01-23 13:09:36 +09005566sg_err:
5567 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heo8e0e6942006-03-31 20:41:11 +09005568 qc->err_mask |= AC_ERR_SYSTEM;
5569err:
5570 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571}
5572
5573/**
5574 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
5575 * @qc: command to issue to device
5576 *
5577 * Using various libata functions and hooks, this function
5578 * starts an ATA command. ATA commands are grouped into
5579 * classes called "protocols", and issuing each type of protocol
5580 * is slightly different.
5581 *
Edward Falk0baab862005-06-02 18:17:13 -04005582 * May be used as the qc_issue() entry in ata_port_operations.
5583 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005585 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 *
5587 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005588 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589 */
5590
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005591unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592{
5593 struct ata_port *ap = qc->ap;
5594
Albert Leee50362e2005-09-27 17:39:50 +08005595 /* Use polling pio if the LLD doesn't handle
5596 * interrupt driven pio and atapi CDB interrupt.
5597 */
5598 if (ap->flags & ATA_FLAG_PIO_POLLING) {
5599 switch (qc->tf.protocol) {
5600 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08005601 case ATA_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08005602 case ATA_PROT_ATAPI:
5603 case ATA_PROT_ATAPI_NODATA:
5604 qc->tf.flags |= ATA_TFLAG_POLLING;
5605 break;
5606 case ATA_PROT_ATAPI_DMA:
5607 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08005608 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08005609 BUG();
5610 break;
5611 default:
5612 break;
5613 }
5614 }
5615
Albert Lee312f7da2005-09-27 17:38:03 +08005616 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617 ata_dev_select(ap, qc->dev->devno, 1, 0);
5618
Albert Lee312f7da2005-09-27 17:38:03 +08005619 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620 switch (qc->tf.protocol) {
5621 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005622 if (qc->tf.flags & ATA_TFLAG_POLLING)
5623 ata_qc_set_polling(qc);
5624
Jeff Garzike5338252005-10-30 21:37:17 -05005625 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005626 ap->hsm_task_state = HSM_ST_LAST;
5627
5628 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005629 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005630
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 break;
5632
5633 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005634 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005635
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5637 ap->ops->bmdma_setup(qc); /* set up bmdma */
5638 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005639 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640 break;
5641
Albert Lee312f7da2005-09-27 17:38:03 +08005642 case ATA_PROT_PIO:
5643 if (qc->tf.flags & ATA_TFLAG_POLLING)
5644 ata_qc_set_polling(qc);
5645
Jeff Garzike5338252005-10-30 21:37:17 -05005646 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08005647
Albert Lee54f00382005-09-30 19:14:19 +08005648 if (qc->tf.flags & ATA_TFLAG_WRITE) {
5649 /* PIO data out protocol */
5650 ap->hsm_task_state = HSM_ST_FIRST;
Albert Lee31ce6da2006-04-03 18:31:44 +08005651 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08005652
5653 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08005654 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08005655 */
Albert Lee312f7da2005-09-27 17:38:03 +08005656 } else {
Albert Lee54f00382005-09-30 19:14:19 +08005657 /* PIO data in protocol */
5658 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08005659
Albert Lee54f00382005-09-30 19:14:19 +08005660 if (qc->tf.flags & ATA_TFLAG_POLLING)
Albert Lee31ce6da2006-04-03 18:31:44 +08005661 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08005662
Albert Lee54f00382005-09-30 19:14:19 +08005663 /* if polling, ata_pio_task() handles the rest.
5664 * otherwise, interrupt handler takes over from here.
5665 */
Albert Lee312f7da2005-09-27 17:38:03 +08005666 }
5667
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668 break;
5669
5670 case ATA_PROT_ATAPI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671 case ATA_PROT_ATAPI_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08005672 if (qc->tf.flags & ATA_TFLAG_POLLING)
5673 ata_qc_set_polling(qc);
5674
Jeff Garzike5338252005-10-30 21:37:17 -05005675 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05005676
Albert Lee312f7da2005-09-27 17:38:03 +08005677 ap->hsm_task_state = HSM_ST_FIRST;
5678
5679 /* send cdb by polling if no cdb interrupt */
5680 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
5681 (qc->tf.flags & ATA_TFLAG_POLLING))
Albert Lee31ce6da2006-04-03 18:31:44 +08005682 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 break;
5684
5685 case ATA_PROT_ATAPI_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05005686 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08005687
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
5689 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08005690 ap->hsm_task_state = HSM_ST_FIRST;
5691
5692 /* send cdb by polling if no cdb interrupt */
5693 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Albert Lee31ce6da2006-04-03 18:31:44 +08005694 ata_port_queue_task(ap, ata_pio_task, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695 break;
5696
5697 default:
5698 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09005699 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 }
5701
5702 return 0;
5703}
5704
5705/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706 * ata_host_intr - Handle host interrupt for given (port, task)
5707 * @ap: Port on which interrupt arrived (possibly...)
5708 * @qc: Taskfile currently active in engine
5709 *
5710 * Handle host interrupt for given queued command. Currently,
5711 * only DMA interrupts are handled. All other commands are
5712 * handled via polling with interrupts disabled (nIEN bit).
5713 *
5714 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005715 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716 *
5717 * RETURNS:
5718 * One if interrupt was handled, zero if not (shared irq).
5719 */
5720
5721inline unsigned int ata_host_intr (struct ata_port *ap,
5722 struct ata_queued_cmd *qc)
5723{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005724 struct ata_eh_info *ehi = &ap->link.eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08005725 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726
Albert Lee312f7da2005-09-27 17:38:03 +08005727 VPRINTK("ata%u: protocol %d task_state %d\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005728 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729
Albert Lee312f7da2005-09-27 17:38:03 +08005730 /* Check whether we are expecting interrupt in this state */
5731 switch (ap->hsm_task_state) {
5732 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005733 /* Some pre-ATAPI-4 devices assert INTRQ
5734 * at this state when ready to receive CDB.
5735 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736
Albert Lee312f7da2005-09-27 17:38:03 +08005737 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
5738 * The flag was turned on only for atapi devices.
5739 * No need to check is_atapi_taskfile(&qc->tf) again.
5740 */
5741 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743 break;
Albert Lee312f7da2005-09-27 17:38:03 +08005744 case HSM_ST_LAST:
5745 if (qc->tf.protocol == ATA_PROT_DMA ||
5746 qc->tf.protocol == ATA_PROT_ATAPI_DMA) {
5747 /* check status of DMA engine */
5748 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005749 VPRINTK("ata%u: host_stat 0x%X\n",
5750 ap->print_id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751
Albert Lee312f7da2005-09-27 17:38:03 +08005752 /* if it's not our irq... */
5753 if (!(host_stat & ATA_DMA_INTR))
5754 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755
Albert Lee312f7da2005-09-27 17:38:03 +08005756 /* before we do anything else, clear DMA-Start bit */
5757 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08005758
5759 if (unlikely(host_stat & ATA_DMA_ERR)) {
5760 /* error when transfering data to/from memory */
5761 qc->err_mask |= AC_ERR_HOST_BUS;
5762 ap->hsm_task_state = HSM_ST_ERR;
5763 }
Albert Lee312f7da2005-09-27 17:38:03 +08005764 }
5765 break;
5766 case HSM_ST:
5767 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768 default:
5769 goto idle_irq;
5770 }
5771
Albert Lee312f7da2005-09-27 17:38:03 +08005772 /* check altstatus */
5773 status = ata_altstatus(ap);
5774 if (status & ATA_BUSY)
5775 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776
Albert Lee312f7da2005-09-27 17:38:03 +08005777 /* check main status, clearing INTRQ */
5778 status = ata_chk_status(ap);
5779 if (unlikely(status & ATA_BUSY))
5780 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781
Albert Lee312f7da2005-09-27 17:38:03 +08005782 /* ack bmdma irq events */
5783 ap->ops->irq_clear(ap);
5784
Albert Leebb5cb292006-03-25 17:48:02 +08005785 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09005786
5787 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
5788 qc->tf.protocol == ATA_PROT_ATAPI_DMA))
5789 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
5790
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791 return 1; /* irq handled */
5792
5793idle_irq:
5794 ap->stats.idle_irq++;
5795
5796#ifdef ATA_IRQ_TRAP
5797 if ((ap->stats.idle_irq % 1000) == 0) {
Jeff Garzik6d32d302007-08-15 05:38:46 -04005798 ata_chk_status(ap);
5799 ap->ops->irq_clear(ap);
Tejun Heof15a1da2006-05-15 20:57:56 +09005800 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00005801 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802 }
5803#endif
5804 return 0; /* irq not handled */
5805}
5806
5807/**
5808 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04005809 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04005810 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04005812 * Default interrupt handler for PCI IDE devices. Calls
5813 * ata_host_intr() for each port that is not disabled.
5814 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005816 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817 *
5818 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005819 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820 */
5821
David Howells7d12e782006-10-05 14:55:46 +01005822irqreturn_t ata_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823{
Jeff Garzikcca39742006-08-24 03:19:22 -04005824 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825 unsigned int i;
5826 unsigned int handled = 0;
5827 unsigned long flags;
5828
5829 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04005830 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831
Jeff Garzikcca39742006-08-24 03:19:22 -04005832 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833 struct ata_port *ap;
5834
Jeff Garzikcca39742006-08-24 03:19:22 -04005835 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09005836 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04005837 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838 struct ata_queued_cmd *qc;
5839
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005840 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08005841 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08005842 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843 handled |= ata_host_intr(ap, qc);
5844 }
5845 }
5846
Jeff Garzikcca39742006-08-24 03:19:22 -04005847 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
5849 return IRQ_RETVAL(handled);
5850}
5851
Tejun Heo34bf2172006-05-15 20:57:46 +09005852/**
5853 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09005854 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09005855 *
Tejun Heo936fd732007-08-06 18:36:23 +09005856 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09005857 *
5858 * LOCKING:
5859 * None.
5860 *
5861 * RETURNS:
5862 * 1 if SCRs are accessible, 0 otherwise.
5863 */
Tejun Heo936fd732007-08-06 18:36:23 +09005864int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005865{
Tejun Heo936fd732007-08-06 18:36:23 +09005866 struct ata_port *ap = link->ap;
5867
Tejun Heoa16abc02007-05-21 18:33:47 +02005868 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09005869}
5870
5871/**
5872 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005873 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005874 * @reg: SCR to read
5875 * @val: Place to store read value
5876 *
Tejun Heo936fd732007-08-06 18:36:23 +09005877 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo34bf2172006-05-15 20:57:46 +09005878 * guaranteed to succeed if the cable type of the port is SATA
5879 * and the port implements ->scr_read.
5880 *
5881 * LOCKING:
5882 * None.
5883 *
5884 * RETURNS:
5885 * 0 on success, negative errno on failure.
5886 */
Tejun Heo936fd732007-08-06 18:36:23 +09005887int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005888{
Tejun Heo936fd732007-08-06 18:36:23 +09005889 struct ata_port *ap = link->ap;
5890
5891 if (sata_scr_valid(link))
Tejun Heoda3dbb12007-07-16 14:29:40 +09005892 return ap->ops->scr_read(ap, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005893 return -EOPNOTSUPP;
5894}
5895
5896/**
5897 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005898 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005899 * @reg: SCR to write
5900 * @val: value to write
5901 *
Tejun Heo936fd732007-08-06 18:36:23 +09005902 * Write @val to SCR register @reg of @link. This function is
Tejun Heo34bf2172006-05-15 20:57:46 +09005903 * guaranteed to succeed if the cable type of the port is SATA
5904 * and the port implements ->scr_read.
5905 *
5906 * LOCKING:
5907 * None.
5908 *
5909 * RETURNS:
5910 * 0 on success, negative errno on failure.
5911 */
Tejun Heo936fd732007-08-06 18:36:23 +09005912int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005913{
Tejun Heo936fd732007-08-06 18:36:23 +09005914 struct ata_port *ap = link->ap;
5915
5916 if (sata_scr_valid(link))
Tejun Heoda3dbb12007-07-16 14:29:40 +09005917 return ap->ops->scr_write(ap, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005918 return -EOPNOTSUPP;
5919}
5920
5921/**
5922 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09005923 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005924 * @reg: SCR to write
5925 * @val: value to write
5926 *
5927 * This function is identical to sata_scr_write() except that this
5928 * function performs flush after writing to the register.
5929 *
5930 * LOCKING:
5931 * None.
5932 *
5933 * RETURNS:
5934 * 0 on success, negative errno on failure.
5935 */
Tejun Heo936fd732007-08-06 18:36:23 +09005936int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005937{
Tejun Heo936fd732007-08-06 18:36:23 +09005938 struct ata_port *ap = link->ap;
Tejun Heoda3dbb12007-07-16 14:29:40 +09005939 int rc;
5940
Tejun Heo936fd732007-08-06 18:36:23 +09005941 if (sata_scr_valid(link)) {
Tejun Heoda3dbb12007-07-16 14:29:40 +09005942 rc = ap->ops->scr_write(ap, reg, val);
5943 if (rc == 0)
5944 rc = ap->ops->scr_read(ap, reg, &val);
5945 return rc;
Tejun Heo34bf2172006-05-15 20:57:46 +09005946 }
5947 return -EOPNOTSUPP;
5948}
5949
5950/**
Tejun Heo936fd732007-08-06 18:36:23 +09005951 * ata_link_online - test whether the given link is online
5952 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005953 *
Tejun Heo936fd732007-08-06 18:36:23 +09005954 * Test whether @link is online. Note that this function returns
5955 * 0 if online status of @link cannot be obtained, so
5956 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005957 *
5958 * LOCKING:
5959 * None.
5960 *
5961 * RETURNS:
5962 * 1 if the port online status is available and online.
5963 */
Tejun Heo936fd732007-08-06 18:36:23 +09005964int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005965{
5966 u32 sstatus;
5967
Tejun Heo936fd732007-08-06 18:36:23 +09005968 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5969 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09005970 return 1;
5971 return 0;
5972}
5973
5974/**
Tejun Heo936fd732007-08-06 18:36:23 +09005975 * ata_link_offline - test whether the given link is offline
5976 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005977 *
Tejun Heo936fd732007-08-06 18:36:23 +09005978 * Test whether @link is offline. Note that this function
5979 * returns 0 if offline status of @link cannot be obtained, so
5980 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005981 *
5982 * LOCKING:
5983 * None.
5984 *
5985 * RETURNS:
5986 * 1 if the port offline status is available and offline.
5987 */
Tejun Heo936fd732007-08-06 18:36:23 +09005988int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005989{
5990 u32 sstatus;
5991
Tejun Heo936fd732007-08-06 18:36:23 +09005992 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5993 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09005994 return 1;
5995 return 0;
5996}
Edward Falk0baab862005-06-02 18:17:13 -04005997
Tejun Heo77b08fb2006-06-24 20:30:19 +09005998int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01005999{
Tejun Heo977e6b92006-06-24 20:30:19 +09006000 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01006001 u8 cmd;
6002
6003 if (!ata_try_flush_cache(dev))
6004 return 0;
6005
Tejun Heo6fc49ad2006-11-11 20:10:45 +09006006 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01006007 cmd = ATA_CMD_FLUSH_EXT;
6008 else
6009 cmd = ATA_CMD_FLUSH;
6010
Alan Cox4f343372007-08-08 14:30:31 +01006011 /* This is wrong. On a failed flush we get back the LBA of the lost
6012 sector and we should (assuming it wasn't aborted as unknown) issue
6013 a further flush command to continue the writeback until it
6014 does not error */
Tejun Heo977e6b92006-06-24 20:30:19 +09006015 err_mask = ata_do_simple_cmd(dev, cmd);
6016 if (err_mask) {
6017 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
6018 return -EIO;
6019 }
6020
6021 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01006022}
6023
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006024#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006025static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
6026 unsigned int action, unsigned int ehi_flags,
6027 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09006028{
6029 unsigned long flags;
6030 int i, rc;
6031
Jeff Garzikcca39742006-08-24 03:19:22 -04006032 for (i = 0; i < host->n_ports; i++) {
6033 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09006034 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09006035
6036 /* Previous resume operation might still be in
6037 * progress. Wait for PM_PENDING to clear.
6038 */
6039 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
6040 ata_port_wait_eh(ap);
6041 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
6042 }
6043
6044 /* request PM ops to EH */
6045 spin_lock_irqsave(ap->lock, flags);
6046
6047 ap->pm_mesg = mesg;
6048 if (wait) {
6049 rc = 0;
6050 ap->pm_result = &rc;
6051 }
6052
6053 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09006054 __ata_port_for_each_link(link, ap) {
6055 link->eh_info.action |= action;
6056 link->eh_info.flags |= ehi_flags;
6057 }
Tejun Heo500530f2006-07-03 16:07:27 +09006058
6059 ata_port_schedule_eh(ap);
6060
6061 spin_unlock_irqrestore(ap->lock, flags);
6062
6063 /* wait and check result */
6064 if (wait) {
6065 ata_port_wait_eh(ap);
6066 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
6067 if (rc)
6068 return rc;
6069 }
6070 }
6071
6072 return 0;
6073}
6074
6075/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006076 * ata_host_suspend - suspend host
6077 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09006078 * @mesg: PM message
6079 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006080 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006081 * function requests EH to perform PM operations and waits for EH
6082 * to finish.
6083 *
6084 * LOCKING:
6085 * Kernel thread context (may sleep).
6086 *
6087 * RETURNS:
6088 * 0 on success, -errno on failure.
6089 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006090int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006091{
Tejun Heo9666f402007-05-04 21:27:47 +02006092 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006093
Jeff Garzikcca39742006-08-24 03:19:22 -04006094 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Tejun Heo9666f402007-05-04 21:27:47 +02006095 if (rc == 0)
6096 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09006097 return rc;
6098}
6099
6100/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006101 * ata_host_resume - resume host
6102 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09006103 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006104 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006105 * function requests EH to perform PM operations and returns.
6106 * Note that all resume operations are performed parallely.
6107 *
6108 * LOCKING:
6109 * Kernel thread context (may sleep).
6110 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006111void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09006112{
Jeff Garzikcca39742006-08-24 03:19:22 -04006113 ata_host_request_pm(host, PMSG_ON, ATA_EH_SOFTRESET,
6114 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
6115 host->dev->power.power_state = PMSG_ON;
Tejun Heo500530f2006-07-03 16:07:27 +09006116}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006117#endif
Tejun Heo500530f2006-07-03 16:07:27 +09006118
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006119/**
6120 * ata_port_start - Set port up for dma.
6121 * @ap: Port to initialize
6122 *
6123 * Called just after data structures for each port are
6124 * initialized. Allocates space for PRD table.
6125 *
6126 * May be used as the port_start() entry in ata_port_operations.
6127 *
6128 * LOCKING:
6129 * Inherited from caller.
6130 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006131int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132{
Brian King2f1f6102006-03-23 17:30:15 -06006133 struct device *dev = ap->dev;
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006134 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135
Tejun Heof0d36ef2007-01-20 16:00:28 +09006136 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
6137 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 if (!ap->prd)
6139 return -ENOMEM;
6140
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006141 rc = ata_pad_alloc(ap, dev);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006142 if (rc)
Jeff Garzik6037d6b2005-11-04 22:08:00 -05006143 return rc;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04006144
Tejun Heof0d36ef2007-01-20 16:00:28 +09006145 DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd,
6146 (unsigned long long)ap->prd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147 return 0;
6148}
6149
Edward Falk0baab862005-06-02 18:17:13 -04006150/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09006151 * ata_dev_init - Initialize an ata_device structure
6152 * @dev: Device structure to initialize
6153 *
6154 * Initialize @dev in preparation for probing.
6155 *
6156 * LOCKING:
6157 * Inherited from caller.
6158 */
6159void ata_dev_init(struct ata_device *dev)
6160{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006161 struct ata_link *link = dev->link;
6162 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09006163 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09006164
Tejun Heo5a04bf42006-05-31 18:27:38 +09006165 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006166 link->sata_spd_limit = link->hw_sata_spd_limit;
6167 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006168
Tejun Heo72fa4b72006-05-31 18:27:32 +09006169 /* High bits of dev->flags are used to record warm plug
6170 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04006171 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09006172 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006173 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006174 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09006175 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006176 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006177
6178 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
6179 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09006180 dev->pio_mask = UINT_MAX;
6181 dev->mwdma_mask = UINT_MAX;
6182 dev->udma_mask = UINT_MAX;
6183}
6184
6185/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09006186 * ata_link_init - Initialize an ata_link structure
6187 * @ap: ATA port link is attached to
6188 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09006189 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09006190 *
6191 * Initialize @link.
6192 *
6193 * LOCKING:
6194 * Kernel thread context (may sleep)
6195 */
Tejun Heo89898052007-08-06 18:36:23 +09006196static void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09006197{
6198 int i;
6199
6200 /* clear everything except for devices */
6201 memset(link, 0, offsetof(struct ata_link, device[0]));
6202
6203 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09006204 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09006205 link->active_tag = ATA_TAG_POISON;
6206 link->hw_sata_spd_limit = UINT_MAX;
6207
6208 /* can't use iterator, ap isn't initialized yet */
6209 for (i = 0; i < ATA_MAX_DEVICES; i++) {
6210 struct ata_device *dev = &link->device[i];
6211
6212 dev->link = link;
6213 dev->devno = dev - link->device;
6214 ata_dev_init(dev);
6215 }
6216}
6217
6218/**
6219 * sata_link_init_spd - Initialize link->sata_spd_limit
6220 * @link: Link to configure sata_spd_limit for
6221 *
6222 * Initialize @link->[hw_]sata_spd_limit to the currently
6223 * configured value.
6224 *
6225 * LOCKING:
6226 * Kernel thread context (may sleep).
6227 *
6228 * RETURNS:
6229 * 0 on success, -errno on failure.
6230 */
6231static int sata_link_init_spd(struct ata_link *link)
6232{
6233 u32 scontrol, spd;
6234 int rc;
6235
6236 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
6237 if (rc)
6238 return rc;
6239
6240 spd = (scontrol >> 4) & 0xf;
6241 if (spd)
6242 link->hw_sata_spd_limit &= (1 << spd) - 1;
6243
6244 link->sata_spd_limit = link->hw_sata_spd_limit;
6245
6246 return 0;
6247}
6248
6249/**
Tejun Heof3187192007-04-17 23:44:07 +09006250 * ata_port_alloc - allocate and initialize basic ATA port resources
6251 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252 *
Tejun Heof3187192007-04-17 23:44:07 +09006253 * Allocate and initialize basic ATA port resources.
6254 *
6255 * RETURNS:
6256 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04006257 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006259 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260 */
Tejun Heof3187192007-04-17 23:44:07 +09006261struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262{
Tejun Heof3187192007-04-17 23:44:07 +09006263 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264
Tejun Heof3187192007-04-17 23:44:07 +09006265 DPRINTK("ENTER\n");
6266
6267 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
6268 if (!ap)
6269 return NULL;
6270
Tejun Heof4d6d002007-05-01 11:50:15 +02006271 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04006272 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09006273 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09006274 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04006276 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09006277 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006279
6280#if defined(ATA_VERBOSE_DEBUG)
6281 /* turn on all debugging levels */
6282 ap->msg_enable = 0x00FF;
6283#elif defined(ATA_DEBUG)
6284 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 +09006285#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04006286 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006287#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
David Howells65f27f32006-11-22 14:55:48 +00006289 INIT_DELAYED_WORK(&ap->port_task, NULL);
6290 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
6291 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09006292 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09006293 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09006294 init_timer_deferrable(&ap->fastdrain_timer);
6295 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
6296 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297
Tejun Heo838df622006-05-15 20:57:44 +09006298 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09006299
Tejun Heo89898052007-08-06 18:36:23 +09006300 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301
6302#ifdef ATA_IRQ_TRAP
6303 ap->stats.unhandled_irq = 1;
6304 ap->stats.idle_irq = 1;
6305#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307}
6308
Tejun Heof0d36ef2007-01-20 16:00:28 +09006309static void ata_host_release(struct device *gendev, void *res)
6310{
6311 struct ata_host *host = dev_get_drvdata(gendev);
6312 int i;
6313
6314 for (i = 0; i < host->n_ports; i++) {
6315 struct ata_port *ap = host->ports[i];
6316
Tejun Heoecef7252007-04-17 23:44:06 +09006317 if (!ap)
6318 continue;
6319
6320 if ((host->flags & ATA_HOST_STARTED) && ap->ops->port_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006321 ap->ops->port_stop(ap);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006322 }
6323
Tejun Heoecef7252007-04-17 23:44:06 +09006324 if ((host->flags & ATA_HOST_STARTED) && host->ops->host_stop)
Tejun Heof0d36ef2007-01-20 16:00:28 +09006325 host->ops->host_stop(host);
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006326
Tejun Heo1aa506e42007-03-09 19:36:12 +09006327 for (i = 0; i < host->n_ports; i++) {
6328 struct ata_port *ap = host->ports[i];
6329
Tejun Heo49114872007-04-17 23:44:06 +09006330 if (!ap)
6331 continue;
6332
6333 if (ap->scsi_host)
Tejun Heo1aa506e42007-03-09 19:36:12 +09006334 scsi_host_put(ap->scsi_host);
6335
Tejun Heo49114872007-04-17 23:44:06 +09006336 kfree(ap);
Tejun Heo1aa506e42007-03-09 19:36:12 +09006337 host->ports[i] = NULL;
6338 }
6339
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006340 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006341}
6342
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343/**
Tejun Heof3187192007-04-17 23:44:07 +09006344 * ata_host_alloc - allocate and init basic ATA host resources
6345 * @dev: generic device this host is associated with
6346 * @max_ports: maximum number of ATA ports associated with this host
6347 *
6348 * Allocate and initialize basic ATA host resources. LLD calls
6349 * this function to allocate a host, initializes it fully and
6350 * attaches it using ata_host_register().
6351 *
6352 * @max_ports ports are allocated and host->n_ports is
6353 * initialized to @max_ports. The caller is allowed to decrease
6354 * host->n_ports before calling ata_host_register(). The unused
6355 * ports will be automatically freed on registration.
6356 *
6357 * RETURNS:
6358 * Allocate ATA host on success, NULL on failure.
6359 *
6360 * LOCKING:
6361 * Inherited from calling layer (may sleep).
6362 */
6363struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
6364{
6365 struct ata_host *host;
6366 size_t sz;
6367 int i;
6368
6369 DPRINTK("ENTER\n");
6370
6371 if (!devres_open_group(dev, NULL, GFP_KERNEL))
6372 return NULL;
6373
6374 /* alloc a container for our list of ATA ports (buses) */
6375 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
6376 /* alloc a container for our list of ATA ports (buses) */
6377 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
6378 if (!host)
6379 goto err_out;
6380
6381 devres_add(dev, host);
6382 dev_set_drvdata(dev, host);
6383
6384 spin_lock_init(&host->lock);
6385 host->dev = dev;
6386 host->n_ports = max_ports;
6387
6388 /* allocate ports bound to this host */
6389 for (i = 0; i < max_ports; i++) {
6390 struct ata_port *ap;
6391
6392 ap = ata_port_alloc(host);
6393 if (!ap)
6394 goto err_out;
6395
6396 ap->port_no = i;
6397 host->ports[i] = ap;
6398 }
6399
6400 devres_remove_group(dev, NULL);
6401 return host;
6402
6403 err_out:
6404 devres_release_group(dev, NULL);
6405 return NULL;
6406}
6407
6408/**
Tejun Heof5cda252007-04-17 23:44:07 +09006409 * ata_host_alloc_pinfo - alloc host and init with port_info array
6410 * @dev: generic device this host is associated with
6411 * @ppi: array of ATA port_info to initialize host with
6412 * @n_ports: number of ATA ports attached to this host
6413 *
6414 * Allocate ATA host and initialize with info from @ppi. If NULL
6415 * terminated, @ppi may contain fewer entries than @n_ports. The
6416 * last entry will be used for the remaining ports.
6417 *
6418 * RETURNS:
6419 * Allocate ATA host on success, NULL on failure.
6420 *
6421 * LOCKING:
6422 * Inherited from calling layer (may sleep).
6423 */
6424struct ata_host *ata_host_alloc_pinfo(struct device *dev,
6425 const struct ata_port_info * const * ppi,
6426 int n_ports)
6427{
6428 const struct ata_port_info *pi;
6429 struct ata_host *host;
6430 int i, j;
6431
6432 host = ata_host_alloc(dev, n_ports);
6433 if (!host)
6434 return NULL;
6435
6436 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
6437 struct ata_port *ap = host->ports[i];
6438
6439 if (ppi[j])
6440 pi = ppi[j++];
6441
6442 ap->pio_mask = pi->pio_mask;
6443 ap->mwdma_mask = pi->mwdma_mask;
6444 ap->udma_mask = pi->udma_mask;
6445 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09006446 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09006447 ap->ops = pi->port_ops;
6448
6449 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
6450 host->ops = pi->port_ops;
6451 if (!host->private_data && pi->private_data)
6452 host->private_data = pi->private_data;
6453 }
6454
6455 return host;
6456}
6457
6458/**
Tejun Heoecef7252007-04-17 23:44:06 +09006459 * ata_host_start - start and freeze ports of an ATA host
6460 * @host: ATA host to start ports for
6461 *
6462 * Start and then freeze ports of @host. Started status is
6463 * recorded in host->flags, so this function can be called
6464 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09006465 * once. If host->ops isn't initialized yet, its set to the
6466 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09006467 *
6468 * LOCKING:
6469 * Inherited from calling layer (may sleep).
6470 *
6471 * RETURNS:
6472 * 0 if all ports are started successfully, -errno otherwise.
6473 */
6474int ata_host_start(struct ata_host *host)
6475{
6476 int i, rc;
6477
6478 if (host->flags & ATA_HOST_STARTED)
6479 return 0;
6480
6481 for (i = 0; i < host->n_ports; i++) {
6482 struct ata_port *ap = host->ports[i];
6483
Tejun Heof3187192007-04-17 23:44:07 +09006484 if (!host->ops && !ata_port_is_dummy(ap))
6485 host->ops = ap->ops;
6486
Tejun Heoecef7252007-04-17 23:44:06 +09006487 if (ap->ops->port_start) {
6488 rc = ap->ops->port_start(ap);
6489 if (rc) {
6490 ata_port_printk(ap, KERN_ERR, "failed to "
6491 "start port (errno=%d)\n", rc);
6492 goto err_out;
6493 }
6494 }
6495
6496 ata_eh_freeze_port(ap);
6497 }
6498
6499 host->flags |= ATA_HOST_STARTED;
6500 return 0;
6501
6502 err_out:
6503 while (--i >= 0) {
6504 struct ata_port *ap = host->ports[i];
6505
6506 if (ap->ops->port_stop)
6507 ap->ops->port_stop(ap);
6508 }
6509 return rc;
6510}
6511
6512/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006513 * ata_sas_host_init - Initialize a host struct
6514 * @host: host to initialize
6515 * @dev: device host is attached to
6516 * @flags: host flags
6517 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05006518 *
6519 * LOCKING:
6520 * PCI/etc. bus probe sem.
6521 *
6522 */
Tejun Heof3187192007-04-17 23:44:07 +09006523/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04006524void ata_host_init(struct ata_host *host, struct device *dev,
6525 unsigned long flags, const struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05006526{
Jeff Garzikcca39742006-08-24 03:19:22 -04006527 spin_lock_init(&host->lock);
6528 host->dev = dev;
6529 host->flags = flags;
6530 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05006531}
6532
6533/**
Tejun Heof3187192007-04-17 23:44:07 +09006534 * ata_host_register - register initialized ATA host
6535 * @host: ATA host to register
6536 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04006537 *
Tejun Heof3187192007-04-17 23:44:07 +09006538 * Register initialized ATA host. @host is allocated using
6539 * ata_host_alloc() and fully initialized by LLD. This function
6540 * starts ports, registers @host with ATA and SCSI layers and
6541 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542 *
6543 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006544 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 *
6546 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09006547 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548 */
Tejun Heof3187192007-04-17 23:44:07 +09006549int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550{
Tejun Heof3187192007-04-17 23:44:07 +09006551 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552
Tejun Heof3187192007-04-17 23:44:07 +09006553 /* host must have been started */
6554 if (!(host->flags & ATA_HOST_STARTED)) {
6555 dev_printk(KERN_ERR, host->dev,
6556 "BUG: trying to register unstarted host\n");
6557 WARN_ON(1);
6558 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01006559 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09006560
Tejun Heof3187192007-04-17 23:44:07 +09006561 /* Blow away unused ports. This happens when LLD can't
6562 * determine the exact number of ports to allocate at
6563 * allocation time.
6564 */
6565 for (i = host->n_ports; host->ports[i]; i++)
6566 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567
Tejun Heof3187192007-04-17 23:44:07 +09006568 /* give ports names and add SCSI hosts */
6569 for (i = 0; i < host->n_ports; i++)
6570 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006571
Tejun Heof3187192007-04-17 23:44:07 +09006572 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006573 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006574 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006575
Tejun Heofafbae82007-05-15 03:28:16 +09006576 /* associate with ACPI nodes */
6577 ata_acpi_associate(host);
6578
Tejun Heof3187192007-04-17 23:44:07 +09006579 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006580 for (i = 0; i < host->n_ports; i++) {
6581 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006582 unsigned long xfer_mask;
6583
6584 /* set SATA cable type if still unset */
6585 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6586 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587
Tejun Heo5a04bf42006-05-31 18:27:38 +09006588 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09006589 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09006590
Tejun Heocbcdd872007-08-18 13:14:55 +09006591 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09006592 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6593 ap->udma_mask);
6594
Tejun Heof3187192007-04-17 23:44:07 +09006595 if (!ata_port_is_dummy(ap))
Tejun Heocbcdd872007-08-18 13:14:55 +09006596 ata_port_printk(ap, KERN_INFO,
6597 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02006598 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09006599 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09006600 ap->link.eh_info.desc);
Tejun Heof3187192007-04-17 23:44:07 +09006601 else
6602 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6603 }
6604
6605 /* perform each probe synchronously */
6606 DPRINTK("probe begin\n");
6607 for (i = 0; i < host->n_ports; i++) {
6608 struct ata_port *ap = host->ports[i];
6609 int rc;
6610
6611 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09006612 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006613 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e7063992006-05-31 18:28:11 +09006614 unsigned long flags;
6615
6616 ata_port_probe(ap);
6617
6618 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006619 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e7063992006-05-31 18:28:11 +09006620
Tejun Heof58229f2007-08-06 18:36:23 +09006621 ehi->probe_mask =
6622 (1 << ata_link_max_devices(&ap->link)) - 1;
Tejun Heo1cdaf532006-07-03 16:07:26 +09006623 ehi->action |= ATA_EH_SOFTRESET;
6624 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e7063992006-05-31 18:28:11 +09006625
Tejun Heof4d6d002007-05-01 11:50:15 +02006626 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09006627 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e7063992006-05-31 18:28:11 +09006628 ata_port_schedule_eh(ap);
6629
Jeff Garzikba6a1302006-06-22 23:46:10 -04006630 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e7063992006-05-31 18:28:11 +09006631
6632 /* wait for EH to finish */
6633 ata_port_wait_eh(ap);
6634 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09006635 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e7063992006-05-31 18:28:11 +09006636 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09006637 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e7063992006-05-31 18:28:11 +09006638
6639 if (rc) {
6640 /* FIXME: do something useful here?
6641 * Current libata behavior will
6642 * tear down everything when
6643 * the module is removed
6644 * or the h/w is unplugged.
6645 */
6646 }
6647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648 }
6649
6650 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006651 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04006652 for (i = 0; i < host->n_ports; i++) {
6653 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654
Tejun Heo1ae46312007-07-16 14:29:40 +09006655 ata_scsi_scan_host(ap, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656 }
6657
Tejun Heof3187192007-04-17 23:44:07 +09006658 return 0;
6659}
6660
6661/**
Tejun Heof5cda252007-04-17 23:44:07 +09006662 * ata_host_activate - start host, request IRQ and register it
6663 * @host: target ATA host
6664 * @irq: IRQ to request
6665 * @irq_handler: irq_handler used when requesting IRQ
6666 * @irq_flags: irq_flags used when requesting IRQ
6667 * @sht: scsi_host_template to use when registering the host
6668 *
6669 * After allocating an ATA host and initializing it, most libata
6670 * LLDs perform three steps to activate the host - start host,
6671 * request IRQ and register it. This helper takes necessasry
6672 * arguments and performs the three steps in one go.
6673 *
6674 * LOCKING:
6675 * Inherited from calling layer (may sleep).
6676 *
6677 * RETURNS:
6678 * 0 on success, -errno otherwise.
6679 */
6680int ata_host_activate(struct ata_host *host, int irq,
6681 irq_handler_t irq_handler, unsigned long irq_flags,
6682 struct scsi_host_template *sht)
6683{
Tejun Heocbcdd872007-08-18 13:14:55 +09006684 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09006685
6686 rc = ata_host_start(host);
6687 if (rc)
6688 return rc;
6689
6690 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6691 dev_driver_string(host->dev), host);
6692 if (rc)
6693 return rc;
6694
Tejun Heocbcdd872007-08-18 13:14:55 +09006695 for (i = 0; i < host->n_ports; i++)
6696 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09006697
Tejun Heof5cda252007-04-17 23:44:07 +09006698 rc = ata_host_register(host, sht);
6699 /* if failed, just free the IRQ and leave ports alone */
6700 if (rc)
6701 devm_free_irq(host->dev, irq, host);
6702
6703 return rc;
6704}
6705
6706/**
Tejun Heo720ba122006-05-31 18:28:13 +09006707 * ata_port_detach - Detach ATA port in prepration of device removal
6708 * @ap: ATA port to be detached
6709 *
6710 * Detach all ATA devices and the associated SCSI devices of @ap;
6711 * then, remove the associated SCSI host. @ap is guaranteed to
6712 * be quiescent on return from this function.
6713 *
6714 * LOCKING:
6715 * Kernel thread context (may sleep).
6716 */
6717void ata_port_detach(struct ata_port *ap)
6718{
6719 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09006720 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09006721 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09006722
6723 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006724 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006725
6726 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006727 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006728 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006729 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006730
6731 ata_port_wait_eh(ap);
6732
6733 /* EH is now guaranteed to see UNLOADING, so no new device
6734 * will be attached. Disable all existing devices.
6735 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006736 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006737
Tejun Heo41bda9c2007-08-06 18:36:24 +09006738 ata_port_for_each_link(link, ap) {
6739 ata_link_for_each_dev(dev, link)
6740 ata_dev_disable(dev);
6741 }
Tejun Heo720ba122006-05-31 18:28:13 +09006742
Jeff Garzikba6a1302006-06-22 23:46:10 -04006743 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006744
6745 /* Final freeze & EH. All in-flight commands are aborted. EH
6746 * will be skipped and retrials will be terminated with bad
6747 * target.
6748 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006749 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006750 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006751 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006752
6753 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07006754 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09006755
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006756 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006757 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006758 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006759}
6760
6761/**
Tejun Heo0529c1592007-01-20 16:00:26 +09006762 * ata_host_detach - Detach all ports of an ATA host
6763 * @host: Host to detach
6764 *
6765 * Detach all ports of @host.
6766 *
6767 * LOCKING:
6768 * Kernel thread context (may sleep).
6769 */
6770void ata_host_detach(struct ata_host *host)
6771{
6772 int i;
6773
6774 for (i = 0; i < host->n_ports; i++)
6775 ata_port_detach(host->ports[i]);
6776}
6777
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778/**
6779 * ata_std_ports - initialize ioaddr with standard port offsets.
6780 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04006781 *
6782 * Utility function which initializes data_addr, error_addr,
6783 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
6784 * device_addr, status_addr, and command_addr to standard offsets
6785 * relative to cmd_addr.
6786 *
6787 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788 */
Edward Falk0baab862005-06-02 18:17:13 -04006789
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790void ata_std_ports(struct ata_ioports *ioaddr)
6791{
6792 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
6793 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
6794 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
6795 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
6796 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
6797 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
6798 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
6799 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
6800 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
6801 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
6802}
6803
Edward Falk0baab862005-06-02 18:17:13 -04006804
Jeff Garzik374b1872005-08-30 05:42:52 -04006805#ifdef CONFIG_PCI
6806
Edward Falk0baab862005-06-02 18:17:13 -04006807/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006808 * ata_pci_remove_one - PCI layer callback for device removal
6809 * @pdev: PCI device that was removed
6810 *
Tejun Heob878ca52007-01-20 16:00:28 +09006811 * PCI layer indicates to libata via this hook that hot-unplug or
6812 * module unload event has occurred. Detach all ports. Resource
6813 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814 *
6815 * LOCKING:
6816 * Inherited from PCI layer (may sleep).
6817 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006818void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006819{
6820 struct device *dev = pci_dev_to_dev(pdev);
Jeff Garzikcca39742006-08-24 03:19:22 -04006821 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822
Tejun Heob878ca52007-01-20 16:00:28 +09006823 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824}
6825
6826/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006827int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828{
6829 unsigned long tmp = 0;
6830
6831 switch (bits->width) {
6832 case 1: {
6833 u8 tmp8 = 0;
6834 pci_read_config_byte(pdev, bits->reg, &tmp8);
6835 tmp = tmp8;
6836 break;
6837 }
6838 case 2: {
6839 u16 tmp16 = 0;
6840 pci_read_config_word(pdev, bits->reg, &tmp16);
6841 tmp = tmp16;
6842 break;
6843 }
6844 case 4: {
6845 u32 tmp32 = 0;
6846 pci_read_config_dword(pdev, bits->reg, &tmp32);
6847 tmp = tmp32;
6848 break;
6849 }
6850
6851 default:
6852 return -EINVAL;
6853 }
6854
6855 tmp &= bits->mask;
6856
6857 return (tmp == bits->val) ? 1 : 0;
6858}
Jens Axboe9b847542006-01-06 09:28:07 +01006859
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006860#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09006861void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006862{
6863 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09006864 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006865
Tejun Heo4c90d972007-02-20 18:14:48 +09006866 if (mesg.event == PM_EVENT_SUSPEND)
Tejun Heo500530f2006-07-03 16:07:27 +09006867 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01006868}
6869
Tejun Heo553c4aa2006-12-26 19:39:50 +09006870int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006871{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006872 int rc;
6873
Jens Axboe9b847542006-01-06 09:28:07 +01006874 pci_set_power_state(pdev, PCI_D0);
6875 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006876
Tejun Heob878ca52007-01-20 16:00:28 +09006877 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006878 if (rc) {
6879 dev_printk(KERN_ERR, &pdev->dev,
6880 "failed to enable device after resume (%d)\n", rc);
6881 return rc;
6882 }
6883
Jens Axboe9b847542006-01-06 09:28:07 +01006884 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006885 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006886}
6887
Tejun Heo3c5100c2006-07-26 16:58:33 +09006888int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006889{
Jeff Garzikcca39742006-08-24 03:19:22 -04006890 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006891 int rc = 0;
6892
Jeff Garzikcca39742006-08-24 03:19:22 -04006893 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006894 if (rc)
6895 return rc;
6896
Tejun Heo3c5100c2006-07-26 16:58:33 +09006897 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006898
6899 return 0;
6900}
6901
6902int ata_pci_device_resume(struct pci_dev *pdev)
6903{
Jeff Garzikcca39742006-08-24 03:19:22 -04006904 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006905 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006906
Tejun Heo553c4aa2006-12-26 19:39:50 +09006907 rc = ata_pci_device_do_resume(pdev);
6908 if (rc == 0)
6909 ata_host_resume(host);
6910 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006911}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006912#endif /* CONFIG_PM */
6913
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914#endif /* CONFIG_PCI */
6915
6916
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917static int __init ata_init(void)
6918{
Andrew Mortona8601e52006-06-25 01:36:52 -07006919 ata_probe_timeout *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920 ata_wq = create_workqueue("ata");
6921 if (!ata_wq)
6922 return -ENOMEM;
6923
Tejun Heo453b07a2006-05-31 18:27:42 +09006924 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6925 if (!ata_aux_wq) {
6926 destroy_workqueue(ata_wq);
6927 return -ENOMEM;
6928 }
6929
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6931 return 0;
6932}
6933
6934static void __exit ata_exit(void)
6935{
6936 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006937 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938}
6939
Brian Kinga4625082006-11-13 16:32:36 -06006940subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941module_exit(ata_exit);
6942
Jeff Garzik67846b32005-10-05 02:58:32 -04006943static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006944static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006945
6946int ata_ratelimit(void)
6947{
6948 int rc;
6949 unsigned long flags;
6950
6951 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6952
6953 if (time_after(jiffies, ratelimit_time)) {
6954 rc = 1;
6955 ratelimit_time = jiffies + (HZ/5);
6956 } else
6957 rc = 0;
6958
6959 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6960
6961 return rc;
6962}
6963
Tejun Heoc22daff2006-04-11 22:22:29 +09006964/**
6965 * ata_wait_register - wait until register value changes
6966 * @reg: IO-mapped register
6967 * @mask: Mask to apply to read register value
6968 * @val: Wait condition
6969 * @interval_msec: polling interval in milliseconds
6970 * @timeout_msec: timeout in milliseconds
6971 *
6972 * Waiting for some bits of register to change is a common
6973 * operation for ATA controllers. This function reads 32bit LE
6974 * IO-mapped register @reg and tests for the following condition.
6975 *
6976 * (*@reg & mask) != val
6977 *
6978 * If the condition is met, it returns; otherwise, the process is
6979 * repeated after @interval_msec until timeout.
6980 *
6981 * LOCKING:
6982 * Kernel thread context (may sleep)
6983 *
6984 * RETURNS:
6985 * The final register value.
6986 */
6987u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6988 unsigned long interval_msec,
6989 unsigned long timeout_msec)
6990{
6991 unsigned long timeout;
6992 u32 tmp;
6993
6994 tmp = ioread32(reg);
6995
6996 /* Calculate timeout _after_ the first read to make sure
6997 * preceding writes reach the controller before starting to
6998 * eat away the timeout.
6999 */
7000 timeout = jiffies + (timeout_msec * HZ) / 1000;
7001
7002 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
7003 msleep(interval_msec);
7004 tmp = ioread32(reg);
7005 }
7006
7007 return tmp;
7008}
7009
Linus Torvalds1da177e2005-04-16 15:20:36 -07007010/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09007011 * Dummy port_ops
7012 */
7013static void ata_dummy_noret(struct ata_port *ap) { }
7014static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
7015static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
7016
7017static u8 ata_dummy_check_status(struct ata_port *ap)
7018{
7019 return ATA_DRDY;
7020}
7021
7022static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
7023{
7024 return AC_ERR_SYSTEM;
7025}
7026
7027const struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09007028 .check_status = ata_dummy_check_status,
7029 .check_altstatus = ata_dummy_check_status,
7030 .dev_select = ata_noop_dev_select,
7031 .qc_prep = ata_noop_qc_prep,
7032 .qc_issue = ata_dummy_qc_issue,
7033 .freeze = ata_dummy_noret,
7034 .thaw = ata_dummy_noret,
7035 .error_handler = ata_dummy_noret,
7036 .post_internal_cmd = ata_dummy_qc_noret,
7037 .irq_clear = ata_dummy_noret,
7038 .port_start = ata_dummy_ret0,
7039 .port_stop = ata_dummy_noret,
7040};
7041
Tejun Heo21b0ad42007-04-17 23:44:07 +09007042const struct ata_port_info ata_dummy_port_info = {
7043 .port_ops = &ata_dummy_port_ops,
7044};
7045
Tejun Heodd5b06c2006-08-10 16:59:12 +09007046/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047 * libata is essentially a library of internal helper functions for
7048 * low-level ATA host controller drivers. As such, the API/ABI is
7049 * likely to change as new drivers are added and updated.
7050 * Do not depend on ABI/API stability.
7051 */
7052
Tejun Heoe9c83912006-07-03 16:07:26 +09007053EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
7054EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
7055EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heodd5b06c2006-08-10 16:59:12 +09007056EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09007057EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007058EXPORT_SYMBOL_GPL(ata_std_bios_param);
7059EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04007060EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09007061EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09007062EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09007063EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09007064EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09007065EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c1592007-01-20 16:00:26 +09007066EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067EXPORT_SYMBOL_GPL(ata_sg_init);
7068EXPORT_SYMBOL_GPL(ata_sg_init_one);
Tejun Heo9a1004d2006-05-31 18:27:52 +09007069EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09007070EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09007071EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073EXPORT_SYMBOL_GPL(ata_tf_load);
7074EXPORT_SYMBOL_GPL(ata_tf_read);
7075EXPORT_SYMBOL_GPL(ata_noop_dev_select);
7076EXPORT_SYMBOL_GPL(ata_std_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05007077EXPORT_SYMBOL_GPL(sata_print_link_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078EXPORT_SYMBOL_GPL(ata_tf_to_fis);
7079EXPORT_SYMBOL_GPL(ata_tf_from_fis);
7080EXPORT_SYMBOL_GPL(ata_check_status);
7081EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082EXPORT_SYMBOL_GPL(ata_exec_command);
7083EXPORT_SYMBOL_GPL(ata_port_start);
Alan Coxd92e74d2007-06-07 16:19:15 +01007084EXPORT_SYMBOL_GPL(ata_sff_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085EXPORT_SYMBOL_GPL(ata_interrupt);
Alan04351822007-03-06 02:37:52 -08007086EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo0d5ff562007-02-01 15:06:36 +09007087EXPORT_SYMBOL_GPL(ata_data_xfer);
7088EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007089EXPORT_SYMBOL_GPL(ata_qc_prep);
Alan Coxd26fc952007-07-06 19:13:52 -04007090EXPORT_SYMBOL_GPL(ata_dumb_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06007091EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092EXPORT_SYMBOL_GPL(ata_bmdma_setup);
7093EXPORT_SYMBOL_GPL(ata_bmdma_start);
7094EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
7095EXPORT_SYMBOL_GPL(ata_bmdma_status);
7096EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09007097EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
7098EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
7099EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh);
7100EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
7101EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00007103EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09007104EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heo936fd732007-08-06 18:36:23 +09007105EXPORT_SYMBOL_GPL(sata_link_debounce);
7106EXPORT_SYMBOL_GPL(sata_link_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107EXPORT_SYMBOL_GPL(sata_phy_reset);
7108EXPORT_SYMBOL_GPL(__sata_phy_reset);
7109EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09007110EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007111EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heocc0680a2007-08-06 18:36:23 +09007112EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007113EXPORT_SYMBOL_GPL(sata_std_hardreset);
7114EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05007115EXPORT_SYMBOL_GPL(ata_dev_classify);
7116EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04007118EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09007119EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09007120EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heod4b2bab2007-02-02 16:50:52 +09007121EXPORT_SYMBOL_GPL(ata_wait_ready);
Tejun Heo86e45b62006-03-05 15:29:09 +09007122EXPORT_SYMBOL_GPL(ata_port_queue_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
7124EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007125EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09007126EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09007127EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007128EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09007129EXPORT_SYMBOL_GPL(sata_scr_valid);
7130EXPORT_SYMBOL_GPL(sata_scr_read);
7131EXPORT_SYMBOL_GPL(sata_scr_write);
7132EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09007133EXPORT_SYMBOL_GPL(ata_link_online);
7134EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007135#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04007136EXPORT_SYMBOL_GPL(ata_host_suspend);
7137EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007138#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09007139EXPORT_SYMBOL_GPL(ata_id_string);
7140EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan10305f02007-02-20 18:01:59 +00007141EXPORT_SYMBOL_GPL(ata_id_to_dma_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142EXPORT_SYMBOL_GPL(ata_scsi_simulate);
7143
Alan Cox1bc4ccf2006-01-09 17:18:14 +00007144EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Alan Cox452503f2005-10-21 19:01:32 -04007145EXPORT_SYMBOL_GPL(ata_timing_compute);
7146EXPORT_SYMBOL_GPL(ata_timing_merge);
7147
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148#ifdef CONFIG_PCI
7149EXPORT_SYMBOL_GPL(pci_test_config_bits);
Tejun Heod583bc12007-07-04 18:02:07 +09007150EXPORT_SYMBOL_GPL(ata_pci_init_sff_host);
Tejun Heo1626aeb2007-05-04 12:43:58 +02007151EXPORT_SYMBOL_GPL(ata_pci_init_bmdma);
Tejun Heod583bc12007-07-04 18:02:07 +09007152EXPORT_SYMBOL_GPL(ata_pci_prepare_sff_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153EXPORT_SYMBOL_GPL(ata_pci_init_one);
7154EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007155#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09007156EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
7157EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01007158EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
7159EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007160#endif /* CONFIG_PM */
Alan Cox67951ad2006-03-22 15:55:54 +00007161EXPORT_SYMBOL_GPL(ata_pci_default_filter);
7162EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01007164
Tejun Heob64bbc32007-07-16 14:29:39 +09007165EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
7166EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
7167EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09007168EXPORT_SYMBOL_GPL(ata_port_desc);
7169#ifdef CONFIG_PCI
7170EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
7171#endif /* CONFIG_PCI */
Tejun Heoece1d632006-04-02 18:51:53 +09007172EXPORT_SYMBOL_GPL(ata_eng_timeout);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007173EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09007174EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09007175EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09007176EXPORT_SYMBOL_GPL(ata_port_freeze);
7177EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
7178EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09007179EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
7180EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09007181EXPORT_SYMBOL_GPL(ata_do_eh);
Akira Iguchi836250062007-01-26 16:27:32 +09007182EXPORT_SYMBOL_GPL(ata_irq_on);
Akira Iguchia619f981b2007-01-26 16:28:18 +09007183EXPORT_SYMBOL_GPL(ata_dev_try_classify);
Alan Coxbe0d18d2007-03-06 02:37:56 -08007184
7185EXPORT_SYMBOL_GPL(ata_cable_40wire);
7186EXPORT_SYMBOL_GPL(ata_cable_80wire);
7187EXPORT_SYMBOL_GPL(ata_cable_unknown);
7188EXPORT_SYMBOL_GPL(ata_cable_sata);