blob: ffc689d9e972620482474d3d7074fd475c9a2660 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/spinlock.h>
50#include <linux/blkdev.h>
51#include <linux/delay.h>
52#include <linux/timer.h>
53#include <linux/interrupt.h>
54#include <linux/completion.h>
55#include <linux/suspend.h>
56#include <linux/workqueue.h>
Jeff Garzik67846b32005-10-05 02:58:32 -040057#include <linux/jiffies.h>
David Hardeman378f0582005-09-17 17:55:31 +100058#include <linux/scatterlist.h>
Jeff Garzik2dcb4072007-10-19 06:42:56 -040059#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050061#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <scsi/scsi_host.h>
63#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/byteorder.h>
Tejun Heo140b5e592007-12-12 12:21:52 +090065#include <linux/cdrom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#include "libata.h"
68
Jeff Garzikfda0efc2007-01-31 07:43:15 -050069
Tejun Heod7bb4cc2006-05-31 18:27:46 +090070/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090071const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
72const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
73const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090074
Tejun Heo029cfd62008-03-25 12:22:49 +090075const struct ata_port_operations ata_base_port_ops = {
Tejun Heo0aa11132008-04-07 22:47:18 +090076 .prereset = ata_std_prereset,
Tejun Heo203c75b2008-04-07 22:47:18 +090077 .postreset = ata_std_postreset,
Tejun Heoa1efdab2008-03-25 12:22:50 +090078 .error_handler = ata_std_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +090079};
80
81const struct ata_port_operations sata_port_ops = {
82 .inherits = &ata_base_port_ops,
83
84 .qc_defer = ata_std_qc_defer,
Tejun Heo57c9efd2008-04-07 22:47:19 +090085 .hardreset = sata_std_hardreset,
Tejun Heo029cfd62008-03-25 12:22:49 +090086};
87
Tejun Heo3373efd2006-05-15 20:57:53 +090088static unsigned int ata_dev_init_params(struct ata_device *dev,
89 u16 heads, u16 sectors);
90static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Jeff Garzik218f3d32007-10-25 00:33:27 -040091static unsigned int ata_dev_set_feature(struct ata_device *dev,
92 u8 enable, u8 feature);
Tejun Heo3373efd2006-05-15 20:57:53 +090093static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090094static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Tejun Heof3187192007-04-17 23:44:07 +090096unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static struct workqueue_struct *ata_wq;
98
Tejun Heo453b07a2006-05-31 18:27:42 +090099struct workqueue_struct *ata_aux_wq;
100
Tejun Heo33267322008-02-13 09:15:09 +0900101struct ata_force_param {
102 const char *name;
103 unsigned int cbl;
104 int spd_limit;
105 unsigned long xfer_mask;
106 unsigned int horkage_on;
107 unsigned int horkage_off;
108};
109
110struct ata_force_ent {
111 int port;
112 int device;
113 struct ata_force_param param;
114};
115
116static struct ata_force_ent *ata_force_tbl;
117static int ata_force_tbl_size;
118
119static char ata_force_param_buf[PAGE_SIZE] __initdata;
Tejun Heo7afb4222008-03-09 20:21:53 +0900120/* param_buf is thrown away after initialization, disallow read */
121module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0);
Tejun Heo33267322008-02-13 09:15:09 +0900122MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)");
123
Jeff Garzik418dc1f2006-03-11 20:50:08 -0500124int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -0400125module_param(atapi_enabled, int, 0444);
126MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
127
Adrian Bunkc5c61bd2008-02-25 02:07:25 +0200128static int atapi_dmadir = 0;
Albert Lee95de7192006-04-04 10:57:18 +0800129module_param(atapi_dmadir, int, 0444);
130MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
131
Mark Lordbaf4fdf2007-08-08 01:08:45 +0900132int atapi_passthru16 = 1;
133module_param(atapi_passthru16, int, 0444);
134MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
135
Jeff Garzikc3c013a2006-02-27 22:31:19 -0500136int libata_fua = 0;
137module_param_named(fua, libata_fua, int, 0444);
138MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
139
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400140static int ata_ignore_hpa;
Alan Cox1e999732007-04-11 00:23:13 +0100141module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
142MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
143
Alan Coxb3a70602007-10-02 12:38:26 -0400144static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
145module_param_named(dma, libata_dma_mask, int, 0444);
146MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
147
Andrew Mortona8601e52006-06-25 01:36:52 -0700148static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
149module_param(ata_probe_timeout, int, 0444);
150MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
151
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400152int libata_noacpi = 0;
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400153module_param_named(noacpi, libata_noacpi, int, 0444);
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400154MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set");
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700155
Alan Coxae8d4ee2007-11-04 22:05:49 -0500156int libata_allow_tpm = 0;
157module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
158MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands");
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160MODULE_AUTHOR("Jeff Garzik");
161MODULE_DESCRIPTION("Library module for ATA devices");
162MODULE_LICENSE("GPL");
163MODULE_VERSION(DRV_VERSION);
164
Edward Falk0baab862005-06-02 18:17:13 -0400165
166/**
Tejun Heo33267322008-02-13 09:15:09 +0900167 * ata_force_cbl - force cable type according to libata.force
Randy Dunlap4cdfa1b2008-02-22 12:21:37 -0800168 * @ap: ATA port of interest
Tejun Heo33267322008-02-13 09:15:09 +0900169 *
170 * Force cable type according to libata.force and whine about it.
171 * The last entry which has matching port number is used, so it
172 * can be specified as part of device force parameters. For
173 * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
174 * same effect.
175 *
176 * LOCKING:
177 * EH context.
178 */
179void ata_force_cbl(struct ata_port *ap)
180{
181 int i;
182
183 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
184 const struct ata_force_ent *fe = &ata_force_tbl[i];
185
186 if (fe->port != -1 && fe->port != ap->print_id)
187 continue;
188
189 if (fe->param.cbl == ATA_CBL_NONE)
190 continue;
191
192 ap->cbl = fe->param.cbl;
193 ata_port_printk(ap, KERN_NOTICE,
194 "FORCE: cable set to %s\n", fe->param.name);
195 return;
196 }
197}
198
199/**
200 * ata_force_spd_limit - force SATA spd limit according to libata.force
201 * @link: ATA link of interest
202 *
203 * Force SATA spd limit according to libata.force and whine about
204 * it. When only the port part is specified (e.g. 1:), the limit
205 * applies to all links connected to both the host link and all
206 * fan-out ports connected via PMP. If the device part is
207 * specified as 0 (e.g. 1.00:), it specifies the first fan-out
208 * link not the host link. Device number 15 always points to the
209 * host link whether PMP is attached or not.
210 *
211 * LOCKING:
212 * EH context.
213 */
214static void ata_force_spd_limit(struct ata_link *link)
215{
216 int linkno, i;
217
218 if (ata_is_host_link(link))
219 linkno = 15;
220 else
221 linkno = link->pmp;
222
223 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
224 const struct ata_force_ent *fe = &ata_force_tbl[i];
225
226 if (fe->port != -1 && fe->port != link->ap->print_id)
227 continue;
228
229 if (fe->device != -1 && fe->device != linkno)
230 continue;
231
232 if (!fe->param.spd_limit)
233 continue;
234
235 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
236 ata_link_printk(link, KERN_NOTICE,
237 "FORCE: PHY spd limit set to %s\n", fe->param.name);
238 return;
239 }
240}
241
242/**
243 * ata_force_xfermask - force xfermask according to libata.force
244 * @dev: ATA device of interest
245 *
246 * Force xfer_mask according to libata.force and whine about it.
247 * For consistency with link selection, device number 15 selects
248 * the first device connected to the host link.
249 *
250 * LOCKING:
251 * EH context.
252 */
253static void ata_force_xfermask(struct ata_device *dev)
254{
255 int devno = dev->link->pmp + dev->devno;
256 int alt_devno = devno;
257 int i;
258
259 /* allow n.15 for the first device attached to host port */
260 if (ata_is_host_link(dev->link) && devno == 0)
261 alt_devno = 15;
262
263 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
264 const struct ata_force_ent *fe = &ata_force_tbl[i];
265 unsigned long pio_mask, mwdma_mask, udma_mask;
266
267 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
268 continue;
269
270 if (fe->device != -1 && fe->device != devno &&
271 fe->device != alt_devno)
272 continue;
273
274 if (!fe->param.xfer_mask)
275 continue;
276
277 ata_unpack_xfermask(fe->param.xfer_mask,
278 &pio_mask, &mwdma_mask, &udma_mask);
279 if (udma_mask)
280 dev->udma_mask = udma_mask;
281 else if (mwdma_mask) {
282 dev->udma_mask = 0;
283 dev->mwdma_mask = mwdma_mask;
284 } else {
285 dev->udma_mask = 0;
286 dev->mwdma_mask = 0;
287 dev->pio_mask = pio_mask;
288 }
289
290 ata_dev_printk(dev, KERN_NOTICE,
291 "FORCE: xfer_mask set to %s\n", fe->param.name);
292 return;
293 }
294}
295
296/**
297 * ata_force_horkage - force horkage according to libata.force
298 * @dev: ATA device of interest
299 *
300 * Force horkage according to libata.force and whine about it.
301 * For consistency with link selection, device number 15 selects
302 * the first device connected to the host link.
303 *
304 * LOCKING:
305 * EH context.
306 */
307static void ata_force_horkage(struct ata_device *dev)
308{
309 int devno = dev->link->pmp + dev->devno;
310 int alt_devno = devno;
311 int i;
312
313 /* allow n.15 for the first device attached to host port */
314 if (ata_is_host_link(dev->link) && devno == 0)
315 alt_devno = 15;
316
317 for (i = 0; i < ata_force_tbl_size; i++) {
318 const struct ata_force_ent *fe = &ata_force_tbl[i];
319
320 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
321 continue;
322
323 if (fe->device != -1 && fe->device != devno &&
324 fe->device != alt_devno)
325 continue;
326
327 if (!(~dev->horkage & fe->param.horkage_on) &&
328 !(dev->horkage & fe->param.horkage_off))
329 continue;
330
331 dev->horkage |= fe->param.horkage_on;
332 dev->horkage &= ~fe->param.horkage_off;
333
334 ata_dev_printk(dev, KERN_NOTICE,
335 "FORCE: horkage modified (%s)\n", fe->param.name);
336 }
337}
338
339/**
Tejun Heo436d34b2008-04-02 17:28:46 +0900340 * atapi_cmd_type - Determine ATAPI command type from SCSI opcode
341 * @opcode: SCSI opcode
342 *
343 * Determine ATAPI command type from @opcode.
344 *
345 * LOCKING:
346 * None.
347 *
348 * RETURNS:
349 * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
350 */
351int atapi_cmd_type(u8 opcode)
352{
353 switch (opcode) {
354 case GPCMD_READ_10:
355 case GPCMD_READ_12:
356 return ATAPI_READ;
357
358 case GPCMD_WRITE_10:
359 case GPCMD_WRITE_12:
360 case GPCMD_WRITE_AND_VERIFY_10:
361 return ATAPI_WRITE;
362
363 case GPCMD_READ_CD:
364 case GPCMD_READ_CD_MSF:
365 return ATAPI_READ_CD;
366
Tejun Heoe52dcc42008-04-02 17:35:19 +0900367 case ATA_16:
368 case ATA_12:
369 if (atapi_passthru16)
370 return ATAPI_PASS_THRU;
371 /* fall thru */
Tejun Heo436d34b2008-04-02 17:28:46 +0900372 default:
373 return ATAPI_MISC;
374 }
375}
376
377/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
379 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900381 * @is_cmd: This FIS is for command
382 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 *
384 * Converts a standard ATA taskfile to a Serial ATA
385 * FIS structure (Register - Host to Device).
386 *
387 * LOCKING:
388 * Inherited from caller.
389 */
Tejun Heo99771262007-07-16 14:29:38 +0900390void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Tejun Heo99771262007-07-16 14:29:38 +0900392 fis[0] = 0x27; /* Register - Host to Device FIS */
393 fis[1] = pmp & 0xf; /* Port multiplier number*/
394 if (is_cmd)
395 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 fis[2] = tf->command;
398 fis[3] = tf->feature;
399
400 fis[4] = tf->lbal;
401 fis[5] = tf->lbam;
402 fis[6] = tf->lbah;
403 fis[7] = tf->device;
404
405 fis[8] = tf->hob_lbal;
406 fis[9] = tf->hob_lbam;
407 fis[10] = tf->hob_lbah;
408 fis[11] = tf->hob_feature;
409
410 fis[12] = tf->nsect;
411 fis[13] = tf->hob_nsect;
412 fis[14] = 0;
413 fis[15] = tf->ctl;
414
415 fis[16] = 0;
416 fis[17] = 0;
417 fis[18] = 0;
418 fis[19] = 0;
419}
420
421/**
422 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
423 * @fis: Buffer from which data will be input
424 * @tf: Taskfile to output
425 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500426 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 *
428 * LOCKING:
429 * Inherited from caller.
430 */
431
Jeff Garzik057ace52005-10-22 14:27:05 -0400432void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 tf->command = fis[2]; /* status */
435 tf->feature = fis[3]; /* error */
436
437 tf->lbal = fis[4];
438 tf->lbam = fis[5];
439 tf->lbah = fis[6];
440 tf->device = fis[7];
441
442 tf->hob_lbal = fis[8];
443 tf->hob_lbam = fis[9];
444 tf->hob_lbah = fis[10];
445
446 tf->nsect = fis[12];
447 tf->hob_nsect = fis[13];
448}
449
Albert Lee8cbd6df2005-10-12 15:06:27 +0800450static const u8 ata_rw_cmds[] = {
451 /* pio multi */
452 ATA_CMD_READ_MULTI,
453 ATA_CMD_WRITE_MULTI,
454 ATA_CMD_READ_MULTI_EXT,
455 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100456 0,
457 0,
458 0,
459 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800460 /* pio */
461 ATA_CMD_PIO_READ,
462 ATA_CMD_PIO_WRITE,
463 ATA_CMD_PIO_READ_EXT,
464 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100465 0,
466 0,
467 0,
468 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800469 /* dma */
470 ATA_CMD_READ,
471 ATA_CMD_WRITE,
472 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100473 ATA_CMD_WRITE_EXT,
474 0,
475 0,
476 0,
477 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800478};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800481 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900482 * @tf: command to examine and configure
483 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500485 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800486 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 *
488 * LOCKING:
489 * caller.
490 */
Tejun Heobd056d72006-11-14 22:47:10 +0900491static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100493 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100495 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500496
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100497 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800498 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
499 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Albert Lee8cbd6df2005-10-12 15:06:27 +0800501 if (dev->flags & ATA_DFLAG_PIO) {
502 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100503 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900504 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000505 /* Unable to use DMA due to host limitation */
506 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800507 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800508 } else {
509 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100510 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100513 cmd = ata_rw_cmds[index + fua + lba48 + write];
514 if (cmd) {
515 tf->command = cmd;
516 return 0;
517 }
518 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
Tejun Heocb95d562006-03-06 04:31:56 +0900521/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900522 * ata_tf_read_block - Read block address from ATA taskfile
523 * @tf: ATA taskfile of interest
524 * @dev: ATA device @tf belongs to
525 *
526 * LOCKING:
527 * None.
528 *
529 * Read block address from @tf. This function can handle all
530 * three address formats - LBA, LBA48 and CHS. tf->protocol and
531 * flags select the address format to use.
532 *
533 * RETURNS:
534 * Block address read from @tf.
535 */
536u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
537{
538 u64 block = 0;
539
540 if (tf->flags & ATA_TFLAG_LBA) {
541 if (tf->flags & ATA_TFLAG_LBA48) {
542 block |= (u64)tf->hob_lbah << 40;
543 block |= (u64)tf->hob_lbam << 32;
544 block |= tf->hob_lbal << 24;
545 } else
546 block |= (tf->device & 0xf) << 24;
547
548 block |= tf->lbah << 16;
549 block |= tf->lbam << 8;
550 block |= tf->lbal;
551 } else {
552 u32 cyl, head, sect;
553
554 cyl = tf->lbam | (tf->lbah << 8);
555 head = tf->device & 0xf;
556 sect = tf->lbal;
557
558 block = (cyl * dev->heads + head) * dev->sectors + sect;
559 }
560
561 return block;
562}
563
564/**
Tejun Heobd056d72006-11-14 22:47:10 +0900565 * ata_build_rw_tf - Build ATA taskfile for given read/write request
566 * @tf: Target ATA taskfile
567 * @dev: ATA device @tf belongs to
568 * @block: Block address
569 * @n_block: Number of blocks
570 * @tf_flags: RW/FUA etc...
571 * @tag: tag
572 *
573 * LOCKING:
574 * None.
575 *
576 * Build ATA taskfile @tf for read/write request described by
577 * @block, @n_block, @tf_flags and @tag on @dev.
578 *
579 * RETURNS:
580 *
581 * 0 on success, -ERANGE if the request is too large for @dev,
582 * -EINVAL if the request is invalid.
583 */
584int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
585 u64 block, u32 n_block, unsigned int tf_flags,
586 unsigned int tag)
587{
588 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
589 tf->flags |= tf_flags;
590
Tejun Heo6d1245b2007-02-20 23:20:27 +0900591 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900592 /* yay, NCQ */
593 if (!lba_48_ok(block, n_block))
594 return -ERANGE;
595
596 tf->protocol = ATA_PROT_NCQ;
597 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
598
599 if (tf->flags & ATA_TFLAG_WRITE)
600 tf->command = ATA_CMD_FPDMA_WRITE;
601 else
602 tf->command = ATA_CMD_FPDMA_READ;
603
604 tf->nsect = tag << 3;
605 tf->hob_feature = (n_block >> 8) & 0xff;
606 tf->feature = n_block & 0xff;
607
608 tf->hob_lbah = (block >> 40) & 0xff;
609 tf->hob_lbam = (block >> 32) & 0xff;
610 tf->hob_lbal = (block >> 24) & 0xff;
611 tf->lbah = (block >> 16) & 0xff;
612 tf->lbam = (block >> 8) & 0xff;
613 tf->lbal = block & 0xff;
614
615 tf->device = 1 << 6;
616 if (tf->flags & ATA_TFLAG_FUA)
617 tf->device |= 1 << 7;
618 } else if (dev->flags & ATA_DFLAG_LBA) {
619 tf->flags |= ATA_TFLAG_LBA;
620
621 if (lba_28_ok(block, n_block)) {
622 /* use LBA28 */
623 tf->device |= (block >> 24) & 0xf;
624 } else if (lba_48_ok(block, n_block)) {
625 if (!(dev->flags & ATA_DFLAG_LBA48))
626 return -ERANGE;
627
628 /* use LBA48 */
629 tf->flags |= ATA_TFLAG_LBA48;
630
631 tf->hob_nsect = (n_block >> 8) & 0xff;
632
633 tf->hob_lbah = (block >> 40) & 0xff;
634 tf->hob_lbam = (block >> 32) & 0xff;
635 tf->hob_lbal = (block >> 24) & 0xff;
636 } else
637 /* request too large even for LBA48 */
638 return -ERANGE;
639
640 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
641 return -EINVAL;
642
643 tf->nsect = n_block & 0xff;
644
645 tf->lbah = (block >> 16) & 0xff;
646 tf->lbam = (block >> 8) & 0xff;
647 tf->lbal = block & 0xff;
648
649 tf->device |= ATA_LBA;
650 } else {
651 /* CHS */
652 u32 sect, head, cyl, track;
653
654 /* The request -may- be too large for CHS addressing. */
655 if (!lba_28_ok(block, n_block))
656 return -ERANGE;
657
658 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
659 return -EINVAL;
660
661 /* Convert LBA to CHS */
662 track = (u32)block / dev->sectors;
663 cyl = track / dev->heads;
664 head = track % dev->heads;
665 sect = (u32)block % dev->sectors + 1;
666
667 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
668 (u32)block, track, cyl, head, sect);
669
670 /* Check whether the converted CHS can fit.
671 Cylinder: 0-65535
672 Head: 0-15
673 Sector: 1-255*/
674 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
675 return -ERANGE;
676
677 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
678 tf->lbal = sect;
679 tf->lbam = cyl;
680 tf->lbah = cyl >> 8;
681 tf->device |= head;
682 }
683
684 return 0;
685}
686
687/**
Tejun Heocb95d562006-03-06 04:31:56 +0900688 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
689 * @pio_mask: pio_mask
690 * @mwdma_mask: mwdma_mask
691 * @udma_mask: udma_mask
692 *
693 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
694 * unsigned int xfer_mask.
695 *
696 * LOCKING:
697 * None.
698 *
699 * RETURNS:
700 * Packed xfer_mask.
701 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900702unsigned long ata_pack_xfermask(unsigned long pio_mask,
703 unsigned long mwdma_mask,
704 unsigned long udma_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900705{
706 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
707 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
708 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
709}
710
Tejun Heoc0489e42006-03-24 14:07:49 +0900711/**
712 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
713 * @xfer_mask: xfer_mask to unpack
714 * @pio_mask: resulting pio_mask
715 * @mwdma_mask: resulting mwdma_mask
716 * @udma_mask: resulting udma_mask
717 *
718 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
719 * Any NULL distination masks will be ignored.
720 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900721void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
722 unsigned long *mwdma_mask, unsigned long *udma_mask)
Tejun Heoc0489e42006-03-24 14:07:49 +0900723{
724 if (pio_mask)
725 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
726 if (mwdma_mask)
727 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
728 if (udma_mask)
729 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
730}
731
Tejun Heocb95d562006-03-06 04:31:56 +0900732static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900733 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900734 u8 base;
735} ata_xfer_tbl[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +0900736 { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
737 { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
738 { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
Tejun Heocb95d562006-03-06 04:31:56 +0900739 { -1, },
740};
741
742/**
743 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
744 * @xfer_mask: xfer_mask of interest
745 *
746 * Return matching XFER_* value for @xfer_mask. Only the highest
747 * bit of @xfer_mask is considered.
748 *
749 * LOCKING:
750 * None.
751 *
752 * RETURNS:
Tejun Heo70cd0712007-11-27 19:43:40 +0900753 * Matching XFER_* value, 0xff if no match found.
Tejun Heocb95d562006-03-06 04:31:56 +0900754 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900755u8 ata_xfer_mask2mode(unsigned long xfer_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900756{
757 int highbit = fls(xfer_mask) - 1;
758 const struct ata_xfer_ent *ent;
759
760 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
761 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
762 return ent->base + highbit - ent->shift;
Tejun Heo70cd0712007-11-27 19:43:40 +0900763 return 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900764}
765
766/**
767 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
768 * @xfer_mode: XFER_* of interest
769 *
770 * Return matching xfer_mask for @xfer_mode.
771 *
772 * LOCKING:
773 * None.
774 *
775 * RETURNS:
776 * Matching xfer_mask, 0 if no match found.
777 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900778unsigned long ata_xfer_mode2mask(u8 xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900779{
780 const struct ata_xfer_ent *ent;
781
782 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
783 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
Tejun Heo70cd0712007-11-27 19:43:40 +0900784 return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
785 & ~((1 << ent->shift) - 1);
Tejun Heocb95d562006-03-06 04:31:56 +0900786 return 0;
787}
788
789/**
790 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
791 * @xfer_mode: XFER_* of interest
792 *
793 * Return matching xfer_shift for @xfer_mode.
794 *
795 * LOCKING:
796 * None.
797 *
798 * RETURNS:
799 * Matching xfer_shift, -1 if no match found.
800 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900801int ata_xfer_mode2shift(unsigned long xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900802{
803 const struct ata_xfer_ent *ent;
804
805 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
806 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
807 return ent->shift;
808 return -1;
809}
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900812 * ata_mode_string - convert xfer_mask to string
813 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 *
815 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900816 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 *
818 * LOCKING:
819 * None.
820 *
821 * RETURNS:
822 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900823 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900825const char *ata_mode_string(unsigned long xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Tejun Heo75f554b2006-03-06 04:31:57 +0900827 static const char * const xfer_mode_str[] = {
828 "PIO0",
829 "PIO1",
830 "PIO2",
831 "PIO3",
832 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100833 "PIO5",
834 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900835 "MWDMA0",
836 "MWDMA1",
837 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100838 "MWDMA3",
839 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900840 "UDMA/16",
841 "UDMA/25",
842 "UDMA/33",
843 "UDMA/44",
844 "UDMA/66",
845 "UDMA/100",
846 "UDMA/133",
847 "UDMA7",
848 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900849 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900851 highbit = fls(xfer_mask) - 1;
852 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
853 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
Tejun Heo4c360c82006-04-01 01:38:17 +0900857static const char *sata_spd_string(unsigned int spd)
858{
859 static const char * const spd_str[] = {
860 "1.5 Gbps",
861 "3.0 Gbps",
862 };
863
864 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
865 return "<unknown>";
866 return spd_str[spd - 1];
867}
868
Tejun Heo3373efd2006-05-15 20:57:53 +0900869void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900870{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900871 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900872 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900873 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo562f0c22007-12-15 15:05:01 +0900874 ata_acpi_on_disable(dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +0900875 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
876 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900877 dev->class++;
878 }
879}
880
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400881static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
882{
883 struct ata_link *link = dev->link;
884 struct ata_port *ap = link->ap;
885 u32 scontrol;
886 unsigned int err_mask;
887 int rc;
888
889 /*
890 * disallow DIPM for drivers which haven't set
891 * ATA_FLAG_IPM. This is because when DIPM is enabled,
892 * phy ready will be set in the interrupt status on
893 * state changes, which will cause some drivers to
894 * think there are errors - additionally drivers will
895 * need to disable hot plug.
896 */
897 if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) {
898 ap->pm_policy = NOT_AVAILABLE;
899 return -EINVAL;
900 }
901
902 /*
903 * For DIPM, we will only enable it for the
904 * min_power setting.
905 *
906 * Why? Because Disks are too stupid to know that
907 * If the host rejects a request to go to SLUMBER
908 * they should retry at PARTIAL, and instead it
909 * just would give up. So, for medium_power to
910 * work at all, we need to only allow HIPM.
911 */
912 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
913 if (rc)
914 return rc;
915
916 switch (policy) {
917 case MIN_POWER:
918 /* no restrictions on IPM transitions */
919 scontrol &= ~(0x3 << 8);
920 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
921 if (rc)
922 return rc;
923
924 /* enable DIPM */
925 if (dev->flags & ATA_DFLAG_DIPM)
926 err_mask = ata_dev_set_feature(dev,
927 SETFEATURES_SATA_ENABLE, SATA_DIPM);
928 break;
929 case MEDIUM_POWER:
930 /* allow IPM to PARTIAL */
931 scontrol &= ~(0x1 << 8);
932 scontrol |= (0x2 << 8);
933 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
934 if (rc)
935 return rc;
936
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700937 /*
938 * we don't have to disable DIPM since IPM flags
939 * disallow transitions to SLUMBER, which effectively
940 * disable DIPM if it does not support PARTIAL
941 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400942 break;
943 case NOT_AVAILABLE:
944 case MAX_PERFORMANCE:
945 /* disable all IPM transitions */
946 scontrol |= (0x3 << 8);
947 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
948 if (rc)
949 return rc;
950
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700951 /*
952 * we don't have to disable DIPM since IPM flags
953 * disallow all transitions which effectively
954 * disable DIPM anyway.
955 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400956 break;
957 }
958
959 /* FIXME: handle SET FEATURES failure */
960 (void) err_mask;
961
962 return 0;
963}
964
965/**
966 * ata_dev_enable_pm - enable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -0700967 * @dev: device to enable power management
968 * @policy: the link power management policy
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400969 *
970 * Enable SATA Interface power management. This will enable
971 * Device Interface Power Management (DIPM) for min_power
972 * policy, and then call driver specific callbacks for
973 * enabling Host Initiated Power management.
974 *
975 * Locking: Caller.
976 * Returns: -EINVAL if IPM is not supported, 0 otherwise.
977 */
978void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy)
979{
980 int rc = 0;
981 struct ata_port *ap = dev->link->ap;
982
983 /* set HIPM first, then DIPM */
984 if (ap->ops->enable_pm)
985 rc = ap->ops->enable_pm(ap, policy);
986 if (rc)
987 goto enable_pm_out;
988 rc = ata_dev_set_dipm(dev, policy);
989
990enable_pm_out:
991 if (rc)
992 ap->pm_policy = MAX_PERFORMANCE;
993 else
994 ap->pm_policy = policy;
995 return /* rc */; /* hopefully we can use 'rc' eventually */
996}
997
Stephen Rothwell1992a5e2007-10-31 14:53:32 +1100998#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400999/**
1000 * ata_dev_disable_pm - disable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001001 * @dev: device to disable power management
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001002 *
1003 * Disable SATA Interface power management. This will disable
1004 * Device Interface Power Management (DIPM) without changing
1005 * policy, call driver specific callbacks for disabling Host
1006 * Initiated Power management.
1007 *
1008 * Locking: Caller.
1009 * Returns: void
1010 */
1011static void ata_dev_disable_pm(struct ata_device *dev)
1012{
1013 struct ata_port *ap = dev->link->ap;
1014
1015 ata_dev_set_dipm(dev, MAX_PERFORMANCE);
1016 if (ap->ops->disable_pm)
1017 ap->ops->disable_pm(ap);
1018}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001019#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001020
1021void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy)
1022{
1023 ap->pm_policy = policy;
Tejun Heo3ec25eb2008-03-27 18:37:14 +09001024 ap->link.eh_info.action |= ATA_EH_LPM;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001025 ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY;
1026 ata_port_schedule_eh(ap);
1027}
1028
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001029#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001030static void ata_lpm_enable(struct ata_host *host)
1031{
1032 struct ata_link *link;
1033 struct ata_port *ap;
1034 struct ata_device *dev;
1035 int i;
1036
1037 for (i = 0; i < host->n_ports; i++) {
1038 ap = host->ports[i];
1039 ata_port_for_each_link(link, ap) {
1040 ata_link_for_each_dev(dev, link)
1041 ata_dev_disable_pm(dev);
1042 }
1043 }
1044}
1045
1046static void ata_lpm_disable(struct ata_host *host)
1047{
1048 int i;
1049
1050 for (i = 0; i < host->n_ports; i++) {
1051 struct ata_port *ap = host->ports[i];
1052 ata_lpm_schedule(ap, ap->pm_policy);
1053 }
1054}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001055#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057/**
1058 * ata_dev_classify - determine device type based on ATA-spec signature
1059 * @tf: ATA taskfile register set for device to be identified
1060 *
1061 * Determine from taskfile register contents whether a device is
1062 * ATA or ATAPI, as per "Signature and persistence" section
1063 * of ATA/PI spec (volume 1, sect 5.14).
1064 *
1065 * LOCKING:
1066 * None.
1067 *
1068 * RETURNS:
Tejun Heo633273a2007-09-23 13:19:54 +09001069 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
1070 * %ATA_DEV_UNKNOWN the event of failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 */
Jeff Garzik057ace52005-10-22 14:27:05 -04001072unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
1074 /* Apple's open source Darwin code hints that some devices only
1075 * put a proper signature into the LBA mid/high registers,
1076 * So, we only check those. It's sufficient for uniqueness.
Tejun Heo633273a2007-09-23 13:19:54 +09001077 *
1078 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1079 * signatures for ATA and ATAPI devices attached on SerialATA,
1080 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
1081 * spec has never mentioned about using different signatures
1082 * for ATA/ATAPI devices. Then, Serial ATA II: Port
1083 * Multiplier specification began to use 0x69/0x96 to identify
1084 * port multpliers and 0x3c/0xc3 to identify SEMB device.
1085 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1086 * 0x69/0x96 shortly and described them as reserved for
1087 * SerialATA.
1088 *
1089 * We follow the current spec and consider that 0x69/0x96
1090 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 */
Tejun Heo633273a2007-09-23 13:19:54 +09001092 if ((tf->lbam == 0) && (tf->lbah == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 DPRINTK("found ATA device by sig\n");
1094 return ATA_DEV_ATA;
1095 }
1096
Tejun Heo633273a2007-09-23 13:19:54 +09001097 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 DPRINTK("found ATAPI device by sig\n");
1099 return ATA_DEV_ATAPI;
1100 }
1101
Tejun Heo633273a2007-09-23 13:19:54 +09001102 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1103 DPRINTK("found PMP device by sig\n");
1104 return ATA_DEV_PMP;
1105 }
1106
1107 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001108 printk(KERN_INFO "ata: SEMB device ignored\n");
Tejun Heo633273a2007-09-23 13:19:54 +09001109 return ATA_DEV_SEMB_UNSUP; /* not yet */
1110 }
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 DPRINTK("unknown device\n");
1113 return ATA_DEV_UNKNOWN;
1114}
1115
1116/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001117 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 * @id: IDENTIFY DEVICE results we will examine
1119 * @s: string into which data is output
1120 * @ofs: offset into identify device page
1121 * @len: length of string to return. must be an even number.
1122 *
1123 * The strings in the IDENTIFY DEVICE page are broken up into
1124 * 16-bit chunks. Run through the string, and output each
1125 * 8-bit chunk linearly, regardless of platform.
1126 *
1127 * LOCKING:
1128 * caller.
1129 */
1130
Tejun Heo6a62a042006-02-13 10:02:46 +09001131void ata_id_string(const u16 *id, unsigned char *s,
1132 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
1134 unsigned int c;
1135
1136 while (len > 0) {
1137 c = id[ofs] >> 8;
1138 *s = c;
1139 s++;
1140
1141 c = id[ofs] & 0xff;
1142 *s = c;
1143 s++;
1144
1145 ofs++;
1146 len -= 2;
1147 }
1148}
1149
Tejun Heo0e949ff2006-02-12 22:47:04 +09001150/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001151 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +09001152 * @id: IDENTIFY DEVICE results we will examine
1153 * @s: string into which data is output
1154 * @ofs: offset into identify device page
1155 * @len: length of string to return. must be an odd number.
1156 *
Tejun Heo6a62a042006-02-13 10:02:46 +09001157 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +09001158 * trims trailing spaces and terminates the resulting string with
1159 * null. @len must be actual maximum length (even number) + 1.
1160 *
1161 * LOCKING:
1162 * caller.
1163 */
Tejun Heo6a62a042006-02-13 10:02:46 +09001164void ata_id_c_string(const u16 *id, unsigned char *s,
1165 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +09001166{
1167 unsigned char *p;
1168
1169 WARN_ON(!(len & 1));
1170
Tejun Heo6a62a042006-02-13 10:02:46 +09001171 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +09001172
1173 p = s + strnlen(s, len - 1);
1174 while (p > s && p[-1] == ' ')
1175 p--;
1176 *p = '\0';
1177}
Edward Falk0baab862005-06-02 18:17:13 -04001178
Tejun Heodb6f8752007-09-03 12:31:58 +09001179static u64 ata_id_n_sectors(const u16 *id)
1180{
1181 if (ata_id_has_lba(id)) {
1182 if (ata_id_has_lba48(id))
1183 return ata_id_u64(id, 100);
1184 else
1185 return ata_id_u32(id, 60);
1186 } else {
1187 if (ata_id_current_chs_valid(id))
1188 return ata_id_u32(id, 57);
1189 else
1190 return id[1] * id[3] * id[6];
1191 }
1192}
1193
Tejun Heoa5987e02008-03-27 19:14:23 +09001194u64 ata_tf_to_lba48(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001195{
1196 u64 sectors = 0;
1197
1198 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1199 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
1200 sectors |= (tf->hob_lbal & 0xff) << 24;
1201 sectors |= (tf->lbah & 0xff) << 16;
1202 sectors |= (tf->lbam & 0xff) << 8;
1203 sectors |= (tf->lbal & 0xff);
1204
Tejun Heoa5987e02008-03-27 19:14:23 +09001205 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001206}
1207
Tejun Heoa5987e02008-03-27 19:14:23 +09001208u64 ata_tf_to_lba(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001209{
1210 u64 sectors = 0;
1211
1212 sectors |= (tf->device & 0x0f) << 24;
1213 sectors |= (tf->lbah & 0xff) << 16;
1214 sectors |= (tf->lbam & 0xff) << 8;
1215 sectors |= (tf->lbal & 0xff);
1216
Tejun Heoa5987e02008-03-27 19:14:23 +09001217 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001218}
1219
1220/**
Tejun Heoc728a912007-09-03 12:32:30 +09001221 * ata_read_native_max_address - Read native max address
1222 * @dev: target device
1223 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +01001224 *
Tejun Heoc728a912007-09-03 12:32:30 +09001225 * Perform an LBA48 or LBA28 native size query upon the device in
1226 * question.
1227 *
1228 * RETURNS:
1229 * 0 on success, -EACCES if command is aborted by the drive.
1230 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +01001231 */
Tejun Heoc728a912007-09-03 12:32:30 +09001232static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001233{
Tejun Heoc728a912007-09-03 12:32:30 +09001234 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001235 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001236 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001237
1238 ata_tf_init(dev, &tf);
1239
Tejun Heoc728a912007-09-03 12:32:30 +09001240 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +01001241 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001242
1243 if (lba48) {
1244 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1245 tf.flags |= ATA_TFLAG_LBA48;
1246 } else
1247 tf.command = ATA_CMD_READ_NATIVE_MAX;
1248
Alan Cox1e999732007-04-11 00:23:13 +01001249 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001250 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001251
Tejun Heo2b789102007-10-09 15:05:44 +09001252 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001253 if (err_mask) {
1254 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
1255 "max address (err_mask=0x%x)\n", err_mask);
1256 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1257 return -EACCES;
1258 return -EIO;
1259 }
Alan Cox1e999732007-04-11 00:23:13 +01001260
Tejun Heoc728a912007-09-03 12:32:30 +09001261 if (lba48)
Tejun Heoa5987e02008-03-27 19:14:23 +09001262 *max_sectors = ata_tf_to_lba48(&tf) + 1;
Tejun Heoc728a912007-09-03 12:32:30 +09001263 else
Tejun Heoa5987e02008-03-27 19:14:23 +09001264 *max_sectors = ata_tf_to_lba(&tf) + 1;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001265 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
Alan Cox93328e112007-09-29 04:06:48 -04001266 (*max_sectors)--;
Tejun Heoc728a912007-09-03 12:32:30 +09001267 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001268}
1269
1270/**
Tejun Heoc728a912007-09-03 12:32:30 +09001271 * ata_set_max_sectors - Set max sectors
1272 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -07001273 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +01001274 *
Tejun Heoc728a912007-09-03 12:32:30 +09001275 * Set max sectors of @dev to @new_sectors.
1276 *
1277 * RETURNS:
1278 * 0 on success, -EACCES if command is aborted or denied (due to
1279 * previous non-volatile SET_MAX) by the drive. -EIO on other
1280 * errors.
Alan Cox1e999732007-04-11 00:23:13 +01001281 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001282static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001283{
Tejun Heoc728a912007-09-03 12:32:30 +09001284 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001285 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001286 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001287
1288 new_sectors--;
1289
1290 ata_tf_init(dev, &tf);
1291
Alan Cox1e999732007-04-11 00:23:13 +01001292 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001293
1294 if (lba48) {
1295 tf.command = ATA_CMD_SET_MAX_EXT;
1296 tf.flags |= ATA_TFLAG_LBA48;
1297
1298 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1299 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1300 tf.hob_lbah = (new_sectors >> 40) & 0xff;
Tejun Heo1e582ba2007-09-21 20:07:14 +09001301 } else {
Tejun Heoc728a912007-09-03 12:32:30 +09001302 tf.command = ATA_CMD_SET_MAX;
1303
Tejun Heo1e582ba2007-09-21 20:07:14 +09001304 tf.device |= (new_sectors >> 24) & 0xf;
1305 }
1306
Alan Cox1e999732007-04-11 00:23:13 +01001307 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001308 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001309
1310 tf.lbal = (new_sectors >> 0) & 0xff;
1311 tf.lbam = (new_sectors >> 8) & 0xff;
1312 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +01001313
Tejun Heo2b789102007-10-09 15:05:44 +09001314 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001315 if (err_mask) {
1316 ata_dev_printk(dev, KERN_WARNING, "failed to set "
1317 "max address (err_mask=0x%x)\n", err_mask);
1318 if (err_mask == AC_ERR_DEV &&
1319 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1320 return -EACCES;
1321 return -EIO;
1322 }
Alan Cox1e999732007-04-11 00:23:13 +01001323
Tejun Heoc728a912007-09-03 12:32:30 +09001324 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001325}
1326
1327/**
1328 * ata_hpa_resize - Resize a device with an HPA set
1329 * @dev: Device to resize
1330 *
1331 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1332 * it if required to the full size of the media. The caller must check
1333 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +09001334 *
1335 * RETURNS:
1336 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +01001337 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001338static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +01001339{
Tejun Heo05027ad2007-09-03 12:32:57 +09001340 struct ata_eh_context *ehc = &dev->link->eh_context;
1341 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1342 u64 sectors = ata_id_n_sectors(dev->id);
1343 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +09001344 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -04001345
Tejun Heo05027ad2007-09-03 12:32:57 +09001346 /* do we need to do it? */
1347 if (dev->class != ATA_DEV_ATA ||
1348 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1349 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +09001350 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001351
Tejun Heo05027ad2007-09-03 12:32:57 +09001352 /* read native max address */
1353 rc = ata_read_native_max_address(dev, &native_sectors);
1354 if (rc) {
Tejun Heodda7aba2008-03-23 21:05:15 +09001355 /* If device aborted the command or HPA isn't going to
1356 * be unlocked, skip HPA resizing.
Tejun Heo05027ad2007-09-03 12:32:57 +09001357 */
Tejun Heodda7aba2008-03-23 21:05:15 +09001358 if (rc == -EACCES || !ata_ignore_hpa) {
Tejun Heo05027ad2007-09-03 12:32:57 +09001359 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
Tejun Heodda7aba2008-03-23 21:05:15 +09001360 "broken, skipping HPA handling\n");
Tejun Heo05027ad2007-09-03 12:32:57 +09001361 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001362
Tejun Heo05027ad2007-09-03 12:32:57 +09001363 /* we can continue if device aborted the command */
1364 if (rc == -EACCES)
1365 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001366 }
Tejun Heo37301a52007-06-25 20:45:54 +09001367
Tejun Heo05027ad2007-09-03 12:32:57 +09001368 return rc;
1369 }
1370
1371 /* nothing to do? */
1372 if (native_sectors <= sectors || !ata_ignore_hpa) {
1373 if (!print_info || native_sectors == sectors)
1374 return 0;
1375
1376 if (native_sectors > sectors)
1377 ata_dev_printk(dev, KERN_INFO,
1378 "HPA detected: current %llu, native %llu\n",
1379 (unsigned long long)sectors,
1380 (unsigned long long)native_sectors);
1381 else if (native_sectors < sectors)
1382 ata_dev_printk(dev, KERN_WARNING,
1383 "native sectors (%llu) is smaller than "
1384 "sectors (%llu)\n",
1385 (unsigned long long)native_sectors,
1386 (unsigned long long)sectors);
1387 return 0;
1388 }
1389
1390 /* let's unlock HPA */
1391 rc = ata_set_max_sectors(dev, native_sectors);
1392 if (rc == -EACCES) {
1393 /* if device aborted the command, skip HPA resizing */
1394 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1395 "(%llu -> %llu), skipping HPA handling\n",
1396 (unsigned long long)sectors,
1397 (unsigned long long)native_sectors);
1398 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1399 return 0;
1400 } else if (rc)
1401 return rc;
1402
1403 /* re-read IDENTIFY data */
1404 rc = ata_dev_reread_id(dev, 0);
1405 if (rc) {
1406 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1407 "data after HPA resizing\n");
1408 return rc;
1409 }
1410
1411 if (print_info) {
1412 u64 new_sectors = ata_id_n_sectors(dev->id);
1413 ata_dev_printk(dev, KERN_INFO,
1414 "HPA unlocked: %llu -> %llu, native %llu\n",
1415 (unsigned long long)sectors,
1416 (unsigned long long)new_sectors,
1417 (unsigned long long)native_sectors);
1418 }
1419
1420 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001421}
1422
Edward Falk0baab862005-06-02 18:17:13 -04001423/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001425 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001427 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1428 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 *
1430 * LOCKING:
1431 * caller.
1432 */
1433
Tejun Heo0bd33002006-02-12 22:47:05 +09001434static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
1436 DPRINTK("49==0x%04x "
1437 "53==0x%04x "
1438 "63==0x%04x "
1439 "64==0x%04x "
1440 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001441 id[49],
1442 id[53],
1443 id[63],
1444 id[64],
1445 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 DPRINTK("80==0x%04x "
1447 "81==0x%04x "
1448 "82==0x%04x "
1449 "83==0x%04x "
1450 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001451 id[80],
1452 id[81],
1453 id[82],
1454 id[83],
1455 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 DPRINTK("88==0x%04x "
1457 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001458 id[88],
1459 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461
Tejun Heocb95d562006-03-06 04:31:56 +09001462/**
1463 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1464 * @id: IDENTIFY data to compute xfer mask from
1465 *
1466 * Compute the xfermask for this device. This is not as trivial
1467 * as it seems if we must consider early devices correctly.
1468 *
1469 * FIXME: pre IDE drive timing (do we care ?).
1470 *
1471 * LOCKING:
1472 * None.
1473 *
1474 * RETURNS:
1475 * Computed xfermask
1476 */
Tejun Heo7dc951a2007-11-27 19:43:42 +09001477unsigned long ata_id_xfermask(const u16 *id)
Tejun Heocb95d562006-03-06 04:31:56 +09001478{
Tejun Heo7dc951a2007-11-27 19:43:42 +09001479 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heocb95d562006-03-06 04:31:56 +09001480
1481 /* Usual case. Word 53 indicates word 64 is valid */
1482 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1483 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1484 pio_mask <<= 3;
1485 pio_mask |= 0x7;
1486 } else {
1487 /* If word 64 isn't valid then Word 51 high byte holds
1488 * the PIO timing number for the maximum. Turn it into
1489 * a mask.
1490 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001491 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001492 if (mode < 5) /* Valid PIO range */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001493 pio_mask = (2 << mode) - 1;
Alan Cox46767aeb2006-09-29 18:26:47 +01001494 else
1495 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001496
1497 /* But wait.. there's more. Design your standards by
1498 * committee and you too can get a free iordy field to
1499 * process. However its the speeds not the modes that
1500 * are supported... Note drivers using the timing API
1501 * will get this right anyway
1502 */
1503 }
1504
1505 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001506
Alan Coxb352e572006-08-10 18:52:12 +01001507 if (ata_id_is_cfa(id)) {
1508 /*
1509 * Process compact flash extended modes
1510 */
1511 int pio = id[163] & 0x7;
1512 int dma = (id[163] >> 3) & 7;
1513
1514 if (pio)
1515 pio_mask |= (1 << 5);
1516 if (pio > 1)
1517 pio_mask |= (1 << 6);
1518 if (dma)
1519 mwdma_mask |= (1 << 3);
1520 if (dma > 1)
1521 mwdma_mask |= (1 << 4);
1522 }
1523
Tejun Heofb21f0d2006-03-12 12:34:35 +09001524 udma_mask = 0;
1525 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1526 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001527
1528 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1529}
1530
Tejun Heo86e45b62006-03-05 15:29:09 +09001531/**
Jeff Garzik442eacc2007-12-19 04:25:10 -05001532 * ata_pio_queue_task - Queue port_task
Tejun Heo86e45b62006-03-05 15:29:09 +09001533 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001534 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001535 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001536 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001537 *
1538 * Schedule @fn(@data) for execution after @delay jiffies using
1539 * port_task. There is one port_task per port and it's the
1540 * user(low level driver)'s responsibility to make sure that only
1541 * one task is active at any given time.
1542 *
1543 * libata core layer takes care of synchronization between
Jeff Garzik442eacc2007-12-19 04:25:10 -05001544 * port_task and EH. ata_pio_queue_task() may be ignored for EH
Tejun Heo86e45b62006-03-05 15:29:09 +09001545 * synchronization.
1546 *
1547 * LOCKING:
1548 * Inherited from caller.
1549 */
Tejun Heo624d5c52008-03-25 22:16:41 +09001550void ata_pio_queue_task(struct ata_port *ap, void *data, unsigned long delay)
Tejun Heo86e45b62006-03-05 15:29:09 +09001551{
David Howells65f27f32006-11-22 14:55:48 +00001552 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001553
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001554 /* may fail if ata_port_flush_task() in progress */
1555 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001556}
1557
1558/**
1559 * ata_port_flush_task - Flush port_task
1560 * @ap: The ata_port to flush port_task for
1561 *
1562 * After this function completes, port_task is guranteed not to
1563 * be running or scheduled.
1564 *
1565 * LOCKING:
1566 * Kernel thread context (may sleep)
1567 */
1568void ata_port_flush_task(struct ata_port *ap)
1569{
Tejun Heo86e45b62006-03-05 15:29:09 +09001570 DPRINTK("ENTER\n");
1571
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001572 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001573
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001574 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001575 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001576}
1577
Adrian Bunk7102d232007-01-04 00:09:36 +01001578static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001579{
Tejun Heo77853bf2006-01-23 13:09:36 +09001580 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001581
Tejun Heoa2a7a662005-12-13 14:48:31 +09001582 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001583}
1584
1585/**
Tejun Heo24326972006-11-14 22:47:09 +09001586 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001587 * @dev: Device to which the command is sent
1588 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001589 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001590 * @dma_dir: Data tranfer direction of the command
Randy Dunlap5c1ad8b2007-10-18 14:12:26 -07001591 * @sgl: sg list for the data buffer of the command
Tejun Heo24326972006-11-14 22:47:09 +09001592 * @n_elem: Number of sg entries
Tejun Heo2b789102007-10-09 15:05:44 +09001593 * @timeout: Timeout in msecs (0 for default)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001594 *
1595 * Executes libata internal command with timeout. @tf contains
1596 * command on entry and result on return. Timeout and error
1597 * conditions are reported via return value. No recovery action
1598 * is taken after a command times out. It's caller's duty to
1599 * clean up after timeout.
1600 *
1601 * LOCKING:
1602 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001603 *
1604 * RETURNS:
1605 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001606 */
Tejun Heo24326972006-11-14 22:47:09 +09001607unsigned ata_exec_internal_sg(struct ata_device *dev,
1608 struct ata_taskfile *tf, const u8 *cdb,
Jens Axboe87260212007-10-16 11:14:12 +02001609 int dma_dir, struct scatterlist *sgl,
Tejun Heo2b789102007-10-09 15:05:44 +09001610 unsigned int n_elem, unsigned long timeout)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001611{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001612 struct ata_link *link = dev->link;
1613 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001614 u8 command = tf->command;
1615 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001616 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001617 u32 preempted_sactive, preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001618 int preempted_nr_active_links;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001619 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001620 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001621 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001622 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001623
Jeff Garzikba6a1302006-06-22 23:46:10 -04001624 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001625
Tejun Heoe3180492006-05-15 20:58:09 +09001626 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001627 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001628 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001629 return AC_ERR_SYSTEM;
1630 }
1631
Tejun Heo2ab7db12006-05-15 20:58:02 +09001632 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001633
Tejun Heo2ab7db12006-05-15 20:58:02 +09001634 /* XXX: Tag 0 is used for drivers with legacy EH as some
1635 * drivers choke if any other tag is given. This breaks
1636 * ata_tag_internal() test for those drivers. Don't use new
1637 * EH stuff without converting to it.
1638 */
1639 if (ap->ops->error_handler)
1640 tag = ATA_TAG_INTERNAL;
1641 else
1642 tag = 0;
1643
Tejun Heo6cec4a32006-05-15 21:03:41 +09001644 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001645 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001646 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001647
1648 qc->tag = tag;
1649 qc->scsicmd = NULL;
1650 qc->ap = ap;
1651 qc->dev = dev;
1652 ata_qc_reinit(qc);
1653
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001654 preempted_tag = link->active_tag;
1655 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001656 preempted_qc_active = ap->qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001657 preempted_nr_active_links = ap->nr_active_links;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001658 link->active_tag = ATA_TAG_POISON;
1659 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001660 ap->qc_active = 0;
Tejun Heoda917d62007-09-23 13:14:12 +09001661 ap->nr_active_links = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001662
1663 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001664 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001665 if (cdb)
1666 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001667 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001668 qc->dma_dir = dma_dir;
1669 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001670 unsigned int i, buflen = 0;
Jens Axboe87260212007-10-16 11:14:12 +02001671 struct scatterlist *sg;
Tejun Heo24326972006-11-14 22:47:09 +09001672
Jens Axboe87260212007-10-16 11:14:12 +02001673 for_each_sg(sgl, sg, n_elem, i)
1674 buflen += sg->length;
Tejun Heo24326972006-11-14 22:47:09 +09001675
Jens Axboe87260212007-10-16 11:14:12 +02001676 ata_sg_init(qc, sgl, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001677 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001678 }
1679
Tejun Heo77853bf2006-01-23 13:09:36 +09001680 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001681 qc->complete_fn = ata_qc_complete_internal;
1682
Tejun Heo8e0e6942006-03-31 20:41:11 +09001683 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001684
Jeff Garzikba6a1302006-06-22 23:46:10 -04001685 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001686
Tejun Heo2b789102007-10-09 15:05:44 +09001687 if (!timeout)
1688 timeout = ata_probe_timeout * 1000 / HZ;
1689
1690 rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
Albert Lee41ade502006-03-14 11:19:04 +08001691
Tejun Heod95a7172006-05-15 20:58:14 +09001692 ata_port_flush_task(ap);
1693
1694 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001695 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001696
1697 /* We're racing with irq here. If we lose, the
1698 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001699 * twice. If we win, the port is frozen and will be
1700 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001701 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001702 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001703 qc->err_mask |= AC_ERR_TIMEOUT;
1704
1705 if (ap->ops->error_handler)
1706 ata_port_freeze(ap);
1707 else
1708 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001709
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001710 if (ata_msg_warn(ap))
1711 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001712 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001713 }
1714
Jeff Garzikba6a1302006-06-22 23:46:10 -04001715 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001716 }
1717
Tejun Heod95a7172006-05-15 20:58:14 +09001718 /* do post_internal_cmd */
1719 if (ap->ops->post_internal_cmd)
1720 ap->ops->post_internal_cmd(qc);
1721
Tejun Heoa51d6442007-03-20 15:24:11 +09001722 /* perform minimal error analysis */
1723 if (qc->flags & ATA_QCFLAG_FAILED) {
1724 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1725 qc->err_mask |= AC_ERR_DEV;
1726
1727 if (!qc->err_mask)
1728 qc->err_mask |= AC_ERR_OTHER;
1729
1730 if (qc->err_mask & ~AC_ERR_OTHER)
1731 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001732 }
1733
Tejun Heo15869302006-05-15 20:57:33 +09001734 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001735 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001736
Tejun Heoe61e0672006-05-15 20:57:40 +09001737 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001738 err_mask = qc->err_mask;
1739
1740 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001741 link->active_tag = preempted_tag;
1742 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001743 ap->qc_active = preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001744 ap->nr_active_links = preempted_nr_active_links;
Tejun Heo77853bf2006-01-23 13:09:36 +09001745
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001746 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1747 * Until those drivers are fixed, we detect the condition
1748 * here, fail the command with AC_ERR_SYSTEM and reenable the
1749 * port.
1750 *
1751 * Note that this doesn't change any behavior as internal
1752 * command failure results in disabling the device in the
1753 * higher layer for LLDDs without new reset/EH callbacks.
1754 *
1755 * Kill the following code as soon as those drivers are fixed.
1756 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001757 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001758 err_mask |= AC_ERR_SYSTEM;
1759 ata_port_probe(ap);
1760 }
1761
Jeff Garzikba6a1302006-06-22 23:46:10 -04001762 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001763
Tejun Heo77853bf2006-01-23 13:09:36 +09001764 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001765}
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767/**
Tejun Heo33480a02006-12-12 02:15:31 +09001768 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001769 * @dev: Device to which the command is sent
1770 * @tf: Taskfile registers for the command and the result
1771 * @cdb: CDB for packet command
1772 * @dma_dir: Data tranfer direction of the command
1773 * @buf: Data buffer of the command
1774 * @buflen: Length of data buffer
Tejun Heo2b789102007-10-09 15:05:44 +09001775 * @timeout: Timeout in msecs (0 for default)
Tejun Heo24326972006-11-14 22:47:09 +09001776 *
1777 * Wrapper around ata_exec_internal_sg() which takes simple
1778 * buffer instead of sg list.
1779 *
1780 * LOCKING:
1781 * None. Should be called with kernel context, might sleep.
1782 *
1783 * RETURNS:
1784 * Zero on success, AC_ERR_* mask on failure
1785 */
1786unsigned ata_exec_internal(struct ata_device *dev,
1787 struct ata_taskfile *tf, const u8 *cdb,
Tejun Heo2b789102007-10-09 15:05:44 +09001788 int dma_dir, void *buf, unsigned int buflen,
1789 unsigned long timeout)
Tejun Heo24326972006-11-14 22:47:09 +09001790{
Tejun Heo33480a02006-12-12 02:15:31 +09001791 struct scatterlist *psg = NULL, sg;
1792 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001793
Tejun Heo33480a02006-12-12 02:15:31 +09001794 if (dma_dir != DMA_NONE) {
1795 WARN_ON(!buf);
1796 sg_init_one(&sg, buf, buflen);
1797 psg = &sg;
1798 n_elem++;
1799 }
Tejun Heo24326972006-11-14 22:47:09 +09001800
Tejun Heo2b789102007-10-09 15:05:44 +09001801 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
1802 timeout);
Tejun Heo24326972006-11-14 22:47:09 +09001803}
1804
1805/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001806 * ata_do_simple_cmd - execute simple internal command
1807 * @dev: Device to which the command is sent
1808 * @cmd: Opcode to execute
1809 *
1810 * Execute a 'simple' command, that only consists of the opcode
1811 * 'cmd' itself, without filling any other registers
1812 *
1813 * LOCKING:
1814 * Kernel thread context (may sleep).
1815 *
1816 * RETURNS:
1817 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001818 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001819unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001820{
1821 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001822
1823 ata_tf_init(dev, &tf);
1824
1825 tf.command = cmd;
1826 tf.flags |= ATA_TFLAG_DEVICE;
1827 tf.protocol = ATA_PROT_NODATA;
1828
Tejun Heo2b789102007-10-09 15:05:44 +09001829 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001830}
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001833 * ata_pio_need_iordy - check if iordy needed
1834 * @adev: ATA device
1835 *
1836 * Check if the current speed of the device requires IORDY. Used
1837 * by various controllers for chip configuration.
1838 */
Jeff Garzika617c092007-05-21 20:14:23 -04001839
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001840unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1841{
Alan Cox432729f2007-03-08 23:22:59 +00001842 /* Controller doesn't support IORDY. Probably a pointless check
1843 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001844 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001845 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001846 /* PIO3 and higher it is mandatory */
1847 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001848 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001849 /* We turn it on when possible */
1850 if (ata_id_has_iordy(adev->id))
1851 return 1;
1852 return 0;
1853}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001854
Alan Cox432729f2007-03-08 23:22:59 +00001855/**
1856 * ata_pio_mask_no_iordy - Return the non IORDY mask
1857 * @adev: ATA device
1858 *
1859 * Compute the highest mode possible if we are not using iordy. Return
1860 * -1 if no iordy mode is available.
1861 */
Jeff Garzika617c092007-05-21 20:14:23 -04001862
Alan Cox432729f2007-03-08 23:22:59 +00001863static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1864{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001865 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001866 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001867 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001868 /* Is the speed faster than the drive allows non IORDY ? */
1869 if (pio) {
1870 /* This is cycle times not frequency - watch the logic! */
1871 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001872 return 3 << ATA_SHIFT_PIO;
1873 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001874 }
1875 }
Alan Cox432729f2007-03-08 23:22:59 +00001876 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001877}
1878
1879/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001880 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001881 * @dev: target device
1882 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001883 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001884 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001885 *
1886 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1887 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001888 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1889 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001890 *
Alan Cox50a99012007-08-08 14:27:00 +01001891 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001892 * now we abort if we hit that case.
Alan Cox50a99012007-08-08 14:27:00 +01001893 *
Tejun Heo49016ac2006-02-21 02:12:11 +09001894 * LOCKING:
1895 * Kernel thread context (may sleep)
1896 *
1897 * RETURNS:
1898 * 0 on success, -errno otherwise.
1899 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001900int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001901 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001902{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001903 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001904 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001905 struct ata_taskfile tf;
1906 unsigned int err_mask = 0;
1907 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001908 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001909 int rc;
1910
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001911 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001912 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001913
Tejun Heo49016ac2006-02-21 02:12:11 +09001914 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001915 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001916
1917 switch (class) {
1918 case ATA_DEV_ATA:
1919 tf.command = ATA_CMD_ID_ATA;
1920 break;
1921 case ATA_DEV_ATAPI:
1922 tf.command = ATA_CMD_ID_ATAPI;
1923 break;
1924 default:
1925 rc = -ENODEV;
1926 reason = "unsupported class";
1927 goto err_out;
1928 }
1929
1930 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001931
1932 /* Some devices choke if TF registers contain garbage. Make
1933 * sure those are properly initialized.
1934 */
1935 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1936
1937 /* Device presence detection is unreliable on some
1938 * controllers. Always poll IDENTIFY if available.
1939 */
1940 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001941
Tejun Heo3373efd2006-05-15 20:57:53 +09001942 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo2b789102007-10-09 15:05:44 +09001943 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
Tejun Heo49016ac2006-02-21 02:12:11 +09001944 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001945 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo1ffc1512008-03-23 15:16:53 +09001946 ata_dev_printk(dev, KERN_DEBUG,
1947 "NODEV after polling detection\n");
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001948 return -ENOENT;
1949 }
1950
Tejun Heo1ffc1512008-03-23 15:16:53 +09001951 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1952 /* Device or controller might have reported
1953 * the wrong device class. Give a shot at the
1954 * other IDENTIFY if the current one is
1955 * aborted by the device.
1956 */
1957 if (may_fallback) {
1958 may_fallback = 0;
Tejun Heo54936f82007-05-11 14:35:29 +02001959
Tejun Heo1ffc1512008-03-23 15:16:53 +09001960 if (class == ATA_DEV_ATA)
1961 class = ATA_DEV_ATAPI;
1962 else
1963 class = ATA_DEV_ATA;
1964 goto retry;
1965 }
1966
1967 /* Control reaches here iff the device aborted
1968 * both flavors of IDENTIFYs which happens
1969 * sometimes with phantom devices.
1970 */
1971 ata_dev_printk(dev, KERN_DEBUG,
1972 "both IDENTIFYs aborted, assuming NODEV\n");
1973 return -ENOENT;
Tejun Heo54936f82007-05-11 14:35:29 +02001974 }
1975
Tejun Heo49016ac2006-02-21 02:12:11 +09001976 rc = -EIO;
1977 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001978 goto err_out;
1979 }
1980
Tejun Heo54936f82007-05-11 14:35:29 +02001981 /* Falling back doesn't make sense if ID data was read
1982 * successfully at least once.
1983 */
1984 may_fallback = 0;
1985
Tejun Heo49016ac2006-02-21 02:12:11 +09001986 swap_buf_le16(id, ATA_ID_WORDS);
1987
Tejun Heo49016ac2006-02-21 02:12:11 +09001988 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001989 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01001990 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07001991
1992 if (class == ATA_DEV_ATA) {
1993 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1994 goto err_out;
1995 } else {
1996 if (ata_id_is_ata(id))
1997 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001998 }
1999
Mark Lord169439c2007-04-17 18:26:07 -04002000 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2001 tried_spinup = 1;
2002 /*
2003 * Drive powered-up in standby mode, and requires a specific
2004 * SET_FEATURES spin-up subcommand before it will accept
2005 * anything other than the original IDENTIFY command.
2006 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002007 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07002008 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04002009 rc = -EIO;
2010 reason = "SPINUP failed";
2011 goto err_out;
2012 }
2013 /*
2014 * If the drive initially returned incomplete IDENTIFY info,
2015 * we now must reissue the IDENTIFY command.
2016 */
2017 if (id[2] == 0x37c8)
2018 goto retry;
2019 }
2020
Tejun Heobff04642006-11-10 18:08:10 +09002021 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09002022 /*
2023 * The exact sequence expected by certain pre-ATA4 drives is:
2024 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01002025 * IDENTIFY (optional in early ATA)
2026 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09002027 * anything else..
2028 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01002029 *
2030 * Note that ATA4 says lba is mandatory so the second check
2031 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09002032 */
2033 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09002034 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09002035 if (err_mask) {
2036 rc = -EIO;
2037 reason = "INIT_DEV_PARAMS failed";
2038 goto err_out;
2039 }
2040
2041 /* current CHS translation info (id[53-58]) might be
2042 * changed. reread the identify device info.
2043 */
Tejun Heobff04642006-11-10 18:08:10 +09002044 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09002045 goto retry;
2046 }
2047 }
2048
2049 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09002050
Tejun Heo49016ac2006-02-21 02:12:11 +09002051 return 0;
2052
2053 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09002054 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002055 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09002056 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09002057 return rc;
2058}
2059
Tejun Heo3373efd2006-05-15 20:57:53 +09002060static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002061{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002062 struct ata_port *ap = dev->link->ap;
2063 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002064}
2065
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002066static void ata_dev_config_ncq(struct ata_device *dev,
2067 char *desc, size_t desc_sz)
2068{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002069 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002070 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
2071
2072 if (!ata_id_has_ncq(dev->id)) {
2073 desc[0] = '\0';
2074 return;
2075 }
Tejun Heo75683fe2007-07-05 13:31:27 +09002076 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07002077 snprintf(desc, desc_sz, "NCQ (not used)");
2078 return;
2079 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002080 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04002081 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002082 dev->flags |= ATA_DFLAG_NCQ;
2083 }
2084
2085 if (hdepth >= ddepth)
2086 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
2087 else
2088 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
2089}
2090
Tejun Heo49016ac2006-02-21 02:12:11 +09002091/**
Tejun Heoffeae412006-03-01 16:09:35 +09002092 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09002093 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 *
Tejun Heoffeae412006-03-01 16:09:35 +09002095 * Configure @dev according to @dev->id. Generic and low-level
2096 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 *
2098 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09002099 * Kernel thread context (may sleep)
2100 *
2101 * RETURNS:
2102 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09002104int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002106 struct ata_port *ap = dev->link->ap;
2107 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09002108 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002109 const u16 *id = dev->id;
Tejun Heo7dc951a2007-11-27 19:43:42 +09002110 unsigned long xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01002111 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002112 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2113 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05002114 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002116 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09002117 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002118 __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
2121
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002122 if (ata_msg_probe(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002123 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Tejun Heo75683fe2007-07-05 13:31:27 +09002125 /* set horkage */
2126 dev->horkage |= ata_dev_blacklisted(dev);
Tejun Heo33267322008-02-13 09:15:09 +09002127 ata_force_horkage(dev);
Tejun Heo75683fe2007-07-05 13:31:27 +09002128
Tejun Heo67465442007-05-15 03:28:16 +09002129 /* let ACPI work its magic */
2130 rc = ata_acpi_on_devcfg(dev);
2131 if (rc)
2132 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08002133
Tejun Heo05027ad2007-09-03 12:32:57 +09002134 /* massage HPA, do it early as it might change IDENTIFY data */
2135 rc = ata_hpa_resize(dev);
2136 if (rc)
2137 return rc;
2138
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002139 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002140 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002141 ata_dev_printk(dev, KERN_DEBUG,
2142 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2143 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002144 __func__,
Tejun Heof15a1da2006-05-15 20:57:56 +09002145 id[49], id[82], id[83], id[84],
2146 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002147
Tejun Heo208a9932006-03-05 17:55:58 +09002148 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09002149 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09002150 dev->max_sectors = 0;
2151 dev->cdb_len = 0;
2152 dev->n_sectors = 0;
2153 dev->cylinders = 0;
2154 dev->heads = 0;
2155 dev->sectors = 0;
2156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 /*
2158 * common ATA, ATAPI feature tests
2159 */
2160
Tejun Heoff8854b2006-03-06 04:31:56 +09002161 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002162 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002164 if (ata_msg_probe(ap))
2165 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Albert Leeef143d52007-06-05 13:01:33 +08002167 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2168 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2169 sizeof(fwrevbuf));
2170
2171 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2172 sizeof(modelbuf));
2173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 /* ATA-specific feature tests */
2175 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01002176 if (ata_id_is_cfa(id)) {
2177 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09002178 ata_dev_printk(dev, KERN_WARNING,
2179 "supports DRM functions and may "
2180 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01002181 snprintf(revbuf, 7, "CFA");
Alan Coxae8d4ee2007-11-04 22:05:49 -05002182 } else {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002183 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
Alan Coxae8d4ee2007-11-04 22:05:49 -05002184 /* Warn the user if the device has TPM extensions */
2185 if (ata_id_has_tpm(id))
2186 ata_dev_printk(dev, KERN_WARNING,
2187 "supports DRM functions and may "
2188 "not be fully accessable.\n");
2189 }
Alan Coxb352e572006-08-10 18:52:12 +01002190
Tejun Heo1148c3a2006-03-13 19:48:04 +09002191 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09002192
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002193 if (dev->id[59] & 0x100)
2194 dev->multi_count = dev->id[59] & 0xff;
2195
Tejun Heo1148c3a2006-03-13 19:48:04 +09002196 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09002197 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002198 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002199
Tejun Heo4c2d7212006-03-05 17:55:58 +09002200 lba_desc = "LBA";
2201 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002202 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002203 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002204 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09002205
2206 if (dev->n_sectors >= (1UL << 28) &&
2207 ata_id_has_flush_ext(id))
2208 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002209 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002210
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002211 /* config NCQ */
2212 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2213
Albert Lee8bf62ece2005-05-12 15:29:42 -04002214 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002215 if (ata_msg_drv(ap) && print_info) {
2216 ata_dev_printk(dev, KERN_INFO,
2217 "%s: %s, %s, max %s\n",
2218 revbuf, modelbuf, fwrevbuf,
2219 ata_mode_string(xfer_mask));
2220 ata_dev_printk(dev, KERN_INFO,
2221 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002222 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002223 dev->multi_count, lba_desc, ncq_desc);
2224 }
Tejun Heoffeae412006-03-01 16:09:35 +09002225 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002226 /* CHS */
2227
2228 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002229 dev->cylinders = id[1];
2230 dev->heads = id[3];
2231 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002232
Tejun Heo1148c3a2006-03-13 19:48:04 +09002233 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002234 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002235 dev->cylinders = id[54];
2236 dev->heads = id[55];
2237 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002238 }
2239
2240 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002241 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002242 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002243 "%s: %s, %s, max %s\n",
2244 revbuf, modelbuf, fwrevbuf,
2245 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002246 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002247 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2248 (unsigned long long)dev->n_sectors,
2249 dev->multi_count, dev->cylinders,
2250 dev->heads, dev->sectors);
2251 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002252 }
2253
Tejun Heo6e7846e2006-02-12 23:32:58 +09002254 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
2256
2257 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002258 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002259 const char *cdb_intr_string = "";
2260 const char *atapi_an_string = "";
Tejun Heo91163002008-02-21 13:25:50 +09002261 const char *dma_dir_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002262 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002263
Tejun Heo1148c3a2006-03-13 19:48:04 +09002264 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002266 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002267 ata_dev_printk(dev, KERN_WARNING,
2268 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002269 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 goto err_out_nosup;
2271 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002272 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Tejun Heo7d77b242007-09-23 13:14:13 +09002274 /* Enable ATAPI AN if both the host and device have
2275 * the support. If PMP is attached, SNTF is required
2276 * to enable ATAPI AN to discern between PHY status
2277 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002278 */
Tejun Heo7d77b242007-09-23 13:14:13 +09002279 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
Tejun Heo071f44b2008-04-07 22:47:22 +09002280 (!sata_pmp_attached(ap) ||
Tejun Heo7d77b242007-09-23 13:14:13 +09002281 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002282 unsigned int err_mask;
2283
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002284 /* issue SET feature command to turn this on */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002285 err_mask = ata_dev_set_feature(dev,
2286 SETFEATURES_SATA_ENABLE, SATA_AN);
Tejun Heo854c73a2007-09-23 13:14:11 +09002287 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002288 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002289 "failed to enable ATAPI AN "
2290 "(err_mask=0x%x)\n", err_mask);
2291 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002292 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002293 atapi_an_string = ", ATAPI AN";
2294 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002295 }
2296
Albert Lee08a556d2006-03-31 13:29:04 +08002297 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002298 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002299 cdb_intr_string = ", CDB intr";
2300 }
Albert Lee312f7da2005-09-27 17:38:03 +08002301
Tejun Heo91163002008-02-21 13:25:50 +09002302 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2303 dev->flags |= ATA_DFLAG_DMADIR;
2304 dma_dir_string = ", DMADIR";
2305 }
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002308 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002309 ata_dev_printk(dev, KERN_INFO,
Tejun Heo91163002008-02-21 13:25:50 +09002310 "ATAPI: %s, %s, max %s%s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002311 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002312 ata_mode_string(xfer_mask),
Tejun Heo91163002008-02-21 13:25:50 +09002313 cdb_intr_string, atapi_an_string,
2314 dma_dir_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
2316
Tejun Heo914ed352006-11-01 18:39:55 +09002317 /* determine max_sectors */
2318 dev->max_sectors = ATA_MAX_SECTORS;
2319 if (dev->flags & ATA_DFLAG_LBA48)
2320 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2321
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002322 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2323 if (ata_id_has_hipm(dev->id))
2324 dev->flags |= ATA_DFLAG_HIPM;
2325 if (ata_id_has_dipm(dev->id))
2326 dev->flags |= ATA_DFLAG_DIPM;
2327 }
2328
Alan Coxc5038fc2007-10-25 14:21:16 +01002329 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2330 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002331 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002332 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002333 ata_dev_printk(dev, KERN_INFO,
2334 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002335 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002336 dev->max_sectors = ATA_MAX_SECTORS;
2337 }
2338
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002339 if ((dev->class == ATA_DEV_ATAPI) &&
Albert Leef442cd82007-11-15 10:35:47 +09002340 (atapi_command_packet_set(id) == TYPE_TAPE)) {
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002341 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
Albert Leef442cd82007-11-15 10:35:47 +09002342 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2343 }
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002344
Tejun Heo75683fe2007-07-05 13:31:27 +09002345 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002346 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2347 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002348
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002349 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2350 dev->horkage |= ATA_HORKAGE_IPM;
2351
2352 /* reset link pm_policy for this port to no pm */
2353 ap->pm_policy = MAX_PERFORMANCE;
2354 }
2355
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002356 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002357 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002358
Alan Coxc5038fc2007-10-25 14:21:16 +01002359 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2360 /* Let the user know. We don't want to disallow opens for
2361 rescue purposes, or in case the vendor is just a blithering
2362 idiot. Do this after the dev_config call as some controllers
2363 with buggy firmware may want to avoid reporting false device
2364 bugs */
2365
2366 if (print_info) {
2367 ata_dev_printk(dev, KERN_WARNING,
2368"Drive reports diagnostics failure. This may indicate a drive\n");
2369 ata_dev_printk(dev, KERN_WARNING,
2370"fault or invalid emulation. Contact drive vendor for information.\n");
2371 }
2372 }
2373
Tejun Heoffeae412006-03-01 16:09:35 +09002374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
2376err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002377 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002378 ata_dev_printk(dev, KERN_DEBUG,
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002379 "%s: EXIT, err\n", __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002380 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
2382
2383/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002384 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002385 * @ap: port
2386 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002387 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002388 * detection.
2389 */
2390
2391int ata_cable_40wire(struct ata_port *ap)
2392{
2393 return ATA_CBL_PATA40;
2394}
2395
2396/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002397 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002398 * @ap: port
2399 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002400 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002401 * detection.
2402 */
2403
2404int ata_cable_80wire(struct ata_port *ap)
2405{
2406 return ATA_CBL_PATA80;
2407}
2408
2409/**
2410 * ata_cable_unknown - return unknown PATA cable.
2411 * @ap: port
2412 *
2413 * Helper method for drivers which have no PATA cable detection.
2414 */
2415
2416int ata_cable_unknown(struct ata_port *ap)
2417{
2418 return ATA_CBL_PATA_UNK;
2419}
2420
2421/**
Tejun Heoc88f90c2007-11-27 19:43:48 +09002422 * ata_cable_ignore - return ignored PATA cable.
2423 * @ap: port
2424 *
2425 * Helper method for drivers which don't use cable type to limit
2426 * transfer mode.
2427 */
2428int ata_cable_ignore(struct ata_port *ap)
2429{
2430 return ATA_CBL_PATA_IGN;
2431}
2432
2433/**
Alan Coxbe0d18d2007-03-06 02:37:56 -08002434 * ata_cable_sata - return SATA cable type
2435 * @ap: port
2436 *
2437 * Helper method for drivers which have SATA cables
2438 */
2439
2440int ata_cable_sata(struct ata_port *ap)
2441{
2442 return ATA_CBL_SATA;
2443}
2444
2445/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 * ata_bus_probe - Reset and probe ATA bus
2447 * @ap: Bus to probe
2448 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002449 * Master ATA bus probing function. Initiates a hardware-dependent
2450 * bus reset, then attempts to identify any devices found on
2451 * the bus.
2452 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002454 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 *
2456 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002457 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 */
2459
Brian King80289162006-08-07 14:27:31 -05002460int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002462 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002463 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002464 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002465 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Tejun Heo28ca5c52006-03-01 16:09:36 +09002467 ata_port_probe(ap);
2468
Tejun Heof58229f2007-08-06 18:36:23 +09002469 ata_link_for_each_dev(dev, &ap->link)
2470 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002471
2472 retry:
Tejun Heocdeab112007-10-29 16:41:09 +09002473 ata_link_for_each_dev(dev, &ap->link) {
2474 /* If we issue an SRST then an ATA drive (not ATAPI)
2475 * may change configuration and be in PIO0 timing. If
2476 * we do a hard reset (or are coming from power on)
2477 * this is true for ATA or ATAPI. Until we've set a
2478 * suitable controller mode we should not touch the
2479 * bus as we may be talking too fast.
2480 */
2481 dev->pio_mode = XFER_PIO_0;
2482
2483 /* If the controller has a pio mode setup function
2484 * then use it to set the chipset to rights. Don't
2485 * touch the DMA setup as that will be dealt with when
2486 * configuring devices.
2487 */
2488 if (ap->ops->set_piomode)
2489 ap->ops->set_piomode(ap, dev);
2490 }
2491
Tejun Heo20444702006-03-13 01:57:01 +09002492 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002493 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002494
Tejun Heof58229f2007-08-06 18:36:23 +09002495 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002496 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2497 dev->class != ATA_DEV_UNKNOWN)
2498 classes[dev->devno] = dev->class;
2499 else
2500 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002501
Tejun Heo52783c52006-05-31 18:28:22 +09002502 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Tejun Heo52783c52006-05-31 18:28:22 +09002505 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002506
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002507 /* read IDENTIFY page and configure devices. We have to do the identify
2508 specific sequence bass-ackwards so that PDIAG- is released by
2509 the slave device */
2510
Bartlomiej Zolnierkiewicza4ba7fe2008-04-02 10:35:15 +09002511 ata_link_for_each_dev_reverse(dev, &ap->link) {
Tejun Heof58229f2007-08-06 18:36:23 +09002512 if (tries[dev->devno])
2513 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002514
Tejun Heoe1211e32006-04-01 01:38:18 +09002515 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002516 continue;
2517
Tejun Heobff04642006-11-10 18:08:10 +09002518 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2519 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002520 if (rc)
2521 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002522 }
2523
Alan Coxbe0d18d2007-03-06 02:37:56 -08002524 /* Now ask for the cable type as PDIAG- should have been released */
2525 if (ap->ops->cable_detect)
2526 ap->cbl = ap->ops->cable_detect(ap);
2527
Alan Cox614fe292007-08-22 23:22:45 +01002528 /* We may have SATA bridge glue hiding here irrespective of the
2529 reported cable types and sensed types */
2530 ata_link_for_each_dev(dev, &ap->link) {
2531 if (!ata_dev_enabled(dev))
2532 continue;
2533 /* SATA drives indicate we have a bridge. We don't know which
2534 end of the link the bridge is which is a problem */
2535 if (ata_id_is_sata(dev->id))
2536 ap->cbl = ATA_CBL_SATA;
2537 }
2538
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002539 /* After the identify sequence we can now set up the devices. We do
2540 this in the normal order so that the user doesn't get confused */
2541
Tejun Heof58229f2007-08-06 18:36:23 +09002542 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002543 if (!ata_dev_enabled(dev))
2544 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002545
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002546 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002547 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002548 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002549 if (rc)
2550 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 }
2552
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002553 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002554 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002555 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002556 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Tejun Heof58229f2007-08-06 18:36:23 +09002558 ata_link_for_each_dev(dev, &ap->link)
2559 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002560 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002561
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002562 /* no device present, disable port */
2563 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002564 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002565
2566 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002567 tries[dev->devno]--;
2568
Tejun Heo14d2bac2006-04-02 17:54:46 +09002569 switch (rc) {
2570 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002571 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002572 tries[dev->devno] = 0;
2573 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002574
2575 case -ENODEV:
2576 /* give it just one more chance */
2577 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002578 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002579 if (tries[dev->devno] == 1) {
2580 /* This is the last chance, better to slow
2581 * down than lose it.
2582 */
Tejun Heo936fd732007-08-06 18:36:23 +09002583 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002584 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2585 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002586 }
2587
Tejun Heo4ae72a12007-02-02 16:22:30 +09002588 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002589 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002590
Tejun Heo14d2bac2006-04-02 17:54:46 +09002591 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
2593
2594/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002595 * ata_port_probe - Mark port as enabled
2596 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002598 * Modify @ap data structure such that the system
2599 * thinks that the entire port is enabled.
2600 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002601 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002602 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 */
2604
2605void ata_port_probe(struct ata_port *ap)
2606{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002607 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608}
2609
2610/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002611 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002612 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002613 *
2614 * This function prints link speed and status of a SATA link.
2615 *
2616 * LOCKING:
2617 * None.
2618 */
Adrian Bunk6bdb4fc2008-04-21 11:51:11 +03002619static void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002620{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002621 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002622
Tejun Heo936fd732007-08-06 18:36:23 +09002623 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002624 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002625 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002626
Tejun Heo936fd732007-08-06 18:36:23 +09002627 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002628 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002629 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002630 "SATA link up %s (SStatus %X SControl %X)\n",
2631 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002632 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002633 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002634 "SATA link down (SStatus %X SControl %X)\n",
2635 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002636 }
2637}
2638
2639/**
Alan Coxebdfca6e2006-03-23 15:38:34 +00002640 * ata_dev_pair - return other device on cable
Alan Coxebdfca6e2006-03-23 15:38:34 +00002641 * @adev: device
2642 *
2643 * Obtain the other device on the same cable, or if none is
2644 * present NULL is returned
2645 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002646
Tejun Heo3373efd2006-05-15 20:57:53 +09002647struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca6e2006-03-23 15:38:34 +00002648{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002649 struct ata_link *link = adev->link;
2650 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002651 if (!ata_dev_enabled(pair))
Alan Coxebdfca6e2006-03-23 15:38:34 +00002652 return NULL;
2653 return pair;
2654}
2655
2656/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002657 * ata_port_disable - Disable port.
2658 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002660 * Modify @ap data structure such that the system
2661 * thinks that the entire port is disabled, and should
2662 * never attempt to probe or communicate with devices
2663 * on this port.
2664 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002665 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002666 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 */
2668
2669void ata_port_disable(struct ata_port *ap)
2670{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002671 ap->link.device[0].class = ATA_DEV_NONE;
2672 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002673 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674}
2675
Tejun Heo1c3fae42006-04-02 20:53:28 +09002676/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002677 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002678 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002679 *
Tejun Heo936fd732007-08-06 18:36:23 +09002680 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002681 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002682 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002683 *
2684 * LOCKING:
2685 * Inherited from caller.
2686 *
2687 * RETURNS:
2688 * 0 on success, negative errno on failure
2689 */
Tejun Heo936fd732007-08-06 18:36:23 +09002690int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002691{
Tejun Heo81952c52006-05-15 20:57:47 +09002692 u32 sstatus, spd, mask;
2693 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002694
Tejun Heo936fd732007-08-06 18:36:23 +09002695 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002696 return -EOPNOTSUPP;
2697
2698 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002699 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002700 */
Tejun Heo936fd732007-08-06 18:36:23 +09002701 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002702 if (rc == 0)
2703 spd = (sstatus >> 4) & 0xf;
2704 else
Tejun Heo936fd732007-08-06 18:36:23 +09002705 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002706
Tejun Heo936fd732007-08-06 18:36:23 +09002707 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002708 if (mask <= 1)
2709 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002710
2711 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002712 highbit = fls(mask) - 1;
2713 mask &= ~(1 << highbit);
2714
Tejun Heo008a7892007-07-16 14:29:40 +09002715 /* Mask off all speeds higher than or equal to the current
2716 * one. Force 1.5Gbps if current SPD is not available.
2717 */
2718 if (spd > 1)
2719 mask &= (1 << (spd - 1)) - 1;
2720 else
2721 mask &= 1;
2722
2723 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002724 if (!mask)
2725 return -EINVAL;
2726
Tejun Heo936fd732007-08-06 18:36:23 +09002727 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002728
Tejun Heo936fd732007-08-06 18:36:23 +09002729 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002730 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002731
2732 return 0;
2733}
2734
Tejun Heo936fd732007-08-06 18:36:23 +09002735static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002736{
Tejun Heo52702222007-10-31 10:17:07 +09002737 struct ata_link *host_link = &link->ap->link;
2738 u32 limit, target, spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002739
Tejun Heo52702222007-10-31 10:17:07 +09002740 limit = link->sata_spd_limit;
2741
2742 /* Don't configure downstream link faster than upstream link.
2743 * It doesn't speed up anything and some PMPs choke on such
2744 * configuration.
2745 */
2746 if (!ata_is_host_link(link) && host_link->sata_spd)
2747 limit &= (1 << host_link->sata_spd) - 1;
2748
2749 if (limit == UINT_MAX)
2750 target = 0;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002751 else
Tejun Heo52702222007-10-31 10:17:07 +09002752 target = fls(limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002753
2754 spd = (*scontrol >> 4) & 0xf;
Tejun Heo52702222007-10-31 10:17:07 +09002755 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002756
Tejun Heo52702222007-10-31 10:17:07 +09002757 return spd != target;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002758}
2759
2760/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002761 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002762 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002763 *
2764 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002765 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002766 * whether hardreset is necessary to apply SATA spd
2767 * configuration.
2768 *
2769 * LOCKING:
2770 * Inherited from caller.
2771 *
2772 * RETURNS:
2773 * 1 if SATA spd configuration is needed, 0 otherwise.
2774 */
Adrian Bunk1dc55e82008-04-21 11:51:17 +03002775static int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002776{
2777 u32 scontrol;
2778
Tejun Heo936fd732007-08-06 18:36:23 +09002779 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heodb64bcf2007-10-31 10:17:06 +09002780 return 1;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002781
Tejun Heo936fd732007-08-06 18:36:23 +09002782 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002783}
2784
2785/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002786 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002787 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002788 *
Tejun Heo936fd732007-08-06 18:36:23 +09002789 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002790 *
2791 * LOCKING:
2792 * Inherited from caller.
2793 *
2794 * RETURNS:
2795 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002796 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002797 */
Tejun Heo936fd732007-08-06 18:36:23 +09002798int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002799{
2800 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002801 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002802
Tejun Heo936fd732007-08-06 18:36:23 +09002803 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002804 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002805
Tejun Heo936fd732007-08-06 18:36:23 +09002806 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002807 return 0;
2808
Tejun Heo936fd732007-08-06 18:36:23 +09002809 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002810 return rc;
2811
Tejun Heo1c3fae42006-04-02 20:53:28 +09002812 return 1;
2813}
2814
Alan Cox452503f2005-10-21 19:01:32 -04002815/*
2816 * This mode timing computation functionality is ported over from
2817 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2818 */
2819/*
Alan Coxb352e572006-08-10 18:52:12 +01002820 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002821 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002822 * for UDMA6, which is currently supported only by Maxtor drives.
2823 *
2824 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002825 */
2826
2827static const struct ata_timing ata_timing[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +09002828/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2829 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2830 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2831 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2832 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2833 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2834 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
2835 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002836
Tejun Heo70cd0712007-11-27 19:43:40 +09002837 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2838 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2839 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002840
Tejun Heo70cd0712007-11-27 19:43:40 +09002841 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
2842 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2843 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
Alan Coxb352e572006-08-10 18:52:12 +01002844 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Tejun Heo70cd0712007-11-27 19:43:40 +09002845 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002846
2847/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Tejun Heo70cd0712007-11-27 19:43:40 +09002848 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2849 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2850 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2851 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2852 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2853 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2854 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
Alan Cox452503f2005-10-21 19:01:32 -04002855
2856 { 0xFF }
2857};
2858
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002859#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
2860#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
Alan Cox452503f2005-10-21 19:01:32 -04002861
2862static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2863{
2864 q->setup = EZ(t->setup * 1000, T);
2865 q->act8b = EZ(t->act8b * 1000, T);
2866 q->rec8b = EZ(t->rec8b * 1000, T);
2867 q->cyc8b = EZ(t->cyc8b * 1000, T);
2868 q->active = EZ(t->active * 1000, T);
2869 q->recover = EZ(t->recover * 1000, T);
2870 q->cycle = EZ(t->cycle * 1000, T);
2871 q->udma = EZ(t->udma * 1000, UT);
2872}
2873
2874void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2875 struct ata_timing *m, unsigned int what)
2876{
2877 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2878 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2879 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2880 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2881 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2882 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2883 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2884 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2885}
2886
Tejun Heo63573572007-11-27 19:43:39 +09002887const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
Alan Cox452503f2005-10-21 19:01:32 -04002888{
Tejun Heo70cd0712007-11-27 19:43:40 +09002889 const struct ata_timing *t = ata_timing;
Alan Cox452503f2005-10-21 19:01:32 -04002890
Tejun Heo70cd0712007-11-27 19:43:40 +09002891 while (xfer_mode > t->mode)
2892 t++;
2893
2894 if (xfer_mode == t->mode)
2895 return t;
2896 return NULL;
Alan Cox452503f2005-10-21 19:01:32 -04002897}
2898
2899int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2900 struct ata_timing *t, int T, int UT)
2901{
2902 const struct ata_timing *s;
2903 struct ata_timing p;
2904
2905 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002906 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002907 */
Alan Cox452503f2005-10-21 19:01:32 -04002908
2909 if (!(s = ata_timing_find_mode(speed)))
2910 return -EINVAL;
2911
Albert Lee75b1f2f2005-11-16 17:06:18 +08002912 memcpy(t, s, sizeof(*s));
2913
Alan Cox452503f2005-10-21 19:01:32 -04002914 /*
2915 * If the drive is an EIDE drive, it can tell us it needs extended
2916 * PIO/MW_DMA cycle timing.
2917 */
2918
2919 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2920 memset(&p, 0, sizeof(p));
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002921 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
Alan Cox452503f2005-10-21 19:01:32 -04002922 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2923 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002924 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
Alan Cox452503f2005-10-21 19:01:32 -04002925 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2926 }
2927 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2928 }
2929
2930 /*
2931 * Convert the timing to bus clock counts.
2932 */
2933
Albert Lee75b1f2f2005-11-16 17:06:18 +08002934 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002935
2936 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002937 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2938 * S.M.A.R.T * and some other commands. We have to ensure that the
2939 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002940 */
2941
Alanfd3367af2006-12-07 12:41:18 +00002942 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002943 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2944 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2945 }
2946
2947 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002948 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002949 */
2950
2951 if (t->act8b + t->rec8b < t->cyc8b) {
2952 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2953 t->rec8b = t->cyc8b - t->act8b;
2954 }
2955
2956 if (t->active + t->recover < t->cycle) {
2957 t->active += (t->cycle - (t->active + t->recover)) / 2;
2958 t->recover = t->cycle - t->active;
2959 }
Jeff Garzika617c092007-05-21 20:14:23 -04002960
Alan Cox4f701d12007-04-23 11:55:36 +01002961 /* In a few cases quantisation may produce enough errors to
2962 leave t->cycle too low for the sum of active and recovery
2963 if so we must correct this */
2964 if (t->active + t->recover > t->cycle)
2965 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002966
2967 return 0;
2968}
2969
Tejun Heocf176e12006-04-02 17:54:46 +09002970/**
Tejun Heoa0f79b92007-12-18 16:33:05 +09002971 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
2972 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
2973 * @cycle: cycle duration in ns
2974 *
2975 * Return matching xfer mode for @cycle. The returned mode is of
2976 * the transfer type specified by @xfer_shift. If @cycle is too
2977 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
2978 * than the fastest known mode, the fasted mode is returned.
2979 *
2980 * LOCKING:
2981 * None.
2982 *
2983 * RETURNS:
2984 * Matching xfer_mode, 0xff if no match found.
2985 */
2986u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
2987{
2988 u8 base_mode = 0xff, last_mode = 0xff;
2989 const struct ata_xfer_ent *ent;
2990 const struct ata_timing *t;
2991
2992 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
2993 if (ent->shift == xfer_shift)
2994 base_mode = ent->base;
2995
2996 for (t = ata_timing_find_mode(base_mode);
2997 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
2998 unsigned short this_cycle;
2999
3000 switch (xfer_shift) {
3001 case ATA_SHIFT_PIO:
3002 case ATA_SHIFT_MWDMA:
3003 this_cycle = t->cycle;
3004 break;
3005 case ATA_SHIFT_UDMA:
3006 this_cycle = t->udma;
3007 break;
3008 default:
3009 return 0xff;
3010 }
3011
3012 if (cycle > this_cycle)
3013 break;
3014
3015 last_mode = t->mode;
3016 }
3017
3018 return last_mode;
3019}
3020
3021/**
Tejun Heocf176e12006-04-02 17:54:46 +09003022 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09003023 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09003024 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09003025 *
3026 * Adjust xfer masks of @dev downward. Note that this function
3027 * does not apply the change. Invoking ata_set_mode() afterwards
3028 * will apply the limit.
3029 *
3030 * LOCKING:
3031 * Inherited from caller.
3032 *
3033 * RETURNS:
3034 * 0 on success, negative errno on failure
3035 */
Tejun Heo458337d2007-02-02 16:22:30 +09003036int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09003037{
Tejun Heo458337d2007-02-02 16:22:30 +09003038 char buf[32];
Tejun Heo7dc951a2007-11-27 19:43:42 +09003039 unsigned long orig_mask, xfer_mask;
3040 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heo458337d2007-02-02 16:22:30 +09003041 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09003042
Tejun Heo458337d2007-02-02 16:22:30 +09003043 quiet = !!(sel & ATA_DNXFER_QUIET);
3044 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09003045
Tejun Heo458337d2007-02-02 16:22:30 +09003046 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3047 dev->mwdma_mask,
3048 dev->udma_mask);
3049 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09003050
Tejun Heo458337d2007-02-02 16:22:30 +09003051 switch (sel) {
3052 case ATA_DNXFER_PIO:
3053 highbit = fls(pio_mask) - 1;
3054 pio_mask &= ~(1 << highbit);
3055 break;
3056
3057 case ATA_DNXFER_DMA:
3058 if (udma_mask) {
3059 highbit = fls(udma_mask) - 1;
3060 udma_mask &= ~(1 << highbit);
3061 if (!udma_mask)
3062 return -ENOENT;
3063 } else if (mwdma_mask) {
3064 highbit = fls(mwdma_mask) - 1;
3065 mwdma_mask &= ~(1 << highbit);
3066 if (!mwdma_mask)
3067 return -ENOENT;
3068 }
3069 break;
3070
3071 case ATA_DNXFER_40C:
3072 udma_mask &= ATA_UDMA_MASK_40C;
3073 break;
3074
3075 case ATA_DNXFER_FORCE_PIO0:
3076 pio_mask &= 1;
3077 case ATA_DNXFER_FORCE_PIO:
3078 mwdma_mask = 0;
3079 udma_mask = 0;
3080 break;
3081
Tejun Heo458337d2007-02-02 16:22:30 +09003082 default:
3083 BUG();
3084 }
3085
3086 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3087
3088 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3089 return -ENOENT;
3090
3091 if (!quiet) {
3092 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3093 snprintf(buf, sizeof(buf), "%s:%s",
3094 ata_mode_string(xfer_mask),
3095 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3096 else
3097 snprintf(buf, sizeof(buf), "%s",
3098 ata_mode_string(xfer_mask));
3099
3100 ata_dev_printk(dev, KERN_WARNING,
3101 "limiting speed to %s\n", buf);
3102 }
Tejun Heocf176e12006-04-02 17:54:46 +09003103
3104 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3105 &dev->udma_mask);
3106
Tejun Heocf176e12006-04-02 17:54:46 +09003107 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09003108}
3109
Tejun Heo3373efd2006-05-15 20:57:53 +09003110static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003112 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo4055dee2008-02-07 10:34:08 +09003113 const char *dev_err_whine = "";
3114 int ign_dev_err = 0;
Tejun Heo83206a22006-03-24 15:25:31 +09003115 unsigned int err_mask;
3116 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Tejun Heoe8384602006-04-02 18:51:53 +09003118 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 if (dev->xfer_shift == ATA_SHIFT_PIO)
3120 dev->flags |= ATA_DFLAG_PIO;
3121
Tejun Heo3373efd2006-05-15 20:57:53 +09003122 err_mask = ata_dev_set_xfermode(dev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003123
Tejun Heo4055dee2008-02-07 10:34:08 +09003124 if (err_mask & ~AC_ERR_DEV)
3125 goto fail;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003126
Tejun Heo4055dee2008-02-07 10:34:08 +09003127 /* revalidate */
Tejun Heobaa1e782006-11-01 18:39:27 +09003128 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09003129 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09003130 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09003131 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09003132 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09003133
Alan Coxb93fda12008-04-08 16:36:44 +01003134 if (dev->xfer_shift == ATA_SHIFT_PIO) {
3135 /* Old CFA may refuse this command, which is just fine */
3136 if (ata_id_is_cfa(dev->id))
3137 ign_dev_err = 1;
3138 /* Catch several broken garbage emulations plus some pre
3139 ATA devices */
3140 if (ata_id_major_version(dev->id) == 0 &&
3141 dev->pio_mode <= XFER_PIO_2)
3142 ign_dev_err = 1;
3143 /* Some very old devices and some bad newer ones fail
3144 any kind of SET_XFERMODE request but support PIO0-2
3145 timings and no IORDY */
3146 if (!ata_id_has_iordy(dev->id) && dev->pio_mode <= XFER_PIO_2)
3147 ign_dev_err = 1;
3148 }
Tejun Heo4055dee2008-02-07 10:34:08 +09003149 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3150 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3151 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3152 dev->dma_mode == XFER_MW_DMA_0 &&
3153 (dev->id[63] >> 8) & 1)
3154 ign_dev_err = 1;
3155
3156 /* if the device is actually configured correctly, ignore dev err */
3157 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3158 ign_dev_err = 1;
3159
3160 if (err_mask & AC_ERR_DEV) {
3161 if (!ign_dev_err)
3162 goto fail;
3163 else
3164 dev_err_whine = " (device error ignored)";
3165 }
3166
Tejun Heo23e71c32006-03-06 04:31:57 +09003167 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3168 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
Tejun Heo4055dee2008-02-07 10:34:08 +09003170 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3171 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3172 dev_err_whine);
3173
Tejun Heo83206a22006-03-24 15:25:31 +09003174 return 0;
Tejun Heo4055dee2008-02-07 10:34:08 +09003175
3176 fail:
3177 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3178 "(err_mask=0x%x)\n", err_mask);
3179 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180}
3181
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182/**
Alan04351822007-03-06 02:37:52 -08003183 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09003184 * @link: link on which timings will be programmed
Joe Perches1967b7f2008-02-03 17:08:11 +02003185 * @r_failed_dev: out parameter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 *
Alan04351822007-03-06 02:37:52 -08003187 * Standard implementation of the function used to tune and set
3188 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3189 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003190 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04003191 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003193 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003194 *
3195 * RETURNS:
3196 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 */
Alan04351822007-03-06 02:37:52 -08003198
Tejun Heo02607312007-08-06 18:36:23 +09003199int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200{
Tejun Heo02607312007-08-06 18:36:23 +09003201 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09003202 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09003203 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09003204
Tejun Heoa6d5a512006-03-06 04:31:57 +09003205 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09003206 ata_link_for_each_dev(dev, link) {
Tejun Heo7dc951a2007-11-27 19:43:42 +09003207 unsigned long pio_mask, dma_mask;
Alan Coxb3a70602007-10-02 12:38:26 -04003208 unsigned int mode_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003209
Tejun Heoe1211e32006-04-01 01:38:18 +09003210 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003211 continue;
3212
Alan Coxb3a70602007-10-02 12:38:26 -04003213 mode_mask = ATA_DMA_MASK_ATA;
3214 if (dev->class == ATA_DEV_ATAPI)
3215 mode_mask = ATA_DMA_MASK_ATAPI;
3216 else if (ata_id_is_cfa(dev->id))
3217 mode_mask = ATA_DMA_MASK_CFA;
3218
Tejun Heo3373efd2006-05-15 20:57:53 +09003219 ata_dev_xfermask(dev);
Tejun Heo33267322008-02-13 09:15:09 +09003220 ata_force_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003221
Tejun Heoacf356b2006-03-24 14:07:50 +09003222 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3223 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
Alan Coxb3a70602007-10-02 12:38:26 -04003224
3225 if (libata_dma_mask & mode_mask)
3226 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3227 else
3228 dma_mask = 0;
3229
Tejun Heoacf356b2006-03-24 14:07:50 +09003230 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3231 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003232
Tejun Heo4f659772006-04-01 01:38:18 +09003233 found = 1;
Tejun Heo70cd0712007-11-27 19:43:40 +09003234 if (dev->dma_mode != 0xff)
Alan Cox5444a6f2006-03-27 18:58:20 +01003235 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003236 }
Tejun Heo4f659772006-04-01 01:38:18 +09003237 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003238 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003239
3240 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003241 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09003242 if (!ata_dev_enabled(dev))
3243 continue;
3244
Tejun Heo70cd0712007-11-27 19:43:40 +09003245 if (dev->pio_mode == 0xff) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003246 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09003247 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003248 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09003249 }
3250
3251 dev->xfer_mode = dev->pio_mode;
3252 dev->xfer_shift = ATA_SHIFT_PIO;
3253 if (ap->ops->set_piomode)
3254 ap->ops->set_piomode(ap, dev);
3255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Tejun Heoa6d5a512006-03-06 04:31:57 +09003257 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003258 ata_link_for_each_dev(dev, link) {
Tejun Heo70cd0712007-11-27 19:43:40 +09003259 if (!ata_dev_enabled(dev) || dev->dma_mode == 0xff)
Tejun Heoe8e06192006-04-01 01:38:18 +09003260 continue;
3261
3262 dev->xfer_mode = dev->dma_mode;
3263 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3264 if (ap->ops->set_dmamode)
3265 ap->ops->set_dmamode(ap, dev);
3266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09003269 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00003270 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02003271 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09003272 continue;
3273
Tejun Heo3373efd2006-05-15 20:57:53 +09003274 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09003275 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003276 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09003277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Tejun Heoe8e06192006-04-01 01:38:18 +09003279 /* Record simplex status. If we selected DMA then the other
3280 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01003281 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003282 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00003283 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003284
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003285 out:
3286 if (rc)
3287 *r_failed_dev = dev;
3288 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289}
3290
3291/**
Tejun Heoaa2731a2008-04-07 22:47:19 +09003292 * ata_wait_ready - wait for link to become ready
3293 * @link: link to be waited on
3294 * @deadline: deadline jiffies for the operation
3295 * @check_ready: callback to check link readiness
3296 *
3297 * Wait for @link to become ready. @check_ready should return
3298 * positive number if @link is ready, 0 if it isn't, -ENODEV if
3299 * link doesn't seem to be occupied, other errno for other error
3300 * conditions.
3301 *
3302 * Transient -ENODEV conditions are allowed for
3303 * ATA_TMOUT_FF_WAIT.
3304 *
3305 * LOCKING:
3306 * EH context.
3307 *
3308 * RETURNS:
3309 * 0 if @linke is ready before @deadline; otherwise, -errno.
3310 */
3311int ata_wait_ready(struct ata_link *link, unsigned long deadline,
3312 int (*check_ready)(struct ata_link *link))
3313{
3314 unsigned long start = jiffies;
3315 unsigned long nodev_deadline = start + ATA_TMOUT_FF_WAIT;
3316 int warned = 0;
3317
3318 if (time_after(nodev_deadline, deadline))
3319 nodev_deadline = deadline;
3320
3321 while (1) {
3322 unsigned long now = jiffies;
3323 int ready, tmp;
3324
3325 ready = tmp = check_ready(link);
3326 if (ready > 0)
3327 return 0;
3328
3329 /* -ENODEV could be transient. Ignore -ENODEV if link
3330 * is online. Also, some SATA devices take a long
3331 * time to clear 0xff after reset. For example,
3332 * HHD424020F7SV00 iVDR needs >= 800ms while Quantum
3333 * GoVault needs even more than that. Wait for
3334 * ATA_TMOUT_FF_WAIT on -ENODEV if link isn't offline.
3335 *
3336 * Note that some PATA controllers (pata_ali) explode
3337 * if status register is read more than once when
3338 * there's no device attached.
3339 */
3340 if (ready == -ENODEV) {
3341 if (ata_link_online(link))
3342 ready = 0;
3343 else if ((link->ap->flags & ATA_FLAG_SATA) &&
3344 !ata_link_offline(link) &&
3345 time_before(now, nodev_deadline))
3346 ready = 0;
3347 }
3348
3349 if (ready)
3350 return ready;
3351 if (time_after(now, deadline))
3352 return -EBUSY;
3353
3354 if (!warned && time_after(now, start + 5 * HZ) &&
3355 (deadline - now > 3 * HZ)) {
3356 ata_link_printk(link, KERN_WARNING,
3357 "link is slow to respond, please be patient "
3358 "(ready=%d)\n", tmp);
3359 warned = 1;
3360 }
3361
3362 msleep(50);
3363 }
3364}
3365
3366/**
3367 * ata_wait_after_reset - wait for link to become ready after reset
3368 * @link: link to be waited on
3369 * @deadline: deadline jiffies for the operation
3370 * @check_ready: callback to check link readiness
3371 *
3372 * Wait for @link to become ready after reset.
3373 *
3374 * LOCKING:
3375 * EH context.
3376 *
3377 * RETURNS:
3378 * 0 if @linke is ready before @deadline; otherwise, -errno.
3379 */
Harvey Harrison2b4221b2008-04-24 18:37:34 -07003380int ata_wait_after_reset(struct ata_link *link, unsigned long deadline,
Tejun Heoaa2731a2008-04-07 22:47:19 +09003381 int (*check_ready)(struct ata_link *link))
3382{
3383 msleep(ATA_WAIT_AFTER_RESET_MSECS);
3384
3385 return ata_wait_ready(link, deadline, check_ready);
3386}
3387
3388/**
Tejun Heo936fd732007-08-06 18:36:23 +09003389 * sata_link_debounce - debounce SATA phy status
3390 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003391 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003392 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003393 *
Tejun Heo936fd732007-08-06 18:36:23 +09003394* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003395 * holding the same value where DET is not 1 for @duration polled
3396 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003397 * beginning of the stable state. Because DET gets stuck at 1 on
3398 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003399 * until timeout then returns 0 if DET is stable at 1.
3400 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003401 * @timeout is further limited by @deadline. The sooner of the
3402 * two is used.
3403 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003404 * LOCKING:
3405 * Kernel thread context (may sleep)
3406 *
3407 * RETURNS:
3408 * 0 on success, -errno on failure.
3409 */
Tejun Heo936fd732007-08-06 18:36:23 +09003410int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3411 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003412{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003413 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003414 unsigned long duration = msecs_to_jiffies(params[1]);
3415 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003416 u32 last, cur;
3417 int rc;
3418
Tejun Heod4b2bab2007-02-02 16:50:52 +09003419 t = jiffies + msecs_to_jiffies(params[2]);
3420 if (time_before(t, deadline))
3421 deadline = t;
3422
Tejun Heo936fd732007-08-06 18:36:23 +09003423 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003424 return rc;
3425 cur &= 0xf;
3426
3427 last = cur;
3428 last_jiffies = jiffies;
3429
3430 while (1) {
3431 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003432 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003433 return rc;
3434 cur &= 0xf;
3435
3436 /* DET stable? */
3437 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003438 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003439 continue;
3440 if (time_after(jiffies, last_jiffies + duration))
3441 return 0;
3442 continue;
3443 }
3444
3445 /* unstable, start over */
3446 last = cur;
3447 last_jiffies = jiffies;
3448
Tejun Heof1545152007-07-16 14:29:40 +09003449 /* Check deadline. If debouncing failed, return
3450 * -EPIPE to tell upper layer to lower link speed.
3451 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003452 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003453 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003454 }
3455}
3456
3457/**
Tejun Heo936fd732007-08-06 18:36:23 +09003458 * sata_link_resume - resume SATA link
3459 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003460 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003461 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003462 *
Tejun Heo936fd732007-08-06 18:36:23 +09003463 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003464 *
3465 * LOCKING:
3466 * Kernel thread context (may sleep)
3467 *
3468 * RETURNS:
3469 * 0 on success, -errno on failure.
3470 */
Tejun Heo936fd732007-08-06 18:36:23 +09003471int sata_link_resume(struct ata_link *link, const unsigned long *params,
3472 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003473{
Tejun Heoac371982008-04-07 22:47:19 +09003474 u32 scontrol, serror;
Tejun Heo81952c52006-05-15 20:57:47 +09003475 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003476
Tejun Heo936fd732007-08-06 18:36:23 +09003477 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003478 return rc;
3479
Tejun Heo852ee162006-04-01 01:38:18 +09003480 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003481
Tejun Heo936fd732007-08-06 18:36:23 +09003482 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003483 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003484
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003485 /* Some PHYs react badly if SStatus is pounded immediately
3486 * after resuming. Delay 200ms before debouncing.
3487 */
3488 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003489
Tejun Heoac371982008-04-07 22:47:19 +09003490 if ((rc = sata_link_debounce(link, params, deadline)))
3491 return rc;
3492
Tejun Heof0465192008-05-19 01:15:08 +09003493 /* clear SError, some PHYs require this even for SRST to work */
Tejun Heoac371982008-04-07 22:47:19 +09003494 if (!(rc = sata_scr_read(link, SCR_ERROR, &serror)))
3495 rc = sata_scr_write(link, SCR_ERROR, serror);
Tejun Heoac371982008-04-07 22:47:19 +09003496
Tejun Heof0465192008-05-19 01:15:08 +09003497 return rc != -EINVAL ? rc : 0;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003498}
3499
Tejun Heof5914a42006-05-31 18:27:48 +09003500/**
Tejun Heo0aa11132008-04-07 22:47:18 +09003501 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003502 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003503 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003504 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003505 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003506 * prereset makes libata abort whole reset sequence and give up
3507 * that port, so prereset should be best-effort. It does its
3508 * best to prepare for reset sequence but if things go wrong, it
3509 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003510 *
3511 * LOCKING:
3512 * Kernel thread context (may sleep)
3513 *
3514 * RETURNS:
3515 * 0 on success, -errno otherwise.
3516 */
Tejun Heo0aa11132008-04-07 22:47:18 +09003517int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003518{
Tejun Heocc0680a2007-08-06 18:36:23 +09003519 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003520 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003521 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003522 int rc;
3523
Tejun Heof5914a42006-05-31 18:27:48 +09003524 /* if we're about to do hardreset, nothing more to do */
3525 if (ehc->i.action & ATA_EH_HARDRESET)
3526 return 0;
3527
Tejun Heo936fd732007-08-06 18:36:23 +09003528 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003529 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003530 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003531 /* whine about phy resume failure but proceed */
3532 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003533 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003534 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003535 }
3536
Tejun Heo45db2f62008-04-08 01:46:56 +09003537 /* no point in trying softreset on offline link */
3538 if (ata_link_offline(link))
3539 ehc->i.action &= ~ATA_EH_SOFTRESET;
3540
Tejun Heof5914a42006-05-31 18:27:48 +09003541 return 0;
3542}
3543
Tejun Heoc2bd5802006-01-24 17:05:22 +09003544/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003545 * sata_link_hardreset - reset link via SATA phy reset
3546 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003547 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003548 * @deadline: deadline jiffies for the operation
Tejun Heo9dadd452008-04-07 22:47:19 +09003549 * @online: optional out parameter indicating link onlineness
3550 * @check_ready: optional callback to check link readiness
Tejun Heoc2bd5802006-01-24 17:05:22 +09003551 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003552 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heo9dadd452008-04-07 22:47:19 +09003553 * After hardreset, link readiness is waited upon using
3554 * ata_wait_ready() if @check_ready is specified. LLDs are
3555 * allowed to not specify @check_ready and wait itself after this
3556 * function returns. Device classification is LLD's
3557 * responsibility.
3558 *
3559 * *@online is set to one iff reset succeeded and @link is online
3560 * after reset.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003561 *
3562 * LOCKING:
3563 * Kernel thread context (may sleep)
3564 *
3565 * RETURNS:
3566 * 0 on success, -errno otherwise.
3567 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003568int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heo9dadd452008-04-07 22:47:19 +09003569 unsigned long deadline,
3570 bool *online, int (*check_ready)(struct ata_link *))
Tejun Heoc2bd5802006-01-24 17:05:22 +09003571{
Tejun Heo852ee162006-04-01 01:38:18 +09003572 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003573 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003574
Tejun Heoc2bd5802006-01-24 17:05:22 +09003575 DPRINTK("ENTER\n");
3576
Tejun Heo9dadd452008-04-07 22:47:19 +09003577 if (online)
3578 *online = false;
3579
Tejun Heo936fd732007-08-06 18:36:23 +09003580 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003581 /* SATA spec says nothing about how to reconfigure
3582 * spd. To be on the safe side, turn off phy during
3583 * reconfiguration. This works for at least ICH7 AHCI
3584 * and Sil3124.
3585 */
Tejun Heo936fd732007-08-06 18:36:23 +09003586 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003587 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003588
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003589 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003590
Tejun Heo936fd732007-08-06 18:36:23 +09003591 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003592 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003593
Tejun Heo936fd732007-08-06 18:36:23 +09003594 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003595 }
3596
3597 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003598 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003599 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003600
Tejun Heo852ee162006-04-01 01:38:18 +09003601 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003602
Tejun Heo936fd732007-08-06 18:36:23 +09003603 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003604 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003605
Tejun Heo1c3fae42006-04-02 20:53:28 +09003606 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003607 * 10.4.2 says at least 1 ms.
3608 */
3609 msleep(1);
3610
Tejun Heo936fd732007-08-06 18:36:23 +09003611 /* bring link back */
3612 rc = sata_link_resume(link, timing, deadline);
Tejun Heo9dadd452008-04-07 22:47:19 +09003613 if (rc)
3614 goto out;
3615 /* if link is offline nothing more to do */
3616 if (ata_link_offline(link))
3617 goto out;
3618
3619 /* Link is online. From this point, -ENODEV too is an error. */
3620 if (online)
3621 *online = true;
3622
Tejun Heo071f44b2008-04-07 22:47:22 +09003623 if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) {
Tejun Heo9dadd452008-04-07 22:47:19 +09003624 /* If PMP is supported, we have to do follow-up SRST.
3625 * Some PMPs don't send D2H Reg FIS after hardreset if
3626 * the first port is empty. Wait only for
3627 * ATA_TMOUT_PMP_SRST_WAIT.
3628 */
3629 if (check_ready) {
3630 unsigned long pmp_deadline;
3631
3632 pmp_deadline = jiffies + ATA_TMOUT_PMP_SRST_WAIT;
3633 if (time_after(pmp_deadline, deadline))
3634 pmp_deadline = deadline;
3635 ata_wait_ready(link, pmp_deadline, check_ready);
3636 }
3637 rc = -EAGAIN;
3638 goto out;
3639 }
3640
3641 rc = 0;
3642 if (check_ready)
3643 rc = ata_wait_ready(link, deadline, check_ready);
Tejun Heob6103f62006-11-01 17:59:53 +09003644 out:
Tejun Heo0cbf0712008-05-19 01:15:05 +09003645 if (rc && rc != -EAGAIN) {
3646 /* online is set iff link is online && reset succeeded */
3647 if (online)
3648 *online = false;
Tejun Heo9dadd452008-04-07 22:47:19 +09003649 ata_link_printk(link, KERN_ERR,
3650 "COMRESET failed (errno=%d)\n", rc);
Tejun Heo0cbf0712008-05-19 01:15:05 +09003651 }
Tejun Heob6103f62006-11-01 17:59:53 +09003652 DPRINTK("EXIT, rc=%d\n", rc);
3653 return rc;
3654}
3655
3656/**
Tejun Heo57c9efd2008-04-07 22:47:19 +09003657 * sata_std_hardreset - COMRESET w/o waiting or classification
3658 * @link: link to reset
3659 * @class: resulting class of attached device
3660 * @deadline: deadline jiffies for the operation
3661 *
3662 * Standard SATA COMRESET w/o waiting or classification.
3663 *
3664 * LOCKING:
3665 * Kernel thread context (may sleep)
3666 *
3667 * RETURNS:
3668 * 0 if link offline, -EAGAIN if link online, -errno on errors.
3669 */
3670int sata_std_hardreset(struct ata_link *link, unsigned int *class,
3671 unsigned long deadline)
3672{
3673 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
3674 bool online;
3675 int rc;
3676
3677 /* do hardreset */
3678 rc = sata_link_hardreset(link, timing, deadline, &online, NULL);
Tejun Heo57c9efd2008-04-07 22:47:19 +09003679 return online ? -EAGAIN : rc;
3680}
3681
3682/**
Tejun Heo203c75b2008-04-07 22:47:18 +09003683 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003684 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003685 * @classes: classes of attached devices
3686 *
3687 * This function is invoked after a successful reset. Note that
3688 * the device might have been reset more than once using
3689 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003690 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003691 * LOCKING:
3692 * Kernel thread context (may sleep)
3693 */
Tejun Heo203c75b2008-04-07 22:47:18 +09003694void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003695{
Tejun Heof0465192008-05-19 01:15:08 +09003696 u32 serror;
3697
Tejun Heoc2bd5802006-01-24 17:05:22 +09003698 DPRINTK("ENTER\n");
3699
Tejun Heof0465192008-05-19 01:15:08 +09003700 /* reset complete, clear SError */
3701 if (!sata_scr_read(link, SCR_ERROR, &serror))
3702 sata_scr_write(link, SCR_ERROR, serror);
3703
Tejun Heoc2bd5802006-01-24 17:05:22 +09003704 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003705 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003706
Tejun Heoc2bd5802006-01-24 17:05:22 +09003707 DPRINTK("EXIT\n");
3708}
3709
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003710/**
Tejun Heo623a3122006-03-05 17:55:58 +09003711 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003712 * @dev: device to compare against
3713 * @new_class: class of the new device
3714 * @new_id: IDENTIFY page of the new device
3715 *
3716 * Compare @new_class and @new_id against @dev and determine
3717 * whether @dev is the device indicated by @new_class and
3718 * @new_id.
3719 *
3720 * LOCKING:
3721 * None.
3722 *
3723 * RETURNS:
3724 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3725 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003726static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3727 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003728{
3729 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003730 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3731 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003732
3733 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003734 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3735 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003736 return 0;
3737 }
3738
Tejun Heoa0cf7332007-01-02 20:18:49 +09003739 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3740 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3741 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3742 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003743
3744 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003745 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3746 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003747 return 0;
3748 }
3749
3750 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003751 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3752 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003753 return 0;
3754 }
3755
Tejun Heo623a3122006-03-05 17:55:58 +09003756 return 1;
3757}
3758
3759/**
Tejun Heofe309112007-05-15 03:28:15 +09003760 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003761 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003762 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003763 *
3764 * Re-read IDENTIFY page and make sure @dev is still attached to
3765 * the port.
3766 *
3767 * LOCKING:
3768 * Kernel thread context (may sleep)
3769 *
3770 * RETURNS:
3771 * 0 on success, negative errno otherwise
3772 */
Tejun Heofe309112007-05-15 03:28:15 +09003773int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003774{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003775 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003776 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003777 int rc;
3778
Tejun Heofe635c72006-05-15 20:57:35 +09003779 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003780 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003781 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003782 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003783
3784 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003785 if (!ata_dev_same_device(dev, class, id))
3786 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003787
Tejun Heofe635c72006-05-15 20:57:35 +09003788 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003789 return 0;
3790}
3791
3792/**
3793 * ata_dev_revalidate - Revalidate ATA device
3794 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09003795 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09003796 * @readid_flags: read ID flags
3797 *
3798 * Re-read IDENTIFY page, make sure @dev is still attached to the
3799 * port and reconfigure it according to the new IDENTIFY page.
3800 *
3801 * LOCKING:
3802 * Kernel thread context (may sleep)
3803 *
3804 * RETURNS:
3805 * 0 on success, negative errno otherwise
3806 */
Tejun Heo422c9da2007-09-23 13:14:12 +09003807int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
3808 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09003809{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003810 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003811 int rc;
3812
3813 if (!ata_dev_enabled(dev))
3814 return -ENODEV;
3815
Tejun Heo422c9da2007-09-23 13:14:12 +09003816 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
3817 if (ata_class_enabled(new_class) &&
3818 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
3819 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
3820 dev->class, new_class);
3821 rc = -ENODEV;
3822 goto fail;
3823 }
3824
Tejun Heofe309112007-05-15 03:28:15 +09003825 /* re-read ID */
3826 rc = ata_dev_reread_id(dev, readid_flags);
3827 if (rc)
3828 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003829
3830 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003831 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003832 if (rc)
3833 goto fail;
3834
3835 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09003836 if (dev->class == ATA_DEV_ATA && n_sectors &&
3837 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003838 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3839 "%llu != %llu\n",
3840 (unsigned long long)n_sectors,
3841 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09003842
3843 /* restore original n_sectors */
3844 dev->n_sectors = n_sectors;
3845
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003846 rc = -ENODEV;
3847 goto fail;
3848 }
3849
3850 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003851
3852 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003853 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003854 return rc;
3855}
3856
Alan Cox6919a0a2006-10-27 19:08:46 -07003857struct ata_blacklist_entry {
3858 const char *model_num;
3859 const char *model_rev;
3860 unsigned long horkage;
3861};
3862
3863static const struct ata_blacklist_entry ata_device_blacklist [] = {
3864 /* Devices with DMA related problems under Linux */
3865 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3866 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3867 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3868 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3869 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3870 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3871 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3872 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3873 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3874 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3875 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3876 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3877 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3878 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3879 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3880 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3881 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3882 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3883 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3884 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3885 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3886 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3887 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3888 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3889 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3890 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003891 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3892 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003893 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003894 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09003895 /* Odd clown on sil3726/4726 PMPs */
3896 { "Config Disk", NULL, ATA_HORKAGE_NODMA |
3897 ATA_HORKAGE_SKIP_PM },
Alan Cox6919a0a2006-10-27 19:08:46 -07003898
Albert Lee18d6e9d2007-04-02 11:34:15 +08003899 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003900 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003901
Alan Cox6919a0a2006-10-27 19:08:46 -07003902 /* Devices we expect to fail diagnostics */
3903
3904 /* Devices where NCQ should be avoided */
3905 /* NCQ is slow */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003906 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo459ad682007-12-07 12:46:23 +09003907 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo09125ea2007-02-28 15:21:23 +09003908 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3909 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003910 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003911 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003912 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Paolo Ornatida6f0ec2007-10-04 11:06:56 +09003913 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
Tejun Heoe41bd3e2007-12-09 19:45:39 +09003914 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003915
Robert Hancock36e337d2007-04-02 22:05:29 -06003916 /* Blacklist entries taken from Silicon Image 3124/3132
3917 Windows driver .inf file - also several Linux problem reports */
3918 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3919 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3920 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003921
Tejun Heo16c55b02007-08-29 11:58:33 +09003922 /* devices which puke on READ_NATIVE_MAX */
3923 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3924 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3925 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3926 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003927
Alan Cox93328e112007-09-29 04:06:48 -04003928 /* Devices which report 1 sector over size HPA */
3929 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
3930 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
Mikko Rapelib152fcd2008-02-19 01:41:25 +01003931 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
Alan Cox93328e112007-09-29 04:06:48 -04003932
Alan Cox6bbfd532007-11-05 22:58:58 +00003933 /* Devices which get the IVB wrong */
3934 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
Alan Coxa79067e2008-04-29 14:08:36 +01003935 /* Maybe we should just blacklist TSSTcorp... */
3936 { "TSSTcorp CDDVDW SH-S202H", "SB00", ATA_HORKAGE_IVB, },
3937 { "TSSTcorp CDDVDW SH-S202H", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00003938 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
Peter Missele9f33402007-11-27 18:04:42 +01003939 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
3940 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
3941 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00003942
Alan Cox6919a0a2006-10-27 19:08:46 -07003943 /* End Marker */
3944 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003946
Adrian Bunk741b7762007-10-24 18:23:06 +02003947static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003948{
3949 const char *p;
3950 int len;
3951
3952 /*
3953 * check for trailing wildcard: *\0
3954 */
3955 p = strchr(patt, wildchar);
3956 if (p && ((*(p + 1)) == 0))
3957 len = p - patt;
Andrew Paprocki317b50b2007-10-15 15:43:12 -04003958 else {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003959 len = strlen(name);
Andrew Paprocki317b50b2007-10-15 15:43:12 -04003960 if (!len) {
3961 if (!*patt)
3962 return 0;
3963 return -1;
3964 }
3965 }
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003966
3967 return strncmp(patt, name, len);
3968}
3969
Tejun Heo75683fe2007-07-05 13:31:27 +09003970static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003972 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3973 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003974 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003975
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003976 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3977 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
Alan Cox6919a0a2006-10-27 19:08:46 -07003979 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003980 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003981 if (ad->model_rev == NULL)
3982 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003983 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07003984 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003985 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003986 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 return 0;
3989}
3990
Alan Cox6919a0a2006-10-27 19:08:46 -07003991static int ata_dma_blacklisted(const struct ata_device *dev)
3992{
3993 /* We don't support polling DMA.
3994 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3995 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3996 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003997 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07003998 (dev->flags & ATA_DFLAG_CDB_INTR))
3999 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09004000 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07004001}
4002
Tejun Heoa6d5a512006-03-06 04:31:57 +09004003/**
Alan Cox6bbfd532007-11-05 22:58:58 +00004004 * ata_is_40wire - check drive side detection
4005 * @dev: device
4006 *
4007 * Perform drive side detection decoding, allowing for device vendors
4008 * who can't follow the documentation.
4009 */
4010
4011static int ata_is_40wire(struct ata_device *dev)
4012{
4013 if (dev->horkage & ATA_HORKAGE_IVB)
4014 return ata_drive_40wire_relaxed(dev->id);
4015 return ata_drive_40wire(dev->id);
4016}
4017
4018/**
Alan Cox15a55512008-03-28 14:33:46 -07004019 * cable_is_40wire - 40/80/SATA decider
4020 * @ap: port to consider
4021 *
4022 * This function encapsulates the policy for speed management
4023 * in one place. At the moment we don't cache the result but
4024 * there is a good case for setting ap->cbl to the result when
4025 * we are called with unknown cables (and figuring out if it
4026 * impacts hotplug at all).
4027 *
4028 * Return 1 if the cable appears to be 40 wire.
4029 */
4030
4031static int cable_is_40wire(struct ata_port *ap)
4032{
4033 struct ata_link *link;
4034 struct ata_device *dev;
4035
4036 /* If the controller thinks we are 40 wire, we are */
4037 if (ap->cbl == ATA_CBL_PATA40)
4038 return 1;
4039 /* If the controller thinks we are 80 wire, we are */
4040 if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA)
4041 return 0;
Alan Coxf7920682008-04-08 16:37:50 +01004042 /* If the system is known to be 40 wire short cable (eg laptop),
4043 then we allow 80 wire modes even if the drive isn't sure */
4044 if (ap->cbl == ATA_CBL_PATA40_SHORT)
4045 return 0;
Alan Cox15a55512008-03-28 14:33:46 -07004046 /* If the controller doesn't know we scan
4047
4048 - Note: We look for all 40 wire detects at this point.
4049 Any 80 wire detect is taken to be 80 wire cable
4050 because
4051 - In many setups only the one drive (slave if present)
4052 will give a valid detect
4053 - If you have a non detect capable drive you don't
4054 want it to colour the choice
4055 */
4056 ata_port_for_each_link(link, ap) {
4057 ata_link_for_each_dev(dev, link) {
4058 if (!ata_is_40wire(dev))
4059 return 0;
4060 }
4061 }
4062 return 1;
4063}
4064
4065/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09004066 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09004067 * @dev: Device to compute xfermask for
4068 *
Tejun Heoacf356b2006-03-24 14:07:50 +09004069 * Compute supported xfermask of @dev and store it in
4070 * dev->*_mask. This function is responsible for applying all
4071 * known limits including host controller limits, device
4072 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09004073 *
4074 * LOCKING:
4075 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09004076 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004077static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004079 struct ata_link *link = dev->link;
4080 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04004081 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09004082 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083
Tejun Heo37deecb2006-08-10 16:59:07 +09004084 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09004085 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4086 ap->mwdma_mask, ap->udma_mask);
4087
Robert Hancock8343f882007-03-06 02:37:51 -08004088 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09004089 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4090 dev->mwdma_mask, dev->udma_mask);
4091 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09004092
Alan Coxb352e572006-08-10 18:52:12 +01004093 /*
4094 * CFA Advanced TrueIDE timings are not allowed on a shared
4095 * cable
4096 */
4097 if (ata_dev_pair(dev)) {
4098 /* No PIO5 or PIO6 */
4099 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4100 /* No MWDMA3 or MWDMA 4 */
4101 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4102 }
4103
Tejun Heo37deecb2006-08-10 16:59:07 +09004104 if (ata_dma_blacklisted(dev)) {
4105 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09004106 ata_dev_printk(dev, KERN_WARNING,
4107 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09004108 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09004109
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01004110 if ((host->flags & ATA_HOST_SIMPLEX) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004111 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09004112 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4113 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4114 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01004115 }
Tejun Heo565083e2006-04-02 17:54:47 +09004116
Jeff Garzike4246752007-03-09 09:56:46 -05004117 if (ap->flags & ATA_FLAG_NO_IORDY)
4118 xfer_mask &= ata_pio_mask_no_iordy(dev);
4119
Alan Cox5444a6f2006-03-27 18:58:20 +01004120 if (ap->ops->mode_filter)
Alan Coxa76b62ca2007-03-09 09:34:07 -05004121 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01004122
Robert Hancock8343f882007-03-06 02:37:51 -08004123 /* Apply cable rule here. Don't apply it early because when
4124 * we handle hot plug the cable type can itself change.
4125 * Check this last so that we know if the transfer rate was
4126 * solely limited by the cable.
4127 * Unknown or 80 wire cables reported host side are checked
4128 * drive side as well. Cases where we know a 40wire cable
4129 * is used safely for 80 are not checked here.
4130 */
4131 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4132 /* UDMA/44 or higher would be available */
Alan Cox15a55512008-03-28 14:33:46 -07004133 if (cable_is_40wire(ap)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004134 ata_dev_printk(dev, KERN_WARNING,
Robert Hancock8343f882007-03-06 02:37:51 -08004135 "limited to UDMA/33 due to 40-wire cable\n");
4136 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4137 }
4138
Tejun Heo565083e2006-04-02 17:54:47 +09004139 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4140 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141}
4142
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 * @dev: Device to which command will be sent
4146 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004147 * Issue SET FEATURES - XFER MODE command to device @dev
4148 * on port @ap.
4149 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004151 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004152 *
4153 * RETURNS:
4154 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 */
4156
Tejun Heo3373efd2006-05-15 20:57:53 +09004157static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158{
Tejun Heoa0123702005-12-13 14:49:31 +09004159 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004160 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
4162 /* set up set-features taskfile */
4163 DPRINTK("set features - xfer mode\n");
4164
Tejun Heo464cf172007-05-27 15:10:40 +02004165 /* Some controllers and ATAPI devices show flaky interrupt
4166 * behavior after setting xfer mode. Use polling instead.
4167 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004168 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004169 tf.command = ATA_CMD_SET_FEATURES;
4170 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004171 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004172 tf.protocol = ATA_PROT_NODATA;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004173 /* If we are using IORDY we must send the mode setting command */
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004174 if (ata_pio_need_iordy(dev))
4175 tf.nsect = dev->xfer_mode;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004176 /* If the device has IORDY and the controller does not - turn it off */
4177 else if (ata_id_has_iordy(dev->id))
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004178 tf.nsect = 0x01;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004179 else /* In the ancient relic department - skip all of this */
4180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Tejun Heo2b789102007-10-09 15:05:44 +09004182 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
Tejun Heo83206a22006-03-24 15:25:31 +09004184 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4185 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187/**
Jeff Garzik218f3d32007-10-25 00:33:27 -04004188 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004189 * @dev: Device to which command will be sent
4190 * @enable: Whether to enable or disable the feature
Jeff Garzik218f3d32007-10-25 00:33:27 -04004191 * @feature: The sector count represents the feature to set
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004192 *
4193 * Issue SET FEATURES - SATA FEATURES command to device @dev
Jeff Garzik218f3d32007-10-25 00:33:27 -04004194 * on port @ap with sector count
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004195 *
4196 * LOCKING:
4197 * PCI/etc. bus probe sem.
4198 *
4199 * RETURNS:
4200 * 0 on success, AC_ERR_* mask otherwise.
4201 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04004202static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4203 u8 feature)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004204{
4205 struct ata_taskfile tf;
4206 unsigned int err_mask;
4207
4208 /* set up set-features taskfile */
4209 DPRINTK("set features - SATA features\n");
4210
4211 ata_tf_init(dev, &tf);
4212 tf.command = ATA_CMD_SET_FEATURES;
4213 tf.feature = enable;
4214 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4215 tf.protocol = ATA_PROT_NODATA;
Jeff Garzik218f3d32007-10-25 00:33:27 -04004216 tf.nsect = feature;
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004217
Tejun Heo2b789102007-10-09 15:05:44 +09004218 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004219
4220 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4221 return err_mask;
4222}
4223
4224/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004225 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004226 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004227 * @heads: Number of heads (taskfile parameter)
4228 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004229 *
4230 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004231 * Kernel thread context (may sleep)
4232 *
4233 * RETURNS:
4234 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004235 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004236static unsigned int ata_dev_init_params(struct ata_device *dev,
4237 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004238{
Tejun Heoa0123702005-12-13 14:49:31 +09004239 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004240 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004241
4242 /* Number of sectors per track 1-255. Number of heads 1-16 */
4243 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004244 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004245
4246 /* set up init dev params taskfile */
4247 DPRINTK("init dev params \n");
4248
Tejun Heo3373efd2006-05-15 20:57:53 +09004249 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004250 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4251 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4252 tf.protocol = ATA_PROT_NODATA;
4253 tf.nsect = sectors;
4254 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004255
Tejun Heo2b789102007-10-09 15:05:44 +09004256 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004257 /* A clean abort indicates an original or just out of spec drive
4258 and we should continue as we issue the setup based on the
4259 drive reported working geometry */
4260 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4261 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004262
Tejun Heo6aff8f12006-02-15 18:24:09 +09004263 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4264 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004265}
4266
4267/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004268 * ata_sg_clean - Unmap DMA memory associated with command
4269 * @qc: Command containing DMA memory to be released
4270 *
4271 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 *
4273 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004274 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004276void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277{
4278 struct ata_port *ap = qc->ap;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004279 struct scatterlist *sg = qc->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 int dir = qc->dma_dir;
4281
Tejun Heoa46314742006-02-11 19:11:13 +09004282 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283
James Bottomleydde20202008-02-19 11:36:56 +01004284 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285
James Bottomleydde20202008-02-19 11:36:56 +01004286 if (qc->n_elem)
4287 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288
4289 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004290 qc->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291}
4292
4293/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4295 * @qc: Metadata associated with taskfile to check
4296 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004297 * Allow low-level driver to filter ATA PACKET commands, returning
4298 * a status indicating whether or not it is OK to use DMA for the
4299 * supplied PACKET command.
4300 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004302 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004303 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 * RETURNS: 0 when ATAPI DMA can be used
4305 * nonzero otherwise
4306 */
4307int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4308{
4309 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310
Tejun Heob9a41972007-06-27 02:48:43 +09004311 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4312 * few ATAPI devices choke on such DMA requests.
4313 */
4314 if (unlikely(qc->nbytes & 15))
4315 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004316
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004318 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
Tejun Heob9a41972007-06-27 02:48:43 +09004320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321}
Tejun Heob9a41972007-06-27 02:48:43 +09004322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004324 * ata_std_qc_defer - Check whether a qc needs to be deferred
4325 * @qc: ATA command in question
4326 *
4327 * Non-NCQ commands cannot run with any other command, NCQ or
4328 * not. As upper layer only knows the queue depth, we are
4329 * responsible for maintaining exclusion. This function checks
4330 * whether a new command @qc can be issued.
4331 *
4332 * LOCKING:
4333 * spin_lock_irqsave(host lock)
4334 *
4335 * RETURNS:
4336 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4337 */
4338int ata_std_qc_defer(struct ata_queued_cmd *qc)
4339{
4340 struct ata_link *link = qc->dev->link;
4341
4342 if (qc->tf.protocol == ATA_PROT_NCQ) {
4343 if (!ata_tag_valid(link->active_tag))
4344 return 0;
4345 } else {
4346 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4347 return 0;
4348 }
4349
4350 return ATA_DEFER_LINK;
4351}
4352
Brian Kinge46834c2006-03-17 17:04:03 -06004353void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4354
Jeff Garzik0cba6322005-05-30 19:49:12 -04004355/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004356 * ata_sg_init - Associate command with scatter-gather table.
4357 * @qc: Command to be associated
4358 * @sg: Scatter-gather table.
4359 * @n_elem: Number of elements in s/g table.
4360 *
4361 * Initialize the data-related elements of queued_cmd @qc
4362 * to point to a scatter-gather table @sg, containing @n_elem
4363 * elements.
4364 *
4365 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004366 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004367 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4369 unsigned int n_elem)
4370{
Tejun Heoff2aeb12007-12-05 16:43:11 +09004371 qc->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 qc->n_elem = n_elem;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004373 qc->cursg = qc->sg;
4374}
4375
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004377 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4378 * @qc: Command with scatter-gather table to be mapped.
4379 *
4380 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 *
4382 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004383 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 *
4385 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004386 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 *
4388 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389static int ata_sg_setup(struct ata_queued_cmd *qc)
4390{
4391 struct ata_port *ap = qc->ap;
James Bottomleydde20202008-02-19 11:36:56 +01004392 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393
Tejun Heo44877b42007-02-21 01:06:51 +09004394 VPRINTK("ENTER, ata%u\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
James Bottomleydde20202008-02-19 11:36:56 +01004396 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
4397 if (n_elem < 1)
4398 return -1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004399
James Bottomleydde20202008-02-19 11:36:56 +01004400 DPRINTK("%d sg elements mapped\n", n_elem);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004401
James Bottomleydde20202008-02-19 11:36:56 +01004402 qc->n_elem = n_elem;
Tejun Heof92a2632007-12-05 16:43:10 +09004403 qc->flags |= ATA_QCFLAG_DMAMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404
4405 return 0;
4406}
4407
4408/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004409 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004410 * @buf: Buffer to swap
4411 * @buf_words: Number of 16-bit words in buffer.
4412 *
4413 * Swap halves of 16-bit words if needed to convert from
4414 * little-endian byte order to native cpu byte order, or
4415 * vice-versa.
4416 *
4417 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004418 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004419 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420void swap_buf_le16(u16 *buf, unsigned int buf_words)
4421{
4422#ifdef __BIG_ENDIAN
4423 unsigned int i;
4424
4425 for (i = 0; i < buf_words; i++)
4426 buf[i] = le16_to_cpu(buf[i]);
4427#endif /* __BIG_ENDIAN */
4428}
4429
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004430/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 * ata_qc_new - Request an available ATA command, for queueing
4432 * @ap: Port associated with device @dev
4433 * @dev: Device from whom we request an available command structure
4434 *
4435 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004436 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 */
4438
4439static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4440{
4441 struct ata_queued_cmd *qc = NULL;
4442 unsigned int i;
4443
Tejun Heoe3180492006-05-15 20:58:09 +09004444 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09004445 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09004446 return NULL;
4447
Tejun Heo2ab7db12006-05-15 20:58:02 +09004448 /* the last tag is reserved for internal command. */
4449 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004450 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004451 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 break;
4453 }
4454
4455 if (qc)
4456 qc->tag = i;
4457
4458 return qc;
4459}
4460
4461/**
4462 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 * @dev: Device from whom we request an available command structure
4464 *
4465 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004466 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 */
4468
Tejun Heo3373efd2006-05-15 20:57:53 +09004469struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004471 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 struct ata_queued_cmd *qc;
4473
4474 qc = ata_qc_new(ap);
4475 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 qc->scsicmd = NULL;
4477 qc->ap = ap;
4478 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004480 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 }
4482
4483 return qc;
4484}
4485
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486/**
4487 * ata_qc_free - free unused ata_queued_cmd
4488 * @qc: Command to complete
4489 *
4490 * Designed to free unused ata_queued_cmd object
4491 * in case something prevents using it.
4492 *
4493 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004494 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 */
4496void ata_qc_free(struct ata_queued_cmd *qc)
4497{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004498 struct ata_port *ap = qc->ap;
4499 unsigned int tag;
4500
Tejun Heoa46314742006-02-11 19:11:13 +09004501 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
Tejun Heo4ba946e2006-01-23 13:09:36 +09004503 qc->flags = 0;
4504 tag = qc->tag;
4505 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004506 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004507 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509}
4510
Tejun Heo76014422006-02-11 15:13:49 +09004511void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004513 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004514 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004515
Tejun Heoa46314742006-02-11 19:11:13 +09004516 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4517 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
4519 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4520 ata_sg_clean(qc);
4521
Tejun Heo7401abf2006-05-15 20:57:32 +09004522 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09004523 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004524 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09004525 if (!link->sactive)
4526 ap->nr_active_links--;
4527 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004528 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09004529 ap->nr_active_links--;
4530 }
4531
4532 /* clear exclusive status */
4533 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
4534 ap->excl_link == link))
4535 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09004536
Albert Lee3f3791d2005-08-16 14:25:38 +08004537 /* atapi: mark qc as inactive to prevent the interrupt handler
4538 * from completing the command twice later, before the error handler
4539 * is called. (when rc != 0 and atapi request sense is needed)
4540 */
4541 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004542 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004543
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004545 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546}
4547
Tejun Heo39599a52006-11-14 22:37:35 +09004548static void fill_result_tf(struct ata_queued_cmd *qc)
4549{
4550 struct ata_port *ap = qc->ap;
4551
Tejun Heo39599a52006-11-14 22:37:35 +09004552 qc->result_tf.flags = qc->tf.flags;
Tejun Heo22183bf2008-04-07 22:47:20 +09004553 ap->ops->qc_fill_rtf(qc);
Tejun Heo39599a52006-11-14 22:37:35 +09004554}
4555
Tejun Heo00115e02007-11-27 19:28:58 +09004556static void ata_verify_xfer(struct ata_queued_cmd *qc)
4557{
4558 struct ata_device *dev = qc->dev;
4559
4560 if (ata_tag_internal(qc->tag))
4561 return;
4562
4563 if (ata_is_nodata(qc->tf.protocol))
4564 return;
4565
4566 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
4567 return;
4568
4569 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
4570}
4571
Tejun Heof686bcb2006-05-15 20:58:05 +09004572/**
4573 * ata_qc_complete - Complete an active ATA command
4574 * @qc: Command to complete
4575 * @err_mask: ATA Status register contents
4576 *
4577 * Indicate to the mid and upper layers that an ATA
4578 * command has completed, with either an ok or not-ok status.
4579 *
4580 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004581 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09004582 */
4583void ata_qc_complete(struct ata_queued_cmd *qc)
4584{
4585 struct ata_port *ap = qc->ap;
4586
4587 /* XXX: New EH and old EH use different mechanisms to
4588 * synchronize EH with regular execution path.
4589 *
4590 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4591 * Normal execution path is responsible for not accessing a
4592 * failed qc. libata core enforces the rule by returning NULL
4593 * from ata_qc_from_tag() for failed qcs.
4594 *
4595 * Old EH depends on ata_qc_complete() nullifying completion
4596 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4597 * not synchronize with interrupt handler. Only PIO task is
4598 * taken care of.
4599 */
4600 if (ap->ops->error_handler) {
Tejun Heo4dbfa392007-10-25 18:22:44 +09004601 struct ata_device *dev = qc->dev;
4602 struct ata_eh_info *ehi = &dev->link->eh_info;
4603
Tejun Heob51e9e52006-06-29 01:29:30 +09004604 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09004605
4606 if (unlikely(qc->err_mask))
4607 qc->flags |= ATA_QCFLAG_FAILED;
4608
4609 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4610 if (!ata_tag_internal(qc->tag)) {
4611 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09004612 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004613 ata_qc_schedule_eh(qc);
4614 return;
4615 }
4616 }
4617
4618 /* read result TF if requested */
4619 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004620 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004621
Tejun Heo4dbfa392007-10-25 18:22:44 +09004622 /* Some commands need post-processing after successful
4623 * completion.
4624 */
4625 switch (qc->tf.command) {
4626 case ATA_CMD_SET_FEATURES:
4627 if (qc->tf.feature != SETFEATURES_WC_ON &&
4628 qc->tf.feature != SETFEATURES_WC_OFF)
4629 break;
4630 /* fall through */
4631 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
4632 case ATA_CMD_SET_MULTI: /* multi_count changed */
4633 /* revalidate device */
4634 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
4635 ata_port_schedule_eh(ap);
4636 break;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004637
4638 case ATA_CMD_SLEEP:
4639 dev->flags |= ATA_DFLAG_SLEEPING;
4640 break;
Tejun Heo4dbfa392007-10-25 18:22:44 +09004641 }
4642
Tejun Heo00115e02007-11-27 19:28:58 +09004643 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
4644 ata_verify_xfer(qc);
4645
Tejun Heof686bcb2006-05-15 20:58:05 +09004646 __ata_qc_complete(qc);
4647 } else {
4648 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4649 return;
4650
4651 /* read result TF if failed or requested */
4652 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004653 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004654
4655 __ata_qc_complete(qc);
4656 }
4657}
4658
Tejun Heodedaf2b2006-05-15 21:03:43 +09004659/**
4660 * ata_qc_complete_multiple - Complete multiple qcs successfully
4661 * @ap: port in question
4662 * @qc_active: new qc_active mask
Tejun Heodedaf2b2006-05-15 21:03:43 +09004663 *
4664 * Complete in-flight commands. This functions is meant to be
4665 * called from low-level driver's interrupt routine to complete
4666 * requests normally. ap->qc_active and @qc_active is compared
4667 * and commands are completed accordingly.
4668 *
4669 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004670 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004671 *
4672 * RETURNS:
4673 * Number of completed commands on success, -errno otherwise.
4674 */
Tejun Heo79f97da2008-04-07 22:47:20 +09004675int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004676{
4677 int nr_done = 0;
4678 u32 done_mask;
4679 int i;
4680
4681 done_mask = ap->qc_active ^ qc_active;
4682
4683 if (unlikely(done_mask & qc_active)) {
4684 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4685 "(%08x->%08x)\n", ap->qc_active, qc_active);
4686 return -EINVAL;
4687 }
4688
4689 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4690 struct ata_queued_cmd *qc;
4691
4692 if (!(done_mask & (1 << i)))
4693 continue;
4694
4695 if ((qc = ata_qc_from_tag(ap, i))) {
Tejun Heodedaf2b2006-05-15 21:03:43 +09004696 ata_qc_complete(qc);
4697 nr_done++;
4698 }
4699 }
4700
4701 return nr_done;
4702}
4703
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704/**
4705 * ata_qc_issue - issue taskfile to device
4706 * @qc: command to issue to device
4707 *
4708 * Prepare an ATA command to submission to device.
4709 * This includes mapping the data into a DMA-able
4710 * area, filling in the S/G table, and finally
4711 * writing the taskfile to hardware, starting the command.
4712 *
4713 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004714 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004716void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717{
4718 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004719 struct ata_link *link = qc->dev->link;
Tejun Heo405e66b2007-11-27 19:28:53 +09004720 u8 prot = qc->tf.protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721
Tejun Heodedaf2b2006-05-15 21:03:43 +09004722 /* Make sure only one non-NCQ command is outstanding. The
4723 * check is skipped for old EH because it reuses active qc to
4724 * request ATAPI sense.
4725 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004726 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09004727
Tejun Heo1973a022007-12-05 10:36:13 +09004728 if (ata_is_ncq(prot)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004729 WARN_ON(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09004730
4731 if (!link->sactive)
4732 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004733 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004734 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004735 WARN_ON(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09004736
4737 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004738 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004739 }
4740
Tejun Heoe4a70e72006-03-31 20:36:47 +09004741 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004742 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004743
Tejun Heof92a2632007-12-05 16:43:10 +09004744 /* We guarantee to LLDs that they will have at least one
4745 * non-zero sg if the command is a data command.
4746 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09004747 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
Tejun Heof92a2632007-12-05 16:43:10 +09004748
Tejun Heo405e66b2007-11-27 19:28:53 +09004749 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
Tejun Heof92a2632007-12-05 16:43:10 +09004750 (ap->flags & ATA_FLAG_PIO_DMA)))
Tejun Heo001102d2007-12-05 16:43:09 +09004751 if (ata_sg_setup(qc))
4752 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753
Tejun Heocf480622008-01-24 00:05:14 +09004754 /* if device is sleeping, schedule reset and abort the link */
Tejun Heo054a5fb2007-10-25 18:30:36 +09004755 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
Tejun Heocf480622008-01-24 00:05:14 +09004756 link->eh_info.action |= ATA_EH_RESET;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004757 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
4758 ata_link_abort(link);
4759 return;
4760 }
4761
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 ap->ops->qc_prep(qc);
4763
Tejun Heo8e0e6942006-03-31 20:41:11 +09004764 qc->err_mask |= ap->ops->qc_issue(qc);
4765 if (unlikely(qc->err_mask))
4766 goto err;
4767 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768
Tejun Heo8e436af2006-01-23 13:09:36 +09004769sg_err:
Tejun Heo8e0e6942006-03-31 20:41:11 +09004770 qc->err_mask |= AC_ERR_SYSTEM;
4771err:
4772 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773}
4774
4775/**
Tejun Heo34bf2172006-05-15 20:57:46 +09004776 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09004777 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09004778 *
Tejun Heo936fd732007-08-06 18:36:23 +09004779 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09004780 *
4781 * LOCKING:
4782 * None.
4783 *
4784 * RETURNS:
4785 * 1 if SCRs are accessible, 0 otherwise.
4786 */
Tejun Heo936fd732007-08-06 18:36:23 +09004787int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004788{
Tejun Heo936fd732007-08-06 18:36:23 +09004789 struct ata_port *ap = link->ap;
4790
Tejun Heoa16abc02007-05-21 18:33:47 +02004791 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09004792}
4793
4794/**
4795 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09004796 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004797 * @reg: SCR to read
4798 * @val: Place to store read value
4799 *
Tejun Heo936fd732007-08-06 18:36:23 +09004800 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a2007-09-23 13:19:54 +09004801 * guaranteed to succeed if @link is ap->link, the cable type of
4802 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09004803 *
4804 * LOCKING:
Tejun Heo633273a2007-09-23 13:19:54 +09004805 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004806 *
4807 * RETURNS:
4808 * 0 on success, negative errno on failure.
4809 */
Tejun Heo936fd732007-08-06 18:36:23 +09004810int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004811{
Tejun Heo633273a2007-09-23 13:19:54 +09004812 if (ata_is_host_link(link)) {
4813 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004814
Tejun Heo633273a2007-09-23 13:19:54 +09004815 if (sata_scr_valid(link))
4816 return ap->ops->scr_read(ap, reg, val);
4817 return -EOPNOTSUPP;
4818 }
4819
4820 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004821}
4822
4823/**
4824 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09004825 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004826 * @reg: SCR to write
4827 * @val: value to write
4828 *
Tejun Heo936fd732007-08-06 18:36:23 +09004829 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a2007-09-23 13:19:54 +09004830 * guaranteed to succeed if @link is ap->link, the cable type of
4831 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09004832 *
4833 * LOCKING:
Tejun Heo633273a2007-09-23 13:19:54 +09004834 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004835 *
4836 * RETURNS:
4837 * 0 on success, negative errno on failure.
4838 */
Tejun Heo936fd732007-08-06 18:36:23 +09004839int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004840{
Tejun Heo633273a2007-09-23 13:19:54 +09004841 if (ata_is_host_link(link)) {
4842 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004843
Tejun Heo633273a2007-09-23 13:19:54 +09004844 if (sata_scr_valid(link))
4845 return ap->ops->scr_write(ap, reg, val);
4846 return -EOPNOTSUPP;
4847 }
4848
4849 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004850}
4851
4852/**
4853 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09004854 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004855 * @reg: SCR to write
4856 * @val: value to write
4857 *
4858 * This function is identical to sata_scr_write() except that this
4859 * function performs flush after writing to the register.
4860 *
4861 * LOCKING:
Tejun Heo633273a2007-09-23 13:19:54 +09004862 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004863 *
4864 * RETURNS:
4865 * 0 on success, negative errno on failure.
4866 */
Tejun Heo936fd732007-08-06 18:36:23 +09004867int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004868{
Tejun Heo633273a2007-09-23 13:19:54 +09004869 if (ata_is_host_link(link)) {
4870 struct ata_port *ap = link->ap;
4871 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09004872
Tejun Heo633273a2007-09-23 13:19:54 +09004873 if (sata_scr_valid(link)) {
4874 rc = ap->ops->scr_write(ap, reg, val);
4875 if (rc == 0)
4876 rc = ap->ops->scr_read(ap, reg, &val);
4877 return rc;
4878 }
4879 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09004880 }
Tejun Heo633273a2007-09-23 13:19:54 +09004881
4882 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004883}
4884
4885/**
Tejun Heo936fd732007-08-06 18:36:23 +09004886 * ata_link_online - test whether the given link is online
4887 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09004888 *
Tejun Heo936fd732007-08-06 18:36:23 +09004889 * Test whether @link is online. Note that this function returns
4890 * 0 if online status of @link cannot be obtained, so
4891 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09004892 *
4893 * LOCKING:
4894 * None.
4895 *
4896 * RETURNS:
4897 * 1 if the port online status is available and online.
4898 */
Tejun Heo936fd732007-08-06 18:36:23 +09004899int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004900{
4901 u32 sstatus;
4902
Tejun Heo936fd732007-08-06 18:36:23 +09004903 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4904 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09004905 return 1;
4906 return 0;
4907}
4908
4909/**
Tejun Heo936fd732007-08-06 18:36:23 +09004910 * ata_link_offline - test whether the given link is offline
4911 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09004912 *
Tejun Heo936fd732007-08-06 18:36:23 +09004913 * Test whether @link is offline. Note that this function
4914 * returns 0 if offline status of @link cannot be obtained, so
4915 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09004916 *
4917 * LOCKING:
4918 * None.
4919 *
4920 * RETURNS:
4921 * 1 if the port offline status is available and offline.
4922 */
Tejun Heo936fd732007-08-06 18:36:23 +09004923int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004924{
4925 u32 sstatus;
4926
Tejun Heo936fd732007-08-06 18:36:23 +09004927 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4928 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09004929 return 1;
4930 return 0;
4931}
Edward Falk0baab862005-06-02 18:17:13 -04004932
Tejun Heo6ffa01d2007-03-02 17:32:47 +09004933#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04004934static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
4935 unsigned int action, unsigned int ehi_flags,
4936 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09004937{
4938 unsigned long flags;
4939 int i, rc;
4940
Jeff Garzikcca39742006-08-24 03:19:22 -04004941 for (i = 0; i < host->n_ports; i++) {
4942 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09004943 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09004944
4945 /* Previous resume operation might still be in
4946 * progress. Wait for PM_PENDING to clear.
4947 */
4948 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
4949 ata_port_wait_eh(ap);
4950 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4951 }
4952
4953 /* request PM ops to EH */
4954 spin_lock_irqsave(ap->lock, flags);
4955
4956 ap->pm_mesg = mesg;
4957 if (wait) {
4958 rc = 0;
4959 ap->pm_result = &rc;
4960 }
4961
4962 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09004963 __ata_port_for_each_link(link, ap) {
4964 link->eh_info.action |= action;
4965 link->eh_info.flags |= ehi_flags;
4966 }
Tejun Heo500530f2006-07-03 16:07:27 +09004967
4968 ata_port_schedule_eh(ap);
4969
4970 spin_unlock_irqrestore(ap->lock, flags);
4971
4972 /* wait and check result */
4973 if (wait) {
4974 ata_port_wait_eh(ap);
4975 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4976 if (rc)
4977 return rc;
4978 }
4979 }
4980
4981 return 0;
4982}
4983
4984/**
Jeff Garzikcca39742006-08-24 03:19:22 -04004985 * ata_host_suspend - suspend host
4986 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09004987 * @mesg: PM message
4988 *
Jeff Garzikcca39742006-08-24 03:19:22 -04004989 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09004990 * function requests EH to perform PM operations and waits for EH
4991 * to finish.
4992 *
4993 * LOCKING:
4994 * Kernel thread context (may sleep).
4995 *
4996 * RETURNS:
4997 * 0 on success, -errno on failure.
4998 */
Jeff Garzikcca39742006-08-24 03:19:22 -04004999int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005000{
Tejun Heo9666f402007-05-04 21:27:47 +02005001 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005002
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005003 /*
5004 * disable link pm on all ports before requesting
5005 * any pm activity
5006 */
5007 ata_lpm_enable(host);
5008
Jeff Garzikcca39742006-08-24 03:19:22 -04005009 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005010 if (rc == 0)
5011 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005012 return rc;
5013}
5014
5015/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005016 * ata_host_resume - resume host
5017 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005018 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005019 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005020 * function requests EH to perform PM operations and returns.
5021 * Note that all resume operations are performed parallely.
5022 *
5023 * LOCKING:
5024 * Kernel thread context (may sleep).
5025 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005026void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005027{
Tejun Heocf480622008-01-24 00:05:14 +09005028 ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET,
Jeff Garzikcca39742006-08-24 03:19:22 -04005029 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005030 host->dev->power.power_state = PMSG_ON;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005031
5032 /* reenable link pm */
5033 ata_lpm_disable(host);
Tejun Heo500530f2006-07-03 16:07:27 +09005034}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005035#endif
Tejun Heo500530f2006-07-03 16:07:27 +09005036
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005037/**
5038 * ata_port_start - Set port up for dma.
5039 * @ap: Port to initialize
5040 *
5041 * Called just after data structures for each port are
5042 * initialized. Allocates space for PRD table.
5043 *
5044 * May be used as the port_start() entry in ata_port_operations.
5045 *
5046 * LOCKING:
5047 * Inherited from caller.
5048 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005049int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050{
Brian King2f1f6102006-03-23 17:30:15 -06005051 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052
Tejun Heof0d36ef2007-01-20 16:00:28 +09005053 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5054 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 if (!ap->prd)
5056 return -ENOMEM;
5057
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 return 0;
5059}
5060
Edward Falk0baab862005-06-02 18:17:13 -04005061/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005062 * ata_dev_init - Initialize an ata_device structure
5063 * @dev: Device structure to initialize
5064 *
5065 * Initialize @dev in preparation for probing.
5066 *
5067 * LOCKING:
5068 * Inherited from caller.
5069 */
5070void ata_dev_init(struct ata_device *dev)
5071{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005072 struct ata_link *link = dev->link;
5073 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005074 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005075
Tejun Heo5a04bf42006-05-31 18:27:38 +09005076 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005077 link->sata_spd_limit = link->hw_sata_spd_limit;
5078 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005079
Tejun Heo72fa4b72006-05-31 18:27:32 +09005080 /* High bits of dev->flags are used to record warm plug
5081 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04005082 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09005083 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005084 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005085 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09005086 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005087 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005088
5089 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5090 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005091 dev->pio_mask = UINT_MAX;
5092 dev->mwdma_mask = UINT_MAX;
5093 dev->udma_mask = UINT_MAX;
5094}
5095
5096/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09005097 * ata_link_init - Initialize an ata_link structure
5098 * @ap: ATA port link is attached to
5099 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09005100 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09005101 *
5102 * Initialize @link.
5103 *
5104 * LOCKING:
5105 * Kernel thread context (may sleep)
5106 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005107void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005108{
5109 int i;
5110
5111 /* clear everything except for devices */
5112 memset(link, 0, offsetof(struct ata_link, device[0]));
5113
5114 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09005115 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005116 link->active_tag = ATA_TAG_POISON;
5117 link->hw_sata_spd_limit = UINT_MAX;
5118
5119 /* can't use iterator, ap isn't initialized yet */
5120 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5121 struct ata_device *dev = &link->device[i];
5122
5123 dev->link = link;
5124 dev->devno = dev - link->device;
5125 ata_dev_init(dev);
5126 }
5127}
5128
5129/**
5130 * sata_link_init_spd - Initialize link->sata_spd_limit
5131 * @link: Link to configure sata_spd_limit for
5132 *
5133 * Initialize @link->[hw_]sata_spd_limit to the currently
5134 * configured value.
5135 *
5136 * LOCKING:
5137 * Kernel thread context (may sleep).
5138 *
5139 * RETURNS:
5140 * 0 on success, -errno on failure.
5141 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005142int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005143{
Tejun Heo33267322008-02-13 09:15:09 +09005144 u32 scontrol;
5145 u8 spd;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005146 int rc;
5147
5148 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
5149 if (rc)
5150 return rc;
5151
5152 spd = (scontrol >> 4) & 0xf;
5153 if (spd)
5154 link->hw_sata_spd_limit &= (1 << spd) - 1;
5155
Tejun Heo33267322008-02-13 09:15:09 +09005156 ata_force_spd_limit(link);
5157
Tejun Heo4fb37a22007-08-06 18:36:23 +09005158 link->sata_spd_limit = link->hw_sata_spd_limit;
5159
5160 return 0;
5161}
5162
5163/**
Tejun Heof3187192007-04-17 23:44:07 +09005164 * ata_port_alloc - allocate and initialize basic ATA port resources
5165 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 *
Tejun Heof3187192007-04-17 23:44:07 +09005167 * Allocate and initialize basic ATA port resources.
5168 *
5169 * RETURNS:
5170 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005171 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005173 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 */
Tejun Heof3187192007-04-17 23:44:07 +09005175struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176{
Tejun Heof3187192007-04-17 23:44:07 +09005177 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178
Tejun Heof3187192007-04-17 23:44:07 +09005179 DPRINTK("ENTER\n");
5180
5181 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5182 if (!ap)
5183 return NULL;
5184
Tejun Heof4d6d002007-05-01 11:50:15 +02005185 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04005186 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005187 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09005188 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04005190 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09005191 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005193
5194#if defined(ATA_VERBOSE_DEBUG)
5195 /* turn on all debugging levels */
5196 ap->msg_enable = 0x00FF;
5197#elif defined(ATA_DEBUG)
5198 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 +09005199#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005200 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
Tejun Heo127102a2008-04-07 22:47:21 +09005203#ifdef CONFIG_ATA_SFF
Jeff Garzik442eacc2007-12-19 04:25:10 -05005204 INIT_DELAYED_WORK(&ap->port_task, ata_pio_task);
Tejun Heo127102a2008-04-07 22:47:21 +09005205#endif
David Howells65f27f32006-11-22 14:55:48 +00005206 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5207 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005208 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005209 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09005210 init_timer_deferrable(&ap->fastdrain_timer);
5211 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
5212 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Tejun Heo838df622006-05-15 20:57:44 +09005214 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09005215
Tejun Heo89898052007-08-06 18:36:23 +09005216 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217
5218#ifdef ATA_IRQ_TRAP
5219 ap->stats.unhandled_irq = 1;
5220 ap->stats.idle_irq = 1;
5221#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223}
5224
Tejun Heof0d36ef2007-01-20 16:00:28 +09005225static void ata_host_release(struct device *gendev, void *res)
5226{
5227 struct ata_host *host = dev_get_drvdata(gendev);
5228 int i;
5229
5230 for (i = 0; i < host->n_ports; i++) {
5231 struct ata_port *ap = host->ports[i];
5232
Tejun Heoecef7252007-04-17 23:44:06 +09005233 if (!ap)
5234 continue;
5235
Tejun Heo49114872007-04-17 23:44:06 +09005236 if (ap->scsi_host)
Tejun Heo1aa506e42007-03-09 19:36:12 +09005237 scsi_host_put(ap->scsi_host);
5238
Tejun Heo633273a2007-09-23 13:19:54 +09005239 kfree(ap->pmp_link);
Tejun Heo49114872007-04-17 23:44:06 +09005240 kfree(ap);
Tejun Heo1aa506e42007-03-09 19:36:12 +09005241 host->ports[i] = NULL;
5242 }
5243
Tejun Heo1aa56cc2007-02-27 22:33:21 +09005244 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005245}
5246
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247/**
Tejun Heof3187192007-04-17 23:44:07 +09005248 * ata_host_alloc - allocate and init basic ATA host resources
5249 * @dev: generic device this host is associated with
5250 * @max_ports: maximum number of ATA ports associated with this host
5251 *
5252 * Allocate and initialize basic ATA host resources. LLD calls
5253 * this function to allocate a host, initializes it fully and
5254 * attaches it using ata_host_register().
5255 *
5256 * @max_ports ports are allocated and host->n_ports is
5257 * initialized to @max_ports. The caller is allowed to decrease
5258 * host->n_ports before calling ata_host_register(). The unused
5259 * ports will be automatically freed on registration.
5260 *
5261 * RETURNS:
5262 * Allocate ATA host on success, NULL on failure.
5263 *
5264 * LOCKING:
5265 * Inherited from calling layer (may sleep).
5266 */
5267struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
5268{
5269 struct ata_host *host;
5270 size_t sz;
5271 int i;
5272
5273 DPRINTK("ENTER\n");
5274
5275 if (!devres_open_group(dev, NULL, GFP_KERNEL))
5276 return NULL;
5277
5278 /* alloc a container for our list of ATA ports (buses) */
5279 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
5280 /* alloc a container for our list of ATA ports (buses) */
5281 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
5282 if (!host)
5283 goto err_out;
5284
5285 devres_add(dev, host);
5286 dev_set_drvdata(dev, host);
5287
5288 spin_lock_init(&host->lock);
5289 host->dev = dev;
5290 host->n_ports = max_ports;
5291
5292 /* allocate ports bound to this host */
5293 for (i = 0; i < max_ports; i++) {
5294 struct ata_port *ap;
5295
5296 ap = ata_port_alloc(host);
5297 if (!ap)
5298 goto err_out;
5299
5300 ap->port_no = i;
5301 host->ports[i] = ap;
5302 }
5303
5304 devres_remove_group(dev, NULL);
5305 return host;
5306
5307 err_out:
5308 devres_release_group(dev, NULL);
5309 return NULL;
5310}
5311
5312/**
Tejun Heof5cda252007-04-17 23:44:07 +09005313 * ata_host_alloc_pinfo - alloc host and init with port_info array
5314 * @dev: generic device this host is associated with
5315 * @ppi: array of ATA port_info to initialize host with
5316 * @n_ports: number of ATA ports attached to this host
5317 *
5318 * Allocate ATA host and initialize with info from @ppi. If NULL
5319 * terminated, @ppi may contain fewer entries than @n_ports. The
5320 * last entry will be used for the remaining ports.
5321 *
5322 * RETURNS:
5323 * Allocate ATA host on success, NULL on failure.
5324 *
5325 * LOCKING:
5326 * Inherited from calling layer (may sleep).
5327 */
5328struct ata_host *ata_host_alloc_pinfo(struct device *dev,
5329 const struct ata_port_info * const * ppi,
5330 int n_ports)
5331{
5332 const struct ata_port_info *pi;
5333 struct ata_host *host;
5334 int i, j;
5335
5336 host = ata_host_alloc(dev, n_ports);
5337 if (!host)
5338 return NULL;
5339
5340 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
5341 struct ata_port *ap = host->ports[i];
5342
5343 if (ppi[j])
5344 pi = ppi[j++];
5345
5346 ap->pio_mask = pi->pio_mask;
5347 ap->mwdma_mask = pi->mwdma_mask;
5348 ap->udma_mask = pi->udma_mask;
5349 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09005350 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09005351 ap->ops = pi->port_ops;
5352
5353 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
5354 host->ops = pi->port_ops;
Tejun Heof5cda252007-04-17 23:44:07 +09005355 }
5356
5357 return host;
5358}
5359
Tejun Heo32ebbc02007-11-08 13:09:00 +09005360static void ata_host_stop(struct device *gendev, void *res)
5361{
5362 struct ata_host *host = dev_get_drvdata(gendev);
5363 int i;
5364
5365 WARN_ON(!(host->flags & ATA_HOST_STARTED));
5366
5367 for (i = 0; i < host->n_ports; i++) {
5368 struct ata_port *ap = host->ports[i];
5369
5370 if (ap->ops->port_stop)
5371 ap->ops->port_stop(ap);
5372 }
5373
5374 if (host->ops->host_stop)
5375 host->ops->host_stop(host);
5376}
5377
Tejun Heof5cda252007-04-17 23:44:07 +09005378/**
Tejun Heo029cfd62008-03-25 12:22:49 +09005379 * ata_finalize_port_ops - finalize ata_port_operations
5380 * @ops: ata_port_operations to finalize
5381 *
5382 * An ata_port_operations can inherit from another ops and that
5383 * ops can again inherit from another. This can go on as many
5384 * times as necessary as long as there is no loop in the
5385 * inheritance chain.
5386 *
5387 * Ops tables are finalized when the host is started. NULL or
5388 * unspecified entries are inherited from the closet ancestor
5389 * which has the method and the entry is populated with it.
5390 * After finalization, the ops table directly points to all the
5391 * methods and ->inherits is no longer necessary and cleared.
5392 *
5393 * Using ATA_OP_NULL, inheriting ops can force a method to NULL.
5394 *
5395 * LOCKING:
5396 * None.
5397 */
5398static void ata_finalize_port_ops(struct ata_port_operations *ops)
5399{
5400 static spinlock_t lock = SPIN_LOCK_UNLOCKED;
5401 const struct ata_port_operations *cur;
5402 void **begin = (void **)ops;
5403 void **end = (void **)&ops->inherits;
5404 void **pp;
5405
5406 if (!ops || !ops->inherits)
5407 return;
5408
5409 spin_lock(&lock);
5410
5411 for (cur = ops->inherits; cur; cur = cur->inherits) {
5412 void **inherit = (void **)cur;
5413
5414 for (pp = begin; pp < end; pp++, inherit++)
5415 if (!*pp)
5416 *pp = *inherit;
5417 }
5418
5419 for (pp = begin; pp < end; pp++)
5420 if (IS_ERR(*pp))
5421 *pp = NULL;
5422
5423 ops->inherits = NULL;
5424
5425 spin_unlock(&lock);
5426}
5427
5428/**
Tejun Heoecef7252007-04-17 23:44:06 +09005429 * ata_host_start - start and freeze ports of an ATA host
5430 * @host: ATA host to start ports for
5431 *
5432 * Start and then freeze ports of @host. Started status is
5433 * recorded in host->flags, so this function can be called
5434 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09005435 * once. If host->ops isn't initialized yet, its set to the
5436 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09005437 *
5438 * LOCKING:
5439 * Inherited from calling layer (may sleep).
5440 *
5441 * RETURNS:
5442 * 0 if all ports are started successfully, -errno otherwise.
5443 */
5444int ata_host_start(struct ata_host *host)
5445{
Tejun Heo32ebbc02007-11-08 13:09:00 +09005446 int have_stop = 0;
5447 void *start_dr = NULL;
Tejun Heoecef7252007-04-17 23:44:06 +09005448 int i, rc;
5449
5450 if (host->flags & ATA_HOST_STARTED)
5451 return 0;
5452
Tejun Heo029cfd62008-03-25 12:22:49 +09005453 ata_finalize_port_ops(host->ops);
5454
Tejun Heoecef7252007-04-17 23:44:06 +09005455 for (i = 0; i < host->n_ports; i++) {
5456 struct ata_port *ap = host->ports[i];
5457
Tejun Heo029cfd62008-03-25 12:22:49 +09005458 ata_finalize_port_ops(ap->ops);
5459
Tejun Heof3187192007-04-17 23:44:07 +09005460 if (!host->ops && !ata_port_is_dummy(ap))
5461 host->ops = ap->ops;
5462
Tejun Heo32ebbc02007-11-08 13:09:00 +09005463 if (ap->ops->port_stop)
5464 have_stop = 1;
5465 }
5466
5467 if (host->ops->host_stop)
5468 have_stop = 1;
5469
5470 if (have_stop) {
5471 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
5472 if (!start_dr)
5473 return -ENOMEM;
5474 }
5475
5476 for (i = 0; i < host->n_ports; i++) {
5477 struct ata_port *ap = host->ports[i];
5478
Tejun Heoecef7252007-04-17 23:44:06 +09005479 if (ap->ops->port_start) {
5480 rc = ap->ops->port_start(ap);
5481 if (rc) {
Alan Cox0f9fe9b2007-11-30 15:23:16 +00005482 if (rc != -ENODEV)
Andrew Morton0f757742008-01-10 14:33:09 -08005483 dev_printk(KERN_ERR, host->dev,
5484 "failed to start port %d "
5485 "(errno=%d)\n", i, rc);
Tejun Heoecef7252007-04-17 23:44:06 +09005486 goto err_out;
5487 }
5488 }
Tejun Heoecef7252007-04-17 23:44:06 +09005489 ata_eh_freeze_port(ap);
5490 }
5491
Tejun Heo32ebbc02007-11-08 13:09:00 +09005492 if (start_dr)
5493 devres_add(host->dev, start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005494 host->flags |= ATA_HOST_STARTED;
5495 return 0;
5496
5497 err_out:
5498 while (--i >= 0) {
5499 struct ata_port *ap = host->ports[i];
5500
5501 if (ap->ops->port_stop)
5502 ap->ops->port_stop(ap);
5503 }
Tejun Heo32ebbc02007-11-08 13:09:00 +09005504 devres_free(start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005505 return rc;
5506}
5507
5508/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005509 * ata_sas_host_init - Initialize a host struct
5510 * @host: host to initialize
5511 * @dev: device host is attached to
5512 * @flags: host flags
5513 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05005514 *
5515 * LOCKING:
5516 * PCI/etc. bus probe sem.
5517 *
5518 */
Tejun Heof3187192007-04-17 23:44:07 +09005519/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04005520void ata_host_init(struct ata_host *host, struct device *dev,
Tejun Heo029cfd62008-03-25 12:22:49 +09005521 unsigned long flags, struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05005522{
Jeff Garzikcca39742006-08-24 03:19:22 -04005523 spin_lock_init(&host->lock);
5524 host->dev = dev;
5525 host->flags = flags;
5526 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05005527}
5528
5529/**
Tejun Heof3187192007-04-17 23:44:07 +09005530 * ata_host_register - register initialized ATA host
5531 * @host: ATA host to register
5532 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04005533 *
Tejun Heof3187192007-04-17 23:44:07 +09005534 * Register initialized ATA host. @host is allocated using
5535 * ata_host_alloc() and fully initialized by LLD. This function
5536 * starts ports, registers @host with ATA and SCSI layers and
5537 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538 *
5539 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005540 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541 *
5542 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09005543 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 */
Tejun Heof3187192007-04-17 23:44:07 +09005545int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546{
Tejun Heof3187192007-04-17 23:44:07 +09005547 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548
Tejun Heof3187192007-04-17 23:44:07 +09005549 /* host must have been started */
5550 if (!(host->flags & ATA_HOST_STARTED)) {
5551 dev_printk(KERN_ERR, host->dev,
5552 "BUG: trying to register unstarted host\n");
5553 WARN_ON(1);
5554 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01005555 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09005556
Tejun Heof3187192007-04-17 23:44:07 +09005557 /* Blow away unused ports. This happens when LLD can't
5558 * determine the exact number of ports to allocate at
5559 * allocation time.
5560 */
5561 for (i = host->n_ports; host->ports[i]; i++)
5562 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
Tejun Heof3187192007-04-17 23:44:07 +09005564 /* give ports names and add SCSI hosts */
5565 for (i = 0; i < host->n_ports; i++)
5566 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09005567
Tejun Heof3187192007-04-17 23:44:07 +09005568 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09005569 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09005570 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09005571
Tejun Heofafbae82007-05-15 03:28:16 +09005572 /* associate with ACPI nodes */
5573 ata_acpi_associate(host);
5574
Tejun Heof3187192007-04-17 23:44:07 +09005575 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04005576 for (i = 0; i < host->n_ports; i++) {
5577 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09005578 unsigned long xfer_mask;
5579
5580 /* set SATA cable type if still unset */
5581 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
5582 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583
Tejun Heo5a04bf42006-05-31 18:27:38 +09005584 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09005585 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09005586
Tejun Heocbcdd872007-08-18 13:14:55 +09005587 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09005588 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
5589 ap->udma_mask);
5590
Tejun Heoabf6e8e2007-10-09 14:57:25 +09005591 if (!ata_port_is_dummy(ap)) {
Tejun Heocbcdd872007-08-18 13:14:55 +09005592 ata_port_printk(ap, KERN_INFO,
5593 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02005594 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09005595 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09005596 ap->link.eh_info.desc);
Tejun Heoabf6e8e2007-10-09 14:57:25 +09005597 ata_ehi_clear_desc(&ap->link.eh_info);
5598 } else
Tejun Heof3187192007-04-17 23:44:07 +09005599 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
5600 }
5601
5602 /* perform each probe synchronously */
5603 DPRINTK("probe begin\n");
5604 for (i = 0; i < host->n_ports; i++) {
5605 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09005606
5607 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09005608 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005609 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09005610 unsigned long flags;
5611
5612 ata_port_probe(ap);
5613
5614 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005615 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005616
Tejun Heob558edd2008-01-24 00:05:14 +09005617 ehi->probe_mask |= ATA_ALL_DEVICES;
Tejun Heocf480622008-01-24 00:05:14 +09005618 ehi->action |= ATA_EH_RESET;
Tejun Heo1cdaf532006-07-03 16:07:26 +09005619 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09005620
Tejun Heof4d6d002007-05-01 11:50:15 +02005621 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09005622 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09005623 ata_port_schedule_eh(ap);
5624
Jeff Garzikba6a1302006-06-22 23:46:10 -04005625 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005626
5627 /* wait for EH to finish */
5628 ata_port_wait_eh(ap);
5629 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09005630 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09005631 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005632 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09005633
5634 if (rc) {
5635 /* FIXME: do something useful here?
5636 * Current libata behavior will
5637 * tear down everything when
5638 * the module is removed
5639 * or the h/w is unplugged.
5640 */
5641 }
5642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 }
5644
5645 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005646 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04005647 for (i = 0; i < host->n_ports; i++) {
5648 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649
Tejun Heo1ae46312007-07-16 14:29:40 +09005650 ata_scsi_scan_host(ap, 1);
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005651 ata_lpm_schedule(ap, ap->pm_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652 }
5653
Tejun Heof3187192007-04-17 23:44:07 +09005654 return 0;
5655}
5656
5657/**
Tejun Heof5cda252007-04-17 23:44:07 +09005658 * ata_host_activate - start host, request IRQ and register it
5659 * @host: target ATA host
5660 * @irq: IRQ to request
5661 * @irq_handler: irq_handler used when requesting IRQ
5662 * @irq_flags: irq_flags used when requesting IRQ
5663 * @sht: scsi_host_template to use when registering the host
5664 *
5665 * After allocating an ATA host and initializing it, most libata
5666 * LLDs perform three steps to activate the host - start host,
5667 * request IRQ and register it. This helper takes necessasry
5668 * arguments and performs the three steps in one go.
5669 *
Paul Mundt3d46b2e2007-11-08 11:14:56 +09005670 * An invalid IRQ skips the IRQ registration and expects the host to
5671 * have set polling mode on the port. In this case, @irq_handler
5672 * should be NULL.
5673 *
Tejun Heof5cda252007-04-17 23:44:07 +09005674 * LOCKING:
5675 * Inherited from calling layer (may sleep).
5676 *
5677 * RETURNS:
5678 * 0 on success, -errno otherwise.
5679 */
5680int ata_host_activate(struct ata_host *host, int irq,
5681 irq_handler_t irq_handler, unsigned long irq_flags,
5682 struct scsi_host_template *sht)
5683{
Tejun Heocbcdd872007-08-18 13:14:55 +09005684 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09005685
5686 rc = ata_host_start(host);
5687 if (rc)
5688 return rc;
5689
Paul Mundt3d46b2e2007-11-08 11:14:56 +09005690 /* Special case for polling mode */
5691 if (!irq) {
5692 WARN_ON(irq_handler);
5693 return ata_host_register(host, sht);
5694 }
5695
Tejun Heof5cda252007-04-17 23:44:07 +09005696 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
5697 dev_driver_string(host->dev), host);
5698 if (rc)
5699 return rc;
5700
Tejun Heocbcdd872007-08-18 13:14:55 +09005701 for (i = 0; i < host->n_ports; i++)
5702 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09005703
Tejun Heof5cda252007-04-17 23:44:07 +09005704 rc = ata_host_register(host, sht);
5705 /* if failed, just free the IRQ and leave ports alone */
5706 if (rc)
5707 devm_free_irq(host->dev, irq, host);
5708
5709 return rc;
5710}
5711
5712/**
Tejun Heo720ba122006-05-31 18:28:13 +09005713 * ata_port_detach - Detach ATA port in prepration of device removal
5714 * @ap: ATA port to be detached
5715 *
5716 * Detach all ATA devices and the associated SCSI devices of @ap;
5717 * then, remove the associated SCSI host. @ap is guaranteed to
5718 * be quiescent on return from this function.
5719 *
5720 * LOCKING:
5721 * Kernel thread context (may sleep).
5722 */
Adrian Bunk741b7762007-10-24 18:23:06 +02005723static void ata_port_detach(struct ata_port *ap)
Tejun Heo720ba122006-05-31 18:28:13 +09005724{
5725 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09005726 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09005727 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09005728
5729 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005730 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09005731
5732 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005733 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09005734 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005735 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005736
5737 ata_port_wait_eh(ap);
5738
Tejun Heo7f9ad9b2007-12-15 15:05:00 +09005739 /* EH is now guaranteed to see UNLOADING - EH context belongs
5740 * to us. Disable all existing devices.
Tejun Heo720ba122006-05-31 18:28:13 +09005741 */
Tejun Heo41bda9c2007-08-06 18:36:24 +09005742 ata_port_for_each_link(link, ap) {
5743 ata_link_for_each_dev(dev, link)
5744 ata_dev_disable(dev);
5745 }
Tejun Heo720ba122006-05-31 18:28:13 +09005746
Tejun Heo720ba122006-05-31 18:28:13 +09005747 /* Final freeze & EH. All in-flight commands are aborted. EH
5748 * will be skipped and retrials will be terminated with bad
5749 * target.
5750 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005751 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005752 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005753 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005754
5755 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07005756 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09005757
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005758 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09005759 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04005760 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09005761}
5762
5763/**
Tejun Heo0529c1592007-01-20 16:00:26 +09005764 * ata_host_detach - Detach all ports of an ATA host
5765 * @host: Host to detach
5766 *
5767 * Detach all ports of @host.
5768 *
5769 * LOCKING:
5770 * Kernel thread context (may sleep).
5771 */
5772void ata_host_detach(struct ata_host *host)
5773{
5774 int i;
5775
5776 for (i = 0; i < host->n_ports; i++)
5777 ata_port_detach(host->ports[i]);
Tejun Heo562f0c22007-12-15 15:05:01 +09005778
5779 /* the host is dead now, dissociate ACPI */
5780 ata_acpi_dissociate(host);
Tejun Heo0529c1592007-01-20 16:00:26 +09005781}
5782
Jeff Garzik374b1872005-08-30 05:42:52 -04005783#ifdef CONFIG_PCI
5784
Edward Falk0baab862005-06-02 18:17:13 -04005785/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786 * ata_pci_remove_one - PCI layer callback for device removal
5787 * @pdev: PCI device that was removed
5788 *
Tejun Heob878ca52007-01-20 16:00:28 +09005789 * PCI layer indicates to libata via this hook that hot-unplug or
5790 * module unload event has occurred. Detach all ports. Resource
5791 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792 *
5793 * LOCKING:
5794 * Inherited from PCI layer (may sleep).
5795 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005796void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797{
Jeff Garzik28555682007-10-11 17:12:35 -04005798 struct device *dev = &pdev->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04005799 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
Tejun Heob878ca52007-01-20 16:00:28 +09005801 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802}
5803
5804/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005805int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806{
5807 unsigned long tmp = 0;
5808
5809 switch (bits->width) {
5810 case 1: {
5811 u8 tmp8 = 0;
5812 pci_read_config_byte(pdev, bits->reg, &tmp8);
5813 tmp = tmp8;
5814 break;
5815 }
5816 case 2: {
5817 u16 tmp16 = 0;
5818 pci_read_config_word(pdev, bits->reg, &tmp16);
5819 tmp = tmp16;
5820 break;
5821 }
5822 case 4: {
5823 u32 tmp32 = 0;
5824 pci_read_config_dword(pdev, bits->reg, &tmp32);
5825 tmp = tmp32;
5826 break;
5827 }
5828
5829 default:
5830 return -EINVAL;
5831 }
5832
5833 tmp &= bits->mask;
5834
5835 return (tmp == bits->val) ? 1 : 0;
5836}
Jens Axboe9b847542006-01-06 09:28:07 +01005837
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005838#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09005839void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01005840{
5841 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09005842 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09005843
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01005844 if (mesg.event & PM_EVENT_SLEEP)
Tejun Heo500530f2006-07-03 16:07:27 +09005845 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01005846}
5847
Tejun Heo553c4aa2006-12-26 19:39:50 +09005848int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01005849{
Tejun Heo553c4aa2006-12-26 19:39:50 +09005850 int rc;
5851
Jens Axboe9b847542006-01-06 09:28:07 +01005852 pci_set_power_state(pdev, PCI_D0);
5853 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005854
Tejun Heob878ca52007-01-20 16:00:28 +09005855 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005856 if (rc) {
5857 dev_printk(KERN_ERR, &pdev->dev,
5858 "failed to enable device after resume (%d)\n", rc);
5859 return rc;
5860 }
5861
Jens Axboe9b847542006-01-06 09:28:07 +01005862 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005863 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09005864}
5865
Tejun Heo3c5100c2006-07-26 16:58:33 +09005866int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005867{
Jeff Garzikcca39742006-08-24 03:19:22 -04005868 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09005869 int rc = 0;
5870
Jeff Garzikcca39742006-08-24 03:19:22 -04005871 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09005872 if (rc)
5873 return rc;
5874
Tejun Heo3c5100c2006-07-26 16:58:33 +09005875 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09005876
5877 return 0;
5878}
5879
5880int ata_pci_device_resume(struct pci_dev *pdev)
5881{
Jeff Garzikcca39742006-08-24 03:19:22 -04005882 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005883 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005884
Tejun Heo553c4aa2006-12-26 19:39:50 +09005885 rc = ata_pci_device_do_resume(pdev);
5886 if (rc == 0)
5887 ata_host_resume(host);
5888 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01005889}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005890#endif /* CONFIG_PM */
5891
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892#endif /* CONFIG_PCI */
5893
Tejun Heo33267322008-02-13 09:15:09 +09005894static int __init ata_parse_force_one(char **cur,
5895 struct ata_force_ent *force_ent,
5896 const char **reason)
5897{
5898 /* FIXME: Currently, there's no way to tag init const data and
5899 * using __initdata causes build failure on some versions of
5900 * gcc. Once __initdataconst is implemented, add const to the
5901 * following structure.
5902 */
5903 static struct ata_force_param force_tbl[] __initdata = {
5904 { "40c", .cbl = ATA_CBL_PATA40 },
5905 { "80c", .cbl = ATA_CBL_PATA80 },
5906 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
5907 { "unk", .cbl = ATA_CBL_PATA_UNK },
5908 { "ign", .cbl = ATA_CBL_PATA_IGN },
5909 { "sata", .cbl = ATA_CBL_SATA },
5910 { "1.5Gbps", .spd_limit = 1 },
5911 { "3.0Gbps", .spd_limit = 2 },
5912 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
5913 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
5914 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
5915 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
5916 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
5917 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
5918 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
5919 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
5920 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
5921 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
5922 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
5923 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
5924 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
5925 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
5926 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5927 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5928 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5929 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5930 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5931 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5932 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5933 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5934 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5935 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5936 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5937 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5938 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5939 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5940 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5941 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5942 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5943 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5944 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5945 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5946 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5947 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
5948 };
5949 char *start = *cur, *p = *cur;
5950 char *id, *val, *endp;
5951 const struct ata_force_param *match_fp = NULL;
5952 int nr_matches = 0, i;
5953
5954 /* find where this param ends and update *cur */
5955 while (*p != '\0' && *p != ',')
5956 p++;
5957
5958 if (*p == '\0')
5959 *cur = p;
5960 else
5961 *cur = p + 1;
5962
5963 *p = '\0';
5964
5965 /* parse */
5966 p = strchr(start, ':');
5967 if (!p) {
5968 val = strstrip(start);
5969 goto parse_val;
5970 }
5971 *p = '\0';
5972
5973 id = strstrip(start);
5974 val = strstrip(p + 1);
5975
5976 /* parse id */
5977 p = strchr(id, '.');
5978 if (p) {
5979 *p++ = '\0';
5980 force_ent->device = simple_strtoul(p, &endp, 10);
5981 if (p == endp || *endp != '\0') {
5982 *reason = "invalid device";
5983 return -EINVAL;
5984 }
5985 }
5986
5987 force_ent->port = simple_strtoul(id, &endp, 10);
5988 if (p == endp || *endp != '\0') {
5989 *reason = "invalid port/link";
5990 return -EINVAL;
5991 }
5992
5993 parse_val:
5994 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
5995 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
5996 const struct ata_force_param *fp = &force_tbl[i];
5997
5998 if (strncasecmp(val, fp->name, strlen(val)))
5999 continue;
6000
6001 nr_matches++;
6002 match_fp = fp;
6003
6004 if (strcasecmp(val, fp->name) == 0) {
6005 nr_matches = 1;
6006 break;
6007 }
6008 }
6009
6010 if (!nr_matches) {
6011 *reason = "unknown value";
6012 return -EINVAL;
6013 }
6014 if (nr_matches > 1) {
6015 *reason = "ambigious value";
6016 return -EINVAL;
6017 }
6018
6019 force_ent->param = *match_fp;
6020
6021 return 0;
6022}
6023
6024static void __init ata_parse_force_param(void)
6025{
6026 int idx = 0, size = 1;
6027 int last_port = -1, last_device = -1;
6028 char *p, *cur, *next;
6029
6030 /* calculate maximum number of params and allocate force_tbl */
6031 for (p = ata_force_param_buf; *p; p++)
6032 if (*p == ',')
6033 size++;
6034
6035 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
6036 if (!ata_force_tbl) {
6037 printk(KERN_WARNING "ata: failed to extend force table, "
6038 "libata.force ignored\n");
6039 return;
6040 }
6041
6042 /* parse and populate the table */
6043 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
6044 const char *reason = "";
6045 struct ata_force_ent te = { .port = -1, .device = -1 };
6046
6047 next = cur;
6048 if (ata_parse_force_one(&next, &te, &reason)) {
6049 printk(KERN_WARNING "ata: failed to parse force "
6050 "parameter \"%s\" (%s)\n",
6051 cur, reason);
6052 continue;
6053 }
6054
6055 if (te.port == -1) {
6056 te.port = last_port;
6057 te.device = last_device;
6058 }
6059
6060 ata_force_tbl[idx++] = te;
6061
6062 last_port = te.port;
6063 last_device = te.device;
6064 }
6065
6066 ata_force_tbl_size = idx;
6067}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069static int __init ata_init(void)
6070{
Andrew Mortona8601e52006-06-25 01:36:52 -07006071 ata_probe_timeout *= HZ;
Tejun Heo33267322008-02-13 09:15:09 +09006072
6073 ata_parse_force_param();
6074
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075 ata_wq = create_workqueue("ata");
6076 if (!ata_wq)
6077 return -ENOMEM;
6078
Tejun Heo453b07a2006-05-31 18:27:42 +09006079 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6080 if (!ata_aux_wq) {
6081 destroy_workqueue(ata_wq);
6082 return -ENOMEM;
6083 }
6084
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6086 return 0;
6087}
6088
6089static void __exit ata_exit(void)
6090{
Tejun Heo33267322008-02-13 09:15:09 +09006091 kfree(ata_force_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006093 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094}
6095
Brian Kinga4625082006-11-13 16:32:36 -06006096subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097module_exit(ata_exit);
6098
Jeff Garzik67846b32005-10-05 02:58:32 -04006099static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006100static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006101
6102int ata_ratelimit(void)
6103{
6104 int rc;
6105 unsigned long flags;
6106
6107 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6108
6109 if (time_after(jiffies, ratelimit_time)) {
6110 rc = 1;
6111 ratelimit_time = jiffies + (HZ/5);
6112 } else
6113 rc = 0;
6114
6115 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6116
6117 return rc;
6118}
6119
Tejun Heoc22daff2006-04-11 22:22:29 +09006120/**
6121 * ata_wait_register - wait until register value changes
6122 * @reg: IO-mapped register
6123 * @mask: Mask to apply to read register value
6124 * @val: Wait condition
6125 * @interval_msec: polling interval in milliseconds
6126 * @timeout_msec: timeout in milliseconds
6127 *
6128 * Waiting for some bits of register to change is a common
6129 * operation for ATA controllers. This function reads 32bit LE
6130 * IO-mapped register @reg and tests for the following condition.
6131 *
6132 * (*@reg & mask) != val
6133 *
6134 * If the condition is met, it returns; otherwise, the process is
6135 * repeated after @interval_msec until timeout.
6136 *
6137 * LOCKING:
6138 * Kernel thread context (may sleep)
6139 *
6140 * RETURNS:
6141 * The final register value.
6142 */
6143u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6144 unsigned long interval_msec,
6145 unsigned long timeout_msec)
6146{
6147 unsigned long timeout;
6148 u32 tmp;
6149
6150 tmp = ioread32(reg);
6151
6152 /* Calculate timeout _after_ the first read to make sure
6153 * preceding writes reach the controller before starting to
6154 * eat away the timeout.
6155 */
6156 timeout = jiffies + (timeout_msec * HZ) / 1000;
6157
6158 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6159 msleep(interval_msec);
6160 tmp = ioread32(reg);
6161 }
6162
6163 return tmp;
6164}
6165
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006167 * Dummy port_ops
6168 */
Tejun Heodd5b06c2006-08-10 16:59:12 +09006169static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6170{
6171 return AC_ERR_SYSTEM;
6172}
6173
Tejun Heo182d7bb2008-04-07 22:47:21 +09006174static void ata_dummy_error_handler(struct ata_port *ap)
6175{
6176 /* truly dummy */
6177}
6178
Tejun Heo029cfd62008-03-25 12:22:49 +09006179struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09006180 .qc_prep = ata_noop_qc_prep,
6181 .qc_issue = ata_dummy_qc_issue,
Tejun Heo182d7bb2008-04-07 22:47:21 +09006182 .error_handler = ata_dummy_error_handler,
Tejun Heodd5b06c2006-08-10 16:59:12 +09006183};
6184
Tejun Heo21b0ad42007-04-17 23:44:07 +09006185const struct ata_port_info ata_dummy_port_info = {
6186 .port_ops = &ata_dummy_port_ops,
6187};
6188
Tejun Heodd5b06c2006-08-10 16:59:12 +09006189/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190 * libata is essentially a library of internal helper functions for
6191 * low-level ATA host controller drivers. As such, the API/ABI is
6192 * likely to change as new drivers are added and updated.
6193 * Do not depend on ABI/API stability.
6194 */
Tejun Heoe9c83912006-07-03 16:07:26 +09006195EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6196EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6197EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heo029cfd62008-03-25 12:22:49 +09006198EXPORT_SYMBOL_GPL(ata_base_port_ops);
6199EXPORT_SYMBOL_GPL(sata_port_ops);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006200EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006201EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202EXPORT_SYMBOL_GPL(ata_std_bios_param);
Jeff Garzikcca39742006-08-24 03:19:22 -04006203EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006204EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006205EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09006206EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006207EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006208EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c1592007-01-20 16:00:26 +09006209EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210EXPORT_SYMBOL_GPL(ata_sg_init);
Tejun Heof686bcb2006-05-15 20:58:05 +09006211EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006212EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Tejun Heo436d34b2008-04-02 17:28:46 +09006213EXPORT_SYMBOL_GPL(atapi_cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6215EXPORT_SYMBOL_GPL(ata_tf_from_fis);
Tejun Heo63573572007-11-27 19:43:39 +09006216EXPORT_SYMBOL_GPL(ata_pack_xfermask);
6217EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
6218EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
6219EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
6220EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
6221EXPORT_SYMBOL_GPL(ata_mode_string);
6222EXPORT_SYMBOL_GPL(ata_id_xfermask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223EXPORT_SYMBOL_GPL(ata_port_start);
Alan04351822007-03-06 02:37:52 -08006224EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo31cc23b2007-09-23 13:14:12 +09006225EXPORT_SYMBOL_GPL(ata_std_qc_defer);
Brian Kinge46834c2006-03-17 17:04:03 -06006226EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00006228EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09006229EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heoaa2731a2008-04-07 22:47:19 +09006230EXPORT_SYMBOL_GPL(ata_wait_after_reset);
Tejun Heo936fd732007-08-06 18:36:23 +09006231EXPORT_SYMBOL_GPL(sata_link_debounce);
6232EXPORT_SYMBOL_GPL(sata_link_resume);
Tejun Heo0aa11132008-04-07 22:47:18 +09006233EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heocc0680a2007-08-06 18:36:23 +09006234EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heo57c9efd2008-04-07 22:47:19 +09006235EXPORT_SYMBOL_GPL(sata_std_hardreset);
Tejun Heo203c75b2008-04-07 22:47:18 +09006236EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006237EXPORT_SYMBOL_GPL(ata_dev_classify);
6238EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006240EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006241EXPORT_SYMBOL_GPL(ata_wait_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6243EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006245EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006246EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Tejun Heo34bf2172006-05-15 20:57:46 +09006247EXPORT_SYMBOL_GPL(sata_scr_valid);
6248EXPORT_SYMBOL_GPL(sata_scr_read);
6249EXPORT_SYMBOL_GPL(sata_scr_write);
6250EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09006251EXPORT_SYMBOL_GPL(ata_link_online);
6252EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006253#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006254EXPORT_SYMBOL_GPL(ata_host_suspend);
6255EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006256#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09006257EXPORT_SYMBOL_GPL(ata_id_string);
6258EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6260
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006261EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Tejun Heo63573572007-11-27 19:43:39 +09006262EXPORT_SYMBOL_GPL(ata_timing_find_mode);
Alan Cox452503f2005-10-21 19:01:32 -04006263EXPORT_SYMBOL_GPL(ata_timing_compute);
6264EXPORT_SYMBOL_GPL(ata_timing_merge);
Tejun Heoa0f79b92007-12-18 16:33:05 +09006265EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
Alan Cox452503f2005-10-21 19:01:32 -04006266
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267#ifdef CONFIG_PCI
6268EXPORT_SYMBOL_GPL(pci_test_config_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006270#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09006271EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6272EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006273EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6274EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006275#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006277
Tejun Heob64bbc32007-07-16 14:29:39 +09006278EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
6279EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
6280EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09006281EXPORT_SYMBOL_GPL(ata_port_desc);
6282#ifdef CONFIG_PCI
6283EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
6284#endif /* CONFIG_PCI */
Tejun Heo7b70fc02006-05-15 20:58:07 +09006285EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09006286EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006287EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006288EXPORT_SYMBOL_GPL(ata_port_freeze);
Tejun Heo7d77b242007-09-23 13:14:13 +09006289EXPORT_SYMBOL_GPL(sata_async_notification);
Tejun Heoe3180492006-05-15 20:58:09 +09006290EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6291EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006292EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6293EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Mark Lord10acf3b2008-05-02 02:14:53 -04006294EXPORT_SYMBOL_GPL(ata_eh_analyze_ncq_error);
Tejun Heo022bdb02006-05-15 20:58:22 +09006295EXPORT_SYMBOL_GPL(ata_do_eh);
Tejun Heoa1efdab2008-03-25 12:22:50 +09006296EXPORT_SYMBOL_GPL(ata_std_error_handler);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006297
6298EXPORT_SYMBOL_GPL(ata_cable_40wire);
6299EXPORT_SYMBOL_GPL(ata_cable_80wire);
6300EXPORT_SYMBOL_GPL(ata_cable_unknown);
Tejun Heoc88f90c2007-11-27 19:43:48 +09006301EXPORT_SYMBOL_GPL(ata_cable_ignore);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006302EXPORT_SYMBOL_GPL(ata_cable_sata);