blob: 345f4a6865a881bb88c4da40797c9c478f12fec0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * libata-core.c - helper library for ATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
9 * Copyright 2003-2004 Jeff Garzik
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
Alan Cox92c52c52007-11-19 14:30:16 +000033 * 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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#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>
49#include <linux/highmem.h>
50#include <linux/spinlock.h>
51#include <linux/blkdev.h>
52#include <linux/delay.h>
53#include <linux/timer.h>
54#include <linux/interrupt.h>
55#include <linux/completion.h>
56#include <linux/suspend.h>
57#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040058#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100059#include <linux/scatterlist.h>
Jeff Garzik2dcb4072007-10-19 06:42:56 -040060#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050062#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <scsi/scsi_host.h>
64#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <asm/semaphore.h>
66#include <asm/byteorder.h>
Tejun Heo140b5e592007-12-12 12:21:52 +090067#include <linux/cdrom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#include "libata.h"
70
Jeff Garzikfda0efc2007-01-31 07:43:15 -050071
Tejun Heod7bb4cc2006-05-31 18:27:46 +090072/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090073const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
74const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
75const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090076
Tejun Heo029cfd62008-03-25 12:22:49 +090077const struct ata_port_operations ata_base_port_ops = {
78 .irq_clear = ata_noop_irq_clear,
Tejun Heoa1efdab2008-03-25 12:22:50 +090079 .prereset = ata_std_prereset,
80 .hardreset = sata_std_hardreset,
81 .postreset = ata_std_postreset,
82 .error_handler = ata_std_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +090083};
84
85const struct ata_port_operations sata_port_ops = {
86 .inherits = &ata_base_port_ops,
87
88 .qc_defer = ata_std_qc_defer,
89 .dev_select = ata_noop_dev_select,
90};
91
92const struct ata_port_operations sata_pmp_port_ops = {
93 .inherits = &sata_port_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +090094
95 .pmp_prereset = sata_pmp_std_prereset,
96 .pmp_hardreset = sata_pmp_std_hardreset,
97 .pmp_postreset = sata_pmp_std_postreset,
98 .error_handler = sata_pmp_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +090099};
100
101const struct ata_port_operations ata_sff_port_ops = {
102 .inherits = &ata_base_port_ops,
103
104 .qc_prep = ata_qc_prep,
105 .qc_issue = ata_qc_issue_prot,
106
107 .freeze = ata_bmdma_freeze,
108 .thaw = ata_bmdma_thaw,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900109 .softreset = ata_std_softreset,
Tejun Heo029cfd62008-03-25 12:22:49 +0900110 .error_handler = ata_bmdma_error_handler,
111 .post_internal_cmd = ata_bmdma_post_internal_cmd,
112
113 .dev_select = ata_std_dev_select,
114 .check_status = ata_check_status,
115 .tf_load = ata_tf_load,
116 .tf_read = ata_tf_read,
117 .exec_command = ata_exec_command,
118 .data_xfer = ata_data_xfer,
119 .irq_on = ata_irq_on,
120
121 .port_start = ata_sff_port_start,
Tejun Heo029cfd62008-03-25 12:22:49 +0900122};
123
124const struct ata_port_operations ata_bmdma_port_ops = {
125 .inherits = &ata_sff_port_ops,
126
127 .mode_filter = ata_pci_default_filter,
128
129 .bmdma_setup = ata_bmdma_setup,
130 .bmdma_start = ata_bmdma_start,
131 .bmdma_stop = ata_bmdma_stop,
132 .bmdma_status = ata_bmdma_status,
133 .irq_clear = ata_bmdma_irq_clear,
134};
135
Tejun Heo3373efd2006-05-15 20:57:53 +0900136static unsigned int ata_dev_init_params(struct ata_device *dev,
137 u16 heads, u16 sectors);
138static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Jeff Garzik218f3d32007-10-25 00:33:27 -0400139static unsigned int ata_dev_set_feature(struct ata_device *dev,
140 u8 enable, u8 feature);
Tejun Heo3373efd2006-05-15 20:57:53 +0900141static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +0900142static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Tejun Heof3187192007-04-17 23:44:07 +0900144unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static struct workqueue_struct *ata_wq;
146
Tejun Heo453b07a2006-05-31 18:27:42 +0900147struct workqueue_struct *ata_aux_wq;
148
Tejun Heo33267322008-02-13 09:15:09 +0900149struct ata_force_param {
150 const char *name;
151 unsigned int cbl;
152 int spd_limit;
153 unsigned long xfer_mask;
154 unsigned int horkage_on;
155 unsigned int horkage_off;
156};
157
158struct ata_force_ent {
159 int port;
160 int device;
161 struct ata_force_param param;
162};
163
164static struct ata_force_ent *ata_force_tbl;
165static int ata_force_tbl_size;
166
167static char ata_force_param_buf[PAGE_SIZE] __initdata;
Tejun Heo7afb4222008-03-09 20:21:53 +0900168/* param_buf is thrown away after initialization, disallow read */
169module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0);
Tejun Heo33267322008-02-13 09:15:09 +0900170MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)");
171
Jeff Garzik418dc1f2006-03-11 20:50:08 -0500172int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -0400173module_param(atapi_enabled, int, 0444);
174MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
175
Adrian Bunkc5c61bd2008-02-25 02:07:25 +0200176static int atapi_dmadir = 0;
Albert Lee95de7192006-04-04 10:57:18 +0800177module_param(atapi_dmadir, int, 0444);
178MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
179
Mark Lordbaf4fdf2007-08-08 01:08:45 +0900180int atapi_passthru16 = 1;
181module_param(atapi_passthru16, int, 0444);
182MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
183
Jeff Garzikc3c013a2006-02-27 22:31:19 -0500184int libata_fua = 0;
185module_param_named(fua, libata_fua, int, 0444);
186MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
187
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400188static int ata_ignore_hpa;
Alan Cox1e999732007-04-11 00:23:13 +0100189module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
190MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
191
Alan Coxb3a70602007-10-02 12:38:26 -0400192static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
193module_param_named(dma, libata_dma_mask, int, 0444);
194MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
195
Andrew Mortona8601e52006-06-25 01:36:52 -0700196static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
197module_param(ata_probe_timeout, int, 0444);
198MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
199
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400200int libata_noacpi = 0;
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400201module_param_named(noacpi, libata_noacpi, int, 0444);
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400202MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set");
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700203
Alan Coxae8d4ee2007-11-04 22:05:49 -0500204int libata_allow_tpm = 0;
205module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
206MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands");
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208MODULE_AUTHOR("Jeff Garzik");
209MODULE_DESCRIPTION("Library module for ATA devices");
210MODULE_LICENSE("GPL");
211MODULE_VERSION(DRV_VERSION);
212
Edward Falk0baab862005-06-02 18:17:13 -0400213
214/**
Tejun Heo33267322008-02-13 09:15:09 +0900215 * ata_force_cbl - force cable type according to libata.force
Randy Dunlap4cdfa1b2008-02-22 12:21:37 -0800216 * @ap: ATA port of interest
Tejun Heo33267322008-02-13 09:15:09 +0900217 *
218 * Force cable type according to libata.force and whine about it.
219 * The last entry which has matching port number is used, so it
220 * can be specified as part of device force parameters. For
221 * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
222 * same effect.
223 *
224 * LOCKING:
225 * EH context.
226 */
227void ata_force_cbl(struct ata_port *ap)
228{
229 int i;
230
231 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
232 const struct ata_force_ent *fe = &ata_force_tbl[i];
233
234 if (fe->port != -1 && fe->port != ap->print_id)
235 continue;
236
237 if (fe->param.cbl == ATA_CBL_NONE)
238 continue;
239
240 ap->cbl = fe->param.cbl;
241 ata_port_printk(ap, KERN_NOTICE,
242 "FORCE: cable set to %s\n", fe->param.name);
243 return;
244 }
245}
246
247/**
248 * ata_force_spd_limit - force SATA spd limit according to libata.force
249 * @link: ATA link of interest
250 *
251 * Force SATA spd limit according to libata.force and whine about
252 * it. When only the port part is specified (e.g. 1:), the limit
253 * applies to all links connected to both the host link and all
254 * fan-out ports connected via PMP. If the device part is
255 * specified as 0 (e.g. 1.00:), it specifies the first fan-out
256 * link not the host link. Device number 15 always points to the
257 * host link whether PMP is attached or not.
258 *
259 * LOCKING:
260 * EH context.
261 */
262static void ata_force_spd_limit(struct ata_link *link)
263{
264 int linkno, i;
265
266 if (ata_is_host_link(link))
267 linkno = 15;
268 else
269 linkno = link->pmp;
270
271 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
272 const struct ata_force_ent *fe = &ata_force_tbl[i];
273
274 if (fe->port != -1 && fe->port != link->ap->print_id)
275 continue;
276
277 if (fe->device != -1 && fe->device != linkno)
278 continue;
279
280 if (!fe->param.spd_limit)
281 continue;
282
283 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
284 ata_link_printk(link, KERN_NOTICE,
285 "FORCE: PHY spd limit set to %s\n", fe->param.name);
286 return;
287 }
288}
289
290/**
291 * ata_force_xfermask - force xfermask according to libata.force
292 * @dev: ATA device of interest
293 *
294 * Force xfer_mask according to libata.force and whine about it.
295 * For consistency with link selection, device number 15 selects
296 * the first device connected to the host link.
297 *
298 * LOCKING:
299 * EH context.
300 */
301static void ata_force_xfermask(struct ata_device *dev)
302{
303 int devno = dev->link->pmp + dev->devno;
304 int alt_devno = devno;
305 int i;
306
307 /* allow n.15 for the first device attached to host port */
308 if (ata_is_host_link(dev->link) && devno == 0)
309 alt_devno = 15;
310
311 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
312 const struct ata_force_ent *fe = &ata_force_tbl[i];
313 unsigned long pio_mask, mwdma_mask, udma_mask;
314
315 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
316 continue;
317
318 if (fe->device != -1 && fe->device != devno &&
319 fe->device != alt_devno)
320 continue;
321
322 if (!fe->param.xfer_mask)
323 continue;
324
325 ata_unpack_xfermask(fe->param.xfer_mask,
326 &pio_mask, &mwdma_mask, &udma_mask);
327 if (udma_mask)
328 dev->udma_mask = udma_mask;
329 else if (mwdma_mask) {
330 dev->udma_mask = 0;
331 dev->mwdma_mask = mwdma_mask;
332 } else {
333 dev->udma_mask = 0;
334 dev->mwdma_mask = 0;
335 dev->pio_mask = pio_mask;
336 }
337
338 ata_dev_printk(dev, KERN_NOTICE,
339 "FORCE: xfer_mask set to %s\n", fe->param.name);
340 return;
341 }
342}
343
344/**
345 * ata_force_horkage - force horkage according to libata.force
346 * @dev: ATA device of interest
347 *
348 * Force horkage according to libata.force and whine about it.
349 * For consistency with link selection, device number 15 selects
350 * the first device connected to the host link.
351 *
352 * LOCKING:
353 * EH context.
354 */
355static void ata_force_horkage(struct ata_device *dev)
356{
357 int devno = dev->link->pmp + dev->devno;
358 int alt_devno = devno;
359 int i;
360
361 /* allow n.15 for the first device attached to host port */
362 if (ata_is_host_link(dev->link) && devno == 0)
363 alt_devno = 15;
364
365 for (i = 0; i < ata_force_tbl_size; i++) {
366 const struct ata_force_ent *fe = &ata_force_tbl[i];
367
368 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
369 continue;
370
371 if (fe->device != -1 && fe->device != devno &&
372 fe->device != alt_devno)
373 continue;
374
375 if (!(~dev->horkage & fe->param.horkage_on) &&
376 !(dev->horkage & fe->param.horkage_off))
377 continue;
378
379 dev->horkage |= fe->param.horkage_on;
380 dev->horkage &= ~fe->param.horkage_off;
381
382 ata_dev_printk(dev, KERN_NOTICE,
383 "FORCE: horkage modified (%s)\n", fe->param.name);
384 }
385}
386
387/**
Tejun Heo436d34b2008-04-02 17:28:46 +0900388 * atapi_cmd_type - Determine ATAPI command type from SCSI opcode
389 * @opcode: SCSI opcode
390 *
391 * Determine ATAPI command type from @opcode.
392 *
393 * LOCKING:
394 * None.
395 *
396 * RETURNS:
397 * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
398 */
399int atapi_cmd_type(u8 opcode)
400{
401 switch (opcode) {
402 case GPCMD_READ_10:
403 case GPCMD_READ_12:
404 return ATAPI_READ;
405
406 case GPCMD_WRITE_10:
407 case GPCMD_WRITE_12:
408 case GPCMD_WRITE_AND_VERIFY_10:
409 return ATAPI_WRITE;
410
411 case GPCMD_READ_CD:
412 case GPCMD_READ_CD_MSF:
413 return ATAPI_READ_CD;
414
Tejun Heoe52dcc42008-04-02 17:35:19 +0900415 case ATA_16:
416 case ATA_12:
417 if (atapi_passthru16)
418 return ATAPI_PASS_THRU;
419 /* fall thru */
Tejun Heo436d34b2008-04-02 17:28:46 +0900420 default:
421 return ATAPI_MISC;
422 }
423}
424
425/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
427 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900429 * @is_cmd: This FIS is for command
430 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 *
432 * Converts a standard ATA taskfile to a Serial ATA
433 * FIS structure (Register - Host to Device).
434 *
435 * LOCKING:
436 * Inherited from caller.
437 */
Tejun Heo99771262007-07-16 14:29:38 +0900438void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Tejun Heo99771262007-07-16 14:29:38 +0900440 fis[0] = 0x27; /* Register - Host to Device FIS */
441 fis[1] = pmp & 0xf; /* Port multiplier number*/
442 if (is_cmd)
443 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 fis[2] = tf->command;
446 fis[3] = tf->feature;
447
448 fis[4] = tf->lbal;
449 fis[5] = tf->lbam;
450 fis[6] = tf->lbah;
451 fis[7] = tf->device;
452
453 fis[8] = tf->hob_lbal;
454 fis[9] = tf->hob_lbam;
455 fis[10] = tf->hob_lbah;
456 fis[11] = tf->hob_feature;
457
458 fis[12] = tf->nsect;
459 fis[13] = tf->hob_nsect;
460 fis[14] = 0;
461 fis[15] = tf->ctl;
462
463 fis[16] = 0;
464 fis[17] = 0;
465 fis[18] = 0;
466 fis[19] = 0;
467}
468
469/**
470 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
471 * @fis: Buffer from which data will be input
472 * @tf: Taskfile to output
473 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500474 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 *
476 * LOCKING:
477 * Inherited from caller.
478 */
479
Jeff Garzik057ace52005-10-22 14:27:05 -0400480void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 tf->command = fis[2]; /* status */
483 tf->feature = fis[3]; /* error */
484
485 tf->lbal = fis[4];
486 tf->lbam = fis[5];
487 tf->lbah = fis[6];
488 tf->device = fis[7];
489
490 tf->hob_lbal = fis[8];
491 tf->hob_lbam = fis[9];
492 tf->hob_lbah = fis[10];
493
494 tf->nsect = fis[12];
495 tf->hob_nsect = fis[13];
496}
497
Albert Lee8cbd6df2005-10-12 15:06:27 +0800498static const u8 ata_rw_cmds[] = {
499 /* pio multi */
500 ATA_CMD_READ_MULTI,
501 ATA_CMD_WRITE_MULTI,
502 ATA_CMD_READ_MULTI_EXT,
503 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100504 0,
505 0,
506 0,
507 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800508 /* pio */
509 ATA_CMD_PIO_READ,
510 ATA_CMD_PIO_WRITE,
511 ATA_CMD_PIO_READ_EXT,
512 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100513 0,
514 0,
515 0,
516 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800517 /* dma */
518 ATA_CMD_READ,
519 ATA_CMD_WRITE,
520 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100521 ATA_CMD_WRITE_EXT,
522 0,
523 0,
524 0,
525 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800526};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800529 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900530 * @tf: command to examine and configure
531 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500533 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800534 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 *
536 * LOCKING:
537 * caller.
538 */
Tejun Heobd056d72006-11-14 22:47:10 +0900539static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100541 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100543 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500544
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100545 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800546 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
547 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Albert Lee8cbd6df2005-10-12 15:06:27 +0800549 if (dev->flags & ATA_DFLAG_PIO) {
550 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100551 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900552 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000553 /* Unable to use DMA due to host limitation */
554 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800555 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800556 } else {
557 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100558 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100561 cmd = ata_rw_cmds[index + fua + lba48 + write];
562 if (cmd) {
563 tf->command = cmd;
564 return 0;
565 }
566 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Tejun Heocb95d562006-03-06 04:31:56 +0900569/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900570 * ata_tf_read_block - Read block address from ATA taskfile
571 * @tf: ATA taskfile of interest
572 * @dev: ATA device @tf belongs to
573 *
574 * LOCKING:
575 * None.
576 *
577 * Read block address from @tf. This function can handle all
578 * three address formats - LBA, LBA48 and CHS. tf->protocol and
579 * flags select the address format to use.
580 *
581 * RETURNS:
582 * Block address read from @tf.
583 */
584u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
585{
586 u64 block = 0;
587
588 if (tf->flags & ATA_TFLAG_LBA) {
589 if (tf->flags & ATA_TFLAG_LBA48) {
590 block |= (u64)tf->hob_lbah << 40;
591 block |= (u64)tf->hob_lbam << 32;
592 block |= tf->hob_lbal << 24;
593 } else
594 block |= (tf->device & 0xf) << 24;
595
596 block |= tf->lbah << 16;
597 block |= tf->lbam << 8;
598 block |= tf->lbal;
599 } else {
600 u32 cyl, head, sect;
601
602 cyl = tf->lbam | (tf->lbah << 8);
603 head = tf->device & 0xf;
604 sect = tf->lbal;
605
606 block = (cyl * dev->heads + head) * dev->sectors + sect;
607 }
608
609 return block;
610}
611
612/**
Tejun Heobd056d72006-11-14 22:47:10 +0900613 * ata_build_rw_tf - Build ATA taskfile for given read/write request
614 * @tf: Target ATA taskfile
615 * @dev: ATA device @tf belongs to
616 * @block: Block address
617 * @n_block: Number of blocks
618 * @tf_flags: RW/FUA etc...
619 * @tag: tag
620 *
621 * LOCKING:
622 * None.
623 *
624 * Build ATA taskfile @tf for read/write request described by
625 * @block, @n_block, @tf_flags and @tag on @dev.
626 *
627 * RETURNS:
628 *
629 * 0 on success, -ERANGE if the request is too large for @dev,
630 * -EINVAL if the request is invalid.
631 */
632int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
633 u64 block, u32 n_block, unsigned int tf_flags,
634 unsigned int tag)
635{
636 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
637 tf->flags |= tf_flags;
638
Tejun Heo6d1245b2007-02-20 23:20:27 +0900639 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900640 /* yay, NCQ */
641 if (!lba_48_ok(block, n_block))
642 return -ERANGE;
643
644 tf->protocol = ATA_PROT_NCQ;
645 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
646
647 if (tf->flags & ATA_TFLAG_WRITE)
648 tf->command = ATA_CMD_FPDMA_WRITE;
649 else
650 tf->command = ATA_CMD_FPDMA_READ;
651
652 tf->nsect = tag << 3;
653 tf->hob_feature = (n_block >> 8) & 0xff;
654 tf->feature = n_block & 0xff;
655
656 tf->hob_lbah = (block >> 40) & 0xff;
657 tf->hob_lbam = (block >> 32) & 0xff;
658 tf->hob_lbal = (block >> 24) & 0xff;
659 tf->lbah = (block >> 16) & 0xff;
660 tf->lbam = (block >> 8) & 0xff;
661 tf->lbal = block & 0xff;
662
663 tf->device = 1 << 6;
664 if (tf->flags & ATA_TFLAG_FUA)
665 tf->device |= 1 << 7;
666 } else if (dev->flags & ATA_DFLAG_LBA) {
667 tf->flags |= ATA_TFLAG_LBA;
668
669 if (lba_28_ok(block, n_block)) {
670 /* use LBA28 */
671 tf->device |= (block >> 24) & 0xf;
672 } else if (lba_48_ok(block, n_block)) {
673 if (!(dev->flags & ATA_DFLAG_LBA48))
674 return -ERANGE;
675
676 /* use LBA48 */
677 tf->flags |= ATA_TFLAG_LBA48;
678
679 tf->hob_nsect = (n_block >> 8) & 0xff;
680
681 tf->hob_lbah = (block >> 40) & 0xff;
682 tf->hob_lbam = (block >> 32) & 0xff;
683 tf->hob_lbal = (block >> 24) & 0xff;
684 } else
685 /* request too large even for LBA48 */
686 return -ERANGE;
687
688 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
689 return -EINVAL;
690
691 tf->nsect = n_block & 0xff;
692
693 tf->lbah = (block >> 16) & 0xff;
694 tf->lbam = (block >> 8) & 0xff;
695 tf->lbal = block & 0xff;
696
697 tf->device |= ATA_LBA;
698 } else {
699 /* CHS */
700 u32 sect, head, cyl, track;
701
702 /* The request -may- be too large for CHS addressing. */
703 if (!lba_28_ok(block, n_block))
704 return -ERANGE;
705
706 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
707 return -EINVAL;
708
709 /* Convert LBA to CHS */
710 track = (u32)block / dev->sectors;
711 cyl = track / dev->heads;
712 head = track % dev->heads;
713 sect = (u32)block % dev->sectors + 1;
714
715 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
716 (u32)block, track, cyl, head, sect);
717
718 /* Check whether the converted CHS can fit.
719 Cylinder: 0-65535
720 Head: 0-15
721 Sector: 1-255*/
722 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
723 return -ERANGE;
724
725 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
726 tf->lbal = sect;
727 tf->lbam = cyl;
728 tf->lbah = cyl >> 8;
729 tf->device |= head;
730 }
731
732 return 0;
733}
734
735/**
Tejun Heocb95d562006-03-06 04:31:56 +0900736 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
737 * @pio_mask: pio_mask
738 * @mwdma_mask: mwdma_mask
739 * @udma_mask: udma_mask
740 *
741 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
742 * unsigned int xfer_mask.
743 *
744 * LOCKING:
745 * None.
746 *
747 * RETURNS:
748 * Packed xfer_mask.
749 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900750unsigned long ata_pack_xfermask(unsigned long pio_mask,
751 unsigned long mwdma_mask,
752 unsigned long udma_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900753{
754 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
755 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
756 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
757}
758
Tejun Heoc0489e42006-03-24 14:07:49 +0900759/**
760 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
761 * @xfer_mask: xfer_mask to unpack
762 * @pio_mask: resulting pio_mask
763 * @mwdma_mask: resulting mwdma_mask
764 * @udma_mask: resulting udma_mask
765 *
766 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
767 * Any NULL distination masks will be ignored.
768 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900769void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
770 unsigned long *mwdma_mask, unsigned long *udma_mask)
Tejun Heoc0489e42006-03-24 14:07:49 +0900771{
772 if (pio_mask)
773 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
774 if (mwdma_mask)
775 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
776 if (udma_mask)
777 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
778}
779
Tejun Heocb95d562006-03-06 04:31:56 +0900780static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900781 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900782 u8 base;
783} ata_xfer_tbl[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +0900784 { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
785 { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
786 { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
Tejun Heocb95d562006-03-06 04:31:56 +0900787 { -1, },
788};
789
790/**
791 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
792 * @xfer_mask: xfer_mask of interest
793 *
794 * Return matching XFER_* value for @xfer_mask. Only the highest
795 * bit of @xfer_mask is considered.
796 *
797 * LOCKING:
798 * None.
799 *
800 * RETURNS:
Tejun Heo70cd0712007-11-27 19:43:40 +0900801 * Matching XFER_* value, 0xff if no match found.
Tejun Heocb95d562006-03-06 04:31:56 +0900802 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900803u8 ata_xfer_mask2mode(unsigned long xfer_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900804{
805 int highbit = fls(xfer_mask) - 1;
806 const struct ata_xfer_ent *ent;
807
808 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
809 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
810 return ent->base + highbit - ent->shift;
Tejun Heo70cd0712007-11-27 19:43:40 +0900811 return 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900812}
813
814/**
815 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
816 * @xfer_mode: XFER_* of interest
817 *
818 * Return matching xfer_mask for @xfer_mode.
819 *
820 * LOCKING:
821 * None.
822 *
823 * RETURNS:
824 * Matching xfer_mask, 0 if no match found.
825 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900826unsigned long ata_xfer_mode2mask(u8 xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900827{
828 const struct ata_xfer_ent *ent;
829
830 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
831 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
Tejun Heo70cd0712007-11-27 19:43:40 +0900832 return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
833 & ~((1 << ent->shift) - 1);
Tejun Heocb95d562006-03-06 04:31:56 +0900834 return 0;
835}
836
837/**
838 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
839 * @xfer_mode: XFER_* of interest
840 *
841 * Return matching xfer_shift for @xfer_mode.
842 *
843 * LOCKING:
844 * None.
845 *
846 * RETURNS:
847 * Matching xfer_shift, -1 if no match found.
848 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900849int ata_xfer_mode2shift(unsigned long xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900850{
851 const struct ata_xfer_ent *ent;
852
853 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
854 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
855 return ent->shift;
856 return -1;
857}
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900860 * ata_mode_string - convert xfer_mask to string
861 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 *
863 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900864 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 *
866 * LOCKING:
867 * None.
868 *
869 * RETURNS:
870 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900871 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900873const char *ata_mode_string(unsigned long xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Tejun Heo75f554b2006-03-06 04:31:57 +0900875 static const char * const xfer_mode_str[] = {
876 "PIO0",
877 "PIO1",
878 "PIO2",
879 "PIO3",
880 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100881 "PIO5",
882 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900883 "MWDMA0",
884 "MWDMA1",
885 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100886 "MWDMA3",
887 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900888 "UDMA/16",
889 "UDMA/25",
890 "UDMA/33",
891 "UDMA/44",
892 "UDMA/66",
893 "UDMA/100",
894 "UDMA/133",
895 "UDMA7",
896 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900897 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900899 highbit = fls(xfer_mask) - 1;
900 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
901 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Tejun Heo4c360c82006-04-01 01:38:17 +0900905static const char *sata_spd_string(unsigned int spd)
906{
907 static const char * const spd_str[] = {
908 "1.5 Gbps",
909 "3.0 Gbps",
910 };
911
912 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
913 return "<unknown>";
914 return spd_str[spd - 1];
915}
916
Tejun Heo3373efd2006-05-15 20:57:53 +0900917void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900918{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900919 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900920 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900921 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo562f0c22007-12-15 15:05:01 +0900922 ata_acpi_on_disable(dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +0900923 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
924 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900925 dev->class++;
926 }
927}
928
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400929static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
930{
931 struct ata_link *link = dev->link;
932 struct ata_port *ap = link->ap;
933 u32 scontrol;
934 unsigned int err_mask;
935 int rc;
936
937 /*
938 * disallow DIPM for drivers which haven't set
939 * ATA_FLAG_IPM. This is because when DIPM is enabled,
940 * phy ready will be set in the interrupt status on
941 * state changes, which will cause some drivers to
942 * think there are errors - additionally drivers will
943 * need to disable hot plug.
944 */
945 if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) {
946 ap->pm_policy = NOT_AVAILABLE;
947 return -EINVAL;
948 }
949
950 /*
951 * For DIPM, we will only enable it for the
952 * min_power setting.
953 *
954 * Why? Because Disks are too stupid to know that
955 * If the host rejects a request to go to SLUMBER
956 * they should retry at PARTIAL, and instead it
957 * just would give up. So, for medium_power to
958 * work at all, we need to only allow HIPM.
959 */
960 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
961 if (rc)
962 return rc;
963
964 switch (policy) {
965 case MIN_POWER:
966 /* no restrictions on IPM transitions */
967 scontrol &= ~(0x3 << 8);
968 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
969 if (rc)
970 return rc;
971
972 /* enable DIPM */
973 if (dev->flags & ATA_DFLAG_DIPM)
974 err_mask = ata_dev_set_feature(dev,
975 SETFEATURES_SATA_ENABLE, SATA_DIPM);
976 break;
977 case MEDIUM_POWER:
978 /* allow IPM to PARTIAL */
979 scontrol &= ~(0x1 << 8);
980 scontrol |= (0x2 << 8);
981 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
982 if (rc)
983 return rc;
984
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700985 /*
986 * we don't have to disable DIPM since IPM flags
987 * disallow transitions to SLUMBER, which effectively
988 * disable DIPM if it does not support PARTIAL
989 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400990 break;
991 case NOT_AVAILABLE:
992 case MAX_PERFORMANCE:
993 /* disable all IPM transitions */
994 scontrol |= (0x3 << 8);
995 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
996 if (rc)
997 return rc;
998
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700999 /*
1000 * we don't have to disable DIPM since IPM flags
1001 * disallow all transitions which effectively
1002 * disable DIPM anyway.
1003 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001004 break;
1005 }
1006
1007 /* FIXME: handle SET FEATURES failure */
1008 (void) err_mask;
1009
1010 return 0;
1011}
1012
1013/**
1014 * ata_dev_enable_pm - enable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001015 * @dev: device to enable power management
1016 * @policy: the link power management policy
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001017 *
1018 * Enable SATA Interface power management. This will enable
1019 * Device Interface Power Management (DIPM) for min_power
1020 * policy, and then call driver specific callbacks for
1021 * enabling Host Initiated Power management.
1022 *
1023 * Locking: Caller.
1024 * Returns: -EINVAL if IPM is not supported, 0 otherwise.
1025 */
1026void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy)
1027{
1028 int rc = 0;
1029 struct ata_port *ap = dev->link->ap;
1030
1031 /* set HIPM first, then DIPM */
1032 if (ap->ops->enable_pm)
1033 rc = ap->ops->enable_pm(ap, policy);
1034 if (rc)
1035 goto enable_pm_out;
1036 rc = ata_dev_set_dipm(dev, policy);
1037
1038enable_pm_out:
1039 if (rc)
1040 ap->pm_policy = MAX_PERFORMANCE;
1041 else
1042 ap->pm_policy = policy;
1043 return /* rc */; /* hopefully we can use 'rc' eventually */
1044}
1045
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001046#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001047/**
1048 * ata_dev_disable_pm - disable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001049 * @dev: device to disable power management
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001050 *
1051 * Disable SATA Interface power management. This will disable
1052 * Device Interface Power Management (DIPM) without changing
1053 * policy, call driver specific callbacks for disabling Host
1054 * Initiated Power management.
1055 *
1056 * Locking: Caller.
1057 * Returns: void
1058 */
1059static void ata_dev_disable_pm(struct ata_device *dev)
1060{
1061 struct ata_port *ap = dev->link->ap;
1062
1063 ata_dev_set_dipm(dev, MAX_PERFORMANCE);
1064 if (ap->ops->disable_pm)
1065 ap->ops->disable_pm(ap);
1066}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001067#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001068
1069void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy)
1070{
1071 ap->pm_policy = policy;
Tejun Heo3ec25eb2008-03-27 18:37:14 +09001072 ap->link.eh_info.action |= ATA_EH_LPM;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001073 ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY;
1074 ata_port_schedule_eh(ap);
1075}
1076
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001077#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001078static void ata_lpm_enable(struct ata_host *host)
1079{
1080 struct ata_link *link;
1081 struct ata_port *ap;
1082 struct ata_device *dev;
1083 int i;
1084
1085 for (i = 0; i < host->n_ports; i++) {
1086 ap = host->ports[i];
1087 ata_port_for_each_link(link, ap) {
1088 ata_link_for_each_dev(dev, link)
1089 ata_dev_disable_pm(dev);
1090 }
1091 }
1092}
1093
1094static void ata_lpm_disable(struct ata_host *host)
1095{
1096 int i;
1097
1098 for (i = 0; i < host->n_ports; i++) {
1099 struct ata_port *ap = host->ports[i];
1100 ata_lpm_schedule(ap, ap->pm_policy);
1101 }
1102}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001103#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001104
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * ata_devchk - PATA device presence detection
1108 * @ap: ATA channel to examine
1109 * @device: Device to examine (starting at zero)
1110 *
Tejun Heo0d5ff562007-02-01 15:06:36 +09001111 * This technique was originally described in
1112 * Hale Landis's ATADRVR (www.ata-atapi.com), and
1113 * later found its way into the ATA/ATAPI spec.
1114 *
1115 * Write a pattern to the ATA shadow registers,
1116 * and if a device is present, it will respond by
1117 * correctly storing and echoing back the
1118 * ATA shadow register contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 *
1120 * LOCKING:
1121 * caller.
1122 */
1123
Tejun Heo0d5ff562007-02-01 15:06:36 +09001124static unsigned int ata_devchk(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Tejun Heo0d5ff562007-02-01 15:06:36 +09001126 struct ata_ioports *ioaddr = &ap->ioaddr;
1127 u8 nsect, lbal;
1128
1129 ap->ops->dev_select(ap, device);
1130
1131 iowrite8(0x55, ioaddr->nsect_addr);
1132 iowrite8(0xaa, ioaddr->lbal_addr);
1133
1134 iowrite8(0xaa, ioaddr->nsect_addr);
1135 iowrite8(0x55, ioaddr->lbal_addr);
1136
1137 iowrite8(0x55, ioaddr->nsect_addr);
1138 iowrite8(0xaa, ioaddr->lbal_addr);
1139
1140 nsect = ioread8(ioaddr->nsect_addr);
1141 lbal = ioread8(ioaddr->lbal_addr);
1142
1143 if ((nsect == 0x55) && (lbal == 0xaa))
1144 return 1; /* we found a device */
1145
1146 return 0; /* nothing found */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147}
1148
1149/**
1150 * ata_dev_classify - determine device type based on ATA-spec signature
1151 * @tf: ATA taskfile register set for device to be identified
1152 *
1153 * Determine from taskfile register contents whether a device is
1154 * ATA or ATAPI, as per "Signature and persistence" section
1155 * of ATA/PI spec (volume 1, sect 5.14).
1156 *
1157 * LOCKING:
1158 * None.
1159 *
1160 * RETURNS:
Tejun Heo633273a32007-09-23 13:19:54 +09001161 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
1162 * %ATA_DEV_UNKNOWN the event of failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 */
Jeff Garzik057ace52005-10-22 14:27:05 -04001164unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 /* Apple's open source Darwin code hints that some devices only
1167 * put a proper signature into the LBA mid/high registers,
1168 * So, we only check those. It's sufficient for uniqueness.
Tejun Heo633273a32007-09-23 13:19:54 +09001169 *
1170 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1171 * signatures for ATA and ATAPI devices attached on SerialATA,
1172 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
1173 * spec has never mentioned about using different signatures
1174 * for ATA/ATAPI devices. Then, Serial ATA II: Port
1175 * Multiplier specification began to use 0x69/0x96 to identify
1176 * port multpliers and 0x3c/0xc3 to identify SEMB device.
1177 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1178 * 0x69/0x96 shortly and described them as reserved for
1179 * SerialATA.
1180 *
1181 * We follow the current spec and consider that 0x69/0x96
1182 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 */
Tejun Heo633273a32007-09-23 13:19:54 +09001184 if ((tf->lbam == 0) && (tf->lbah == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 DPRINTK("found ATA device by sig\n");
1186 return ATA_DEV_ATA;
1187 }
1188
Tejun Heo633273a32007-09-23 13:19:54 +09001189 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 DPRINTK("found ATAPI device by sig\n");
1191 return ATA_DEV_ATAPI;
1192 }
1193
Tejun Heo633273a32007-09-23 13:19:54 +09001194 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1195 DPRINTK("found PMP device by sig\n");
1196 return ATA_DEV_PMP;
1197 }
1198
1199 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001200 printk(KERN_INFO "ata: SEMB device ignored\n");
Tejun Heo633273a32007-09-23 13:19:54 +09001201 return ATA_DEV_SEMB_UNSUP; /* not yet */
1202 }
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 DPRINTK("unknown device\n");
1205 return ATA_DEV_UNKNOWN;
1206}
1207
1208/**
1209 * ata_dev_try_classify - Parse returned ATA device signature
Tejun Heo3f198592007-09-02 23:23:57 +09001210 * @dev: ATA device to classify (starting at zero)
1211 * @present: device seems present
Tejun Heob4dc7622006-01-24 17:05:22 +09001212 * @r_err: Value of error register on completion
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 *
1214 * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs,
1215 * an ATA/ATAPI-defined set of values is placed in the ATA
1216 * shadow registers, indicating the results of device detection
1217 * and diagnostics.
1218 *
1219 * Select the ATA device, and read the values from the ATA shadow
1220 * registers. Then parse according to the Error register value,
1221 * and the spec-defined values examined by ata_dev_classify().
1222 *
1223 * LOCKING:
1224 * caller.
Tejun Heob4dc7622006-01-24 17:05:22 +09001225 *
1226 * RETURNS:
1227 * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 */
Tejun Heo3f198592007-09-02 23:23:57 +09001229unsigned int ata_dev_try_classify(struct ata_device *dev, int present,
1230 u8 *r_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Tejun Heo3f198592007-09-02 23:23:57 +09001232 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 struct ata_taskfile tf;
1234 unsigned int class;
1235 u8 err;
1236
Tejun Heo3f198592007-09-02 23:23:57 +09001237 ap->ops->dev_select(ap, dev->devno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 memset(&tf, 0, sizeof(tf));
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 ap->ops->tf_read(ap, &tf);
Jeff Garzik0169e282005-10-29 21:25:10 -04001242 err = tf.feature;
Tejun Heob4dc7622006-01-24 17:05:22 +09001243 if (r_err)
1244 *r_err = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Alan Coxc5038fc2007-10-25 14:21:16 +01001246 /* see if device passed diags: continue and warn later */
1247 if (err == 0)
Alan Cox93590852006-09-12 16:55:12 +01001248 /* diagnostic fail : do nothing _YET_ */
Tejun Heo3f198592007-09-02 23:23:57 +09001249 dev->horkage |= ATA_HORKAGE_DIAGNOSTIC;
Alan Cox93590852006-09-12 16:55:12 +01001250 else if (err == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 /* do nothing */ ;
Tejun Heo3f198592007-09-02 23:23:57 +09001252 else if ((dev->devno == 0) && (err == 0x81))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 /* do nothing */ ;
1254 else
Tejun Heob4dc7622006-01-24 17:05:22 +09001255 return ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Tejun Heob4dc7622006-01-24 17:05:22 +09001257 /* determine if device is ATA or ATAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 class = ata_dev_classify(&tf);
Tejun Heob4dc7622006-01-24 17:05:22 +09001259
Tejun Heod7fbee02007-09-02 23:24:48 +09001260 if (class == ATA_DEV_UNKNOWN) {
1261 /* If the device failed diagnostic, it's likely to
1262 * have reported incorrect device signature too.
1263 * Assume ATA device if the device seems present but
1264 * device signature is invalid with diagnostic
1265 * failure.
1266 */
1267 if (present && (dev->horkage & ATA_HORKAGE_DIAGNOSTIC))
1268 class = ATA_DEV_ATA;
1269 else
1270 class = ATA_DEV_NONE;
1271 } else if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
1272 class = ATA_DEV_NONE;
1273
Tejun Heob4dc7622006-01-24 17:05:22 +09001274 return class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
1277/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001278 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 * @id: IDENTIFY DEVICE results we will examine
1280 * @s: string into which data is output
1281 * @ofs: offset into identify device page
1282 * @len: length of string to return. must be an even number.
1283 *
1284 * The strings in the IDENTIFY DEVICE page are broken up into
1285 * 16-bit chunks. Run through the string, and output each
1286 * 8-bit chunk linearly, regardless of platform.
1287 *
1288 * LOCKING:
1289 * caller.
1290 */
1291
Tejun Heo6a62a042006-02-13 10:02:46 +09001292void ata_id_string(const u16 *id, unsigned char *s,
1293 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 unsigned int c;
1296
1297 while (len > 0) {
1298 c = id[ofs] >> 8;
1299 *s = c;
1300 s++;
1301
1302 c = id[ofs] & 0xff;
1303 *s = c;
1304 s++;
1305
1306 ofs++;
1307 len -= 2;
1308 }
1309}
1310
Tejun Heo0e949ff2006-02-12 22:47:04 +09001311/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001312 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +09001313 * @id: IDENTIFY DEVICE results we will examine
1314 * @s: string into which data is output
1315 * @ofs: offset into identify device page
1316 * @len: length of string to return. must be an odd number.
1317 *
Tejun Heo6a62a042006-02-13 10:02:46 +09001318 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +09001319 * trims trailing spaces and terminates the resulting string with
1320 * null. @len must be actual maximum length (even number) + 1.
1321 *
1322 * LOCKING:
1323 * caller.
1324 */
Tejun Heo6a62a042006-02-13 10:02:46 +09001325void ata_id_c_string(const u16 *id, unsigned char *s,
1326 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +09001327{
1328 unsigned char *p;
1329
1330 WARN_ON(!(len & 1));
1331
Tejun Heo6a62a042006-02-13 10:02:46 +09001332 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +09001333
1334 p = s + strnlen(s, len - 1);
1335 while (p > s && p[-1] == ' ')
1336 p--;
1337 *p = '\0';
1338}
Edward Falk0baab862005-06-02 18:17:13 -04001339
Tejun Heodb6f8752007-09-03 12:31:58 +09001340static u64 ata_id_n_sectors(const u16 *id)
1341{
1342 if (ata_id_has_lba(id)) {
1343 if (ata_id_has_lba48(id))
1344 return ata_id_u64(id, 100);
1345 else
1346 return ata_id_u32(id, 60);
1347 } else {
1348 if (ata_id_current_chs_valid(id))
1349 return ata_id_u32(id, 57);
1350 else
1351 return id[1] * id[3] * id[6];
1352 }
1353}
1354
Alan Cox1e999732007-04-11 00:23:13 +01001355static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
1356{
1357 u64 sectors = 0;
1358
1359 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1360 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
1361 sectors |= (tf->hob_lbal & 0xff) << 24;
1362 sectors |= (tf->lbah & 0xff) << 16;
1363 sectors |= (tf->lbam & 0xff) << 8;
1364 sectors |= (tf->lbal & 0xff);
1365
1366 return ++sectors;
1367}
1368
1369static u64 ata_tf_to_lba(struct ata_taskfile *tf)
1370{
1371 u64 sectors = 0;
1372
1373 sectors |= (tf->device & 0x0f) << 24;
1374 sectors |= (tf->lbah & 0xff) << 16;
1375 sectors |= (tf->lbam & 0xff) << 8;
1376 sectors |= (tf->lbal & 0xff);
1377
1378 return ++sectors;
1379}
1380
1381/**
Tejun Heoc728a912007-09-03 12:32:30 +09001382 * ata_read_native_max_address - Read native max address
1383 * @dev: target device
1384 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +01001385 *
Tejun Heoc728a912007-09-03 12:32:30 +09001386 * Perform an LBA48 or LBA28 native size query upon the device in
1387 * question.
1388 *
1389 * RETURNS:
1390 * 0 on success, -EACCES if command is aborted by the drive.
1391 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +01001392 */
Tejun Heoc728a912007-09-03 12:32:30 +09001393static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001394{
Tejun Heoc728a912007-09-03 12:32:30 +09001395 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001396 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001397 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001398
1399 ata_tf_init(dev, &tf);
1400
Tejun Heoc728a912007-09-03 12:32:30 +09001401 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +01001402 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001403
1404 if (lba48) {
1405 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1406 tf.flags |= ATA_TFLAG_LBA48;
1407 } else
1408 tf.command = ATA_CMD_READ_NATIVE_MAX;
1409
Alan Cox1e999732007-04-11 00:23:13 +01001410 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001411 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001412
Tejun Heo2b789102007-10-09 15:05:44 +09001413 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001414 if (err_mask) {
1415 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
1416 "max address (err_mask=0x%x)\n", err_mask);
1417 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1418 return -EACCES;
1419 return -EIO;
1420 }
Alan Cox1e999732007-04-11 00:23:13 +01001421
Tejun Heoc728a912007-09-03 12:32:30 +09001422 if (lba48)
1423 *max_sectors = ata_tf_to_lba48(&tf);
1424 else
1425 *max_sectors = ata_tf_to_lba(&tf);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001426 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
Alan Cox93328e112007-09-29 04:06:48 -04001427 (*max_sectors)--;
Tejun Heoc728a912007-09-03 12:32:30 +09001428 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001429}
1430
1431/**
Tejun Heoc728a912007-09-03 12:32:30 +09001432 * ata_set_max_sectors - Set max sectors
1433 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -07001434 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +01001435 *
Tejun Heoc728a912007-09-03 12:32:30 +09001436 * Set max sectors of @dev to @new_sectors.
1437 *
1438 * RETURNS:
1439 * 0 on success, -EACCES if command is aborted or denied (due to
1440 * previous non-volatile SET_MAX) by the drive. -EIO on other
1441 * errors.
Alan Cox1e999732007-04-11 00:23:13 +01001442 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001443static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001444{
Tejun Heoc728a912007-09-03 12:32:30 +09001445 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001446 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001447 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001448
1449 new_sectors--;
1450
1451 ata_tf_init(dev, &tf);
1452
Alan Cox1e999732007-04-11 00:23:13 +01001453 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001454
1455 if (lba48) {
1456 tf.command = ATA_CMD_SET_MAX_EXT;
1457 tf.flags |= ATA_TFLAG_LBA48;
1458
1459 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1460 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1461 tf.hob_lbah = (new_sectors >> 40) & 0xff;
Tejun Heo1e582ba2007-09-21 20:07:14 +09001462 } else {
Tejun Heoc728a912007-09-03 12:32:30 +09001463 tf.command = ATA_CMD_SET_MAX;
1464
Tejun Heo1e582ba2007-09-21 20:07:14 +09001465 tf.device |= (new_sectors >> 24) & 0xf;
1466 }
1467
Alan Cox1e999732007-04-11 00:23:13 +01001468 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001469 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001470
1471 tf.lbal = (new_sectors >> 0) & 0xff;
1472 tf.lbam = (new_sectors >> 8) & 0xff;
1473 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +01001474
Tejun Heo2b789102007-10-09 15:05:44 +09001475 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001476 if (err_mask) {
1477 ata_dev_printk(dev, KERN_WARNING, "failed to set "
1478 "max address (err_mask=0x%x)\n", err_mask);
1479 if (err_mask == AC_ERR_DEV &&
1480 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1481 return -EACCES;
1482 return -EIO;
1483 }
Alan Cox1e999732007-04-11 00:23:13 +01001484
Tejun Heoc728a912007-09-03 12:32:30 +09001485 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001486}
1487
1488/**
1489 * ata_hpa_resize - Resize a device with an HPA set
1490 * @dev: Device to resize
1491 *
1492 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1493 * it if required to the full size of the media. The caller must check
1494 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +09001495 *
1496 * RETURNS:
1497 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +01001498 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001499static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +01001500{
Tejun Heo05027ad2007-09-03 12:32:57 +09001501 struct ata_eh_context *ehc = &dev->link->eh_context;
1502 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1503 u64 sectors = ata_id_n_sectors(dev->id);
1504 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +09001505 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -04001506
Tejun Heo05027ad2007-09-03 12:32:57 +09001507 /* do we need to do it? */
1508 if (dev->class != ATA_DEV_ATA ||
1509 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1510 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +09001511 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001512
Tejun Heo05027ad2007-09-03 12:32:57 +09001513 /* read native max address */
1514 rc = ata_read_native_max_address(dev, &native_sectors);
1515 if (rc) {
Tejun Heodda7aba2008-03-23 21:05:15 +09001516 /* If device aborted the command or HPA isn't going to
1517 * be unlocked, skip HPA resizing.
Tejun Heo05027ad2007-09-03 12:32:57 +09001518 */
Tejun Heodda7aba2008-03-23 21:05:15 +09001519 if (rc == -EACCES || !ata_ignore_hpa) {
Tejun Heo05027ad2007-09-03 12:32:57 +09001520 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
Tejun Heodda7aba2008-03-23 21:05:15 +09001521 "broken, skipping HPA handling\n");
Tejun Heo05027ad2007-09-03 12:32:57 +09001522 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001523
Tejun Heo05027ad2007-09-03 12:32:57 +09001524 /* we can continue if device aborted the command */
1525 if (rc == -EACCES)
1526 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001527 }
Tejun Heo37301a52007-06-25 20:45:54 +09001528
Tejun Heo05027ad2007-09-03 12:32:57 +09001529 return rc;
1530 }
1531
1532 /* nothing to do? */
1533 if (native_sectors <= sectors || !ata_ignore_hpa) {
1534 if (!print_info || native_sectors == sectors)
1535 return 0;
1536
1537 if (native_sectors > sectors)
1538 ata_dev_printk(dev, KERN_INFO,
1539 "HPA detected: current %llu, native %llu\n",
1540 (unsigned long long)sectors,
1541 (unsigned long long)native_sectors);
1542 else if (native_sectors < sectors)
1543 ata_dev_printk(dev, KERN_WARNING,
1544 "native sectors (%llu) is smaller than "
1545 "sectors (%llu)\n",
1546 (unsigned long long)native_sectors,
1547 (unsigned long long)sectors);
1548 return 0;
1549 }
1550
1551 /* let's unlock HPA */
1552 rc = ata_set_max_sectors(dev, native_sectors);
1553 if (rc == -EACCES) {
1554 /* if device aborted the command, skip HPA resizing */
1555 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1556 "(%llu -> %llu), skipping HPA handling\n",
1557 (unsigned long long)sectors,
1558 (unsigned long long)native_sectors);
1559 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1560 return 0;
1561 } else if (rc)
1562 return rc;
1563
1564 /* re-read IDENTIFY data */
1565 rc = ata_dev_reread_id(dev, 0);
1566 if (rc) {
1567 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1568 "data after HPA resizing\n");
1569 return rc;
1570 }
1571
1572 if (print_info) {
1573 u64 new_sectors = ata_id_n_sectors(dev->id);
1574 ata_dev_printk(dev, KERN_INFO,
1575 "HPA unlocked: %llu -> %llu, native %llu\n",
1576 (unsigned long long)sectors,
1577 (unsigned long long)new_sectors,
1578 (unsigned long long)native_sectors);
1579 }
1580
1581 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001582}
1583
Edward Falk0baab862005-06-02 18:17:13 -04001584/**
1585 * ata_noop_dev_select - Select device 0/1 on ATA bus
1586 * @ap: ATA channel to manipulate
1587 * @device: ATA device (numbered from zero) to select
1588 *
1589 * This function performs no actual function.
1590 *
1591 * May be used as the dev_select() entry in ata_port_operations.
1592 *
1593 * LOCKING:
1594 * caller.
1595 */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001596void ata_noop_dev_select(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
1598}
1599
Edward Falk0baab862005-06-02 18:17:13 -04001600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601/**
1602 * ata_std_dev_select - Select device 0/1 on ATA bus
1603 * @ap: ATA channel to manipulate
1604 * @device: ATA device (numbered from zero) to select
1605 *
1606 * Use the method defined in the ATA specification to
1607 * make either device 0, or device 1, active on the
Edward Falk0baab862005-06-02 18:17:13 -04001608 * ATA channel. Works with both PIO and MMIO.
1609 *
1610 * May be used as the dev_select() entry in ata_port_operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 *
1612 * LOCKING:
1613 * caller.
1614 */
1615
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001616void ata_std_dev_select(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
1618 u8 tmp;
1619
1620 if (device == 0)
1621 tmp = ATA_DEVICE_OBS;
1622 else
1623 tmp = ATA_DEVICE_OBS | ATA_DEV1;
1624
Tejun Heo0d5ff562007-02-01 15:06:36 +09001625 iowrite8(tmp, ap->ioaddr.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 ata_pause(ap); /* needed; also flushes, for mmio */
1627}
1628
1629/**
1630 * ata_dev_select - Select device 0/1 on ATA bus
1631 * @ap: ATA channel to manipulate
1632 * @device: ATA device (numbered from zero) to select
1633 * @wait: non-zero to wait for Status register BSY bit to clear
1634 * @can_sleep: non-zero if context allows sleeping
1635 *
1636 * Use the method defined in the ATA specification to
1637 * make either device 0, or device 1, active on the
1638 * ATA channel.
1639 *
1640 * This is a high-level version of ata_std_dev_select(),
1641 * which additionally provides the services of inserting
1642 * the proper pauses and status polling, where needed.
1643 *
1644 * LOCKING:
1645 * caller.
1646 */
1647
1648void ata_dev_select(struct ata_port *ap, unsigned int device,
1649 unsigned int wait, unsigned int can_sleep)
1650{
Tejun Heo88574552006-06-25 20:00:35 +09001651 if (ata_msg_probe(ap))
Tejun Heo44877b42007-02-21 01:06:51 +09001652 ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, "
1653 "device %u, wait %u\n", device, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 if (wait)
1656 ata_wait_idle(ap);
1657
1658 ap->ops->dev_select(ap, device);
1659
1660 if (wait) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001661 if (can_sleep && ap->link.device[device].class == ATA_DEV_ATAPI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 msleep(150);
1663 ata_wait_idle(ap);
1664 }
1665}
1666
1667/**
1668 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001669 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001671 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1672 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 *
1674 * LOCKING:
1675 * caller.
1676 */
1677
Tejun Heo0bd33002006-02-12 22:47:05 +09001678static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
1680 DPRINTK("49==0x%04x "
1681 "53==0x%04x "
1682 "63==0x%04x "
1683 "64==0x%04x "
1684 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001685 id[49],
1686 id[53],
1687 id[63],
1688 id[64],
1689 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 DPRINTK("80==0x%04x "
1691 "81==0x%04x "
1692 "82==0x%04x "
1693 "83==0x%04x "
1694 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001695 id[80],
1696 id[81],
1697 id[82],
1698 id[83],
1699 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 DPRINTK("88==0x%04x "
1701 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001702 id[88],
1703 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
1705
Tejun Heocb95d562006-03-06 04:31:56 +09001706/**
1707 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1708 * @id: IDENTIFY data to compute xfer mask from
1709 *
1710 * Compute the xfermask for this device. This is not as trivial
1711 * as it seems if we must consider early devices correctly.
1712 *
1713 * FIXME: pre IDE drive timing (do we care ?).
1714 *
1715 * LOCKING:
1716 * None.
1717 *
1718 * RETURNS:
1719 * Computed xfermask
1720 */
Tejun Heo7dc951a2007-11-27 19:43:42 +09001721unsigned long ata_id_xfermask(const u16 *id)
Tejun Heocb95d562006-03-06 04:31:56 +09001722{
Tejun Heo7dc951a2007-11-27 19:43:42 +09001723 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heocb95d562006-03-06 04:31:56 +09001724
1725 /* Usual case. Word 53 indicates word 64 is valid */
1726 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1727 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1728 pio_mask <<= 3;
1729 pio_mask |= 0x7;
1730 } else {
1731 /* If word 64 isn't valid then Word 51 high byte holds
1732 * the PIO timing number for the maximum. Turn it into
1733 * a mask.
1734 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001735 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001736 if (mode < 5) /* Valid PIO range */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001737 pio_mask = (2 << mode) - 1;
Alan Cox46767aeb2006-09-29 18:26:47 +01001738 else
1739 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001740
1741 /* But wait.. there's more. Design your standards by
1742 * committee and you too can get a free iordy field to
1743 * process. However its the speeds not the modes that
1744 * are supported... Note drivers using the timing API
1745 * will get this right anyway
1746 */
1747 }
1748
1749 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001750
Alan Coxb352e572006-08-10 18:52:12 +01001751 if (ata_id_is_cfa(id)) {
1752 /*
1753 * Process compact flash extended modes
1754 */
1755 int pio = id[163] & 0x7;
1756 int dma = (id[163] >> 3) & 7;
1757
1758 if (pio)
1759 pio_mask |= (1 << 5);
1760 if (pio > 1)
1761 pio_mask |= (1 << 6);
1762 if (dma)
1763 mwdma_mask |= (1 << 3);
1764 if (dma > 1)
1765 mwdma_mask |= (1 << 4);
1766 }
1767
Tejun Heofb21f0d2006-03-12 12:34:35 +09001768 udma_mask = 0;
1769 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1770 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001771
1772 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1773}
1774
Tejun Heo86e45b62006-03-05 15:29:09 +09001775/**
Jeff Garzik442eacc2007-12-19 04:25:10 -05001776 * ata_pio_queue_task - Queue port_task
Tejun Heo86e45b62006-03-05 15:29:09 +09001777 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001778 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001779 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001780 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001781 *
1782 * Schedule @fn(@data) for execution after @delay jiffies using
1783 * port_task. There is one port_task per port and it's the
1784 * user(low level driver)'s responsibility to make sure that only
1785 * one task is active at any given time.
1786 *
1787 * libata core layer takes care of synchronization between
Jeff Garzik442eacc2007-12-19 04:25:10 -05001788 * port_task and EH. ata_pio_queue_task() may be ignored for EH
Tejun Heo86e45b62006-03-05 15:29:09 +09001789 * synchronization.
1790 *
1791 * LOCKING:
1792 * Inherited from caller.
1793 */
Jeff Garzik442eacc2007-12-19 04:25:10 -05001794static void ata_pio_queue_task(struct ata_port *ap, void *data,
1795 unsigned long delay)
Tejun Heo86e45b62006-03-05 15:29:09 +09001796{
David Howells65f27f32006-11-22 14:55:48 +00001797 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001798
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001799 /* may fail if ata_port_flush_task() in progress */
1800 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001801}
1802
1803/**
1804 * ata_port_flush_task - Flush port_task
1805 * @ap: The ata_port to flush port_task for
1806 *
1807 * After this function completes, port_task is guranteed not to
1808 * be running or scheduled.
1809 *
1810 * LOCKING:
1811 * Kernel thread context (may sleep)
1812 */
1813void ata_port_flush_task(struct ata_port *ap)
1814{
Tejun Heo86e45b62006-03-05 15:29:09 +09001815 DPRINTK("ENTER\n");
1816
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001817 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001818
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001819 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001820 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001821}
1822
Adrian Bunk7102d232007-01-04 00:09:36 +01001823static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001824{
Tejun Heo77853bf2006-01-23 13:09:36 +09001825 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001826
Tejun Heoa2a7a662005-12-13 14:48:31 +09001827 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001828}
1829
1830/**
Tejun Heo24326972006-11-14 22:47:09 +09001831 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001832 * @dev: Device to which the command is sent
1833 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001834 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001835 * @dma_dir: Data tranfer direction of the command
Randy Dunlap5c1ad8b2007-10-18 14:12:26 -07001836 * @sgl: sg list for the data buffer of the command
Tejun Heo24326972006-11-14 22:47:09 +09001837 * @n_elem: Number of sg entries
Tejun Heo2b789102007-10-09 15:05:44 +09001838 * @timeout: Timeout in msecs (0 for default)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001839 *
1840 * Executes libata internal command with timeout. @tf contains
1841 * command on entry and result on return. Timeout and error
1842 * conditions are reported via return value. No recovery action
1843 * is taken after a command times out. It's caller's duty to
1844 * clean up after timeout.
1845 *
1846 * LOCKING:
1847 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001848 *
1849 * RETURNS:
1850 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001851 */
Tejun Heo24326972006-11-14 22:47:09 +09001852unsigned ata_exec_internal_sg(struct ata_device *dev,
1853 struct ata_taskfile *tf, const u8 *cdb,
Jens Axboe87260212007-10-16 11:14:12 +02001854 int dma_dir, struct scatterlist *sgl,
Tejun Heo2b789102007-10-09 15:05:44 +09001855 unsigned int n_elem, unsigned long timeout)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001856{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001857 struct ata_link *link = dev->link;
1858 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001859 u8 command = tf->command;
1860 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001861 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001862 u32 preempted_sactive, preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001863 int preempted_nr_active_links;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001864 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001865 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001866 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001867 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001868
Jeff Garzikba6a1302006-06-22 23:46:10 -04001869 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001870
Tejun Heoe3180492006-05-15 20:58:09 +09001871 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001872 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001873 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001874 return AC_ERR_SYSTEM;
1875 }
1876
Tejun Heo2ab7db12006-05-15 20:58:02 +09001877 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001878
Tejun Heo2ab7db12006-05-15 20:58:02 +09001879 /* XXX: Tag 0 is used for drivers with legacy EH as some
1880 * drivers choke if any other tag is given. This breaks
1881 * ata_tag_internal() test for those drivers. Don't use new
1882 * EH stuff without converting to it.
1883 */
1884 if (ap->ops->error_handler)
1885 tag = ATA_TAG_INTERNAL;
1886 else
1887 tag = 0;
1888
Tejun Heo6cec4a32006-05-15 21:03:41 +09001889 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001890 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001891 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001892
1893 qc->tag = tag;
1894 qc->scsicmd = NULL;
1895 qc->ap = ap;
1896 qc->dev = dev;
1897 ata_qc_reinit(qc);
1898
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001899 preempted_tag = link->active_tag;
1900 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001901 preempted_qc_active = ap->qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001902 preempted_nr_active_links = ap->nr_active_links;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001903 link->active_tag = ATA_TAG_POISON;
1904 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001905 ap->qc_active = 0;
Tejun Heoda917d62007-09-23 13:14:12 +09001906 ap->nr_active_links = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001907
1908 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001909 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001910 if (cdb)
1911 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001912 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001913 qc->dma_dir = dma_dir;
1914 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001915 unsigned int i, buflen = 0;
Jens Axboe87260212007-10-16 11:14:12 +02001916 struct scatterlist *sg;
Tejun Heo24326972006-11-14 22:47:09 +09001917
Jens Axboe87260212007-10-16 11:14:12 +02001918 for_each_sg(sgl, sg, n_elem, i)
1919 buflen += sg->length;
Tejun Heo24326972006-11-14 22:47:09 +09001920
Jens Axboe87260212007-10-16 11:14:12 +02001921 ata_sg_init(qc, sgl, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001922 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001923 }
1924
Tejun Heo77853bf2006-01-23 13:09:36 +09001925 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001926 qc->complete_fn = ata_qc_complete_internal;
1927
Tejun Heo8e0e6942006-03-31 20:41:11 +09001928 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001929
Jeff Garzikba6a1302006-06-22 23:46:10 -04001930 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001931
Tejun Heo2b789102007-10-09 15:05:44 +09001932 if (!timeout)
1933 timeout = ata_probe_timeout * 1000 / HZ;
1934
1935 rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
Albert Lee41ade502006-03-14 11:19:04 +08001936
Tejun Heod95a7172006-05-15 20:58:14 +09001937 ata_port_flush_task(ap);
1938
1939 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001940 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001941
1942 /* We're racing with irq here. If we lose, the
1943 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001944 * twice. If we win, the port is frozen and will be
1945 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001946 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001947 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001948 qc->err_mask |= AC_ERR_TIMEOUT;
1949
1950 if (ap->ops->error_handler)
1951 ata_port_freeze(ap);
1952 else
1953 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001954
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001955 if (ata_msg_warn(ap))
1956 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001957 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001958 }
1959
Jeff Garzikba6a1302006-06-22 23:46:10 -04001960 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001961 }
1962
Tejun Heod95a7172006-05-15 20:58:14 +09001963 /* do post_internal_cmd */
1964 if (ap->ops->post_internal_cmd)
1965 ap->ops->post_internal_cmd(qc);
1966
Tejun Heoa51d6442007-03-20 15:24:11 +09001967 /* perform minimal error analysis */
1968 if (qc->flags & ATA_QCFLAG_FAILED) {
1969 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1970 qc->err_mask |= AC_ERR_DEV;
1971
1972 if (!qc->err_mask)
1973 qc->err_mask |= AC_ERR_OTHER;
1974
1975 if (qc->err_mask & ~AC_ERR_OTHER)
1976 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001977 }
1978
Tejun Heo15869302006-05-15 20:57:33 +09001979 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001980 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001981
Tejun Heoe61e0672006-05-15 20:57:40 +09001982 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001983 err_mask = qc->err_mask;
1984
1985 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001986 link->active_tag = preempted_tag;
1987 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001988 ap->qc_active = preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001989 ap->nr_active_links = preempted_nr_active_links;
Tejun Heo77853bf2006-01-23 13:09:36 +09001990
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001991 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1992 * Until those drivers are fixed, we detect the condition
1993 * here, fail the command with AC_ERR_SYSTEM and reenable the
1994 * port.
1995 *
1996 * Note that this doesn't change any behavior as internal
1997 * command failure results in disabling the device in the
1998 * higher layer for LLDDs without new reset/EH callbacks.
1999 *
2000 * Kill the following code as soon as those drivers are fixed.
2001 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09002002 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09002003 err_mask |= AC_ERR_SYSTEM;
2004 ata_port_probe(ap);
2005 }
2006
Jeff Garzikba6a1302006-06-22 23:46:10 -04002007 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09002008
Tejun Heo77853bf2006-01-23 13:09:36 +09002009 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09002010}
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012/**
Tejun Heo33480a02006-12-12 02:15:31 +09002013 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09002014 * @dev: Device to which the command is sent
2015 * @tf: Taskfile registers for the command and the result
2016 * @cdb: CDB for packet command
2017 * @dma_dir: Data tranfer direction of the command
2018 * @buf: Data buffer of the command
2019 * @buflen: Length of data buffer
Tejun Heo2b789102007-10-09 15:05:44 +09002020 * @timeout: Timeout in msecs (0 for default)
Tejun Heo24326972006-11-14 22:47:09 +09002021 *
2022 * Wrapper around ata_exec_internal_sg() which takes simple
2023 * buffer instead of sg list.
2024 *
2025 * LOCKING:
2026 * None. Should be called with kernel context, might sleep.
2027 *
2028 * RETURNS:
2029 * Zero on success, AC_ERR_* mask on failure
2030 */
2031unsigned ata_exec_internal(struct ata_device *dev,
2032 struct ata_taskfile *tf, const u8 *cdb,
Tejun Heo2b789102007-10-09 15:05:44 +09002033 int dma_dir, void *buf, unsigned int buflen,
2034 unsigned long timeout)
Tejun Heo24326972006-11-14 22:47:09 +09002035{
Tejun Heo33480a02006-12-12 02:15:31 +09002036 struct scatterlist *psg = NULL, sg;
2037 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09002038
Tejun Heo33480a02006-12-12 02:15:31 +09002039 if (dma_dir != DMA_NONE) {
2040 WARN_ON(!buf);
2041 sg_init_one(&sg, buf, buflen);
2042 psg = &sg;
2043 n_elem++;
2044 }
Tejun Heo24326972006-11-14 22:47:09 +09002045
Tejun Heo2b789102007-10-09 15:05:44 +09002046 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
2047 timeout);
Tejun Heo24326972006-11-14 22:47:09 +09002048}
2049
2050/**
Tejun Heo977e6b92006-06-24 20:30:19 +09002051 * ata_do_simple_cmd - execute simple internal command
2052 * @dev: Device to which the command is sent
2053 * @cmd: Opcode to execute
2054 *
2055 * Execute a 'simple' command, that only consists of the opcode
2056 * 'cmd' itself, without filling any other registers
2057 *
2058 * LOCKING:
2059 * Kernel thread context (may sleep).
2060 *
2061 * RETURNS:
2062 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09002063 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09002064unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09002065{
2066 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09002067
2068 ata_tf_init(dev, &tf);
2069
2070 tf.command = cmd;
2071 tf.flags |= ATA_TFLAG_DEVICE;
2072 tf.protocol = ATA_PROT_NODATA;
2073
Tejun Heo2b789102007-10-09 15:05:44 +09002074 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09002075}
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002078 * ata_pio_need_iordy - check if iordy needed
2079 * @adev: ATA device
2080 *
2081 * Check if the current speed of the device requires IORDY. Used
2082 * by various controllers for chip configuration.
2083 */
Jeff Garzika617c092007-05-21 20:14:23 -04002084
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002085unsigned int ata_pio_need_iordy(const struct ata_device *adev)
2086{
Alan Cox432729f2007-03-08 23:22:59 +00002087 /* Controller doesn't support IORDY. Probably a pointless check
2088 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002089 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002090 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00002091 /* PIO3 and higher it is mandatory */
2092 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002093 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00002094 /* We turn it on when possible */
2095 if (ata_id_has_iordy(adev->id))
2096 return 1;
2097 return 0;
2098}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002099
Alan Cox432729f2007-03-08 23:22:59 +00002100/**
2101 * ata_pio_mask_no_iordy - Return the non IORDY mask
2102 * @adev: ATA device
2103 *
2104 * Compute the highest mode possible if we are not using iordy. Return
2105 * -1 if no iordy mode is available.
2106 */
Jeff Garzika617c092007-05-21 20:14:23 -04002107
Alan Cox432729f2007-03-08 23:22:59 +00002108static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
2109{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002110 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002111 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00002112 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002113 /* Is the speed faster than the drive allows non IORDY ? */
2114 if (pio) {
2115 /* This is cycle times not frequency - watch the logic! */
2116 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00002117 return 3 << ATA_SHIFT_PIO;
2118 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002119 }
2120 }
Alan Cox432729f2007-03-08 23:22:59 +00002121 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002122}
2123
2124/**
Tejun Heo49016ac2006-02-21 02:12:11 +09002125 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09002126 * @dev: target device
2127 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09002128 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09002129 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09002130 *
2131 * Read ID data from the specified device. ATA_CMD_ID_ATA is
2132 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002133 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
2134 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09002135 *
Alan Cox50a99012007-08-08 14:27:00 +01002136 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002137 * now we abort if we hit that case.
Alan Cox50a99012007-08-08 14:27:00 +01002138 *
Tejun Heo49016ac2006-02-21 02:12:11 +09002139 * LOCKING:
2140 * Kernel thread context (may sleep)
2141 *
2142 * RETURNS:
2143 * 0 on success, -errno otherwise.
2144 */
Tejun Heoa9beec92006-05-31 18:27:44 +09002145int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09002146 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09002147{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002148 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09002149 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09002150 struct ata_taskfile tf;
2151 unsigned int err_mask = 0;
2152 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02002153 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09002154 int rc;
2155
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002156 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002157 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Tejun Heo49016ac2006-02-21 02:12:11 +09002158
Tejun Heo49016ac2006-02-21 02:12:11 +09002159 ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */
Tejun Heo49016ac2006-02-21 02:12:11 +09002160 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09002161 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09002162
2163 switch (class) {
2164 case ATA_DEV_ATA:
2165 tf.command = ATA_CMD_ID_ATA;
2166 break;
2167 case ATA_DEV_ATAPI:
2168 tf.command = ATA_CMD_ID_ATAPI;
2169 break;
2170 default:
2171 rc = -ENODEV;
2172 reason = "unsupported class";
2173 goto err_out;
2174 }
2175
2176 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08002177
2178 /* Some devices choke if TF registers contain garbage. Make
2179 * sure those are properly initialized.
2180 */
2181 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2182
2183 /* Device presence detection is unreliable on some
2184 * controllers. Always poll IDENTIFY if available.
2185 */
2186 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09002187
Tejun Heo3373efd2006-05-15 20:57:53 +09002188 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo2b789102007-10-09 15:05:44 +09002189 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
Tejun Heo49016ac2006-02-21 02:12:11 +09002190 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09002191 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo1ffc1512008-03-23 15:16:53 +09002192 ata_dev_printk(dev, KERN_DEBUG,
2193 "NODEV after polling detection\n");
Tejun Heo55a8e2c2006-11-10 18:08:10 +09002194 return -ENOENT;
2195 }
2196
Tejun Heo1ffc1512008-03-23 15:16:53 +09002197 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
2198 /* Device or controller might have reported
2199 * the wrong device class. Give a shot at the
2200 * other IDENTIFY if the current one is
2201 * aborted by the device.
2202 */
2203 if (may_fallback) {
2204 may_fallback = 0;
Tejun Heo54936f82007-05-11 14:35:29 +02002205
Tejun Heo1ffc1512008-03-23 15:16:53 +09002206 if (class == ATA_DEV_ATA)
2207 class = ATA_DEV_ATAPI;
2208 else
2209 class = ATA_DEV_ATA;
2210 goto retry;
2211 }
2212
2213 /* Control reaches here iff the device aborted
2214 * both flavors of IDENTIFYs which happens
2215 * sometimes with phantom devices.
2216 */
2217 ata_dev_printk(dev, KERN_DEBUG,
2218 "both IDENTIFYs aborted, assuming NODEV\n");
2219 return -ENOENT;
Tejun Heo54936f82007-05-11 14:35:29 +02002220 }
2221
Tejun Heo49016ac2006-02-21 02:12:11 +09002222 rc = -EIO;
2223 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09002224 goto err_out;
2225 }
2226
Tejun Heo54936f82007-05-11 14:35:29 +02002227 /* Falling back doesn't make sense if ID data was read
2228 * successfully at least once.
2229 */
2230 may_fallback = 0;
2231
Tejun Heo49016ac2006-02-21 02:12:11 +09002232 swap_buf_le16(id, ATA_ID_WORDS);
2233
Tejun Heo49016ac2006-02-21 02:12:11 +09002234 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07002235 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01002236 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07002237
2238 if (class == ATA_DEV_ATA) {
2239 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
2240 goto err_out;
2241 } else {
2242 if (ata_id_is_ata(id))
2243 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09002244 }
2245
Mark Lord169439c2007-04-17 18:26:07 -04002246 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2247 tried_spinup = 1;
2248 /*
2249 * Drive powered-up in standby mode, and requires a specific
2250 * SET_FEATURES spin-up subcommand before it will accept
2251 * anything other than the original IDENTIFY command.
2252 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002253 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07002254 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04002255 rc = -EIO;
2256 reason = "SPINUP failed";
2257 goto err_out;
2258 }
2259 /*
2260 * If the drive initially returned incomplete IDENTIFY info,
2261 * we now must reissue the IDENTIFY command.
2262 */
2263 if (id[2] == 0x37c8)
2264 goto retry;
2265 }
2266
Tejun Heobff04642006-11-10 18:08:10 +09002267 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09002268 /*
2269 * The exact sequence expected by certain pre-ATA4 drives is:
2270 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01002271 * IDENTIFY (optional in early ATA)
2272 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09002273 * anything else..
2274 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01002275 *
2276 * Note that ATA4 says lba is mandatory so the second check
2277 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09002278 */
2279 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09002280 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09002281 if (err_mask) {
2282 rc = -EIO;
2283 reason = "INIT_DEV_PARAMS failed";
2284 goto err_out;
2285 }
2286
2287 /* current CHS translation info (id[53-58]) might be
2288 * changed. reread the identify device info.
2289 */
Tejun Heobff04642006-11-10 18:08:10 +09002290 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09002291 goto retry;
2292 }
2293 }
2294
2295 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09002296
Tejun Heo49016ac2006-02-21 02:12:11 +09002297 return 0;
2298
2299 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09002300 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002301 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09002302 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09002303 return rc;
2304}
2305
Tejun Heo3373efd2006-05-15 20:57:53 +09002306static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002307{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002308 struct ata_port *ap = dev->link->ap;
2309 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002310}
2311
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002312static void ata_dev_config_ncq(struct ata_device *dev,
2313 char *desc, size_t desc_sz)
2314{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002315 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002316 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
2317
2318 if (!ata_id_has_ncq(dev->id)) {
2319 desc[0] = '\0';
2320 return;
2321 }
Tejun Heo75683fe2007-07-05 13:31:27 +09002322 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07002323 snprintf(desc, desc_sz, "NCQ (not used)");
2324 return;
2325 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002326 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04002327 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002328 dev->flags |= ATA_DFLAG_NCQ;
2329 }
2330
2331 if (hdepth >= ddepth)
2332 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
2333 else
2334 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
2335}
2336
Tejun Heo49016ac2006-02-21 02:12:11 +09002337/**
Tejun Heoffeae412006-03-01 16:09:35 +09002338 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09002339 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 *
Tejun Heoffeae412006-03-01 16:09:35 +09002341 * Configure @dev according to @dev->id. Generic and low-level
2342 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 *
2344 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09002345 * Kernel thread context (may sleep)
2346 *
2347 * RETURNS:
2348 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09002350int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002352 struct ata_port *ap = dev->link->ap;
2353 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09002354 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002355 const u16 *id = dev->id;
Tejun Heo7dc951a2007-11-27 19:43:42 +09002356 unsigned long xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01002357 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07002358 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2359 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05002360 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002362 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09002363 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002364 __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
2367
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002368 if (ata_msg_probe(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002369 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Tejun Heo75683fe2007-07-05 13:31:27 +09002371 /* set horkage */
2372 dev->horkage |= ata_dev_blacklisted(dev);
Tejun Heo33267322008-02-13 09:15:09 +09002373 ata_force_horkage(dev);
Tejun Heo75683fe2007-07-05 13:31:27 +09002374
Tejun Heo67465442007-05-15 03:28:16 +09002375 /* let ACPI work its magic */
2376 rc = ata_acpi_on_devcfg(dev);
2377 if (rc)
2378 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08002379
Tejun Heo05027ad2007-09-03 12:32:57 +09002380 /* massage HPA, do it early as it might change IDENTIFY data */
2381 rc = ata_hpa_resize(dev);
2382 if (rc)
2383 return rc;
2384
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002385 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002386 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002387 ata_dev_printk(dev, KERN_DEBUG,
2388 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2389 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002390 __func__,
Tejun Heof15a1da2006-05-15 20:57:56 +09002391 id[49], id[82], id[83], id[84],
2392 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002393
Tejun Heo208a9932006-03-05 17:55:58 +09002394 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09002395 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09002396 dev->max_sectors = 0;
2397 dev->cdb_len = 0;
2398 dev->n_sectors = 0;
2399 dev->cylinders = 0;
2400 dev->heads = 0;
2401 dev->sectors = 0;
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 /*
2404 * common ATA, ATAPI feature tests
2405 */
2406
Tejun Heoff8854b2006-03-06 04:31:56 +09002407 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002408 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002410 if (ata_msg_probe(ap))
2411 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Albert Leeef143d52007-06-05 13:01:33 +08002413 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2414 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2415 sizeof(fwrevbuf));
2416
2417 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2418 sizeof(modelbuf));
2419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 /* ATA-specific feature tests */
2421 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01002422 if (ata_id_is_cfa(id)) {
2423 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09002424 ata_dev_printk(dev, KERN_WARNING,
2425 "supports DRM functions and may "
2426 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01002427 snprintf(revbuf, 7, "CFA");
Alan Coxae8d4ee2007-11-04 22:05:49 -05002428 } else {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002429 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
Alan Coxae8d4ee2007-11-04 22:05:49 -05002430 /* Warn the user if the device has TPM extensions */
2431 if (ata_id_has_tpm(id))
2432 ata_dev_printk(dev, KERN_WARNING,
2433 "supports DRM functions and may "
2434 "not be fully accessable.\n");
2435 }
Alan Coxb352e572006-08-10 18:52:12 +01002436
Tejun Heo1148c3a2006-03-13 19:48:04 +09002437 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09002438
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07002439 if (dev->id[59] & 0x100)
2440 dev->multi_count = dev->id[59] & 0xff;
2441
Tejun Heo1148c3a2006-03-13 19:48:04 +09002442 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09002443 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002444 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002445
Tejun Heo4c2d7212006-03-05 17:55:58 +09002446 lba_desc = "LBA";
2447 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002448 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002449 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002450 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09002451
2452 if (dev->n_sectors >= (1UL << 28) &&
2453 ata_id_has_flush_ext(id))
2454 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002455 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002456
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002457 /* config NCQ */
2458 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2459
Albert Lee8bf62ece2005-05-12 15:29:42 -04002460 /* print device info to dmesg */
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07002461 if (ata_msg_drv(ap) && print_info) {
2462 ata_dev_printk(dev, KERN_INFO,
2463 "%s: %s, %s, max %s\n",
2464 revbuf, modelbuf, fwrevbuf,
2465 ata_mode_string(xfer_mask));
2466 ata_dev_printk(dev, KERN_INFO,
2467 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002468 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07002469 dev->multi_count, lba_desc, ncq_desc);
2470 }
Tejun Heoffeae412006-03-01 16:09:35 +09002471 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002472 /* CHS */
2473
2474 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002475 dev->cylinders = id[1];
2476 dev->heads = id[3];
2477 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002478
Tejun Heo1148c3a2006-03-13 19:48:04 +09002479 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002480 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002481 dev->cylinders = id[54];
2482 dev->heads = id[55];
2483 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002484 }
2485
2486 /* print device info to dmesg */
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07002487 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002488 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07002489 "%s: %s, %s, max %s\n",
2490 revbuf, modelbuf, fwrevbuf,
2491 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002492 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f565b2007-01-30 23:00:40 -07002493 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2494 (unsigned long long)dev->n_sectors,
2495 dev->multi_count, dev->cylinders,
2496 dev->heads, dev->sectors);
2497 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002498 }
2499
Tejun Heo6e7846e2006-02-12 23:32:58 +09002500 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 }
2502
2503 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002504 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002505 const char *cdb_intr_string = "";
2506 const char *atapi_an_string = "";
Tejun Heo91163002008-02-21 13:25:50 +09002507 const char *dma_dir_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002508 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002509
Tejun Heo1148c3a2006-03-13 19:48:04 +09002510 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002512 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002513 ata_dev_printk(dev, KERN_WARNING,
2514 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002515 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 goto err_out_nosup;
2517 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002518 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Tejun Heo7d77b242007-09-23 13:14:13 +09002520 /* Enable ATAPI AN if both the host and device have
2521 * the support. If PMP is attached, SNTF is required
2522 * to enable ATAPI AN to discern between PHY status
2523 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002524 */
Tejun Heo7d77b242007-09-23 13:14:13 +09002525 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
2526 (!ap->nr_pmp_links ||
2527 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002528 unsigned int err_mask;
2529
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002530 /* issue SET feature command to turn this on */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002531 err_mask = ata_dev_set_feature(dev,
2532 SETFEATURES_SATA_ENABLE, SATA_AN);
Tejun Heo854c73a2007-09-23 13:14:11 +09002533 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002534 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002535 "failed to enable ATAPI AN "
2536 "(err_mask=0x%x)\n", err_mask);
2537 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002538 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002539 atapi_an_string = ", ATAPI AN";
2540 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002541 }
2542
Albert Lee08a556d2006-03-31 13:29:04 +08002543 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002544 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002545 cdb_intr_string = ", CDB intr";
2546 }
Albert Lee312f7da2005-09-27 17:38:03 +08002547
Tejun Heo91163002008-02-21 13:25:50 +09002548 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2549 dev->flags |= ATA_DFLAG_DMADIR;
2550 dma_dir_string = ", DMADIR";
2551 }
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002554 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002555 ata_dev_printk(dev, KERN_INFO,
Tejun Heo91163002008-02-21 13:25:50 +09002556 "ATAPI: %s, %s, max %s%s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002557 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002558 ata_mode_string(xfer_mask),
Tejun Heo91163002008-02-21 13:25:50 +09002559 cdb_intr_string, atapi_an_string,
2560 dma_dir_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 }
2562
Tejun Heo914ed352006-11-01 18:39:55 +09002563 /* determine max_sectors */
2564 dev->max_sectors = ATA_MAX_SECTORS;
2565 if (dev->flags & ATA_DFLAG_LBA48)
2566 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2567
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002568 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2569 if (ata_id_has_hipm(dev->id))
2570 dev->flags |= ATA_DFLAG_HIPM;
2571 if (ata_id_has_dipm(dev->id))
2572 dev->flags |= ATA_DFLAG_DIPM;
2573 }
2574
Alan Coxc5038fc2007-10-25 14:21:16 +01002575 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2576 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002577 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002578 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002579 ata_dev_printk(dev, KERN_INFO,
2580 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002581 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002582 dev->max_sectors = ATA_MAX_SECTORS;
2583 }
2584
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002585 if ((dev->class == ATA_DEV_ATAPI) &&
Albert Leef442cd82007-11-15 10:35:47 +09002586 (atapi_command_packet_set(id) == TYPE_TAPE)) {
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002587 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
Albert Leef442cd82007-11-15 10:35:47 +09002588 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2589 }
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002590
Tejun Heo75683fe2007-07-05 13:31:27 +09002591 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002592 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2593 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002594
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002595 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2596 dev->horkage |= ATA_HORKAGE_IPM;
2597
2598 /* reset link pm_policy for this port to no pm */
2599 ap->pm_policy = MAX_PERFORMANCE;
2600 }
2601
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002602 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002603 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002604
Alan Coxc5038fc2007-10-25 14:21:16 +01002605 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2606 /* Let the user know. We don't want to disallow opens for
2607 rescue purposes, or in case the vendor is just a blithering
2608 idiot. Do this after the dev_config call as some controllers
2609 with buggy firmware may want to avoid reporting false device
2610 bugs */
2611
2612 if (print_info) {
2613 ata_dev_printk(dev, KERN_WARNING,
2614"Drive reports diagnostics failure. This may indicate a drive\n");
2615 ata_dev_printk(dev, KERN_WARNING,
2616"fault or invalid emulation. Contact drive vendor for information.\n");
2617 }
2618 }
2619
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002620 if (ata_msg_probe(ap))
2621 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002622 __func__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002623 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
2625err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002626 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002627 ata_dev_printk(dev, KERN_DEBUG,
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002628 "%s: EXIT, err\n", __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002629 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630}
2631
2632/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002633 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002634 * @ap: port
2635 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002636 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002637 * detection.
2638 */
2639
2640int ata_cable_40wire(struct ata_port *ap)
2641{
2642 return ATA_CBL_PATA40;
2643}
2644
2645/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002646 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002647 * @ap: port
2648 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002649 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002650 * detection.
2651 */
2652
2653int ata_cable_80wire(struct ata_port *ap)
2654{
2655 return ATA_CBL_PATA80;
2656}
2657
2658/**
2659 * ata_cable_unknown - return unknown PATA cable.
2660 * @ap: port
2661 *
2662 * Helper method for drivers which have no PATA cable detection.
2663 */
2664
2665int ata_cable_unknown(struct ata_port *ap)
2666{
2667 return ATA_CBL_PATA_UNK;
2668}
2669
2670/**
Tejun Heoc88f90c2007-11-27 19:43:48 +09002671 * ata_cable_ignore - return ignored PATA cable.
2672 * @ap: port
2673 *
2674 * Helper method for drivers which don't use cable type to limit
2675 * transfer mode.
2676 */
2677int ata_cable_ignore(struct ata_port *ap)
2678{
2679 return ATA_CBL_PATA_IGN;
2680}
2681
2682/**
Alan Coxbe0d18d2007-03-06 02:37:56 -08002683 * ata_cable_sata - return SATA cable type
2684 * @ap: port
2685 *
2686 * Helper method for drivers which have SATA cables
2687 */
2688
2689int ata_cable_sata(struct ata_port *ap)
2690{
2691 return ATA_CBL_SATA;
2692}
2693
2694/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 * ata_bus_probe - Reset and probe ATA bus
2696 * @ap: Bus to probe
2697 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002698 * Master ATA bus probing function. Initiates a hardware-dependent
2699 * bus reset, then attempts to identify any devices found on
2700 * the bus.
2701 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002703 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 *
2705 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002706 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 */
2708
Brian King80289162006-08-07 14:27:31 -05002709int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002711 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002712 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002713 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002714 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Tejun Heo28ca5c52006-03-01 16:09:36 +09002716 ata_port_probe(ap);
2717
Tejun Heof58229f2007-08-06 18:36:23 +09002718 ata_link_for_each_dev(dev, &ap->link)
2719 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002720
2721 retry:
Tejun Heocdeab112007-10-29 16:41:09 +09002722 ata_link_for_each_dev(dev, &ap->link) {
2723 /* If we issue an SRST then an ATA drive (not ATAPI)
2724 * may change configuration and be in PIO0 timing. If
2725 * we do a hard reset (or are coming from power on)
2726 * this is true for ATA or ATAPI. Until we've set a
2727 * suitable controller mode we should not touch the
2728 * bus as we may be talking too fast.
2729 */
2730 dev->pio_mode = XFER_PIO_0;
2731
2732 /* If the controller has a pio mode setup function
2733 * then use it to set the chipset to rights. Don't
2734 * touch the DMA setup as that will be dealt with when
2735 * configuring devices.
2736 */
2737 if (ap->ops->set_piomode)
2738 ap->ops->set_piomode(ap, dev);
2739 }
2740
Tejun Heo20444702006-03-13 01:57:01 +09002741 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002742 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002743
Tejun Heof58229f2007-08-06 18:36:23 +09002744 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002745 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2746 dev->class != ATA_DEV_UNKNOWN)
2747 classes[dev->devno] = dev->class;
2748 else
2749 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002750
Tejun Heo52783c52006-05-31 18:28:22 +09002751 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Tejun Heo52783c52006-05-31 18:28:22 +09002754 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002755
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002756 /* read IDENTIFY page and configure devices. We have to do the identify
2757 specific sequence bass-ackwards so that PDIAG- is released by
2758 the slave device */
2759
Bartlomiej Zolnierkiewicza4ba7fe2008-04-02 10:35:15 +09002760 ata_link_for_each_dev_reverse(dev, &ap->link) {
Tejun Heof58229f2007-08-06 18:36:23 +09002761 if (tries[dev->devno])
2762 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002763
Tejun Heoe1211e32006-04-01 01:38:18 +09002764 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002765 continue;
2766
Tejun Heobff04642006-11-10 18:08:10 +09002767 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2768 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002769 if (rc)
2770 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002771 }
2772
Alan Coxbe0d18d2007-03-06 02:37:56 -08002773 /* Now ask for the cable type as PDIAG- should have been released */
2774 if (ap->ops->cable_detect)
2775 ap->cbl = ap->ops->cable_detect(ap);
2776
Alan Cox614fe292007-08-22 23:22:45 +01002777 /* We may have SATA bridge glue hiding here irrespective of the
2778 reported cable types and sensed types */
2779 ata_link_for_each_dev(dev, &ap->link) {
2780 if (!ata_dev_enabled(dev))
2781 continue;
2782 /* SATA drives indicate we have a bridge. We don't know which
2783 end of the link the bridge is which is a problem */
2784 if (ata_id_is_sata(dev->id))
2785 ap->cbl = ATA_CBL_SATA;
2786 }
2787
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002788 /* After the identify sequence we can now set up the devices. We do
2789 this in the normal order so that the user doesn't get confused */
2790
Tejun Heof58229f2007-08-06 18:36:23 +09002791 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002792 if (!ata_dev_enabled(dev))
2793 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002794
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002795 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002796 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002797 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002798 if (rc)
2799 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 }
2801
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002802 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002803 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002804 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002805 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Tejun Heof58229f2007-08-06 18:36:23 +09002807 ata_link_for_each_dev(dev, &ap->link)
2808 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002809 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002810
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002811 /* no device present, disable port */
2812 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002813 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002814
2815 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002816 tries[dev->devno]--;
2817
Tejun Heo14d2bac2006-04-02 17:54:46 +09002818 switch (rc) {
2819 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002820 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002821 tries[dev->devno] = 0;
2822 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002823
2824 case -ENODEV:
2825 /* give it just one more chance */
2826 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002827 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002828 if (tries[dev->devno] == 1) {
2829 /* This is the last chance, better to slow
2830 * down than lose it.
2831 */
Tejun Heo936fd732007-08-06 18:36:23 +09002832 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002833 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2834 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002835 }
2836
Tejun Heo4ae72a12007-02-02 16:22:30 +09002837 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002838 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002839
Tejun Heo14d2bac2006-04-02 17:54:46 +09002840 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841}
2842
2843/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002844 * ata_port_probe - Mark port as enabled
2845 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002847 * Modify @ap data structure such that the system
2848 * thinks that the entire port is enabled.
2849 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002850 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002851 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 */
2853
2854void ata_port_probe(struct ata_port *ap)
2855{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002856 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857}
2858
2859/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002860 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002861 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002862 *
2863 * This function prints link speed and status of a SATA link.
2864 *
2865 * LOCKING:
2866 * None.
2867 */
Tejun Heo936fd732007-08-06 18:36:23 +09002868void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002869{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002870 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002871
Tejun Heo936fd732007-08-06 18:36:23 +09002872 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002873 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002874 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002875
Tejun Heo936fd732007-08-06 18:36:23 +09002876 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002877 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002878 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002879 "SATA link up %s (SStatus %X SControl %X)\n",
2880 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002881 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002882 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002883 "SATA link down (SStatus %X SControl %X)\n",
2884 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002885 }
2886}
2887
2888/**
Alan Coxebdfca6e2006-03-23 15:38:34 +00002889 * ata_dev_pair - return other device on cable
Alan Coxebdfca6e2006-03-23 15:38:34 +00002890 * @adev: device
2891 *
2892 * Obtain the other device on the same cable, or if none is
2893 * present NULL is returned
2894 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002895
Tejun Heo3373efd2006-05-15 20:57:53 +09002896struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca6e2006-03-23 15:38:34 +00002897{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002898 struct ata_link *link = adev->link;
2899 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002900 if (!ata_dev_enabled(pair))
Alan Coxebdfca6e2006-03-23 15:38:34 +00002901 return NULL;
2902 return pair;
2903}
2904
2905/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002906 * ata_port_disable - Disable port.
2907 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002909 * Modify @ap data structure such that the system
2910 * thinks that the entire port is disabled, and should
2911 * never attempt to probe or communicate with devices
2912 * on this port.
2913 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002914 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002915 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 */
2917
2918void ata_port_disable(struct ata_port *ap)
2919{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002920 ap->link.device[0].class = ATA_DEV_NONE;
2921 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002922 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923}
2924
Tejun Heo1c3fae42006-04-02 20:53:28 +09002925/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002926 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002927 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002928 *
Tejun Heo936fd732007-08-06 18:36:23 +09002929 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002930 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002931 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002932 *
2933 * LOCKING:
2934 * Inherited from caller.
2935 *
2936 * RETURNS:
2937 * 0 on success, negative errno on failure
2938 */
Tejun Heo936fd732007-08-06 18:36:23 +09002939int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002940{
Tejun Heo81952c52006-05-15 20:57:47 +09002941 u32 sstatus, spd, mask;
2942 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002943
Tejun Heo936fd732007-08-06 18:36:23 +09002944 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002945 return -EOPNOTSUPP;
2946
2947 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002948 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002949 */
Tejun Heo936fd732007-08-06 18:36:23 +09002950 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002951 if (rc == 0)
2952 spd = (sstatus >> 4) & 0xf;
2953 else
Tejun Heo936fd732007-08-06 18:36:23 +09002954 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002955
Tejun Heo936fd732007-08-06 18:36:23 +09002956 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002957 if (mask <= 1)
2958 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002959
2960 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002961 highbit = fls(mask) - 1;
2962 mask &= ~(1 << highbit);
2963
Tejun Heo008a7892007-07-16 14:29:40 +09002964 /* Mask off all speeds higher than or equal to the current
2965 * one. Force 1.5Gbps if current SPD is not available.
2966 */
2967 if (spd > 1)
2968 mask &= (1 << (spd - 1)) - 1;
2969 else
2970 mask &= 1;
2971
2972 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002973 if (!mask)
2974 return -EINVAL;
2975
Tejun Heo936fd732007-08-06 18:36:23 +09002976 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002977
Tejun Heo936fd732007-08-06 18:36:23 +09002978 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002979 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002980
2981 return 0;
2982}
2983
Tejun Heo936fd732007-08-06 18:36:23 +09002984static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002985{
Tejun Heo52702222007-10-31 10:17:07 +09002986 struct ata_link *host_link = &link->ap->link;
2987 u32 limit, target, spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002988
Tejun Heo52702222007-10-31 10:17:07 +09002989 limit = link->sata_spd_limit;
2990
2991 /* Don't configure downstream link faster than upstream link.
2992 * It doesn't speed up anything and some PMPs choke on such
2993 * configuration.
2994 */
2995 if (!ata_is_host_link(link) && host_link->sata_spd)
2996 limit &= (1 << host_link->sata_spd) - 1;
2997
2998 if (limit == UINT_MAX)
2999 target = 0;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003000 else
Tejun Heo52702222007-10-31 10:17:07 +09003001 target = fls(limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003002
3003 spd = (*scontrol >> 4) & 0xf;
Tejun Heo52702222007-10-31 10:17:07 +09003004 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003005
Tejun Heo52702222007-10-31 10:17:07 +09003006 return spd != target;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003007}
3008
3009/**
Tejun Heo3c567b72006-05-15 20:57:23 +09003010 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09003011 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09003012 *
3013 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09003014 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09003015 * whether hardreset is necessary to apply SATA spd
3016 * configuration.
3017 *
3018 * LOCKING:
3019 * Inherited from caller.
3020 *
3021 * RETURNS:
3022 * 1 if SATA spd configuration is needed, 0 otherwise.
3023 */
Tejun Heo936fd732007-08-06 18:36:23 +09003024int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09003025{
3026 u32 scontrol;
3027
Tejun Heo936fd732007-08-06 18:36:23 +09003028 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heodb64bcf2007-10-31 10:17:06 +09003029 return 1;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003030
Tejun Heo936fd732007-08-06 18:36:23 +09003031 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003032}
3033
3034/**
Tejun Heo3c567b72006-05-15 20:57:23 +09003035 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09003036 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09003037 *
Tejun Heo936fd732007-08-06 18:36:23 +09003038 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09003039 *
3040 * LOCKING:
3041 * Inherited from caller.
3042 *
3043 * RETURNS:
3044 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09003045 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09003046 */
Tejun Heo936fd732007-08-06 18:36:23 +09003047int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09003048{
3049 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003050 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003051
Tejun Heo936fd732007-08-06 18:36:23 +09003052 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003053 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003054
Tejun Heo936fd732007-08-06 18:36:23 +09003055 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09003056 return 0;
3057
Tejun Heo936fd732007-08-06 18:36:23 +09003058 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003059 return rc;
3060
Tejun Heo1c3fae42006-04-02 20:53:28 +09003061 return 1;
3062}
3063
Alan Cox452503f2005-10-21 19:01:32 -04003064/*
3065 * This mode timing computation functionality is ported over from
3066 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
3067 */
3068/*
Alan Coxb352e572006-08-10 18:52:12 +01003069 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04003070 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01003071 * for UDMA6, which is currently supported only by Maxtor drives.
3072 *
3073 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04003074 */
3075
3076static const struct ata_timing ata_timing[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +09003077/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
3078 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
3079 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
3080 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
3081 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
3082 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
3083 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
3084 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003085
Tejun Heo70cd0712007-11-27 19:43:40 +09003086 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
3087 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
3088 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003089
Tejun Heo70cd0712007-11-27 19:43:40 +09003090 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
3091 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
3092 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
Alan Coxb352e572006-08-10 18:52:12 +01003093 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Tejun Heo70cd0712007-11-27 19:43:40 +09003094 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003095
3096/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Tejun Heo70cd0712007-11-27 19:43:40 +09003097 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
3098 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
3099 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
3100 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
3101 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
3102 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
3103 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
Alan Cox452503f2005-10-21 19:01:32 -04003104
3105 { 0xFF }
3106};
3107
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003108#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
3109#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
Alan Cox452503f2005-10-21 19:01:32 -04003110
3111static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
3112{
3113 q->setup = EZ(t->setup * 1000, T);
3114 q->act8b = EZ(t->act8b * 1000, T);
3115 q->rec8b = EZ(t->rec8b * 1000, T);
3116 q->cyc8b = EZ(t->cyc8b * 1000, T);
3117 q->active = EZ(t->active * 1000, T);
3118 q->recover = EZ(t->recover * 1000, T);
3119 q->cycle = EZ(t->cycle * 1000, T);
3120 q->udma = EZ(t->udma * 1000, UT);
3121}
3122
3123void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
3124 struct ata_timing *m, unsigned int what)
3125{
3126 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
3127 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
3128 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
3129 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
3130 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
3131 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
3132 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
3133 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
3134}
3135
Tejun Heo63573572007-11-27 19:43:39 +09003136const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
Alan Cox452503f2005-10-21 19:01:32 -04003137{
Tejun Heo70cd0712007-11-27 19:43:40 +09003138 const struct ata_timing *t = ata_timing;
Alan Cox452503f2005-10-21 19:01:32 -04003139
Tejun Heo70cd0712007-11-27 19:43:40 +09003140 while (xfer_mode > t->mode)
3141 t++;
3142
3143 if (xfer_mode == t->mode)
3144 return t;
3145 return NULL;
Alan Cox452503f2005-10-21 19:01:32 -04003146}
3147
3148int ata_timing_compute(struct ata_device *adev, unsigned short speed,
3149 struct ata_timing *t, int T, int UT)
3150{
3151 const struct ata_timing *s;
3152 struct ata_timing p;
3153
3154 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003155 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08003156 */
Alan Cox452503f2005-10-21 19:01:32 -04003157
3158 if (!(s = ata_timing_find_mode(speed)))
3159 return -EINVAL;
3160
Albert Lee75b1f2f2005-11-16 17:06:18 +08003161 memcpy(t, s, sizeof(*s));
3162
Alan Cox452503f2005-10-21 19:01:32 -04003163 /*
3164 * If the drive is an EIDE drive, it can tell us it needs extended
3165 * PIO/MW_DMA cycle timing.
3166 */
3167
3168 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
3169 memset(&p, 0, sizeof(p));
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003170 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
Alan Cox452503f2005-10-21 19:01:32 -04003171 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
3172 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003173 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
Alan Cox452503f2005-10-21 19:01:32 -04003174 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
3175 }
3176 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
3177 }
3178
3179 /*
3180 * Convert the timing to bus clock counts.
3181 */
3182
Albert Lee75b1f2f2005-11-16 17:06:18 +08003183 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04003184
3185 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003186 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
3187 * S.M.A.R.T * and some other commands. We have to ensure that the
3188 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04003189 */
3190
Alanfd3367af2006-12-07 12:41:18 +00003191 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04003192 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
3193 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
3194 }
3195
3196 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003197 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04003198 */
3199
3200 if (t->act8b + t->rec8b < t->cyc8b) {
3201 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
3202 t->rec8b = t->cyc8b - t->act8b;
3203 }
3204
3205 if (t->active + t->recover < t->cycle) {
3206 t->active += (t->cycle - (t->active + t->recover)) / 2;
3207 t->recover = t->cycle - t->active;
3208 }
Jeff Garzika617c092007-05-21 20:14:23 -04003209
Alan Cox4f701d12007-04-23 11:55:36 +01003210 /* In a few cases quantisation may produce enough errors to
3211 leave t->cycle too low for the sum of active and recovery
3212 if so we must correct this */
3213 if (t->active + t->recover > t->cycle)
3214 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04003215
3216 return 0;
3217}
3218
Tejun Heocf176e12006-04-02 17:54:46 +09003219/**
Tejun Heoa0f79b92007-12-18 16:33:05 +09003220 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
3221 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
3222 * @cycle: cycle duration in ns
3223 *
3224 * Return matching xfer mode for @cycle. The returned mode is of
3225 * the transfer type specified by @xfer_shift. If @cycle is too
3226 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
3227 * than the fastest known mode, the fasted mode is returned.
3228 *
3229 * LOCKING:
3230 * None.
3231 *
3232 * RETURNS:
3233 * Matching xfer_mode, 0xff if no match found.
3234 */
3235u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
3236{
3237 u8 base_mode = 0xff, last_mode = 0xff;
3238 const struct ata_xfer_ent *ent;
3239 const struct ata_timing *t;
3240
3241 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
3242 if (ent->shift == xfer_shift)
3243 base_mode = ent->base;
3244
3245 for (t = ata_timing_find_mode(base_mode);
3246 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
3247 unsigned short this_cycle;
3248
3249 switch (xfer_shift) {
3250 case ATA_SHIFT_PIO:
3251 case ATA_SHIFT_MWDMA:
3252 this_cycle = t->cycle;
3253 break;
3254 case ATA_SHIFT_UDMA:
3255 this_cycle = t->udma;
3256 break;
3257 default:
3258 return 0xff;
3259 }
3260
3261 if (cycle > this_cycle)
3262 break;
3263
3264 last_mode = t->mode;
3265 }
3266
3267 return last_mode;
3268}
3269
3270/**
Tejun Heocf176e12006-04-02 17:54:46 +09003271 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09003272 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09003273 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09003274 *
3275 * Adjust xfer masks of @dev downward. Note that this function
3276 * does not apply the change. Invoking ata_set_mode() afterwards
3277 * will apply the limit.
3278 *
3279 * LOCKING:
3280 * Inherited from caller.
3281 *
3282 * RETURNS:
3283 * 0 on success, negative errno on failure
3284 */
Tejun Heo458337d2007-02-02 16:22:30 +09003285int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09003286{
Tejun Heo458337d2007-02-02 16:22:30 +09003287 char buf[32];
Tejun Heo7dc951a2007-11-27 19:43:42 +09003288 unsigned long orig_mask, xfer_mask;
3289 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heo458337d2007-02-02 16:22:30 +09003290 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09003291
Tejun Heo458337d2007-02-02 16:22:30 +09003292 quiet = !!(sel & ATA_DNXFER_QUIET);
3293 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09003294
Tejun Heo458337d2007-02-02 16:22:30 +09003295 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3296 dev->mwdma_mask,
3297 dev->udma_mask);
3298 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09003299
Tejun Heo458337d2007-02-02 16:22:30 +09003300 switch (sel) {
3301 case ATA_DNXFER_PIO:
3302 highbit = fls(pio_mask) - 1;
3303 pio_mask &= ~(1 << highbit);
3304 break;
3305
3306 case ATA_DNXFER_DMA:
3307 if (udma_mask) {
3308 highbit = fls(udma_mask) - 1;
3309 udma_mask &= ~(1 << highbit);
3310 if (!udma_mask)
3311 return -ENOENT;
3312 } else if (mwdma_mask) {
3313 highbit = fls(mwdma_mask) - 1;
3314 mwdma_mask &= ~(1 << highbit);
3315 if (!mwdma_mask)
3316 return -ENOENT;
3317 }
3318 break;
3319
3320 case ATA_DNXFER_40C:
3321 udma_mask &= ATA_UDMA_MASK_40C;
3322 break;
3323
3324 case ATA_DNXFER_FORCE_PIO0:
3325 pio_mask &= 1;
3326 case ATA_DNXFER_FORCE_PIO:
3327 mwdma_mask = 0;
3328 udma_mask = 0;
3329 break;
3330
Tejun Heo458337d2007-02-02 16:22:30 +09003331 default:
3332 BUG();
3333 }
3334
3335 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3336
3337 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3338 return -ENOENT;
3339
3340 if (!quiet) {
3341 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3342 snprintf(buf, sizeof(buf), "%s:%s",
3343 ata_mode_string(xfer_mask),
3344 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3345 else
3346 snprintf(buf, sizeof(buf), "%s",
3347 ata_mode_string(xfer_mask));
3348
3349 ata_dev_printk(dev, KERN_WARNING,
3350 "limiting speed to %s\n", buf);
3351 }
Tejun Heocf176e12006-04-02 17:54:46 +09003352
3353 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3354 &dev->udma_mask);
3355
Tejun Heocf176e12006-04-02 17:54:46 +09003356 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09003357}
3358
Tejun Heo3373efd2006-05-15 20:57:53 +09003359static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003361 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo4055dee2008-02-07 10:34:08 +09003362 const char *dev_err_whine = "";
3363 int ign_dev_err = 0;
Tejun Heo83206a22006-03-24 15:25:31 +09003364 unsigned int err_mask;
3365 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Tejun Heoe8384602006-04-02 18:51:53 +09003367 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 if (dev->xfer_shift == ATA_SHIFT_PIO)
3369 dev->flags |= ATA_DFLAG_PIO;
3370
Tejun Heo3373efd2006-05-15 20:57:53 +09003371 err_mask = ata_dev_set_xfermode(dev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003372
Tejun Heo4055dee2008-02-07 10:34:08 +09003373 if (err_mask & ~AC_ERR_DEV)
3374 goto fail;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003375
Tejun Heo4055dee2008-02-07 10:34:08 +09003376 /* revalidate */
Tejun Heobaa1e782006-11-01 18:39:27 +09003377 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09003378 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09003379 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09003380 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09003381 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09003382
Tejun Heo4055dee2008-02-07 10:34:08 +09003383 /* Old CFA may refuse this command, which is just fine */
3384 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
3385 ign_dev_err = 1;
3386
3387 /* Some very old devices and some bad newer ones fail any kind of
3388 SET_XFERMODE request but support PIO0-2 timings and no IORDY */
3389 if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) &&
3390 dev->pio_mode <= XFER_PIO_2)
3391 ign_dev_err = 1;
3392
3393 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3394 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3395 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3396 dev->dma_mode == XFER_MW_DMA_0 &&
3397 (dev->id[63] >> 8) & 1)
3398 ign_dev_err = 1;
3399
3400 /* if the device is actually configured correctly, ignore dev err */
3401 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3402 ign_dev_err = 1;
3403
3404 if (err_mask & AC_ERR_DEV) {
3405 if (!ign_dev_err)
3406 goto fail;
3407 else
3408 dev_err_whine = " (device error ignored)";
3409 }
3410
Tejun Heo23e71c32006-03-06 04:31:57 +09003411 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3412 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Tejun Heo4055dee2008-02-07 10:34:08 +09003414 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3415 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3416 dev_err_whine);
3417
Tejun Heo83206a22006-03-24 15:25:31 +09003418 return 0;
Tejun Heo4055dee2008-02-07 10:34:08 +09003419
3420 fail:
3421 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3422 "(err_mask=0x%x)\n", err_mask);
3423 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424}
3425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426/**
Alan04351822007-03-06 02:37:52 -08003427 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09003428 * @link: link on which timings will be programmed
Joe Perches1967b7f2008-02-03 17:08:11 +02003429 * @r_failed_dev: out parameter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 *
Alan04351822007-03-06 02:37:52 -08003431 * Standard implementation of the function used to tune and set
3432 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3433 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003434 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04003435 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003437 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003438 *
3439 * RETURNS:
3440 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 */
Alan04351822007-03-06 02:37:52 -08003442
Tejun Heo02607312007-08-06 18:36:23 +09003443int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444{
Tejun Heo02607312007-08-06 18:36:23 +09003445 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09003446 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09003447 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09003448
Tejun Heoa6d5a512006-03-06 04:31:57 +09003449 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09003450 ata_link_for_each_dev(dev, link) {
Tejun Heo7dc951a2007-11-27 19:43:42 +09003451 unsigned long pio_mask, dma_mask;
Alan Coxb3a70602007-10-02 12:38:26 -04003452 unsigned int mode_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003453
Tejun Heoe1211e32006-04-01 01:38:18 +09003454 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003455 continue;
3456
Alan Coxb3a70602007-10-02 12:38:26 -04003457 mode_mask = ATA_DMA_MASK_ATA;
3458 if (dev->class == ATA_DEV_ATAPI)
3459 mode_mask = ATA_DMA_MASK_ATAPI;
3460 else if (ata_id_is_cfa(dev->id))
3461 mode_mask = ATA_DMA_MASK_CFA;
3462
Tejun Heo3373efd2006-05-15 20:57:53 +09003463 ata_dev_xfermask(dev);
Tejun Heo33267322008-02-13 09:15:09 +09003464 ata_force_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003465
Tejun Heoacf356b2006-03-24 14:07:50 +09003466 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3467 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
Alan Coxb3a70602007-10-02 12:38:26 -04003468
3469 if (libata_dma_mask & mode_mask)
3470 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3471 else
3472 dma_mask = 0;
3473
Tejun Heoacf356b2006-03-24 14:07:50 +09003474 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3475 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003476
Tejun Heo4f659772006-04-01 01:38:18 +09003477 found = 1;
Tejun Heo70cd0712007-11-27 19:43:40 +09003478 if (dev->dma_mode != 0xff)
Alan Cox5444a6f2006-03-27 18:58:20 +01003479 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003480 }
Tejun Heo4f659772006-04-01 01:38:18 +09003481 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003482 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003483
3484 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003485 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09003486 if (!ata_dev_enabled(dev))
3487 continue;
3488
Tejun Heo70cd0712007-11-27 19:43:40 +09003489 if (dev->pio_mode == 0xff) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003490 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09003491 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003492 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09003493 }
3494
3495 dev->xfer_mode = dev->pio_mode;
3496 dev->xfer_shift = ATA_SHIFT_PIO;
3497 if (ap->ops->set_piomode)
3498 ap->ops->set_piomode(ap, dev);
3499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
Tejun Heoa6d5a512006-03-06 04:31:57 +09003501 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003502 ata_link_for_each_dev(dev, link) {
Tejun Heo70cd0712007-11-27 19:43:40 +09003503 if (!ata_dev_enabled(dev) || dev->dma_mode == 0xff)
Tejun Heoe8e06192006-04-01 01:38:18 +09003504 continue;
3505
3506 dev->xfer_mode = dev->dma_mode;
3507 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3508 if (ap->ops->set_dmamode)
3509 ap->ops->set_dmamode(ap, dev);
3510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
3512 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09003513 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00003514 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02003515 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09003516 continue;
3517
Tejun Heo3373efd2006-05-15 20:57:53 +09003518 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09003519 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003520 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09003521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
Tejun Heoe8e06192006-04-01 01:38:18 +09003523 /* Record simplex status. If we selected DMA then the other
3524 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01003525 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003526 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00003527 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003528
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003529 out:
3530 if (rc)
3531 *r_failed_dev = dev;
3532 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533}
3534
3535/**
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05003536 * ata_tf_to_host - issue ATA taskfile to host controller
3537 * @ap: port to which command is being issued
3538 * @tf: ATA taskfile register set
3539 *
3540 * Issues ATA taskfile register set to ATA host controller,
3541 * with proper synchronization with interrupt handler and
3542 * other threads.
3543 *
3544 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003545 * spin_lock_irqsave(host lock)
Jeff Garzik1fdffbc2006-02-09 05:15:27 -05003546 */
3547
3548static inline void ata_tf_to_host(struct ata_port *ap,
3549 const struct ata_taskfile *tf)
3550{
3551 ap->ops->tf_load(ap, tf);
3552 ap->ops->exec_command(ap, tf);
3553}
3554
3555/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 * ata_busy_sleep - sleep until BSY clears, or timeout
3557 * @ap: port containing status register to be polled
3558 * @tmout_pat: impatience timeout
3559 * @tmout: overall timeout
3560 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003561 * Sleep until ATA Status register bit BSY clears,
3562 * or a timeout occurs.
3563 *
Tejun Heod1adc1b2006-10-09 18:32:15 +09003564 * LOCKING:
3565 * Kernel thread context (may sleep).
3566 *
3567 * RETURNS:
3568 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 */
Tejun Heod1adc1b2006-10-09 18:32:15 +09003570int ata_busy_sleep(struct ata_port *ap,
3571 unsigned long tmout_pat, unsigned long tmout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572{
3573 unsigned long timer_start, timeout;
3574 u8 status;
3575
3576 status = ata_busy_wait(ap, ATA_BUSY, 300);
3577 timer_start = jiffies;
3578 timeout = timer_start + tmout_pat;
Tejun Heod1adc1b2006-10-09 18:32:15 +09003579 while (status != 0xff && (status & ATA_BUSY) &&
3580 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 msleep(50);
3582 status = ata_busy_wait(ap, ATA_BUSY, 3);
3583 }
3584
Tejun Heod1adc1b2006-10-09 18:32:15 +09003585 if (status != 0xff && (status & ATA_BUSY))
Tejun Heof15a1da2006-05-15 20:57:56 +09003586 ata_port_printk(ap, KERN_WARNING,
Jeff Garzik35aa7a42006-09-28 06:50:24 -04003587 "port is slow to respond, please be patient "
3588 "(Status 0x%x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
3590 timeout = timer_start + tmout;
Tejun Heod1adc1b2006-10-09 18:32:15 +09003591 while (status != 0xff && (status & ATA_BUSY) &&
3592 time_before(jiffies, timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 msleep(50);
3594 status = ata_chk_status(ap);
3595 }
3596
Tejun Heod1adc1b2006-10-09 18:32:15 +09003597 if (status == 0xff)
3598 return -ENODEV;
3599
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 if (status & ATA_BUSY) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003601 ata_port_printk(ap, KERN_ERR, "port failed to respond "
Jeff Garzik35aa7a42006-09-28 06:50:24 -04003602 "(%lu secs, Status 0x%x)\n",
3603 tmout / HZ, status);
Tejun Heod1adc1b2006-10-09 18:32:15 +09003604 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 }
3606
3607 return 0;
3608}
3609
Tejun Heod4b2bab2007-02-02 16:50:52 +09003610/**
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003611 * ata_wait_after_reset - wait before checking status after reset
3612 * @ap: port containing status register to be polled
3613 * @deadline: deadline jiffies for the operation
3614 *
3615 * After reset, we need to pause a while before reading status.
3616 * Also, certain combination of controller and device report 0xff
3617 * for some duration (e.g. until SATA PHY is up and running)
3618 * which is interpreted as empty port in ATA world. This
3619 * function also waits for such devices to get out of 0xff
3620 * status.
3621 *
3622 * LOCKING:
3623 * Kernel thread context (may sleep).
3624 */
3625void ata_wait_after_reset(struct ata_port *ap, unsigned long deadline)
3626{
3627 unsigned long until = jiffies + ATA_TMOUT_FF_WAIT;
3628
3629 if (time_before(until, deadline))
3630 deadline = until;
3631
3632 /* Spec mandates ">= 2ms" before checking status. We wait
3633 * 150ms, because that was the magic delay used for ATAPI
3634 * devices in Hale Landis's ATADRVR, for the period of time
3635 * between when the ATA command register is written, and then
3636 * status is checked. Because waiting for "a while" before
3637 * checking status is fine, post SRST, we perform this magic
3638 * delay here as well.
3639 *
3640 * Old drivers/ide uses the 2mS rule and then waits for ready.
3641 */
3642 msleep(150);
3643
3644 /* Wait for 0xff to clear. Some SATA devices take a long time
3645 * to clear 0xff after reset. For example, HHD424020F7SV00
3646 * iVDR needs >= 800ms while. Quantum GoVault needs even more
3647 * than that.
Tejun Heo1974e202007-11-08 11:20:18 +09003648 *
3649 * Note that some PATA controllers (pata_ali) explode if
3650 * status register is read more than once when there's no
3651 * device attached.
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003652 */
Tejun Heo1974e202007-11-08 11:20:18 +09003653 if (ap->flags & ATA_FLAG_SATA) {
3654 while (1) {
3655 u8 status = ata_chk_status(ap);
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003656
Tejun Heo1974e202007-11-08 11:20:18 +09003657 if (status != 0xff || time_after(jiffies, deadline))
3658 return;
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003659
Tejun Heo1974e202007-11-08 11:20:18 +09003660 msleep(50);
3661 }
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003662 }
3663}
3664
3665/**
Tejun Heod4b2bab2007-02-02 16:50:52 +09003666 * ata_wait_ready - sleep until BSY clears, or timeout
3667 * @ap: port containing status register to be polled
3668 * @deadline: deadline jiffies for the operation
3669 *
3670 * Sleep until ATA Status register bit BSY clears, or timeout
3671 * occurs.
3672 *
3673 * LOCKING:
3674 * Kernel thread context (may sleep).
3675 *
3676 * RETURNS:
3677 * 0 on success, -errno otherwise.
3678 */
3679int ata_wait_ready(struct ata_port *ap, unsigned long deadline)
3680{
3681 unsigned long start = jiffies;
3682 int warned = 0;
3683
3684 while (1) {
3685 u8 status = ata_chk_status(ap);
3686 unsigned long now = jiffies;
3687
3688 if (!(status & ATA_BUSY))
3689 return 0;
Tejun Heo936fd732007-08-06 18:36:23 +09003690 if (!ata_link_online(&ap->link) && status == 0xff)
Tejun Heod4b2bab2007-02-02 16:50:52 +09003691 return -ENODEV;
3692 if (time_after(now, deadline))
3693 return -EBUSY;
3694
3695 if (!warned && time_after(now, start + 5 * HZ) &&
3696 (deadline - now > 3 * HZ)) {
3697 ata_port_printk(ap, KERN_WARNING,
3698 "port is slow to respond, please be patient "
3699 "(Status 0x%x)\n", status);
3700 warned = 1;
3701 }
3702
3703 msleep(50);
3704 }
3705}
3706
3707static int ata_bus_post_reset(struct ata_port *ap, unsigned int devmask,
3708 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709{
3710 struct ata_ioports *ioaddr = &ap->ioaddr;
3711 unsigned int dev0 = devmask & (1 << 0);
3712 unsigned int dev1 = devmask & (1 << 1);
Tejun Heo9b893912007-02-02 16:50:52 +09003713 int rc, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
3715 /* if device 0 was found in ata_devchk, wait for its
3716 * BSY bit to clear
3717 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003718 if (dev0) {
3719 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003720 if (rc) {
3721 if (rc != -ENODEV)
3722 return rc;
3723 ret = rc;
3724 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
Tejun Heoe141d992007-06-10 14:26:20 +09003727 /* if device 1 was found in ata_devchk, wait for register
3728 * access briefly, then wait for BSY to clear.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 */
Tejun Heoe141d992007-06-10 14:26:20 +09003730 if (dev1) {
3731 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732
3733 ap->ops->dev_select(ap, 1);
Tejun Heoe141d992007-06-10 14:26:20 +09003734
3735 /* Wait for register access. Some ATAPI devices fail
3736 * to set nsect/lbal after reset, so don't waste too
3737 * much time on it. We're gonna wait for !BSY anyway.
3738 */
3739 for (i = 0; i < 2; i++) {
3740 u8 nsect, lbal;
3741
3742 nsect = ioread8(ioaddr->nsect_addr);
3743 lbal = ioread8(ioaddr->lbal_addr);
3744 if ((nsect == 1) && (lbal == 1))
3745 break;
3746 msleep(50); /* give drive a breather */
3747 }
3748
Tejun Heod4b2bab2007-02-02 16:50:52 +09003749 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09003750 if (rc) {
3751 if (rc != -ENODEV)
3752 return rc;
3753 ret = rc;
3754 }
Tejun Heod4b2bab2007-02-02 16:50:52 +09003755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
3757 /* is all this really necessary? */
3758 ap->ops->dev_select(ap, 0);
3759 if (dev1)
3760 ap->ops->dev_select(ap, 1);
3761 if (dev0)
3762 ap->ops->dev_select(ap, 0);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003763
Tejun Heo9b893912007-02-02 16:50:52 +09003764 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765}
3766
Tejun Heod4b2bab2007-02-02 16:50:52 +09003767static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
3768 unsigned long deadline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769{
3770 struct ata_ioports *ioaddr = &ap->ioaddr;
3771
Tejun Heo44877b42007-02-21 01:06:51 +09003772 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
3774 /* software reset. causes dev0 to be selected */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003775 iowrite8(ap->ctl, ioaddr->ctl_addr);
3776 udelay(20); /* FIXME: flush */
3777 iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
3778 udelay(20); /* FIXME: flush */
3779 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
Tejun Heo88ff6ea2007-10-16 14:21:24 -07003781 /* wait a while before checking status */
3782 ata_wait_after_reset(ap, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003784 /* Before we perform post reset processing we want to see if
Tejun Heo298a41c2006-03-25 02:58:13 +09003785 * the bus shows 0xFF because the odd clown forgets the D7
3786 * pulldown resistor.
3787 */
Alan Cox150981b2007-10-23 16:50:02 +01003788 if (ata_chk_status(ap) == 0xFF)
Tejun Heo9b893912007-02-02 16:50:52 +09003789 return -ENODEV;
Alan Cox09c7ad72006-03-22 15:52:40 +00003790
Tejun Heod4b2bab2007-02-02 16:50:52 +09003791 return ata_bus_post_reset(ap, devmask, deadline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792}
3793
3794/**
3795 * ata_bus_reset - reset host port and associated ATA channel
3796 * @ap: port to reset
3797 *
3798 * This is typically the first time we actually start issuing
3799 * commands to the ATA channel. We wait for BSY to clear, then
3800 * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its
3801 * result. Determine what devices, if any, are on the channel
3802 * by looking at the device 0/1 error register. Look at the signature
3803 * stored in each device's taskfile registers, to determine if
3804 * the device is ATA or ATAPI.
3805 *
3806 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003807 * PCI/etc. bus probe sem.
Jeff Garzikcca39742006-08-24 03:19:22 -04003808 * Obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 *
3810 * SIDE EFFECTS:
Tejun Heo198e0fe2006-04-02 18:51:52 +09003811 * Sets ATA_FLAG_DISABLED if bus reset fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 */
3813
3814void ata_bus_reset(struct ata_port *ap)
3815{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003816 struct ata_device *device = ap->link.device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 struct ata_ioports *ioaddr = &ap->ioaddr;
3818 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
3819 u8 err;
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003820 unsigned int dev0, dev1 = 0, devmask = 0;
Tejun Heo9b893912007-02-02 16:50:52 +09003821 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Tejun Heo44877b42007-02-21 01:06:51 +09003823 DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
3825 /* determine if device 0/1 are present */
3826 if (ap->flags & ATA_FLAG_SATA_RESET)
3827 dev0 = 1;
3828 else {
3829 dev0 = ata_devchk(ap, 0);
3830 if (slave_possible)
3831 dev1 = ata_devchk(ap, 1);
3832 }
3833
3834 if (dev0)
3835 devmask |= (1 << 0);
3836 if (dev1)
3837 devmask |= (1 << 1);
3838
3839 /* select device 0 again */
3840 ap->ops->dev_select(ap, 0);
3841
3842 /* issue bus reset */
Tejun Heo9b893912007-02-02 16:50:52 +09003843 if (ap->flags & ATA_FLAG_SRST) {
3844 rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ);
3845 if (rc && rc != -ENODEV)
Tejun Heoaec5c3c2006-03-25 01:33:34 +09003846 goto err_out;
Tejun Heo9b893912007-02-02 16:50:52 +09003847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
3849 /*
3850 * determine by signature whether we have ATA or ATAPI devices
3851 */
Tejun Heo3f198592007-09-02 23:23:57 +09003852 device[0].class = ata_dev_try_classify(&device[0], dev0, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 if ((slave_possible) && (err != 0x81))
Tejun Heo3f198592007-09-02 23:23:57 +09003854 device[1].class = ata_dev_try_classify(&device[1], dev1, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 /* is double-select really necessary? */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003857 if (device[1].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 ap->ops->dev_select(ap, 1);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003859 if (device[0].class != ATA_DEV_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 ap->ops->dev_select(ap, 0);
3861
3862 /* if no devices were detected, disable this port */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003863 if ((device[0].class == ATA_DEV_NONE) &&
3864 (device[1].class == ATA_DEV_NONE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 goto err_out;
3866
3867 if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) {
3868 /* set up device control for ATA_FLAG_SATA_RESET */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003869 iowrite8(ap->ctl, ioaddr->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 }
3871
3872 DPRINTK("EXIT\n");
3873 return;
3874
3875err_out:
Tejun Heof15a1da2006-05-15 20:57:56 +09003876 ata_port_printk(ap, KERN_ERR, "disabling port\n");
Jeff Garzikac8869d2007-08-16 03:17:03 -04003877 ata_port_disable(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
3879 DPRINTK("EXIT\n");
3880}
3881
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003882/**
Tejun Heo936fd732007-08-06 18:36:23 +09003883 * sata_link_debounce - debounce SATA phy status
3884 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003885 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003886 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003887 *
Tejun Heo936fd732007-08-06 18:36:23 +09003888* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003889 * holding the same value where DET is not 1 for @duration polled
3890 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003891 * beginning of the stable state. Because DET gets stuck at 1 on
3892 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003893 * until timeout then returns 0 if DET is stable at 1.
3894 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003895 * @timeout is further limited by @deadline. The sooner of the
3896 * two is used.
3897 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003898 * LOCKING:
3899 * Kernel thread context (may sleep)
3900 *
3901 * RETURNS:
3902 * 0 on success, -errno on failure.
3903 */
Tejun Heo936fd732007-08-06 18:36:23 +09003904int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3905 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003906{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003907 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003908 unsigned long duration = msecs_to_jiffies(params[1]);
3909 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003910 u32 last, cur;
3911 int rc;
3912
Tejun Heod4b2bab2007-02-02 16:50:52 +09003913 t = jiffies + msecs_to_jiffies(params[2]);
3914 if (time_before(t, deadline))
3915 deadline = t;
3916
Tejun Heo936fd732007-08-06 18:36:23 +09003917 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003918 return rc;
3919 cur &= 0xf;
3920
3921 last = cur;
3922 last_jiffies = jiffies;
3923
3924 while (1) {
3925 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003926 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003927 return rc;
3928 cur &= 0xf;
3929
3930 /* DET stable? */
3931 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003932 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003933 continue;
3934 if (time_after(jiffies, last_jiffies + duration))
3935 return 0;
3936 continue;
3937 }
3938
3939 /* unstable, start over */
3940 last = cur;
3941 last_jiffies = jiffies;
3942
Tejun Heof1545152007-07-16 14:29:40 +09003943 /* Check deadline. If debouncing failed, return
3944 * -EPIPE to tell upper layer to lower link speed.
3945 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003946 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003947 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003948 }
3949}
3950
3951/**
Tejun Heo936fd732007-08-06 18:36:23 +09003952 * sata_link_resume - resume SATA link
3953 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003954 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003955 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003956 *
Tejun Heo936fd732007-08-06 18:36:23 +09003957 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003958 *
3959 * LOCKING:
3960 * Kernel thread context (may sleep)
3961 *
3962 * RETURNS:
3963 * 0 on success, -errno on failure.
3964 */
Tejun Heo936fd732007-08-06 18:36:23 +09003965int sata_link_resume(struct ata_link *link, const unsigned long *params,
3966 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003967{
3968 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003969 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003970
Tejun Heo936fd732007-08-06 18:36:23 +09003971 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003972 return rc;
3973
Tejun Heo852ee16a2006-04-01 01:38:18 +09003974 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003975
Tejun Heo936fd732007-08-06 18:36:23 +09003976 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003977 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003978
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003979 /* Some PHYs react badly if SStatus is pounded immediately
3980 * after resuming. Delay 200ms before debouncing.
3981 */
3982 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003983
Tejun Heo936fd732007-08-06 18:36:23 +09003984 return sata_link_debounce(link, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003985}
3986
Tejun Heof5914a42006-05-31 18:27:48 +09003987/**
3988 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003989 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003990 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003991 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003992 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003993 * prereset makes libata abort whole reset sequence and give up
3994 * that port, so prereset should be best-effort. It does its
3995 * best to prepare for reset sequence but if things go wrong, it
3996 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003997 *
3998 * LOCKING:
3999 * Kernel thread context (may sleep)
4000 *
4001 * RETURNS:
4002 * 0 on success, -errno otherwise.
4003 */
Tejun Heocc0680a2007-08-06 18:36:23 +09004004int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09004005{
Tejun Heocc0680a2007-08-06 18:36:23 +09004006 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004007 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09004008 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09004009 int rc;
4010
Tejun Heof5914a42006-05-31 18:27:48 +09004011 /* if we're about to do hardreset, nothing more to do */
4012 if (ehc->i.action & ATA_EH_HARDRESET)
4013 return 0;
4014
Tejun Heo936fd732007-08-06 18:36:23 +09004015 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02004016 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09004017 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09004018 /* whine about phy resume failure but proceed */
4019 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09004020 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09004021 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09004022 }
4023
Tejun Heo8cebf272008-01-24 00:05:14 +09004024 /* wait for !BSY if we don't know that no device is attached */
4025 if (!ata_link_offline(link)) {
Tejun Heob8cffc62007-02-02 16:50:52 +09004026 rc = ata_wait_ready(ap, deadline);
Tejun Heo6dffaf62007-05-23 11:58:52 +02004027 if (rc && rc != -ENODEV) {
Tejun Heocc0680a2007-08-06 18:36:23 +09004028 ata_link_printk(link, KERN_WARNING, "device not ready "
Tejun Heob8cffc62007-02-02 16:50:52 +09004029 "(errno=%d), forcing hardreset\n", rc);
4030 ehc->i.action |= ATA_EH_HARDRESET;
4031 }
4032 }
Tejun Heof5914a42006-05-31 18:27:48 +09004033
4034 return 0;
4035}
4036
Tejun Heoc2bd5802006-01-24 17:05:22 +09004037/**
4038 * ata_std_softreset - reset host port via ATA SRST
Tejun Heocc0680a2007-08-06 18:36:23 +09004039 * @link: ATA link to reset
Tejun Heoc2bd5802006-01-24 17:05:22 +09004040 * @classes: resulting classes of attached devices
Tejun Heod4b2bab2007-02-02 16:50:52 +09004041 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09004042 *
Tejun Heo52783c52006-05-31 18:28:22 +09004043 * Reset host port using ATA SRST.
Tejun Heoc2bd5802006-01-24 17:05:22 +09004044 *
4045 * LOCKING:
4046 * Kernel thread context (may sleep)
4047 *
4048 * RETURNS:
4049 * 0 on success, -errno otherwise.
4050 */
Tejun Heocc0680a2007-08-06 18:36:23 +09004051int ata_std_softreset(struct ata_link *link, unsigned int *classes,
Tejun Heod4b2bab2007-02-02 16:50:52 +09004052 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09004053{
Tejun Heocc0680a2007-08-06 18:36:23 +09004054 struct ata_port *ap = link->ap;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004055 unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS;
Tejun Heod4b2bab2007-02-02 16:50:52 +09004056 unsigned int devmask = 0;
4057 int rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004058 u8 err;
4059
4060 DPRINTK("ENTER\n");
4061
Tejun Heo936fd732007-08-06 18:36:23 +09004062 if (ata_link_offline(link)) {
Tejun Heo3a397462006-02-10 23:58:48 +09004063 classes[0] = ATA_DEV_NONE;
4064 goto out;
4065 }
4066
Tejun Heoc2bd5802006-01-24 17:05:22 +09004067 /* determine if device 0/1 are present */
4068 if (ata_devchk(ap, 0))
4069 devmask |= (1 << 0);
4070 if (slave_possible && ata_devchk(ap, 1))
4071 devmask |= (1 << 1);
4072
Tejun Heoc2bd5802006-01-24 17:05:22 +09004073 /* select device 0 again */
4074 ap->ops->dev_select(ap, 0);
4075
4076 /* issue bus reset */
4077 DPRINTK("about to softreset, devmask=%x\n", devmask);
Tejun Heod4b2bab2007-02-02 16:50:52 +09004078 rc = ata_bus_softreset(ap, devmask, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09004079 /* if link is occupied, -ENODEV too is an error */
Tejun Heo936fd732007-08-06 18:36:23 +09004080 if (rc && (rc != -ENODEV || sata_scr_valid(link))) {
Tejun Heocc0680a2007-08-06 18:36:23 +09004081 ata_link_printk(link, KERN_ERR, "SRST failed (errno=%d)\n", rc);
Tejun Heod4b2bab2007-02-02 16:50:52 +09004082 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004083 }
4084
4085 /* determine by signature whether we have ATA or ATAPI devices */
Tejun Heo3f198592007-09-02 23:23:57 +09004086 classes[0] = ata_dev_try_classify(&link->device[0],
4087 devmask & (1 << 0), &err);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004088 if (slave_possible && err != 0x81)
Tejun Heo3f198592007-09-02 23:23:57 +09004089 classes[1] = ata_dev_try_classify(&link->device[1],
4090 devmask & (1 << 1), &err);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004091
Tejun Heo3a397462006-02-10 23:58:48 +09004092 out:
Tejun Heoc2bd5802006-01-24 17:05:22 +09004093 DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]);
4094 return 0;
4095}
4096
4097/**
Tejun Heocc0680a2007-08-06 18:36:23 +09004098 * sata_link_hardreset - reset link via SATA phy reset
4099 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09004100 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09004101 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09004102 *
Tejun Heocc0680a2007-08-06 18:36:23 +09004103 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09004104 *
4105 * LOCKING:
4106 * Kernel thread context (may sleep)
4107 *
4108 * RETURNS:
4109 * 0 on success, -errno otherwise.
4110 */
Tejun Heocc0680a2007-08-06 18:36:23 +09004111int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heod4b2bab2007-02-02 16:50:52 +09004112 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09004113{
Tejun Heo852ee16a2006-04-01 01:38:18 +09004114 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09004115 int rc;
Tejun Heo852ee16a2006-04-01 01:38:18 +09004116
Tejun Heoc2bd5802006-01-24 17:05:22 +09004117 DPRINTK("ENTER\n");
4118
Tejun Heo936fd732007-08-06 18:36:23 +09004119 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09004120 /* SATA spec says nothing about how to reconfigure
4121 * spd. To be on the safe side, turn off phy during
4122 * reconfiguration. This works for at least ICH7 AHCI
4123 * and Sil3124.
4124 */
Tejun Heo936fd732007-08-06 18:36:23 +09004125 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09004126 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09004127
Martin Hicksa34b6fc2006-07-05 15:06:13 -04004128 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09004129
Tejun Heo936fd732007-08-06 18:36:23 +09004130 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09004131 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09004132
Tejun Heo936fd732007-08-06 18:36:23 +09004133 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09004134 }
4135
4136 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09004137 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09004138 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09004139
Tejun Heo852ee16a2006-04-01 01:38:18 +09004140 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09004141
Tejun Heo936fd732007-08-06 18:36:23 +09004142 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09004143 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004144
Tejun Heo1c3fae42006-04-02 20:53:28 +09004145 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09004146 * 10.4.2 says at least 1 ms.
4147 */
4148 msleep(1);
4149
Tejun Heo936fd732007-08-06 18:36:23 +09004150 /* bring link back */
4151 rc = sata_link_resume(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09004152 out:
4153 DPRINTK("EXIT, rc=%d\n", rc);
4154 return rc;
4155}
4156
4157/**
4158 * sata_std_hardreset - reset host port via SATA phy reset
Tejun Heocc0680a2007-08-06 18:36:23 +09004159 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09004160 * @class: resulting class of attached device
Tejun Heod4b2bab2007-02-02 16:50:52 +09004161 * @deadline: deadline jiffies for the operation
Tejun Heob6103f62006-11-01 17:59:53 +09004162 *
4163 * SATA phy-reset host port using DET bits of SControl register,
4164 * wait for !BSY and classify the attached device.
4165 *
4166 * LOCKING:
4167 * Kernel thread context (may sleep)
4168 *
4169 * RETURNS:
4170 * 0 on success, -errno otherwise.
4171 */
Tejun Heocc0680a2007-08-06 18:36:23 +09004172int sata_std_hardreset(struct ata_link *link, unsigned int *class,
Tejun Heod4b2bab2007-02-02 16:50:52 +09004173 unsigned long deadline)
Tejun Heob6103f62006-11-01 17:59:53 +09004174{
Tejun Heocc0680a2007-08-06 18:36:23 +09004175 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004176 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
Tejun Heob6103f62006-11-01 17:59:53 +09004177 int rc;
4178
4179 DPRINTK("ENTER\n");
4180
4181 /* do hardreset */
Tejun Heocc0680a2007-08-06 18:36:23 +09004182 rc = sata_link_hardreset(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09004183 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09004184 ata_link_printk(link, KERN_ERR,
Tejun Heob6103f62006-11-01 17:59:53 +09004185 "COMRESET failed (errno=%d)\n", rc);
4186 return rc;
4187 }
Tejun Heoc2bd5802006-01-24 17:05:22 +09004188
Tejun Heoc2bd5802006-01-24 17:05:22 +09004189 /* TODO: phy layer with polling, timeouts, etc. */
Tejun Heo936fd732007-08-06 18:36:23 +09004190 if (ata_link_offline(link)) {
Tejun Heoc2bd5802006-01-24 17:05:22 +09004191 *class = ATA_DEV_NONE;
4192 DPRINTK("EXIT, link offline\n");
4193 return 0;
4194 }
4195
Tejun Heo88ff6ea2007-10-16 14:21:24 -07004196 /* wait a while before checking status */
4197 ata_wait_after_reset(ap, deadline);
Tejun Heo34fee222007-02-02 15:29:27 +09004198
Tejun Heo633273a32007-09-23 13:19:54 +09004199 /* If PMP is supported, we have to do follow-up SRST. Note
4200 * that some PMPs don't send D2H Reg FIS after hardreset at
4201 * all if the first port is empty. Wait for it just for a
4202 * second and request follow-up SRST.
4203 */
4204 if (ap->flags & ATA_FLAG_PMP) {
4205 ata_wait_ready(ap, jiffies + HZ);
4206 return -EAGAIN;
4207 }
4208
Tejun Heod4b2bab2007-02-02 16:50:52 +09004209 rc = ata_wait_ready(ap, deadline);
Tejun Heo9b893912007-02-02 16:50:52 +09004210 /* link occupied, -ENODEV too is an error */
4211 if (rc) {
Tejun Heocc0680a2007-08-06 18:36:23 +09004212 ata_link_printk(link, KERN_ERR,
Tejun Heod4b2bab2007-02-02 16:50:52 +09004213 "COMRESET failed (errno=%d)\n", rc);
4214 return rc;
Tejun Heoc2bd5802006-01-24 17:05:22 +09004215 }
4216
Tejun Heo3a397462006-02-10 23:58:48 +09004217 ap->ops->dev_select(ap, 0); /* probably unnecessary */
4218
Tejun Heo3f198592007-09-02 23:23:57 +09004219 *class = ata_dev_try_classify(link->device, 1, NULL);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004220
4221 DPRINTK("EXIT, class=%u\n", *class);
4222 return 0;
4223}
4224
4225/**
4226 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09004227 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09004228 * @classes: classes of attached devices
4229 *
4230 * This function is invoked after a successful reset. Note that
4231 * the device might have been reset more than once using
4232 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09004233 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09004234 * LOCKING:
4235 * Kernel thread context (may sleep)
4236 */
Tejun Heocc0680a2007-08-06 18:36:23 +09004237void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09004238{
Tejun Heocc0680a2007-08-06 18:36:23 +09004239 struct ata_port *ap = link->ap;
Tejun Heodc2b3512006-05-15 20:58:00 +09004240 u32 serror;
4241
Tejun Heoc2bd5802006-01-24 17:05:22 +09004242 DPRINTK("ENTER\n");
4243
Tejun Heoc2bd5802006-01-24 17:05:22 +09004244 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09004245 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004246
Tejun Heodc2b3512006-05-15 20:58:00 +09004247 /* clear SError */
Tejun Heo936fd732007-08-06 18:36:23 +09004248 if (sata_scr_read(link, SCR_ERROR, &serror) == 0)
4249 sata_scr_write(link, SCR_ERROR, serror);
Tejun Heof7fe7ad42007-12-08 08:47:01 +09004250 link->eh_info.serror = 0;
Tejun Heodc2b3512006-05-15 20:58:00 +09004251
Tejun Heoc2bd5802006-01-24 17:05:22 +09004252 /* is double-select really necessary? */
4253 if (classes[0] != ATA_DEV_NONE)
4254 ap->ops->dev_select(ap, 1);
4255 if (classes[1] != ATA_DEV_NONE)
4256 ap->ops->dev_select(ap, 0);
4257
Tejun Heo3a397462006-02-10 23:58:48 +09004258 /* bail out if no device is present */
4259 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
4260 DPRINTK("EXIT, no device\n");
4261 return;
4262 }
4263
4264 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09004265 if (ap->ioaddr.ctl_addr)
4266 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09004267
4268 DPRINTK("EXIT\n");
4269}
4270
Tejun Heoa62c0fc2006-01-24 17:05:22 +09004271/**
Tejun Heo623a3122006-03-05 17:55:58 +09004272 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09004273 * @dev: device to compare against
4274 * @new_class: class of the new device
4275 * @new_id: IDENTIFY page of the new device
4276 *
4277 * Compare @new_class and @new_id against @dev and determine
4278 * whether @dev is the device indicated by @new_class and
4279 * @new_id.
4280 *
4281 * LOCKING:
4282 * None.
4283 *
4284 * RETURNS:
4285 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
4286 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004287static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
4288 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09004289{
4290 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09004291 unsigned char model[2][ATA_ID_PROD_LEN + 1];
4292 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09004293
4294 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09004295 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
4296 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09004297 return 0;
4298 }
4299
Tejun Heoa0cf7332007-01-02 20:18:49 +09004300 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
4301 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
4302 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
4303 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09004304
4305 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09004306 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
4307 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09004308 return 0;
4309 }
4310
4311 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09004312 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
4313 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09004314 return 0;
4315 }
4316
Tejun Heo623a3122006-03-05 17:55:58 +09004317 return 1;
4318}
4319
4320/**
Tejun Heofe309112007-05-15 03:28:15 +09004321 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02004322 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09004323 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09004324 *
4325 * Re-read IDENTIFY page and make sure @dev is still attached to
4326 * the port.
4327 *
4328 * LOCKING:
4329 * Kernel thread context (may sleep)
4330 *
4331 * RETURNS:
4332 * 0 on success, negative errno otherwise
4333 */
Tejun Heofe309112007-05-15 03:28:15 +09004334int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09004335{
Tejun Heo5eb45c02006-04-02 18:51:52 +09004336 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004337 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09004338 int rc;
4339
Tejun Heofe635c72006-05-15 20:57:35 +09004340 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09004341 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09004342 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09004343 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09004344
4345 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09004346 if (!ata_dev_same_device(dev, class, id))
4347 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09004348
Tejun Heofe635c72006-05-15 20:57:35 +09004349 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09004350 return 0;
4351}
4352
4353/**
4354 * ata_dev_revalidate - Revalidate ATA device
4355 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09004356 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09004357 * @readid_flags: read ID flags
4358 *
4359 * Re-read IDENTIFY page, make sure @dev is still attached to the
4360 * port and reconfigure it according to the new IDENTIFY page.
4361 *
4362 * LOCKING:
4363 * Kernel thread context (may sleep)
4364 *
4365 * RETURNS:
4366 * 0 on success, negative errno otherwise
4367 */
Tejun Heo422c9da2007-09-23 13:14:12 +09004368int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
4369 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09004370{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004371 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09004372 int rc;
4373
4374 if (!ata_dev_enabled(dev))
4375 return -ENODEV;
4376
Tejun Heo422c9da2007-09-23 13:14:12 +09004377 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
4378 if (ata_class_enabled(new_class) &&
4379 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
4380 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
4381 dev->class, new_class);
4382 rc = -ENODEV;
4383 goto fail;
4384 }
4385
Tejun Heofe309112007-05-15 03:28:15 +09004386 /* re-read ID */
4387 rc = ata_dev_reread_id(dev, readid_flags);
4388 if (rc)
4389 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09004390
4391 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09004392 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004393 if (rc)
4394 goto fail;
4395
4396 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09004397 if (dev->class == ATA_DEV_ATA && n_sectors &&
4398 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004399 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
4400 "%llu != %llu\n",
4401 (unsigned long long)n_sectors,
4402 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09004403
4404 /* restore original n_sectors */
4405 dev->n_sectors = n_sectors;
4406
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004407 rc = -ENODEV;
4408 goto fail;
4409 }
4410
4411 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09004412
4413 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09004414 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09004415 return rc;
4416}
4417
Alan Cox6919a0a2006-10-27 19:08:46 -07004418struct ata_blacklist_entry {
4419 const char *model_num;
4420 const char *model_rev;
4421 unsigned long horkage;
4422};
4423
4424static const struct ata_blacklist_entry ata_device_blacklist [] = {
4425 /* Devices with DMA related problems under Linux */
4426 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
4427 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
4428 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
4429 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
4430 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
4431 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
4432 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
4433 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
4434 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
4435 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
4436 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
4437 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
4438 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
4439 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
4440 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
4441 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
4442 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
4443 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
4444 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
4445 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
4446 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
4447 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
4448 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
4449 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
4450 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
4451 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004452 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
4453 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004454 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04004455 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09004456 /* Odd clown on sil3726/4726 PMPs */
4457 { "Config Disk", NULL, ATA_HORKAGE_NODMA |
4458 ATA_HORKAGE_SKIP_PM },
Alan Cox6919a0a2006-10-27 19:08:46 -07004459
Albert Lee18d6e9d2007-04-02 11:34:15 +08004460 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09004461 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08004462
Alan Cox6919a0a2006-10-27 19:08:46 -07004463 /* Devices we expect to fail diagnostics */
4464
4465 /* Devices where NCQ should be avoided */
4466 /* NCQ is slow */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004467 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo459ad682007-12-07 12:46:23 +09004468 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo09125ea2007-02-28 15:21:23 +09004469 /* http://thread.gmane.org/gmane.linux.ide/14907 */
4470 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08004471 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004472 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01004473 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Paolo Ornatida6f0ec2007-10-04 11:06:56 +09004474 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
Tejun Heoe41bd3e2007-12-09 19:45:39 +09004475 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004476
Robert Hancock36e337d2007-04-02 22:05:29 -06004477 /* Blacklist entries taken from Silicon Image 3124/3132
4478 Windows driver .inf file - also several Linux problem reports */
4479 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
4480 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
4481 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07004482
Tejun Heo16c55b02007-08-29 11:58:33 +09004483 /* devices which puke on READ_NATIVE_MAX */
4484 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
4485 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
4486 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
4487 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004488
Alan Cox93328e112007-09-29 04:06:48 -04004489 /* Devices which report 1 sector over size HPA */
4490 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
4491 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
Mikko Rapelib152fcd2008-02-19 01:41:25 +01004492 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
Alan Cox93328e112007-09-29 04:06:48 -04004493
Alan Cox6bbfd532007-11-05 22:58:58 +00004494 /* Devices which get the IVB wrong */
4495 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
4496 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
Peter Missele9f33402007-11-27 18:04:42 +01004497 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
4498 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
4499 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00004500
Alan Cox6919a0a2006-10-27 19:08:46 -07004501 /* End Marker */
4502 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004504
Adrian Bunk741b7762007-10-24 18:23:06 +02004505static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004506{
4507 const char *p;
4508 int len;
4509
4510 /*
4511 * check for trailing wildcard: *\0
4512 */
4513 p = strchr(patt, wildchar);
4514 if (p && ((*(p + 1)) == 0))
4515 len = p - patt;
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004516 else {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004517 len = strlen(name);
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004518 if (!len) {
4519 if (!*patt)
4520 return 0;
4521 return -1;
4522 }
4523 }
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004524
4525 return strncmp(patt, name, len);
4526}
4527
Tejun Heo75683fe2007-07-05 13:31:27 +09004528static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004530 unsigned char model_num[ATA_ID_PROD_LEN + 1];
4531 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07004532 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08004533
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004534 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
4535 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
Alan Cox6919a0a2006-10-27 19:08:46 -07004537 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004538 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07004539 if (ad->model_rev == NULL)
4540 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004541 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07004542 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004543 }
Alan Cox6919a0a2006-10-27 19:08:46 -07004544 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 return 0;
4547}
4548
Alan Cox6919a0a2006-10-27 19:08:46 -07004549static int ata_dma_blacklisted(const struct ata_device *dev)
4550{
4551 /* We don't support polling DMA.
4552 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
4553 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
4554 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004555 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07004556 (dev->flags & ATA_DFLAG_CDB_INTR))
4557 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09004558 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07004559}
4560
Tejun Heoa6d5a512006-03-06 04:31:57 +09004561/**
Alan Cox6bbfd532007-11-05 22:58:58 +00004562 * ata_is_40wire - check drive side detection
4563 * @dev: device
4564 *
4565 * Perform drive side detection decoding, allowing for device vendors
4566 * who can't follow the documentation.
4567 */
4568
4569static int ata_is_40wire(struct ata_device *dev)
4570{
4571 if (dev->horkage & ATA_HORKAGE_IVB)
4572 return ata_drive_40wire_relaxed(dev->id);
4573 return ata_drive_40wire(dev->id);
4574}
4575
4576/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09004577 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09004578 * @dev: Device to compute xfermask for
4579 *
Tejun Heoacf356b2006-03-24 14:07:50 +09004580 * Compute supported xfermask of @dev and store it in
4581 * dev->*_mask. This function is responsible for applying all
4582 * known limits including host controller limits, device
4583 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09004584 *
4585 * LOCKING:
4586 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09004587 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004588static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004590 struct ata_link *link = dev->link;
4591 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04004592 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09004593 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594
Tejun Heo37deecb2006-08-10 16:59:07 +09004595 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09004596 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4597 ap->mwdma_mask, ap->udma_mask);
4598
Robert Hancock8343f882007-03-06 02:37:51 -08004599 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09004600 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4601 dev->mwdma_mask, dev->udma_mask);
4602 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09004603
Alan Coxb352e572006-08-10 18:52:12 +01004604 /*
4605 * CFA Advanced TrueIDE timings are not allowed on a shared
4606 * cable
4607 */
4608 if (ata_dev_pair(dev)) {
4609 /* No PIO5 or PIO6 */
4610 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4611 /* No MWDMA3 or MWDMA 4 */
4612 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4613 }
4614
Tejun Heo37deecb2006-08-10 16:59:07 +09004615 if (ata_dma_blacklisted(dev)) {
4616 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09004617 ata_dev_printk(dev, KERN_WARNING,
4618 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09004619 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09004620
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01004621 if ((host->flags & ATA_HOST_SIMPLEX) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004622 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09004623 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4624 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4625 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01004626 }
Tejun Heo565083e2006-04-02 17:54:47 +09004627
Jeff Garzike4246752007-03-09 09:56:46 -05004628 if (ap->flags & ATA_FLAG_NO_IORDY)
4629 xfer_mask &= ata_pio_mask_no_iordy(dev);
4630
Alan Cox5444a6f2006-03-27 18:58:20 +01004631 if (ap->ops->mode_filter)
Alan Coxa76b62ca2007-03-09 09:34:07 -05004632 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01004633
Robert Hancock8343f882007-03-06 02:37:51 -08004634 /* Apply cable rule here. Don't apply it early because when
4635 * we handle hot plug the cable type can itself change.
4636 * Check this last so that we know if the transfer rate was
4637 * solely limited by the cable.
4638 * Unknown or 80 wire cables reported host side are checked
4639 * drive side as well. Cases where we know a 40wire cable
4640 * is used safely for 80 are not checked here.
4641 */
4642 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4643 /* UDMA/44 or higher would be available */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004644 if ((ap->cbl == ATA_CBL_PATA40) ||
Alan Cox6bbfd532007-11-05 22:58:58 +00004645 (ata_is_40wire(dev) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004646 (ap->cbl == ATA_CBL_PATA_UNK ||
4647 ap->cbl == ATA_CBL_PATA80))) {
4648 ata_dev_printk(dev, KERN_WARNING,
Robert Hancock8343f882007-03-06 02:37:51 -08004649 "limited to UDMA/33 due to 40-wire cable\n");
4650 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4651 }
4652
Tejun Heo565083e2006-04-02 17:54:47 +09004653 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4654 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655}
4656
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 * @dev: Device to which command will be sent
4660 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004661 * Issue SET FEATURES - XFER MODE command to device @dev
4662 * on port @ap.
4663 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004665 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004666 *
4667 * RETURNS:
4668 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 */
4670
Tejun Heo3373efd2006-05-15 20:57:53 +09004671static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672{
Tejun Heoa0123702005-12-13 14:49:31 +09004673 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004674 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675
4676 /* set up set-features taskfile */
4677 DPRINTK("set features - xfer mode\n");
4678
Tejun Heo464cf172007-05-27 15:10:40 +02004679 /* Some controllers and ATAPI devices show flaky interrupt
4680 * behavior after setting xfer mode. Use polling instead.
4681 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004682 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004683 tf.command = ATA_CMD_SET_FEATURES;
4684 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004685 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004686 tf.protocol = ATA_PROT_NODATA;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004687 /* If we are using IORDY we must send the mode setting command */
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004688 if (ata_pio_need_iordy(dev))
4689 tf.nsect = dev->xfer_mode;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004690 /* If the device has IORDY and the controller does not - turn it off */
4691 else if (ata_id_has_iordy(dev->id))
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004692 tf.nsect = 0x01;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004693 else /* In the ancient relic department - skip all of this */
4694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695
Tejun Heo2b789102007-10-09 15:05:44 +09004696 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
Tejun Heo83206a22006-03-24 15:25:31 +09004698 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4699 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701/**
Jeff Garzik218f3d32007-10-25 00:33:27 -04004702 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004703 * @dev: Device to which command will be sent
4704 * @enable: Whether to enable or disable the feature
Jeff Garzik218f3d32007-10-25 00:33:27 -04004705 * @feature: The sector count represents the feature to set
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004706 *
4707 * Issue SET FEATURES - SATA FEATURES command to device @dev
Jeff Garzik218f3d32007-10-25 00:33:27 -04004708 * on port @ap with sector count
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004709 *
4710 * LOCKING:
4711 * PCI/etc. bus probe sem.
4712 *
4713 * RETURNS:
4714 * 0 on success, AC_ERR_* mask otherwise.
4715 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04004716static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4717 u8 feature)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004718{
4719 struct ata_taskfile tf;
4720 unsigned int err_mask;
4721
4722 /* set up set-features taskfile */
4723 DPRINTK("set features - SATA features\n");
4724
4725 ata_tf_init(dev, &tf);
4726 tf.command = ATA_CMD_SET_FEATURES;
4727 tf.feature = enable;
4728 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4729 tf.protocol = ATA_PROT_NODATA;
Jeff Garzik218f3d32007-10-25 00:33:27 -04004730 tf.nsect = feature;
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004731
Tejun Heo2b789102007-10-09 15:05:44 +09004732 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004733
4734 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4735 return err_mask;
4736}
4737
4738/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004739 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004740 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004741 * @heads: Number of heads (taskfile parameter)
4742 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004743 *
4744 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004745 * Kernel thread context (may sleep)
4746 *
4747 * RETURNS:
4748 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004749 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004750static unsigned int ata_dev_init_params(struct ata_device *dev,
4751 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004752{
Tejun Heoa0123702005-12-13 14:49:31 +09004753 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004754 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004755
4756 /* Number of sectors per track 1-255. Number of heads 1-16 */
4757 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004758 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004759
4760 /* set up init dev params taskfile */
4761 DPRINTK("init dev params \n");
4762
Tejun Heo3373efd2006-05-15 20:57:53 +09004763 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004764 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4765 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4766 tf.protocol = ATA_PROT_NODATA;
4767 tf.nsect = sectors;
4768 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004769
Tejun Heo2b789102007-10-09 15:05:44 +09004770 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004771 /* A clean abort indicates an original or just out of spec drive
4772 and we should continue as we issue the setup based on the
4773 drive reported working geometry */
4774 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4775 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004776
Tejun Heo6aff8f12006-02-15 18:24:09 +09004777 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4778 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004779}
4780
4781/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004782 * ata_sg_clean - Unmap DMA memory associated with command
4783 * @qc: Command containing DMA memory to be released
4784 *
4785 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 *
4787 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004788 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004790void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791{
4792 struct ata_port *ap = qc->ap;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004793 struct scatterlist *sg = qc->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 int dir = qc->dma_dir;
4795
Tejun Heoa46314742006-02-11 19:11:13 +09004796 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
James Bottomleydde20202008-02-19 11:36:56 +01004798 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799
James Bottomleydde20202008-02-19 11:36:56 +01004800 if (qc->n_elem)
4801 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802
4803 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004804 qc->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805}
4806
4807/**
4808 * ata_fill_sg - Fill PCI IDE PRD table
4809 * @qc: Metadata associated with taskfile to be transferred
4810 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004811 * Fill PCI IDE PRD (scatter-gather) table with segments
4812 * associated with the current disk command.
4813 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004815 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 *
4817 */
4818static void ata_fill_sg(struct ata_queued_cmd *qc)
4819{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 struct ata_port *ap = qc->ap;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004821 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004822 unsigned int si, pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823
Tejun Heoff2aeb12007-12-05 16:43:11 +09004824 pi = 0;
4825 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 u32 addr, offset;
4827 u32 sg_len, len;
4828
4829 /* determine if physical DMA addr spans 64K boundary.
4830 * Note h/w doesn't support 64-bit, so we unconditionally
4831 * truncate dma_addr_t to u32.
4832 */
4833 addr = (u32) sg_dma_address(sg);
4834 sg_len = sg_dma_len(sg);
4835
4836 while (sg_len) {
4837 offset = addr & 0xffff;
4838 len = sg_len;
4839 if ((offset + sg_len) > 0x10000)
4840 len = 0x10000 - offset;
4841
Tejun Heoff2aeb12007-12-05 16:43:11 +09004842 ap->prd[pi].addr = cpu_to_le32(addr);
4843 ap->prd[pi].flags_len = cpu_to_le32(len & 0xffff);
4844 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", pi, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845
Tejun Heoff2aeb12007-12-05 16:43:11 +09004846 pi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 sg_len -= len;
4848 addr += len;
4849 }
4850 }
4851
Tejun Heoff2aeb12007-12-05 16:43:11 +09004852 ap->prd[pi - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853}
Tejun Heob9a41972007-06-27 02:48:43 +09004854
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855/**
Alan Coxd26fc952007-07-06 19:13:52 -04004856 * ata_fill_sg_dumb - Fill PCI IDE PRD table
4857 * @qc: Metadata associated with taskfile to be transferred
4858 *
4859 * Fill PCI IDE PRD (scatter-gather) table with segments
4860 * associated with the current disk command. Perform the fill
4861 * so that we avoid writing any length 64K records for
4862 * controllers that don't follow the spec.
4863 *
4864 * LOCKING:
4865 * spin_lock_irqsave(host lock)
4866 *
4867 */
4868static void ata_fill_sg_dumb(struct ata_queued_cmd *qc)
4869{
4870 struct ata_port *ap = qc->ap;
4871 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004872 unsigned int si, pi;
Alan Coxd26fc952007-07-06 19:13:52 -04004873
Tejun Heoff2aeb12007-12-05 16:43:11 +09004874 pi = 0;
4875 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Alan Coxd26fc952007-07-06 19:13:52 -04004876 u32 addr, offset;
4877 u32 sg_len, len, blen;
4878
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004879 /* determine if physical DMA addr spans 64K boundary.
Alan Coxd26fc952007-07-06 19:13:52 -04004880 * Note h/w doesn't support 64-bit, so we unconditionally
4881 * truncate dma_addr_t to u32.
4882 */
4883 addr = (u32) sg_dma_address(sg);
4884 sg_len = sg_dma_len(sg);
4885
4886 while (sg_len) {
4887 offset = addr & 0xffff;
4888 len = sg_len;
4889 if ((offset + sg_len) > 0x10000)
4890 len = 0x10000 - offset;
4891
4892 blen = len & 0xffff;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004893 ap->prd[pi].addr = cpu_to_le32(addr);
Alan Coxd26fc952007-07-06 19:13:52 -04004894 if (blen == 0) {
4895 /* Some PATA chipsets like the CS5530 can't
4896 cope with 0x0000 meaning 64K as the spec says */
Tejun Heoff2aeb12007-12-05 16:43:11 +09004897 ap->prd[pi].flags_len = cpu_to_le32(0x8000);
Alan Coxd26fc952007-07-06 19:13:52 -04004898 blen = 0x8000;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004899 ap->prd[++pi].addr = cpu_to_le32(addr + 0x8000);
Alan Coxd26fc952007-07-06 19:13:52 -04004900 }
Tejun Heoff2aeb12007-12-05 16:43:11 +09004901 ap->prd[pi].flags_len = cpu_to_le32(blen);
4902 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", pi, addr, len);
Alan Coxd26fc952007-07-06 19:13:52 -04004903
Tejun Heoff2aeb12007-12-05 16:43:11 +09004904 pi++;
Alan Coxd26fc952007-07-06 19:13:52 -04004905 sg_len -= len;
4906 addr += len;
4907 }
4908 }
4909
Tejun Heoff2aeb12007-12-05 16:43:11 +09004910 ap->prd[pi - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
Alan Coxd26fc952007-07-06 19:13:52 -04004911}
4912
4913/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4915 * @qc: Metadata associated with taskfile to check
4916 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004917 * Allow low-level driver to filter ATA PACKET commands, returning
4918 * a status indicating whether or not it is OK to use DMA for the
4919 * supplied PACKET command.
4920 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004922 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004923 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 * RETURNS: 0 when ATAPI DMA can be used
4925 * nonzero otherwise
4926 */
4927int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4928{
4929 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
Tejun Heob9a41972007-06-27 02:48:43 +09004931 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4932 * few ATAPI devices choke on such DMA requests.
4933 */
4934 if (unlikely(qc->nbytes & 15))
4935 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004936
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004938 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
Tejun Heob9a41972007-06-27 02:48:43 +09004940 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941}
Tejun Heob9a41972007-06-27 02:48:43 +09004942
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004944 * ata_std_qc_defer - Check whether a qc needs to be deferred
4945 * @qc: ATA command in question
4946 *
4947 * Non-NCQ commands cannot run with any other command, NCQ or
4948 * not. As upper layer only knows the queue depth, we are
4949 * responsible for maintaining exclusion. This function checks
4950 * whether a new command @qc can be issued.
4951 *
4952 * LOCKING:
4953 * spin_lock_irqsave(host lock)
4954 *
4955 * RETURNS:
4956 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4957 */
4958int ata_std_qc_defer(struct ata_queued_cmd *qc)
4959{
4960 struct ata_link *link = qc->dev->link;
4961
4962 if (qc->tf.protocol == ATA_PROT_NCQ) {
4963 if (!ata_tag_valid(link->active_tag))
4964 return 0;
4965 } else {
4966 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4967 return 0;
4968 }
4969
4970 return ATA_DEFER_LINK;
4971}
4972
4973/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 * ata_qc_prep - Prepare taskfile for submission
4975 * @qc: Metadata associated with taskfile to be prepared
4976 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004977 * Prepare ATA taskfile for submission.
4978 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004980 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 */
4982void ata_qc_prep(struct ata_queued_cmd *qc)
4983{
4984 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
4985 return;
4986
4987 ata_fill_sg(qc);
4988}
4989
Alan Coxd26fc952007-07-06 19:13:52 -04004990/**
4991 * ata_dumb_qc_prep - Prepare taskfile for submission
4992 * @qc: Metadata associated with taskfile to be prepared
4993 *
4994 * Prepare ATA taskfile for submission.
4995 *
4996 * LOCKING:
4997 * spin_lock_irqsave(host lock)
4998 */
4999void ata_dumb_qc_prep(struct ata_queued_cmd *qc)
5000{
5001 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
5002 return;
5003
5004 ata_fill_sg_dumb(qc);
5005}
5006
Brian Kinge46834c2006-03-17 17:04:03 -06005007void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
5008
Jeff Garzik0cba6322005-05-30 19:49:12 -04005009/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005010 * ata_sg_init - Associate command with scatter-gather table.
5011 * @qc: Command to be associated
5012 * @sg: Scatter-gather table.
5013 * @n_elem: Number of elements in s/g table.
5014 *
5015 * Initialize the data-related elements of queued_cmd @qc
5016 * to point to a scatter-gather table @sg, containing @n_elem
5017 * elements.
5018 *
5019 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005020 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04005021 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
5023 unsigned int n_elem)
5024{
Tejun Heoff2aeb12007-12-05 16:43:11 +09005025 qc->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026 qc->n_elem = n_elem;
Tejun Heoff2aeb12007-12-05 16:43:11 +09005027 qc->cursg = qc->sg;
5028}
5029
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04005031 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
5032 * @qc: Command with scatter-gather table to be mapped.
5033 *
5034 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 *
5036 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005037 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 *
5039 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005040 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 *
5042 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043static int ata_sg_setup(struct ata_queued_cmd *qc)
5044{
5045 struct ata_port *ap = qc->ap;
James Bottomleydde20202008-02-19 11:36:56 +01005046 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047
Tejun Heo44877b42007-02-21 01:06:51 +09005048 VPRINTK("ENTER, ata%u\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049
James Bottomleydde20202008-02-19 11:36:56 +01005050 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
5051 if (n_elem < 1)
5052 return -1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005053
James Bottomleydde20202008-02-19 11:36:56 +01005054 DPRINTK("%d sg elements mapped\n", n_elem);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04005055
James Bottomleydde20202008-02-19 11:36:56 +01005056 qc->n_elem = n_elem;
Tejun Heof92a2632007-12-05 16:43:10 +09005057 qc->flags |= ATA_QCFLAG_DMAMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
5059 return 0;
5060}
5061
5062/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005063 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04005064 * @buf: Buffer to swap
5065 * @buf_words: Number of 16-bit words in buffer.
5066 *
5067 * Swap halves of 16-bit words if needed to convert from
5068 * little-endian byte order to native cpu byte order, or
5069 * vice-versa.
5070 *
5071 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04005072 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04005073 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074void swap_buf_le16(u16 *buf, unsigned int buf_words)
5075{
5076#ifdef __BIG_ENDIAN
5077 unsigned int i;
5078
5079 for (i = 0; i < buf_words; i++)
5080 buf[i] = le16_to_cpu(buf[i]);
5081#endif /* __BIG_ENDIAN */
5082}
5083
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005084/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09005085 * ata_data_xfer - Transfer data by PIO
Tejun Heo55dba312007-12-05 16:43:07 +09005086 * @dev: device to target
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005087 * @buf: data buffer
5088 * @buflen: buffer length
Linus Nilsson0affa452008-01-28 15:56:27 +01005089 * @rw: read/write
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005090 *
5091 * Transfer data from/to the device data register by PIO.
5092 *
5093 * LOCKING:
5094 * Inherited from caller.
Tejun Heo55dba312007-12-05 16:43:07 +09005095 *
5096 * RETURNS:
5097 * Bytes consumed.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005098 */
Tejun Heo55dba312007-12-05 16:43:07 +09005099unsigned int ata_data_xfer(struct ata_device *dev, unsigned char *buf,
5100 unsigned int buflen, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101{
Tejun Heo55dba312007-12-05 16:43:07 +09005102 struct ata_port *ap = dev->link->ap;
5103 void __iomem *data_addr = ap->ioaddr.data_addr;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005104 unsigned int words = buflen >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005106 /* Transfer multiple of 2 bytes */
Tejun Heo55dba312007-12-05 16:43:07 +09005107 if (rw == READ)
5108 ioread16_rep(data_addr, buf, words);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 else
Tejun Heo55dba312007-12-05 16:43:07 +09005110 iowrite16_rep(data_addr, buf, words);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005111
5112 /* Transfer trailing 1 byte, if any. */
5113 if (unlikely(buflen & 0x01)) {
Al Viro4ca4e432007-12-30 09:32:22 +00005114 __le16 align_buf[1] = { 0 };
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005115 unsigned char *trailing_buf = buf + buflen - 1;
5116
Tejun Heo55dba312007-12-05 16:43:07 +09005117 if (rw == READ) {
5118 align_buf[0] = cpu_to_le16(ioread16(data_addr));
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005119 memcpy(trailing_buf, align_buf, 1);
Tejun Heo55dba312007-12-05 16:43:07 +09005120 } else {
5121 memcpy(align_buf, trailing_buf, 1);
5122 iowrite16(le16_to_cpu(align_buf[0]), data_addr);
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005123 }
Tejun Heo55dba312007-12-05 16:43:07 +09005124 words++;
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005125 }
Tejun Heo55dba312007-12-05 16:43:07 +09005126
5127 return words << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128}
5129
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005130/**
Tejun Heo0d5ff562007-02-01 15:06:36 +09005131 * ata_data_xfer_noirq - Transfer data by PIO
Tejun Heo55dba312007-12-05 16:43:07 +09005132 * @dev: device to target
Alan Cox75e99582006-05-24 14:14:41 +01005133 * @buf: data buffer
5134 * @buflen: buffer length
Linus Nilsson0affa452008-01-28 15:56:27 +01005135 * @rw: read/write
Alan Cox75e99582006-05-24 14:14:41 +01005136 *
Tejun Heo88574552006-06-25 20:00:35 +09005137 * Transfer data from/to the device data register by PIO. Do the
Alan Cox75e99582006-05-24 14:14:41 +01005138 * transfer with interrupts disabled.
5139 *
5140 * LOCKING:
5141 * Inherited from caller.
Tejun Heo55dba312007-12-05 16:43:07 +09005142 *
5143 * RETURNS:
5144 * Bytes consumed.
Alan Cox75e99582006-05-24 14:14:41 +01005145 */
Tejun Heo55dba312007-12-05 16:43:07 +09005146unsigned int ata_data_xfer_noirq(struct ata_device *dev, unsigned char *buf,
5147 unsigned int buflen, int rw)
Alan Cox75e99582006-05-24 14:14:41 +01005148{
5149 unsigned long flags;
Tejun Heo55dba312007-12-05 16:43:07 +09005150 unsigned int consumed;
5151
Alan Cox75e99582006-05-24 14:14:41 +01005152 local_irq_save(flags);
Tejun Heo55dba312007-12-05 16:43:07 +09005153 consumed = ata_data_xfer(dev, buf, buflen, rw);
Alan Cox75e99582006-05-24 14:14:41 +01005154 local_irq_restore(flags);
Tejun Heo55dba312007-12-05 16:43:07 +09005155
5156 return consumed;
Alan Cox75e99582006-05-24 14:14:41 +01005157}
5158
5159
5160/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04005161 * ata_pio_sector - Transfer a sector of data.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005162 * @qc: Command on going
5163 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04005164 * Transfer qc->sect_size bytes of data from/to the ATA device.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005165 *
5166 * LOCKING:
5167 * Inherited from caller.
5168 */
5169
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170static void ata_pio_sector(struct ata_queued_cmd *qc)
5171{
5172 int do_write = (qc->tf.flags & ATA_TFLAG_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173 struct ata_port *ap = qc->ap;
5174 struct page *page;
5175 unsigned int offset;
5176 unsigned char *buf;
5177
Mark Lord5a5dbd12007-03-16 10:22:26 -04005178 if (qc->curbytes == qc->nbytes - qc->sect_size)
Albert Lee14be71f2005-09-27 17:36:35 +08005179 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180
Jens Axboe45711f12007-10-22 21:19:53 +02005181 page = sg_page(qc->cursg);
Jens Axboe87260212007-10-16 11:14:12 +02005182 offset = qc->cursg->offset + qc->cursg_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183
5184 /* get the current page and offset */
5185 page = nth_page(page, (offset >> PAGE_SHIFT));
5186 offset %= PAGE_SIZE;
5187
Albert Lee7282aa42005-10-09 09:46:07 -04005188 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
5189
Albert Lee91b8b312005-10-09 09:48:44 -04005190 if (PageHighMem(page)) {
5191 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04005192
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005193 /* FIXME: use a bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04005194 local_irq_save(flags);
5195 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04005196
Albert Lee91b8b312005-10-09 09:48:44 -04005197 /* do the actual data transfer */
Mark Lord5a5dbd12007-03-16 10:22:26 -04005198 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04005199
5200 kunmap_atomic(buf, KM_IRQ0);
5201 local_irq_restore(flags);
5202 } else {
5203 buf = page_address(page);
Mark Lord5a5dbd12007-03-16 10:22:26 -04005204 ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write);
Albert Lee91b8b312005-10-09 09:48:44 -04005205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
Mark Lord5a5dbd12007-03-16 10:22:26 -04005207 qc->curbytes += qc->sect_size;
5208 qc->cursg_ofs += qc->sect_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209
Jens Axboe87260212007-10-16 11:14:12 +02005210 if (qc->cursg_ofs == qc->cursg->length) {
5211 qc->cursg = sg_next(qc->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 qc->cursg_ofs = 0;
5213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005216/**
Mark Lord5a5dbd12007-03-16 10:22:26 -04005217 * ata_pio_sectors - Transfer one or many sectors.
Albert Lee07f6f7d2005-11-01 19:33:20 +08005218 * @qc: Command on going
5219 *
Mark Lord5a5dbd12007-03-16 10:22:26 -04005220 * Transfer one or many sectors of data from/to the
Albert Lee07f6f7d2005-11-01 19:33:20 +08005221 * ATA device for the DRQ request.
5222 *
5223 * LOCKING:
5224 * Inherited from caller.
5225 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226
Albert Lee07f6f7d2005-11-01 19:33:20 +08005227static void ata_pio_sectors(struct ata_queued_cmd *qc)
5228{
5229 if (is_multi_taskfile(&qc->tf)) {
5230 /* READ/WRITE MULTIPLE */
5231 unsigned int nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232
Jeff Garzik587005d2006-02-11 18:17:32 -05005233 WARN_ON(qc->dev->multi_count == 0);
Albert Lee07f6f7d2005-11-01 19:33:20 +08005234
Mark Lord5a5dbd12007-03-16 10:22:26 -04005235 nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size,
Tejun Heo726f0782007-01-03 17:30:39 +09005236 qc->dev->multi_count);
Albert Lee07f6f7d2005-11-01 19:33:20 +08005237 while (nsect--)
5238 ata_pio_sector(qc);
5239 } else
5240 ata_pio_sector(qc);
Albert Lee4cc980b2007-08-15 03:19:45 -04005241
5242 ata_altstatus(qc->ap); /* flush */
Albert Lee07f6f7d2005-11-01 19:33:20 +08005243}
5244
5245/**
Albert Leec71c1852005-10-04 06:03:45 -04005246 * atapi_send_cdb - Write CDB bytes to hardware
5247 * @ap: Port to which ATAPI device is attached.
5248 * @qc: Taskfile currently active
5249 *
5250 * When device has indicated its readiness to accept
5251 * a CDB, this function is called. Send the CDB.
5252 *
5253 * LOCKING:
5254 * caller.
5255 */
5256
5257static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc)
5258{
5259 /* send SCSI cdb */
5260 DPRINTK("send cdb\n");
Jeff Garzikdb024d52006-02-13 00:23:57 -05005261 WARN_ON(qc->dev->cdb_len < 12);
Albert Leec71c1852005-10-04 06:03:45 -04005262
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005263 ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1);
Albert Leec71c1852005-10-04 06:03:45 -04005264 ata_altstatus(ap); /* flush */
5265
5266 switch (qc->tf.protocol) {
Tejun Heo0dc36882007-12-18 16:34:43 -05005267 case ATAPI_PROT_PIO:
Albert Leec71c1852005-10-04 06:03:45 -04005268 ap->hsm_task_state = HSM_ST;
5269 break;
Tejun Heo0dc36882007-12-18 16:34:43 -05005270 case ATAPI_PROT_NODATA:
Albert Leec71c1852005-10-04 06:03:45 -04005271 ap->hsm_task_state = HSM_ST_LAST;
5272 break;
Tejun Heo0dc36882007-12-18 16:34:43 -05005273 case ATAPI_PROT_DMA:
Albert Leec71c1852005-10-04 06:03:45 -04005274 ap->hsm_task_state = HSM_ST_LAST;
5275 /* initiate bmdma */
5276 ap->ops->bmdma_start(qc);
5277 break;
5278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279}
5280
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005281/**
5282 * __atapi_pio_bytes - Transfer data from/to the ATAPI device.
5283 * @qc: Command on going
5284 * @bytes: number of bytes
5285 *
5286 * Transfer Transfer data from/to the ATAPI device.
5287 *
5288 * LOCKING:
5289 * Inherited from caller.
5290 *
5291 */
Tejun Heo140b5e592007-12-12 12:21:52 +09005292static int __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293{
Tejun Heo56c819d2008-02-19 11:35:37 +01005294 int rw = (qc->tf.flags & ATA_TFLAG_WRITE) ? WRITE : READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 struct ata_port *ap = qc->ap;
Tejun Heo56c819d2008-02-19 11:35:37 +01005296 struct ata_device *dev = qc->dev;
5297 struct ata_eh_info *ehi = &dev->link->eh_info;
Tejun Heo140b5e592007-12-12 12:21:52 +09005298 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 struct page *page;
5300 unsigned char *buf;
Tejun Heo56c819d2008-02-19 11:35:37 +01005301 unsigned int offset, count, consumed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
5303next_sg:
Tejun Heo140b5e592007-12-12 12:21:52 +09005304 sg = qc->cursg;
5305 if (unlikely(!sg)) {
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01005306 ata_ehi_push_desc(ehi, "unexpected or too much trailing data "
5307 "buf=%u cur=%u bytes=%u",
5308 qc->nbytes, qc->curbytes, bytes);
5309 return -1;
Tejun Heo140b5e592007-12-12 12:21:52 +09005310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311
Jens Axboe45711f12007-10-22 21:19:53 +02005312 page = sg_page(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313 offset = sg->offset + qc->cursg_ofs;
5314
5315 /* get the current page and offset */
5316 page = nth_page(page, (offset >> PAGE_SHIFT));
5317 offset %= PAGE_SIZE;
5318
Albert Lee6952df02005-06-06 15:56:03 +08005319 /* don't overrun current sg */
Albert Lee32529e02005-05-26 03:49:42 -04005320 count = min(sg->length - qc->cursg_ofs, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
5322 /* don't cross page boundaries */
5323 count = min(count, (unsigned int)PAGE_SIZE - offset);
5324
Albert Lee7282aa42005-10-09 09:46:07 -04005325 DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read");
5326
Albert Lee91b8b312005-10-09 09:48:44 -04005327 if (PageHighMem(page)) {
5328 unsigned long flags;
Albert Lee7282aa42005-10-09 09:46:07 -04005329
Alan Coxa6b2c5d2006-05-22 16:59:59 +01005330 /* FIXME: use bounce buffer */
Albert Lee91b8b312005-10-09 09:48:44 -04005331 local_irq_save(flags);
5332 buf = kmap_atomic(page, KM_IRQ0);
Albert Lee083958d2005-10-09 09:47:31 -04005333
Albert Lee91b8b312005-10-09 09:48:44 -04005334 /* do the actual data transfer */
Tejun Heo56c819d2008-02-19 11:35:37 +01005335 consumed = ap->ops->data_xfer(dev, buf + offset, count, rw);
Albert Lee91b8b312005-10-09 09:48:44 -04005336
5337 kunmap_atomic(buf, KM_IRQ0);
5338 local_irq_restore(flags);
5339 } else {
5340 buf = page_address(page);
Tejun Heo56c819d2008-02-19 11:35:37 +01005341 consumed = ap->ops->data_xfer(dev, buf + offset, count, rw);
Albert Lee91b8b312005-10-09 09:48:44 -04005342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343
Tejun Heo56c819d2008-02-19 11:35:37 +01005344 bytes -= min(bytes, consumed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 qc->curbytes += count;
5346 qc->cursg_ofs += count;
5347
Albert Lee32529e02005-05-26 03:49:42 -04005348 if (qc->cursg_ofs == sg->length) {
Jens Axboe87260212007-10-16 11:14:12 +02005349 qc->cursg = sg_next(qc->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350 qc->cursg_ofs = 0;
5351 }
5352
Tejun Heo56c819d2008-02-19 11:35:37 +01005353 /* consumed can be larger than count only for the last transfer */
5354 WARN_ON(qc->cursg && count != consumed);
5355
Albert Lee563a6e12005-08-12 14:17:50 +08005356 if (bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 goto next_sg;
Tejun Heo140b5e592007-12-12 12:21:52 +09005358 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359}
5360
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005361/**
5362 * atapi_pio_bytes - Transfer data from/to the ATAPI device.
5363 * @qc: Command on going
5364 *
5365 * Transfer Transfer data from/to the ATAPI device.
5366 *
5367 * LOCKING:
5368 * Inherited from caller.
Albert Lee6ae4cfb2005-08-12 14:15:34 +08005369 */
5370
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371static void atapi_pio_bytes(struct ata_queued_cmd *qc)
5372{
5373 struct ata_port *ap = qc->ap;
5374 struct ata_device *dev = qc->dev;
Tejun Heo56c819d2008-02-19 11:35:37 +01005375 struct ata_eh_info *ehi = &dev->link->eh_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 unsigned int ireason, bc_lo, bc_hi, bytes;
5377 int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0;
5378
Albert Leeeec4c3f2006-05-18 17:51:10 +08005379 /* Abuse qc->result_tf for temp storage of intermediate TF
5380 * here to save some kernel stack usage.
5381 * For normal completion, qc->result_tf is not relevant. For
5382 * error, qc->result_tf is later overwritten by ata_qc_complete().
5383 * So, the correctness of qc->result_tf is not affected.
5384 */
5385 ap->ops->tf_read(ap, &qc->result_tf);
5386 ireason = qc->result_tf.nsect;
5387 bc_lo = qc->result_tf.lbam;
5388 bc_hi = qc->result_tf.lbah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 bytes = (bc_hi << 8) | bc_lo;
5390
5391 /* shall be cleared to zero, indicating xfer of data */
Albert Lee01063722007-12-05 16:43:02 +09005392 if (unlikely(ireason & (1 << 0)))
Tejun Heo56c819d2008-02-19 11:35:37 +01005393 goto atapi_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394
5395 /* make sure transfer direction matches expected */
5396 i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0;
Albert Lee01063722007-12-05 16:43:02 +09005397 if (unlikely(do_write != i_write))
Tejun Heo56c819d2008-02-19 11:35:37 +01005398 goto atapi_check;
Albert Lee01063722007-12-05 16:43:02 +09005399
5400 if (unlikely(!bytes))
Tejun Heo56c819d2008-02-19 11:35:37 +01005401 goto atapi_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402
Tejun Heo44877b42007-02-21 01:06:51 +09005403 VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes);
Albert Lee312f7da2005-09-27 17:38:03 +08005404
Tejun Heo56c819d2008-02-19 11:35:37 +01005405 if (unlikely(__atapi_pio_bytes(qc, bytes)))
Tejun Heo140b5e592007-12-12 12:21:52 +09005406 goto err_out;
Albert Lee4cc980b2007-08-15 03:19:45 -04005407 ata_altstatus(ap); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408
5409 return;
5410
Tejun Heo56c819d2008-02-19 11:35:37 +01005411 atapi_check:
5412 ata_ehi_push_desc(ehi, "ATAPI check failed (ireason=0x%x bytes=%u)",
5413 ireason, bytes);
5414 err_out:
Tejun Heo11a56d22006-01-23 13:09:36 +09005415 qc->err_mask |= AC_ERR_HSM;
Albert Lee14be71f2005-09-27 17:36:35 +08005416 ap->hsm_task_state = HSM_ST_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417}
5418
5419/**
Albert Leec234fb02006-03-25 17:58:38 +08005420 * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
5421 * @ap: the target ata_port
5422 * @qc: qc on going
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423 *
Albert Leec234fb02006-03-25 17:58:38 +08005424 * RETURNS:
5425 * 1 if ok in workqueue, 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426 */
Albert Leec234fb02006-03-25 17:58:38 +08005427
5428static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429{
Albert Leec234fb02006-03-25 17:58:38 +08005430 if (qc->tf.flags & ATA_TFLAG_POLLING)
5431 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
Albert Leec234fb02006-03-25 17:58:38 +08005433 if (ap->hsm_task_state == HSM_ST_FIRST) {
5434 if (qc->tf.protocol == ATA_PROT_PIO &&
5435 (qc->tf.flags & ATA_TFLAG_WRITE))
5436 return 1;
5437
Tejun Heo405e66b2007-11-27 19:28:53 +09005438 if (ata_is_atapi(qc->tf.protocol) &&
Albert Leec234fb02006-03-25 17:58:38 +08005439 !(qc->dev->flags & ATA_DFLAG_CDB_INTR))
5440 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 }
5442
Albert Leec234fb02006-03-25 17:58:38 +08005443 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444}
5445
Albert Leec234fb02006-03-25 17:58:38 +08005446/**
Tejun Heoc17ea202006-05-15 20:59:29 +09005447 * ata_hsm_qc_complete - finish a qc running on standard HSM
5448 * @qc: Command to complete
5449 * @in_wq: 1 if called from workqueue, 0 otherwise
5450 *
5451 * Finish @qc which is running on standard HSM.
5452 *
5453 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005454 * If @in_wq is zero, spin_lock_irqsave(host lock).
Tejun Heoc17ea202006-05-15 20:59:29 +09005455 * Otherwise, none on entry and grabs host lock.
5456 */
5457static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq)
5458{
5459 struct ata_port *ap = qc->ap;
5460 unsigned long flags;
5461
5462 if (ap->ops->error_handler) {
5463 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04005464 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09005465
Jeff Garzikcca39742006-08-24 03:19:22 -04005466 /* EH might have kicked in while host lock is
5467 * released.
Tejun Heoc17ea202006-05-15 20:59:29 +09005468 */
5469 qc = ata_qc_from_tag(ap, qc->tag);
5470 if (qc) {
5471 if (likely(!(qc->err_mask & AC_ERR_HSM))) {
Akira Iguchi836250062007-01-26 16:27:32 +09005472 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09005473 ata_qc_complete(qc);
5474 } else
5475 ata_port_freeze(ap);
5476 }
5477
Jeff Garzikba6a1302006-06-22 23:46:10 -04005478 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09005479 } else {
5480 if (likely(!(qc->err_mask & AC_ERR_HSM)))
5481 ata_qc_complete(qc);
5482 else
5483 ata_port_freeze(ap);
5484 }
5485 } else {
5486 if (in_wq) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04005487 spin_lock_irqsave(ap->lock, flags);
Akira Iguchi836250062007-01-26 16:27:32 +09005488 ap->ops->irq_on(ap);
Tejun Heoc17ea202006-05-15 20:59:29 +09005489 ata_qc_complete(qc);
Jeff Garzikba6a1302006-06-22 23:46:10 -04005490 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoc17ea202006-05-15 20:59:29 +09005491 } else
5492 ata_qc_complete(qc);
5493 }
5494}
5495
5496/**
Albert Leebb5cb292006-03-25 17:48:02 +08005497 * ata_hsm_move - move the HSM to the next state.
5498 * @ap: the target ata_port
5499 * @qc: qc on going
5500 * @status: current device status
5501 * @in_wq: 1 if called from workqueue, 0 otherwise
5502 *
5503 * RETURNS:
5504 * 1 when poll next status needed, 0 otherwise.
5505 */
Tejun Heo9a1004d2006-05-31 18:27:52 +09005506int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
5507 u8 status, int in_wq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508{
Albert Leebb5cb292006-03-25 17:48:02 +08005509 unsigned long flags = 0;
5510 int poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
Albert Lee6912ccd2006-03-25 17:45:49 +08005512 WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0);
Albert Lee0565c262006-02-13 18:55:25 +08005513
Albert Leebb5cb292006-03-25 17:48:02 +08005514 /* Make sure ata_qc_issue_prot() does not throw things
5515 * like DMA polling into the workqueue. Notice that
5516 * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
Albert Lee1c848982005-12-05 15:40:15 +08005517 */
Albert Leec234fb02006-03-25 17:58:38 +08005518 WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
Albert Lee1c848982005-12-05 15:40:15 +08005519
Albert Leee2cec772006-03-25 17:43:49 +08005520fsm_start:
Albert Lee999bb6f2006-03-25 18:07:48 +08005521 DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005522 ap->print_id, qc->tf.protocol, ap->hsm_task_state, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523
Albert Leee2cec772006-03-25 17:43:49 +08005524 switch (ap->hsm_task_state) {
5525 case HSM_ST_FIRST:
Albert Leebb5cb292006-03-25 17:48:02 +08005526 /* Send first data block or PACKET CDB */
5527
5528 /* If polling, we will stay in the work queue after
5529 * sending the data. Otherwise, interrupt handler
5530 * takes over after sending the data.
5531 */
5532 poll_next = (qc->tf.flags & ATA_TFLAG_POLLING);
5533
Albert Leee2cec772006-03-25 17:43:49 +08005534 /* check device status */
Albert Lee3655d1d2006-05-19 11:43:04 +08005535 if (unlikely((status & ATA_DRQ) == 0)) {
5536 /* handle BSY=0, DRQ=0 as error */
5537 if (likely(status & (ATA_ERR | ATA_DF)))
5538 /* device stops HSM for abort/error */
5539 qc->err_mask |= AC_ERR_DEV;
5540 else
5541 /* HSM violation. Let EH handle this */
5542 qc->err_mask |= AC_ERR_HSM;
5543
Albert Leee2cec772006-03-25 17:43:49 +08005544 ap->hsm_task_state = HSM_ST_ERR;
5545 goto fsm_start;
5546 }
5547
Albert Lee71601952006-03-25 18:11:12 +08005548 /* Device should not ask for data transfer (DRQ=1)
5549 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005550 * We ignore DRQ here and stop the HSM by
5551 * changing hsm_task_state to HSM_ST_ERR and
5552 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005553 */
5554 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee2d3b8ee2007-11-15 10:35:46 +09005555 /* Some ATAPI tape drives forget to clear the ERR bit
5556 * when doing the next command (mostly request sense).
5557 * We ignore ERR here to workaround and proceed sending
5558 * the CDB.
5559 */
5560 if (!(qc->dev->horkage & ATA_HORKAGE_STUCK_ERR)) {
5561 ata_port_printk(ap, KERN_WARNING,
5562 "DRQ=1 with device error, "
5563 "dev_stat 0x%X\n", status);
5564 qc->err_mask |= AC_ERR_HSM;
5565 ap->hsm_task_state = HSM_ST_ERR;
5566 goto fsm_start;
5567 }
Albert Lee71601952006-03-25 18:11:12 +08005568 }
5569
Albert Leebb5cb292006-03-25 17:48:02 +08005570 /* Send the CDB (atapi) or the first data block (ata pio out).
5571 * During the state transition, interrupt handler shouldn't
5572 * be invoked before the data transfer is complete and
5573 * hsm_task_state is changed. Hence, the following locking.
5574 */
5575 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005576 spin_lock_irqsave(ap->lock, flags);
Albert Leee2cec772006-03-25 17:43:49 +08005577
Albert Leebb5cb292006-03-25 17:48:02 +08005578 if (qc->tf.protocol == ATA_PROT_PIO) {
5579 /* PIO data out protocol.
5580 * send first data block.
5581 */
5582
5583 /* ata_pio_sectors() might change the state
5584 * to HSM_ST_LAST. so, the state is changed here
5585 * before ata_pio_sectors().
5586 */
5587 ap->hsm_task_state = HSM_ST;
5588 ata_pio_sectors(qc);
Albert Leebb5cb292006-03-25 17:48:02 +08005589 } else
5590 /* send CDB */
5591 atapi_send_cdb(ap, qc);
5592
5593 if (in_wq)
Jeff Garzikba6a1302006-06-22 23:46:10 -04005594 spin_unlock_irqrestore(ap->lock, flags);
Albert Leebb5cb292006-03-25 17:48:02 +08005595
5596 /* if polling, ata_pio_task() handles the rest.
5597 * otherwise, interrupt handler takes over from here.
5598 */
Albert Leee2cec772006-03-25 17:43:49 +08005599 break;
5600
5601 case HSM_ST:
5602 /* complete command or read/write the data register */
Tejun Heo0dc36882007-12-18 16:34:43 -05005603 if (qc->tf.protocol == ATAPI_PROT_PIO) {
Albert Leee2cec772006-03-25 17:43:49 +08005604 /* ATAPI PIO protocol */
5605 if ((status & ATA_DRQ) == 0) {
Albert Lee3655d1d2006-05-19 11:43:04 +08005606 /* No more data to transfer or device error.
5607 * Device error will be tagged in HSM_ST_LAST.
5608 */
Albert Leee2cec772006-03-25 17:43:49 +08005609 ap->hsm_task_state = HSM_ST_LAST;
5610 goto fsm_start;
5611 }
5612
Albert Lee71601952006-03-25 18:11:12 +08005613 /* Device should not ask for data transfer (DRQ=1)
5614 * when it finds something wrong.
Albert Leeeee6c322006-04-01 17:38:43 +08005615 * We ignore DRQ here and stop the HSM by
5616 * changing hsm_task_state to HSM_ST_ERR and
5617 * let the EH abort the command or reset the device.
Albert Lee71601952006-03-25 18:11:12 +08005618 */
5619 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Tejun Heo44877b42007-02-21 01:06:51 +09005620 ata_port_printk(ap, KERN_WARNING, "DRQ=1 with "
5621 "device error, dev_stat 0x%X\n",
5622 status);
Albert Lee3655d1d2006-05-19 11:43:04 +08005623 qc->err_mask |= AC_ERR_HSM;
Albert Leeeee6c322006-04-01 17:38:43 +08005624 ap->hsm_task_state = HSM_ST_ERR;
5625 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005626 }
5627
Albert Leee2cec772006-03-25 17:43:49 +08005628 atapi_pio_bytes(qc);
5629
5630 if (unlikely(ap->hsm_task_state == HSM_ST_ERR))
5631 /* bad ireason reported by device */
5632 goto fsm_start;
5633
5634 } else {
5635 /* ATA PIO protocol */
5636 if (unlikely((status & ATA_DRQ) == 0)) {
5637 /* handle BSY=0, DRQ=0 as error */
Albert Lee3655d1d2006-05-19 11:43:04 +08005638 if (likely(status & (ATA_ERR | ATA_DF)))
5639 /* device stops HSM for abort/error */
5640 qc->err_mask |= AC_ERR_DEV;
5641 else
Tejun Heo55a8e2c2006-11-10 18:08:10 +09005642 /* HSM violation. Let EH handle this.
5643 * Phantom devices also trigger this
5644 * condition. Mark hint.
5645 */
5646 qc->err_mask |= AC_ERR_HSM |
5647 AC_ERR_NODEV_HINT;
Albert Lee3655d1d2006-05-19 11:43:04 +08005648
Albert Leee2cec772006-03-25 17:43:49 +08005649 ap->hsm_task_state = HSM_ST_ERR;
5650 goto fsm_start;
5651 }
5652
Albert Leeeee6c322006-04-01 17:38:43 +08005653 /* For PIO reads, some devices may ask for
5654 * data transfer (DRQ=1) alone with ERR=1.
5655 * We respect DRQ here and transfer one
5656 * block of junk data before changing the
5657 * hsm_task_state to HSM_ST_ERR.
5658 *
5659 * For PIO writes, ERR=1 DRQ=1 doesn't make
5660 * sense since the data block has been
5661 * transferred to the device.
Albert Lee71601952006-03-25 18:11:12 +08005662 */
5663 if (unlikely(status & (ATA_ERR | ATA_DF))) {
Albert Lee71601952006-03-25 18:11:12 +08005664 /* data might be corrputed */
5665 qc->err_mask |= AC_ERR_DEV;
Albert Leeeee6c322006-04-01 17:38:43 +08005666
5667 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
5668 ata_pio_sectors(qc);
Albert Leeeee6c322006-04-01 17:38:43 +08005669 status = ata_wait_idle(ap);
5670 }
5671
Albert Lee3655d1d2006-05-19 11:43:04 +08005672 if (status & (ATA_BUSY | ATA_DRQ))
5673 qc->err_mask |= AC_ERR_HSM;
5674
Albert Leeeee6c322006-04-01 17:38:43 +08005675 /* ata_pio_sectors() might change the
5676 * state to HSM_ST_LAST. so, the state
5677 * is changed after ata_pio_sectors().
5678 */
5679 ap->hsm_task_state = HSM_ST_ERR;
5680 goto fsm_start;
Albert Lee71601952006-03-25 18:11:12 +08005681 }
5682
Albert Leee2cec772006-03-25 17:43:49 +08005683 ata_pio_sectors(qc);
5684
5685 if (ap->hsm_task_state == HSM_ST_LAST &&
5686 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
5687 /* all data read */
Albert Lee52a32202006-03-25 18:18:15 +08005688 status = ata_wait_idle(ap);
Albert Leee2cec772006-03-25 17:43:49 +08005689 goto fsm_start;
5690 }
5691 }
5692
Albert Leebb5cb292006-03-25 17:48:02 +08005693 poll_next = 1;
Albert Leee2cec772006-03-25 17:43:49 +08005694 break;
5695
5696 case HSM_ST_LAST:
Albert Lee6912ccd2006-03-25 17:45:49 +08005697 if (unlikely(!ata_ok(status))) {
5698 qc->err_mask |= __ac_err_mask(status);
Albert Leee2cec772006-03-25 17:43:49 +08005699 ap->hsm_task_state = HSM_ST_ERR;
5700 goto fsm_start;
5701 }
5702
5703 /* no more data to transfer */
Albert Lee4332a772006-04-03 17:43:24 +08005704 DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09005705 ap->print_id, qc->dev->devno, status);
Albert Leee2cec772006-03-25 17:43:49 +08005706
Albert Lee6912ccd2006-03-25 17:45:49 +08005707 WARN_ON(qc->err_mask);
5708
Albert Leee2cec772006-03-25 17:43:49 +08005709 ap->hsm_task_state = HSM_ST_IDLE;
5710
5711 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005712 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005713
5714 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005715 break;
5716
5717 case HSM_ST_ERR:
Albert Leee2cec772006-03-25 17:43:49 +08005718 /* make sure qc->err_mask is available to
5719 * know what's wrong and recover
5720 */
5721 WARN_ON(qc->err_mask == 0);
5722
5723 ap->hsm_task_state = HSM_ST_IDLE;
Albert Leebb5cb292006-03-25 17:48:02 +08005724
Albert Lee999bb6f2006-03-25 18:07:48 +08005725 /* complete taskfile transaction */
Tejun Heoc17ea202006-05-15 20:59:29 +09005726 ata_hsm_qc_complete(qc, in_wq);
Albert Leebb5cb292006-03-25 17:48:02 +08005727
5728 poll_next = 0;
Albert Leee2cec772006-03-25 17:43:49 +08005729 break;
5730 default:
Albert Leebb5cb292006-03-25 17:48:02 +08005731 poll_next = 0;
Albert Lee6912ccd2006-03-25 17:45:49 +08005732 BUG();
Albert Leee2cec772006-03-25 17:43:49 +08005733 }
5734
Albert Leebb5cb292006-03-25 17:48:02 +08005735 return poll_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736}
5737
David Howells65f27f32006-11-22 14:55:48 +00005738static void ata_pio_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739{
David Howells65f27f32006-11-22 14:55:48 +00005740 struct ata_port *ap =
5741 container_of(work, struct ata_port, port_task.work);
5742 struct ata_queued_cmd *qc = ap->port_task_data;
Albert Leea1af3732006-03-25 17:50:15 +08005743 u8 status;
5744 int poll_next;
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005745
5746fsm_start:
Albert Leea1af3732006-03-25 17:50:15 +08005747 WARN_ON(ap->hsm_task_state == HSM_ST_IDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748
Albert Leea1af3732006-03-25 17:50:15 +08005749 /*
5750 * This is purely heuristic. This is a fast path.
5751 * Sometimes when we enter, BSY will be cleared in
5752 * a chk-status or two. If not, the drive is probably seeking
5753 * or something. Snooze for a couple msecs, then
5754 * chk-status again. If still busy, queue delayed work.
5755 */
5756 status = ata_busy_wait(ap, ATA_BUSY, 5);
5757 if (status & ATA_BUSY) {
5758 msleep(2);
5759 status = ata_busy_wait(ap, ATA_BUSY, 10);
5760 if (status & ATA_BUSY) {
Jeff Garzik442eacc2007-12-19 04:25:10 -05005761 ata_pio_queue_task(ap, qc, ATA_SHORT_PAUSE);
Albert Leea1af3732006-03-25 17:50:15 +08005762 return;
5763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764 }
5765
Albert Leea1af3732006-03-25 17:50:15 +08005766 /* move the HSM */
5767 poll_next = ata_hsm_move(ap, qc, status, 1);
5768
5769 /* another command or interrupt handler
5770 * may be running at this point.
5771 */
5772 if (poll_next)
Jeff Garzik7fb6ec22005-09-16 06:01:48 -04005773 goto fsm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774}
5775
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 * ata_qc_new - Request an available ATA command, for queueing
5778 * @ap: Port associated with device @dev
5779 * @dev: Device from whom we request an available command structure
5780 *
5781 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005782 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783 */
5784
5785static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
5786{
5787 struct ata_queued_cmd *qc = NULL;
5788 unsigned int i;
5789
Tejun Heoe3180492006-05-15 20:58:09 +09005790 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09005791 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09005792 return NULL;
5793
Tejun Heo2ab7db12006-05-15 20:58:02 +09005794 /* the last tag is reserved for internal command. */
5795 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09005796 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09005797 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798 break;
5799 }
5800
5801 if (qc)
5802 qc->tag = i;
5803
5804 return qc;
5805}
5806
5807/**
5808 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809 * @dev: Device from whom we request an available command structure
5810 *
5811 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04005812 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 */
5814
Tejun Heo3373efd2006-05-15 20:57:53 +09005815struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005817 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818 struct ata_queued_cmd *qc;
5819
5820 qc = ata_qc_new(ap);
5821 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 qc->scsicmd = NULL;
5823 qc->ap = ap;
5824 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05005826 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827 }
5828
5829 return qc;
5830}
5831
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832/**
5833 * ata_qc_free - free unused ata_queued_cmd
5834 * @qc: Command to complete
5835 *
5836 * Designed to free unused ata_queued_cmd object
5837 * in case something prevents using it.
5838 *
5839 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005840 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841 */
5842void ata_qc_free(struct ata_queued_cmd *qc)
5843{
Tejun Heo4ba946e2006-01-23 13:09:36 +09005844 struct ata_port *ap = qc->ap;
5845 unsigned int tag;
5846
Tejun Heoa46314742006-02-11 19:11:13 +09005847 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
Tejun Heo4ba946e2006-01-23 13:09:36 +09005849 qc->flags = 0;
5850 tag = qc->tag;
5851 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09005852 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09005853 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09005854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855}
5856
Tejun Heo76014422006-02-11 15:13:49 +09005857void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858{
Tejun Heodedaf2b2006-05-15 21:03:43 +09005859 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005860 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005861
Tejun Heoa46314742006-02-11 19:11:13 +09005862 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
5863 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864
5865 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
5866 ata_sg_clean(qc);
5867
Tejun Heo7401abf2006-05-15 20:57:32 +09005868 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09005869 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005870 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09005871 if (!link->sactive)
5872 ap->nr_active_links--;
5873 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005874 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09005875 ap->nr_active_links--;
5876 }
5877
5878 /* clear exclusive status */
5879 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
5880 ap->excl_link == link))
5881 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09005882
Albert Lee3f3791d2005-08-16 14:25:38 +08005883 /* atapi: mark qc as inactive to prevent the interrupt handler
5884 * from completing the command twice later, before the error handler
5885 * is called. (when rc != 0 and atapi request sense is needed)
5886 */
5887 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005888 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08005889
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09005891 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892}
5893
Tejun Heo39599a52006-11-14 22:37:35 +09005894static void fill_result_tf(struct ata_queued_cmd *qc)
5895{
5896 struct ata_port *ap = qc->ap;
5897
Tejun Heo39599a52006-11-14 22:37:35 +09005898 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04005899 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09005900}
5901
Tejun Heo00115e02007-11-27 19:28:58 +09005902static void ata_verify_xfer(struct ata_queued_cmd *qc)
5903{
5904 struct ata_device *dev = qc->dev;
5905
5906 if (ata_tag_internal(qc->tag))
5907 return;
5908
5909 if (ata_is_nodata(qc->tf.protocol))
5910 return;
5911
5912 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
5913 return;
5914
5915 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
5916}
5917
Tejun Heof686bcb2006-05-15 20:58:05 +09005918/**
5919 * ata_qc_complete - Complete an active ATA command
5920 * @qc: Command to complete
5921 * @err_mask: ATA Status register contents
5922 *
5923 * Indicate to the mid and upper layers that an ATA
5924 * command has completed, with either an ok or not-ok status.
5925 *
5926 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005927 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09005928 */
5929void ata_qc_complete(struct ata_queued_cmd *qc)
5930{
5931 struct ata_port *ap = qc->ap;
5932
5933 /* XXX: New EH and old EH use different mechanisms to
5934 * synchronize EH with regular execution path.
5935 *
5936 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
5937 * Normal execution path is responsible for not accessing a
5938 * failed qc. libata core enforces the rule by returning NULL
5939 * from ata_qc_from_tag() for failed qcs.
5940 *
5941 * Old EH depends on ata_qc_complete() nullifying completion
5942 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
5943 * not synchronize with interrupt handler. Only PIO task is
5944 * taken care of.
5945 */
5946 if (ap->ops->error_handler) {
Tejun Heo4dbfa392007-10-25 18:22:44 +09005947 struct ata_device *dev = qc->dev;
5948 struct ata_eh_info *ehi = &dev->link->eh_info;
5949
Tejun Heob51e9e52006-06-29 01:29:30 +09005950 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09005951
5952 if (unlikely(qc->err_mask))
5953 qc->flags |= ATA_QCFLAG_FAILED;
5954
5955 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
5956 if (!ata_tag_internal(qc->tag)) {
5957 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09005958 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005959 ata_qc_schedule_eh(qc);
5960 return;
5961 }
5962 }
5963
5964 /* read result TF if requested */
5965 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005966 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005967
Tejun Heo4dbfa392007-10-25 18:22:44 +09005968 /* Some commands need post-processing after successful
5969 * completion.
5970 */
5971 switch (qc->tf.command) {
5972 case ATA_CMD_SET_FEATURES:
5973 if (qc->tf.feature != SETFEATURES_WC_ON &&
5974 qc->tf.feature != SETFEATURES_WC_OFF)
5975 break;
5976 /* fall through */
5977 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
5978 case ATA_CMD_SET_MULTI: /* multi_count changed */
5979 /* revalidate device */
5980 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
5981 ata_port_schedule_eh(ap);
5982 break;
Tejun Heo054a5fb2007-10-25 18:30:36 +09005983
5984 case ATA_CMD_SLEEP:
5985 dev->flags |= ATA_DFLAG_SLEEPING;
5986 break;
Tejun Heo4dbfa392007-10-25 18:22:44 +09005987 }
5988
Tejun Heo00115e02007-11-27 19:28:58 +09005989 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
5990 ata_verify_xfer(qc);
5991
Tejun Heof686bcb2006-05-15 20:58:05 +09005992 __ata_qc_complete(qc);
5993 } else {
5994 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5995 return;
5996
5997 /* read result TF if failed or requested */
5998 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005999 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09006000
6001 __ata_qc_complete(qc);
6002 }
6003}
6004
Tejun Heodedaf2b2006-05-15 21:03:43 +09006005/**
6006 * ata_qc_complete_multiple - Complete multiple qcs successfully
6007 * @ap: port in question
6008 * @qc_active: new qc_active mask
6009 * @finish_qc: LLDD callback invoked before completing a qc
6010 *
6011 * Complete in-flight commands. This functions is meant to be
6012 * called from low-level driver's interrupt routine to complete
6013 * requests normally. ap->qc_active and @qc_active is compared
6014 * and commands are completed accordingly.
6015 *
6016 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04006017 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09006018 *
6019 * RETURNS:
6020 * Number of completed commands on success, -errno otherwise.
6021 */
6022int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
6023 void (*finish_qc)(struct ata_queued_cmd *))
6024{
6025 int nr_done = 0;
6026 u32 done_mask;
6027 int i;
6028
6029 done_mask = ap->qc_active ^ qc_active;
6030
6031 if (unlikely(done_mask & qc_active)) {
6032 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
6033 "(%08x->%08x)\n", ap->qc_active, qc_active);
6034 return -EINVAL;
6035 }
6036
6037 for (i = 0; i < ATA_MAX_QUEUE; i++) {
6038 struct ata_queued_cmd *qc;
6039
6040 if (!(done_mask & (1 << i)))
6041 continue;
6042
6043 if ((qc = ata_qc_from_tag(ap, i))) {
6044 if (finish_qc)
6045 finish_qc(qc);
6046 ata_qc_complete(qc);
6047 nr_done++;
6048 }
6049 }
6050
6051 return nr_done;
6052}
6053
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054/**
6055 * ata_qc_issue - issue taskfile to device
6056 * @qc: command to issue to device
6057 *
6058 * Prepare an ATA command to submission to device.
6059 * This includes mapping the data into a DMA-able
6060 * area, filling in the S/G table, and finally
6061 * writing the taskfile to hardware, starting the command.
6062 *
6063 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04006064 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09006066void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067{
6068 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006069 struct ata_link *link = qc->dev->link;
Tejun Heo405e66b2007-11-27 19:28:53 +09006070 u8 prot = qc->tf.protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071
Tejun Heodedaf2b2006-05-15 21:03:43 +09006072 /* Make sure only one non-NCQ command is outstanding. The
6073 * check is skipped for old EH because it reuses active qc to
6074 * request ATAPI sense.
6075 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006076 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09006077
Tejun Heo1973a022007-12-05 10:36:13 +09006078 if (ata_is_ncq(prot)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006079 WARN_ON(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09006080
6081 if (!link->sactive)
6082 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006083 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09006084 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006085 WARN_ON(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09006086
6087 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006088 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09006089 }
6090
Tejun Heoe4a70e72006-03-31 20:36:47 +09006091 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09006092 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09006093
Tejun Heof92a2632007-12-05 16:43:10 +09006094 /* We guarantee to LLDs that they will have at least one
6095 * non-zero sg if the command is a data command.
6096 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09006097 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
Tejun Heof92a2632007-12-05 16:43:10 +09006098
Tejun Heo405e66b2007-11-27 19:28:53 +09006099 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
Tejun Heof92a2632007-12-05 16:43:10 +09006100 (ap->flags & ATA_FLAG_PIO_DMA)))
Tejun Heo001102d2007-12-05 16:43:09 +09006101 if (ata_sg_setup(qc))
6102 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103
Tejun Heocf480622008-01-24 00:05:14 +09006104 /* if device is sleeping, schedule reset and abort the link */
Tejun Heo054a5fb2007-10-25 18:30:36 +09006105 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
Tejun Heocf480622008-01-24 00:05:14 +09006106 link->eh_info.action |= ATA_EH_RESET;
Tejun Heo054a5fb2007-10-25 18:30:36 +09006107 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
6108 ata_link_abort(link);
6109 return;
6110 }
6111
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112 ap->ops->qc_prep(qc);
6113
Tejun Heo8e0e6942006-03-31 20:41:11 +09006114 qc->err_mask |= ap->ops->qc_issue(qc);
6115 if (unlikely(qc->err_mask))
6116 goto err;
6117 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118
Tejun Heo8e436af2006-01-23 13:09:36 +09006119sg_err:
Tejun Heo8e0e6942006-03-31 20:41:11 +09006120 qc->err_mask |= AC_ERR_SYSTEM;
6121err:
6122 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123}
6124
6125/**
6126 * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner
6127 * @qc: command to issue to device
6128 *
6129 * Using various libata functions and hooks, this function
6130 * starts an ATA command. ATA commands are grouped into
6131 * classes called "protocols", and issuing each type of protocol
6132 * is slightly different.
6133 *
Edward Falk0baab862005-06-02 18:17:13 -04006134 * May be used as the qc_issue() entry in ata_port_operations.
6135 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04006137 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 *
6139 * RETURNS:
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09006140 * Zero on success, AC_ERR_* mask on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141 */
6142
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09006143unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144{
6145 struct ata_port *ap = qc->ap;
6146
Albert Leee50362e2005-09-27 17:39:50 +08006147 /* Use polling pio if the LLD doesn't handle
6148 * interrupt driven pio and atapi CDB interrupt.
6149 */
6150 if (ap->flags & ATA_FLAG_PIO_POLLING) {
6151 switch (qc->tf.protocol) {
6152 case ATA_PROT_PIO:
Albert Leee3472cb2006-12-07 11:37:58 +08006153 case ATA_PROT_NODATA:
Tejun Heo0dc36882007-12-18 16:34:43 -05006154 case ATAPI_PROT_PIO:
6155 case ATAPI_PROT_NODATA:
Albert Leee50362e2005-09-27 17:39:50 +08006156 qc->tf.flags |= ATA_TFLAG_POLLING;
6157 break;
Tejun Heo0dc36882007-12-18 16:34:43 -05006158 case ATAPI_PROT_DMA:
Albert Leee50362e2005-09-27 17:39:50 +08006159 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
Albert Lee3a778272006-06-22 13:00:25 +08006160 /* see ata_dma_blacklisted() */
Albert Leee50362e2005-09-27 17:39:50 +08006161 BUG();
6162 break;
6163 default:
6164 break;
6165 }
6166 }
6167
Albert Lee312f7da2005-09-27 17:38:03 +08006168 /* select the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169 ata_dev_select(ap, qc->dev->devno, 1, 0);
6170
Albert Lee312f7da2005-09-27 17:38:03 +08006171 /* start the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172 switch (qc->tf.protocol) {
6173 case ATA_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08006174 if (qc->tf.flags & ATA_TFLAG_POLLING)
6175 ata_qc_set_polling(qc);
6176
Jeff Garzike5338252005-10-30 21:37:17 -05006177 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08006178 ap->hsm_task_state = HSM_ST_LAST;
6179
6180 if (qc->tf.flags & ATA_TFLAG_POLLING)
Jeff Garzik442eacc2007-12-19 04:25:10 -05006181 ata_pio_queue_task(ap, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08006182
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183 break;
6184
6185 case ATA_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05006186 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08006187
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
6189 ap->ops->bmdma_setup(qc); /* set up bmdma */
6190 ap->ops->bmdma_start(qc); /* initiate bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08006191 ap->hsm_task_state = HSM_ST_LAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192 break;
6193
Albert Lee312f7da2005-09-27 17:38:03 +08006194 case ATA_PROT_PIO:
6195 if (qc->tf.flags & ATA_TFLAG_POLLING)
6196 ata_qc_set_polling(qc);
6197
Jeff Garzike5338252005-10-30 21:37:17 -05006198 ata_tf_to_host(ap, &qc->tf);
Albert Lee312f7da2005-09-27 17:38:03 +08006199
Albert Lee54f00382005-09-30 19:14:19 +08006200 if (qc->tf.flags & ATA_TFLAG_WRITE) {
6201 /* PIO data out protocol */
6202 ap->hsm_task_state = HSM_ST_FIRST;
Jeff Garzik442eacc2007-12-19 04:25:10 -05006203 ata_pio_queue_task(ap, qc, 0);
Albert Lee54f00382005-09-30 19:14:19 +08006204
6205 /* always send first data block using
Albert Leee27486d2005-11-01 19:24:49 +08006206 * the ata_pio_task() codepath.
Albert Lee54f00382005-09-30 19:14:19 +08006207 */
Albert Lee312f7da2005-09-27 17:38:03 +08006208 } else {
Albert Lee54f00382005-09-30 19:14:19 +08006209 /* PIO data in protocol */
6210 ap->hsm_task_state = HSM_ST;
Albert Lee312f7da2005-09-27 17:38:03 +08006211
Albert Lee54f00382005-09-30 19:14:19 +08006212 if (qc->tf.flags & ATA_TFLAG_POLLING)
Jeff Garzik442eacc2007-12-19 04:25:10 -05006213 ata_pio_queue_task(ap, qc, 0);
Albert Lee312f7da2005-09-27 17:38:03 +08006214
Albert Lee54f00382005-09-30 19:14:19 +08006215 /* if polling, ata_pio_task() handles the rest.
6216 * otherwise, interrupt handler takes over from here.
6217 */
Albert Lee312f7da2005-09-27 17:38:03 +08006218 }
6219
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220 break;
6221
Tejun Heo0dc36882007-12-18 16:34:43 -05006222 case ATAPI_PROT_PIO:
6223 case ATAPI_PROT_NODATA:
Albert Lee312f7da2005-09-27 17:38:03 +08006224 if (qc->tf.flags & ATA_TFLAG_POLLING)
6225 ata_qc_set_polling(qc);
6226
Jeff Garzike5338252005-10-30 21:37:17 -05006227 ata_tf_to_host(ap, &qc->tf);
Jeff Garzikf6ef65e2006-01-27 02:45:00 -05006228
Albert Lee312f7da2005-09-27 17:38:03 +08006229 ap->hsm_task_state = HSM_ST_FIRST;
6230
6231 /* send cdb by polling if no cdb interrupt */
6232 if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) ||
6233 (qc->tf.flags & ATA_TFLAG_POLLING))
Jeff Garzik442eacc2007-12-19 04:25:10 -05006234 ata_pio_queue_task(ap, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235 break;
6236
Tejun Heo0dc36882007-12-18 16:34:43 -05006237 case ATAPI_PROT_DMA:
Jeff Garzik587005d2006-02-11 18:17:32 -05006238 WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING);
Albert Lee312f7da2005-09-27 17:38:03 +08006239
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240 ap->ops->tf_load(ap, &qc->tf); /* load tf registers */
6241 ap->ops->bmdma_setup(qc); /* set up bmdma */
Albert Lee312f7da2005-09-27 17:38:03 +08006242 ap->hsm_task_state = HSM_ST_FIRST;
6243
6244 /* send cdb by polling if no cdb interrupt */
6245 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Jeff Garzik442eacc2007-12-19 04:25:10 -05006246 ata_pio_queue_task(ap, qc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247 break;
6248
6249 default:
6250 WARN_ON(1);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09006251 return AC_ERR_SYSTEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252 }
6253
6254 return 0;
6255}
6256
6257/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258 * ata_host_intr - Handle host interrupt for given (port, task)
6259 * @ap: Port on which interrupt arrived (possibly...)
6260 * @qc: Taskfile currently active in engine
6261 *
6262 * Handle host interrupt for given queued command. Currently,
6263 * only DMA interrupts are handled. All other commands are
6264 * handled via polling with interrupts disabled (nIEN bit).
6265 *
6266 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04006267 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268 *
6269 * RETURNS:
6270 * One if interrupt was handled, zero if not (shared irq).
6271 */
6272
Jeff Garzik2dcb4072007-10-19 06:42:56 -04006273inline unsigned int ata_host_intr(struct ata_port *ap,
6274 struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006276 struct ata_eh_info *ehi = &ap->link.eh_info;
Albert Lee312f7da2005-09-27 17:38:03 +08006277 u8 status, host_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278
Albert Lee312f7da2005-09-27 17:38:03 +08006279 VPRINTK("ata%u: protocol %d task_state %d\n",
Tejun Heo44877b42007-02-21 01:06:51 +09006280 ap->print_id, qc->tf.protocol, ap->hsm_task_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281
Albert Lee312f7da2005-09-27 17:38:03 +08006282 /* Check whether we are expecting interrupt in this state */
6283 switch (ap->hsm_task_state) {
6284 case HSM_ST_FIRST:
Albert Lee6912ccd2006-03-25 17:45:49 +08006285 /* Some pre-ATAPI-4 devices assert INTRQ
6286 * at this state when ready to receive CDB.
6287 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
Albert Lee312f7da2005-09-27 17:38:03 +08006289 /* Check the ATA_DFLAG_CDB_INTR flag is enough here.
Tejun Heo405e66b2007-11-27 19:28:53 +09006290 * The flag was turned on only for atapi devices. No
6291 * need to check ata_is_atapi(qc->tf.protocol) again.
Albert Lee312f7da2005-09-27 17:38:03 +08006292 */
6293 if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295 break;
Albert Lee312f7da2005-09-27 17:38:03 +08006296 case HSM_ST_LAST:
6297 if (qc->tf.protocol == ATA_PROT_DMA ||
Tejun Heo0dc36882007-12-18 16:34:43 -05006298 qc->tf.protocol == ATAPI_PROT_DMA) {
Albert Lee312f7da2005-09-27 17:38:03 +08006299 /* check status of DMA engine */
6300 host_stat = ap->ops->bmdma_status(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09006301 VPRINTK("ata%u: host_stat 0x%X\n",
6302 ap->print_id, host_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303
Albert Lee312f7da2005-09-27 17:38:03 +08006304 /* if it's not our irq... */
6305 if (!(host_stat & ATA_DMA_INTR))
6306 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
Albert Lee312f7da2005-09-27 17:38:03 +08006308 /* before we do anything else, clear DMA-Start bit */
6309 ap->ops->bmdma_stop(qc);
Albert Leea4f16612005-12-26 16:40:53 +08006310
6311 if (unlikely(host_stat & ATA_DMA_ERR)) {
6312 /* error when transfering data to/from memory */
6313 qc->err_mask |= AC_ERR_HOST_BUS;
6314 ap->hsm_task_state = HSM_ST_ERR;
6315 }
Albert Lee312f7da2005-09-27 17:38:03 +08006316 }
6317 break;
6318 case HSM_ST:
6319 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320 default:
6321 goto idle_irq;
6322 }
6323
Albert Lee312f7da2005-09-27 17:38:03 +08006324 /* check altstatus */
6325 status = ata_altstatus(ap);
6326 if (status & ATA_BUSY)
6327 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328
Albert Lee312f7da2005-09-27 17:38:03 +08006329 /* check main status, clearing INTRQ */
6330 status = ata_chk_status(ap);
6331 if (unlikely(status & ATA_BUSY))
6332 goto idle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333
Albert Lee312f7da2005-09-27 17:38:03 +08006334 /* ack bmdma irq events */
6335 ap->ops->irq_clear(ap);
6336
Albert Leebb5cb292006-03-25 17:48:02 +08006337 ata_hsm_move(ap, qc, status, 0);
Tejun Heoea547632006-11-17 12:06:21 +09006338
6339 if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA ||
Tejun Heo0dc36882007-12-18 16:34:43 -05006340 qc->tf.protocol == ATAPI_PROT_DMA))
Tejun Heoea547632006-11-17 12:06:21 +09006341 ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat);
6342
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343 return 1; /* irq handled */
6344
6345idle_irq:
6346 ap->stats.idle_irq++;
6347
6348#ifdef ATA_IRQ_TRAP
6349 if ((ap->stats.idle_irq % 1000) == 0) {
Jeff Garzik6d32d302007-08-15 05:38:46 -04006350 ata_chk_status(ap);
6351 ap->ops->irq_clear(ap);
Tejun Heof15a1da2006-05-15 20:57:56 +09006352 ata_port_printk(ap, KERN_WARNING, "irq trap\n");
Alan Cox23cfce82006-03-21 16:06:53 +00006353 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354 }
6355#endif
6356 return 0; /* irq not handled */
6357}
6358
6359/**
6360 * ata_interrupt - Default ATA host interrupt handler
Jeff Garzik0cba6322005-05-30 19:49:12 -04006361 * @irq: irq line (unused)
Jeff Garzikcca39742006-08-24 03:19:22 -04006362 * @dev_instance: pointer to our ata_host information structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04006364 * Default interrupt handler for PCI IDE devices. Calls
6365 * ata_host_intr() for each port that is not disabled.
6366 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04006368 * Obtains host lock during operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369 *
6370 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04006371 * IRQ_NONE or IRQ_HANDLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372 */
6373
Jeff Garzik2dcb4072007-10-19 06:42:56 -04006374irqreturn_t ata_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375{
Jeff Garzikcca39742006-08-24 03:19:22 -04006376 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377 unsigned int i;
6378 unsigned int handled = 0;
6379 unsigned long flags;
6380
6381 /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */
Jeff Garzikcca39742006-08-24 03:19:22 -04006382 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383
Jeff Garzikcca39742006-08-24 03:19:22 -04006384 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385 struct ata_port *ap;
6386
Jeff Garzikcca39742006-08-24 03:19:22 -04006387 ap = host->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +09006388 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -04006389 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390 struct ata_queued_cmd *qc;
6391
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006392 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Albert Lee312f7da2005-09-27 17:38:03 +08006393 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) &&
Albert Lee21b1ed72005-04-29 17:34:59 +08006394 (qc->flags & ATA_QCFLAG_ACTIVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395 handled |= ata_host_intr(ap, qc);
6396 }
6397 }
6398
Jeff Garzikcca39742006-08-24 03:19:22 -04006399 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400
6401 return IRQ_RETVAL(handled);
6402}
6403
Tejun Heo34bf2172006-05-15 20:57:46 +09006404/**
6405 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09006406 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09006407 *
Tejun Heo936fd732007-08-06 18:36:23 +09006408 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09006409 *
6410 * LOCKING:
6411 * None.
6412 *
6413 * RETURNS:
6414 * 1 if SCRs are accessible, 0 otherwise.
6415 */
Tejun Heo936fd732007-08-06 18:36:23 +09006416int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09006417{
Tejun Heo936fd732007-08-06 18:36:23 +09006418 struct ata_port *ap = link->ap;
6419
Tejun Heoa16abc02007-05-21 18:33:47 +02006420 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09006421}
6422
6423/**
6424 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09006425 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09006426 * @reg: SCR to read
6427 * @val: Place to store read value
6428 *
Tejun Heo936fd732007-08-06 18:36:23 +09006429 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09006430 * guaranteed to succeed if @link is ap->link, the cable type of
6431 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09006432 *
6433 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09006434 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09006435 *
6436 * RETURNS:
6437 * 0 on success, negative errno on failure.
6438 */
Tejun Heo936fd732007-08-06 18:36:23 +09006439int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09006440{
Tejun Heo633273a32007-09-23 13:19:54 +09006441 if (ata_is_host_link(link)) {
6442 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09006443
Tejun Heo633273a32007-09-23 13:19:54 +09006444 if (sata_scr_valid(link))
6445 return ap->ops->scr_read(ap, reg, val);
6446 return -EOPNOTSUPP;
6447 }
6448
6449 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09006450}
6451
6452/**
6453 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09006454 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09006455 * @reg: SCR to write
6456 * @val: value to write
6457 *
Tejun Heo936fd732007-08-06 18:36:23 +09006458 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09006459 * guaranteed to succeed if @link is ap->link, the cable type of
6460 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09006461 *
6462 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09006463 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09006464 *
6465 * RETURNS:
6466 * 0 on success, negative errno on failure.
6467 */
Tejun Heo936fd732007-08-06 18:36:23 +09006468int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09006469{
Tejun Heo633273a32007-09-23 13:19:54 +09006470 if (ata_is_host_link(link)) {
6471 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09006472
Tejun Heo633273a32007-09-23 13:19:54 +09006473 if (sata_scr_valid(link))
6474 return ap->ops->scr_write(ap, reg, val);
6475 return -EOPNOTSUPP;
6476 }
6477
6478 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09006479}
6480
6481/**
6482 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09006483 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09006484 * @reg: SCR to write
6485 * @val: value to write
6486 *
6487 * This function is identical to sata_scr_write() except that this
6488 * function performs flush after writing to the register.
6489 *
6490 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09006491 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09006492 *
6493 * RETURNS:
6494 * 0 on success, negative errno on failure.
6495 */
Tejun Heo936fd732007-08-06 18:36:23 +09006496int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09006497{
Tejun Heo633273a32007-09-23 13:19:54 +09006498 if (ata_is_host_link(link)) {
6499 struct ata_port *ap = link->ap;
6500 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09006501
Tejun Heo633273a32007-09-23 13:19:54 +09006502 if (sata_scr_valid(link)) {
6503 rc = ap->ops->scr_write(ap, reg, val);
6504 if (rc == 0)
6505 rc = ap->ops->scr_read(ap, reg, &val);
6506 return rc;
6507 }
6508 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09006509 }
Tejun Heo633273a32007-09-23 13:19:54 +09006510
6511 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09006512}
6513
6514/**
Tejun Heo936fd732007-08-06 18:36:23 +09006515 * ata_link_online - test whether the given link is online
6516 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09006517 *
Tejun Heo936fd732007-08-06 18:36:23 +09006518 * Test whether @link is online. Note that this function returns
6519 * 0 if online status of @link cannot be obtained, so
6520 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09006521 *
6522 * LOCKING:
6523 * None.
6524 *
6525 * RETURNS:
6526 * 1 if the port online status is available and online.
6527 */
Tejun Heo936fd732007-08-06 18:36:23 +09006528int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09006529{
6530 u32 sstatus;
6531
Tejun Heo936fd732007-08-06 18:36:23 +09006532 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
6533 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09006534 return 1;
6535 return 0;
6536}
6537
6538/**
Tejun Heo936fd732007-08-06 18:36:23 +09006539 * ata_link_offline - test whether the given link is offline
6540 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09006541 *
Tejun Heo936fd732007-08-06 18:36:23 +09006542 * Test whether @link is offline. Note that this function
6543 * returns 0 if offline status of @link cannot be obtained, so
6544 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09006545 *
6546 * LOCKING:
6547 * None.
6548 *
6549 * RETURNS:
6550 * 1 if the port offline status is available and offline.
6551 */
Tejun Heo936fd732007-08-06 18:36:23 +09006552int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09006553{
6554 u32 sstatus;
6555
Tejun Heo936fd732007-08-06 18:36:23 +09006556 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
6557 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09006558 return 1;
6559 return 0;
6560}
Edward Falk0baab862005-06-02 18:17:13 -04006561
Tejun Heo77b08fb2006-06-24 20:30:19 +09006562int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01006563{
Tejun Heo977e6b92006-06-24 20:30:19 +09006564 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01006565 u8 cmd;
6566
6567 if (!ata_try_flush_cache(dev))
6568 return 0;
6569
Tejun Heo6fc49ad2006-11-11 20:10:45 +09006570 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01006571 cmd = ATA_CMD_FLUSH_EXT;
6572 else
6573 cmd = ATA_CMD_FLUSH;
6574
Alan Cox4f343372007-08-08 14:30:31 +01006575 /* This is wrong. On a failed flush we get back the LBA of the lost
6576 sector and we should (assuming it wasn't aborted as unknown) issue
Jeff Garzik2dcb4072007-10-19 06:42:56 -04006577 a further flush command to continue the writeback until it
Alan Cox4f343372007-08-08 14:30:31 +01006578 does not error */
Tejun Heo977e6b92006-06-24 20:30:19 +09006579 err_mask = ata_do_simple_cmd(dev, cmd);
6580 if (err_mask) {
6581 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
6582 return -EIO;
6583 }
6584
6585 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01006586}
6587
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006588#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006589static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
6590 unsigned int action, unsigned int ehi_flags,
6591 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09006592{
6593 unsigned long flags;
6594 int i, rc;
6595
Jeff Garzikcca39742006-08-24 03:19:22 -04006596 for (i = 0; i < host->n_ports; i++) {
6597 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09006598 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09006599
6600 /* Previous resume operation might still be in
6601 * progress. Wait for PM_PENDING to clear.
6602 */
6603 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
6604 ata_port_wait_eh(ap);
6605 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
6606 }
6607
6608 /* request PM ops to EH */
6609 spin_lock_irqsave(ap->lock, flags);
6610
6611 ap->pm_mesg = mesg;
6612 if (wait) {
6613 rc = 0;
6614 ap->pm_result = &rc;
6615 }
6616
6617 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09006618 __ata_port_for_each_link(link, ap) {
6619 link->eh_info.action |= action;
6620 link->eh_info.flags |= ehi_flags;
6621 }
Tejun Heo500530f2006-07-03 16:07:27 +09006622
6623 ata_port_schedule_eh(ap);
6624
6625 spin_unlock_irqrestore(ap->lock, flags);
6626
6627 /* wait and check result */
6628 if (wait) {
6629 ata_port_wait_eh(ap);
6630 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
6631 if (rc)
6632 return rc;
6633 }
6634 }
6635
6636 return 0;
6637}
6638
6639/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006640 * ata_host_suspend - suspend host
6641 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09006642 * @mesg: PM message
6643 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006644 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006645 * function requests EH to perform PM operations and waits for EH
6646 * to finish.
6647 *
6648 * LOCKING:
6649 * Kernel thread context (may sleep).
6650 *
6651 * RETURNS:
6652 * 0 on success, -errno on failure.
6653 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006654int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006655{
Tejun Heo9666f402007-05-04 21:27:47 +02006656 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006657
Kristen Carlson Accardica773292007-10-25 00:58:59 -04006658 /*
6659 * disable link pm on all ports before requesting
6660 * any pm activity
6661 */
6662 ata_lpm_enable(host);
6663
Jeff Garzikcca39742006-08-24 03:19:22 -04006664 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05006665 if (rc == 0)
6666 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09006667 return rc;
6668}
6669
6670/**
Jeff Garzikcca39742006-08-24 03:19:22 -04006671 * ata_host_resume - resume host
6672 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09006673 *
Jeff Garzikcca39742006-08-24 03:19:22 -04006674 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09006675 * function requests EH to perform PM operations and returns.
6676 * Note that all resume operations are performed parallely.
6677 *
6678 * LOCKING:
6679 * Kernel thread context (may sleep).
6680 */
Jeff Garzikcca39742006-08-24 03:19:22 -04006681void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09006682{
Tejun Heocf480622008-01-24 00:05:14 +09006683 ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET,
Jeff Garzikcca39742006-08-24 03:19:22 -04006684 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05006685 host->dev->power.power_state = PMSG_ON;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04006686
6687 /* reenable link pm */
6688 ata_lpm_disable(host);
Tejun Heo500530f2006-07-03 16:07:27 +09006689}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006690#endif
Tejun Heo500530f2006-07-03 16:07:27 +09006691
Randy Dunlapc893a3a2006-01-28 13:15:32 -05006692/**
6693 * ata_port_start - Set port up for dma.
6694 * @ap: Port to initialize
6695 *
6696 * Called just after data structures for each port are
6697 * initialized. Allocates space for PRD table.
6698 *
6699 * May be used as the port_start() entry in ata_port_operations.
6700 *
6701 * LOCKING:
6702 * Inherited from caller.
6703 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006704int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705{
Brian King2f1f6102006-03-23 17:30:15 -06006706 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707
Tejun Heof0d36ef2007-01-20 16:00:28 +09006708 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
6709 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710 if (!ap->prd)
6711 return -ENOMEM;
6712
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713 return 0;
6714}
6715
Edward Falk0baab862005-06-02 18:17:13 -04006716/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09006717 * ata_dev_init - Initialize an ata_device structure
6718 * @dev: Device structure to initialize
6719 *
6720 * Initialize @dev in preparation for probing.
6721 *
6722 * LOCKING:
6723 * Inherited from caller.
6724 */
6725void ata_dev_init(struct ata_device *dev)
6726{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006727 struct ata_link *link = dev->link;
6728 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09006729 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09006730
Tejun Heo5a04bf42006-05-31 18:27:38 +09006731 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09006732 link->sata_spd_limit = link->hw_sata_spd_limit;
6733 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09006734
Tejun Heo72fa4b72006-05-31 18:27:32 +09006735 /* High bits of dev->flags are used to record warm plug
6736 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04006737 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09006738 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006739 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006740 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09006741 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04006742 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09006743
6744 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
6745 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09006746 dev->pio_mask = UINT_MAX;
6747 dev->mwdma_mask = UINT_MAX;
6748 dev->udma_mask = UINT_MAX;
6749}
6750
6751/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09006752 * ata_link_init - Initialize an ata_link structure
6753 * @ap: ATA port link is attached to
6754 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09006755 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09006756 *
6757 * Initialize @link.
6758 *
6759 * LOCKING:
6760 * Kernel thread context (may sleep)
6761 */
Tejun Heofb7fd612007-09-23 13:14:12 +09006762void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09006763{
6764 int i;
6765
6766 /* clear everything except for devices */
6767 memset(link, 0, offsetof(struct ata_link, device[0]));
6768
6769 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09006770 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09006771 link->active_tag = ATA_TAG_POISON;
6772 link->hw_sata_spd_limit = UINT_MAX;
6773
6774 /* can't use iterator, ap isn't initialized yet */
6775 for (i = 0; i < ATA_MAX_DEVICES; i++) {
6776 struct ata_device *dev = &link->device[i];
6777
6778 dev->link = link;
6779 dev->devno = dev - link->device;
6780 ata_dev_init(dev);
6781 }
6782}
6783
6784/**
6785 * sata_link_init_spd - Initialize link->sata_spd_limit
6786 * @link: Link to configure sata_spd_limit for
6787 *
6788 * Initialize @link->[hw_]sata_spd_limit to the currently
6789 * configured value.
6790 *
6791 * LOCKING:
6792 * Kernel thread context (may sleep).
6793 *
6794 * RETURNS:
6795 * 0 on success, -errno on failure.
6796 */
Tejun Heofb7fd612007-09-23 13:14:12 +09006797int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09006798{
Tejun Heo33267322008-02-13 09:15:09 +09006799 u32 scontrol;
6800 u8 spd;
Tejun Heo4fb37a22007-08-06 18:36:23 +09006801 int rc;
6802
6803 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
6804 if (rc)
6805 return rc;
6806
6807 spd = (scontrol >> 4) & 0xf;
6808 if (spd)
6809 link->hw_sata_spd_limit &= (1 << spd) - 1;
6810
Tejun Heo33267322008-02-13 09:15:09 +09006811 ata_force_spd_limit(link);
6812
Tejun Heo4fb37a22007-08-06 18:36:23 +09006813 link->sata_spd_limit = link->hw_sata_spd_limit;
6814
6815 return 0;
6816}
6817
6818/**
Tejun Heof3187192007-04-17 23:44:07 +09006819 * ata_port_alloc - allocate and initialize basic ATA port resources
6820 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821 *
Tejun Heof3187192007-04-17 23:44:07 +09006822 * Allocate and initialize basic ATA port resources.
6823 *
6824 * RETURNS:
6825 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04006826 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006828 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829 */
Tejun Heof3187192007-04-17 23:44:07 +09006830struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831{
Tejun Heof3187192007-04-17 23:44:07 +09006832 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833
Tejun Heof3187192007-04-17 23:44:07 +09006834 DPRINTK("ENTER\n");
6835
6836 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
6837 if (!ap)
6838 return NULL;
6839
Tejun Heof4d6d002007-05-01 11:50:15 +02006840 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04006841 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09006842 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09006843 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04006845 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09006846 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006848
6849#if defined(ATA_VERBOSE_DEBUG)
6850 /* turn on all debugging levels */
6851 ap->msg_enable = 0x00FF;
6852#elif defined(ATA_DEBUG)
6853 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR;
Tejun Heo88574552006-06-25 20:00:35 +09006854#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04006855 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04006856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857
Jeff Garzik442eacc2007-12-19 04:25:10 -05006858 INIT_DELAYED_WORK(&ap->port_task, ata_pio_task);
David Howells65f27f32006-11-22 14:55:48 +00006859 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
6860 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09006861 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09006862 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09006863 init_timer_deferrable(&ap->fastdrain_timer);
6864 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
6865 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866
Tejun Heo838df622006-05-15 20:57:44 +09006867 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09006868
Tejun Heo89898052007-08-06 18:36:23 +09006869 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870
6871#ifdef ATA_IRQ_TRAP
6872 ap->stats.unhandled_irq = 1;
6873 ap->stats.idle_irq = 1;
6874#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876}
6877
Tejun Heof0d36ef2007-01-20 16:00:28 +09006878static void ata_host_release(struct device *gendev, void *res)
6879{
6880 struct ata_host *host = dev_get_drvdata(gendev);
6881 int i;
6882
6883 for (i = 0; i < host->n_ports; i++) {
6884 struct ata_port *ap = host->ports[i];
6885
Tejun Heoecef7252007-04-17 23:44:06 +09006886 if (!ap)
6887 continue;
6888
Tejun Heo49114872007-04-17 23:44:06 +09006889 if (ap->scsi_host)
Tejun Heo1aa506e42007-03-09 19:36:12 +09006890 scsi_host_put(ap->scsi_host);
6891
Tejun Heo633273a32007-09-23 13:19:54 +09006892 kfree(ap->pmp_link);
Tejun Heo49114872007-04-17 23:44:06 +09006893 kfree(ap);
Tejun Heo1aa506e42007-03-09 19:36:12 +09006894 host->ports[i] = NULL;
6895 }
6896
Tejun Heo1aa56cc2007-02-27 22:33:21 +09006897 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09006898}
6899
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900/**
Tejun Heof3187192007-04-17 23:44:07 +09006901 * ata_host_alloc - allocate and init basic ATA host resources
6902 * @dev: generic device this host is associated with
6903 * @max_ports: maximum number of ATA ports associated with this host
6904 *
6905 * Allocate and initialize basic ATA host resources. LLD calls
6906 * this function to allocate a host, initializes it fully and
6907 * attaches it using ata_host_register().
6908 *
6909 * @max_ports ports are allocated and host->n_ports is
6910 * initialized to @max_ports. The caller is allowed to decrease
6911 * host->n_ports before calling ata_host_register(). The unused
6912 * ports will be automatically freed on registration.
6913 *
6914 * RETURNS:
6915 * Allocate ATA host on success, NULL on failure.
6916 *
6917 * LOCKING:
6918 * Inherited from calling layer (may sleep).
6919 */
6920struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
6921{
6922 struct ata_host *host;
6923 size_t sz;
6924 int i;
6925
6926 DPRINTK("ENTER\n");
6927
6928 if (!devres_open_group(dev, NULL, GFP_KERNEL))
6929 return NULL;
6930
6931 /* alloc a container for our list of ATA ports (buses) */
6932 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
6933 /* alloc a container for our list of ATA ports (buses) */
6934 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
6935 if (!host)
6936 goto err_out;
6937
6938 devres_add(dev, host);
6939 dev_set_drvdata(dev, host);
6940
6941 spin_lock_init(&host->lock);
6942 host->dev = dev;
6943 host->n_ports = max_ports;
6944
6945 /* allocate ports bound to this host */
6946 for (i = 0; i < max_ports; i++) {
6947 struct ata_port *ap;
6948
6949 ap = ata_port_alloc(host);
6950 if (!ap)
6951 goto err_out;
6952
6953 ap->port_no = i;
6954 host->ports[i] = ap;
6955 }
6956
6957 devres_remove_group(dev, NULL);
6958 return host;
6959
6960 err_out:
6961 devres_release_group(dev, NULL);
6962 return NULL;
6963}
6964
6965/**
Tejun Heof5cda252007-04-17 23:44:07 +09006966 * ata_host_alloc_pinfo - alloc host and init with port_info array
6967 * @dev: generic device this host is associated with
6968 * @ppi: array of ATA port_info to initialize host with
6969 * @n_ports: number of ATA ports attached to this host
6970 *
6971 * Allocate ATA host and initialize with info from @ppi. If NULL
6972 * terminated, @ppi may contain fewer entries than @n_ports. The
6973 * last entry will be used for the remaining ports.
6974 *
6975 * RETURNS:
6976 * Allocate ATA host on success, NULL on failure.
6977 *
6978 * LOCKING:
6979 * Inherited from calling layer (may sleep).
6980 */
6981struct ata_host *ata_host_alloc_pinfo(struct device *dev,
6982 const struct ata_port_info * const * ppi,
6983 int n_ports)
6984{
6985 const struct ata_port_info *pi;
6986 struct ata_host *host;
6987 int i, j;
6988
6989 host = ata_host_alloc(dev, n_ports);
6990 if (!host)
6991 return NULL;
6992
6993 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
6994 struct ata_port *ap = host->ports[i];
6995
6996 if (ppi[j])
6997 pi = ppi[j++];
6998
6999 ap->pio_mask = pi->pio_mask;
7000 ap->mwdma_mask = pi->mwdma_mask;
7001 ap->udma_mask = pi->udma_mask;
7002 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09007003 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09007004 ap->ops = pi->port_ops;
7005
7006 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
7007 host->ops = pi->port_ops;
Tejun Heof5cda252007-04-17 23:44:07 +09007008 }
7009
7010 return host;
7011}
7012
Tejun Heo32ebbc02007-11-08 13:09:00 +09007013static void ata_host_stop(struct device *gendev, void *res)
7014{
7015 struct ata_host *host = dev_get_drvdata(gendev);
7016 int i;
7017
7018 WARN_ON(!(host->flags & ATA_HOST_STARTED));
7019
7020 for (i = 0; i < host->n_ports; i++) {
7021 struct ata_port *ap = host->ports[i];
7022
7023 if (ap->ops->port_stop)
7024 ap->ops->port_stop(ap);
7025 }
7026
7027 if (host->ops->host_stop)
7028 host->ops->host_stop(host);
7029}
7030
Tejun Heof5cda252007-04-17 23:44:07 +09007031/**
Tejun Heo029cfd62008-03-25 12:22:49 +09007032 * ata_finalize_port_ops - finalize ata_port_operations
7033 * @ops: ata_port_operations to finalize
7034 *
7035 * An ata_port_operations can inherit from another ops and that
7036 * ops can again inherit from another. This can go on as many
7037 * times as necessary as long as there is no loop in the
7038 * inheritance chain.
7039 *
7040 * Ops tables are finalized when the host is started. NULL or
7041 * unspecified entries are inherited from the closet ancestor
7042 * which has the method and the entry is populated with it.
7043 * After finalization, the ops table directly points to all the
7044 * methods and ->inherits is no longer necessary and cleared.
7045 *
7046 * Using ATA_OP_NULL, inheriting ops can force a method to NULL.
7047 *
7048 * LOCKING:
7049 * None.
7050 */
7051static void ata_finalize_port_ops(struct ata_port_operations *ops)
7052{
7053 static spinlock_t lock = SPIN_LOCK_UNLOCKED;
7054 const struct ata_port_operations *cur;
7055 void **begin = (void **)ops;
7056 void **end = (void **)&ops->inherits;
7057 void **pp;
7058
7059 if (!ops || !ops->inherits)
7060 return;
7061
7062 spin_lock(&lock);
7063
7064 for (cur = ops->inherits; cur; cur = cur->inherits) {
7065 void **inherit = (void **)cur;
7066
7067 for (pp = begin; pp < end; pp++, inherit++)
7068 if (!*pp)
7069 *pp = *inherit;
7070 }
7071
7072 for (pp = begin; pp < end; pp++)
7073 if (IS_ERR(*pp))
7074 *pp = NULL;
7075
7076 ops->inherits = NULL;
7077
7078 spin_unlock(&lock);
7079}
7080
7081/**
Tejun Heoecef7252007-04-17 23:44:06 +09007082 * ata_host_start - start and freeze ports of an ATA host
7083 * @host: ATA host to start ports for
7084 *
7085 * Start and then freeze ports of @host. Started status is
7086 * recorded in host->flags, so this function can be called
7087 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09007088 * once. If host->ops isn't initialized yet, its set to the
7089 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09007090 *
7091 * LOCKING:
7092 * Inherited from calling layer (may sleep).
7093 *
7094 * RETURNS:
7095 * 0 if all ports are started successfully, -errno otherwise.
7096 */
7097int ata_host_start(struct ata_host *host)
7098{
Tejun Heo32ebbc02007-11-08 13:09:00 +09007099 int have_stop = 0;
7100 void *start_dr = NULL;
Tejun Heoecef7252007-04-17 23:44:06 +09007101 int i, rc;
7102
7103 if (host->flags & ATA_HOST_STARTED)
7104 return 0;
7105
Tejun Heo029cfd62008-03-25 12:22:49 +09007106 ata_finalize_port_ops(host->ops);
7107
Tejun Heoecef7252007-04-17 23:44:06 +09007108 for (i = 0; i < host->n_ports; i++) {
7109 struct ata_port *ap = host->ports[i];
7110
Tejun Heo029cfd62008-03-25 12:22:49 +09007111 ata_finalize_port_ops(ap->ops);
7112
Tejun Heof3187192007-04-17 23:44:07 +09007113 if (!host->ops && !ata_port_is_dummy(ap))
7114 host->ops = ap->ops;
7115
Tejun Heo32ebbc02007-11-08 13:09:00 +09007116 if (ap->ops->port_stop)
7117 have_stop = 1;
7118 }
7119
7120 if (host->ops->host_stop)
7121 have_stop = 1;
7122
7123 if (have_stop) {
7124 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
7125 if (!start_dr)
7126 return -ENOMEM;
7127 }
7128
7129 for (i = 0; i < host->n_ports; i++) {
7130 struct ata_port *ap = host->ports[i];
7131
Tejun Heoecef7252007-04-17 23:44:06 +09007132 if (ap->ops->port_start) {
7133 rc = ap->ops->port_start(ap);
7134 if (rc) {
Alan Cox0f9fe9b2007-11-30 15:23:16 +00007135 if (rc != -ENODEV)
Andrew Morton0f757742008-01-10 14:33:09 -08007136 dev_printk(KERN_ERR, host->dev,
7137 "failed to start port %d "
7138 "(errno=%d)\n", i, rc);
Tejun Heoecef7252007-04-17 23:44:06 +09007139 goto err_out;
7140 }
7141 }
Tejun Heoecef7252007-04-17 23:44:06 +09007142 ata_eh_freeze_port(ap);
7143 }
7144
Tejun Heo32ebbc02007-11-08 13:09:00 +09007145 if (start_dr)
7146 devres_add(host->dev, start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09007147 host->flags |= ATA_HOST_STARTED;
7148 return 0;
7149
7150 err_out:
7151 while (--i >= 0) {
7152 struct ata_port *ap = host->ports[i];
7153
7154 if (ap->ops->port_stop)
7155 ap->ops->port_stop(ap);
7156 }
Tejun Heo32ebbc02007-11-08 13:09:00 +09007157 devres_free(start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09007158 return rc;
7159}
7160
7161/**
Jeff Garzikcca39742006-08-24 03:19:22 -04007162 * ata_sas_host_init - Initialize a host struct
7163 * @host: host to initialize
7164 * @dev: device host is attached to
7165 * @flags: host flags
7166 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05007167 *
7168 * LOCKING:
7169 * PCI/etc. bus probe sem.
7170 *
7171 */
Tejun Heof3187192007-04-17 23:44:07 +09007172/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04007173void ata_host_init(struct ata_host *host, struct device *dev,
Tejun Heo029cfd62008-03-25 12:22:49 +09007174 unsigned long flags, struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05007175{
Jeff Garzikcca39742006-08-24 03:19:22 -04007176 spin_lock_init(&host->lock);
7177 host->dev = dev;
7178 host->flags = flags;
7179 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05007180}
7181
7182/**
Tejun Heof3187192007-04-17 23:44:07 +09007183 * ata_host_register - register initialized ATA host
7184 * @host: ATA host to register
7185 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04007186 *
Tejun Heof3187192007-04-17 23:44:07 +09007187 * Register initialized ATA host. @host is allocated using
7188 * ata_host_alloc() and fully initialized by LLD. This function
7189 * starts ports, registers @host with ATA and SCSI layers and
7190 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007191 *
7192 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09007193 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194 *
7195 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09007196 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197 */
Tejun Heof3187192007-04-17 23:44:07 +09007198int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199{
Tejun Heof3187192007-04-17 23:44:07 +09007200 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007201
Tejun Heof3187192007-04-17 23:44:07 +09007202 /* host must have been started */
7203 if (!(host->flags & ATA_HOST_STARTED)) {
7204 dev_printk(KERN_ERR, host->dev,
7205 "BUG: trying to register unstarted host\n");
7206 WARN_ON(1);
7207 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01007208 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09007209
Tejun Heof3187192007-04-17 23:44:07 +09007210 /* Blow away unused ports. This happens when LLD can't
7211 * determine the exact number of ports to allocate at
7212 * allocation time.
7213 */
7214 for (i = host->n_ports; host->ports[i]; i++)
7215 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216
Tejun Heof3187192007-04-17 23:44:07 +09007217 /* give ports names and add SCSI hosts */
7218 for (i = 0; i < host->n_ports; i++)
7219 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09007220
Tejun Heof3187192007-04-17 23:44:07 +09007221 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09007222 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09007223 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09007224
Tejun Heofafbae82007-05-15 03:28:16 +09007225 /* associate with ACPI nodes */
7226 ata_acpi_associate(host);
7227
Tejun Heof3187192007-04-17 23:44:07 +09007228 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04007229 for (i = 0; i < host->n_ports; i++) {
7230 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09007231 unsigned long xfer_mask;
7232
7233 /* set SATA cable type if still unset */
7234 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
7235 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236
Tejun Heo5a04bf42006-05-31 18:27:38 +09007237 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09007238 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09007239
Tejun Heocbcdd872007-08-18 13:14:55 +09007240 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09007241 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
7242 ap->udma_mask);
7243
Tejun Heoabf6e8e2007-10-09 14:57:25 +09007244 if (!ata_port_is_dummy(ap)) {
Tejun Heocbcdd872007-08-18 13:14:55 +09007245 ata_port_printk(ap, KERN_INFO,
7246 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02007247 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09007248 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09007249 ap->link.eh_info.desc);
Tejun Heoabf6e8e2007-10-09 14:57:25 +09007250 ata_ehi_clear_desc(&ap->link.eh_info);
7251 } else
Tejun Heof3187192007-04-17 23:44:07 +09007252 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
7253 }
7254
7255 /* perform each probe synchronously */
7256 DPRINTK("probe begin\n");
7257 for (i = 0; i < host->n_ports; i++) {
7258 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09007259
7260 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09007261 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09007262 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e7063992006-05-31 18:28:11 +09007263 unsigned long flags;
7264
7265 ata_port_probe(ap);
7266
7267 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04007268 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e7063992006-05-31 18:28:11 +09007269
Tejun Heob558edd2008-01-24 00:05:14 +09007270 ehi->probe_mask |= ATA_ALL_DEVICES;
Tejun Heocf480622008-01-24 00:05:14 +09007271 ehi->action |= ATA_EH_RESET;
Tejun Heo1cdaf532006-07-03 16:07:26 +09007272 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e7063992006-05-31 18:28:11 +09007273
Tejun Heof4d6d002007-05-01 11:50:15 +02007274 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09007275 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e7063992006-05-31 18:28:11 +09007276 ata_port_schedule_eh(ap);
7277
Jeff Garzikba6a1302006-06-22 23:46:10 -04007278 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e7063992006-05-31 18:28:11 +09007279
7280 /* wait for EH to finish */
7281 ata_port_wait_eh(ap);
7282 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09007283 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e7063992006-05-31 18:28:11 +09007284 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09007285 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e7063992006-05-31 18:28:11 +09007286
7287 if (rc) {
7288 /* FIXME: do something useful here?
7289 * Current libata behavior will
7290 * tear down everything when
7291 * the module is removed
7292 * or the h/w is unplugged.
7293 */
7294 }
7295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296 }
7297
7298 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05007299 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04007300 for (i = 0; i < host->n_ports; i++) {
7301 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302
Tejun Heo1ae46312007-07-16 14:29:40 +09007303 ata_scsi_scan_host(ap, 1);
Kristen Carlson Accardica773292007-10-25 00:58:59 -04007304 ata_lpm_schedule(ap, ap->pm_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305 }
7306
Tejun Heof3187192007-04-17 23:44:07 +09007307 return 0;
7308}
7309
7310/**
Tejun Heof5cda252007-04-17 23:44:07 +09007311 * ata_host_activate - start host, request IRQ and register it
7312 * @host: target ATA host
7313 * @irq: IRQ to request
7314 * @irq_handler: irq_handler used when requesting IRQ
7315 * @irq_flags: irq_flags used when requesting IRQ
7316 * @sht: scsi_host_template to use when registering the host
7317 *
7318 * After allocating an ATA host and initializing it, most libata
7319 * LLDs perform three steps to activate the host - start host,
7320 * request IRQ and register it. This helper takes necessasry
7321 * arguments and performs the three steps in one go.
7322 *
Paul Mundt3d46b2e2007-11-08 11:14:56 +09007323 * An invalid IRQ skips the IRQ registration and expects the host to
7324 * have set polling mode on the port. In this case, @irq_handler
7325 * should be NULL.
7326 *
Tejun Heof5cda252007-04-17 23:44:07 +09007327 * LOCKING:
7328 * Inherited from calling layer (may sleep).
7329 *
7330 * RETURNS:
7331 * 0 on success, -errno otherwise.
7332 */
7333int ata_host_activate(struct ata_host *host, int irq,
7334 irq_handler_t irq_handler, unsigned long irq_flags,
7335 struct scsi_host_template *sht)
7336{
Tejun Heocbcdd872007-08-18 13:14:55 +09007337 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09007338
7339 rc = ata_host_start(host);
7340 if (rc)
7341 return rc;
7342
Paul Mundt3d46b2e2007-11-08 11:14:56 +09007343 /* Special case for polling mode */
7344 if (!irq) {
7345 WARN_ON(irq_handler);
7346 return ata_host_register(host, sht);
7347 }
7348
Tejun Heof5cda252007-04-17 23:44:07 +09007349 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
7350 dev_driver_string(host->dev), host);
7351 if (rc)
7352 return rc;
7353
Tejun Heocbcdd872007-08-18 13:14:55 +09007354 for (i = 0; i < host->n_ports; i++)
7355 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09007356
Tejun Heof5cda252007-04-17 23:44:07 +09007357 rc = ata_host_register(host, sht);
7358 /* if failed, just free the IRQ and leave ports alone */
7359 if (rc)
7360 devm_free_irq(host->dev, irq, host);
7361
7362 return rc;
7363}
7364
7365/**
Tejun Heo720ba122006-05-31 18:28:13 +09007366 * ata_port_detach - Detach ATA port in prepration of device removal
7367 * @ap: ATA port to be detached
7368 *
7369 * Detach all ATA devices and the associated SCSI devices of @ap;
7370 * then, remove the associated SCSI host. @ap is guaranteed to
7371 * be quiescent on return from this function.
7372 *
7373 * LOCKING:
7374 * Kernel thread context (may sleep).
7375 */
Adrian Bunk741b7762007-10-24 18:23:06 +02007376static void ata_port_detach(struct ata_port *ap)
Tejun Heo720ba122006-05-31 18:28:13 +09007377{
7378 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09007379 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09007380 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09007381
7382 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09007383 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09007384
7385 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04007386 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09007387 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04007388 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09007389
7390 ata_port_wait_eh(ap);
7391
Tejun Heo7f9ad9b2007-12-15 15:05:00 +09007392 /* EH is now guaranteed to see UNLOADING - EH context belongs
7393 * to us. Disable all existing devices.
Tejun Heo720ba122006-05-31 18:28:13 +09007394 */
Tejun Heo41bda9c2007-08-06 18:36:24 +09007395 ata_port_for_each_link(link, ap) {
7396 ata_link_for_each_dev(dev, link)
7397 ata_dev_disable(dev);
7398 }
Tejun Heo720ba122006-05-31 18:28:13 +09007399
Tejun Heo720ba122006-05-31 18:28:13 +09007400 /* Final freeze & EH. All in-flight commands are aborted. EH
7401 * will be skipped and retrials will be terminated with bad
7402 * target.
7403 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04007404 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09007405 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04007406 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09007407
7408 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07007409 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09007410
Tejun Heoc3cf30a2006-08-05 03:59:11 +09007411 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09007412 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04007413 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09007414}
7415
7416/**
Tejun Heo0529c1592007-01-20 16:00:26 +09007417 * ata_host_detach - Detach all ports of an ATA host
7418 * @host: Host to detach
7419 *
7420 * Detach all ports of @host.
7421 *
7422 * LOCKING:
7423 * Kernel thread context (may sleep).
7424 */
7425void ata_host_detach(struct ata_host *host)
7426{
7427 int i;
7428
7429 for (i = 0; i < host->n_ports; i++)
7430 ata_port_detach(host->ports[i]);
Tejun Heo562f0c22007-12-15 15:05:01 +09007431
7432 /* the host is dead now, dissociate ACPI */
7433 ata_acpi_dissociate(host);
Tejun Heo0529c1592007-01-20 16:00:26 +09007434}
7435
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436/**
7437 * ata_std_ports - initialize ioaddr with standard port offsets.
7438 * @ioaddr: IO address structure to be initialized
Edward Falk0baab862005-06-02 18:17:13 -04007439 *
7440 * Utility function which initializes data_addr, error_addr,
7441 * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr,
7442 * device_addr, status_addr, and command_addr to standard offsets
7443 * relative to cmd_addr.
7444 *
7445 * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446 */
Edward Falk0baab862005-06-02 18:17:13 -04007447
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448void ata_std_ports(struct ata_ioports *ioaddr)
7449{
7450 ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA;
7451 ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR;
7452 ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE;
7453 ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT;
7454 ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL;
7455 ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM;
7456 ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH;
7457 ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE;
7458 ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS;
7459 ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD;
7460}
7461
Edward Falk0baab862005-06-02 18:17:13 -04007462
Jeff Garzik374b1872005-08-30 05:42:52 -04007463#ifdef CONFIG_PCI
7464
Edward Falk0baab862005-06-02 18:17:13 -04007465/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466 * ata_pci_remove_one - PCI layer callback for device removal
7467 * @pdev: PCI device that was removed
7468 *
Tejun Heob878ca52007-01-20 16:00:28 +09007469 * PCI layer indicates to libata via this hook that hot-unplug or
7470 * module unload event has occurred. Detach all ports. Resource
7471 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472 *
7473 * LOCKING:
7474 * Inherited from PCI layer (may sleep).
7475 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09007476void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477{
Jeff Garzik28555682007-10-11 17:12:35 -04007478 struct device *dev = &pdev->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04007479 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480
Tejun Heob878ca52007-01-20 16:00:28 +09007481 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482}
7483
7484/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04007485int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007486{
7487 unsigned long tmp = 0;
7488
7489 switch (bits->width) {
7490 case 1: {
7491 u8 tmp8 = 0;
7492 pci_read_config_byte(pdev, bits->reg, &tmp8);
7493 tmp = tmp8;
7494 break;
7495 }
7496 case 2: {
7497 u16 tmp16 = 0;
7498 pci_read_config_word(pdev, bits->reg, &tmp16);
7499 tmp = tmp16;
7500 break;
7501 }
7502 case 4: {
7503 u32 tmp32 = 0;
7504 pci_read_config_dword(pdev, bits->reg, &tmp32);
7505 tmp = tmp32;
7506 break;
7507 }
7508
7509 default:
7510 return -EINVAL;
7511 }
7512
7513 tmp &= bits->mask;
7514
7515 return (tmp == bits->val) ? 1 : 0;
7516}
Jens Axboe9b847542006-01-06 09:28:07 +01007517
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007518#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09007519void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01007520{
7521 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09007522 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09007523
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01007524 if (mesg.event & PM_EVENT_SLEEP)
Tejun Heo500530f2006-07-03 16:07:27 +09007525 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01007526}
7527
Tejun Heo553c4aa2006-12-26 19:39:50 +09007528int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01007529{
Tejun Heo553c4aa2006-12-26 19:39:50 +09007530 int rc;
7531
Jens Axboe9b847542006-01-06 09:28:07 +01007532 pci_set_power_state(pdev, PCI_D0);
7533 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007534
Tejun Heob878ca52007-01-20 16:00:28 +09007535 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007536 if (rc) {
7537 dev_printk(KERN_ERR, &pdev->dev,
7538 "failed to enable device after resume (%d)\n", rc);
7539 return rc;
7540 }
7541
Jens Axboe9b847542006-01-06 09:28:07 +01007542 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007543 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09007544}
7545
Tejun Heo3c5100c2006-07-26 16:58:33 +09007546int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09007547{
Jeff Garzikcca39742006-08-24 03:19:22 -04007548 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09007549 int rc = 0;
7550
Jeff Garzikcca39742006-08-24 03:19:22 -04007551 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09007552 if (rc)
7553 return rc;
7554
Tejun Heo3c5100c2006-07-26 16:58:33 +09007555 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09007556
7557 return 0;
7558}
7559
7560int ata_pci_device_resume(struct pci_dev *pdev)
7561{
Jeff Garzikcca39742006-08-24 03:19:22 -04007562 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09007563 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09007564
Tejun Heo553c4aa2006-12-26 19:39:50 +09007565 rc = ata_pci_device_do_resume(pdev);
7566 if (rc == 0)
7567 ata_host_resume(host);
7568 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01007569}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007570#endif /* CONFIG_PM */
7571
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572#endif /* CONFIG_PCI */
7573
Tejun Heo33267322008-02-13 09:15:09 +09007574static int __init ata_parse_force_one(char **cur,
7575 struct ata_force_ent *force_ent,
7576 const char **reason)
7577{
7578 /* FIXME: Currently, there's no way to tag init const data and
7579 * using __initdata causes build failure on some versions of
7580 * gcc. Once __initdataconst is implemented, add const to the
7581 * following structure.
7582 */
7583 static struct ata_force_param force_tbl[] __initdata = {
7584 { "40c", .cbl = ATA_CBL_PATA40 },
7585 { "80c", .cbl = ATA_CBL_PATA80 },
7586 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
7587 { "unk", .cbl = ATA_CBL_PATA_UNK },
7588 { "ign", .cbl = ATA_CBL_PATA_IGN },
7589 { "sata", .cbl = ATA_CBL_SATA },
7590 { "1.5Gbps", .spd_limit = 1 },
7591 { "3.0Gbps", .spd_limit = 2 },
7592 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
7593 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
7594 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
7595 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
7596 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
7597 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
7598 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
7599 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
7600 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
7601 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
7602 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
7603 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
7604 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
7605 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
7606 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
7607 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
7608 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
7609 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
7610 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
7611 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
7612 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
7613 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
7614 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
7615 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
7616 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
7617 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
7618 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
7619 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
7620 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
7621 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
7622 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
7623 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
7624 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
7625 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
7626 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
7627 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
7628 };
7629 char *start = *cur, *p = *cur;
7630 char *id, *val, *endp;
7631 const struct ata_force_param *match_fp = NULL;
7632 int nr_matches = 0, i;
7633
7634 /* find where this param ends and update *cur */
7635 while (*p != '\0' && *p != ',')
7636 p++;
7637
7638 if (*p == '\0')
7639 *cur = p;
7640 else
7641 *cur = p + 1;
7642
7643 *p = '\0';
7644
7645 /* parse */
7646 p = strchr(start, ':');
7647 if (!p) {
7648 val = strstrip(start);
7649 goto parse_val;
7650 }
7651 *p = '\0';
7652
7653 id = strstrip(start);
7654 val = strstrip(p + 1);
7655
7656 /* parse id */
7657 p = strchr(id, '.');
7658 if (p) {
7659 *p++ = '\0';
7660 force_ent->device = simple_strtoul(p, &endp, 10);
7661 if (p == endp || *endp != '\0') {
7662 *reason = "invalid device";
7663 return -EINVAL;
7664 }
7665 }
7666
7667 force_ent->port = simple_strtoul(id, &endp, 10);
7668 if (p == endp || *endp != '\0') {
7669 *reason = "invalid port/link";
7670 return -EINVAL;
7671 }
7672
7673 parse_val:
7674 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
7675 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
7676 const struct ata_force_param *fp = &force_tbl[i];
7677
7678 if (strncasecmp(val, fp->name, strlen(val)))
7679 continue;
7680
7681 nr_matches++;
7682 match_fp = fp;
7683
7684 if (strcasecmp(val, fp->name) == 0) {
7685 nr_matches = 1;
7686 break;
7687 }
7688 }
7689
7690 if (!nr_matches) {
7691 *reason = "unknown value";
7692 return -EINVAL;
7693 }
7694 if (nr_matches > 1) {
7695 *reason = "ambigious value";
7696 return -EINVAL;
7697 }
7698
7699 force_ent->param = *match_fp;
7700
7701 return 0;
7702}
7703
7704static void __init ata_parse_force_param(void)
7705{
7706 int idx = 0, size = 1;
7707 int last_port = -1, last_device = -1;
7708 char *p, *cur, *next;
7709
7710 /* calculate maximum number of params and allocate force_tbl */
7711 for (p = ata_force_param_buf; *p; p++)
7712 if (*p == ',')
7713 size++;
7714
7715 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
7716 if (!ata_force_tbl) {
7717 printk(KERN_WARNING "ata: failed to extend force table, "
7718 "libata.force ignored\n");
7719 return;
7720 }
7721
7722 /* parse and populate the table */
7723 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
7724 const char *reason = "";
7725 struct ata_force_ent te = { .port = -1, .device = -1 };
7726
7727 next = cur;
7728 if (ata_parse_force_one(&next, &te, &reason)) {
7729 printk(KERN_WARNING "ata: failed to parse force "
7730 "parameter \"%s\" (%s)\n",
7731 cur, reason);
7732 continue;
7733 }
7734
7735 if (te.port == -1) {
7736 te.port = last_port;
7737 te.device = last_device;
7738 }
7739
7740 ata_force_tbl[idx++] = te;
7741
7742 last_port = te.port;
7743 last_device = te.device;
7744 }
7745
7746 ata_force_tbl_size = idx;
7747}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749static int __init ata_init(void)
7750{
Andrew Mortona8601e52006-06-25 01:36:52 -07007751 ata_probe_timeout *= HZ;
Tejun Heo33267322008-02-13 09:15:09 +09007752
7753 ata_parse_force_param();
7754
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755 ata_wq = create_workqueue("ata");
7756 if (!ata_wq)
7757 return -ENOMEM;
7758
Tejun Heo453b07a2006-05-31 18:27:42 +09007759 ata_aux_wq = create_singlethread_workqueue("ata_aux");
7760 if (!ata_aux_wq) {
7761 destroy_workqueue(ata_wq);
7762 return -ENOMEM;
7763 }
7764
Linus Torvalds1da177e2005-04-16 15:20:36 -07007765 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
7766 return 0;
7767}
7768
7769static void __exit ata_exit(void)
7770{
Tejun Heo33267322008-02-13 09:15:09 +09007771 kfree(ata_force_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09007773 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007774}
7775
Brian Kinga4625082006-11-13 16:32:36 -06007776subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007777module_exit(ata_exit);
7778
Jeff Garzik67846b32005-10-05 02:58:32 -04007779static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07007780static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04007781
7782int ata_ratelimit(void)
7783{
7784 int rc;
7785 unsigned long flags;
7786
7787 spin_lock_irqsave(&ata_ratelimit_lock, flags);
7788
7789 if (time_after(jiffies, ratelimit_time)) {
7790 rc = 1;
7791 ratelimit_time = jiffies + (HZ/5);
7792 } else
7793 rc = 0;
7794
7795 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
7796
7797 return rc;
7798}
7799
Tejun Heoc22daff2006-04-11 22:22:29 +09007800/**
7801 * ata_wait_register - wait until register value changes
7802 * @reg: IO-mapped register
7803 * @mask: Mask to apply to read register value
7804 * @val: Wait condition
7805 * @interval_msec: polling interval in milliseconds
7806 * @timeout_msec: timeout in milliseconds
7807 *
7808 * Waiting for some bits of register to change is a common
7809 * operation for ATA controllers. This function reads 32bit LE
7810 * IO-mapped register @reg and tests for the following condition.
7811 *
7812 * (*@reg & mask) != val
7813 *
7814 * If the condition is met, it returns; otherwise, the process is
7815 * repeated after @interval_msec until timeout.
7816 *
7817 * LOCKING:
7818 * Kernel thread context (may sleep)
7819 *
7820 * RETURNS:
7821 * The final register value.
7822 */
7823u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
7824 unsigned long interval_msec,
7825 unsigned long timeout_msec)
7826{
7827 unsigned long timeout;
7828 u32 tmp;
7829
7830 tmp = ioread32(reg);
7831
7832 /* Calculate timeout _after_ the first read to make sure
7833 * preceding writes reach the controller before starting to
7834 * eat away the timeout.
7835 */
7836 timeout = jiffies + (timeout_msec * HZ) / 1000;
7837
7838 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
7839 msleep(interval_msec);
7840 tmp = ioread32(reg);
7841 }
7842
7843 return tmp;
7844}
7845
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09007847 * Dummy port_ops
7848 */
7849static void ata_dummy_noret(struct ata_port *ap) { }
7850static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
7851static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
7852
7853static u8 ata_dummy_check_status(struct ata_port *ap)
7854{
7855 return ATA_DRDY;
7856}
7857
7858static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
7859{
7860 return AC_ERR_SYSTEM;
7861}
7862
Tejun Heo029cfd62008-03-25 12:22:49 +09007863struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09007864 .check_status = ata_dummy_check_status,
7865 .check_altstatus = ata_dummy_check_status,
7866 .dev_select = ata_noop_dev_select,
7867 .qc_prep = ata_noop_qc_prep,
7868 .qc_issue = ata_dummy_qc_issue,
7869 .freeze = ata_dummy_noret,
7870 .thaw = ata_dummy_noret,
7871 .error_handler = ata_dummy_noret,
7872 .post_internal_cmd = ata_dummy_qc_noret,
7873 .irq_clear = ata_dummy_noret,
7874 .port_start = ata_dummy_ret0,
7875 .port_stop = ata_dummy_noret,
7876};
7877
Tejun Heo21b0ad42007-04-17 23:44:07 +09007878const struct ata_port_info ata_dummy_port_info = {
7879 .port_ops = &ata_dummy_port_ops,
7880};
7881
Tejun Heodd5b06c2006-08-10 16:59:12 +09007882/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007883 * libata is essentially a library of internal helper functions for
7884 * low-level ATA host controller drivers. As such, the API/ABI is
7885 * likely to change as new drivers are added and updated.
7886 * Do not depend on ABI/API stability.
7887 */
Tejun Heoe9c83912006-07-03 16:07:26 +09007888EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
7889EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
7890EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heo029cfd62008-03-25 12:22:49 +09007891EXPORT_SYMBOL_GPL(ata_base_port_ops);
7892EXPORT_SYMBOL_GPL(sata_port_ops);
7893EXPORT_SYMBOL_GPL(sata_pmp_port_ops);
7894EXPORT_SYMBOL_GPL(ata_sff_port_ops);
7895EXPORT_SYMBOL_GPL(ata_bmdma_port_ops);
Tejun Heodd5b06c2006-08-10 16:59:12 +09007896EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09007897EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007898EXPORT_SYMBOL_GPL(ata_std_bios_param);
7899EXPORT_SYMBOL_GPL(ata_std_ports);
Jeff Garzikcca39742006-08-24 03:19:22 -04007900EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09007901EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09007902EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09007903EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09007904EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09007905EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c1592007-01-20 16:00:26 +09007906EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907EXPORT_SYMBOL_GPL(ata_sg_init);
Tejun Heo9a1004d2006-05-31 18:27:52 +09007908EXPORT_SYMBOL_GPL(ata_hsm_move);
Tejun Heof686bcb2006-05-15 20:58:05 +09007909EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09007910EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007911EXPORT_SYMBOL_GPL(ata_qc_issue_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007912EXPORT_SYMBOL_GPL(ata_tf_load);
7913EXPORT_SYMBOL_GPL(ata_tf_read);
7914EXPORT_SYMBOL_GPL(ata_noop_dev_select);
7915EXPORT_SYMBOL_GPL(ata_std_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05007916EXPORT_SYMBOL_GPL(sata_print_link_status);
Tejun Heo436d34b2008-04-02 17:28:46 +09007917EXPORT_SYMBOL_GPL(atapi_cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007918EXPORT_SYMBOL_GPL(ata_tf_to_fis);
7919EXPORT_SYMBOL_GPL(ata_tf_from_fis);
Tejun Heo63573572007-11-27 19:43:39 +09007920EXPORT_SYMBOL_GPL(ata_pack_xfermask);
7921EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
7922EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
7923EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
7924EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
7925EXPORT_SYMBOL_GPL(ata_mode_string);
7926EXPORT_SYMBOL_GPL(ata_id_xfermask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927EXPORT_SYMBOL_GPL(ata_check_status);
7928EXPORT_SYMBOL_GPL(ata_altstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929EXPORT_SYMBOL_GPL(ata_exec_command);
7930EXPORT_SYMBOL_GPL(ata_port_start);
Alan Coxd92e74d2007-06-07 16:19:15 +01007931EXPORT_SYMBOL_GPL(ata_sff_port_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007932EXPORT_SYMBOL_GPL(ata_interrupt);
Alan04351822007-03-06 02:37:52 -08007933EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo0d5ff562007-02-01 15:06:36 +09007934EXPORT_SYMBOL_GPL(ata_data_xfer);
7935EXPORT_SYMBOL_GPL(ata_data_xfer_noirq);
Tejun Heo31cc23b2007-09-23 13:14:12 +09007936EXPORT_SYMBOL_GPL(ata_std_qc_defer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007937EXPORT_SYMBOL_GPL(ata_qc_prep);
Alan Coxd26fc952007-07-06 19:13:52 -04007938EXPORT_SYMBOL_GPL(ata_dumb_qc_prep);
Brian Kinge46834c2006-03-17 17:04:03 -06007939EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940EXPORT_SYMBOL_GPL(ata_bmdma_setup);
7941EXPORT_SYMBOL_GPL(ata_bmdma_start);
7942EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear);
Tejun Heo358f9a72008-03-25 12:22:47 +09007943EXPORT_SYMBOL_GPL(ata_noop_irq_clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007944EXPORT_SYMBOL_GPL(ata_bmdma_status);
7945EXPORT_SYMBOL_GPL(ata_bmdma_stop);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09007946EXPORT_SYMBOL_GPL(ata_bmdma_freeze);
7947EXPORT_SYMBOL_GPL(ata_bmdma_thaw);
Tejun Heo6d97dbd2006-05-15 20:58:24 +09007948EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
7949EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007950EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00007951EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09007952EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heo936fd732007-08-06 18:36:23 +09007953EXPORT_SYMBOL_GPL(sata_link_debounce);
7954EXPORT_SYMBOL_GPL(sata_link_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955EXPORT_SYMBOL_GPL(ata_bus_reset);
Tejun Heof5914a42006-05-31 18:27:48 +09007956EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007957EXPORT_SYMBOL_GPL(ata_std_softreset);
Tejun Heocc0680a2007-08-06 18:36:23 +09007958EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heoc2bd5802006-01-24 17:05:22 +09007959EXPORT_SYMBOL_GPL(sata_std_hardreset);
7960EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05007961EXPORT_SYMBOL_GPL(ata_dev_classify);
7962EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04007964EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09007965EXPORT_SYMBOL_GPL(ata_wait_register);
Tejun Heo6f8b9952006-01-24 17:05:21 +09007966EXPORT_SYMBOL_GPL(ata_busy_sleep);
Tejun Heo88ff6ea2007-10-16 14:21:24 -07007967EXPORT_SYMBOL_GPL(ata_wait_after_reset);
Tejun Heod4b2bab2007-02-02 16:50:52 +09007968EXPORT_SYMBOL_GPL(ata_wait_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
7970EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007971EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09007972EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09007973EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007974EXPORT_SYMBOL_GPL(ata_host_intr);
Tejun Heo34bf2172006-05-15 20:57:46 +09007975EXPORT_SYMBOL_GPL(sata_scr_valid);
7976EXPORT_SYMBOL_GPL(sata_scr_read);
7977EXPORT_SYMBOL_GPL(sata_scr_write);
7978EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09007979EXPORT_SYMBOL_GPL(ata_link_online);
7980EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007981#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04007982EXPORT_SYMBOL_GPL(ata_host_suspend);
7983EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09007984#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09007985EXPORT_SYMBOL_GPL(ata_id_string);
7986EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987EXPORT_SYMBOL_GPL(ata_scsi_simulate);
7988
Alan Cox1bc4ccf2006-01-09 17:18:14 +00007989EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Tejun Heo63573572007-11-27 19:43:39 +09007990EXPORT_SYMBOL_GPL(ata_timing_find_mode);
Alan Cox452503f2005-10-21 19:01:32 -04007991EXPORT_SYMBOL_GPL(ata_timing_compute);
7992EXPORT_SYMBOL_GPL(ata_timing_merge);
Tejun Heoa0f79b92007-12-18 16:33:05 +09007993EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
Alan Cox452503f2005-10-21 19:01:32 -04007994
Linus Torvalds1da177e2005-04-16 15:20:36 -07007995#ifdef CONFIG_PCI
7996EXPORT_SYMBOL_GPL(pci_test_config_bits);
Tejun Heod583bc12007-07-04 18:02:07 +09007997EXPORT_SYMBOL_GPL(ata_pci_init_sff_host);
Tejun Heo1626aeb2007-05-04 12:43:58 +02007998EXPORT_SYMBOL_GPL(ata_pci_init_bmdma);
Tejun Heod583bc12007-07-04 18:02:07 +09007999EXPORT_SYMBOL_GPL(ata_pci_prepare_sff_host);
Tejun Heo4e6b79f2008-01-18 18:36:28 +09008000EXPORT_SYMBOL_GPL(ata_pci_activate_sff_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001EXPORT_SYMBOL_GPL(ata_pci_init_one);
8002EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09008003#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09008004EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
8005EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01008006EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
8007EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09008008#endif /* CONFIG_PM */
Alan Cox67951ad2006-03-22 15:55:54 +00008009EXPORT_SYMBOL_GPL(ata_pci_default_filter);
8010EXPORT_SYMBOL_GPL(ata_pci_clear_simplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008011#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01008012
Tejun Heo31f88382007-09-23 13:19:54 +09008013EXPORT_SYMBOL_GPL(sata_pmp_qc_defer_cmd_switch);
Tejun Heo3af9a772007-09-23 13:19:54 +09008014EXPORT_SYMBOL_GPL(sata_pmp_std_prereset);
8015EXPORT_SYMBOL_GPL(sata_pmp_std_hardreset);
8016EXPORT_SYMBOL_GPL(sata_pmp_std_postreset);
Tejun Heoa1efdab2008-03-25 12:22:50 +09008017EXPORT_SYMBOL_GPL(sata_pmp_error_handler);
Tejun Heo3af9a772007-09-23 13:19:54 +09008018
Tejun Heob64bbc32007-07-16 14:29:39 +09008019EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
8020EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
8021EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09008022EXPORT_SYMBOL_GPL(ata_port_desc);
8023#ifdef CONFIG_PCI
8024EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
8025#endif /* CONFIG_PCI */
Tejun Heo7b70fc02006-05-15 20:58:07 +09008026EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09008027EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09008028EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09008029EXPORT_SYMBOL_GPL(ata_port_freeze);
Tejun Heo7d77b242007-09-23 13:14:13 +09008030EXPORT_SYMBOL_GPL(sata_async_notification);
Tejun Heoe3180492006-05-15 20:58:09 +09008031EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
8032EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09008033EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
8034EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09008035EXPORT_SYMBOL_GPL(ata_do_eh);
Tejun Heoa1efdab2008-03-25 12:22:50 +09008036EXPORT_SYMBOL_GPL(ata_std_error_handler);
Akira Iguchi836250062007-01-26 16:27:32 +09008037EXPORT_SYMBOL_GPL(ata_irq_on);
Akira Iguchia619f981b2007-01-26 16:28:18 +09008038EXPORT_SYMBOL_GPL(ata_dev_try_classify);
Alan Coxbe0d18d2007-03-06 02:37:56 -08008039
8040EXPORT_SYMBOL_GPL(ata_cable_40wire);
8041EXPORT_SYMBOL_GPL(ata_cable_80wire);
8042EXPORT_SYMBOL_GPL(ata_cable_unknown);
Tejun Heoc88f90c2007-11-27 19:43:48 +09008043EXPORT_SYMBOL_GPL(ata_cable_ignore);
Alan Coxbe0d18d2007-03-06 02:37:56 -08008044EXPORT_SYMBOL_GPL(ata_cable_sata);