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