]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/ata/libata-core.c
libata: separate PMP support code from core code
[net-next-2.6.git] / drivers / ata / libata-core.c
CommitLineData
1da177e4 1/*
af36d7f0
JG
2 * 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 *
92c52c52
AC
33 * Standards documents from:
34 * http://www.t13.org (ATA standards, PCI DMA IDE spec)
35 * http://www.t10.org (SCSI MMC - for ATAPI MMC)
36 * http://www.sata-io.org (SATA)
37 * http://www.compactflash.org (CF)
38 * http://www.qic.org (QIC157 - Tape and DSC)
39 * http://www.ce-ata.org (CE-ATA: not supported)
40 *
1da177e4
LT
41 */
42
1da177e4
LT
43#include <linux/kernel.h>
44#include <linux/module.h>
45#include <linux/pci.h>
46#include <linux/init.h>
47#include <linux/list.h>
48#include <linux/mm.h>
1da177e4
LT
49#include <linux/spinlock.h>
50#include <linux/blkdev.h>
51#include <linux/delay.h>
52#include <linux/timer.h>
53#include <linux/interrupt.h>
54#include <linux/completion.h>
55#include <linux/suspend.h>
56#include <linux/workqueue.h>
67846b30 57#include <linux/jiffies.h>
378f058c 58#include <linux/scatterlist.h>
2dcb407e 59#include <linux/io.h>
1da177e4 60#include <scsi/scsi.h>
193515d5 61#include <scsi/scsi_cmnd.h>
1da177e4
LT
62#include <scsi/scsi_host.h>
63#include <linux/libata.h>
1da177e4
LT
64#include <asm/semaphore.h>
65#include <asm/byteorder.h>
140b5e59 66#include <linux/cdrom.h>
1da177e4
LT
67
68#include "libata.h"
69
fda0efc5 70
d7bb4cc7 71/* debounce timing parameters in msecs { interval, duration, timeout } */
e9c83914
TH
72const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
73const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
74const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
d7bb4cc7 75
029cfd6b 76const struct ata_port_operations ata_base_port_ops = {
0aa1113d 77 .prereset = ata_std_prereset,
203c75b8 78 .postreset = ata_std_postreset,
a1efdaba 79 .error_handler = ata_std_error_handler,
029cfd6b
TH
80};
81
82const struct ata_port_operations sata_port_ops = {
83 .inherits = &ata_base_port_ops,
84
85 .qc_defer = ata_std_qc_defer,
57c9efdf 86 .hardreset = sata_std_hardreset,
029cfd6b
TH
87};
88
3373efd8
TH
89static unsigned int ata_dev_init_params(struct ata_device *dev,
90 u16 heads, u16 sectors);
91static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
218f3d30
JG
92static unsigned int ata_dev_set_feature(struct ata_device *dev,
93 u8 enable, u8 feature);
3373efd8 94static void ata_dev_xfermask(struct ata_device *dev);
75683fe7 95static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
1da177e4 96
f3187195 97unsigned int ata_print_id = 1;
1da177e4
LT
98static struct workqueue_struct *ata_wq;
99
453b07ac
TH
100struct workqueue_struct *ata_aux_wq;
101
33267325
TH
102struct ata_force_param {
103 const char *name;
104 unsigned int cbl;
105 int spd_limit;
106 unsigned long xfer_mask;
107 unsigned int horkage_on;
108 unsigned int horkage_off;
109};
110
111struct ata_force_ent {
112 int port;
113 int device;
114 struct ata_force_param param;
115};
116
117static struct ata_force_ent *ata_force_tbl;
118static int ata_force_tbl_size;
119
120static char ata_force_param_buf[PAGE_SIZE] __initdata;
7afb4222
TH
121/* param_buf is thrown away after initialization, disallow read */
122module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0);
33267325
TH
123MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)");
124
418dc1f5 125int atapi_enabled = 1;
1623c81e
JG
126module_param(atapi_enabled, int, 0444);
127MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
128
c5c61bda 129static int atapi_dmadir = 0;
95de719a
AL
130module_param(atapi_dmadir, int, 0444);
131MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
132
baf4fdfa
ML
133int atapi_passthru16 = 1;
134module_param(atapi_passthru16, int, 0444);
135MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
136
c3c013a2
JG
137int libata_fua = 0;
138module_param_named(fua, libata_fua, int, 0444);
139MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
140
2dcb407e 141static int ata_ignore_hpa;
1e999736
AC
142module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
143MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
144
b3a70601
AC
145static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
146module_param_named(dma, libata_dma_mask, int, 0444);
147MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
148
a8601e5f
AM
149static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
150module_param(ata_probe_timeout, int, 0444);
151MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
152
6ebe9d86 153int libata_noacpi = 0;
d7d0dad6 154module_param_named(noacpi, libata_noacpi, int, 0444);
6ebe9d86 155MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set");
11ef697b 156
ae8d4ee7
AC
157int libata_allow_tpm = 0;
158module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
159MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands");
160
1da177e4
LT
161MODULE_AUTHOR("Jeff Garzik");
162MODULE_DESCRIPTION("Library module for ATA devices");
163MODULE_LICENSE("GPL");
164MODULE_VERSION(DRV_VERSION);
165
0baab86b 166
33267325
TH
167/**
168 * ata_force_cbl - force cable type according to libata.force
4cdfa1b3 169 * @ap: ATA port of interest
33267325
TH
170 *
171 * Force cable type according to libata.force and whine about it.
172 * The last entry which has matching port number is used, so it
173 * can be specified as part of device force parameters. For
174 * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
175 * same effect.
176 *
177 * LOCKING:
178 * EH context.
179 */
180void ata_force_cbl(struct ata_port *ap)
181{
182 int i;
183
184 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
185 const struct ata_force_ent *fe = &ata_force_tbl[i];
186
187 if (fe->port != -1 && fe->port != ap->print_id)
188 continue;
189
190 if (fe->param.cbl == ATA_CBL_NONE)
191 continue;
192
193 ap->cbl = fe->param.cbl;
194 ata_port_printk(ap, KERN_NOTICE,
195 "FORCE: cable set to %s\n", fe->param.name);
196 return;
197 }
198}
199
200/**
201 * ata_force_spd_limit - force SATA spd limit according to libata.force
202 * @link: ATA link of interest
203 *
204 * Force SATA spd limit according to libata.force and whine about
205 * it. When only the port part is specified (e.g. 1:), the limit
206 * applies to all links connected to both the host link and all
207 * fan-out ports connected via PMP. If the device part is
208 * specified as 0 (e.g. 1.00:), it specifies the first fan-out
209 * link not the host link. Device number 15 always points to the
210 * host link whether PMP is attached or not.
211 *
212 * LOCKING:
213 * EH context.
214 */
215static void ata_force_spd_limit(struct ata_link *link)
216{
217 int linkno, i;
218
219 if (ata_is_host_link(link))
220 linkno = 15;
221 else
222 linkno = link->pmp;
223
224 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
225 const struct ata_force_ent *fe = &ata_force_tbl[i];
226
227 if (fe->port != -1 && fe->port != link->ap->print_id)
228 continue;
229
230 if (fe->device != -1 && fe->device != linkno)
231 continue;
232
233 if (!fe->param.spd_limit)
234 continue;
235
236 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
237 ata_link_printk(link, KERN_NOTICE,
238 "FORCE: PHY spd limit set to %s\n", fe->param.name);
239 return;
240 }
241}
242
243/**
244 * ata_force_xfermask - force xfermask according to libata.force
245 * @dev: ATA device of interest
246 *
247 * Force xfer_mask according to libata.force and whine about it.
248 * For consistency with link selection, device number 15 selects
249 * the first device connected to the host link.
250 *
251 * LOCKING:
252 * EH context.
253 */
254static void ata_force_xfermask(struct ata_device *dev)
255{
256 int devno = dev->link->pmp + dev->devno;
257 int alt_devno = devno;
258 int i;
259
260 /* allow n.15 for the first device attached to host port */
261 if (ata_is_host_link(dev->link) && devno == 0)
262 alt_devno = 15;
263
264 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
265 const struct ata_force_ent *fe = &ata_force_tbl[i];
266 unsigned long pio_mask, mwdma_mask, udma_mask;
267
268 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
269 continue;
270
271 if (fe->device != -1 && fe->device != devno &&
272 fe->device != alt_devno)
273 continue;
274
275 if (!fe->param.xfer_mask)
276 continue;
277
278 ata_unpack_xfermask(fe->param.xfer_mask,
279 &pio_mask, &mwdma_mask, &udma_mask);
280 if (udma_mask)
281 dev->udma_mask = udma_mask;
282 else if (mwdma_mask) {
283 dev->udma_mask = 0;
284 dev->mwdma_mask = mwdma_mask;
285 } else {
286 dev->udma_mask = 0;
287 dev->mwdma_mask = 0;
288 dev->pio_mask = pio_mask;
289 }
290
291 ata_dev_printk(dev, KERN_NOTICE,
292 "FORCE: xfer_mask set to %s\n", fe->param.name);
293 return;
294 }
295}
296
297/**
298 * ata_force_horkage - force horkage according to libata.force
299 * @dev: ATA device of interest
300 *
301 * Force horkage according to libata.force and whine about it.
302 * For consistency with link selection, device number 15 selects
303 * the first device connected to the host link.
304 *
305 * LOCKING:
306 * EH context.
307 */
308static void ata_force_horkage(struct ata_device *dev)
309{
310 int devno = dev->link->pmp + dev->devno;
311 int alt_devno = devno;
312 int i;
313
314 /* allow n.15 for the first device attached to host port */
315 if (ata_is_host_link(dev->link) && devno == 0)
316 alt_devno = 15;
317
318 for (i = 0; i < ata_force_tbl_size; i++) {
319 const struct ata_force_ent *fe = &ata_force_tbl[i];
320
321 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
322 continue;
323
324 if (fe->device != -1 && fe->device != devno &&
325 fe->device != alt_devno)
326 continue;
327
328 if (!(~dev->horkage & fe->param.horkage_on) &&
329 !(dev->horkage & fe->param.horkage_off))
330 continue;
331
332 dev->horkage |= fe->param.horkage_on;
333 dev->horkage &= ~fe->param.horkage_off;
334
335 ata_dev_printk(dev, KERN_NOTICE,
336 "FORCE: horkage modified (%s)\n", fe->param.name);
337 }
338}
339
436d34b3
TH
340/**
341 * atapi_cmd_type - Determine ATAPI command type from SCSI opcode
342 * @opcode: SCSI opcode
343 *
344 * Determine ATAPI command type from @opcode.
345 *
346 * LOCKING:
347 * None.
348 *
349 * RETURNS:
350 * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
351 */
352int atapi_cmd_type(u8 opcode)
353{
354 switch (opcode) {
355 case GPCMD_READ_10:
356 case GPCMD_READ_12:
357 return ATAPI_READ;
358
359 case GPCMD_WRITE_10:
360 case GPCMD_WRITE_12:
361 case GPCMD_WRITE_AND_VERIFY_10:
362 return ATAPI_WRITE;
363
364 case GPCMD_READ_CD:
365 case GPCMD_READ_CD_MSF:
366 return ATAPI_READ_CD;
367
e52dcc48
TH
368 case ATA_16:
369 case ATA_12:
370 if (atapi_passthru16)
371 return ATAPI_PASS_THRU;
372 /* fall thru */
436d34b3
TH
373 default:
374 return ATAPI_MISC;
375 }
376}
377
1da177e4
LT
378/**
379 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
380 * @tf: Taskfile to convert
1da177e4 381 * @pmp: Port multiplier port
9977126c
TH
382 * @is_cmd: This FIS is for command
383 * @fis: Buffer into which data will output
1da177e4
LT
384 *
385 * Converts a standard ATA taskfile to a Serial ATA
386 * FIS structure (Register - Host to Device).
387 *
388 * LOCKING:
389 * Inherited from caller.
390 */
9977126c 391void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
1da177e4 392{
9977126c
TH
393 fis[0] = 0x27; /* Register - Host to Device FIS */
394 fis[1] = pmp & 0xf; /* Port multiplier number*/
395 if (is_cmd)
396 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
397
1da177e4
LT
398 fis[2] = tf->command;
399 fis[3] = tf->feature;
400
401 fis[4] = tf->lbal;
402 fis[5] = tf->lbam;
403 fis[6] = tf->lbah;
404 fis[7] = tf->device;
405
406 fis[8] = tf->hob_lbal;
407 fis[9] = tf->hob_lbam;
408 fis[10] = tf->hob_lbah;
409 fis[11] = tf->hob_feature;
410
411 fis[12] = tf->nsect;
412 fis[13] = tf->hob_nsect;
413 fis[14] = 0;
414 fis[15] = tf->ctl;
415
416 fis[16] = 0;
417 fis[17] = 0;
418 fis[18] = 0;
419 fis[19] = 0;
420}
421
422/**
423 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
424 * @fis: Buffer from which data will be input
425 * @tf: Taskfile to output
426 *
e12a1be6 427 * Converts a serial ATA FIS structure to a standard ATA taskfile.
1da177e4
LT
428 *
429 * LOCKING:
430 * Inherited from caller.
431 */
432
057ace5e 433void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
1da177e4
LT
434{
435 tf->command = fis[2]; /* status */
436 tf->feature = fis[3]; /* error */
437
438 tf->lbal = fis[4];
439 tf->lbam = fis[5];
440 tf->lbah = fis[6];
441 tf->device = fis[7];
442
443 tf->hob_lbal = fis[8];
444 tf->hob_lbam = fis[9];
445 tf->hob_lbah = fis[10];
446
447 tf->nsect = fis[12];
448 tf->hob_nsect = fis[13];
449}
450
8cbd6df1
AL
451static const u8 ata_rw_cmds[] = {
452 /* pio multi */
453 ATA_CMD_READ_MULTI,
454 ATA_CMD_WRITE_MULTI,
455 ATA_CMD_READ_MULTI_EXT,
456 ATA_CMD_WRITE_MULTI_EXT,
9a3dccc4
TH
457 0,
458 0,
459 0,
460 ATA_CMD_WRITE_MULTI_FUA_EXT,
8cbd6df1
AL
461 /* pio */
462 ATA_CMD_PIO_READ,
463 ATA_CMD_PIO_WRITE,
464 ATA_CMD_PIO_READ_EXT,
465 ATA_CMD_PIO_WRITE_EXT,
9a3dccc4
TH
466 0,
467 0,
468 0,
469 0,
8cbd6df1
AL
470 /* dma */
471 ATA_CMD_READ,
472 ATA_CMD_WRITE,
473 ATA_CMD_READ_EXT,
9a3dccc4
TH
474 ATA_CMD_WRITE_EXT,
475 0,
476 0,
477 0,
478 ATA_CMD_WRITE_FUA_EXT
8cbd6df1 479};
1da177e4
LT
480
481/**
8cbd6df1 482 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
bd056d7e
TH
483 * @tf: command to examine and configure
484 * @dev: device tf belongs to
1da177e4 485 *
2e9edbf8 486 * Examine the device configuration and tf->flags to calculate
8cbd6df1 487 * the proper read/write commands and protocol to use.
1da177e4
LT
488 *
489 * LOCKING:
490 * caller.
491 */
bd056d7e 492static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
1da177e4 493{
9a3dccc4 494 u8 cmd;
1da177e4 495
9a3dccc4 496 int index, fua, lba48, write;
2e9edbf8 497
9a3dccc4 498 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
8cbd6df1
AL
499 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
500 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
1da177e4 501
8cbd6df1
AL
502 if (dev->flags & ATA_DFLAG_PIO) {
503 tf->protocol = ATA_PROT_PIO;
9a3dccc4 504 index = dev->multi_count ? 0 : 8;
9af5c9c9 505 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
8d238e01
AC
506 /* Unable to use DMA due to host limitation */
507 tf->protocol = ATA_PROT_PIO;
0565c26d 508 index = dev->multi_count ? 0 : 8;
8cbd6df1
AL
509 } else {
510 tf->protocol = ATA_PROT_DMA;
9a3dccc4 511 index = 16;
8cbd6df1 512 }
1da177e4 513
9a3dccc4
TH
514 cmd = ata_rw_cmds[index + fua + lba48 + write];
515 if (cmd) {
516 tf->command = cmd;
517 return 0;
518 }
519 return -1;
1da177e4
LT
520}
521
35b649fe
TH
522/**
523 * ata_tf_read_block - Read block address from ATA taskfile
524 * @tf: ATA taskfile of interest
525 * @dev: ATA device @tf belongs to
526 *
527 * LOCKING:
528 * None.
529 *
530 * Read block address from @tf. This function can handle all
531 * three address formats - LBA, LBA48 and CHS. tf->protocol and
532 * flags select the address format to use.
533 *
534 * RETURNS:
535 * Block address read from @tf.
536 */
537u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
538{
539 u64 block = 0;
540
541 if (tf->flags & ATA_TFLAG_LBA) {
542 if (tf->flags & ATA_TFLAG_LBA48) {
543 block |= (u64)tf->hob_lbah << 40;
544 block |= (u64)tf->hob_lbam << 32;
545 block |= tf->hob_lbal << 24;
546 } else
547 block |= (tf->device & 0xf) << 24;
548
549 block |= tf->lbah << 16;
550 block |= tf->lbam << 8;
551 block |= tf->lbal;
552 } else {
553 u32 cyl, head, sect;
554
555 cyl = tf->lbam | (tf->lbah << 8);
556 head = tf->device & 0xf;
557 sect = tf->lbal;
558
559 block = (cyl * dev->heads + head) * dev->sectors + sect;
560 }
561
562 return block;
563}
564
bd056d7e
TH
565/**
566 * ata_build_rw_tf - Build ATA taskfile for given read/write request
567 * @tf: Target ATA taskfile
568 * @dev: ATA device @tf belongs to
569 * @block: Block address
570 * @n_block: Number of blocks
571 * @tf_flags: RW/FUA etc...
572 * @tag: tag
573 *
574 * LOCKING:
575 * None.
576 *
577 * Build ATA taskfile @tf for read/write request described by
578 * @block, @n_block, @tf_flags and @tag on @dev.
579 *
580 * RETURNS:
581 *
582 * 0 on success, -ERANGE if the request is too large for @dev,
583 * -EINVAL if the request is invalid.
584 */
585int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
586 u64 block, u32 n_block, unsigned int tf_flags,
587 unsigned int tag)
588{
589 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
590 tf->flags |= tf_flags;
591
6d1245bf 592 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
bd056d7e
TH
593 /* yay, NCQ */
594 if (!lba_48_ok(block, n_block))
595 return -ERANGE;
596
597 tf->protocol = ATA_PROT_NCQ;
598 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
599
600 if (tf->flags & ATA_TFLAG_WRITE)
601 tf->command = ATA_CMD_FPDMA_WRITE;
602 else
603 tf->command = ATA_CMD_FPDMA_READ;
604
605 tf->nsect = tag << 3;
606 tf->hob_feature = (n_block >> 8) & 0xff;
607 tf->feature = n_block & 0xff;
608
609 tf->hob_lbah = (block >> 40) & 0xff;
610 tf->hob_lbam = (block >> 32) & 0xff;
611 tf->hob_lbal = (block >> 24) & 0xff;
612 tf->lbah = (block >> 16) & 0xff;
613 tf->lbam = (block >> 8) & 0xff;
614 tf->lbal = block & 0xff;
615
616 tf->device = 1 << 6;
617 if (tf->flags & ATA_TFLAG_FUA)
618 tf->device |= 1 << 7;
619 } else if (dev->flags & ATA_DFLAG_LBA) {
620 tf->flags |= ATA_TFLAG_LBA;
621
622 if (lba_28_ok(block, n_block)) {
623 /* use LBA28 */
624 tf->device |= (block >> 24) & 0xf;
625 } else if (lba_48_ok(block, n_block)) {
626 if (!(dev->flags & ATA_DFLAG_LBA48))
627 return -ERANGE;
628
629 /* use LBA48 */
630 tf->flags |= ATA_TFLAG_LBA48;
631
632 tf->hob_nsect = (n_block >> 8) & 0xff;
633
634 tf->hob_lbah = (block >> 40) & 0xff;
635 tf->hob_lbam = (block >> 32) & 0xff;
636 tf->hob_lbal = (block >> 24) & 0xff;
637 } else
638 /* request too large even for LBA48 */
639 return -ERANGE;
640
641 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
642 return -EINVAL;
643
644 tf->nsect = n_block & 0xff;
645
646 tf->lbah = (block >> 16) & 0xff;
647 tf->lbam = (block >> 8) & 0xff;
648 tf->lbal = block & 0xff;
649
650 tf->device |= ATA_LBA;
651 } else {
652 /* CHS */
653 u32 sect, head, cyl, track;
654
655 /* The request -may- be too large for CHS addressing. */
656 if (!lba_28_ok(block, n_block))
657 return -ERANGE;
658
659 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
660 return -EINVAL;
661
662 /* Convert LBA to CHS */
663 track = (u32)block / dev->sectors;
664 cyl = track / dev->heads;
665 head = track % dev->heads;
666 sect = (u32)block % dev->sectors + 1;
667
668 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
669 (u32)block, track, cyl, head, sect);
670
671 /* Check whether the converted CHS can fit.
672 Cylinder: 0-65535
673 Head: 0-15
674 Sector: 1-255*/
675 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
676 return -ERANGE;
677
678 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
679 tf->lbal = sect;
680 tf->lbam = cyl;
681 tf->lbah = cyl >> 8;
682 tf->device |= head;
683 }
684
685 return 0;
686}
687
cb95d562
TH
688/**
689 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
690 * @pio_mask: pio_mask
691 * @mwdma_mask: mwdma_mask
692 * @udma_mask: udma_mask
693 *
694 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
695 * unsigned int xfer_mask.
696 *
697 * LOCKING:
698 * None.
699 *
700 * RETURNS:
701 * Packed xfer_mask.
702 */
7dc951ae
TH
703unsigned long ata_pack_xfermask(unsigned long pio_mask,
704 unsigned long mwdma_mask,
705 unsigned long udma_mask)
cb95d562
TH
706{
707 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
708 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
709 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
710}
711
c0489e4e
TH
712/**
713 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
714 * @xfer_mask: xfer_mask to unpack
715 * @pio_mask: resulting pio_mask
716 * @mwdma_mask: resulting mwdma_mask
717 * @udma_mask: resulting udma_mask
718 *
719 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
720 * Any NULL distination masks will be ignored.
721 */
7dc951ae
TH
722void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
723 unsigned long *mwdma_mask, unsigned long *udma_mask)
c0489e4e
TH
724{
725 if (pio_mask)
726 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
727 if (mwdma_mask)
728 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
729 if (udma_mask)
730 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
731}
732
cb95d562 733static const struct ata_xfer_ent {
be9a50c8 734 int shift, bits;
cb95d562
TH
735 u8 base;
736} ata_xfer_tbl[] = {
70cd071e
TH
737 { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
738 { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
739 { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
cb95d562
TH
740 { -1, },
741};
742
743/**
744 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
745 * @xfer_mask: xfer_mask of interest
746 *
747 * Return matching XFER_* value for @xfer_mask. Only the highest
748 * bit of @xfer_mask is considered.
749 *
750 * LOCKING:
751 * None.
752 *
753 * RETURNS:
70cd071e 754 * Matching XFER_* value, 0xff if no match found.
cb95d562 755 */
7dc951ae 756u8 ata_xfer_mask2mode(unsigned long xfer_mask)
cb95d562
TH
757{
758 int highbit = fls(xfer_mask) - 1;
759 const struct ata_xfer_ent *ent;
760
761 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
762 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
763 return ent->base + highbit - ent->shift;
70cd071e 764 return 0xff;
cb95d562
TH
765}
766
767/**
768 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
769 * @xfer_mode: XFER_* of interest
770 *
771 * Return matching xfer_mask for @xfer_mode.
772 *
773 * LOCKING:
774 * None.
775 *
776 * RETURNS:
777 * Matching xfer_mask, 0 if no match found.
778 */
7dc951ae 779unsigned long ata_xfer_mode2mask(u8 xfer_mode)
cb95d562
TH
780{
781 const struct ata_xfer_ent *ent;
782
783 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
784 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
70cd071e
TH
785 return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
786 & ~((1 << ent->shift) - 1);
cb95d562
TH
787 return 0;
788}
789
790/**
791 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
792 * @xfer_mode: XFER_* of interest
793 *
794 * Return matching xfer_shift for @xfer_mode.
795 *
796 * LOCKING:
797 * None.
798 *
799 * RETURNS:
800 * Matching xfer_shift, -1 if no match found.
801 */
7dc951ae 802int ata_xfer_mode2shift(unsigned long xfer_mode)
cb95d562
TH
803{
804 const struct ata_xfer_ent *ent;
805
806 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
807 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
808 return ent->shift;
809 return -1;
810}
811
1da177e4 812/**
1da7b0d0
TH
813 * ata_mode_string - convert xfer_mask to string
814 * @xfer_mask: mask of bits supported; only highest bit counts.
1da177e4
LT
815 *
816 * Determine string which represents the highest speed
1da7b0d0 817 * (highest bit in @modemask).
1da177e4
LT
818 *
819 * LOCKING:
820 * None.
821 *
822 * RETURNS:
823 * Constant C string representing highest speed listed in
1da7b0d0 824 * @mode_mask, or the constant C string "<n/a>".
1da177e4 825 */
7dc951ae 826const char *ata_mode_string(unsigned long xfer_mask)
1da177e4 827{
75f554bc
TH
828 static const char * const xfer_mode_str[] = {
829 "PIO0",
830 "PIO1",
831 "PIO2",
832 "PIO3",
833 "PIO4",
b352e57d
AC
834 "PIO5",
835 "PIO6",
75f554bc
TH
836 "MWDMA0",
837 "MWDMA1",
838 "MWDMA2",
b352e57d
AC
839 "MWDMA3",
840 "MWDMA4",
75f554bc
TH
841 "UDMA/16",
842 "UDMA/25",
843 "UDMA/33",
844 "UDMA/44",
845 "UDMA/66",
846 "UDMA/100",
847 "UDMA/133",
848 "UDMA7",
849 };
1da7b0d0 850 int highbit;
1da177e4 851
1da7b0d0
TH
852 highbit = fls(xfer_mask) - 1;
853 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
854 return xfer_mode_str[highbit];
1da177e4 855 return "<n/a>";
1da177e4
LT
856}
857
4c360c81
TH
858static const char *sata_spd_string(unsigned int spd)
859{
860 static const char * const spd_str[] = {
861 "1.5 Gbps",
862 "3.0 Gbps",
863 };
864
865 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
866 return "<unknown>";
867 return spd_str[spd - 1];
868}
869
3373efd8 870void ata_dev_disable(struct ata_device *dev)
0b8efb0a 871{
09d7f9b0 872 if (ata_dev_enabled(dev)) {
9af5c9c9 873 if (ata_msg_drv(dev->link->ap))
09d7f9b0 874 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
562f0c2d 875 ata_acpi_on_disable(dev);
4ae72a1e
TH
876 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
877 ATA_DNXFER_QUIET);
0b8efb0a
TH
878 dev->class++;
879 }
880}
881
ca77329f
KCA
882static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
883{
884 struct ata_link *link = dev->link;
885 struct ata_port *ap = link->ap;
886 u32 scontrol;
887 unsigned int err_mask;
888 int rc;
889
890 /*
891 * disallow DIPM for drivers which haven't set
892 * ATA_FLAG_IPM. This is because when DIPM is enabled,
893 * phy ready will be set in the interrupt status on
894 * state changes, which will cause some drivers to
895 * think there are errors - additionally drivers will
896 * need to disable hot plug.
897 */
898 if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) {
899 ap->pm_policy = NOT_AVAILABLE;
900 return -EINVAL;
901 }
902
903 /*
904 * For DIPM, we will only enable it for the
905 * min_power setting.
906 *
907 * Why? Because Disks are too stupid to know that
908 * If the host rejects a request to go to SLUMBER
909 * they should retry at PARTIAL, and instead it
910 * just would give up. So, for medium_power to
911 * work at all, we need to only allow HIPM.
912 */
913 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
914 if (rc)
915 return rc;
916
917 switch (policy) {
918 case MIN_POWER:
919 /* no restrictions on IPM transitions */
920 scontrol &= ~(0x3 << 8);
921 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
922 if (rc)
923 return rc;
924
925 /* enable DIPM */
926 if (dev->flags & ATA_DFLAG_DIPM)
927 err_mask = ata_dev_set_feature(dev,
928 SETFEATURES_SATA_ENABLE, SATA_DIPM);
929 break;
930 case MEDIUM_POWER:
931 /* allow IPM to PARTIAL */
932 scontrol &= ~(0x1 << 8);
933 scontrol |= (0x2 << 8);
934 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
935 if (rc)
936 return rc;
937
f5456b63
KCA
938 /*
939 * we don't have to disable DIPM since IPM flags
940 * disallow transitions to SLUMBER, which effectively
941 * disable DIPM if it does not support PARTIAL
942 */
ca77329f
KCA
943 break;
944 case NOT_AVAILABLE:
945 case MAX_PERFORMANCE:
946 /* disable all IPM transitions */
947 scontrol |= (0x3 << 8);
948 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
949 if (rc)
950 return rc;
951
f5456b63
KCA
952 /*
953 * we don't have to disable DIPM since IPM flags
954 * disallow all transitions which effectively
955 * disable DIPM anyway.
956 */
ca77329f
KCA
957 break;
958 }
959
960 /* FIXME: handle SET FEATURES failure */
961 (void) err_mask;
962
963 return 0;
964}
965
966/**
967 * ata_dev_enable_pm - enable SATA interface power management
48166fd9
SH
968 * @dev: device to enable power management
969 * @policy: the link power management policy
ca77329f
KCA
970 *
971 * Enable SATA Interface power management. This will enable
972 * Device Interface Power Management (DIPM) for min_power
973 * policy, and then call driver specific callbacks for
974 * enabling Host Initiated Power management.
975 *
976 * Locking: Caller.
977 * Returns: -EINVAL if IPM is not supported, 0 otherwise.
978 */
979void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy)
980{
981 int rc = 0;
982 struct ata_port *ap = dev->link->ap;
983
984 /* set HIPM first, then DIPM */
985 if (ap->ops->enable_pm)
986 rc = ap->ops->enable_pm(ap, policy);
987 if (rc)
988 goto enable_pm_out;
989 rc = ata_dev_set_dipm(dev, policy);
990
991enable_pm_out:
992 if (rc)
993 ap->pm_policy = MAX_PERFORMANCE;
994 else
995 ap->pm_policy = policy;
996 return /* rc */; /* hopefully we can use 'rc' eventually */
997}
998
1992a5ed 999#ifdef CONFIG_PM
ca77329f
KCA
1000/**
1001 * ata_dev_disable_pm - disable SATA interface power management
48166fd9 1002 * @dev: device to disable power management
ca77329f
KCA
1003 *
1004 * Disable SATA Interface power management. This will disable
1005 * Device Interface Power Management (DIPM) without changing
1006 * policy, call driver specific callbacks for disabling Host
1007 * Initiated Power management.
1008 *
1009 * Locking: Caller.
1010 * Returns: void
1011 */
1012static void ata_dev_disable_pm(struct ata_device *dev)
1013{
1014 struct ata_port *ap = dev->link->ap;
1015
1016 ata_dev_set_dipm(dev, MAX_PERFORMANCE);
1017 if (ap->ops->disable_pm)
1018 ap->ops->disable_pm(ap);
1019}
1992a5ed 1020#endif /* CONFIG_PM */
ca77329f
KCA
1021
1022void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy)
1023{
1024 ap->pm_policy = policy;
3ec25ebd 1025 ap->link.eh_info.action |= ATA_EH_LPM;
ca77329f
KCA
1026 ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY;
1027 ata_port_schedule_eh(ap);
1028}
1029
1992a5ed 1030#ifdef CONFIG_PM
ca77329f
KCA
1031static void ata_lpm_enable(struct ata_host *host)
1032{
1033 struct ata_link *link;
1034 struct ata_port *ap;
1035 struct ata_device *dev;
1036 int i;
1037
1038 for (i = 0; i < host->n_ports; i++) {
1039 ap = host->ports[i];
1040 ata_port_for_each_link(link, ap) {
1041 ata_link_for_each_dev(dev, link)
1042 ata_dev_disable_pm(dev);
1043 }
1044 }
1045}
1046
1047static void ata_lpm_disable(struct ata_host *host)
1048{
1049 int i;
1050
1051 for (i = 0; i < host->n_ports; i++) {
1052 struct ata_port *ap = host->ports[i];
1053 ata_lpm_schedule(ap, ap->pm_policy);
1054 }
1055}
1992a5ed 1056#endif /* CONFIG_PM */
ca77329f 1057
1da177e4
LT
1058/**
1059 * ata_dev_classify - determine device type based on ATA-spec signature
1060 * @tf: ATA taskfile register set for device to be identified
1061 *
1062 * Determine from taskfile register contents whether a device is
1063 * ATA or ATAPI, as per "Signature and persistence" section
1064 * of ATA/PI spec (volume 1, sect 5.14).
1065 *
1066 * LOCKING:
1067 * None.
1068 *
1069 * RETURNS:
633273a3
TH
1070 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
1071 * %ATA_DEV_UNKNOWN the event of failure.
1da177e4 1072 */
057ace5e 1073unsigned int ata_dev_classify(const struct ata_taskfile *tf)
1da177e4
LT
1074{
1075 /* Apple's open source Darwin code hints that some devices only
1076 * put a proper signature into the LBA mid/high registers,
1077 * So, we only check those. It's sufficient for uniqueness.
633273a3
TH
1078 *
1079 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1080 * signatures for ATA and ATAPI devices attached on SerialATA,
1081 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
1082 * spec has never mentioned about using different signatures
1083 * for ATA/ATAPI devices. Then, Serial ATA II: Port
1084 * Multiplier specification began to use 0x69/0x96 to identify
1085 * port multpliers and 0x3c/0xc3 to identify SEMB device.
1086 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1087 * 0x69/0x96 shortly and described them as reserved for
1088 * SerialATA.
1089 *
1090 * We follow the current spec and consider that 0x69/0x96
1091 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
1da177e4 1092 */
633273a3 1093 if ((tf->lbam == 0) && (tf->lbah == 0)) {
1da177e4
LT
1094 DPRINTK("found ATA device by sig\n");
1095 return ATA_DEV_ATA;
1096 }
1097
633273a3 1098 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
1da177e4
LT
1099 DPRINTK("found ATAPI device by sig\n");
1100 return ATA_DEV_ATAPI;
1101 }
1102
633273a3
TH
1103 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1104 DPRINTK("found PMP device by sig\n");
1105 return ATA_DEV_PMP;
1106 }
1107
1108 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
2dcb407e 1109 printk(KERN_INFO "ata: SEMB device ignored\n");
633273a3
TH
1110 return ATA_DEV_SEMB_UNSUP; /* not yet */
1111 }
1112
1da177e4
LT
1113 DPRINTK("unknown device\n");
1114 return ATA_DEV_UNKNOWN;
1115}
1116
1da177e4 1117/**
6a62a04d 1118 * ata_id_string - Convert IDENTIFY DEVICE page into string
1da177e4
LT
1119 * @id: IDENTIFY DEVICE results we will examine
1120 * @s: string into which data is output
1121 * @ofs: offset into identify device page
1122 * @len: length of string to return. must be an even number.
1123 *
1124 * The strings in the IDENTIFY DEVICE page are broken up into
1125 * 16-bit chunks. Run through the string, and output each
1126 * 8-bit chunk linearly, regardless of platform.
1127 *
1128 * LOCKING:
1129 * caller.
1130 */
1131
6a62a04d
TH
1132void ata_id_string(const u16 *id, unsigned char *s,
1133 unsigned int ofs, unsigned int len)
1da177e4
LT
1134{
1135 unsigned int c;
1136
1137 while (len > 0) {
1138 c = id[ofs] >> 8;
1139 *s = c;
1140 s++;
1141
1142 c = id[ofs] & 0xff;
1143 *s = c;
1144 s++;
1145
1146 ofs++;
1147 len -= 2;
1148 }
1149}
1150
0e949ff3 1151/**
6a62a04d 1152 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
0e949ff3
TH
1153 * @id: IDENTIFY DEVICE results we will examine
1154 * @s: string into which data is output
1155 * @ofs: offset into identify device page
1156 * @len: length of string to return. must be an odd number.
1157 *
6a62a04d 1158 * This function is identical to ata_id_string except that it
0e949ff3
TH
1159 * trims trailing spaces and terminates the resulting string with
1160 * null. @len must be actual maximum length (even number) + 1.
1161 *
1162 * LOCKING:
1163 * caller.
1164 */
6a62a04d
TH
1165void ata_id_c_string(const u16 *id, unsigned char *s,
1166 unsigned int ofs, unsigned int len)
0e949ff3
TH
1167{
1168 unsigned char *p;
1169
1170 WARN_ON(!(len & 1));
1171
6a62a04d 1172 ata_id_string(id, s, ofs, len - 1);
0e949ff3
TH
1173
1174 p = s + strnlen(s, len - 1);
1175 while (p > s && p[-1] == ' ')
1176 p--;
1177 *p = '\0';
1178}
0baab86b 1179
db6f8759
TH
1180static u64 ata_id_n_sectors(const u16 *id)
1181{
1182 if (ata_id_has_lba(id)) {
1183 if (ata_id_has_lba48(id))
1184 return ata_id_u64(id, 100);
1185 else
1186 return ata_id_u32(id, 60);
1187 } else {
1188 if (ata_id_current_chs_valid(id))
1189 return ata_id_u32(id, 57);
1190 else
1191 return id[1] * id[3] * id[6];
1192 }
1193}
1194
a5987e0a 1195u64 ata_tf_to_lba48(const struct ata_taskfile *tf)
1e999736
AC
1196{
1197 u64 sectors = 0;
1198
1199 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1200 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
1201 sectors |= (tf->hob_lbal & 0xff) << 24;
1202 sectors |= (tf->lbah & 0xff) << 16;
1203 sectors |= (tf->lbam & 0xff) << 8;
1204 sectors |= (tf->lbal & 0xff);
1205
a5987e0a 1206 return sectors;
1e999736
AC
1207}
1208
a5987e0a 1209u64 ata_tf_to_lba(const struct ata_taskfile *tf)
1e999736
AC
1210{
1211 u64 sectors = 0;
1212
1213 sectors |= (tf->device & 0x0f) << 24;
1214 sectors |= (tf->lbah & 0xff) << 16;
1215 sectors |= (tf->lbam & 0xff) << 8;
1216 sectors |= (tf->lbal & 0xff);
1217
a5987e0a 1218 return sectors;
1e999736
AC
1219}
1220
1221/**
c728a914
TH
1222 * ata_read_native_max_address - Read native max address
1223 * @dev: target device
1224 * @max_sectors: out parameter for the result native max address
1e999736 1225 *
c728a914
TH
1226 * Perform an LBA48 or LBA28 native size query upon the device in
1227 * question.
1e999736 1228 *
c728a914
TH
1229 * RETURNS:
1230 * 0 on success, -EACCES if command is aborted by the drive.
1231 * -EIO on other errors.
1e999736 1232 */
c728a914 1233static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
1e999736 1234{
c728a914 1235 unsigned int err_mask;
1e999736 1236 struct ata_taskfile tf;
c728a914 1237 int lba48 = ata_id_has_lba48(dev->id);
1e999736
AC
1238
1239 ata_tf_init(dev, &tf);
1240
c728a914 1241 /* always clear all address registers */
1e999736 1242 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
1e999736 1243
c728a914
TH
1244 if (lba48) {
1245 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1246 tf.flags |= ATA_TFLAG_LBA48;
1247 } else
1248 tf.command = ATA_CMD_READ_NATIVE_MAX;
1e999736 1249
1e999736 1250 tf.protocol |= ATA_PROT_NODATA;
c728a914
TH
1251 tf.device |= ATA_LBA;
1252
2b789108 1253 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
c728a914
TH
1254 if (err_mask) {
1255 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
1256 "max address (err_mask=0x%x)\n", err_mask);
1257 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1258 return -EACCES;
1259 return -EIO;
1260 }
1e999736 1261
c728a914 1262 if (lba48)
a5987e0a 1263 *max_sectors = ata_tf_to_lba48(&tf) + 1;
c728a914 1264 else
a5987e0a 1265 *max_sectors = ata_tf_to_lba(&tf) + 1;
2dcb407e 1266 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
93328e11 1267 (*max_sectors)--;
c728a914 1268 return 0;
1e999736
AC
1269}
1270
1271/**
c728a914
TH
1272 * ata_set_max_sectors - Set max sectors
1273 * @dev: target device
6b38d1d1 1274 * @new_sectors: new max sectors value to set for the device
1e999736 1275 *
c728a914
TH
1276 * Set max sectors of @dev to @new_sectors.
1277 *
1278 * RETURNS:
1279 * 0 on success, -EACCES if command is aborted or denied (due to
1280 * previous non-volatile SET_MAX) by the drive. -EIO on other
1281 * errors.
1e999736 1282 */
05027adc 1283static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
1e999736 1284{
c728a914 1285 unsigned int err_mask;
1e999736 1286 struct ata_taskfile tf;
c728a914 1287 int lba48 = ata_id_has_lba48(dev->id);
1e999736
AC
1288
1289 new_sectors--;
1290
1291 ata_tf_init(dev, &tf);
1292
1e999736 1293 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
c728a914
TH
1294
1295 if (lba48) {
1296 tf.command = ATA_CMD_SET_MAX_EXT;
1297 tf.flags |= ATA_TFLAG_LBA48;
1298
1299 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1300 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1301 tf.hob_lbah = (new_sectors >> 40) & 0xff;
1e582ba4 1302 } else {
c728a914
TH
1303 tf.command = ATA_CMD_SET_MAX;
1304
1e582ba4
TH
1305 tf.device |= (new_sectors >> 24) & 0xf;
1306 }
1307
1e999736 1308 tf.protocol |= ATA_PROT_NODATA;
c728a914 1309 tf.device |= ATA_LBA;
1e999736
AC
1310
1311 tf.lbal = (new_sectors >> 0) & 0xff;
1312 tf.lbam = (new_sectors >> 8) & 0xff;
1313 tf.lbah = (new_sectors >> 16) & 0xff;
1e999736 1314
2b789108 1315 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
c728a914
TH
1316 if (err_mask) {
1317 ata_dev_printk(dev, KERN_WARNING, "failed to set "
1318 "max address (err_mask=0x%x)\n", err_mask);
1319 if (err_mask == AC_ERR_DEV &&
1320 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1321 return -EACCES;
1322 return -EIO;
1323 }
1324
c728a914 1325 return 0;
1e999736
AC
1326}
1327
1328/**
1329 * ata_hpa_resize - Resize a device with an HPA set
1330 * @dev: Device to resize
1331 *
1332 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1333 * it if required to the full size of the media. The caller must check
1334 * the drive has the HPA feature set enabled.
05027adc
TH
1335 *
1336 * RETURNS:
1337 * 0 on success, -errno on failure.
1e999736 1338 */
05027adc 1339static int ata_hpa_resize(struct ata_device *dev)
1e999736 1340{
05027adc
TH
1341 struct ata_eh_context *ehc = &dev->link->eh_context;
1342 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1343 u64 sectors = ata_id_n_sectors(dev->id);
1344 u64 native_sectors;
c728a914 1345 int rc;
a617c09f 1346
05027adc
TH
1347 /* do we need to do it? */
1348 if (dev->class != ATA_DEV_ATA ||
1349 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1350 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
c728a914 1351 return 0;
1e999736 1352
05027adc
TH
1353 /* read native max address */
1354 rc = ata_read_native_max_address(dev, &native_sectors);
1355 if (rc) {
dda7aba1
TH
1356 /* If device aborted the command or HPA isn't going to
1357 * be unlocked, skip HPA resizing.
05027adc 1358 */
dda7aba1 1359 if (rc == -EACCES || !ata_ignore_hpa) {
05027adc 1360 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
dda7aba1 1361 "broken, skipping HPA handling\n");
05027adc
TH
1362 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1363
1364 /* we can continue if device aborted the command */
1365 if (rc == -EACCES)
1366 rc = 0;
1e999736 1367 }
37301a55 1368
05027adc
TH
1369 return rc;
1370 }
1371
1372 /* nothing to do? */
1373 if (native_sectors <= sectors || !ata_ignore_hpa) {
1374 if (!print_info || native_sectors == sectors)
1375 return 0;
1376
1377 if (native_sectors > sectors)
1378 ata_dev_printk(dev, KERN_INFO,
1379 "HPA detected: current %llu, native %llu\n",
1380 (unsigned long long)sectors,
1381 (unsigned long long)native_sectors);
1382 else if (native_sectors < sectors)
1383 ata_dev_printk(dev, KERN_WARNING,
1384 "native sectors (%llu) is smaller than "
1385 "sectors (%llu)\n",
1386 (unsigned long long)native_sectors,
1387 (unsigned long long)sectors);
1388 return 0;
1389 }
1390
1391 /* let's unlock HPA */
1392 rc = ata_set_max_sectors(dev, native_sectors);
1393 if (rc == -EACCES) {
1394 /* if device aborted the command, skip HPA resizing */
1395 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1396 "(%llu -> %llu), skipping HPA handling\n",
1397 (unsigned long long)sectors,
1398 (unsigned long long)native_sectors);
1399 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1400 return 0;
1401 } else if (rc)
1402 return rc;
1403
1404 /* re-read IDENTIFY data */
1405 rc = ata_dev_reread_id(dev, 0);
1406 if (rc) {
1407 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1408 "data after HPA resizing\n");
1409 return rc;
1410 }
1411
1412 if (print_info) {
1413 u64 new_sectors = ata_id_n_sectors(dev->id);
1414 ata_dev_printk(dev, KERN_INFO,
1415 "HPA unlocked: %llu -> %llu, native %llu\n",
1416 (unsigned long long)sectors,
1417 (unsigned long long)new_sectors,
1418 (unsigned long long)native_sectors);
1419 }
1420
1421 return 0;
1e999736
AC
1422}
1423
1da177e4
LT
1424/**
1425 * ata_dump_id - IDENTIFY DEVICE info debugging output
0bd3300a 1426 * @id: IDENTIFY DEVICE page to dump
1da177e4 1427 *
0bd3300a
TH
1428 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1429 * page.
1da177e4
LT
1430 *
1431 * LOCKING:
1432 * caller.
1433 */
1434
0bd3300a 1435static inline void ata_dump_id(const u16 *id)
1da177e4
LT
1436{
1437 DPRINTK("49==0x%04x "
1438 "53==0x%04x "
1439 "63==0x%04x "
1440 "64==0x%04x "
1441 "75==0x%04x \n",
0bd3300a
TH
1442 id[49],
1443 id[53],
1444 id[63],
1445 id[64],
1446 id[75]);
1da177e4
LT
1447 DPRINTK("80==0x%04x "
1448 "81==0x%04x "
1449 "82==0x%04x "
1450 "83==0x%04x "
1451 "84==0x%04x \n",
0bd3300a
TH
1452 id[80],
1453 id[81],
1454 id[82],
1455 id[83],
1456 id[84]);
1da177e4
LT
1457 DPRINTK("88==0x%04x "
1458 "93==0x%04x\n",
0bd3300a
TH
1459 id[88],
1460 id[93]);
1da177e4
LT
1461}
1462
cb95d562
TH
1463/**
1464 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1465 * @id: IDENTIFY data to compute xfer mask from
1466 *
1467 * Compute the xfermask for this device. This is not as trivial
1468 * as it seems if we must consider early devices correctly.
1469 *
1470 * FIXME: pre IDE drive timing (do we care ?).
1471 *
1472 * LOCKING:
1473 * None.
1474 *
1475 * RETURNS:
1476 * Computed xfermask
1477 */
7dc951ae 1478unsigned long ata_id_xfermask(const u16 *id)
cb95d562 1479{
7dc951ae 1480 unsigned long pio_mask, mwdma_mask, udma_mask;
cb95d562
TH
1481
1482 /* Usual case. Word 53 indicates word 64 is valid */
1483 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1484 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1485 pio_mask <<= 3;
1486 pio_mask |= 0x7;
1487 } else {
1488 /* If word 64 isn't valid then Word 51 high byte holds
1489 * the PIO timing number for the maximum. Turn it into
1490 * a mask.
1491 */
7a0f1c8a 1492 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
46767aeb 1493 if (mode < 5) /* Valid PIO range */
2dcb407e 1494 pio_mask = (2 << mode) - 1;
46767aeb
AC
1495 else
1496 pio_mask = 1;
cb95d562
TH
1497
1498 /* But wait.. there's more. Design your standards by
1499 * committee and you too can get a free iordy field to
1500 * process. However its the speeds not the modes that
1501 * are supported... Note drivers using the timing API
1502 * will get this right anyway
1503 */
1504 }
1505
1506 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
fb21f0d0 1507
b352e57d
AC
1508 if (ata_id_is_cfa(id)) {
1509 /*
1510 * Process compact flash extended modes
1511 */
1512 int pio = id[163] & 0x7;
1513 int dma = (id[163] >> 3) & 7;
1514
1515 if (pio)
1516 pio_mask |= (1 << 5);
1517 if (pio > 1)
1518 pio_mask |= (1 << 6);
1519 if (dma)
1520 mwdma_mask |= (1 << 3);
1521 if (dma > 1)
1522 mwdma_mask |= (1 << 4);
1523 }
1524
fb21f0d0
TH
1525 udma_mask = 0;
1526 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1527 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
cb95d562
TH
1528
1529 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1530}
1531
86e45b6b 1532/**
442eacc3 1533 * ata_pio_queue_task - Queue port_task
86e45b6b 1534 * @ap: The ata_port to queue port_task for
e2a7f77a 1535 * @fn: workqueue function to be scheduled
65f27f38 1536 * @data: data for @fn to use
e2a7f77a 1537 * @delay: delay time for workqueue function
86e45b6b
TH
1538 *
1539 * Schedule @fn(@data) for execution after @delay jiffies using
1540 * port_task. There is one port_task per port and it's the
1541 * user(low level driver)'s responsibility to make sure that only
1542 * one task is active at any given time.
1543 *
1544 * libata core layer takes care of synchronization between
442eacc3 1545 * port_task and EH. ata_pio_queue_task() may be ignored for EH
86e45b6b
TH
1546 * synchronization.
1547 *
1548 * LOCKING:
1549 * Inherited from caller.
1550 */
624d5c51 1551void ata_pio_queue_task(struct ata_port *ap, void *data, unsigned long delay)
86e45b6b 1552{
65f27f38 1553 ap->port_task_data = data;
86e45b6b 1554
45a66c1c
ON
1555 /* may fail if ata_port_flush_task() in progress */
1556 queue_delayed_work(ata_wq, &ap->port_task, delay);
86e45b6b
TH
1557}
1558
1559/**
1560 * ata_port_flush_task - Flush port_task
1561 * @ap: The ata_port to flush port_task for
1562 *
1563 * After this function completes, port_task is guranteed not to
1564 * be running or scheduled.
1565 *
1566 * LOCKING:
1567 * Kernel thread context (may sleep)
1568 */
1569void ata_port_flush_task(struct ata_port *ap)
1570{
86e45b6b
TH
1571 DPRINTK("ENTER\n");
1572
45a66c1c 1573 cancel_rearming_delayed_work(&ap->port_task);
86e45b6b 1574
0dd4b21f 1575 if (ata_msg_ctl(ap))
7f5e4e8d 1576 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__);
86e45b6b
TH
1577}
1578
7102d230 1579static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
a2a7a662 1580{
77853bf2 1581 struct completion *waiting = qc->private_data;
a2a7a662 1582
a2a7a662 1583 complete(waiting);
a2a7a662
TH
1584}
1585
1586/**
2432697b 1587 * ata_exec_internal_sg - execute libata internal command
a2a7a662
TH
1588 * @dev: Device to which the command is sent
1589 * @tf: Taskfile registers for the command and the result
d69cf37d 1590 * @cdb: CDB for packet command
a2a7a662 1591 * @dma_dir: Data tranfer direction of the command
5c1ad8b3 1592 * @sgl: sg list for the data buffer of the command
2432697b 1593 * @n_elem: Number of sg entries
2b789108 1594 * @timeout: Timeout in msecs (0 for default)
a2a7a662
TH
1595 *
1596 * Executes libata internal command with timeout. @tf contains
1597 * command on entry and result on return. Timeout and error
1598 * conditions are reported via return value. No recovery action
1599 * is taken after a command times out. It's caller's duty to
1600 * clean up after timeout.
1601 *
1602 * LOCKING:
1603 * None. Should be called with kernel context, might sleep.
551e8889
TH
1604 *
1605 * RETURNS:
1606 * Zero on success, AC_ERR_* mask on failure
a2a7a662 1607 */
2432697b
TH
1608unsigned ata_exec_internal_sg(struct ata_device *dev,
1609 struct ata_taskfile *tf, const u8 *cdb,
87260216 1610 int dma_dir, struct scatterlist *sgl,
2b789108 1611 unsigned int n_elem, unsigned long timeout)
a2a7a662 1612{
9af5c9c9
TH
1613 struct ata_link *link = dev->link;
1614 struct ata_port *ap = link->ap;
a2a7a662
TH
1615 u8 command = tf->command;
1616 struct ata_queued_cmd *qc;
2ab7db1f 1617 unsigned int tag, preempted_tag;
dedaf2b0 1618 u32 preempted_sactive, preempted_qc_active;
da917d69 1619 int preempted_nr_active_links;
60be6b9a 1620 DECLARE_COMPLETION_ONSTACK(wait);
a2a7a662 1621 unsigned long flags;
77853bf2 1622 unsigned int err_mask;
d95a717f 1623 int rc;
a2a7a662 1624
ba6a1308 1625 spin_lock_irqsave(ap->lock, flags);
a2a7a662 1626
e3180499 1627 /* no internal command while frozen */
b51e9e5d 1628 if (ap->pflags & ATA_PFLAG_FROZEN) {
ba6a1308 1629 spin_unlock_irqrestore(ap->lock, flags);
e3180499
TH
1630 return AC_ERR_SYSTEM;
1631 }
1632
2ab7db1f 1633 /* initialize internal qc */
a2a7a662 1634
2ab7db1f
TH
1635 /* XXX: Tag 0 is used for drivers with legacy EH as some
1636 * drivers choke if any other tag is given. This breaks
1637 * ata_tag_internal() test for those drivers. Don't use new
1638 * EH stuff without converting to it.
1639 */
1640 if (ap->ops->error_handler)
1641 tag = ATA_TAG_INTERNAL;
1642 else
1643 tag = 0;
1644
6cec4a39 1645 if (test_and_set_bit(tag, &ap->qc_allocated))
2ab7db1f 1646 BUG();
f69499f4 1647 qc = __ata_qc_from_tag(ap, tag);
2ab7db1f
TH
1648
1649 qc->tag = tag;
1650 qc->scsicmd = NULL;
1651 qc->ap = ap;
1652 qc->dev = dev;
1653 ata_qc_reinit(qc);
1654
9af5c9c9
TH
1655 preempted_tag = link->active_tag;
1656 preempted_sactive = link->sactive;
dedaf2b0 1657 preempted_qc_active = ap->qc_active;
da917d69 1658 preempted_nr_active_links = ap->nr_active_links;
9af5c9c9
TH
1659 link->active_tag = ATA_TAG_POISON;
1660 link->sactive = 0;
dedaf2b0 1661 ap->qc_active = 0;
da917d69 1662 ap->nr_active_links = 0;
2ab7db1f
TH
1663
1664 /* prepare & issue qc */
a2a7a662 1665 qc->tf = *tf;
d69cf37d
TH
1666 if (cdb)
1667 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
e61e0672 1668 qc->flags |= ATA_QCFLAG_RESULT_TF;
a2a7a662
TH
1669 qc->dma_dir = dma_dir;
1670 if (dma_dir != DMA_NONE) {
2432697b 1671 unsigned int i, buflen = 0;
87260216 1672 struct scatterlist *sg;
2432697b 1673
87260216
JA
1674 for_each_sg(sgl, sg, n_elem, i)
1675 buflen += sg->length;
2432697b 1676
87260216 1677 ata_sg_init(qc, sgl, n_elem);
49c80429 1678 qc->nbytes = buflen;
a2a7a662
TH
1679 }
1680
77853bf2 1681 qc->private_data = &wait;
a2a7a662
TH
1682 qc->complete_fn = ata_qc_complete_internal;
1683
8e0e694a 1684 ata_qc_issue(qc);
a2a7a662 1685
ba6a1308 1686 spin_unlock_irqrestore(ap->lock, flags);
a2a7a662 1687
2b789108
TH
1688 if (!timeout)
1689 timeout = ata_probe_timeout * 1000 / HZ;
1690
1691 rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
d95a717f
TH
1692
1693 ata_port_flush_task(ap);
41ade50c 1694
d95a717f 1695 if (!rc) {
ba6a1308 1696 spin_lock_irqsave(ap->lock, flags);
a2a7a662
TH
1697
1698 /* We're racing with irq here. If we lose, the
1699 * following test prevents us from completing the qc
d95a717f
TH
1700 * twice. If we win, the port is frozen and will be
1701 * cleaned up by ->post_internal_cmd().
a2a7a662 1702 */
77853bf2 1703 if (qc->flags & ATA_QCFLAG_ACTIVE) {
d95a717f
TH
1704 qc->err_mask |= AC_ERR_TIMEOUT;
1705
1706 if (ap->ops->error_handler)
1707 ata_port_freeze(ap);
1708 else
1709 ata_qc_complete(qc);
f15a1daf 1710
0dd4b21f
BP
1711 if (ata_msg_warn(ap))
1712 ata_dev_printk(dev, KERN_WARNING,
88574551 1713 "qc timeout (cmd 0x%x)\n", command);
a2a7a662
TH
1714 }
1715
ba6a1308 1716 spin_unlock_irqrestore(ap->lock, flags);
a2a7a662
TH
1717 }
1718
d95a717f
TH
1719 /* do post_internal_cmd */
1720 if (ap->ops->post_internal_cmd)
1721 ap->ops->post_internal_cmd(qc);
1722
a51d644a
TH
1723 /* perform minimal error analysis */
1724 if (qc->flags & ATA_QCFLAG_FAILED) {
1725 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1726 qc->err_mask |= AC_ERR_DEV;
1727
1728 if (!qc->err_mask)
1729 qc->err_mask |= AC_ERR_OTHER;
1730
1731 if (qc->err_mask & ~AC_ERR_OTHER)
1732 qc->err_mask &= ~AC_ERR_OTHER;
d95a717f
TH
1733 }
1734
15869303 1735 /* finish up */
ba6a1308 1736 spin_lock_irqsave(ap->lock, flags);
15869303 1737
e61e0672 1738 *tf = qc->result_tf;
77853bf2
TH
1739 err_mask = qc->err_mask;
1740
1741 ata_qc_free(qc);
9af5c9c9
TH
1742 link->active_tag = preempted_tag;
1743 link->sactive = preempted_sactive;
dedaf2b0 1744 ap->qc_active = preempted_qc_active;
da917d69 1745 ap->nr_active_links = preempted_nr_active_links;
77853bf2 1746
1f7dd3e9
TH
1747 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1748 * Until those drivers are fixed, we detect the condition
1749 * here, fail the command with AC_ERR_SYSTEM and reenable the
1750 * port.
1751 *
1752 * Note that this doesn't change any behavior as internal
1753 * command failure results in disabling the device in the
1754 * higher layer for LLDDs without new reset/EH callbacks.
1755 *
1756 * Kill the following code as soon as those drivers are fixed.
1757 */
198e0fed 1758 if (ap->flags & ATA_FLAG_DISABLED) {
1f7dd3e9
TH
1759 err_mask |= AC_ERR_SYSTEM;
1760 ata_port_probe(ap);
1761 }
1762
ba6a1308 1763 spin_unlock_irqrestore(ap->lock, flags);
15869303 1764
77853bf2 1765 return err_mask;
a2a7a662
TH
1766}
1767
2432697b 1768/**
33480a0e 1769 * ata_exec_internal - execute libata internal command
2432697b
TH
1770 * @dev: Device to which the command is sent
1771 * @tf: Taskfile registers for the command and the result
1772 * @cdb: CDB for packet command
1773 * @dma_dir: Data tranfer direction of the command
1774 * @buf: Data buffer of the command
1775 * @buflen: Length of data buffer
2b789108 1776 * @timeout: Timeout in msecs (0 for default)
2432697b
TH
1777 *
1778 * Wrapper around ata_exec_internal_sg() which takes simple
1779 * buffer instead of sg list.
1780 *
1781 * LOCKING:
1782 * None. Should be called with kernel context, might sleep.
1783 *
1784 * RETURNS:
1785 * Zero on success, AC_ERR_* mask on failure
1786 */
1787unsigned ata_exec_internal(struct ata_device *dev,
1788 struct ata_taskfile *tf, const u8 *cdb,
2b789108
TH
1789 int dma_dir, void *buf, unsigned int buflen,
1790 unsigned long timeout)
2432697b 1791{
33480a0e
TH
1792 struct scatterlist *psg = NULL, sg;
1793 unsigned int n_elem = 0;
2432697b 1794
33480a0e
TH
1795 if (dma_dir != DMA_NONE) {
1796 WARN_ON(!buf);
1797 sg_init_one(&sg, buf, buflen);
1798 psg = &sg;
1799 n_elem++;
1800 }
2432697b 1801
2b789108
TH
1802 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
1803 timeout);
2432697b
TH
1804}
1805
977e6b9f
TH
1806/**
1807 * ata_do_simple_cmd - execute simple internal command
1808 * @dev: Device to which the command is sent
1809 * @cmd: Opcode to execute
1810 *
1811 * Execute a 'simple' command, that only consists of the opcode
1812 * 'cmd' itself, without filling any other registers
1813 *
1814 * LOCKING:
1815 * Kernel thread context (may sleep).
1816 *
1817 * RETURNS:
1818 * Zero on success, AC_ERR_* mask on failure
e58eb583 1819 */
77b08fb5 1820unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
e58eb583
TH
1821{
1822 struct ata_taskfile tf;
e58eb583
TH
1823
1824 ata_tf_init(dev, &tf);
1825
1826 tf.command = cmd;
1827 tf.flags |= ATA_TFLAG_DEVICE;
1828 tf.protocol = ATA_PROT_NODATA;
1829
2b789108 1830 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
e58eb583
TH
1831}
1832
1bc4ccff
AC
1833/**
1834 * ata_pio_need_iordy - check if iordy needed
1835 * @adev: ATA device
1836 *
1837 * Check if the current speed of the device requires IORDY. Used
1838 * by various controllers for chip configuration.
1839 */
a617c09f 1840
1bc4ccff
AC
1841unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1842{
432729f0
AC
1843 /* Controller doesn't support IORDY. Probably a pointless check
1844 as the caller should know this */
9af5c9c9 1845 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
1bc4ccff 1846 return 0;
432729f0
AC
1847 /* PIO3 and higher it is mandatory */
1848 if (adev->pio_mode > XFER_PIO_2)
1849 return 1;
1850 /* We turn it on when possible */
1851 if (ata_id_has_iordy(adev->id))
1bc4ccff 1852 return 1;
432729f0
AC
1853 return 0;
1854}
2e9edbf8 1855
432729f0
AC
1856/**
1857 * ata_pio_mask_no_iordy - Return the non IORDY mask
1858 * @adev: ATA device
1859 *
1860 * Compute the highest mode possible if we are not using iordy. Return
1861 * -1 if no iordy mode is available.
1862 */
a617c09f 1863
432729f0
AC
1864static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1865{
1bc4ccff 1866 /* If we have no drive specific rule, then PIO 2 is non IORDY */
1bc4ccff 1867 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
432729f0 1868 u16 pio = adev->id[ATA_ID_EIDE_PIO];
1bc4ccff
AC
1869 /* Is the speed faster than the drive allows non IORDY ? */
1870 if (pio) {
1871 /* This is cycle times not frequency - watch the logic! */
1872 if (pio > 240) /* PIO2 is 240nS per cycle */
432729f0
AC
1873 return 3 << ATA_SHIFT_PIO;
1874 return 7 << ATA_SHIFT_PIO;
1bc4ccff
AC
1875 }
1876 }
432729f0 1877 return 3 << ATA_SHIFT_PIO;
1bc4ccff
AC
1878}
1879
1da177e4 1880/**
49016aca 1881 * ata_dev_read_id - Read ID data from the specified device
49016aca
TH
1882 * @dev: target device
1883 * @p_class: pointer to class of the target device (may be changed)
bff04647 1884 * @flags: ATA_READID_* flags
fe635c7e 1885 * @id: buffer to read IDENTIFY data into
1da177e4 1886 *
49016aca
TH
1887 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1888 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
aec5c3c1
TH
1889 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1890 * for pre-ATA4 drives.
1da177e4 1891 *
50a99018 1892 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
2dcb407e 1893 * now we abort if we hit that case.
50a99018 1894 *
1da177e4 1895 * LOCKING:
49016aca
TH
1896 * Kernel thread context (may sleep)
1897 *
1898 * RETURNS:
1899 * 0 on success, -errno otherwise.
1da177e4 1900 */
a9beec95 1901int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
bff04647 1902 unsigned int flags, u16 *id)
1da177e4 1903{
9af5c9c9 1904 struct ata_port *ap = dev->link->ap;
49016aca 1905 unsigned int class = *p_class;
a0123703 1906 struct ata_taskfile tf;
49016aca
TH
1907 unsigned int err_mask = 0;
1908 const char *reason;
54936f8b 1909 int may_fallback = 1, tried_spinup = 0;
49016aca 1910 int rc;
1da177e4 1911
0dd4b21f 1912 if (ata_msg_ctl(ap))
7f5e4e8d 1913 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
1da177e4 1914
49016aca 1915 retry:
3373efd8 1916 ata_tf_init(dev, &tf);
a0123703 1917
49016aca
TH
1918 switch (class) {
1919 case ATA_DEV_ATA:
a0123703 1920 tf.command = ATA_CMD_ID_ATA;
49016aca
TH
1921 break;
1922 case ATA_DEV_ATAPI:
a0123703 1923 tf.command = ATA_CMD_ID_ATAPI;
49016aca
TH
1924 break;
1925 default:
1926 rc = -ENODEV;
1927 reason = "unsupported class";
1928 goto err_out;
1da177e4
LT
1929 }
1930
a0123703 1931 tf.protocol = ATA_PROT_PIO;
81afe893
TH
1932
1933 /* Some devices choke if TF registers contain garbage. Make
1934 * sure those are properly initialized.
1935 */
1936 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1937
1938 /* Device presence detection is unreliable on some
1939 * controllers. Always poll IDENTIFY if available.
1940 */
1941 tf.flags |= ATA_TFLAG_POLLING;
1da177e4 1942
3373efd8 1943 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
2b789108 1944 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
a0123703 1945 if (err_mask) {
800b3996 1946 if (err_mask & AC_ERR_NODEV_HINT) {
1ffc151f
TH
1947 ata_dev_printk(dev, KERN_DEBUG,
1948 "NODEV after polling detection\n");
55a8e2c8
TH
1949 return -ENOENT;
1950 }
1951
1ffc151f
TH
1952 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1953 /* Device or controller might have reported
1954 * the wrong device class. Give a shot at the
1955 * other IDENTIFY if the current one is
1956 * aborted by the device.
1957 */
1958 if (may_fallback) {
1959 may_fallback = 0;
1960
1961 if (class == ATA_DEV_ATA)
1962 class = ATA_DEV_ATAPI;
1963 else
1964 class = ATA_DEV_ATA;
1965 goto retry;
1966 }
1967
1968 /* Control reaches here iff the device aborted
1969 * both flavors of IDENTIFYs which happens
1970 * sometimes with phantom devices.
1971 */
1972 ata_dev_printk(dev, KERN_DEBUG,
1973 "both IDENTIFYs aborted, assuming NODEV\n");
1974 return -ENOENT;
54936f8b
TH
1975 }
1976
49016aca
TH
1977 rc = -EIO;
1978 reason = "I/O error";
1da177e4
LT
1979 goto err_out;
1980 }
1981
54936f8b
TH
1982 /* Falling back doesn't make sense if ID data was read
1983 * successfully at least once.
1984 */
1985 may_fallback = 0;
1986
49016aca 1987 swap_buf_le16(id, ATA_ID_WORDS);
1da177e4 1988
49016aca 1989 /* sanity check */
a4f5749b 1990 rc = -EINVAL;
6070068b 1991 reason = "device reports invalid type";
a4f5749b
TH
1992
1993 if (class == ATA_DEV_ATA) {
1994 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1995 goto err_out;
1996 } else {
1997 if (ata_id_is_ata(id))
1998 goto err_out;
49016aca
TH
1999 }
2000
169439c2
ML
2001 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2002 tried_spinup = 1;
2003 /*
2004 * Drive powered-up in standby mode, and requires a specific
2005 * SET_FEATURES spin-up subcommand before it will accept
2006 * anything other than the original IDENTIFY command.
2007 */
218f3d30 2008 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
fb0582f9 2009 if (err_mask && id[2] != 0x738c) {
169439c2
ML
2010 rc = -EIO;
2011 reason = "SPINUP failed";
2012 goto err_out;
2013 }
2014 /*
2015 * If the drive initially returned incomplete IDENTIFY info,
2016 * we now must reissue the IDENTIFY command.
2017 */
2018 if (id[2] == 0x37c8)
2019 goto retry;
2020 }
2021
bff04647 2022 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
49016aca
TH
2023 /*
2024 * The exact sequence expected by certain pre-ATA4 drives is:
2025 * SRST RESET
50a99018
AC
2026 * IDENTIFY (optional in early ATA)
2027 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
49016aca
TH
2028 * anything else..
2029 * Some drives were very specific about that exact sequence.
50a99018
AC
2030 *
2031 * Note that ATA4 says lba is mandatory so the second check
2032 * shoud never trigger.
49016aca
TH
2033 */
2034 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
3373efd8 2035 err_mask = ata_dev_init_params(dev, id[3], id[6]);
49016aca
TH
2036 if (err_mask) {
2037 rc = -EIO;
2038 reason = "INIT_DEV_PARAMS failed";
2039 goto err_out;
2040 }
2041
2042 /* current CHS translation info (id[53-58]) might be
2043 * changed. reread the identify device info.
2044 */
bff04647 2045 flags &= ~ATA_READID_POSTRESET;
49016aca
TH
2046 goto retry;
2047 }
2048 }
2049
2050 *p_class = class;
fe635c7e 2051
49016aca
TH
2052 return 0;
2053
2054 err_out:
88574551 2055 if (ata_msg_warn(ap))
0dd4b21f 2056 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
88574551 2057 "(%s, err_mask=0x%x)\n", reason, err_mask);
49016aca
TH
2058 return rc;
2059}
2060
3373efd8 2061static inline u8 ata_dev_knobble(struct ata_device *dev)
4b2f3ede 2062{
9af5c9c9
TH
2063 struct ata_port *ap = dev->link->ap;
2064 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
4b2f3ede
TH
2065}
2066
a6e6ce8e
TH
2067static void ata_dev_config_ncq(struct ata_device *dev,
2068 char *desc, size_t desc_sz)
2069{
9af5c9c9 2070 struct ata_port *ap = dev->link->ap;
a6e6ce8e
TH
2071 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
2072
2073 if (!ata_id_has_ncq(dev->id)) {
2074 desc[0] = '\0';
2075 return;
2076 }
75683fe7 2077 if (dev->horkage & ATA_HORKAGE_NONCQ) {
6919a0a6
AC
2078 snprintf(desc, desc_sz, "NCQ (not used)");
2079 return;
2080 }
a6e6ce8e 2081 if (ap->flags & ATA_FLAG_NCQ) {
cca3974e 2082 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
a6e6ce8e
TH
2083 dev->flags |= ATA_DFLAG_NCQ;
2084 }
2085
2086 if (hdepth >= ddepth)
2087 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
2088 else
2089 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
2090}
2091
49016aca 2092/**
ffeae418 2093 * ata_dev_configure - Configure the specified ATA/ATAPI device
ffeae418
TH
2094 * @dev: Target device to configure
2095 *
2096 * Configure @dev according to @dev->id. Generic and low-level
2097 * driver specific fixups are also applied.
49016aca
TH
2098 *
2099 * LOCKING:
ffeae418
TH
2100 * Kernel thread context (may sleep)
2101 *
2102 * RETURNS:
2103 * 0 on success, -errno otherwise
49016aca 2104 */
efdaedc4 2105int ata_dev_configure(struct ata_device *dev)
49016aca 2106{
9af5c9c9
TH
2107 struct ata_port *ap = dev->link->ap;
2108 struct ata_eh_context *ehc = &dev->link->eh_context;
6746544c 2109 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1148c3a7 2110 const u16 *id = dev->id;
7dc951ae 2111 unsigned long xfer_mask;
b352e57d 2112 char revbuf[7]; /* XYZ-99\0 */
3f64f565
EM
2113 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2114 char modelbuf[ATA_ID_PROD_LEN+1];
e6d902a3 2115 int rc;
49016aca 2116
0dd4b21f 2117 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
44877b4e 2118 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
7f5e4e8d 2119 __func__);
ffeae418 2120 return 0;
49016aca
TH
2121 }
2122
0dd4b21f 2123 if (ata_msg_probe(ap))
7f5e4e8d 2124 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
1da177e4 2125
75683fe7
TH
2126 /* set horkage */
2127 dev->horkage |= ata_dev_blacklisted(dev);
33267325 2128 ata_force_horkage(dev);
75683fe7 2129
6746544c
TH
2130 /* let ACPI work its magic */
2131 rc = ata_acpi_on_devcfg(dev);
2132 if (rc)
2133 return rc;
08573a86 2134
05027adc
TH
2135 /* massage HPA, do it early as it might change IDENTIFY data */
2136 rc = ata_hpa_resize(dev);
2137 if (rc)
2138 return rc;
2139
c39f5ebe 2140 /* print device capabilities */
0dd4b21f 2141 if (ata_msg_probe(ap))
88574551
TH
2142 ata_dev_printk(dev, KERN_DEBUG,
2143 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2144 "85:%04x 86:%04x 87:%04x 88:%04x\n",
7f5e4e8d 2145 __func__,
f15a1daf
TH
2146 id[49], id[82], id[83], id[84],
2147 id[85], id[86], id[87], id[88]);
c39f5ebe 2148
208a9933 2149 /* initialize to-be-configured parameters */
ea1dd4e1 2150 dev->flags &= ~ATA_DFLAG_CFG_MASK;
208a9933
TH
2151 dev->max_sectors = 0;
2152 dev->cdb_len = 0;
2153 dev->n_sectors = 0;
2154 dev->cylinders = 0;
2155 dev->heads = 0;
2156 dev->sectors = 0;
2157
1da177e4
LT
2158 /*
2159 * common ATA, ATAPI feature tests
2160 */
2161
ff8854b2 2162 /* find max transfer mode; for printk only */
1148c3a7 2163 xfer_mask = ata_id_xfermask(id);
1da177e4 2164
0dd4b21f
BP
2165 if (ata_msg_probe(ap))
2166 ata_dump_id(id);
1da177e4 2167
ef143d57
AL
2168 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2169 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2170 sizeof(fwrevbuf));
2171
2172 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2173 sizeof(modelbuf));
2174
1da177e4
LT
2175 /* ATA-specific feature tests */
2176 if (dev->class == ATA_DEV_ATA) {
b352e57d
AC
2177 if (ata_id_is_cfa(id)) {
2178 if (id[162] & 1) /* CPRM may make this media unusable */
44877b4e
TH
2179 ata_dev_printk(dev, KERN_WARNING,
2180 "supports DRM functions and may "
2181 "not be fully accessable.\n");
b352e57d 2182 snprintf(revbuf, 7, "CFA");
ae8d4ee7 2183 } else {
2dcb407e 2184 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
ae8d4ee7
AC
2185 /* Warn the user if the device has TPM extensions */
2186 if (ata_id_has_tpm(id))
2187 ata_dev_printk(dev, KERN_WARNING,
2188 "supports DRM functions and may "
2189 "not be fully accessable.\n");
2190 }
b352e57d 2191
1148c3a7 2192 dev->n_sectors = ata_id_n_sectors(id);
2940740b 2193
3f64f565
EM
2194 if (dev->id[59] & 0x100)
2195 dev->multi_count = dev->id[59] & 0xff;
2196
1148c3a7 2197 if (ata_id_has_lba(id)) {
4c2d721a 2198 const char *lba_desc;
a6e6ce8e 2199 char ncq_desc[20];
8bf62ece 2200
4c2d721a
TH
2201 lba_desc = "LBA";
2202 dev->flags |= ATA_DFLAG_LBA;
1148c3a7 2203 if (ata_id_has_lba48(id)) {
8bf62ece 2204 dev->flags |= ATA_DFLAG_LBA48;
4c2d721a 2205 lba_desc = "LBA48";
6fc49adb
TH
2206
2207 if (dev->n_sectors >= (1UL << 28) &&
2208 ata_id_has_flush_ext(id))
2209 dev->flags |= ATA_DFLAG_FLUSH_EXT;
4c2d721a 2210 }
8bf62ece 2211
a6e6ce8e
TH
2212 /* config NCQ */
2213 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2214
8bf62ece 2215 /* print device info to dmesg */
3f64f565
EM
2216 if (ata_msg_drv(ap) && print_info) {
2217 ata_dev_printk(dev, KERN_INFO,
2218 "%s: %s, %s, max %s\n",
2219 revbuf, modelbuf, fwrevbuf,
2220 ata_mode_string(xfer_mask));
2221 ata_dev_printk(dev, KERN_INFO,
2222 "%Lu sectors, multi %u: %s %s\n",
f15a1daf 2223 (unsigned long long)dev->n_sectors,
3f64f565
EM
2224 dev->multi_count, lba_desc, ncq_desc);
2225 }
ffeae418 2226 } else {
8bf62ece
AL
2227 /* CHS */
2228
2229 /* Default translation */
1148c3a7
TH
2230 dev->cylinders = id[1];
2231 dev->heads = id[3];
2232 dev->sectors = id[6];
8bf62ece 2233
1148c3a7 2234 if (ata_id_current_chs_valid(id)) {
8bf62ece 2235 /* Current CHS translation is valid. */
1148c3a7
TH
2236 dev->cylinders = id[54];
2237 dev->heads = id[55];
2238 dev->sectors = id[56];
8bf62ece
AL
2239 }
2240
2241 /* print device info to dmesg */
3f64f565 2242 if (ata_msg_drv(ap) && print_info) {
88574551 2243 ata_dev_printk(dev, KERN_INFO,
3f64f565
EM
2244 "%s: %s, %s, max %s\n",
2245 revbuf, modelbuf, fwrevbuf,
2246 ata_mode_string(xfer_mask));
a84471fe 2247 ata_dev_printk(dev, KERN_INFO,
3f64f565
EM
2248 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2249 (unsigned long long)dev->n_sectors,
2250 dev->multi_count, dev->cylinders,
2251 dev->heads, dev->sectors);
2252 }
07f6f7d0
AL
2253 }
2254
6e7846e9 2255 dev->cdb_len = 16;
1da177e4
LT
2256 }
2257
2258 /* ATAPI-specific feature tests */
2c13b7ce 2259 else if (dev->class == ATA_DEV_ATAPI) {
854c73a2
TH
2260 const char *cdb_intr_string = "";
2261 const char *atapi_an_string = "";
91163006 2262 const char *dma_dir_string = "";
7d77b247 2263 u32 sntf;
08a556db 2264
1148c3a7 2265 rc = atapi_cdb_len(id);
1da177e4 2266 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
0dd4b21f 2267 if (ata_msg_warn(ap))
88574551
TH
2268 ata_dev_printk(dev, KERN_WARNING,
2269 "unsupported CDB len\n");
ffeae418 2270 rc = -EINVAL;
1da177e4
LT
2271 goto err_out_nosup;
2272 }
6e7846e9 2273 dev->cdb_len = (unsigned int) rc;
1da177e4 2274
7d77b247
TH
2275 /* Enable ATAPI AN if both the host and device have
2276 * the support. If PMP is attached, SNTF is required
2277 * to enable ATAPI AN to discern between PHY status
2278 * changed notifications and ATAPI ANs.
9f45cbd3 2279 */
7d77b247
TH
2280 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
2281 (!ap->nr_pmp_links ||
2282 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
854c73a2
TH
2283 unsigned int err_mask;
2284
9f45cbd3 2285 /* issue SET feature command to turn this on */
218f3d30
JG
2286 err_mask = ata_dev_set_feature(dev,
2287 SETFEATURES_SATA_ENABLE, SATA_AN);
854c73a2 2288 if (err_mask)
9f45cbd3 2289 ata_dev_printk(dev, KERN_ERR,
854c73a2
TH
2290 "failed to enable ATAPI AN "
2291 "(err_mask=0x%x)\n", err_mask);
2292 else {
9f45cbd3 2293 dev->flags |= ATA_DFLAG_AN;
854c73a2
TH
2294 atapi_an_string = ", ATAPI AN";
2295 }
9f45cbd3
KCA
2296 }
2297
08a556db 2298 if (ata_id_cdb_intr(dev->id)) {
312f7da2 2299 dev->flags |= ATA_DFLAG_CDB_INTR;
08a556db
AL
2300 cdb_intr_string = ", CDB intr";
2301 }
312f7da2 2302
91163006
TH
2303 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2304 dev->flags |= ATA_DFLAG_DMADIR;
2305 dma_dir_string = ", DMADIR";
2306 }
2307
1da177e4 2308 /* print device info to dmesg */
5afc8142 2309 if (ata_msg_drv(ap) && print_info)
ef143d57 2310 ata_dev_printk(dev, KERN_INFO,
91163006 2311 "ATAPI: %s, %s, max %s%s%s%s\n",
ef143d57 2312 modelbuf, fwrevbuf,
12436c30 2313 ata_mode_string(xfer_mask),
91163006
TH
2314 cdb_intr_string, atapi_an_string,
2315 dma_dir_string);
1da177e4
LT
2316 }
2317
914ed354
TH
2318 /* determine max_sectors */
2319 dev->max_sectors = ATA_MAX_SECTORS;
2320 if (dev->flags & ATA_DFLAG_LBA48)
2321 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2322
ca77329f
KCA
2323 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2324 if (ata_id_has_hipm(dev->id))
2325 dev->flags |= ATA_DFLAG_HIPM;
2326 if (ata_id_has_dipm(dev->id))
2327 dev->flags |= ATA_DFLAG_DIPM;
2328 }
2329
c5038fc0
AC
2330 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2331 200 sectors */
3373efd8 2332 if (ata_dev_knobble(dev)) {
5afc8142 2333 if (ata_msg_drv(ap) && print_info)
f15a1daf
TH
2334 ata_dev_printk(dev, KERN_INFO,
2335 "applying bridge limits\n");
5a529139 2336 dev->udma_mask &= ATA_UDMA5;
4b2f3ede
TH
2337 dev->max_sectors = ATA_MAX_SECTORS;
2338 }
2339
f8d8e579 2340 if ((dev->class == ATA_DEV_ATAPI) &&
f442cd86 2341 (atapi_command_packet_set(id) == TYPE_TAPE)) {
f8d8e579 2342 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
f442cd86
AL
2343 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2344 }
f8d8e579 2345
75683fe7 2346 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
03ec52de
TH
2347 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2348 dev->max_sectors);
18d6e9d5 2349
ca77329f
KCA
2350 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2351 dev->horkage |= ATA_HORKAGE_IPM;
2352
2353 /* reset link pm_policy for this port to no pm */
2354 ap->pm_policy = MAX_PERFORMANCE;
2355 }
2356
4b2f3ede 2357 if (ap->ops->dev_config)
cd0d3bbc 2358 ap->ops->dev_config(dev);
4b2f3ede 2359
c5038fc0
AC
2360 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2361 /* Let the user know. We don't want to disallow opens for
2362 rescue purposes, or in case the vendor is just a blithering
2363 idiot. Do this after the dev_config call as some controllers
2364 with buggy firmware may want to avoid reporting false device
2365 bugs */
2366
2367 if (print_info) {
2368 ata_dev_printk(dev, KERN_WARNING,
2369"Drive reports diagnostics failure. This may indicate a drive\n");
2370 ata_dev_printk(dev, KERN_WARNING,
2371"fault or invalid emulation. Contact drive vendor for information.\n");
2372 }
2373 }
2374
ffeae418 2375 return 0;
1da177e4
LT
2376
2377err_out_nosup:
0dd4b21f 2378 if (ata_msg_probe(ap))
88574551 2379 ata_dev_printk(dev, KERN_DEBUG,
7f5e4e8d 2380 "%s: EXIT, err\n", __func__);
ffeae418 2381 return rc;
1da177e4
LT
2382}
2383
be0d18df 2384/**
2e41e8e6 2385 * ata_cable_40wire - return 40 wire cable type
be0d18df
AC
2386 * @ap: port
2387 *
2e41e8e6 2388 * Helper method for drivers which want to hardwire 40 wire cable
be0d18df
AC
2389 * detection.
2390 */
2391
2392int ata_cable_40wire(struct ata_port *ap)
2393{
2394 return ATA_CBL_PATA40;
2395}
2396
2397/**
2e41e8e6 2398 * ata_cable_80wire - return 80 wire cable type
be0d18df
AC
2399 * @ap: port
2400 *
2e41e8e6 2401 * Helper method for drivers which want to hardwire 80 wire cable
be0d18df
AC
2402 * detection.
2403 */
2404
2405int ata_cable_80wire(struct ata_port *ap)
2406{
2407 return ATA_CBL_PATA80;
2408}
2409
2410/**
2411 * ata_cable_unknown - return unknown PATA cable.
2412 * @ap: port
2413 *
2414 * Helper method for drivers which have no PATA cable detection.
2415 */
2416
2417int ata_cable_unknown(struct ata_port *ap)
2418{
2419 return ATA_CBL_PATA_UNK;
2420}
2421
c88f90c3
TH
2422/**
2423 * ata_cable_ignore - return ignored PATA cable.
2424 * @ap: port
2425 *
2426 * Helper method for drivers which don't use cable type to limit
2427 * transfer mode.
2428 */
2429int ata_cable_ignore(struct ata_port *ap)
2430{
2431 return ATA_CBL_PATA_IGN;
2432}
2433
be0d18df
AC
2434/**
2435 * ata_cable_sata - return SATA cable type
2436 * @ap: port
2437 *
2438 * Helper method for drivers which have SATA cables
2439 */
2440
2441int ata_cable_sata(struct ata_port *ap)
2442{
2443 return ATA_CBL_SATA;
2444}
2445
1da177e4
LT
2446/**
2447 * ata_bus_probe - Reset and probe ATA bus
2448 * @ap: Bus to probe
2449 *
0cba632b
JG
2450 * Master ATA bus probing function. Initiates a hardware-dependent
2451 * bus reset, then attempts to identify any devices found on
2452 * the bus.
2453 *
1da177e4 2454 * LOCKING:
0cba632b 2455 * PCI/etc. bus probe sem.
1da177e4
LT
2456 *
2457 * RETURNS:
96072e69 2458 * Zero on success, negative errno otherwise.
1da177e4
LT
2459 */
2460
80289167 2461int ata_bus_probe(struct ata_port *ap)
1da177e4 2462{
28ca5c57 2463 unsigned int classes[ATA_MAX_DEVICES];
14d2bac1 2464 int tries[ATA_MAX_DEVICES];
f58229f8 2465 int rc;
e82cbdb9 2466 struct ata_device *dev;
1da177e4 2467
28ca5c57 2468 ata_port_probe(ap);
c19ba8af 2469
f58229f8
TH
2470 ata_link_for_each_dev(dev, &ap->link)
2471 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
14d2bac1
TH
2472
2473 retry:
cdeab114
TH
2474 ata_link_for_each_dev(dev, &ap->link) {
2475 /* If we issue an SRST then an ATA drive (not ATAPI)
2476 * may change configuration and be in PIO0 timing. If
2477 * we do a hard reset (or are coming from power on)
2478 * this is true for ATA or ATAPI. Until we've set a
2479 * suitable controller mode we should not touch the
2480 * bus as we may be talking too fast.
2481 */
2482 dev->pio_mode = XFER_PIO_0;
2483
2484 /* If the controller has a pio mode setup function
2485 * then use it to set the chipset to rights. Don't
2486 * touch the DMA setup as that will be dealt with when
2487 * configuring devices.
2488 */
2489 if (ap->ops->set_piomode)
2490 ap->ops->set_piomode(ap, dev);
2491 }
2492
2044470c 2493 /* reset and determine device classes */
52783c5d 2494 ap->ops->phy_reset(ap);
2061a47a 2495
f58229f8 2496 ata_link_for_each_dev(dev, &ap->link) {
52783c5d
TH
2497 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2498 dev->class != ATA_DEV_UNKNOWN)
2499 classes[dev->devno] = dev->class;
2500 else
2501 classes[dev->devno] = ATA_DEV_NONE;
2044470c 2502
52783c5d 2503 dev->class = ATA_DEV_UNKNOWN;
28ca5c57 2504 }
1da177e4 2505
52783c5d 2506 ata_port_probe(ap);
2044470c 2507
f31f0cc2
JG
2508 /* read IDENTIFY page and configure devices. We have to do the identify
2509 specific sequence bass-ackwards so that PDIAG- is released by
2510 the slave device */
2511
a4ba7fe2 2512 ata_link_for_each_dev_reverse(dev, &ap->link) {
f58229f8
TH
2513 if (tries[dev->devno])
2514 dev->class = classes[dev->devno];
ffeae418 2515
14d2bac1 2516 if (!ata_dev_enabled(dev))
ffeae418 2517 continue;
ffeae418 2518
bff04647
TH
2519 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2520 dev->id);
14d2bac1
TH
2521 if (rc)
2522 goto fail;
f31f0cc2
JG
2523 }
2524
be0d18df
AC
2525 /* Now ask for the cable type as PDIAG- should have been released */
2526 if (ap->ops->cable_detect)
2527 ap->cbl = ap->ops->cable_detect(ap);
2528
614fe29b
AC
2529 /* We may have SATA bridge glue hiding here irrespective of the
2530 reported cable types and sensed types */
2531 ata_link_for_each_dev(dev, &ap->link) {
2532 if (!ata_dev_enabled(dev))
2533 continue;
2534 /* SATA drives indicate we have a bridge. We don't know which
2535 end of the link the bridge is which is a problem */
2536 if (ata_id_is_sata(dev->id))
2537 ap->cbl = ATA_CBL_SATA;
2538 }
2539
f31f0cc2
JG
2540 /* After the identify sequence we can now set up the devices. We do
2541 this in the normal order so that the user doesn't get confused */
2542
f58229f8 2543 ata_link_for_each_dev(dev, &ap->link) {
f31f0cc2
JG
2544 if (!ata_dev_enabled(dev))
2545 continue;
14d2bac1 2546
9af5c9c9 2547 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
efdaedc4 2548 rc = ata_dev_configure(dev);
9af5c9c9 2549 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
14d2bac1
TH
2550 if (rc)
2551 goto fail;
1da177e4
LT
2552 }
2553
e82cbdb9 2554 /* configure transfer mode */
0260731f 2555 rc = ata_set_mode(&ap->link, &dev);
4ae72a1e 2556 if (rc)
51713d35 2557 goto fail;
1da177e4 2558
f58229f8
TH
2559 ata_link_for_each_dev(dev, &ap->link)
2560 if (ata_dev_enabled(dev))
e82cbdb9 2561 return 0;
1da177e4 2562
e82cbdb9
TH
2563 /* no device present, disable port */
2564 ata_port_disable(ap);
96072e69 2565 return -ENODEV;
14d2bac1
TH
2566
2567 fail:
4ae72a1e
TH
2568 tries[dev->devno]--;
2569
14d2bac1
TH
2570 switch (rc) {
2571 case -EINVAL:
4ae72a1e 2572 /* eeek, something went very wrong, give up */
14d2bac1
TH
2573 tries[dev->devno] = 0;
2574 break;
4ae72a1e
TH
2575
2576 case -ENODEV:
2577 /* give it just one more chance */
2578 tries[dev->devno] = min(tries[dev->devno], 1);
14d2bac1 2579 case -EIO:
4ae72a1e
TH
2580 if (tries[dev->devno] == 1) {
2581 /* This is the last chance, better to slow
2582 * down than lose it.
2583 */
936fd732 2584 sata_down_spd_limit(&ap->link);
4ae72a1e
TH
2585 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2586 }
14d2bac1
TH
2587 }
2588
4ae72a1e 2589 if (!tries[dev->devno])
3373efd8 2590 ata_dev_disable(dev);
ec573755 2591
14d2bac1 2592 goto retry;
1da177e4
LT
2593}
2594
2595/**
0cba632b
JG
2596 * ata_port_probe - Mark port as enabled
2597 * @ap: Port for which we indicate enablement
1da177e4 2598 *
0cba632b
JG
2599 * Modify @ap data structure such that the system
2600 * thinks that the entire port is enabled.
2601 *
cca3974e 2602 * LOCKING: host lock, or some other form of
0cba632b 2603 * serialization.
1da177e4
LT
2604 */
2605
2606void ata_port_probe(struct ata_port *ap)
2607{
198e0fed 2608 ap->flags &= ~ATA_FLAG_DISABLED;
1da177e4
LT
2609}
2610
3be680b7
TH
2611/**
2612 * sata_print_link_status - Print SATA link status
936fd732 2613 * @link: SATA link to printk link status about
3be680b7
TH
2614 *
2615 * This function prints link speed and status of a SATA link.
2616 *
2617 * LOCKING:
2618 * None.
2619 */
936fd732 2620void sata_print_link_status(struct ata_link *link)
3be680b7 2621{
6d5f9732 2622 u32 sstatus, scontrol, tmp;
3be680b7 2623
936fd732 2624 if (sata_scr_read(link, SCR_STATUS, &sstatus))
3be680b7 2625 return;
936fd732 2626 sata_scr_read(link, SCR_CONTROL, &scontrol);
3be680b7 2627
936fd732 2628 if (ata_link_online(link)) {
3be680b7 2629 tmp = (sstatus >> 4) & 0xf;
936fd732 2630 ata_link_printk(link, KERN_INFO,
f15a1daf
TH
2631 "SATA link up %s (SStatus %X SControl %X)\n",
2632 sata_spd_string(tmp), sstatus, scontrol);
3be680b7 2633 } else {
936fd732 2634 ata_link_printk(link, KERN_INFO,
f15a1daf
TH
2635 "SATA link down (SStatus %X SControl %X)\n",
2636 sstatus, scontrol);
3be680b7
TH
2637 }
2638}
2639
ebdfca6e
AC
2640/**
2641 * ata_dev_pair - return other device on cable
ebdfca6e
AC
2642 * @adev: device
2643 *
2644 * Obtain the other device on the same cable, or if none is
2645 * present NULL is returned
2646 */
2e9edbf8 2647
3373efd8 2648struct ata_device *ata_dev_pair(struct ata_device *adev)
ebdfca6e 2649{
9af5c9c9
TH
2650 struct ata_link *link = adev->link;
2651 struct ata_device *pair = &link->device[1 - adev->devno];
e1211e3f 2652 if (!ata_dev_enabled(pair))
ebdfca6e
AC
2653 return NULL;
2654 return pair;
2655}
2656
1da177e4 2657/**
780a87f7
JG
2658 * ata_port_disable - Disable port.
2659 * @ap: Port to be disabled.
1da177e4 2660 *
780a87f7
JG
2661 * Modify @ap data structure such that the system
2662 * thinks that the entire port is disabled, and should
2663 * never attempt to probe or communicate with devices
2664 * on this port.
2665 *
cca3974e 2666 * LOCKING: host lock, or some other form of
780a87f7 2667 * serialization.
1da177e4
LT
2668 */
2669
2670void ata_port_disable(struct ata_port *ap)
2671{
9af5c9c9
TH
2672 ap->link.device[0].class = ATA_DEV_NONE;
2673 ap->link.device[1].class = ATA_DEV_NONE;
198e0fed 2674 ap->flags |= ATA_FLAG_DISABLED;
1da177e4
LT
2675}
2676
1c3fae4d 2677/**
3c567b7d 2678 * sata_down_spd_limit - adjust SATA spd limit downward
936fd732 2679 * @link: Link to adjust SATA spd limit for
1c3fae4d 2680 *
936fd732 2681 * Adjust SATA spd limit of @link downward. Note that this
1c3fae4d 2682 * function only adjusts the limit. The change must be applied
3c567b7d 2683 * using sata_set_spd().
1c3fae4d
TH
2684 *
2685 * LOCKING:
2686 * Inherited from caller.
2687 *
2688 * RETURNS:
2689 * 0 on success, negative errno on failure
2690 */
936fd732 2691int sata_down_spd_limit(struct ata_link *link)
1c3fae4d 2692{
81952c54
TH
2693 u32 sstatus, spd, mask;
2694 int rc, highbit;
1c3fae4d 2695
936fd732 2696 if (!sata_scr_valid(link))
008a7896
TH
2697 return -EOPNOTSUPP;
2698
2699 /* If SCR can be read, use it to determine the current SPD.
936fd732 2700 * If not, use cached value in link->sata_spd.
008a7896 2701 */
936fd732 2702 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
008a7896
TH
2703 if (rc == 0)
2704 spd = (sstatus >> 4) & 0xf;
2705 else
936fd732 2706 spd = link->sata_spd;
1c3fae4d 2707
936fd732 2708 mask = link->sata_spd_limit;
1c3fae4d
TH
2709 if (mask <= 1)
2710 return -EINVAL;
008a7896
TH
2711
2712 /* unconditionally mask off the highest bit */
1c3fae4d
TH
2713 highbit = fls(mask) - 1;
2714 mask &= ~(1 << highbit);
2715
008a7896
TH
2716 /* Mask off all speeds higher than or equal to the current
2717 * one. Force 1.5Gbps if current SPD is not available.
2718 */
2719 if (spd > 1)
2720 mask &= (1 << (spd - 1)) - 1;
2721 else
2722 mask &= 1;
2723
2724 /* were we already at the bottom? */
1c3fae4d
TH
2725 if (!mask)
2726 return -EINVAL;
2727
936fd732 2728 link->sata_spd_limit = mask;
1c3fae4d 2729
936fd732 2730 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
f15a1daf 2731 sata_spd_string(fls(mask)));
1c3fae4d
TH
2732
2733 return 0;
2734}
2735
936fd732 2736static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
1c3fae4d 2737{
5270222f
TH
2738 struct ata_link *host_link = &link->ap->link;
2739 u32 limit, target, spd;
1c3fae4d 2740
5270222f
TH
2741 limit = link->sata_spd_limit;
2742
2743 /* Don't configure downstream link faster than upstream link.
2744 * It doesn't speed up anything and some PMPs choke on such
2745 * configuration.
2746 */
2747 if (!ata_is_host_link(link) && host_link->sata_spd)
2748 limit &= (1 << host_link->sata_spd) - 1;
2749
2750 if (limit == UINT_MAX)
2751 target = 0;
1c3fae4d 2752 else
5270222f 2753 target = fls(limit);
1c3fae4d
TH
2754
2755 spd = (*scontrol >> 4) & 0xf;
5270222f 2756 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
1c3fae4d 2757
5270222f 2758 return spd != target;
1c3fae4d
TH
2759}
2760
2761/**
3c567b7d 2762 * sata_set_spd_needed - is SATA spd configuration needed
936fd732 2763 * @link: Link in question
1c3fae4d
TH
2764 *
2765 * Test whether the spd limit in SControl matches
936fd732 2766 * @link->sata_spd_limit. This function is used to determine
1c3fae4d
TH
2767 * whether hardreset is necessary to apply SATA spd
2768 * configuration.
2769 *
2770 * LOCKING:
2771 * Inherited from caller.
2772 *
2773 * RETURNS:
2774 * 1 if SATA spd configuration is needed, 0 otherwise.
2775 */
936fd732 2776int sata_set_spd_needed(struct ata_link *link)
1c3fae4d
TH
2777{
2778 u32 scontrol;
2779
936fd732 2780 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
db64bcf3 2781 return 1;
1c3fae4d 2782
936fd732 2783 return __sata_set_spd_needed(link, &scontrol);
1c3fae4d
TH
2784}
2785
2786/**
3c567b7d 2787 * sata_set_spd - set SATA spd according to spd limit
936fd732 2788 * @link: Link to set SATA spd for
1c3fae4d 2789 *
936fd732 2790 * Set SATA spd of @link according to sata_spd_limit.
1c3fae4d
TH
2791 *
2792 * LOCKING:
2793 * Inherited from caller.
2794 *
2795 * RETURNS:
2796 * 0 if spd doesn't need to be changed, 1 if spd has been
81952c54 2797 * changed. Negative errno if SCR registers are inaccessible.
1c3fae4d 2798 */
936fd732 2799int sata_set_spd(struct ata_link *link)
1c3fae4d
TH
2800{
2801 u32 scontrol;
81952c54 2802 int rc;
1c3fae4d 2803
936fd732 2804 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
81952c54 2805 return rc;
1c3fae4d 2806
936fd732 2807 if (!__sata_set_spd_needed(link, &scontrol))
1c3fae4d
TH
2808 return 0;
2809
936fd732 2810 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
81952c54
TH
2811 return rc;
2812
1c3fae4d
TH
2813 return 1;
2814}
2815
452503f9
AC
2816/*
2817 * This mode timing computation functionality is ported over from
2818 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2819 */
2820/*
b352e57d 2821 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
452503f9 2822 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
b352e57d
AC
2823 * for UDMA6, which is currently supported only by Maxtor drives.
2824 *
2825 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
452503f9
AC
2826 */
2827
2828static const struct ata_timing ata_timing[] = {
70cd071e
TH
2829/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2830 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2831 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2832 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2833 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2834 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2835 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
2836 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
452503f9 2837
70cd071e
TH
2838 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2839 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2840 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
452503f9 2841
70cd071e
TH
2842 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
2843 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2844 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
b352e57d 2845 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
70cd071e 2846 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
452503f9
AC
2847
2848/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
70cd071e
TH
2849 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2850 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2851 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2852 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2853 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2854 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2855 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
452503f9
AC
2856
2857 { 0xFF }
2858};
2859
2dcb407e
JG
2860#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
2861#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
452503f9
AC
2862
2863static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2864{
2865 q->setup = EZ(t->setup * 1000, T);
2866 q->act8b = EZ(t->act8b * 1000, T);
2867 q->rec8b = EZ(t->rec8b * 1000, T);
2868 q->cyc8b = EZ(t->cyc8b * 1000, T);
2869 q->active = EZ(t->active * 1000, T);
2870 q->recover = EZ(t->recover * 1000, T);
2871 q->cycle = EZ(t->cycle * 1000, T);
2872 q->udma = EZ(t->udma * 1000, UT);
2873}
2874
2875void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2876 struct ata_timing *m, unsigned int what)
2877{
2878 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2879 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2880 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2881 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2882 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2883 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2884 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2885 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2886}
2887
6357357c 2888const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
452503f9 2889{
70cd071e
TH
2890 const struct ata_timing *t = ata_timing;
2891
2892 while (xfer_mode > t->mode)
2893 t++;
452503f9 2894
70cd071e
TH
2895 if (xfer_mode == t->mode)
2896 return t;
2897 return NULL;
452503f9
AC
2898}
2899
2900int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2901 struct ata_timing *t, int T, int UT)
2902{
2903 const struct ata_timing *s;
2904 struct ata_timing p;
2905
2906 /*
2e9edbf8 2907 * Find the mode.
75b1f2f8 2908 */
452503f9
AC
2909
2910 if (!(s = ata_timing_find_mode(speed)))
2911 return -EINVAL;
2912
75b1f2f8
AL
2913 memcpy(t, s, sizeof(*s));
2914
452503f9
AC
2915 /*
2916 * If the drive is an EIDE drive, it can tell us it needs extended
2917 * PIO/MW_DMA cycle timing.
2918 */
2919
2920 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2921 memset(&p, 0, sizeof(p));
2dcb407e 2922 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
452503f9
AC
2923 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2924 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
2dcb407e 2925 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
452503f9
AC
2926 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2927 }
2928 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2929 }
2930
2931 /*
2932 * Convert the timing to bus clock counts.
2933 */
2934
75b1f2f8 2935 ata_timing_quantize(t, t, T, UT);
452503f9
AC
2936
2937 /*
c893a3ae
RD
2938 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2939 * S.M.A.R.T * and some other commands. We have to ensure that the
2940 * DMA cycle timing is slower/equal than the fastest PIO timing.
452503f9
AC
2941 */
2942
fd3367af 2943 if (speed > XFER_PIO_6) {
452503f9
AC
2944 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2945 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2946 }
2947
2948 /*
c893a3ae 2949 * Lengthen active & recovery time so that cycle time is correct.
452503f9
AC
2950 */
2951
2952 if (t->act8b + t->rec8b < t->cyc8b) {
2953 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2954 t->rec8b = t->cyc8b - t->act8b;
2955 }
2956
2957 if (t->active + t->recover < t->cycle) {
2958 t->active += (t->cycle - (t->active + t->recover)) / 2;
2959 t->recover = t->cycle - t->active;
2960 }
a617c09f 2961
4f701d1e
AC
2962 /* In a few cases quantisation may produce enough errors to
2963 leave t->cycle too low for the sum of active and recovery
2964 if so we must correct this */
2965 if (t->active + t->recover > t->cycle)
2966 t->cycle = t->active + t->recover;
452503f9
AC
2967
2968 return 0;
2969}
2970
a0f79b92
TH
2971/**
2972 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
2973 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
2974 * @cycle: cycle duration in ns
2975 *
2976 * Return matching xfer mode for @cycle. The returned mode is of
2977 * the transfer type specified by @xfer_shift. If @cycle is too
2978 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
2979 * than the fastest known mode, the fasted mode is returned.
2980 *
2981 * LOCKING:
2982 * None.
2983 *
2984 * RETURNS:
2985 * Matching xfer_mode, 0xff if no match found.
2986 */
2987u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
2988{
2989 u8 base_mode = 0xff, last_mode = 0xff;
2990 const struct ata_xfer_ent *ent;
2991 const struct ata_timing *t;
2992
2993 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
2994 if (ent->shift == xfer_shift)
2995 base_mode = ent->base;
2996
2997 for (t = ata_timing_find_mode(base_mode);
2998 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
2999 unsigned short this_cycle;
3000
3001 switch (xfer_shift) {
3002 case ATA_SHIFT_PIO:
3003 case ATA_SHIFT_MWDMA:
3004 this_cycle = t->cycle;
3005 break;
3006 case ATA_SHIFT_UDMA:
3007 this_cycle = t->udma;
3008 break;
3009 default:
3010 return 0xff;
3011 }
3012
3013 if (cycle > this_cycle)
3014 break;
3015
3016 last_mode = t->mode;
3017 }
3018
3019 return last_mode;
3020}
3021
cf176e1a
TH
3022/**
3023 * ata_down_xfermask_limit - adjust dev xfer masks downward
cf176e1a 3024 * @dev: Device to adjust xfer masks
458337db 3025 * @sel: ATA_DNXFER_* selector
cf176e1a
TH
3026 *
3027 * Adjust xfer masks of @dev downward. Note that this function
3028 * does not apply the change. Invoking ata_set_mode() afterwards
3029 * will apply the limit.
3030 *
3031 * LOCKING:
3032 * Inherited from caller.
3033 *
3034 * RETURNS:
3035 * 0 on success, negative errno on failure
3036 */
458337db 3037int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
cf176e1a 3038{
458337db 3039 char buf[32];
7dc951ae
TH
3040 unsigned long orig_mask, xfer_mask;
3041 unsigned long pio_mask, mwdma_mask, udma_mask;
458337db 3042 int quiet, highbit;
cf176e1a 3043
458337db
TH
3044 quiet = !!(sel & ATA_DNXFER_QUIET);
3045 sel &= ~ATA_DNXFER_QUIET;
cf176e1a 3046
458337db
TH
3047 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3048 dev->mwdma_mask,
3049 dev->udma_mask);
3050 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
cf176e1a 3051
458337db
TH
3052 switch (sel) {
3053 case ATA_DNXFER_PIO:
3054 highbit = fls(pio_mask) - 1;
3055 pio_mask &= ~(1 << highbit);
3056 break;
3057
3058 case ATA_DNXFER_DMA:
3059 if (udma_mask) {
3060 highbit = fls(udma_mask) - 1;
3061 udma_mask &= ~(1 << highbit);
3062 if (!udma_mask)
3063 return -ENOENT;
3064 } else if (mwdma_mask) {
3065 highbit = fls(mwdma_mask) - 1;
3066 mwdma_mask &= ~(1 << highbit);
3067 if (!mwdma_mask)
3068 return -ENOENT;
3069 }
3070 break;
3071
3072 case ATA_DNXFER_40C:
3073 udma_mask &= ATA_UDMA_MASK_40C;
3074 break;
3075
3076 case ATA_DNXFER_FORCE_PIO0:
3077 pio_mask &= 1;
3078 case ATA_DNXFER_FORCE_PIO:
3079 mwdma_mask = 0;
3080 udma_mask = 0;
3081 break;
3082
458337db
TH
3083 default:
3084 BUG();
3085 }
3086
3087 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3088
3089 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3090 return -ENOENT;
3091
3092 if (!quiet) {
3093 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3094 snprintf(buf, sizeof(buf), "%s:%s",
3095 ata_mode_string(xfer_mask),
3096 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3097 else
3098 snprintf(buf, sizeof(buf), "%s",
3099 ata_mode_string(xfer_mask));
3100
3101 ata_dev_printk(dev, KERN_WARNING,
3102 "limiting speed to %s\n", buf);
3103 }
cf176e1a
TH
3104
3105 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3106 &dev->udma_mask);
3107
cf176e1a 3108 return 0;
cf176e1a
TH
3109}
3110
3373efd8 3111static int ata_dev_set_mode(struct ata_device *dev)
1da177e4 3112{
9af5c9c9 3113 struct ata_eh_context *ehc = &dev->link->eh_context;
4055dee7
TH
3114 const char *dev_err_whine = "";
3115 int ign_dev_err = 0;
83206a29
TH
3116 unsigned int err_mask;
3117 int rc;
1da177e4 3118
e8384607 3119 dev->flags &= ~ATA_DFLAG_PIO;
1da177e4
LT
3120 if (dev->xfer_shift == ATA_SHIFT_PIO)
3121 dev->flags |= ATA_DFLAG_PIO;
3122
3373efd8 3123 err_mask = ata_dev_set_xfermode(dev);
2dcb407e 3124
4055dee7
TH
3125 if (err_mask & ~AC_ERR_DEV)
3126 goto fail;
3127
3128 /* revalidate */
3129 ehc->i.flags |= ATA_EHI_POST_SETMODE;
3130 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
3131 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
3132 if (rc)
3133 return rc;
3134
11750a40
AC
3135 /* Old CFA may refuse this command, which is just fine */
3136 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
4055dee7 3137 ign_dev_err = 1;
2dcb407e 3138
0bc2a79a
AC
3139 /* Some very old devices and some bad newer ones fail any kind of
3140 SET_XFERMODE request but support PIO0-2 timings and no IORDY */
3141 if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) &&
3142 dev->pio_mode <= XFER_PIO_2)
4055dee7 3143 ign_dev_err = 1;
2dcb407e 3144
3acaf94b
AC
3145 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3146 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
c5038fc0 3147 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3acaf94b
AC
3148 dev->dma_mode == XFER_MW_DMA_0 &&
3149 (dev->id[63] >> 8) & 1)
4055dee7 3150 ign_dev_err = 1;
3acaf94b 3151
4055dee7
TH
3152 /* if the device is actually configured correctly, ignore dev err */
3153 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3154 ign_dev_err = 1;
1da177e4 3155
4055dee7
TH
3156 if (err_mask & AC_ERR_DEV) {
3157 if (!ign_dev_err)
3158 goto fail;
3159 else
3160 dev_err_whine = " (device error ignored)";
3161 }
48a8a14f 3162
23e71c3d
TH
3163 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3164 dev->xfer_shift, (int)dev->xfer_mode);
1da177e4 3165
4055dee7
TH
3166 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3167 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3168 dev_err_whine);
3169
83206a29 3170 return 0;
4055dee7
TH
3171
3172 fail:
3173 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3174 "(err_mask=0x%x)\n", err_mask);
3175 return -EIO;
1da177e4
LT
3176}
3177
1da177e4 3178/**
04351821 3179 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
0260731f 3180 * @link: link on which timings will be programmed
1967b7ff 3181 * @r_failed_dev: out parameter for failed device
1da177e4 3182 *
04351821
AC
3183 * Standard implementation of the function used to tune and set
3184 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3185 * ata_dev_set_mode() fails, pointer to the failing device is
e82cbdb9 3186 * returned in @r_failed_dev.
780a87f7 3187 *
1da177e4 3188 * LOCKING:
0cba632b 3189 * PCI/etc. bus probe sem.
e82cbdb9
TH
3190 *
3191 * RETURNS:
3192 * 0 on success, negative errno otherwise
1da177e4 3193 */
04351821 3194
0260731f 3195int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
1da177e4 3196{
0260731f 3197 struct ata_port *ap = link->ap;
e8e0619f 3198 struct ata_device *dev;
f58229f8 3199 int rc = 0, used_dma = 0, found = 0;
3adcebb2 3200
a6d5a51c 3201 /* step 1: calculate xfer_mask */
f58229f8 3202 ata_link_for_each_dev(dev, link) {
7dc951ae 3203 unsigned long pio_mask, dma_mask;
b3a70601 3204 unsigned int mode_mask;
a6d5a51c 3205
e1211e3f 3206 if (!ata_dev_enabled(dev))
a6d5a51c
TH
3207 continue;
3208
b3a70601
AC
3209 mode_mask = ATA_DMA_MASK_ATA;
3210 if (dev->class == ATA_DEV_ATAPI)
3211 mode_mask = ATA_DMA_MASK_ATAPI;
3212 else if (ata_id_is_cfa(dev->id))
3213 mode_mask = ATA_DMA_MASK_CFA;
3214
3373efd8 3215 ata_dev_xfermask(dev);
33267325 3216 ata_force_xfermask(dev);
1da177e4 3217
acf356b1
TH
3218 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3219 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
b3a70601
AC
3220
3221 if (libata_dma_mask & mode_mask)
3222 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3223 else
3224 dma_mask = 0;
3225
acf356b1
TH
3226 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3227 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
5444a6f4 3228
4f65977d 3229 found = 1;
70cd071e 3230 if (dev->dma_mode != 0xff)
5444a6f4 3231 used_dma = 1;
a6d5a51c 3232 }
4f65977d 3233 if (!found)
e82cbdb9 3234 goto out;
a6d5a51c
TH
3235
3236 /* step 2: always set host PIO timings */
f58229f8 3237 ata_link_for_each_dev(dev, link) {
e8e0619f
TH
3238 if (!ata_dev_enabled(dev))
3239 continue;
3240
70cd071e 3241 if (dev->pio_mode == 0xff) {
f15a1daf 3242 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
e8e0619f 3243 rc = -EINVAL;
e82cbdb9 3244 goto out;
e8e0619f
TH
3245 }
3246
3247 dev->xfer_mode = dev->pio_mode;
3248 dev->xfer_shift = ATA_SHIFT_PIO;
3249 if (ap->ops->set_piomode)
3250 ap->ops->set_piomode(ap, dev);
3251 }
1da177e4 3252
a6d5a51c 3253 /* step 3: set host DMA timings */
f58229f8 3254 ata_link_for_each_dev(dev, link) {
70cd071e 3255 if (!ata_dev_enabled(dev) || dev->dma_mode == 0xff)
e8e0619f
TH
3256 continue;
3257
3258 dev->xfer_mode = dev->dma_mode;
3259 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3260 if (ap->ops->set_dmamode)
3261 ap->ops->set_dmamode(ap, dev);
3262 }
1da177e4
LT
3263
3264 /* step 4: update devices' xfer mode */
f58229f8 3265 ata_link_for_each_dev(dev, link) {
18d90deb 3266 /* don't update suspended devices' xfer mode */
9666f400 3267 if (!ata_dev_enabled(dev))
83206a29
TH
3268 continue;
3269
3373efd8 3270 rc = ata_dev_set_mode(dev);
5bbc53f4 3271 if (rc)
e82cbdb9 3272 goto out;
83206a29 3273 }
1da177e4 3274
e8e0619f
TH
3275 /* Record simplex status. If we selected DMA then the other
3276 * host channels are not permitted to do so.
5444a6f4 3277 */
cca3974e 3278 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
032af1ce 3279 ap->host->simplex_claimed = ap;
5444a6f4 3280
e82cbdb9
TH
3281 out:
3282 if (rc)
3283 *r_failed_dev = dev;
3284 return rc;
1da177e4
LT
3285}
3286
aa2731ad
TH
3287/**
3288 * ata_wait_ready - wait for link to become ready
3289 * @link: link to be waited on
3290 * @deadline: deadline jiffies for the operation
3291 * @check_ready: callback to check link readiness
3292 *
3293 * Wait for @link to become ready. @check_ready should return
3294 * positive number if @link is ready, 0 if it isn't, -ENODEV if
3295 * link doesn't seem to be occupied, other errno for other error
3296 * conditions.
3297 *
3298 * Transient -ENODEV conditions are allowed for
3299 * ATA_TMOUT_FF_WAIT.
3300 *
3301 * LOCKING:
3302 * EH context.
3303 *
3304 * RETURNS:
3305 * 0 if @linke is ready before @deadline; otherwise, -errno.
3306 */
3307int ata_wait_ready(struct ata_link *link, unsigned long deadline,
3308 int (*check_ready)(struct ata_link *link))
3309{
3310 unsigned long start = jiffies;
3311 unsigned long nodev_deadline = start + ATA_TMOUT_FF_WAIT;
3312 int warned = 0;
3313
3314 if (time_after(nodev_deadline, deadline))
3315 nodev_deadline = deadline;
3316
3317 while (1) {
3318 unsigned long now = jiffies;
3319 int ready, tmp;
3320
3321 ready = tmp = check_ready(link);
3322 if (ready > 0)
3323 return 0;
3324
3325 /* -ENODEV could be transient. Ignore -ENODEV if link
3326 * is online. Also, some SATA devices take a long
3327 * time to clear 0xff after reset. For example,
3328 * HHD424020F7SV00 iVDR needs >= 800ms while Quantum
3329 * GoVault needs even more than that. Wait for
3330 * ATA_TMOUT_FF_WAIT on -ENODEV if link isn't offline.
3331 *
3332 * Note that some PATA controllers (pata_ali) explode
3333 * if status register is read more than once when
3334 * there's no device attached.
3335 */
3336 if (ready == -ENODEV) {
3337 if (ata_link_online(link))
3338 ready = 0;
3339 else if ((link->ap->flags & ATA_FLAG_SATA) &&
3340 !ata_link_offline(link) &&
3341 time_before(now, nodev_deadline))
3342 ready = 0;
3343 }
3344
3345 if (ready)
3346 return ready;
3347 if (time_after(now, deadline))
3348 return -EBUSY;
3349
3350 if (!warned && time_after(now, start + 5 * HZ) &&
3351 (deadline - now > 3 * HZ)) {
3352 ata_link_printk(link, KERN_WARNING,
3353 "link is slow to respond, please be patient "
3354 "(ready=%d)\n", tmp);
3355 warned = 1;
3356 }
3357
3358 msleep(50);
3359 }
3360}
3361
3362/**
3363 * ata_wait_after_reset - wait for link to become ready after reset
3364 * @link: link to be waited on
3365 * @deadline: deadline jiffies for the operation
3366 * @check_ready: callback to check link readiness
3367 *
3368 * Wait for @link to become ready after reset.
3369 *
3370 * LOCKING:
3371 * EH context.
3372 *
3373 * RETURNS:
3374 * 0 if @linke is ready before @deadline; otherwise, -errno.
3375 */
3376extern int ata_wait_after_reset(struct ata_link *link, unsigned long deadline,
3377 int (*check_ready)(struct ata_link *link))
3378{
3379 msleep(ATA_WAIT_AFTER_RESET_MSECS);
3380
3381 return ata_wait_ready(link, deadline, check_ready);
3382}
3383
d7bb4cc7 3384/**
936fd732
TH
3385 * sata_link_debounce - debounce SATA phy status
3386 * @link: ATA link to debounce SATA phy status for
d7bb4cc7 3387 * @params: timing parameters { interval, duratinon, timeout } in msec
d4b2bab4 3388 * @deadline: deadline jiffies for the operation
d7bb4cc7 3389 *
936fd732 3390* Make sure SStatus of @link reaches stable state, determined by
d7bb4cc7
TH
3391 * holding the same value where DET is not 1 for @duration polled
3392 * every @interval, before @timeout. Timeout constraints the
d4b2bab4
TH
3393 * beginning of the stable state. Because DET gets stuck at 1 on
3394 * some controllers after hot unplugging, this functions waits
d7bb4cc7
TH
3395 * until timeout then returns 0 if DET is stable at 1.
3396 *
d4b2bab4
TH
3397 * @timeout is further limited by @deadline. The sooner of the
3398 * two is used.
3399 *
d7bb4cc7
TH
3400 * LOCKING:
3401 * Kernel thread context (may sleep)
3402 *
3403 * RETURNS:
3404 * 0 on success, -errno on failure.
3405 */
936fd732
TH
3406int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3407 unsigned long deadline)
7a7921e8 3408{
d7bb4cc7 3409 unsigned long interval_msec = params[0];
d4b2bab4
TH
3410 unsigned long duration = msecs_to_jiffies(params[1]);
3411 unsigned long last_jiffies, t;
d7bb4cc7
TH
3412 u32 last, cur;
3413 int rc;
3414
d4b2bab4
TH
3415 t = jiffies + msecs_to_jiffies(params[2]);
3416 if (time_before(t, deadline))
3417 deadline = t;
3418
936fd732 3419 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
d7bb4cc7
TH
3420 return rc;
3421 cur &= 0xf;
3422
3423 last = cur;
3424 last_jiffies = jiffies;
3425
3426 while (1) {
3427 msleep(interval_msec);
936fd732 3428 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
d7bb4cc7
TH
3429 return rc;
3430 cur &= 0xf;
3431
3432 /* DET stable? */
3433 if (cur == last) {
d4b2bab4 3434 if (cur == 1 && time_before(jiffies, deadline))
d7bb4cc7
TH
3435 continue;
3436 if (time_after(jiffies, last_jiffies + duration))
3437 return 0;
3438 continue;
3439 }
3440
3441 /* unstable, start over */
3442 last = cur;
3443 last_jiffies = jiffies;
3444
f1545154
TH
3445 /* Check deadline. If debouncing failed, return
3446 * -EPIPE to tell upper layer to lower link speed.
3447 */
d4b2bab4 3448 if (time_after(jiffies, deadline))
f1545154 3449 return -EPIPE;
d7bb4cc7
TH
3450 }
3451}
3452
3453/**
936fd732
TH
3454 * sata_link_resume - resume SATA link
3455 * @link: ATA link to resume SATA
d7bb4cc7 3456 * @params: timing parameters { interval, duratinon, timeout } in msec
d4b2bab4 3457 * @deadline: deadline jiffies for the operation
d7bb4cc7 3458 *
936fd732 3459 * Resume SATA phy @link and debounce it.
d7bb4cc7
TH
3460 *
3461 * LOCKING:
3462 * Kernel thread context (may sleep)
3463 *
3464 * RETURNS:
3465 * 0 on success, -errno on failure.
3466 */
936fd732
TH
3467int sata_link_resume(struct ata_link *link, const unsigned long *params,
3468 unsigned long deadline)
d7bb4cc7 3469{
ac371987 3470 u32 scontrol, serror;
81952c54
TH
3471 int rc;
3472
936fd732 3473 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
81952c54 3474 return rc;
7a7921e8 3475
852ee16a 3476 scontrol = (scontrol & 0x0f0) | 0x300;
81952c54 3477
936fd732 3478 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
81952c54 3479 return rc;
7a7921e8 3480
d7bb4cc7
TH
3481 /* Some PHYs react badly if SStatus is pounded immediately
3482 * after resuming. Delay 200ms before debouncing.
3483 */
3484 msleep(200);
7a7921e8 3485
ac371987
TH
3486 if ((rc = sata_link_debounce(link, params, deadline)))
3487 return rc;
3488
3489 /* Clear SError. PMP and some host PHYs require this to
3490 * operate and clearing should be done before checking PHY
3491 * online status to avoid race condition (hotplugging between
3492 * link resume and status check).
3493 */
3494 if (!(rc = sata_scr_read(link, SCR_ERROR, &serror)))
3495 rc = sata_scr_write(link, SCR_ERROR, serror);
3496 if (rc == 0 || rc == -EINVAL) {
3497 unsigned long flags;
3498
3499 spin_lock_irqsave(link->ap->lock, flags);
3500 link->eh_info.serror = 0;
3501 spin_unlock_irqrestore(link->ap->lock, flags);
3502 rc = 0;
3503 }
3504 return rc;
7a7921e8
TH
3505}
3506
f5914a46 3507/**
0aa1113d 3508 * ata_std_prereset - prepare for reset
cc0680a5 3509 * @link: ATA link to be reset
d4b2bab4 3510 * @deadline: deadline jiffies for the operation
f5914a46 3511 *
cc0680a5 3512 * @link is about to be reset. Initialize it. Failure from
b8cffc6a
TH
3513 * prereset makes libata abort whole reset sequence and give up
3514 * that port, so prereset should be best-effort. It does its
3515 * best to prepare for reset sequence but if things go wrong, it
3516 * should just whine, not fail.
f5914a46
TH
3517 *
3518 * LOCKING:
3519 * Kernel thread context (may sleep)
3520 *
3521 * RETURNS:
3522 * 0 on success, -errno otherwise.
3523 */
0aa1113d 3524int ata_std_prereset(struct ata_link *link, unsigned long deadline)
f5914a46 3525{
cc0680a5 3526 struct ata_port *ap = link->ap;
936fd732 3527 struct ata_eh_context *ehc = &link->eh_context;
e9c83914 3528 const unsigned long *timing = sata_ehc_deb_timing(ehc);
f5914a46
TH
3529 int rc;
3530
f5914a46
TH
3531 /* if we're about to do hardreset, nothing more to do */
3532 if (ehc->i.action & ATA_EH_HARDRESET)
3533 return 0;
3534
936fd732 3535 /* if SATA, resume link */
a16abc0b 3536 if (ap->flags & ATA_FLAG_SATA) {
936fd732 3537 rc = sata_link_resume(link, timing, deadline);
b8cffc6a
TH
3538 /* whine about phy resume failure but proceed */
3539 if (rc && rc != -EOPNOTSUPP)
cc0680a5 3540 ata_link_printk(link, KERN_WARNING, "failed to resume "
f5914a46 3541 "link for reset (errno=%d)\n", rc);
f5914a46
TH
3542 }
3543
f5914a46
TH
3544 return 0;
3545}
3546
c2bd5804 3547/**
624d5c51
TH
3548 * sata_link_hardreset - reset link via SATA phy reset
3549 * @link: link to reset
3550 * @timing: timing parameters { interval, duratinon, timeout } in msec
d4b2bab4 3551 * @deadline: deadline jiffies for the operation
9dadd45b
TH
3552 * @online: optional out parameter indicating link onlineness
3553 * @check_ready: optional callback to check link readiness
c2bd5804 3554 *
624d5c51 3555 * SATA phy-reset @link using DET bits of SControl register.
9dadd45b
TH
3556 * After hardreset, link readiness is waited upon using
3557 * ata_wait_ready() if @check_ready is specified. LLDs are
3558 * allowed to not specify @check_ready and wait itself after this
3559 * function returns. Device classification is LLD's
3560 * responsibility.
3561 *
3562 * *@online is set to one iff reset succeeded and @link is online
3563 * after reset.
c2bd5804
TH
3564 *
3565 * LOCKING:
3566 * Kernel thread context (may sleep)
3567 *
3568 * RETURNS:
3569 * 0 on success, -errno otherwise.
3570 */
624d5c51 3571int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
9dadd45b
TH
3572 unsigned long deadline,
3573 bool *online, int (*check_ready)(struct ata_link *))
c2bd5804 3574{
624d5c51 3575 u32 scontrol;
81952c54 3576 int rc;
852ee16a 3577
c2bd5804
TH
3578 DPRINTK("ENTER\n");
3579
9dadd45b
TH
3580 if (online)
3581 *online = false;
3582
936fd732 3583 if (sata_set_spd_needed(link)) {
1c3fae4d
TH
3584 /* SATA spec says nothing about how to reconfigure
3585 * spd. To be on the safe side, turn off phy during
3586 * reconfiguration. This works for at least ICH7 AHCI
3587 * and Sil3124.
3588 */
936fd732 3589 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
b6103f6d 3590 goto out;
81952c54 3591
a34b6fc0 3592 scontrol = (scontrol & 0x0f0) | 0x304;
81952c54 3593
936fd732 3594 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
b6103f6d 3595 goto out;
1c3fae4d 3596
936fd732 3597 sata_set_spd(link);
1c3fae4d
TH
3598 }
3599
3600 /* issue phy wake/reset */
936fd732 3601 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
b6103f6d 3602 goto out;
81952c54 3603
852ee16a 3604 scontrol = (scontrol & 0x0f0) | 0x301;
81952c54 3605
936fd732 3606 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
b6103f6d 3607 goto out;
c2bd5804 3608
1c3fae4d 3609 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
c2bd5804
TH
3610 * 10.4.2 says at least 1 ms.
3611 */
3612 msleep(1);
3613
936fd732
TH
3614 /* bring link back */
3615 rc = sata_link_resume(link, timing, deadline);
9dadd45b
TH
3616 if (rc)
3617 goto out;
3618 /* if link is offline nothing more to do */
3619 if (ata_link_offline(link))
3620 goto out;
3621
3622 /* Link is online. From this point, -ENODEV too is an error. */
3623 if (online)
3624 *online = true;
3625
3626 if ((link->ap->flags & ATA_FLAG_PMP) && ata_is_host_link(link)) {
3627 /* If PMP is supported, we have to do follow-up SRST.
3628 * Some PMPs don't send D2H Reg FIS after hardreset if
3629 * the first port is empty. Wait only for
3630 * ATA_TMOUT_PMP_SRST_WAIT.
3631 */
3632 if (check_ready) {
3633 unsigned long pmp_deadline;
3634
3635 pmp_deadline = jiffies + ATA_TMOUT_PMP_SRST_WAIT;
3636 if (time_after(pmp_deadline, deadline))
3637 pmp_deadline = deadline;
3638 ata_wait_ready(link, pmp_deadline, check_ready);
3639 }
3640 rc = -EAGAIN;
3641 goto out;
3642 }
3643
3644 rc = 0;
3645 if (check_ready)
3646 rc = ata_wait_ready(link, deadline, check_ready);
b6103f6d 3647 out:
9dadd45b
TH
3648 if (rc && rc != -EAGAIN)
3649 ata_link_printk(link, KERN_ERR,
3650 "COMRESET failed (errno=%d)\n", rc);
b6103f6d
TH
3651 DPRINTK("EXIT, rc=%d\n", rc);
3652 return rc;
3653}
3654
57c9efdf
TH
3655/**
3656 * sata_std_hardreset - COMRESET w/o waiting or classification
3657 * @link: link to reset
3658 * @class: resulting class of attached device
3659 * @deadline: deadline jiffies for the operation
3660 *
3661 * Standard SATA COMRESET w/o waiting or classification.
3662 *
3663 * LOCKING:
3664 * Kernel thread context (may sleep)
3665 *
3666 * RETURNS:
3667 * 0 if link offline, -EAGAIN if link online, -errno on errors.
3668 */
3669int sata_std_hardreset(struct ata_link *link, unsigned int *class,
3670 unsigned long deadline)
3671{
3672 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
3673 bool online;
3674 int rc;
3675
3676 /* do hardreset */
3677 rc = sata_link_hardreset(link, timing, deadline, &online, NULL);
57c9efdf
TH
3678 return online ? -EAGAIN : rc;
3679}
3680
c2bd5804 3681/**
203c75b8 3682 * ata_std_postreset - standard postreset callback
cc0680a5 3683 * @link: the target ata_link
c2bd5804
TH
3684 * @classes: classes of attached devices
3685 *
3686 * This function is invoked after a successful reset. Note that
3687 * the device might have been reset more than once using
3688 * different reset methods before postreset is invoked.
c2bd5804 3689 *
c2bd5804
TH
3690 * LOCKING:
3691 * Kernel thread context (may sleep)
3692 */
203c75b8 3693void ata_std_postreset(struct ata_link *link, unsigned int *classes)
c2bd5804
TH
3694{
3695 DPRINTK("ENTER\n");
3696
c2bd5804 3697 /* print link status */
936fd732 3698 sata_print_link_status(link);
c2bd5804 3699
c2bd5804
TH
3700 DPRINTK("EXIT\n");
3701}
3702
623a3128
TH
3703/**
3704 * ata_dev_same_device - Determine whether new ID matches configured device
623a3128
TH
3705 * @dev: device to compare against
3706 * @new_class: class of the new device
3707 * @new_id: IDENTIFY page of the new device
3708 *
3709 * Compare @new_class and @new_id against @dev and determine
3710 * whether @dev is the device indicated by @new_class and
3711 * @new_id.
3712 *
3713 * LOCKING:
3714 * None.
3715 *
3716 * RETURNS:
3717 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3718 */
3373efd8
TH
3719static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3720 const u16 *new_id)
623a3128
TH
3721{
3722 const u16 *old_id = dev->id;
a0cf733b
TH
3723 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3724 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
623a3128
TH
3725
3726 if (dev->class != new_class) {
f15a1daf
TH
3727 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3728 dev->class, new_class);
623a3128
TH
3729 return 0;
3730 }
3731
a0cf733b
TH
3732 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3733 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3734 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3735 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
623a3128
TH
3736
3737 if (strcmp(model[0], model[1])) {
f15a1daf
TH
3738 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3739 "'%s' != '%s'\n", model[0], model[1]);
623a3128
TH
3740 return 0;
3741 }
3742
3743 if (strcmp(serial[0], serial[1])) {
f15a1daf
TH
3744 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3745 "'%s' != '%s'\n", serial[0], serial[1]);
623a3128
TH
3746 return 0;
3747 }
3748
623a3128
TH
3749 return 1;
3750}
3751
3752/**
fe30911b 3753 * ata_dev_reread_id - Re-read IDENTIFY data
3fae450c 3754 * @dev: target ATA device
bff04647 3755 * @readid_flags: read ID flags
623a3128
TH
3756 *
3757 * Re-read IDENTIFY page and make sure @dev is still attached to
3758 * the port.
3759 *
3760 * LOCKING:
3761 * Kernel thread context (may sleep)
3762 *
3763 * RETURNS:
3764 * 0 on success, negative errno otherwise
3765 */
fe30911b 3766int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
623a3128 3767{
5eb45c02 3768 unsigned int class = dev->class;
9af5c9c9 3769 u16 *id = (void *)dev->link->ap->sector_buf;
623a3128
TH
3770 int rc;
3771
fe635c7e 3772 /* read ID data */
bff04647 3773 rc = ata_dev_read_id(dev, &class, readid_flags, id);
623a3128 3774 if (rc)
fe30911b 3775 return rc;
623a3128
TH
3776
3777 /* is the device still there? */
fe30911b
TH
3778 if (!ata_dev_same_device(dev, class, id))
3779 return -ENODEV;
623a3128 3780
fe635c7e 3781 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
fe30911b
TH
3782 return 0;
3783}
3784
3785/**
3786 * ata_dev_revalidate - Revalidate ATA device
3787 * @dev: device to revalidate
422c9daa 3788 * @new_class: new class code
fe30911b
TH
3789 * @readid_flags: read ID flags
3790 *
3791 * Re-read IDENTIFY page, make sure @dev is still attached to the
3792 * port and reconfigure it according to the new IDENTIFY page.
3793 *
3794 * LOCKING:
3795 * Kernel thread context (may sleep)
3796 *
3797 * RETURNS:
3798 * 0 on success, negative errno otherwise
3799 */
422c9daa
TH
3800int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
3801 unsigned int readid_flags)
fe30911b 3802{
6ddcd3b0 3803 u64 n_sectors = dev->n_sectors;
fe30911b
TH
3804 int rc;
3805
3806 if (!ata_dev_enabled(dev))
3807 return -ENODEV;
3808
422c9daa
TH
3809 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
3810 if (ata_class_enabled(new_class) &&
3811 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
3812 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
3813 dev->class, new_class);
3814 rc = -ENODEV;
3815 goto fail;
3816 }
3817
fe30911b
TH
3818 /* re-read ID */
3819 rc = ata_dev_reread_id(dev, readid_flags);
3820 if (rc)
3821 goto fail;
623a3128
TH
3822
3823 /* configure device according to the new ID */
efdaedc4 3824 rc = ata_dev_configure(dev);
6ddcd3b0
TH
3825 if (rc)
3826 goto fail;
3827
3828 /* verify n_sectors hasn't changed */
b54eebd6
TH
3829 if (dev->class == ATA_DEV_ATA && n_sectors &&
3830 dev->n_sectors != n_sectors) {
6ddcd3b0
TH
3831 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3832 "%llu != %llu\n",
3833 (unsigned long long)n_sectors,
3834 (unsigned long long)dev->n_sectors);
8270bec4
TH
3835
3836 /* restore original n_sectors */
3837 dev->n_sectors = n_sectors;
3838
6ddcd3b0
TH
3839 rc = -ENODEV;
3840 goto fail;
3841 }
3842
3843 return 0;
623a3128
TH
3844
3845 fail:
f15a1daf 3846 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
623a3128
TH
3847 return rc;
3848}
3849
6919a0a6
AC
3850struct ata_blacklist_entry {
3851 const char *model_num;
3852 const char *model_rev;
3853 unsigned long horkage;
3854};
3855
3856static const struct ata_blacklist_entry ata_device_blacklist [] = {
3857 /* Devices with DMA related problems under Linux */
3858 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3859 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3860 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3861 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3862 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3863 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3864 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3865 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3866 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3867 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3868 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3869 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3870 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3871 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3872 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3873 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3874 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3875 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3876 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3877 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3878 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3879 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3880 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3881 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3882 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3883 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
6919a0a6
AC
3884 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3885 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
2dcb407e 3886 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
39f19886 3887 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
3af9a77a
TH
3888 /* Odd clown on sil3726/4726 PMPs */
3889 { "Config Disk", NULL, ATA_HORKAGE_NODMA |
3890 ATA_HORKAGE_SKIP_PM },
6919a0a6 3891
18d6e9d5 3892 /* Weird ATAPI devices */
40a1d531 3893 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
18d6e9d5 3894
6919a0a6
AC
3895 /* Devices we expect to fail diagnostics */
3896
3897 /* Devices where NCQ should be avoided */
3898 /* NCQ is slow */
2dcb407e 3899 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
459ad688 3900 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
09125ea6
TH
3901 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3902 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
7acfaf30 3903 /* NCQ is broken */
539cc7c7 3904 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
0e3dbc01 3905 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
da6f0ec2 3906 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
e41bd3e8 3907 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
539cc7c7 3908
36e337d0
RH
3909 /* Blacklist entries taken from Silicon Image 3124/3132
3910 Windows driver .inf file - also several Linux problem reports */
3911 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3912 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3913 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
6919a0a6 3914
16c55b03
TH
3915 /* devices which puke on READ_NATIVE_MAX */
3916 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3917 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3918 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3919 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
6919a0a6 3920
93328e11
AC
3921 /* Devices which report 1 sector over size HPA */
3922 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
3923 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
b152fcd3 3924 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
93328e11 3925
6bbfd53d
AC
3926 /* Devices which get the IVB wrong */
3927 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
3928 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
e9f33406
PM
3929 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
3930 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
3931 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
6bbfd53d 3932
6919a0a6
AC
3933 /* End Marker */
3934 { }
1da177e4 3935};
2e9edbf8 3936
741b7763 3937static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
539cc7c7
JG
3938{
3939 const char *p;
3940 int len;
3941
3942 /*
3943 * check for trailing wildcard: *\0
3944 */
3945 p = strchr(patt, wildchar);
3946 if (p && ((*(p + 1)) == 0))
3947 len = p - patt;
317b50b8 3948 else {
539cc7c7 3949 len = strlen(name);
317b50b8
AP
3950 if (!len) {
3951 if (!*patt)
3952 return 0;
3953 return -1;
3954 }
3955 }
539cc7c7
JG
3956
3957 return strncmp(patt, name, len);
3958}
3959
75683fe7 3960static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
1da177e4 3961{
8bfa79fc
TH
3962 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3963 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
6919a0a6 3964 const struct ata_blacklist_entry *ad = ata_device_blacklist;
3a778275 3965
8bfa79fc
TH
3966 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3967 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
1da177e4 3968
6919a0a6 3969 while (ad->model_num) {
539cc7c7 3970 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
6919a0a6
AC
3971 if (ad->model_rev == NULL)
3972 return ad->horkage;
539cc7c7 3973 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
6919a0a6 3974 return ad->horkage;
f4b15fef 3975 }
6919a0a6 3976 ad++;
f4b15fef 3977 }
1da177e4
LT
3978 return 0;
3979}
3980
6919a0a6
AC
3981static int ata_dma_blacklisted(const struct ata_device *dev)
3982{
3983 /* We don't support polling DMA.
3984 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3985 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3986 */
9af5c9c9 3987 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
6919a0a6
AC
3988 (dev->flags & ATA_DFLAG_CDB_INTR))
3989 return 1;
75683fe7 3990 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
6919a0a6
AC
3991}
3992
6bbfd53d
AC
3993/**
3994 * ata_is_40wire - check drive side detection
3995 * @dev: device
3996 *
3997 * Perform drive side detection decoding, allowing for device vendors
3998 * who can't follow the documentation.
3999 */
4000
4001static int ata_is_40wire(struct ata_device *dev)
4002{
4003 if (dev->horkage & ATA_HORKAGE_IVB)
4004 return ata_drive_40wire_relaxed(dev->id);
4005 return ata_drive_40wire(dev->id);
4006}
4007
15a5551c
AC
4008/**
4009 * cable_is_40wire - 40/80/SATA decider
4010 * @ap: port to consider
4011 *
4012 * This function encapsulates the policy for speed management
4013 * in one place. At the moment we don't cache the result but
4014 * there is a good case for setting ap->cbl to the result when
4015 * we are called with unknown cables (and figuring out if it
4016 * impacts hotplug at all).
4017 *
4018 * Return 1 if the cable appears to be 40 wire.
4019 */
4020
4021static int cable_is_40wire(struct ata_port *ap)
4022{
4023 struct ata_link *link;
4024 struct ata_device *dev;
4025
4026 /* If the controller thinks we are 40 wire, we are */
4027 if (ap->cbl == ATA_CBL_PATA40)
4028 return 1;
4029 /* If the controller thinks we are 80 wire, we are */
4030 if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA)
4031 return 0;
4032 /* If the controller doesn't know we scan
4033
4034 - Note: We look for all 40 wire detects at this point.
4035 Any 80 wire detect is taken to be 80 wire cable
4036 because
4037 - In many setups only the one drive (slave if present)
4038 will give a valid detect
4039 - If you have a non detect capable drive you don't
4040 want it to colour the choice
4041 */
4042 ata_port_for_each_link(link, ap) {
4043 ata_link_for_each_dev(dev, link) {
4044 if (!ata_is_40wire(dev))
4045 return 0;
4046 }
4047 }
4048 return 1;
4049}
4050
a6d5a51c
TH
4051/**
4052 * ata_dev_xfermask - Compute supported xfermask of the given device
a6d5a51c
TH
4053 * @dev: Device to compute xfermask for
4054 *
acf356b1
TH
4055 * Compute supported xfermask of @dev and store it in
4056 * dev->*_mask. This function is responsible for applying all
4057 * known limits including host controller limits, device
4058 * blacklist, etc...
a6d5a51c
TH
4059 *
4060 * LOCKING:
4061 * None.
a6d5a51c 4062 */
3373efd8 4063static void ata_dev_xfermask(struct ata_device *dev)
1da177e4 4064{
9af5c9c9
TH
4065 struct ata_link *link = dev->link;
4066 struct ata_port *ap = link->ap;
cca3974e 4067 struct ata_host *host = ap->host;
a6d5a51c 4068 unsigned long xfer_mask;
1da177e4 4069
37deecb5 4070 /* controller modes available */
565083e1
TH
4071 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4072 ap->mwdma_mask, ap->udma_mask);
4073
8343f889 4074 /* drive modes available */
37deecb5
TH
4075 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4076 dev->mwdma_mask, dev->udma_mask);
4077 xfer_mask &= ata_id_xfermask(dev->id);
565083e1 4078
b352e57d
AC
4079 /*
4080 * CFA Advanced TrueIDE timings are not allowed on a shared
4081 * cable
4082 */
4083 if (ata_dev_pair(dev)) {
4084 /* No PIO5 or PIO6 */
4085 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4086 /* No MWDMA3 or MWDMA 4 */
4087 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4088 }
4089
37deecb5
TH
4090 if (ata_dma_blacklisted(dev)) {
4091 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
f15a1daf
TH
4092 ata_dev_printk(dev, KERN_WARNING,
4093 "device is on DMA blacklist, disabling DMA\n");
37deecb5 4094 }
a6d5a51c 4095
14d66ab7 4096 if ((host->flags & ATA_HOST_SIMPLEX) &&
2dcb407e 4097 host->simplex_claimed && host->simplex_claimed != ap) {
37deecb5
TH
4098 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4099 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4100 "other device, disabling DMA\n");
5444a6f4 4101 }
565083e1 4102
e424675f
JG
4103 if (ap->flags & ATA_FLAG_NO_IORDY)
4104 xfer_mask &= ata_pio_mask_no_iordy(dev);
4105
5444a6f4 4106 if (ap->ops->mode_filter)
a76b62ca 4107 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
5444a6f4 4108
8343f889
RH
4109 /* Apply cable rule here. Don't apply it early because when
4110 * we handle hot plug the cable type can itself change.
4111 * Check this last so that we know if the transfer rate was
4112 * solely limited by the cable.
4113 * Unknown or 80 wire cables reported host side are checked
4114 * drive side as well. Cases where we know a 40wire cable
4115 * is used safely for 80 are not checked here.
4116 */
4117 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4118 /* UDMA/44 or higher would be available */
15a5551c 4119 if (cable_is_40wire(ap)) {
2dcb407e 4120 ata_dev_printk(dev, KERN_WARNING,
8343f889
RH
4121 "limited to UDMA/33 due to 40-wire cable\n");
4122 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4123 }
4124
565083e1
TH
4125 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4126 &dev->mwdma_mask, &dev->udma_mask);
1da177e4
LT
4127}
4128
1da177e4
LT
4129/**
4130 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
1da177e4
LT
4131 * @dev: Device to which command will be sent
4132 *
780a87f7
JG
4133 * Issue SET FEATURES - XFER MODE command to device @dev
4134 * on port @ap.
4135 *
1da177e4 4136 * LOCKING:
0cba632b 4137 * PCI/etc. bus probe sem.
83206a29
TH
4138 *
4139 * RETURNS:
4140 * 0 on success, AC_ERR_* mask otherwise.
1da177e4
LT
4141 */
4142
3373efd8 4143static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
1da177e4 4144{
a0123703 4145 struct ata_taskfile tf;
83206a29 4146 unsigned int err_mask;
1da177e4
LT
4147
4148 /* set up set-features taskfile */
4149 DPRINTK("set features - xfer mode\n");
4150
464cf177
TH
4151 /* Some controllers and ATAPI devices show flaky interrupt
4152 * behavior after setting xfer mode. Use polling instead.
4153 */
3373efd8 4154 ata_tf_init(dev, &tf);
a0123703
TH
4155 tf.command = ATA_CMD_SET_FEATURES;
4156 tf.feature = SETFEATURES_XFER;
464cf177 4157 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
a0123703 4158 tf.protocol = ATA_PROT_NODATA;
b9f8ab2d 4159 /* If we are using IORDY we must send the mode setting command */
11b7becc
JG
4160 if (ata_pio_need_iordy(dev))
4161 tf.nsect = dev->xfer_mode;
b9f8ab2d
AC
4162 /* If the device has IORDY and the controller does not - turn it off */
4163 else if (ata_id_has_iordy(dev->id))
11b7becc 4164 tf.nsect = 0x01;
b9f8ab2d
AC
4165 else /* In the ancient relic department - skip all of this */
4166 return 0;
1da177e4 4167
2b789108 4168 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
9f45cbd3
KCA
4169
4170 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4171 return err_mask;
4172}
9f45cbd3 4173/**
218f3d30 4174 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
9f45cbd3
KCA
4175 * @dev: Device to which command will be sent
4176 * @enable: Whether to enable or disable the feature
218f3d30 4177 * @feature: The sector count represents the feature to set
9f45cbd3
KCA
4178 *
4179 * Issue SET FEATURES - SATA FEATURES command to device @dev
218f3d30 4180 * on port @ap with sector count
9f45cbd3
KCA
4181 *
4182 * LOCKING:
4183 * PCI/etc. bus probe sem.
4184 *
4185 * RETURNS:
4186 * 0 on success, AC_ERR_* mask otherwise.
4187 */
218f3d30
JG
4188static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4189 u8 feature)
9f45cbd3
KCA
4190{
4191 struct ata_taskfile tf;
4192 unsigned int err_mask;
4193
4194 /* set up set-features taskfile */
4195 DPRINTK("set features - SATA features\n");
4196
4197 ata_tf_init(dev, &tf);
4198 tf.command = ATA_CMD_SET_FEATURES;
4199 tf.feature = enable;
4200 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4201 tf.protocol = ATA_PROT_NODATA;
218f3d30 4202 tf.nsect = feature;
9f45cbd3 4203
2b789108 4204 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
1da177e4 4205
83206a29
TH
4206 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4207 return err_mask;
1da177e4
LT
4208}
4209
8bf62ece
AL
4210/**
4211 * ata_dev_init_params - Issue INIT DEV PARAMS command
8bf62ece 4212 * @dev: Device to which command will be sent
e2a7f77a
RD
4213 * @heads: Number of heads (taskfile parameter)
4214 * @sectors: Number of sectors (taskfile parameter)
8bf62ece
AL
4215 *
4216 * LOCKING:
6aff8f1f
TH
4217 * Kernel thread context (may sleep)
4218 *
4219 * RETURNS:
4220 * 0 on success, AC_ERR_* mask otherwise.
8bf62ece 4221 */
3373efd8
TH
4222static unsigned int ata_dev_init_params(struct ata_device *dev,
4223 u16 heads, u16 sectors)
8bf62ece 4224{
a0123703 4225 struct ata_taskfile tf;
6aff8f1f 4226 unsigned int err_mask;
8bf62ece
AL
4227
4228 /* Number of sectors per track 1-255. Number of heads 1-16 */
4229 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
00b6f5e9 4230 return AC_ERR_INVALID;
8bf62ece
AL
4231
4232 /* set up init dev params taskfile */
4233 DPRINTK("init dev params \n");
4234
3373efd8 4235 ata_tf_init(dev, &tf);
a0123703
TH
4236 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4237 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4238 tf.protocol = ATA_PROT_NODATA;
4239 tf.nsect = sectors;
4240 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
8bf62ece 4241
2b789108 4242 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
18b2466c
AC
4243 /* A clean abort indicates an original or just out of spec drive
4244 and we should continue as we issue the setup based on the
4245 drive reported working geometry */
4246 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4247 err_mask = 0;
8bf62ece 4248
6aff8f1f
TH
4249 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4250 return err_mask;
8bf62ece
AL
4251}
4252
1da177e4 4253/**
0cba632b
JG
4254 * ata_sg_clean - Unmap DMA memory associated with command
4255 * @qc: Command containing DMA memory to be released
4256 *
4257 * Unmap all mapped DMA memory associated with this command.
1da177e4
LT
4258 *
4259 * LOCKING:
cca3974e 4260 * spin_lock_irqsave(host lock)
1da177e4 4261 */
70e6ad0c 4262void ata_sg_clean(struct ata_queued_cmd *qc)
1da177e4
LT
4263{
4264 struct ata_port *ap = qc->ap;
ff2aeb1e 4265 struct scatterlist *sg = qc->sg;
1da177e4
LT
4266 int dir = qc->dma_dir;
4267
a4631474 4268 WARN_ON(sg == NULL);
1da177e4 4269
dde20207 4270 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
1da177e4 4271
dde20207
JB
4272 if (qc->n_elem)
4273 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
1da177e4
LT
4274
4275 qc->flags &= ~ATA_QCFLAG_DMAMAP;
ff2aeb1e 4276 qc->sg = NULL;
1da177e4
LT
4277}
4278
1da177e4
LT
4279/**
4280 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4281 * @qc: Metadata associated with taskfile to check
4282 *
780a87f7
JG
4283 * Allow low-level driver to filter ATA PACKET commands, returning
4284 * a status indicating whether or not it is OK to use DMA for the
4285 * supplied PACKET command.
4286 *
1da177e4 4287 * LOCKING:
624d5c51
TH
4288 * spin_lock_irqsave(host lock)
4289 *
4290 * RETURNS: 0 when ATAPI DMA can be used
4291 * nonzero otherwise
4292 */
4293int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4294{
4295 struct ata_port *ap = qc->ap;
71601958 4296
624d5c51
TH
4297 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4298 * few ATAPI devices choke on such DMA requests.
4299 */
4300 if (unlikely(qc->nbytes & 15))
4301 return 1;
e2cec771 4302
624d5c51
TH
4303 if (ap->ops->check_atapi_dma)
4304 return ap->ops->check_atapi_dma(qc);
e2cec771 4305
624d5c51
TH
4306 return 0;
4307}
1da177e4 4308
624d5c51
TH
4309/**
4310 * ata_std_qc_defer - Check whether a qc needs to be deferred
4311 * @qc: ATA command in question
4312 *
4313 * Non-NCQ commands cannot run with any other command, NCQ or
4314 * not. As upper layer only knows the queue depth, we are
4315 * responsible for maintaining exclusion. This function checks
4316 * whether a new command @qc can be issued.
4317 *
4318 * LOCKING:
4319 * spin_lock_irqsave(host lock)
4320 *
4321 * RETURNS:
4322 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4323 */
4324int ata_std_qc_defer(struct ata_queued_cmd *qc)
4325{
4326 struct ata_link *link = qc->dev->link;
e2cec771 4327
624d5c51
TH
4328 if (qc->tf.protocol == ATA_PROT_NCQ) {
4329 if (!ata_tag_valid(link->active_tag))
4330 return 0;
4331 } else {
4332 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4333 return 0;
4334 }
e2cec771 4335
624d5c51
TH
4336 return ATA_DEFER_LINK;
4337}
6912ccd5 4338
624d5c51 4339void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
1da177e4 4340
624d5c51
TH
4341/**
4342 * ata_sg_init - Associate command with scatter-gather table.
4343 * @qc: Command to be associated
4344 * @sg: Scatter-gather table.
4345 * @n_elem: Number of elements in s/g table.
4346 *
4347 * Initialize the data-related elements of queued_cmd @qc
4348 * to point to a scatter-gather table @sg, containing @n_elem
4349 * elements.
4350 *
4351 * LOCKING:
4352 * spin_lock_irqsave(host lock)
4353 */
4354void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4355 unsigned int n_elem)
4356{
4357 qc->sg = sg;
4358 qc->n_elem = n_elem;
4359 qc->cursg = qc->sg;
4360}
bb5cb290 4361
624d5c51
TH
4362/**
4363 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4364 * @qc: Command with scatter-gather table to be mapped.
4365 *
4366 * DMA-map the scatter-gather table associated with queued_cmd @qc.
4367 *
4368 * LOCKING:
4369 * spin_lock_irqsave(host lock)
4370 *
4371 * RETURNS:
4372 * Zero on success, negative on error.
4373 *
4374 */
4375static int ata_sg_setup(struct ata_queued_cmd *qc)
4376{
4377 struct ata_port *ap = qc->ap;
4378 unsigned int n_elem;
1da177e4 4379
624d5c51 4380 VPRINTK("ENTER, ata%u\n", ap->print_id);
e2cec771 4381
624d5c51
TH
4382 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
4383 if (n_elem < 1)
4384 return -1;
bb5cb290 4385
624d5c51 4386 DPRINTK("%d sg elements mapped\n", n_elem);
bb5cb290 4387
624d5c51
TH
4388 qc->n_elem = n_elem;
4389 qc->flags |= ATA_QCFLAG_DMAMAP;
1da177e4 4390
624d5c51 4391 return 0;
1da177e4
LT
4392}
4393
624d5c51
TH
4394/**
4395 * swap_buf_le16 - swap halves of 16-bit words in place
4396 * @buf: Buffer to swap
4397 * @buf_words: Number of 16-bit words in buffer.
4398 *
4399 * Swap halves of 16-bit words if needed to convert from
4400 * little-endian byte order to native cpu byte order, or
4401 * vice-versa.
4402 *
4403 * LOCKING:
4404 * Inherited from caller.
4405 */
4406void swap_buf_le16(u16 *buf, unsigned int buf_words)
8061f5f0 4407{
624d5c51
TH
4408#ifdef __BIG_ENDIAN
4409 unsigned int i;
8061f5f0 4410
624d5c51
TH
4411 for (i = 0; i < buf_words; i++)
4412 buf[i] = le16_to_cpu(buf[i]);
4413#endif /* __BIG_ENDIAN */
8061f5f0
TH
4414}
4415
1da177e4
LT
4416/**
4417 * ata_qc_new - Request an available ATA command, for queueing
4418 * @ap: Port associated with device @dev
4419 * @dev: Device from whom we request an available command structure
4420 *
4421 * LOCKING:
0cba632b 4422 * None.
1da177e4
LT
4423 */
4424
4425static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4426{
4427 struct ata_queued_cmd *qc = NULL;
4428 unsigned int i;
4429
e3180499 4430 /* no command while frozen */
b51e9e5d 4431 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
e3180499
TH
4432 return NULL;
4433
2ab7db1f
TH
4434 /* the last tag is reserved for internal command. */
4435 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
6cec4a39 4436 if (!test_and_set_bit(i, &ap->qc_allocated)) {
f69499f4 4437 qc = __ata_qc_from_tag(ap, i);
1da177e4
LT
4438 break;
4439 }
4440
4441 if (qc)
4442 qc->tag = i;
4443
4444 return qc;
4445}
4446
4447/**
4448 * ata_qc_new_init - Request an available ATA command, and initialize it
1da177e4
LT
4449 * @dev: Device from whom we request an available command structure
4450 *
4451 * LOCKING:
0cba632b 4452 * None.
1da177e4
LT
4453 */
4454
3373efd8 4455struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
1da177e4 4456{
9af5c9c9 4457 struct ata_port *ap = dev->link->ap;
1da177e4
LT
4458 struct ata_queued_cmd *qc;
4459
4460 qc = ata_qc_new(ap);
4461 if (qc) {
1da177e4
LT
4462 qc->scsicmd = NULL;
4463 qc->ap = ap;
4464 qc->dev = dev;
1da177e4 4465
2c13b7ce 4466 ata_qc_reinit(qc);
1da177e4
LT
4467 }
4468
4469 return qc;
4470}
4471
1da177e4
LT
4472/**
4473 * ata_qc_free - free unused ata_queued_cmd
4474 * @qc: Command to complete
4475 *
4476 * Designed to free unused ata_queued_cmd object
4477 * in case something prevents using it.
4478 *
4479 * LOCKING:
cca3974e 4480 * spin_lock_irqsave(host lock)
1da177e4
LT
4481 */
4482void ata_qc_free(struct ata_queued_cmd *qc)
4483{
4ba946e9
TH
4484 struct ata_port *ap = qc->ap;
4485 unsigned int tag;
4486
a4631474 4487 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
1da177e4 4488
4ba946e9
TH
4489 qc->flags = 0;
4490 tag = qc->tag;
4491 if (likely(ata_tag_valid(tag))) {
4ba946e9 4492 qc->tag = ATA_TAG_POISON;
6cec4a39 4493 clear_bit(tag, &ap->qc_allocated);
4ba946e9 4494 }
1da177e4
LT
4495}
4496
76014427 4497void __ata_qc_complete(struct ata_queued_cmd *qc)
1da177e4 4498{
dedaf2b0 4499 struct ata_port *ap = qc->ap;
9af5c9c9 4500 struct ata_link *link = qc->dev->link;
dedaf2b0 4501
a4631474
TH
4502 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4503 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
1da177e4
LT
4504
4505 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4506 ata_sg_clean(qc);
4507
7401abf2 4508 /* command should be marked inactive atomically with qc completion */
da917d69 4509 if (qc->tf.protocol == ATA_PROT_NCQ) {
9af5c9c9 4510 link->sactive &= ~(1 << qc->tag);
da917d69
TH
4511 if (!link->sactive)
4512 ap->nr_active_links--;
4513 } else {
9af5c9c9 4514 link->active_tag = ATA_TAG_POISON;
da917d69
TH
4515 ap->nr_active_links--;
4516 }
4517
4518 /* clear exclusive status */
4519 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
4520 ap->excl_link == link))
4521 ap->excl_link = NULL;
7401abf2 4522
3f3791d3
AL
4523 /* atapi: mark qc as inactive to prevent the interrupt handler
4524 * from completing the command twice later, before the error handler
4525 * is called. (when rc != 0 and atapi request sense is needed)
4526 */
4527 qc->flags &= ~ATA_QCFLAG_ACTIVE;
dedaf2b0 4528 ap->qc_active &= ~(1 << qc->tag);
3f3791d3 4529
1da177e4 4530 /* call completion callback */
77853bf2 4531 qc->complete_fn(qc);
1da177e4
LT
4532}
4533
39599a53
TH
4534static void fill_result_tf(struct ata_queued_cmd *qc)
4535{
4536 struct ata_port *ap = qc->ap;
4537
39599a53 4538 qc->result_tf.flags = qc->tf.flags;
22183bf5 4539 ap->ops->qc_fill_rtf(qc);
39599a53
TH
4540}
4541
00115e0f
TH
4542static void ata_verify_xfer(struct ata_queued_cmd *qc)
4543{
4544 struct ata_device *dev = qc->dev;
4545
4546 if (ata_tag_internal(qc->tag))
4547 return;
4548
4549 if (ata_is_nodata(qc->tf.protocol))
4550 return;
4551
4552 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
4553 return;
4554
4555 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
4556}
4557
f686bcb8
TH
4558/**
4559 * ata_qc_complete - Complete an active ATA command
4560 * @qc: Command to complete
4561 * @err_mask: ATA Status register contents
4562 *
4563 * Indicate to the mid and upper layers that an ATA
4564 * command has completed, with either an ok or not-ok status.
4565 *
4566 * LOCKING:
cca3974e 4567 * spin_lock_irqsave(host lock)
f686bcb8
TH
4568 */
4569void ata_qc_complete(struct ata_queued_cmd *qc)
4570{
4571 struct ata_port *ap = qc->ap;
4572
4573 /* XXX: New EH and old EH use different mechanisms to
4574 * synchronize EH with regular execution path.
4575 *
4576 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4577 * Normal execution path is responsible for not accessing a
4578 * failed qc. libata core enforces the rule by returning NULL
4579 * from ata_qc_from_tag() for failed qcs.
4580 *
4581 * Old EH depends on ata_qc_complete() nullifying completion
4582 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4583 * not synchronize with interrupt handler. Only PIO task is
4584 * taken care of.
4585 */
4586 if (ap->ops->error_handler) {
4dbfa39b
TH
4587 struct ata_device *dev = qc->dev;
4588 struct ata_eh_info *ehi = &dev->link->eh_info;
4589
b51e9e5d 4590 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
f686bcb8
TH
4591
4592 if (unlikely(qc->err_mask))
4593 qc->flags |= ATA_QCFLAG_FAILED;
4594
4595 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4596 if (!ata_tag_internal(qc->tag)) {
4597 /* always fill result TF for failed qc */
39599a53 4598 fill_result_tf(qc);
f686bcb8
TH
4599 ata_qc_schedule_eh(qc);
4600 return;
4601 }
4602 }
4603
4604 /* read result TF if requested */
4605 if (qc->flags & ATA_QCFLAG_RESULT_TF)
39599a53 4606 fill_result_tf(qc);
f686bcb8 4607
4dbfa39b
TH
4608 /* Some commands need post-processing after successful
4609 * completion.
4610 */
4611 switch (qc->tf.command) {
4612 case ATA_CMD_SET_FEATURES:
4613 if (qc->tf.feature != SETFEATURES_WC_ON &&
4614 qc->tf.feature != SETFEATURES_WC_OFF)
4615 break;
4616 /* fall through */
4617 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
4618 case ATA_CMD_SET_MULTI: /* multi_count changed */
4619 /* revalidate device */
4620 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
4621 ata_port_schedule_eh(ap);
4622 break;
054a5fba
TH
4623
4624 case ATA_CMD_SLEEP:
4625 dev->flags |= ATA_DFLAG_SLEEPING;
4626 break;
4dbfa39b
TH
4627 }
4628
00115e0f
TH
4629 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
4630 ata_verify_xfer(qc);
4631
f686bcb8
TH
4632 __ata_qc_complete(qc);
4633 } else {
4634 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4635 return;
4636
4637 /* read result TF if failed or requested */
4638 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
39599a53 4639 fill_result_tf(qc);
f686bcb8
TH
4640
4641 __ata_qc_complete(qc);
4642 }
4643}
4644
dedaf2b0
TH
4645/**
4646 * ata_qc_complete_multiple - Complete multiple qcs successfully
4647 * @ap: port in question
4648 * @qc_active: new qc_active mask
dedaf2b0
TH
4649 *
4650 * Complete in-flight commands. This functions is meant to be
4651 * called from low-level driver's interrupt routine to complete
4652 * requests normally. ap->qc_active and @qc_active is compared
4653 * and commands are completed accordingly.
4654 *
4655 * LOCKING:
cca3974e 4656 * spin_lock_irqsave(host lock)
dedaf2b0
TH
4657 *
4658 * RETURNS:
4659 * Number of completed commands on success, -errno otherwise.
4660 */
79f97dad 4661int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active)
dedaf2b0
TH
4662{
4663 int nr_done = 0;
4664 u32 done_mask;
4665 int i;
4666
4667 done_mask = ap->qc_active ^ qc_active;
4668
4669 if (unlikely(done_mask & qc_active)) {
4670 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4671 "(%08x->%08x)\n", ap->qc_active, qc_active);
4672 return -EINVAL;
4673 }
4674
4675 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4676 struct ata_queued_cmd *qc;
4677
4678 if (!(done_mask & (1 << i)))
4679 continue;
4680
4681 if ((qc = ata_qc_from_tag(ap, i))) {
dedaf2b0
TH
4682 ata_qc_complete(qc);
4683 nr_done++;
4684 }
4685 }
4686
4687 return nr_done;
4688}
4689
1da177e4
LT
4690/**
4691 * ata_qc_issue - issue taskfile to device
4692 * @qc: command to issue to device
4693 *
4694 * Prepare an ATA command to submission to device.
4695 * This includes mapping the data into a DMA-able
4696 * area, filling in the S/G table, and finally
4697 * writing the taskfile to hardware, starting the command.
4698 *
4699 * LOCKING:
cca3974e 4700 * spin_lock_irqsave(host lock)
1da177e4 4701 */
8e0e694a 4702void ata_qc_issue(struct ata_queued_cmd *qc)
1da177e4
LT
4703{
4704 struct ata_port *ap = qc->ap;
9af5c9c9 4705 struct ata_link *link = qc->dev->link;
405e66b3 4706 u8 prot = qc->tf.protocol;
1da177e4 4707
dedaf2b0
TH
4708 /* Make sure only one non-NCQ command is outstanding. The
4709 * check is skipped for old EH because it reuses active qc to
4710 * request ATAPI sense.
4711 */
9af5c9c9 4712 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
dedaf2b0 4713
1973a023 4714 if (ata_is_ncq(prot)) {
9af5c9c9 4715 WARN_ON(link->sactive & (1 << qc->tag));
da917d69
TH
4716
4717 if (!link->sactive)
4718 ap->nr_active_links++;
9af5c9c9 4719 link->sactive |= 1 << qc->tag;
dedaf2b0 4720 } else {
9af5c9c9 4721 WARN_ON(link->sactive);
da917d69
TH
4722
4723 ap->nr_active_links++;
9af5c9c9 4724 link->active_tag = qc->tag;
dedaf2b0
TH
4725 }
4726
e4a70e76 4727 qc->flags |= ATA_QCFLAG_ACTIVE;
dedaf2b0 4728 ap->qc_active |= 1 << qc->tag;
e4a70e76 4729
f92a2636
TH
4730 /* We guarantee to LLDs that they will have at least one
4731 * non-zero sg if the command is a data command.
4732 */
ff2aeb1e 4733 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
f92a2636 4734
405e66b3 4735 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
f92a2636 4736 (ap->flags & ATA_FLAG_PIO_DMA)))
001102d7
TH
4737 if (ata_sg_setup(qc))
4738 goto sg_err;
1da177e4 4739
cf480626 4740 /* if device is sleeping, schedule reset and abort the link */
054a5fba 4741 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
cf480626 4742 link->eh_info.action |= ATA_EH_RESET;
054a5fba
TH
4743 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
4744 ata_link_abort(link);
4745 return;
4746 }
4747
1da177e4
LT
4748 ap->ops->qc_prep(qc);
4749
8e0e694a
TH
4750 qc->err_mask |= ap->ops->qc_issue(qc);
4751 if (unlikely(qc->err_mask))
4752 goto err;
4753 return;
1da177e4 4754
8e436af9 4755sg_err:
8e0e694a
TH
4756 qc->err_mask |= AC_ERR_SYSTEM;
4757err:
4758 ata_qc_complete(qc);
1da177e4
LT
4759}
4760
34bf2170
TH
4761/**
4762 * sata_scr_valid - test whether SCRs are accessible
936fd732 4763 * @link: ATA link to test SCR accessibility for
34bf2170 4764 *
936fd732 4765 * Test whether SCRs are accessible for @link.
34bf2170
TH
4766 *
4767 * LOCKING:
4768 * None.
4769 *
4770 * RETURNS:
4771 * 1 if SCRs are accessible, 0 otherwise.
4772 */
936fd732 4773int sata_scr_valid(struct ata_link *link)
34bf2170 4774{
936fd732
TH
4775 struct ata_port *ap = link->ap;
4776
a16abc0b 4777 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
34bf2170
TH
4778}
4779
4780/**
4781 * sata_scr_read - read SCR register of the specified port
936fd732 4782 * @link: ATA link to read SCR for
34bf2170
TH
4783 * @reg: SCR to read
4784 * @val: Place to store read value
4785 *
936fd732 4786 * Read SCR register @reg of @link into *@val. This function is
633273a3
TH
4787 * guaranteed to succeed if @link is ap->link, the cable type of
4788 * the port is SATA and the port implements ->scr_read.
34bf2170
TH
4789 *
4790 * LOCKING:
633273a3 4791 * None if @link is ap->link. Kernel thread context otherwise.
34bf2170
TH
4792 *
4793 * RETURNS:
4794 * 0 on success, negative errno on failure.
4795 */
936fd732 4796int sata_scr_read(struct ata_link *link, int reg, u32 *val)
34bf2170 4797{
633273a3
TH
4798 if (ata_is_host_link(link)) {
4799 struct ata_port *ap = link->ap;
936fd732 4800
633273a3
TH
4801 if (sata_scr_valid(link))
4802 return ap->ops->scr_read(ap, reg, val);
4803 return -EOPNOTSUPP;
4804 }
4805
4806 return sata_pmp_scr_read(link, reg, val);
34bf2170
TH
4807}
4808
4809/**
4810 * sata_scr_write - write SCR register of the specified port
936fd732 4811 * @link: ATA link to write SCR for
34bf2170
TH
4812 * @reg: SCR to write
4813 * @val: value to write
4814 *
936fd732 4815 * Write @val to SCR register @reg of @link. This function is
633273a3
TH
4816 * guaranteed to succeed if @link is ap->link, the cable type of
4817 * the port is SATA and the port implements ->scr_read.
34bf2170
TH
4818 *
4819 * LOCKING:
633273a3 4820 * None if @link is ap->link. Kernel thread context otherwise.
34bf2170
TH
4821 *
4822 * RETURNS:
4823 * 0 on success, negative errno on failure.
4824 */
936fd732 4825int sata_scr_write(struct ata_link *link, int reg, u32 val)
34bf2170 4826{
633273a3
TH
4827 if (ata_is_host_link(link)) {
4828 struct ata_port *ap = link->ap;
4829
4830 if (sata_scr_valid(link))
4831 return ap->ops->scr_write(ap, reg, val);
4832 return -EOPNOTSUPP;
4833 }
936fd732 4834
633273a3 4835 return sata_pmp_scr_write(link, reg, val);
34bf2170
TH
4836}
4837
4838/**
4839 * sata_scr_write_flush - write SCR register of the specified port and flush
936fd732 4840 * @link: ATA link to write SCR for
34bf2170
TH
4841 * @reg: SCR to write
4842 * @val: value to write
4843 *
4844 * This function is identical to sata_scr_write() except that this
4845 * function performs flush after writing to the register.
4846 *
4847 * LOCKING:
633273a3 4848 * None if @link is ap->link. Kernel thread context otherwise.
34bf2170
TH
4849 *
4850 * RETURNS:
4851 * 0 on success, negative errno on failure.
4852 */
936fd732 4853int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
34bf2170 4854{
633273a3
TH
4855 if (ata_is_host_link(link)) {
4856 struct ata_port *ap = link->ap;
4857 int rc;
da3dbb17 4858
633273a3
TH
4859 if (sata_scr_valid(link)) {
4860 rc = ap->ops->scr_write(ap, reg, val);
4861 if (rc == 0)
4862 rc = ap->ops->scr_read(ap, reg, &val);
4863 return rc;
4864 }
4865 return -EOPNOTSUPP;
34bf2170 4866 }
633273a3
TH
4867
4868 return sata_pmp_scr_write(link, reg, val);
34bf2170
TH
4869}
4870
4871/**
936fd732
TH
4872 * ata_link_online - test whether the given link is online
4873 * @link: ATA link to test
34bf2170 4874 *
936fd732
TH
4875 * Test whether @link is online. Note that this function returns
4876 * 0 if online status of @link cannot be obtained, so
4877 * ata_link_online(link) != !ata_link_offline(link).
34bf2170
TH
4878 *
4879 * LOCKING:
4880 * None.
4881 *
4882 * RETURNS:
4883 * 1 if the port online status is available and online.
4884 */
936fd732 4885int ata_link_online(struct ata_link *link)
34bf2170
TH
4886{
4887 u32 sstatus;
4888
936fd732
TH
4889 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4890 (sstatus & 0xf) == 0x3)
34bf2170
TH
4891 return 1;
4892 return 0;
4893}
4894
4895/**
936fd732
TH
4896 * ata_link_offline - test whether the given link is offline
4897 * @link: ATA link to test
34bf2170 4898 *
936fd732
TH
4899 * Test whether @link is offline. Note that this function
4900 * returns 0 if offline status of @link cannot be obtained, so
4901 * ata_link_online(link) != !ata_link_offline(link).
34bf2170
TH
4902 *
4903 * LOCKING:
4904 * None.
4905 *
4906 * RETURNS:
4907 * 1 if the port offline status is available and offline.
4908 */
936fd732 4909int ata_link_offline(struct ata_link *link)
34bf2170
TH
4910{
4911 u32 sstatus;
4912
936fd732
TH
4913 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4914 (sstatus & 0xf) != 0x3)
34bf2170
TH
4915 return 1;
4916 return 0;
4917}
0baab86b 4918
6ffa01d8 4919#ifdef CONFIG_PM
cca3974e
JG
4920static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
4921 unsigned int action, unsigned int ehi_flags,
4922 int wait)
500530f6
TH
4923{
4924 unsigned long flags;
4925 int i, rc;
4926
cca3974e
JG
4927 for (i = 0; i < host->n_ports; i++) {
4928 struct ata_port *ap = host->ports[i];
e3667ebf 4929 struct ata_link *link;
500530f6
TH
4930
4931 /* Previous resume operation might still be in
4932 * progress. Wait for PM_PENDING to clear.
4933 */
4934 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
4935 ata_port_wait_eh(ap);
4936 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4937 }
4938
4939 /* request PM ops to EH */
4940 spin_lock_irqsave(ap->lock, flags);
4941
4942 ap->pm_mesg = mesg;
4943 if (wait) {
4944 rc = 0;
4945 ap->pm_result = &rc;
4946 }
4947
4948 ap->pflags |= ATA_PFLAG_PM_PENDING;
e3667ebf
TH
4949 __ata_port_for_each_link(link, ap) {
4950 link->eh_info.action |= action;
4951 link->eh_info.flags |= ehi_flags;
4952 }
500530f6
TH
4953
4954 ata_port_schedule_eh(ap);
4955
4956 spin_unlock_irqrestore(ap->lock, flags);
4957
4958 /* wait and check result */
4959 if (wait) {
4960 ata_port_wait_eh(ap);
4961 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4962 if (rc)
4963 return rc;
4964 }
4965 }
4966
4967 return 0;
4968}
4969
4970/**
cca3974e
JG
4971 * ata_host_suspend - suspend host
4972 * @host: host to suspend
500530f6
TH
4973 * @mesg: PM message
4974 *
cca3974e 4975 * Suspend @host. Actual operation is performed by EH. This
500530f6
TH
4976 * function requests EH to perform PM operations and waits for EH
4977 * to finish.
4978 *
4979 * LOCKING:
4980 * Kernel thread context (may sleep).
4981 *
4982 * RETURNS:
4983 * 0 on success, -errno on failure.
4984 */
cca3974e 4985int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
500530f6 4986{
9666f400 4987 int rc;
500530f6 4988
ca77329f
KCA
4989 /*
4990 * disable link pm on all ports before requesting
4991 * any pm activity
4992 */
4993 ata_lpm_enable(host);
4994
cca3974e 4995 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
72ad6ec4
JG
4996 if (rc == 0)
4997 host->dev->power.power_state = mesg;
500530f6
TH
4998 return rc;
4999}
5000
5001/**
cca3974e
JG
5002 * ata_host_resume - resume host
5003 * @host: host to resume
500530f6 5004 *
cca3974e 5005 * Resume @host. Actual operation is performed by EH. This
500530f6
TH
5006 * function requests EH to perform PM operations and returns.
5007 * Note that all resume operations are performed parallely.
5008 *
5009 * LOCKING:
5010 * Kernel thread context (may sleep).
5011 */
cca3974e 5012void ata_host_resume(struct ata_host *host)
500530f6 5013{
cf480626 5014 ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET,
cca3974e 5015 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
72ad6ec4 5016 host->dev->power.power_state = PMSG_ON;
ca77329f
KCA
5017
5018 /* reenable link pm */
5019 ata_lpm_disable(host);
500530f6 5020}
6ffa01d8 5021#endif
500530f6 5022
c893a3ae
RD
5023/**
5024 * ata_port_start - Set port up for dma.
5025 * @ap: Port to initialize
5026 *
5027 * Called just after data structures for each port are
5028 * initialized. Allocates space for PRD table.
5029 *
5030 * May be used as the port_start() entry in ata_port_operations.
5031 *
5032 * LOCKING:
5033 * Inherited from caller.
5034 */
f0d36efd 5035int ata_port_start(struct ata_port *ap)
1da177e4 5036{
2f1f610b 5037 struct device *dev = ap->dev;
1da177e4 5038
f0d36efd
TH
5039 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5040 GFP_KERNEL);
1da177e4
LT
5041 if (!ap->prd)
5042 return -ENOMEM;
5043
1da177e4
LT
5044 return 0;
5045}
5046
3ef3b43d
TH
5047/**
5048 * ata_dev_init - Initialize an ata_device structure
5049 * @dev: Device structure to initialize
5050 *
5051 * Initialize @dev in preparation for probing.
5052 *
5053 * LOCKING:
5054 * Inherited from caller.
5055 */
5056void ata_dev_init(struct ata_device *dev)
5057{
9af5c9c9
TH
5058 struct ata_link *link = dev->link;
5059 struct ata_port *ap = link->ap;
72fa4b74
TH
5060 unsigned long flags;
5061
5a04bf4b 5062 /* SATA spd limit is bound to the first device */
9af5c9c9
TH
5063 link->sata_spd_limit = link->hw_sata_spd_limit;
5064 link->sata_spd = 0;
5a04bf4b 5065
72fa4b74
TH
5066 /* High bits of dev->flags are used to record warm plug
5067 * requests which occur asynchronously. Synchronize using
cca3974e 5068 * host lock.
72fa4b74 5069 */
ba6a1308 5070 spin_lock_irqsave(ap->lock, flags);
72fa4b74 5071 dev->flags &= ~ATA_DFLAG_INIT_MASK;
3dcc323f 5072 dev->horkage = 0;
ba6a1308 5073 spin_unlock_irqrestore(ap->lock, flags);
3ef3b43d 5074
72fa4b74
TH
5075 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5076 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
3ef3b43d
TH
5077 dev->pio_mask = UINT_MAX;
5078 dev->mwdma_mask = UINT_MAX;
5079 dev->udma_mask = UINT_MAX;
5080}
5081
4fb37a25
TH
5082/**
5083 * ata_link_init - Initialize an ata_link structure
5084 * @ap: ATA port link is attached to
5085 * @link: Link structure to initialize
8989805d 5086 * @pmp: Port multiplier port number
4fb37a25
TH
5087 *
5088 * Initialize @link.
5089 *
5090 * LOCKING:
5091 * Kernel thread context (may sleep)
5092 */
fb7fd614 5093void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
4fb37a25
TH
5094{
5095 int i;
5096
5097 /* clear everything except for devices */
5098 memset(link, 0, offsetof(struct ata_link, device[0]));
5099
5100 link->ap = ap;
8989805d 5101 link->pmp = pmp;
4fb37a25
TH
5102 link->active_tag = ATA_TAG_POISON;
5103 link->hw_sata_spd_limit = UINT_MAX;
5104
5105 /* can't use iterator, ap isn't initialized yet */
5106 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5107 struct ata_device *dev = &link->device[i];
5108
5109 dev->link = link;
5110 dev->devno = dev - link->device;
5111 ata_dev_init(dev);
5112 }
5113}
5114
5115/**
5116 * sata_link_init_spd - Initialize link->sata_spd_limit
5117 * @link: Link to configure sata_spd_limit for
5118 *
5119 * Initialize @link->[hw_]sata_spd_limit to the currently
5120 * configured value.
5121 *
5122 * LOCKING:
5123 * Kernel thread context (may sleep).
5124 *
5125 * RETURNS:
5126 * 0 on success, -errno on failure.
5127 */
fb7fd614 5128int sata_link_init_spd(struct ata_link *link)
4fb37a25 5129{
33267325
TH
5130 u32 scontrol;
5131 u8 spd;
4fb37a25
TH
5132 int rc;
5133
5134 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
5135 if (rc)
5136 return rc;
5137
5138 spd = (scontrol >> 4) & 0xf;
5139 if (spd)
5140 link->hw_sata_spd_limit &= (1 << spd) - 1;
5141
33267325
TH
5142 ata_force_spd_limit(link);
5143
4fb37a25
TH
5144 link->sata_spd_limit = link->hw_sata_spd_limit;
5145
5146 return 0;
5147}
5148
1da177e4 5149/**
f3187195
TH
5150 * ata_port_alloc - allocate and initialize basic ATA port resources
5151 * @host: ATA host this allocated port belongs to
1da177e4 5152 *
f3187195
TH
5153 * Allocate and initialize basic ATA port resources.
5154 *
5155 * RETURNS:
5156 * Allocate ATA port on success, NULL on failure.
0cba632b 5157 *
1da177e4 5158 * LOCKING:
f3187195 5159 * Inherited from calling layer (may sleep).
1da177e4 5160 */
f3187195 5161struct ata_port *ata_port_alloc(struct ata_host *host)
1da177e4 5162{
f3187195 5163 struct ata_port *ap;
1da177e4 5164
f3187195
TH
5165 DPRINTK("ENTER\n");
5166
5167 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5168 if (!ap)
5169 return NULL;
5170
f4d6d004 5171 ap->pflags |= ATA_PFLAG_INITIALIZING;
cca3974e 5172 ap->lock = &host->lock;
198e0fed 5173 ap->flags = ATA_FLAG_DISABLED;
f3187195 5174 ap->print_id = -1;
1da177e4 5175 ap->ctl = ATA_DEVCTL_OBS;
cca3974e 5176 ap->host = host;
f3187195 5177 ap->dev = host->dev;
1da177e4 5178 ap->last_ctl = 0xFF;
bd5d825c
BP
5179
5180#if defined(ATA_VERBOSE_DEBUG)
5181 /* turn on all debugging levels */
5182 ap->msg_enable = 0x00FF;
5183#elif defined(ATA_DEBUG)
5184 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR;
88574551 5185#else
0dd4b21f 5186 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
bd5d825c 5187#endif
1da177e4 5188
127102ae 5189#ifdef CONFIG_ATA_SFF
442eacc3 5190 INIT_DELAYED_WORK(&ap->port_task, ata_pio_task);
127102ae 5191#endif
65f27f38
DH
5192 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5193 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
a72ec4ce 5194 INIT_LIST_HEAD(&ap->eh_done_q);
c6cf9e99 5195 init_waitqueue_head(&ap->eh_wait_q);
5ddf24c5
TH
5196 init_timer_deferrable(&ap->fastdrain_timer);
5197 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
5198 ap->fastdrain_timer.data = (unsigned long)ap;
1da177e4 5199
838df628 5200 ap->cbl = ATA_CBL_NONE;
838df628 5201
8989805d 5202 ata_link_init(ap, &ap->link, 0);
1da177e4
LT
5203
5204#ifdef ATA_IRQ_TRAP
5205 ap->stats.unhandled_irq = 1;
5206 ap->stats.idle_irq = 1;
5207#endif
1da177e4 5208 return ap;
1da177e4
LT
5209}
5210
f0d36efd
TH
5211static void ata_host_release(struct device *gendev, void *res)
5212{
5213 struct ata_host *host = dev_get_drvdata(gendev);
5214 int i;
5215
1aa506e4
TH
5216 for (i = 0; i < host->n_ports; i++) {
5217 struct ata_port *ap = host->ports[i];
5218
4911487a
TH
5219 if (!ap)
5220 continue;
5221
5222 if (ap->scsi_host)
1aa506e4
TH
5223 scsi_host_put(ap->scsi_host);
5224
633273a3 5225 kfree(ap->pmp_link);
4911487a 5226 kfree(ap);
1aa506e4
TH
5227 host->ports[i] = NULL;
5228 }
5229
1aa56cca 5230 dev_set_drvdata(gendev, NULL);
f0d36efd
TH
5231}
5232
f3187195
TH
5233/**
5234 * ata_host_alloc - allocate and init basic ATA host resources
5235 * @dev: generic device this host is associated with
5236 * @max_ports: maximum number of ATA ports associated with this host
5237 *
5238 * Allocate and initialize basic ATA host resources. LLD calls
5239 * this function to allocate a host, initializes it fully and
5240 * attaches it using ata_host_register().
5241 *
5242 * @max_ports ports are allocated and host->n_ports is
5243 * initialized to @max_ports. The caller is allowed to decrease
5244 * host->n_ports before calling ata_host_register(). The unused
5245 * ports will be automatically freed on registration.
5246 *
5247 * RETURNS:
5248 * Allocate ATA host on success, NULL on failure.
5249 *
5250 * LOCKING:
5251 * Inherited from calling layer (may sleep).
5252 */
5253struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
5254{
5255 struct ata_host *host;
5256 size_t sz;
5257 int i;
5258
5259 DPRINTK("ENTER\n");
5260
5261 if (!devres_open_group(dev, NULL, GFP_KERNEL))
5262 return NULL;
5263
5264 /* alloc a container for our list of ATA ports (buses) */
5265 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
5266 /* alloc a container for our list of ATA ports (buses) */
5267 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
5268 if (!host)
5269 goto err_out;
5270
5271 devres_add(dev, host);
5272 dev_set_drvdata(dev, host);
5273
5274 spin_lock_init(&host->lock);
5275 host->dev = dev;
5276 host->n_ports = max_ports;
5277
5278 /* allocate ports bound to this host */
5279 for (i = 0; i < max_ports; i++) {
5280 struct ata_port *ap;
5281
5282 ap = ata_port_alloc(host);
5283 if (!ap)
5284 goto err_out;
5285
5286 ap->port_no = i;
5287 host->ports[i] = ap;
5288 }
5289
5290 devres_remove_group(dev, NULL);
5291 return host;
5292
5293 err_out:
5294 devres_release_group(dev, NULL);
5295 return NULL;
5296}
5297
f5cda257
TH
5298/**
5299 * ata_host_alloc_pinfo - alloc host and init with port_info array
5300 * @dev: generic device this host is associated with
5301 * @ppi: array of ATA port_info to initialize host with
5302 * @n_ports: number of ATA ports attached to this host
5303 *
5304 * Allocate ATA host and initialize with info from @ppi. If NULL
5305 * terminated, @ppi may contain fewer entries than @n_ports. The
5306 * last entry will be used for the remaining ports.
5307 *
5308 * RETURNS:
5309 * Allocate ATA host on success, NULL on failure.
5310 *
5311 * LOCKING:
5312 * Inherited from calling layer (may sleep).
5313 */
5314struct ata_host *ata_host_alloc_pinfo(struct device *dev,
5315 const struct ata_port_info * const * ppi,
5316 int n_ports)
5317{
5318 const struct ata_port_info *pi;
5319 struct ata_host *host;
5320 int i, j;
5321
5322 host = ata_host_alloc(dev, n_ports);
5323 if (!host)
5324 return NULL;
5325
5326 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
5327 struct ata_port *ap = host->ports[i];
5328
5329 if (ppi[j])
5330 pi = ppi[j++];
5331
5332 ap->pio_mask = pi->pio_mask;
5333 ap->mwdma_mask = pi->mwdma_mask;
5334 ap->udma_mask = pi->udma_mask;
5335 ap->flags |= pi->flags;
0c88758b 5336 ap->link.flags |= pi->link_flags;
f5cda257
TH
5337 ap->ops = pi->port_ops;
5338
5339 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
5340 host->ops = pi->port_ops;
f5cda257
TH
5341 }
5342
5343 return host;
5344}
5345
32ebbc0c
TH
5346static void ata_host_stop(struct device *gendev, void *res)
5347{
5348 struct ata_host *host = dev_get_drvdata(gendev);
5349 int i;
5350
5351 WARN_ON(!(host->flags & ATA_HOST_STARTED));
5352
5353 for (i = 0; i < host->n_ports; i++) {
5354 struct ata_port *ap = host->ports[i];
5355
5356 if (ap->ops->port_stop)
5357 ap->ops->port_stop(ap);
5358 }
5359
5360 if (host->ops->host_stop)
5361 host->ops->host_stop(host);
5362}
5363
029cfd6b
TH
5364/**
5365 * ata_finalize_port_ops - finalize ata_port_operations
5366 * @ops: ata_port_operations to finalize
5367 *
5368 * An ata_port_operations can inherit from another ops and that
5369 * ops can again inherit from another. This can go on as many
5370 * times as necessary as long as there is no loop in the
5371 * inheritance chain.
5372 *
5373 * Ops tables are finalized when the host is started. NULL or
5374 * unspecified entries are inherited from the closet ancestor
5375 * which has the method and the entry is populated with it.
5376 * After finalization, the ops table directly points to all the
5377 * methods and ->inherits is no longer necessary and cleared.
5378 *
5379 * Using ATA_OP_NULL, inheriting ops can force a method to NULL.
5380 *
5381 * LOCKING:
5382 * None.
5383 */
5384static void ata_finalize_port_ops(struct ata_port_operations *ops)
5385{
5386 static spinlock_t lock = SPIN_LOCK_UNLOCKED;
5387 const struct ata_port_operations *cur;
5388 void **begin = (void **)ops;
5389 void **end = (void **)&ops->inherits;
5390 void **pp;
5391
5392 if (!ops || !ops->inherits)
5393 return;
5394
5395 spin_lock(&lock);
5396
5397 for (cur = ops->inherits; cur; cur = cur->inherits) {
5398 void **inherit = (void **)cur;
5399
5400 for (pp = begin; pp < end; pp++, inherit++)
5401 if (!*pp)
5402 *pp = *inherit;
5403 }
5404
5405 for (pp = begin; pp < end; pp++)
5406 if (IS_ERR(*pp))
5407 *pp = NULL;
5408
5409 ops->inherits = NULL;
5410
5411 spin_unlock(&lock);
5412}
5413
ecef7253
TH
5414/**
5415 * ata_host_start - start and freeze ports of an ATA host
5416 * @host: ATA host to start ports for
5417 *
5418 * Start and then freeze ports of @host. Started status is
5419 * recorded in host->flags, so this function can be called
5420 * multiple times. Ports are guaranteed to get started only
f3187195
TH
5421 * once. If host->ops isn't initialized yet, its set to the
5422 * first non-dummy port ops.
ecef7253
TH
5423 *
5424 * LOCKING:
5425 * Inherited from calling layer (may sleep).
5426 *
5427 * RETURNS:
5428 * 0 if all ports are started successfully, -errno otherwise.
5429 */
5430int ata_host_start(struct ata_host *host)
5431{
32ebbc0c
TH
5432 int have_stop = 0;
5433 void *start_dr = NULL;
ecef7253
TH
5434 int i, rc;
5435
5436 if (host->flags & ATA_HOST_STARTED)
5437 return 0;
5438
029cfd6b
TH
5439 ata_finalize_port_ops(host->ops);
5440
ecef7253
TH
5441 for (i = 0; i < host->n_ports; i++) {
5442 struct ata_port *ap = host->ports[i];
5443
029cfd6b
TH
5444 ata_finalize_port_ops(ap->ops);
5445
f3187195
TH
5446 if (!host->ops && !ata_port_is_dummy(ap))
5447 host->ops = ap->ops;
5448
32ebbc0c
TH
5449 if (ap->ops->port_stop)
5450 have_stop = 1;
5451 }
5452
5453 if (host->ops->host_stop)
5454 have_stop = 1;
5455
5456 if (have_stop) {
5457 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
5458 if (!start_dr)
5459 return -ENOMEM;
5460 }
5461
5462 for (i = 0; i < host->n_ports; i++) {
5463 struct ata_port *ap = host->ports[i];
5464
ecef7253
TH
5465 if (ap->ops->port_start) {
5466 rc = ap->ops->port_start(ap);
5467 if (rc) {
0f9fe9b7 5468 if (rc != -ENODEV)
0f757743
AM
5469 dev_printk(KERN_ERR, host->dev,
5470 "failed to start port %d "
5471 "(errno=%d)\n", i, rc);
ecef7253
TH
5472 goto err_out;
5473 }
5474 }
ecef7253
TH
5475 ata_eh_freeze_port(ap);
5476 }
5477
32ebbc0c
TH
5478 if (start_dr)
5479 devres_add(host->dev, start_dr);
ecef7253
TH
5480 host->flags |= ATA_HOST_STARTED;
5481 return 0;
5482
5483 err_out:
5484 while (--i >= 0) {
5485 struct ata_port *ap = host->ports[i];
5486
5487 if (ap->ops->port_stop)
5488 ap->ops->port_stop(ap);
5489 }
32ebbc0c 5490 devres_free(start_dr);
ecef7253
TH
5491 return rc;
5492}
5493
b03732f0 5494/**
cca3974e
JG
5495 * ata_sas_host_init - Initialize a host struct
5496 * @host: host to initialize
5497 * @dev: device host is attached to
5498 * @flags: host flags
5499 * @ops: port_ops
b03732f0
BK
5500 *
5501 * LOCKING:
5502 * PCI/etc. bus probe sem.
5503 *
5504 */
f3187195 5505/* KILLME - the only user left is ipr */
cca3974e 5506void ata_host_init(struct ata_host *host, struct device *dev,
029cfd6b 5507 unsigned long flags, struct ata_port_operations *ops)
b03732f0 5508{
cca3974e
JG
5509 spin_lock_init(&host->lock);
5510 host->dev = dev;
5511 host->flags = flags;
5512 host->ops = ops;
b03732f0
BK
5513}
5514
f3187195
TH
5515/**
5516 * ata_host_register - register initialized ATA host
5517 * @host: ATA host to register
5518 * @sht: template for SCSI host
5519 *
5520 * Register initialized ATA host. @host is allocated using
5521 * ata_host_alloc() and fully initialized by LLD. This function
5522 * starts ports, registers @host with ATA and SCSI layers and
5523 * probe registered devices.
5524 *
5525 * LOCKING:
5526 * Inherited from calling layer (may sleep).
5527 *
5528 * RETURNS:
5529 * 0 on success, -errno otherwise.
5530 */
5531int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
5532{
5533 int i, rc;
5534
5535 /* host must have been started */
5536 if (!(host->flags & ATA_HOST_STARTED)) {
5537 dev_printk(KERN_ERR, host->dev,
5538 "BUG: trying to register unstarted host\n");
5539 WARN_ON(1);
5540 return -EINVAL;
5541 }
5542
5543 /* Blow away unused ports. This happens when LLD can't
5544 * determine the exact number of ports to allocate at
5545 * allocation time.
5546 */
5547 for (i = host->n_ports; host->ports[i]; i++)
5548 kfree(host->ports[i]);
5549
5550 /* give ports names and add SCSI hosts */
5551 for (i = 0; i < host->n_ports; i++)
5552 host->ports[i]->print_id = ata_print_id++;
5553
5554 rc = ata_scsi_add_hosts(host, sht);
5555 if (rc)
5556 return rc;
5557
fafbae87
TH
5558 /* associate with ACPI nodes */
5559 ata_acpi_associate(host);
5560
f3187195
TH
5561 /* set cable, sata_spd_limit and report */
5562 for (i = 0; i < host->n_ports; i++) {
5563 struct ata_port *ap = host->ports[i];
f3187195
TH
5564 unsigned long xfer_mask;
5565
5566 /* set SATA cable type if still unset */
5567 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
5568 ap->cbl = ATA_CBL_SATA;
5569
5570 /* init sata_spd_limit to the current value */
4fb37a25 5571 sata_link_init_spd(&ap->link);
f3187195 5572
cbcdd875 5573 /* print per-port info to dmesg */
f3187195
TH
5574 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
5575 ap->udma_mask);
5576
abf6e8ed 5577 if (!ata_port_is_dummy(ap)) {
cbcdd875
TH
5578 ata_port_printk(ap, KERN_INFO,
5579 "%cATA max %s %s\n",
a16abc0b 5580 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
f3187195 5581 ata_mode_string(xfer_mask),
cbcdd875 5582 ap->link.eh_info.desc);
abf6e8ed
TH
5583 ata_ehi_clear_desc(&ap->link.eh_info);
5584 } else
f3187195
TH
5585 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
5586 }
5587
5588 /* perform each probe synchronously */
5589 DPRINTK("probe begin\n");
5590 for (i = 0; i < host->n_ports; i++) {
5591 struct ata_port *ap = host->ports[i];
f3187195
TH
5592
5593 /* probe */
5594 if (ap->ops->error_handler) {
9af5c9c9 5595 struct ata_eh_info *ehi = &ap->link.eh_info;
f3187195
TH
5596 unsigned long flags;
5597
5598 ata_port_probe(ap);
5599
5600 /* kick EH for boot probing */
5601 spin_lock_irqsave(ap->lock, flags);
5602
b558eddd 5603 ehi->probe_mask |= ATA_ALL_DEVICES;
cf480626 5604 ehi->action |= ATA_EH_RESET;
f3187195
TH
5605 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
5606
f4d6d004 5607 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
f3187195
TH
5608 ap->pflags |= ATA_PFLAG_LOADING;
5609 ata_port_schedule_eh(ap);
5610
5611 spin_unlock_irqrestore(ap->lock, flags);
5612
5613 /* wait for EH to finish */
5614 ata_port_wait_eh(ap);
5615 } else {
5616 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
5617 rc = ata_bus_probe(ap);
5618 DPRINTK("ata%u: bus probe end\n", ap->print_id);
5619
5620 if (rc) {
5621 /* FIXME: do something useful here?
5622 * Current libata behavior will
5623 * tear down everything when
5624 * the module is removed
5625 * or the h/w is unplugged.
5626 */
5627 }
5628 }
5629 }
5630
5631 /* probes are done, now scan each port's disk(s) */
5632 DPRINTK("host probe begin\n");
5633 for (i = 0; i < host->n_ports; i++) {
5634 struct ata_port *ap = host->ports[i];
5635
1ae46317 5636 ata_scsi_scan_host(ap, 1);
ca77329f 5637 ata_lpm_schedule(ap, ap->pm_policy);
f3187195
TH
5638 }
5639
5640 return 0;
5641}
5642
f5cda257
TH
5643/**
5644 * ata_host_activate - start host, request IRQ and register it
5645 * @host: target ATA host
5646 * @irq: IRQ to request
5647 * @irq_handler: irq_handler used when requesting IRQ
5648 * @irq_flags: irq_flags used when requesting IRQ
5649 * @sht: scsi_host_template to use when registering the host
5650 *
5651 * After allocating an ATA host and initializing it, most libata
5652 * LLDs perform three steps to activate the host - start host,
5653 * request IRQ and register it. This helper takes necessasry
5654 * arguments and performs the three steps in one go.
5655 *
3d46b2e2
PM
5656 * An invalid IRQ skips the IRQ registration and expects the host to
5657 * have set polling mode on the port. In this case, @irq_handler
5658 * should be NULL.
5659 *
f5cda257
TH
5660 * LOCKING:
5661 * Inherited from calling layer (may sleep).
5662 *
5663 * RETURNS:
5664 * 0 on success, -errno otherwise.
5665 */
5666int ata_host_activate(struct ata_host *host, int irq,
5667 irq_handler_t irq_handler, unsigned long irq_flags,
5668 struct scsi_host_template *sht)
5669{
cbcdd875 5670 int i, rc;
f5cda257
TH
5671
5672 rc = ata_host_start(host);
5673 if (rc)
5674 return rc;
5675
3d46b2e2
PM
5676 /* Special case for polling mode */
5677 if (!irq) {
5678 WARN_ON(irq_handler);
5679 return ata_host_register(host, sht);
5680 }
5681
f5cda257
TH
5682 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
5683 dev_driver_string(host->dev), host);
5684 if (rc)
5685 return rc;
5686
cbcdd875
TH
5687 for (i = 0; i < host->n_ports; i++)
5688 ata_port_desc(host->ports[i], "irq %d", irq);
4031826b 5689
f5cda257
TH
5690 rc = ata_host_register(host, sht);
5691 /* if failed, just free the IRQ and leave ports alone */
5692 if (rc)
5693 devm_free_irq(host->dev, irq, host);
5694
5695 return rc;
5696}
5697
720ba126
TH
5698/**
5699 * ata_port_detach - Detach ATA port in prepration of device removal
5700 * @ap: ATA port to be detached
5701 *
5702 * Detach all ATA devices and the associated SCSI devices of @ap;
5703 * then, remove the associated SCSI host. @ap is guaranteed to
5704 * be quiescent on return from this function.
5705 *
5706 * LOCKING:
5707 * Kernel thread context (may sleep).
5708 */
741b7763 5709static void ata_port_detach(struct ata_port *ap)
720ba126
TH
5710{
5711 unsigned long flags;
41bda9c9 5712 struct ata_link *link;
f58229f8 5713 struct ata_device *dev;
720ba126
TH
5714
5715 if (!ap->ops->error_handler)
c3cf30a9 5716 goto skip_eh;
720ba126
TH
5717
5718 /* tell EH we're leaving & flush EH */
ba6a1308 5719 spin_lock_irqsave(ap->lock, flags);
b51e9e5d 5720 ap->pflags |= ATA_PFLAG_UNLOADING;
ba6a1308 5721 spin_unlock_irqrestore(ap->lock, flags);
720ba126
TH
5722
5723 ata_port_wait_eh(ap);
5724
7f9ad9b8
TH
5725 /* EH is now guaranteed to see UNLOADING - EH context belongs
5726 * to us. Disable all existing devices.
720ba126 5727 */
41bda9c9
TH
5728 ata_port_for_each_link(link, ap) {
5729 ata_link_for_each_dev(dev, link)
5730 ata_dev_disable(dev);
5731 }
720ba126 5732
720ba126
TH
5733 /* Final freeze & EH. All in-flight commands are aborted. EH
5734 * will be skipped and retrials will be terminated with bad
5735 * target.
5736 */
ba6a1308 5737 spin_lock_irqsave(ap->lock, flags);
720ba126 5738 ata_port_freeze(ap); /* won't be thawed */
ba6a1308 5739 spin_unlock_irqrestore(ap->lock, flags);
720ba126
TH
5740
5741 ata_port_wait_eh(ap);
45a66c1c 5742 cancel_rearming_delayed_work(&ap->hotplug_task);
720ba126 5743
c3cf30a9 5744 skip_eh:
720ba126 5745 /* remove the associated SCSI host */
cca3974e 5746 scsi_remove_host(ap->scsi_host);
720ba126
TH
5747}
5748
0529c159
TH
5749/**
5750 * ata_host_detach - Detach all ports of an ATA host
5751 * @host: Host to detach
5752 *
5753 * Detach all ports of @host.
5754 *
5755 * LOCKING:
5756 * Kernel thread context (may sleep).
5757 */
5758void ata_host_detach(struct ata_host *host)
5759{
5760 int i;
5761
5762 for (i = 0; i < host->n_ports; i++)
5763 ata_port_detach(host->ports[i]);
562f0c2d
TH
5764
5765 /* the host is dead now, dissociate ACPI */
5766 ata_acpi_dissociate(host);
0529c159
TH
5767}
5768
374b1873
JG
5769#ifdef CONFIG_PCI
5770
1da177e4
LT
5771/**
5772 * ata_pci_remove_one - PCI layer callback for device removal
5773 * @pdev: PCI device that was removed
5774 *
b878ca5d
TH
5775 * PCI layer indicates to libata via this hook that hot-unplug or
5776 * module unload event has occurred. Detach all ports. Resource
5777 * release is handled via devres.
1da177e4
LT
5778 *
5779 * LOCKING:
5780 * Inherited from PCI layer (may sleep).
5781 */
f0d36efd 5782void ata_pci_remove_one(struct pci_dev *pdev)
1da177e4 5783{
2855568b 5784 struct device *dev = &pdev->dev;
cca3974e 5785 struct ata_host *host = dev_get_drvdata(dev);
1da177e4 5786
b878ca5d 5787 ata_host_detach(host);
1da177e4
LT
5788}
5789
5790/* move to PCI subsystem */
057ace5e 5791int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
1da177e4
LT
5792{
5793 unsigned long tmp = 0;
5794
5795 switch (bits->width) {
5796 case 1: {
5797 u8 tmp8 = 0;
5798 pci_read_config_byte(pdev, bits->reg, &tmp8);
5799 tmp = tmp8;
5800 break;
5801 }
5802 case 2: {
5803 u16 tmp16 = 0;
5804 pci_read_config_word(pdev, bits->reg, &tmp16);
5805 tmp = tmp16;
5806 break;
5807 }
5808 case 4: {
5809 u32 tmp32 = 0;
5810 pci_read_config_dword(pdev, bits->reg, &tmp32);
5811 tmp = tmp32;
5812 break;
5813 }
5814
5815 default:
5816 return -EINVAL;
5817 }
5818
5819 tmp &= bits->mask;
5820
5821 return (tmp == bits->val) ? 1 : 0;
5822}
9b847548 5823
6ffa01d8 5824#ifdef CONFIG_PM
3c5100c1 5825void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
9b847548
JA
5826{
5827 pci_save_state(pdev);
4c90d971 5828 pci_disable_device(pdev);
500530f6 5829
3a2d5b70 5830 if (mesg.event & PM_EVENT_SLEEP)
500530f6 5831 pci_set_power_state(pdev, PCI_D3hot);
9b847548
JA
5832}
5833
553c4aa6 5834int ata_pci_device_do_resume(struct pci_dev *pdev)
9b847548 5835{
553c4aa6
TH
5836 int rc;
5837
9b847548
JA
5838 pci_set_power_state(pdev, PCI_D0);
5839 pci_restore_state(pdev);
553c4aa6 5840
b878ca5d 5841 rc = pcim_enable_device(pdev);
553c4aa6
TH
5842 if (rc) {
5843 dev_printk(KERN_ERR, &pdev->dev,
5844 "failed to enable device after resume (%d)\n", rc);
5845 return rc;
5846 }
5847
9b847548 5848 pci_set_master(pdev);
553c4aa6 5849 return 0;
500530f6
TH
5850}
5851
3c5100c1 5852int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
500530f6 5853{
cca3974e 5854 struct ata_host *host = dev_get_drvdata(&pdev->dev);
500530f6
TH
5855 int rc = 0;
5856
cca3974e 5857 rc = ata_host_suspend(host, mesg);
500530f6
TH
5858 if (rc)
5859 return rc;
5860
3c5100c1 5861 ata_pci_device_do_suspend(pdev, mesg);
500530f6
TH
5862
5863 return 0;
5864}
5865
5866int ata_pci_device_resume(struct pci_dev *pdev)
5867{
cca3974e 5868 struct ata_host *host = dev_get_drvdata(&pdev->dev);
553c4aa6 5869 int rc;
500530f6 5870
553c4aa6
TH
5871 rc = ata_pci_device_do_resume(pdev);
5872 if (rc == 0)
5873 ata_host_resume(host);
5874 return rc;
9b847548 5875}
6ffa01d8
TH
5876#endif /* CONFIG_PM */
5877
1da177e4
LT
5878#endif /* CONFIG_PCI */
5879
33267325
TH
5880static int __init ata_parse_force_one(char **cur,
5881 struct ata_force_ent *force_ent,
5882 const char **reason)
5883{
5884 /* FIXME: Currently, there's no way to tag init const data and
5885 * using __initdata causes build failure on some versions of
5886 * gcc. Once __initdataconst is implemented, add const to the
5887 * following structure.
5888 */
5889 static struct ata_force_param force_tbl[] __initdata = {
5890 { "40c", .cbl = ATA_CBL_PATA40 },
5891 { "80c", .cbl = ATA_CBL_PATA80 },
5892 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
5893 { "unk", .cbl = ATA_CBL_PATA_UNK },
5894 { "ign", .cbl = ATA_CBL_PATA_IGN },
5895 { "sata", .cbl = ATA_CBL_SATA },
5896 { "1.5Gbps", .spd_limit = 1 },
5897 { "3.0Gbps", .spd_limit = 2 },
5898 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
5899 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
5900 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
5901 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
5902 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
5903 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
5904 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
5905 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
5906 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
5907 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
5908 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
5909 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
5910 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
5911 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
5912 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5913 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5914 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5915 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5916 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5917 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5918 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5919 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5920 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5921 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5922 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5923 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5924 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5925 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5926 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5927 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5928 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5929 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5930 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5931 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5932 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5933 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
5934 };
5935 char *start = *cur, *p = *cur;
5936 char *id, *val, *endp;
5937 const struct ata_force_param *match_fp = NULL;
5938 int nr_matches = 0, i;
5939
5940 /* find where this param ends and update *cur */
5941 while (*p != '\0' && *p != ',')
5942 p++;
5943
5944 if (*p == '\0')
5945 *cur = p;
5946 else
5947 *cur = p + 1;
5948
5949 *p = '\0';
5950
5951 /* parse */
5952 p = strchr(start, ':');
5953 if (!p) {
5954 val = strstrip(start);
5955 goto parse_val;
5956 }
5957 *p = '\0';
5958
5959 id = strstrip(start);
5960 val = strstrip(p + 1);
5961
5962 /* parse id */
5963 p = strchr(id, '.');
5964 if (p) {
5965 *p++ = '\0';
5966 force_ent->device = simple_strtoul(p, &endp, 10);
5967 if (p == endp || *endp != '\0') {
5968 *reason = "invalid device";
5969 return -EINVAL;
5970 }
5971 }
5972
5973 force_ent->port = simple_strtoul(id, &endp, 10);
5974 if (p == endp || *endp != '\0') {
5975 *reason = "invalid port/link";
5976 return -EINVAL;
5977 }
5978
5979 parse_val:
5980 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
5981 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
5982 const struct ata_force_param *fp = &force_tbl[i];
5983
5984 if (strncasecmp(val, fp->name, strlen(val)))
5985 continue;
5986
5987 nr_matches++;
5988 match_fp = fp;
5989
5990 if (strcasecmp(val, fp->name) == 0) {
5991 nr_matches = 1;
5992 break;
5993 }
5994 }
5995
5996 if (!nr_matches) {
5997 *reason = "unknown value";
5998 return -EINVAL;
5999 }
6000 if (nr_matches > 1) {
6001 *reason = "ambigious value";
6002 return -EINVAL;
6003 }
6004
6005 force_ent->param = *match_fp;
6006
6007 return 0;
6008}
6009
6010static void __init ata_parse_force_param(void)
6011{
6012 int idx = 0, size = 1;
6013 int last_port = -1, last_device = -1;
6014 char *p, *cur, *next;
6015
6016 /* calculate maximum number of params and allocate force_tbl */
6017 for (p = ata_force_param_buf; *p; p++)
6018 if (*p == ',')
6019 size++;
6020
6021 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
6022 if (!ata_force_tbl) {
6023 printk(KERN_WARNING "ata: failed to extend force table, "
6024 "libata.force ignored\n");
6025 return;
6026 }
6027
6028 /* parse and populate the table */
6029 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
6030 const char *reason = "";
6031 struct ata_force_ent te = { .port = -1, .device = -1 };
6032
6033 next = cur;
6034 if (ata_parse_force_one(&next, &te, &reason)) {
6035 printk(KERN_WARNING "ata: failed to parse force "
6036 "parameter \"%s\" (%s)\n",
6037 cur, reason);
6038 continue;
6039 }
6040
6041 if (te.port == -1) {
6042 te.port = last_port;
6043 te.device = last_device;
6044 }
6045
6046 ata_force_tbl[idx++] = te;
6047
6048 last_port = te.port;
6049 last_device = te.device;
6050 }
6051
6052 ata_force_tbl_size = idx;
6053}
1da177e4 6054
1da177e4
LT
6055static int __init ata_init(void)
6056{
a8601e5f 6057 ata_probe_timeout *= HZ;
33267325
TH
6058
6059 ata_parse_force_param();
6060
1da177e4
LT
6061 ata_wq = create_workqueue("ata");
6062 if (!ata_wq)
6063 return -ENOMEM;
6064
453b07ac
TH
6065 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6066 if (!ata_aux_wq) {
6067 destroy_workqueue(ata_wq);
6068 return -ENOMEM;
6069 }
6070
1da177e4
LT
6071 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6072 return 0;
6073}
6074
6075static void __exit ata_exit(void)
6076{
33267325 6077 kfree(ata_force_tbl);
1da177e4 6078 destroy_workqueue(ata_wq);
453b07ac 6079 destroy_workqueue(ata_aux_wq);
1da177e4
LT
6080}
6081
a4625085 6082subsys_initcall(ata_init);
1da177e4
LT
6083module_exit(ata_exit);
6084
67846b30 6085static unsigned long ratelimit_time;
34af946a 6086static DEFINE_SPINLOCK(ata_ratelimit_lock);
67846b30
JG
6087
6088int ata_ratelimit(void)
6089{
6090 int rc;
6091 unsigned long flags;
6092
6093 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6094
6095 if (time_after(jiffies, ratelimit_time)) {
6096 rc = 1;
6097 ratelimit_time = jiffies + (HZ/5);
6098 } else
6099 rc = 0;
6100
6101 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6102
6103 return rc;
6104}
6105
c22daff4
TH
6106/**
6107 * ata_wait_register - wait until register value changes
6108 * @reg: IO-mapped register
6109 * @mask: Mask to apply to read register value
6110 * @val: Wait condition
6111 * @interval_msec: polling interval in milliseconds
6112 * @timeout_msec: timeout in milliseconds
6113 *
6114 * Waiting for some bits of register to change is a common
6115 * operation for ATA controllers. This function reads 32bit LE
6116 * IO-mapped register @reg and tests for the following condition.
6117 *
6118 * (*@reg & mask) != val
6119 *
6120 * If the condition is met, it returns; otherwise, the process is
6121 * repeated after @interval_msec until timeout.
6122 *
6123 * LOCKING:
6124 * Kernel thread context (may sleep)
6125 *
6126 * RETURNS:
6127 * The final register value.
6128 */
6129u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6130 unsigned long interval_msec,
6131 unsigned long timeout_msec)
6132{
6133 unsigned long timeout;
6134 u32 tmp;
6135
6136 tmp = ioread32(reg);
6137
6138 /* Calculate timeout _after_ the first read to make sure
6139 * preceding writes reach the controller before starting to
6140 * eat away the timeout.
6141 */
6142 timeout = jiffies + (timeout_msec * HZ) / 1000;
6143
6144 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6145 msleep(interval_msec);
6146 tmp = ioread32(reg);
6147 }
6148
6149 return tmp;
6150}
6151
dd5b06c4
TH
6152/*
6153 * Dummy port_ops
6154 */
182d7bba 6155static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
dd5b06c4 6156{
182d7bba 6157 return AC_ERR_SYSTEM;
dd5b06c4
TH
6158}
6159
182d7bba 6160static void ata_dummy_error_handler(struct ata_port *ap)
dd5b06c4 6161{
182d7bba 6162 /* truly dummy */
dd5b06c4
TH
6163}
6164
029cfd6b 6165struct ata_port_operations ata_dummy_port_ops = {
dd5b06c4
TH
6166 .qc_prep = ata_noop_qc_prep,
6167 .qc_issue = ata_dummy_qc_issue,
182d7bba 6168 .error_handler = ata_dummy_error_handler,
dd5b06c4
TH
6169};
6170
21b0ad4f
TH
6171const struct ata_port_info ata_dummy_port_info = {
6172 .port_ops = &ata_dummy_port_ops,
6173};
6174
1da177e4
LT
6175/*
6176 * libata is essentially a library of internal helper functions for
6177 * low-level ATA host controller drivers. As such, the API/ABI is
6178 * likely to change as new drivers are added and updated.
6179 * Do not depend on ABI/API stability.
6180 */
e9c83914
TH
6181EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6182EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6183EXPORT_SYMBOL_GPL(sata_deb_timing_long);
029cfd6b
TH
6184EXPORT_SYMBOL_GPL(ata_base_port_ops);
6185EXPORT_SYMBOL_GPL(sata_port_ops);
dd5b06c4 6186EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
21b0ad4f 6187EXPORT_SYMBOL_GPL(ata_dummy_port_info);
1da177e4 6188EXPORT_SYMBOL_GPL(ata_std_bios_param);
cca3974e 6189EXPORT_SYMBOL_GPL(ata_host_init);
f3187195 6190EXPORT_SYMBOL_GPL(ata_host_alloc);
f5cda257 6191EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
ecef7253 6192EXPORT_SYMBOL_GPL(ata_host_start);
f3187195 6193EXPORT_SYMBOL_GPL(ata_host_register);
f5cda257 6194EXPORT_SYMBOL_GPL(ata_host_activate);
0529c159 6195EXPORT_SYMBOL_GPL(ata_host_detach);
1da177e4 6196EXPORT_SYMBOL_GPL(ata_sg_init);
f686bcb8 6197EXPORT_SYMBOL_GPL(ata_qc_complete);
dedaf2b0 6198EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
43727fbc 6199EXPORT_SYMBOL_GPL(sata_print_link_status);
436d34b3 6200EXPORT_SYMBOL_GPL(atapi_cmd_type);
1da177e4
LT
6201EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6202EXPORT_SYMBOL_GPL(ata_tf_from_fis);
6357357c
TH
6203EXPORT_SYMBOL_GPL(ata_pack_xfermask);
6204EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
6205EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
6206EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
6207EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
6208EXPORT_SYMBOL_GPL(ata_mode_string);
6209EXPORT_SYMBOL_GPL(ata_id_xfermask);
1da177e4 6210EXPORT_SYMBOL_GPL(ata_port_start);
04351821 6211EXPORT_SYMBOL_GPL(ata_do_set_mode);
31cc23b3 6212EXPORT_SYMBOL_GPL(ata_std_qc_defer);
e46834cd 6213EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
1da177e4 6214EXPORT_SYMBOL_GPL(ata_port_probe);
10305f0f 6215EXPORT_SYMBOL_GPL(ata_dev_disable);
3c567b7d 6216EXPORT_SYMBOL_GPL(sata_set_spd);
aa2731ad 6217EXPORT_SYMBOL_GPL(ata_wait_after_reset);
936fd732
TH
6218EXPORT_SYMBOL_GPL(sata_link_debounce);
6219EXPORT_SYMBOL_GPL(sata_link_resume);
0aa1113d 6220EXPORT_SYMBOL_GPL(ata_std_prereset);
cc0680a5 6221EXPORT_SYMBOL_GPL(sata_link_hardreset);
57c9efdf 6222EXPORT_SYMBOL_GPL(sata_std_hardreset);
203c75b8 6223EXPORT_SYMBOL_GPL(ata_std_postreset);
2e9edbf8
JG
6224EXPORT_SYMBOL_GPL(ata_dev_classify);
6225EXPORT_SYMBOL_GPL(ata_dev_pair);
1da177e4 6226EXPORT_SYMBOL_GPL(ata_port_disable);
67846b30 6227EXPORT_SYMBOL_GPL(ata_ratelimit);
c22daff4 6228EXPORT_SYMBOL_GPL(ata_wait_register);
1da177e4
LT
6229EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6230EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
1da177e4 6231EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
83c47bcb 6232EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
a6e6ce8e 6233EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
34bf2170
TH
6234EXPORT_SYMBOL_GPL(sata_scr_valid);
6235EXPORT_SYMBOL_GPL(sata_scr_read);
6236EXPORT_SYMBOL_GPL(sata_scr_write);
6237EXPORT_SYMBOL_GPL(sata_scr_write_flush);
936fd732
TH
6238EXPORT_SYMBOL_GPL(ata_link_online);
6239EXPORT_SYMBOL_GPL(ata_link_offline);
6ffa01d8 6240#ifdef CONFIG_PM
cca3974e
JG
6241EXPORT_SYMBOL_GPL(ata_host_suspend);
6242EXPORT_SYMBOL_GPL(ata_host_resume);
6ffa01d8 6243#endif /* CONFIG_PM */
6a62a04d
TH
6244EXPORT_SYMBOL_GPL(ata_id_string);
6245EXPORT_SYMBOL_GPL(ata_id_c_string);
1da177e4
LT
6246EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6247
1bc4ccff 6248EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
6357357c 6249EXPORT_SYMBOL_GPL(ata_timing_find_mode);
452503f9
AC
6250EXPORT_SYMBOL_GPL(ata_timing_compute);
6251EXPORT_SYMBOL_GPL(ata_timing_merge);
a0f79b92 6252EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
452503f9 6253
1da177e4
LT
6254#ifdef CONFIG_PCI
6255EXPORT_SYMBOL_GPL(pci_test_config_bits);
1da177e4 6256EXPORT_SYMBOL_GPL(ata_pci_remove_one);
6ffa01d8 6257#ifdef CONFIG_PM
500530f6
TH
6258EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6259EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
9b847548
JA
6260EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6261EXPORT_SYMBOL_GPL(ata_pci_device_resume);
6ffa01d8 6262#endif /* CONFIG_PM */
1da177e4 6263#endif /* CONFIG_PCI */
9b847548 6264
b64bbc39
TH
6265EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
6266EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
6267EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
cbcdd875
TH
6268EXPORT_SYMBOL_GPL(ata_port_desc);
6269#ifdef CONFIG_PCI
6270EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
6271#endif /* CONFIG_PCI */
7b70fc03 6272EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
dbd82616 6273EXPORT_SYMBOL_GPL(ata_link_abort);
7b70fc03 6274EXPORT_SYMBOL_GPL(ata_port_abort);
e3180499 6275EXPORT_SYMBOL_GPL(ata_port_freeze);
7d77b247 6276EXPORT_SYMBOL_GPL(sata_async_notification);
e3180499
TH
6277EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6278EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
ece1d636
TH
6279EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6280EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
022bdb07 6281EXPORT_SYMBOL_GPL(ata_do_eh);
a1efdaba 6282EXPORT_SYMBOL_GPL(ata_std_error_handler);
be0d18df
AC
6283
6284EXPORT_SYMBOL_GPL(ata_cable_40wire);
6285EXPORT_SYMBOL_GPL(ata_cable_80wire);
6286EXPORT_SYMBOL_GPL(ata_cable_unknown);
c88f90c3 6287EXPORT_SYMBOL_GPL(ata_cable_ignore);
be0d18df 6288EXPORT_SYMBOL_GPL(ata_cable_sata);