blob: 733eb94d055e34420348a6edb65dbfb368728547 [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/semaphore.h>
65#include <asm/byteorder.h>
Tejun Heo140b5e52007-12-12 12:21:52 +090066#include <linux/cdrom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#include "libata.h"
69
Jeff Garzikfda0efc2007-01-31 07:43:15 -050070
Tejun Heod7bb4cc2006-05-31 18:27:46 +090071/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090072const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
73const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
74const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090075
Tejun Heo029cfd62008-03-25 12:22:49 +090076const struct ata_port_operations ata_base_port_ops = {
Tejun Heo0aa11132008-04-07 22:47:18 +090077 .prereset = ata_std_prereset,
Tejun Heo203c75b2008-04-07 22:47:18 +090078 .postreset = ata_std_postreset,
Tejun Heoa1efdab2008-03-25 12:22:50 +090079 .error_handler = ata_std_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +090080};
81
82const struct ata_port_operations sata_port_ops = {
83 .inherits = &ata_base_port_ops,
84
85 .qc_defer = ata_std_qc_defer,
Tejun Heo57c9efd2008-04-07 22:47:19 +090086 .hardreset = sata_std_hardreset,
Tejun Heo029cfd62008-03-25 12:22:49 +090087};
88
Tejun Heo3373efd2006-05-15 20:57:53 +090089static unsigned int ata_dev_init_params(struct ata_device *dev,
90 u16 heads, u16 sectors);
91static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Jeff Garzik218f3d32007-10-25 00:33:27 -040092static unsigned int ata_dev_set_feature(struct ata_device *dev,
93 u8 enable, u8 feature);
Tejun Heo3373efd2006-05-15 20:57:53 +090094static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090095static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Tejun Heof3187192007-04-17 23:44:07 +090097unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static struct workqueue_struct *ata_wq;
99
Tejun Heo453b07a2006-05-31 18:27:42 +0900100struct workqueue_struct *ata_aux_wq;
101
Tejun Heo33267322008-02-13 09:15:09 +0900102struct ata_force_param {
103 const char *name;
104 unsigned int cbl;
105 int spd_limit;
106 unsigned long xfer_mask;
107 unsigned int horkage_on;
108 unsigned int horkage_off;
109};
110
111struct ata_force_ent {
112 int port;
113 int device;
114 struct ata_force_param param;
115};
116
117static struct ata_force_ent *ata_force_tbl;
118static int ata_force_tbl_size;
119
120static char ata_force_param_buf[PAGE_SIZE] __initdata;
Tejun Heo7afb4222008-03-09 20:21:53 +0900121/* param_buf is thrown away after initialization, disallow read */
122module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0);
Tejun Heo33267322008-02-13 09:15:09 +0900123MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)");
124
Jeff Garzik418dc1f2006-03-11 20:50:08 -0500125int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -0400126module_param(atapi_enabled, int, 0444);
127MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
128
Adrian Bunkc5c61bd2008-02-25 02:07:25 +0200129static int atapi_dmadir = 0;
Albert Lee95de7192006-04-04 10:57:18 +0800130module_param(atapi_dmadir, int, 0444);
131MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
132
Mark Lordbaf4fdf2007-08-08 01:08:45 +0900133int atapi_passthru16 = 1;
134module_param(atapi_passthru16, int, 0444);
135MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
136
Jeff Garzikc3c013a2006-02-27 22:31:19 -0500137int libata_fua = 0;
138module_param_named(fua, libata_fua, int, 0444);
139MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
140
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400141static int ata_ignore_hpa;
Alan Cox1e999732007-04-11 00:23:13 +0100142module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
143MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
144
Alan Coxb3a70602007-10-02 12:38:26 -0400145static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
146module_param_named(dma, libata_dma_mask, int, 0444);
147MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
148
Andrew Mortona8601e52006-06-25 01:36:52 -0700149static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
150module_param(ata_probe_timeout, int, 0444);
151MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
152
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400153int libata_noacpi = 0;
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400154module_param_named(noacpi, libata_noacpi, int, 0444);
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400155MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set");
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700156
Alan Coxae8d4ee2007-11-04 22:05:49 -0500157int libata_allow_tpm = 0;
158module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
159MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands");
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161MODULE_AUTHOR("Jeff Garzik");
162MODULE_DESCRIPTION("Library module for ATA devices");
163MODULE_LICENSE("GPL");
164MODULE_VERSION(DRV_VERSION);
165
Edward Falk0baab862005-06-02 18:17:13 -0400166
167/**
Tejun Heo33267322008-02-13 09:15:09 +0900168 * ata_force_cbl - force cable type according to libata.force
Randy Dunlap4cdfa1b2008-02-22 12:21:37 -0800169 * @ap: ATA port of interest
Tejun Heo33267322008-02-13 09:15:09 +0900170 *
171 * Force cable type according to libata.force and whine about it.
172 * The last entry which has matching port number is used, so it
173 * can be specified as part of device force parameters. For
174 * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
175 * same effect.
176 *
177 * LOCKING:
178 * EH context.
179 */
180void ata_force_cbl(struct ata_port *ap)
181{
182 int i;
183
184 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
185 const struct ata_force_ent *fe = &ata_force_tbl[i];
186
187 if (fe->port != -1 && fe->port != ap->print_id)
188 continue;
189
190 if (fe->param.cbl == ATA_CBL_NONE)
191 continue;
192
193 ap->cbl = fe->param.cbl;
194 ata_port_printk(ap, KERN_NOTICE,
195 "FORCE: cable set to %s\n", fe->param.name);
196 return;
197 }
198}
199
200/**
201 * ata_force_spd_limit - force SATA spd limit according to libata.force
202 * @link: ATA link of interest
203 *
204 * Force SATA spd limit according to libata.force and whine about
205 * it. When only the port part is specified (e.g. 1:), the limit
206 * applies to all links connected to both the host link and all
207 * fan-out ports connected via PMP. If the device part is
208 * specified as 0 (e.g. 1.00:), it specifies the first fan-out
209 * link not the host link. Device number 15 always points to the
210 * host link whether PMP is attached or not.
211 *
212 * LOCKING:
213 * EH context.
214 */
215static void ata_force_spd_limit(struct ata_link *link)
216{
217 int linkno, i;
218
219 if (ata_is_host_link(link))
220 linkno = 15;
221 else
222 linkno = link->pmp;
223
224 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
225 const struct ata_force_ent *fe = &ata_force_tbl[i];
226
227 if (fe->port != -1 && fe->port != link->ap->print_id)
228 continue;
229
230 if (fe->device != -1 && fe->device != linkno)
231 continue;
232
233 if (!fe->param.spd_limit)
234 continue;
235
236 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
237 ata_link_printk(link, KERN_NOTICE,
238 "FORCE: PHY spd limit set to %s\n", fe->param.name);
239 return;
240 }
241}
242
243/**
244 * ata_force_xfermask - force xfermask according to libata.force
245 * @dev: ATA device of interest
246 *
247 * Force xfer_mask according to libata.force and whine about it.
248 * For consistency with link selection, device number 15 selects
249 * the first device connected to the host link.
250 *
251 * LOCKING:
252 * EH context.
253 */
254static void ata_force_xfermask(struct ata_device *dev)
255{
256 int devno = dev->link->pmp + dev->devno;
257 int alt_devno = devno;
258 int i;
259
260 /* allow n.15 for the first device attached to host port */
261 if (ata_is_host_link(dev->link) && devno == 0)
262 alt_devno = 15;
263
264 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
265 const struct ata_force_ent *fe = &ata_force_tbl[i];
266 unsigned long pio_mask, mwdma_mask, udma_mask;
267
268 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
269 continue;
270
271 if (fe->device != -1 && fe->device != devno &&
272 fe->device != alt_devno)
273 continue;
274
275 if (!fe->param.xfer_mask)
276 continue;
277
278 ata_unpack_xfermask(fe->param.xfer_mask,
279 &pio_mask, &mwdma_mask, &udma_mask);
280 if (udma_mask)
281 dev->udma_mask = udma_mask;
282 else if (mwdma_mask) {
283 dev->udma_mask = 0;
284 dev->mwdma_mask = mwdma_mask;
285 } else {
286 dev->udma_mask = 0;
287 dev->mwdma_mask = 0;
288 dev->pio_mask = pio_mask;
289 }
290
291 ata_dev_printk(dev, KERN_NOTICE,
292 "FORCE: xfer_mask set to %s\n", fe->param.name);
293 return;
294 }
295}
296
297/**
298 * ata_force_horkage - force horkage according to libata.force
299 * @dev: ATA device of interest
300 *
301 * Force horkage according to libata.force and whine about it.
302 * For consistency with link selection, device number 15 selects
303 * the first device connected to the host link.
304 *
305 * LOCKING:
306 * EH context.
307 */
308static void ata_force_horkage(struct ata_device *dev)
309{
310 int devno = dev->link->pmp + dev->devno;
311 int alt_devno = devno;
312 int i;
313
314 /* allow n.15 for the first device attached to host port */
315 if (ata_is_host_link(dev->link) && devno == 0)
316 alt_devno = 15;
317
318 for (i = 0; i < ata_force_tbl_size; i++) {
319 const struct ata_force_ent *fe = &ata_force_tbl[i];
320
321 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
322 continue;
323
324 if (fe->device != -1 && fe->device != devno &&
325 fe->device != alt_devno)
326 continue;
327
328 if (!(~dev->horkage & fe->param.horkage_on) &&
329 !(dev->horkage & fe->param.horkage_off))
330 continue;
331
332 dev->horkage |= fe->param.horkage_on;
333 dev->horkage &= ~fe->param.horkage_off;
334
335 ata_dev_printk(dev, KERN_NOTICE,
336 "FORCE: horkage modified (%s)\n", fe->param.name);
337 }
338}
339
340/**
Tejun Heo436d34b2008-04-02 17:28:46 +0900341 * atapi_cmd_type - Determine ATAPI command type from SCSI opcode
342 * @opcode: SCSI opcode
343 *
344 * Determine ATAPI command type from @opcode.
345 *
346 * LOCKING:
347 * None.
348 *
349 * RETURNS:
350 * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
351 */
352int atapi_cmd_type(u8 opcode)
353{
354 switch (opcode) {
355 case GPCMD_READ_10:
356 case GPCMD_READ_12:
357 return ATAPI_READ;
358
359 case GPCMD_WRITE_10:
360 case GPCMD_WRITE_12:
361 case GPCMD_WRITE_AND_VERIFY_10:
362 return ATAPI_WRITE;
363
364 case GPCMD_READ_CD:
365 case GPCMD_READ_CD_MSF:
366 return ATAPI_READ_CD;
367
Tejun Heoe52dcc42008-04-02 17:35:19 +0900368 case ATA_16:
369 case ATA_12:
370 if (atapi_passthru16)
371 return ATAPI_PASS_THRU;
372 /* fall thru */
Tejun Heo436d34b2008-04-02 17:28:46 +0900373 default:
374 return ATAPI_MISC;
375 }
376}
377
378/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
380 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900382 * @is_cmd: This FIS is for command
383 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
385 * Converts a standard ATA taskfile to a Serial ATA
386 * FIS structure (Register - Host to Device).
387 *
388 * LOCKING:
389 * Inherited from caller.
390 */
Tejun Heo99771262007-07-16 14:29:38 +0900391void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Tejun Heo99771262007-07-16 14:29:38 +0900393 fis[0] = 0x27; /* Register - Host to Device FIS */
394 fis[1] = pmp & 0xf; /* Port multiplier number*/
395 if (is_cmd)
396 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 fis[2] = tf->command;
399 fis[3] = tf->feature;
400
401 fis[4] = tf->lbal;
402 fis[5] = tf->lbam;
403 fis[6] = tf->lbah;
404 fis[7] = tf->device;
405
406 fis[8] = tf->hob_lbal;
407 fis[9] = tf->hob_lbam;
408 fis[10] = tf->hob_lbah;
409 fis[11] = tf->hob_feature;
410
411 fis[12] = tf->nsect;
412 fis[13] = tf->hob_nsect;
413 fis[14] = 0;
414 fis[15] = tf->ctl;
415
416 fis[16] = 0;
417 fis[17] = 0;
418 fis[18] = 0;
419 fis[19] = 0;
420}
421
422/**
423 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
424 * @fis: Buffer from which data will be input
425 * @tf: Taskfile to output
426 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500427 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
429 * LOCKING:
430 * Inherited from caller.
431 */
432
Jeff Garzik057ace52005-10-22 14:27:05 -0400433void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 tf->command = fis[2]; /* status */
436 tf->feature = fis[3]; /* error */
437
438 tf->lbal = fis[4];
439 tf->lbam = fis[5];
440 tf->lbah = fis[6];
441 tf->device = fis[7];
442
443 tf->hob_lbal = fis[8];
444 tf->hob_lbam = fis[9];
445 tf->hob_lbah = fis[10];
446
447 tf->nsect = fis[12];
448 tf->hob_nsect = fis[13];
449}
450
Albert Lee8cbd6df2005-10-12 15:06:27 +0800451static const u8 ata_rw_cmds[] = {
452 /* pio multi */
453 ATA_CMD_READ_MULTI,
454 ATA_CMD_WRITE_MULTI,
455 ATA_CMD_READ_MULTI_EXT,
456 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100457 0,
458 0,
459 0,
460 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800461 /* pio */
462 ATA_CMD_PIO_READ,
463 ATA_CMD_PIO_WRITE,
464 ATA_CMD_PIO_READ_EXT,
465 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100466 0,
467 0,
468 0,
469 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800470 /* dma */
471 ATA_CMD_READ,
472 ATA_CMD_WRITE,
473 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100474 ATA_CMD_WRITE_EXT,
475 0,
476 0,
477 0,
478 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800479};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800482 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900483 * @tf: command to examine and configure
484 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500486 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800487 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 *
489 * LOCKING:
490 * caller.
491 */
Tejun Heobd056d72006-11-14 22:47:10 +0900492static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100494 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100496 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500497
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100498 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800499 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
500 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Albert Lee8cbd6df2005-10-12 15:06:27 +0800502 if (dev->flags & ATA_DFLAG_PIO) {
503 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100504 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900505 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000506 /* Unable to use DMA due to host limitation */
507 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800508 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800509 } else {
510 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100511 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100514 cmd = ata_rw_cmds[index + fua + lba48 + write];
515 if (cmd) {
516 tf->command = cmd;
517 return 0;
518 }
519 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Tejun Heocb95d562006-03-06 04:31:56 +0900522/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900523 * ata_tf_read_block - Read block address from ATA taskfile
524 * @tf: ATA taskfile of interest
525 * @dev: ATA device @tf belongs to
526 *
527 * LOCKING:
528 * None.
529 *
530 * Read block address from @tf. This function can handle all
531 * three address formats - LBA, LBA48 and CHS. tf->protocol and
532 * flags select the address format to use.
533 *
534 * RETURNS:
535 * Block address read from @tf.
536 */
537u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
538{
539 u64 block = 0;
540
541 if (tf->flags & ATA_TFLAG_LBA) {
542 if (tf->flags & ATA_TFLAG_LBA48) {
543 block |= (u64)tf->hob_lbah << 40;
544 block |= (u64)tf->hob_lbam << 32;
545 block |= tf->hob_lbal << 24;
546 } else
547 block |= (tf->device & 0xf) << 24;
548
549 block |= tf->lbah << 16;
550 block |= tf->lbam << 8;
551 block |= tf->lbal;
552 } else {
553 u32 cyl, head, sect;
554
555 cyl = tf->lbam | (tf->lbah << 8);
556 head = tf->device & 0xf;
557 sect = tf->lbal;
558
559 block = (cyl * dev->heads + head) * dev->sectors + sect;
560 }
561
562 return block;
563}
564
565/**
Tejun Heobd056d72006-11-14 22:47:10 +0900566 * ata_build_rw_tf - Build ATA taskfile for given read/write request
567 * @tf: Target ATA taskfile
568 * @dev: ATA device @tf belongs to
569 * @block: Block address
570 * @n_block: Number of blocks
571 * @tf_flags: RW/FUA etc...
572 * @tag: tag
573 *
574 * LOCKING:
575 * None.
576 *
577 * Build ATA taskfile @tf for read/write request described by
578 * @block, @n_block, @tf_flags and @tag on @dev.
579 *
580 * RETURNS:
581 *
582 * 0 on success, -ERANGE if the request is too large for @dev,
583 * -EINVAL if the request is invalid.
584 */
585int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
586 u64 block, u32 n_block, unsigned int tf_flags,
587 unsigned int tag)
588{
589 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
590 tf->flags |= tf_flags;
591
Tejun Heo6d1245b2007-02-20 23:20:27 +0900592 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900593 /* yay, NCQ */
594 if (!lba_48_ok(block, n_block))
595 return -ERANGE;
596
597 tf->protocol = ATA_PROT_NCQ;
598 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
599
600 if (tf->flags & ATA_TFLAG_WRITE)
601 tf->command = ATA_CMD_FPDMA_WRITE;
602 else
603 tf->command = ATA_CMD_FPDMA_READ;
604
605 tf->nsect = tag << 3;
606 tf->hob_feature = (n_block >> 8) & 0xff;
607 tf->feature = n_block & 0xff;
608
609 tf->hob_lbah = (block >> 40) & 0xff;
610 tf->hob_lbam = (block >> 32) & 0xff;
611 tf->hob_lbal = (block >> 24) & 0xff;
612 tf->lbah = (block >> 16) & 0xff;
613 tf->lbam = (block >> 8) & 0xff;
614 tf->lbal = block & 0xff;
615
616 tf->device = 1 << 6;
617 if (tf->flags & ATA_TFLAG_FUA)
618 tf->device |= 1 << 7;
619 } else if (dev->flags & ATA_DFLAG_LBA) {
620 tf->flags |= ATA_TFLAG_LBA;
621
622 if (lba_28_ok(block, n_block)) {
623 /* use LBA28 */
624 tf->device |= (block >> 24) & 0xf;
625 } else if (lba_48_ok(block, n_block)) {
626 if (!(dev->flags & ATA_DFLAG_LBA48))
627 return -ERANGE;
628
629 /* use LBA48 */
630 tf->flags |= ATA_TFLAG_LBA48;
631
632 tf->hob_nsect = (n_block >> 8) & 0xff;
633
634 tf->hob_lbah = (block >> 40) & 0xff;
635 tf->hob_lbam = (block >> 32) & 0xff;
636 tf->hob_lbal = (block >> 24) & 0xff;
637 } else
638 /* request too large even for LBA48 */
639 return -ERANGE;
640
641 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
642 return -EINVAL;
643
644 tf->nsect = n_block & 0xff;
645
646 tf->lbah = (block >> 16) & 0xff;
647 tf->lbam = (block >> 8) & 0xff;
648 tf->lbal = block & 0xff;
649
650 tf->device |= ATA_LBA;
651 } else {
652 /* CHS */
653 u32 sect, head, cyl, track;
654
655 /* The request -may- be too large for CHS addressing. */
656 if (!lba_28_ok(block, n_block))
657 return -ERANGE;
658
659 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
660 return -EINVAL;
661
662 /* Convert LBA to CHS */
663 track = (u32)block / dev->sectors;
664 cyl = track / dev->heads;
665 head = track % dev->heads;
666 sect = (u32)block % dev->sectors + 1;
667
668 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
669 (u32)block, track, cyl, head, sect);
670
671 /* Check whether the converted CHS can fit.
672 Cylinder: 0-65535
673 Head: 0-15
674 Sector: 1-255*/
675 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
676 return -ERANGE;
677
678 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
679 tf->lbal = sect;
680 tf->lbam = cyl;
681 tf->lbah = cyl >> 8;
682 tf->device |= head;
683 }
684
685 return 0;
686}
687
688/**
Tejun Heocb95d562006-03-06 04:31:56 +0900689 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
690 * @pio_mask: pio_mask
691 * @mwdma_mask: mwdma_mask
692 * @udma_mask: udma_mask
693 *
694 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
695 * unsigned int xfer_mask.
696 *
697 * LOCKING:
698 * None.
699 *
700 * RETURNS:
701 * Packed xfer_mask.
702 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900703unsigned long ata_pack_xfermask(unsigned long pio_mask,
704 unsigned long mwdma_mask,
705 unsigned long udma_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900706{
707 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
708 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
709 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
710}
711
Tejun Heoc0489e42006-03-24 14:07:49 +0900712/**
713 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
714 * @xfer_mask: xfer_mask to unpack
715 * @pio_mask: resulting pio_mask
716 * @mwdma_mask: resulting mwdma_mask
717 * @udma_mask: resulting udma_mask
718 *
719 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
720 * Any NULL distination masks will be ignored.
721 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900722void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
723 unsigned long *mwdma_mask, unsigned long *udma_mask)
Tejun Heoc0489e42006-03-24 14:07:49 +0900724{
725 if (pio_mask)
726 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
727 if (mwdma_mask)
728 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
729 if (udma_mask)
730 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
731}
732
Tejun Heocb95d562006-03-06 04:31:56 +0900733static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900734 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900735 u8 base;
736} ata_xfer_tbl[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +0900737 { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
738 { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
739 { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
Tejun Heocb95d562006-03-06 04:31:56 +0900740 { -1, },
741};
742
743/**
744 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
745 * @xfer_mask: xfer_mask of interest
746 *
747 * Return matching XFER_* value for @xfer_mask. Only the highest
748 * bit of @xfer_mask is considered.
749 *
750 * LOCKING:
751 * None.
752 *
753 * RETURNS:
Tejun Heo70cd0712007-11-27 19:43:40 +0900754 * Matching XFER_* value, 0xff if no match found.
Tejun Heocb95d562006-03-06 04:31:56 +0900755 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900756u8 ata_xfer_mask2mode(unsigned long xfer_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900757{
758 int highbit = fls(xfer_mask) - 1;
759 const struct ata_xfer_ent *ent;
760
761 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
762 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
763 return ent->base + highbit - ent->shift;
Tejun Heo70cd0712007-11-27 19:43:40 +0900764 return 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900765}
766
767/**
768 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
769 * @xfer_mode: XFER_* of interest
770 *
771 * Return matching xfer_mask for @xfer_mode.
772 *
773 * LOCKING:
774 * None.
775 *
776 * RETURNS:
777 * Matching xfer_mask, 0 if no match found.
778 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900779unsigned long ata_xfer_mode2mask(u8 xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900780{
781 const struct ata_xfer_ent *ent;
782
783 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
784 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
Tejun Heo70cd0712007-11-27 19:43:40 +0900785 return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
786 & ~((1 << ent->shift) - 1);
Tejun Heocb95d562006-03-06 04:31:56 +0900787 return 0;
788}
789
790/**
791 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
792 * @xfer_mode: XFER_* of interest
793 *
794 * Return matching xfer_shift for @xfer_mode.
795 *
796 * LOCKING:
797 * None.
798 *
799 * RETURNS:
800 * Matching xfer_shift, -1 if no match found.
801 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900802int ata_xfer_mode2shift(unsigned long xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900803{
804 const struct ata_xfer_ent *ent;
805
806 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
807 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
808 return ent->shift;
809 return -1;
810}
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900813 * ata_mode_string - convert xfer_mask to string
814 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 *
816 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900817 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 *
819 * LOCKING:
820 * None.
821 *
822 * RETURNS:
823 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900824 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900826const char *ata_mode_string(unsigned long xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Tejun Heo75f554b2006-03-06 04:31:57 +0900828 static const char * const xfer_mode_str[] = {
829 "PIO0",
830 "PIO1",
831 "PIO2",
832 "PIO3",
833 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100834 "PIO5",
835 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900836 "MWDMA0",
837 "MWDMA1",
838 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100839 "MWDMA3",
840 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900841 "UDMA/16",
842 "UDMA/25",
843 "UDMA/33",
844 "UDMA/44",
845 "UDMA/66",
846 "UDMA/100",
847 "UDMA/133",
848 "UDMA7",
849 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900850 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900852 highbit = fls(xfer_mask) - 1;
853 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
854 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
Tejun Heo4c360c82006-04-01 01:38:17 +0900858static const char *sata_spd_string(unsigned int spd)
859{
860 static const char * const spd_str[] = {
861 "1.5 Gbps",
862 "3.0 Gbps",
863 };
864
865 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
866 return "<unknown>";
867 return spd_str[spd - 1];
868}
869
Tejun Heo3373efd2006-05-15 20:57:53 +0900870void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900871{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900872 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900873 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900874 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo562f0c22007-12-15 15:05:01 +0900875 ata_acpi_on_disable(dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +0900876 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
877 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900878 dev->class++;
879 }
880}
881
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400882static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
883{
884 struct ata_link *link = dev->link;
885 struct ata_port *ap = link->ap;
886 u32 scontrol;
887 unsigned int err_mask;
888 int rc;
889
890 /*
891 * disallow DIPM for drivers which haven't set
892 * ATA_FLAG_IPM. This is because when DIPM is enabled,
893 * phy ready will be set in the interrupt status on
894 * state changes, which will cause some drivers to
895 * think there are errors - additionally drivers will
896 * need to disable hot plug.
897 */
898 if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) {
899 ap->pm_policy = NOT_AVAILABLE;
900 return -EINVAL;
901 }
902
903 /*
904 * For DIPM, we will only enable it for the
905 * min_power setting.
906 *
907 * Why? Because Disks are too stupid to know that
908 * If the host rejects a request to go to SLUMBER
909 * they should retry at PARTIAL, and instead it
910 * just would give up. So, for medium_power to
911 * work at all, we need to only allow HIPM.
912 */
913 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
914 if (rc)
915 return rc;
916
917 switch (policy) {
918 case MIN_POWER:
919 /* no restrictions on IPM transitions */
920 scontrol &= ~(0x3 << 8);
921 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
922 if (rc)
923 return rc;
924
925 /* enable DIPM */
926 if (dev->flags & ATA_DFLAG_DIPM)
927 err_mask = ata_dev_set_feature(dev,
928 SETFEATURES_SATA_ENABLE, SATA_DIPM);
929 break;
930 case MEDIUM_POWER:
931 /* allow IPM to PARTIAL */
932 scontrol &= ~(0x1 << 8);
933 scontrol |= (0x2 << 8);
934 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
935 if (rc)
936 return rc;
937
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700938 /*
939 * we don't have to disable DIPM since IPM flags
940 * disallow transitions to SLUMBER, which effectively
941 * disable DIPM if it does not support PARTIAL
942 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400943 break;
944 case NOT_AVAILABLE:
945 case MAX_PERFORMANCE:
946 /* disable all IPM transitions */
947 scontrol |= (0x3 << 8);
948 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
949 if (rc)
950 return rc;
951
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700952 /*
953 * we don't have to disable DIPM since IPM flags
954 * disallow all transitions which effectively
955 * disable DIPM anyway.
956 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400957 break;
958 }
959
960 /* FIXME: handle SET FEATURES failure */
961 (void) err_mask;
962
963 return 0;
964}
965
966/**
967 * ata_dev_enable_pm - enable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -0700968 * @dev: device to enable power management
969 * @policy: the link power management policy
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400970 *
971 * Enable SATA Interface power management. This will enable
972 * Device Interface Power Management (DIPM) for min_power
973 * policy, and then call driver specific callbacks for
974 * enabling Host Initiated Power management.
975 *
976 * Locking: Caller.
977 * Returns: -EINVAL if IPM is not supported, 0 otherwise.
978 */
979void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy)
980{
981 int rc = 0;
982 struct ata_port *ap = dev->link->ap;
983
984 /* set HIPM first, then DIPM */
985 if (ap->ops->enable_pm)
986 rc = ap->ops->enable_pm(ap, policy);
987 if (rc)
988 goto enable_pm_out;
989 rc = ata_dev_set_dipm(dev, policy);
990
991enable_pm_out:
992 if (rc)
993 ap->pm_policy = MAX_PERFORMANCE;
994 else
995 ap->pm_policy = policy;
996 return /* rc */; /* hopefully we can use 'rc' eventually */
997}
998
Stephen Rothwell1992a5e2007-10-31 14:53:32 +1100999#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001000/**
1001 * ata_dev_disable_pm - disable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001002 * @dev: device to disable power management
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001003 *
1004 * Disable SATA Interface power management. This will disable
1005 * Device Interface Power Management (DIPM) without changing
1006 * policy, call driver specific callbacks for disabling Host
1007 * Initiated Power management.
1008 *
1009 * Locking: Caller.
1010 * Returns: void
1011 */
1012static void ata_dev_disable_pm(struct ata_device *dev)
1013{
1014 struct ata_port *ap = dev->link->ap;
1015
1016 ata_dev_set_dipm(dev, MAX_PERFORMANCE);
1017 if (ap->ops->disable_pm)
1018 ap->ops->disable_pm(ap);
1019}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001020#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001021
1022void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy)
1023{
1024 ap->pm_policy = policy;
Tejun Heo3ec25eb2008-03-27 18:37:14 +09001025 ap->link.eh_info.action |= ATA_EH_LPM;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001026 ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY;
1027 ata_port_schedule_eh(ap);
1028}
1029
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001030#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001031static void ata_lpm_enable(struct ata_host *host)
1032{
1033 struct ata_link *link;
1034 struct ata_port *ap;
1035 struct ata_device *dev;
1036 int i;
1037
1038 for (i = 0; i < host->n_ports; i++) {
1039 ap = host->ports[i];
1040 ata_port_for_each_link(link, ap) {
1041 ata_link_for_each_dev(dev, link)
1042 ata_dev_disable_pm(dev);
1043 }
1044 }
1045}
1046
1047static void ata_lpm_disable(struct ata_host *host)
1048{
1049 int i;
1050
1051 for (i = 0; i < host->n_ports; i++) {
1052 struct ata_port *ap = host->ports[i];
1053 ata_lpm_schedule(ap, ap->pm_policy);
1054 }
1055}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001056#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058/**
1059 * ata_dev_classify - determine device type based on ATA-spec signature
1060 * @tf: ATA taskfile register set for device to be identified
1061 *
1062 * Determine from taskfile register contents whether a device is
1063 * ATA or ATAPI, as per "Signature and persistence" section
1064 * of ATA/PI spec (volume 1, sect 5.14).
1065 *
1066 * LOCKING:
1067 * None.
1068 *
1069 * RETURNS:
Tejun Heo633273a32007-09-23 13:19:54 +09001070 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
1071 * %ATA_DEV_UNKNOWN the event of failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 */
Jeff Garzik057ace52005-10-22 14:27:05 -04001073unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
1075 /* Apple's open source Darwin code hints that some devices only
1076 * put a proper signature into the LBA mid/high registers,
1077 * So, we only check those. It's sufficient for uniqueness.
Tejun Heo633273a32007-09-23 13:19:54 +09001078 *
1079 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1080 * signatures for ATA and ATAPI devices attached on SerialATA,
1081 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
1082 * spec has never mentioned about using different signatures
1083 * for ATA/ATAPI devices. Then, Serial ATA II: Port
1084 * Multiplier specification began to use 0x69/0x96 to identify
1085 * port multpliers and 0x3c/0xc3 to identify SEMB device.
1086 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1087 * 0x69/0x96 shortly and described them as reserved for
1088 * SerialATA.
1089 *
1090 * We follow the current spec and consider that 0x69/0x96
1091 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 */
Tejun Heo633273a32007-09-23 13:19:54 +09001093 if ((tf->lbam == 0) && (tf->lbah == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 DPRINTK("found ATA device by sig\n");
1095 return ATA_DEV_ATA;
1096 }
1097
Tejun Heo633273a32007-09-23 13:19:54 +09001098 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 DPRINTK("found ATAPI device by sig\n");
1100 return ATA_DEV_ATAPI;
1101 }
1102
Tejun Heo633273a32007-09-23 13:19:54 +09001103 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1104 DPRINTK("found PMP device by sig\n");
1105 return ATA_DEV_PMP;
1106 }
1107
1108 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001109 printk(KERN_INFO "ata: SEMB device ignored\n");
Tejun Heo633273a32007-09-23 13:19:54 +09001110 return ATA_DEV_SEMB_UNSUP; /* not yet */
1111 }
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 DPRINTK("unknown device\n");
1114 return ATA_DEV_UNKNOWN;
1115}
1116
1117/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001118 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 * @id: IDENTIFY DEVICE results we will examine
1120 * @s: string into which data is output
1121 * @ofs: offset into identify device page
1122 * @len: length of string to return. must be an even number.
1123 *
1124 * The strings in the IDENTIFY DEVICE page are broken up into
1125 * 16-bit chunks. Run through the string, and output each
1126 * 8-bit chunk linearly, regardless of platform.
1127 *
1128 * LOCKING:
1129 * caller.
1130 */
1131
Tejun Heo6a62a042006-02-13 10:02:46 +09001132void ata_id_string(const u16 *id, unsigned char *s,
1133 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
1135 unsigned int c;
1136
1137 while (len > 0) {
1138 c = id[ofs] >> 8;
1139 *s = c;
1140 s++;
1141
1142 c = id[ofs] & 0xff;
1143 *s = c;
1144 s++;
1145
1146 ofs++;
1147 len -= 2;
1148 }
1149}
1150
Tejun Heo0e949ff2006-02-12 22:47:04 +09001151/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001152 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +09001153 * @id: IDENTIFY DEVICE results we will examine
1154 * @s: string into which data is output
1155 * @ofs: offset into identify device page
1156 * @len: length of string to return. must be an odd number.
1157 *
Tejun Heo6a62a042006-02-13 10:02:46 +09001158 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +09001159 * trims trailing spaces and terminates the resulting string with
1160 * null. @len must be actual maximum length (even number) + 1.
1161 *
1162 * LOCKING:
1163 * caller.
1164 */
Tejun Heo6a62a042006-02-13 10:02:46 +09001165void ata_id_c_string(const u16 *id, unsigned char *s,
1166 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +09001167{
1168 unsigned char *p;
1169
1170 WARN_ON(!(len & 1));
1171
Tejun Heo6a62a042006-02-13 10:02:46 +09001172 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +09001173
1174 p = s + strnlen(s, len - 1);
1175 while (p > s && p[-1] == ' ')
1176 p--;
1177 *p = '\0';
1178}
Edward Falk0baab862005-06-02 18:17:13 -04001179
Tejun Heodb6f8752007-09-03 12:31:58 +09001180static u64 ata_id_n_sectors(const u16 *id)
1181{
1182 if (ata_id_has_lba(id)) {
1183 if (ata_id_has_lba48(id))
1184 return ata_id_u64(id, 100);
1185 else
1186 return ata_id_u32(id, 60);
1187 } else {
1188 if (ata_id_current_chs_valid(id))
1189 return ata_id_u32(id, 57);
1190 else
1191 return id[1] * id[3] * id[6];
1192 }
1193}
1194
Tejun Heoa5987e02008-03-27 19:14:23 +09001195u64 ata_tf_to_lba48(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001196{
1197 u64 sectors = 0;
1198
1199 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1200 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
1201 sectors |= (tf->hob_lbal & 0xff) << 24;
1202 sectors |= (tf->lbah & 0xff) << 16;
1203 sectors |= (tf->lbam & 0xff) << 8;
1204 sectors |= (tf->lbal & 0xff);
1205
Tejun Heoa5987e02008-03-27 19:14:23 +09001206 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001207}
1208
Tejun Heoa5987e02008-03-27 19:14:23 +09001209u64 ata_tf_to_lba(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001210{
1211 u64 sectors = 0;
1212
1213 sectors |= (tf->device & 0x0f) << 24;
1214 sectors |= (tf->lbah & 0xff) << 16;
1215 sectors |= (tf->lbam & 0xff) << 8;
1216 sectors |= (tf->lbal & 0xff);
1217
Tejun Heoa5987e02008-03-27 19:14:23 +09001218 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001219}
1220
1221/**
Tejun Heoc728a912007-09-03 12:32:30 +09001222 * ata_read_native_max_address - Read native max address
1223 * @dev: target device
1224 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +01001225 *
Tejun Heoc728a912007-09-03 12:32:30 +09001226 * Perform an LBA48 or LBA28 native size query upon the device in
1227 * question.
1228 *
1229 * RETURNS:
1230 * 0 on success, -EACCES if command is aborted by the drive.
1231 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +01001232 */
Tejun Heoc728a912007-09-03 12:32:30 +09001233static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001234{
Tejun Heoc728a912007-09-03 12:32:30 +09001235 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001236 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001237 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001238
1239 ata_tf_init(dev, &tf);
1240
Tejun Heoc728a912007-09-03 12:32:30 +09001241 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +01001242 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001243
1244 if (lba48) {
1245 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1246 tf.flags |= ATA_TFLAG_LBA48;
1247 } else
1248 tf.command = ATA_CMD_READ_NATIVE_MAX;
1249
Alan Cox1e999732007-04-11 00:23:13 +01001250 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001251 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001252
Tejun Heo2b789102007-10-09 15:05:44 +09001253 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001254 if (err_mask) {
1255 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
1256 "max address (err_mask=0x%x)\n", err_mask);
1257 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1258 return -EACCES;
1259 return -EIO;
1260 }
Alan Cox1e999732007-04-11 00:23:13 +01001261
Tejun Heoc728a912007-09-03 12:32:30 +09001262 if (lba48)
Tejun Heoa5987e02008-03-27 19:14:23 +09001263 *max_sectors = ata_tf_to_lba48(&tf) + 1;
Tejun Heoc728a912007-09-03 12:32:30 +09001264 else
Tejun Heoa5987e02008-03-27 19:14:23 +09001265 *max_sectors = ata_tf_to_lba(&tf) + 1;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001266 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
Alan Cox93328e12007-09-29 04:06:48 -04001267 (*max_sectors)--;
Tejun Heoc728a912007-09-03 12:32:30 +09001268 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001269}
1270
1271/**
Tejun Heoc728a912007-09-03 12:32:30 +09001272 * ata_set_max_sectors - Set max sectors
1273 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -07001274 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +01001275 *
Tejun Heoc728a912007-09-03 12:32:30 +09001276 * Set max sectors of @dev to @new_sectors.
1277 *
1278 * RETURNS:
1279 * 0 on success, -EACCES if command is aborted or denied (due to
1280 * previous non-volatile SET_MAX) by the drive. -EIO on other
1281 * errors.
Alan Cox1e999732007-04-11 00:23:13 +01001282 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001283static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001284{
Tejun Heoc728a912007-09-03 12:32:30 +09001285 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001286 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001287 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001288
1289 new_sectors--;
1290
1291 ata_tf_init(dev, &tf);
1292
Alan Cox1e999732007-04-11 00:23:13 +01001293 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001294
1295 if (lba48) {
1296 tf.command = ATA_CMD_SET_MAX_EXT;
1297 tf.flags |= ATA_TFLAG_LBA48;
1298
1299 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1300 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1301 tf.hob_lbah = (new_sectors >> 40) & 0xff;
Tejun Heo1e582ba2007-09-21 20:07:14 +09001302 } else {
Tejun Heoc728a912007-09-03 12:32:30 +09001303 tf.command = ATA_CMD_SET_MAX;
1304
Tejun Heo1e582ba2007-09-21 20:07:14 +09001305 tf.device |= (new_sectors >> 24) & 0xf;
1306 }
1307
Alan Cox1e999732007-04-11 00:23:13 +01001308 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001309 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001310
1311 tf.lbal = (new_sectors >> 0) & 0xff;
1312 tf.lbam = (new_sectors >> 8) & 0xff;
1313 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +01001314
Tejun Heo2b789102007-10-09 15:05:44 +09001315 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001316 if (err_mask) {
1317 ata_dev_printk(dev, KERN_WARNING, "failed to set "
1318 "max address (err_mask=0x%x)\n", err_mask);
1319 if (err_mask == AC_ERR_DEV &&
1320 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1321 return -EACCES;
1322 return -EIO;
1323 }
Alan Cox1e999732007-04-11 00:23:13 +01001324
Tejun Heoc728a912007-09-03 12:32:30 +09001325 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001326}
1327
1328/**
1329 * ata_hpa_resize - Resize a device with an HPA set
1330 * @dev: Device to resize
1331 *
1332 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1333 * it if required to the full size of the media. The caller must check
1334 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +09001335 *
1336 * RETURNS:
1337 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +01001338 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001339static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +01001340{
Tejun Heo05027ad2007-09-03 12:32:57 +09001341 struct ata_eh_context *ehc = &dev->link->eh_context;
1342 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1343 u64 sectors = ata_id_n_sectors(dev->id);
1344 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +09001345 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -04001346
Tejun Heo05027ad2007-09-03 12:32:57 +09001347 /* do we need to do it? */
1348 if (dev->class != ATA_DEV_ATA ||
1349 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1350 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +09001351 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001352
Tejun Heo05027ad2007-09-03 12:32:57 +09001353 /* read native max address */
1354 rc = ata_read_native_max_address(dev, &native_sectors);
1355 if (rc) {
Tejun Heodda7aba2008-03-23 21:05:15 +09001356 /* If device aborted the command or HPA isn't going to
1357 * be unlocked, skip HPA resizing.
Tejun Heo05027ad2007-09-03 12:32:57 +09001358 */
Tejun Heodda7aba2008-03-23 21:05:15 +09001359 if (rc == -EACCES || !ata_ignore_hpa) {
Tejun Heo05027ad2007-09-03 12:32:57 +09001360 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
Tejun Heodda7aba2008-03-23 21:05:15 +09001361 "broken, skipping HPA handling\n");
Tejun Heo05027ad2007-09-03 12:32:57 +09001362 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001363
Tejun Heo05027ad2007-09-03 12:32:57 +09001364 /* we can continue if device aborted the command */
1365 if (rc == -EACCES)
1366 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001367 }
Tejun Heo37301a52007-06-25 20:45:54 +09001368
Tejun Heo05027ad2007-09-03 12:32:57 +09001369 return rc;
1370 }
1371
1372 /* nothing to do? */
1373 if (native_sectors <= sectors || !ata_ignore_hpa) {
1374 if (!print_info || native_sectors == sectors)
1375 return 0;
1376
1377 if (native_sectors > sectors)
1378 ata_dev_printk(dev, KERN_INFO,
1379 "HPA detected: current %llu, native %llu\n",
1380 (unsigned long long)sectors,
1381 (unsigned long long)native_sectors);
1382 else if (native_sectors < sectors)
1383 ata_dev_printk(dev, KERN_WARNING,
1384 "native sectors (%llu) is smaller than "
1385 "sectors (%llu)\n",
1386 (unsigned long long)native_sectors,
1387 (unsigned long long)sectors);
1388 return 0;
1389 }
1390
1391 /* let's unlock HPA */
1392 rc = ata_set_max_sectors(dev, native_sectors);
1393 if (rc == -EACCES) {
1394 /* if device aborted the command, skip HPA resizing */
1395 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1396 "(%llu -> %llu), skipping HPA handling\n",
1397 (unsigned long long)sectors,
1398 (unsigned long long)native_sectors);
1399 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1400 return 0;
1401 } else if (rc)
1402 return rc;
1403
1404 /* re-read IDENTIFY data */
1405 rc = ata_dev_reread_id(dev, 0);
1406 if (rc) {
1407 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1408 "data after HPA resizing\n");
1409 return rc;
1410 }
1411
1412 if (print_info) {
1413 u64 new_sectors = ata_id_n_sectors(dev->id);
1414 ata_dev_printk(dev, KERN_INFO,
1415 "HPA unlocked: %llu -> %llu, native %llu\n",
1416 (unsigned long long)sectors,
1417 (unsigned long long)new_sectors,
1418 (unsigned long long)native_sectors);
1419 }
1420
1421 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001422}
1423
Edward Falk0baab862005-06-02 18:17:13 -04001424/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001426 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001428 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1429 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 *
1431 * LOCKING:
1432 * caller.
1433 */
1434
Tejun Heo0bd33002006-02-12 22:47:05 +09001435static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
1437 DPRINTK("49==0x%04x "
1438 "53==0x%04x "
1439 "63==0x%04x "
1440 "64==0x%04x "
1441 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001442 id[49],
1443 id[53],
1444 id[63],
1445 id[64],
1446 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 DPRINTK("80==0x%04x "
1448 "81==0x%04x "
1449 "82==0x%04x "
1450 "83==0x%04x "
1451 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001452 id[80],
1453 id[81],
1454 id[82],
1455 id[83],
1456 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 DPRINTK("88==0x%04x "
1458 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001459 id[88],
1460 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
Tejun Heocb95d562006-03-06 04:31:56 +09001463/**
1464 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1465 * @id: IDENTIFY data to compute xfer mask from
1466 *
1467 * Compute the xfermask for this device. This is not as trivial
1468 * as it seems if we must consider early devices correctly.
1469 *
1470 * FIXME: pre IDE drive timing (do we care ?).
1471 *
1472 * LOCKING:
1473 * None.
1474 *
1475 * RETURNS:
1476 * Computed xfermask
1477 */
Tejun Heo7dc951a2007-11-27 19:43:42 +09001478unsigned long ata_id_xfermask(const u16 *id)
Tejun Heocb95d562006-03-06 04:31:56 +09001479{
Tejun Heo7dc951a2007-11-27 19:43:42 +09001480 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heocb95d562006-03-06 04:31:56 +09001481
1482 /* Usual case. Word 53 indicates word 64 is valid */
1483 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1484 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1485 pio_mask <<= 3;
1486 pio_mask |= 0x7;
1487 } else {
1488 /* If word 64 isn't valid then Word 51 high byte holds
1489 * the PIO timing number for the maximum. Turn it into
1490 * a mask.
1491 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001492 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001493 if (mode < 5) /* Valid PIO range */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001494 pio_mask = (2 << mode) - 1;
Alan Cox46767aeb2006-09-29 18:26:47 +01001495 else
1496 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001497
1498 /* But wait.. there's more. Design your standards by
1499 * committee and you too can get a free iordy field to
1500 * process. However its the speeds not the modes that
1501 * are supported... Note drivers using the timing API
1502 * will get this right anyway
1503 */
1504 }
1505
1506 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001507
Alan Coxb352e572006-08-10 18:52:12 +01001508 if (ata_id_is_cfa(id)) {
1509 /*
1510 * Process compact flash extended modes
1511 */
1512 int pio = id[163] & 0x7;
1513 int dma = (id[163] >> 3) & 7;
1514
1515 if (pio)
1516 pio_mask |= (1 << 5);
1517 if (pio > 1)
1518 pio_mask |= (1 << 6);
1519 if (dma)
1520 mwdma_mask |= (1 << 3);
1521 if (dma > 1)
1522 mwdma_mask |= (1 << 4);
1523 }
1524
Tejun Heofb21f0d2006-03-12 12:34:35 +09001525 udma_mask = 0;
1526 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1527 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001528
1529 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1530}
1531
Tejun Heo86e45b62006-03-05 15:29:09 +09001532/**
Jeff Garzik442eacc2007-12-19 04:25:10 -05001533 * ata_pio_queue_task - Queue port_task
Tejun Heo86e45b62006-03-05 15:29:09 +09001534 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001535 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001536 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001537 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001538 *
1539 * Schedule @fn(@data) for execution after @delay jiffies using
1540 * port_task. There is one port_task per port and it's the
1541 * user(low level driver)'s responsibility to make sure that only
1542 * one task is active at any given time.
1543 *
1544 * libata core layer takes care of synchronization between
Jeff Garzik442eacc2007-12-19 04:25:10 -05001545 * port_task and EH. ata_pio_queue_task() may be ignored for EH
Tejun Heo86e45b62006-03-05 15:29:09 +09001546 * synchronization.
1547 *
1548 * LOCKING:
1549 * Inherited from caller.
1550 */
Tejun Heo624d5c52008-03-25 22:16:41 +09001551void ata_pio_queue_task(struct ata_port *ap, void *data, unsigned long delay)
Tejun Heo86e45b62006-03-05 15:29:09 +09001552{
David Howells65f27f32006-11-22 14:55:48 +00001553 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001554
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001555 /* may fail if ata_port_flush_task() in progress */
1556 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001557}
1558
1559/**
1560 * ata_port_flush_task - Flush port_task
1561 * @ap: The ata_port to flush port_task for
1562 *
1563 * After this function completes, port_task is guranteed not to
1564 * be running or scheduled.
1565 *
1566 * LOCKING:
1567 * Kernel thread context (may sleep)
1568 */
1569void ata_port_flush_task(struct ata_port *ap)
1570{
Tejun Heo86e45b62006-03-05 15:29:09 +09001571 DPRINTK("ENTER\n");
1572
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001573 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001574
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001575 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001576 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001577}
1578
Adrian Bunk7102d232007-01-04 00:09:36 +01001579static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001580{
Tejun Heo77853bf2006-01-23 13:09:36 +09001581 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001582
Tejun Heoa2a7a662005-12-13 14:48:31 +09001583 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001584}
1585
1586/**
Tejun Heo24326972006-11-14 22:47:09 +09001587 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001588 * @dev: Device to which the command is sent
1589 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001590 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001591 * @dma_dir: Data tranfer direction of the command
Randy Dunlap5c1ad8b2007-10-18 14:12:26 -07001592 * @sgl: sg list for the data buffer of the command
Tejun Heo24326972006-11-14 22:47:09 +09001593 * @n_elem: Number of sg entries
Tejun Heo2b789102007-10-09 15:05:44 +09001594 * @timeout: Timeout in msecs (0 for default)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001595 *
1596 * Executes libata internal command with timeout. @tf contains
1597 * command on entry and result on return. Timeout and error
1598 * conditions are reported via return value. No recovery action
1599 * is taken after a command times out. It's caller's duty to
1600 * clean up after timeout.
1601 *
1602 * LOCKING:
1603 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001604 *
1605 * RETURNS:
1606 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001607 */
Tejun Heo24326972006-11-14 22:47:09 +09001608unsigned ata_exec_internal_sg(struct ata_device *dev,
1609 struct ata_taskfile *tf, const u8 *cdb,
Jens Axboe87260212007-10-16 11:14:12 +02001610 int dma_dir, struct scatterlist *sgl,
Tejun Heo2b789102007-10-09 15:05:44 +09001611 unsigned int n_elem, unsigned long timeout)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001612{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001613 struct ata_link *link = dev->link;
1614 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001615 u8 command = tf->command;
1616 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001617 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001618 u32 preempted_sactive, preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001619 int preempted_nr_active_links;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001620 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001621 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001622 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001623 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001624
Jeff Garzikba6a1302006-06-22 23:46:10 -04001625 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001626
Tejun Heoe3180492006-05-15 20:58:09 +09001627 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001628 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001629 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001630 return AC_ERR_SYSTEM;
1631 }
1632
Tejun Heo2ab7db12006-05-15 20:58:02 +09001633 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001634
Tejun Heo2ab7db12006-05-15 20:58:02 +09001635 /* XXX: Tag 0 is used for drivers with legacy EH as some
1636 * drivers choke if any other tag is given. This breaks
1637 * ata_tag_internal() test for those drivers. Don't use new
1638 * EH stuff without converting to it.
1639 */
1640 if (ap->ops->error_handler)
1641 tag = ATA_TAG_INTERNAL;
1642 else
1643 tag = 0;
1644
Tejun Heo6cec4a32006-05-15 21:03:41 +09001645 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001646 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001647 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001648
1649 qc->tag = tag;
1650 qc->scsicmd = NULL;
1651 qc->ap = ap;
1652 qc->dev = dev;
1653 ata_qc_reinit(qc);
1654
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001655 preempted_tag = link->active_tag;
1656 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001657 preempted_qc_active = ap->qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001658 preempted_nr_active_links = ap->nr_active_links;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001659 link->active_tag = ATA_TAG_POISON;
1660 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001661 ap->qc_active = 0;
Tejun Heoda917d62007-09-23 13:14:12 +09001662 ap->nr_active_links = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001663
1664 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001665 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001666 if (cdb)
1667 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001668 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001669 qc->dma_dir = dma_dir;
1670 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001671 unsigned int i, buflen = 0;
Jens Axboe87260212007-10-16 11:14:12 +02001672 struct scatterlist *sg;
Tejun Heo24326972006-11-14 22:47:09 +09001673
Jens Axboe87260212007-10-16 11:14:12 +02001674 for_each_sg(sgl, sg, n_elem, i)
1675 buflen += sg->length;
Tejun Heo24326972006-11-14 22:47:09 +09001676
Jens Axboe87260212007-10-16 11:14:12 +02001677 ata_sg_init(qc, sgl, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001678 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001679 }
1680
Tejun Heo77853bf2006-01-23 13:09:36 +09001681 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001682 qc->complete_fn = ata_qc_complete_internal;
1683
Tejun Heo8e0e6942006-03-31 20:41:11 +09001684 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001685
Jeff Garzikba6a1302006-06-22 23:46:10 -04001686 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001687
Tejun Heo2b789102007-10-09 15:05:44 +09001688 if (!timeout)
1689 timeout = ata_probe_timeout * 1000 / HZ;
1690
1691 rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
Albert Lee41ade502006-03-14 11:19:04 +08001692
Tejun Heod95a7172006-05-15 20:58:14 +09001693 ata_port_flush_task(ap);
1694
1695 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001696 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001697
1698 /* We're racing with irq here. If we lose, the
1699 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001700 * twice. If we win, the port is frozen and will be
1701 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001702 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001703 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001704 qc->err_mask |= AC_ERR_TIMEOUT;
1705
1706 if (ap->ops->error_handler)
1707 ata_port_freeze(ap);
1708 else
1709 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001710
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001711 if (ata_msg_warn(ap))
1712 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001713 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001714 }
1715
Jeff Garzikba6a1302006-06-22 23:46:10 -04001716 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001717 }
1718
Tejun Heod95a7172006-05-15 20:58:14 +09001719 /* do post_internal_cmd */
1720 if (ap->ops->post_internal_cmd)
1721 ap->ops->post_internal_cmd(qc);
1722
Tejun Heoa51d6442007-03-20 15:24:11 +09001723 /* perform minimal error analysis */
1724 if (qc->flags & ATA_QCFLAG_FAILED) {
1725 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1726 qc->err_mask |= AC_ERR_DEV;
1727
1728 if (!qc->err_mask)
1729 qc->err_mask |= AC_ERR_OTHER;
1730
1731 if (qc->err_mask & ~AC_ERR_OTHER)
1732 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001733 }
1734
Tejun Heo15869302006-05-15 20:57:33 +09001735 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001736 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001737
Tejun Heoe61e0672006-05-15 20:57:40 +09001738 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001739 err_mask = qc->err_mask;
1740
1741 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001742 link->active_tag = preempted_tag;
1743 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001744 ap->qc_active = preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001745 ap->nr_active_links = preempted_nr_active_links;
Tejun Heo77853bf2006-01-23 13:09:36 +09001746
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001747 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1748 * Until those drivers are fixed, we detect the condition
1749 * here, fail the command with AC_ERR_SYSTEM and reenable the
1750 * port.
1751 *
1752 * Note that this doesn't change any behavior as internal
1753 * command failure results in disabling the device in the
1754 * higher layer for LLDDs without new reset/EH callbacks.
1755 *
1756 * Kill the following code as soon as those drivers are fixed.
1757 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001758 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001759 err_mask |= AC_ERR_SYSTEM;
1760 ata_port_probe(ap);
1761 }
1762
Jeff Garzikba6a1302006-06-22 23:46:10 -04001763 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001764
Tejun Heo77853bf2006-01-23 13:09:36 +09001765 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001766}
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768/**
Tejun Heo33480a02006-12-12 02:15:31 +09001769 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001770 * @dev: Device to which the command is sent
1771 * @tf: Taskfile registers for the command and the result
1772 * @cdb: CDB for packet command
1773 * @dma_dir: Data tranfer direction of the command
1774 * @buf: Data buffer of the command
1775 * @buflen: Length of data buffer
Tejun Heo2b789102007-10-09 15:05:44 +09001776 * @timeout: Timeout in msecs (0 for default)
Tejun Heo24326972006-11-14 22:47:09 +09001777 *
1778 * Wrapper around ata_exec_internal_sg() which takes simple
1779 * buffer instead of sg list.
1780 *
1781 * LOCKING:
1782 * None. Should be called with kernel context, might sleep.
1783 *
1784 * RETURNS:
1785 * Zero on success, AC_ERR_* mask on failure
1786 */
1787unsigned ata_exec_internal(struct ata_device *dev,
1788 struct ata_taskfile *tf, const u8 *cdb,
Tejun Heo2b789102007-10-09 15:05:44 +09001789 int dma_dir, void *buf, unsigned int buflen,
1790 unsigned long timeout)
Tejun Heo24326972006-11-14 22:47:09 +09001791{
Tejun Heo33480a02006-12-12 02:15:31 +09001792 struct scatterlist *psg = NULL, sg;
1793 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001794
Tejun Heo33480a02006-12-12 02:15:31 +09001795 if (dma_dir != DMA_NONE) {
1796 WARN_ON(!buf);
1797 sg_init_one(&sg, buf, buflen);
1798 psg = &sg;
1799 n_elem++;
1800 }
Tejun Heo24326972006-11-14 22:47:09 +09001801
Tejun Heo2b789102007-10-09 15:05:44 +09001802 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
1803 timeout);
Tejun Heo24326972006-11-14 22:47:09 +09001804}
1805
1806/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001807 * ata_do_simple_cmd - execute simple internal command
1808 * @dev: Device to which the command is sent
1809 * @cmd: Opcode to execute
1810 *
1811 * Execute a 'simple' command, that only consists of the opcode
1812 * 'cmd' itself, without filling any other registers
1813 *
1814 * LOCKING:
1815 * Kernel thread context (may sleep).
1816 *
1817 * RETURNS:
1818 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001819 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001820unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001821{
1822 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001823
1824 ata_tf_init(dev, &tf);
1825
1826 tf.command = cmd;
1827 tf.flags |= ATA_TFLAG_DEVICE;
1828 tf.protocol = ATA_PROT_NODATA;
1829
Tejun Heo2b789102007-10-09 15:05:44 +09001830 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001831}
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001834 * ata_pio_need_iordy - check if iordy needed
1835 * @adev: ATA device
1836 *
1837 * Check if the current speed of the device requires IORDY. Used
1838 * by various controllers for chip configuration.
1839 */
Jeff Garzika617c092007-05-21 20:14:23 -04001840
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001841unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1842{
Alan Cox432729f2007-03-08 23:22:59 +00001843 /* Controller doesn't support IORDY. Probably a pointless check
1844 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001845 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001846 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001847 /* PIO3 and higher it is mandatory */
1848 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001849 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001850 /* We turn it on when possible */
1851 if (ata_id_has_iordy(adev->id))
1852 return 1;
1853 return 0;
1854}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001855
Alan Cox432729f2007-03-08 23:22:59 +00001856/**
1857 * ata_pio_mask_no_iordy - Return the non IORDY mask
1858 * @adev: ATA device
1859 *
1860 * Compute the highest mode possible if we are not using iordy. Return
1861 * -1 if no iordy mode is available.
1862 */
Jeff Garzika617c092007-05-21 20:14:23 -04001863
Alan Cox432729f2007-03-08 23:22:59 +00001864static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1865{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001866 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001867 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001868 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001869 /* Is the speed faster than the drive allows non IORDY ? */
1870 if (pio) {
1871 /* This is cycle times not frequency - watch the logic! */
1872 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001873 return 3 << ATA_SHIFT_PIO;
1874 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001875 }
1876 }
Alan Cox432729f2007-03-08 23:22:59 +00001877 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001878}
1879
1880/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001881 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001882 * @dev: target device
1883 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001884 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001885 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001886 *
1887 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1888 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001889 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1890 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001891 *
Alan Cox50a99012007-08-08 14:27:00 +01001892 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001893 * now we abort if we hit that case.
Alan Cox50a99012007-08-08 14:27:00 +01001894 *
Tejun Heo49016ac2006-02-21 02:12:11 +09001895 * LOCKING:
1896 * Kernel thread context (may sleep)
1897 *
1898 * RETURNS:
1899 * 0 on success, -errno otherwise.
1900 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001901int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001902 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001903{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001904 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001905 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001906 struct ata_taskfile tf;
1907 unsigned int err_mask = 0;
1908 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001909 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001910 int rc;
1911
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001912 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001913 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001914
Tejun Heo49016ac2006-02-21 02:12:11 +09001915 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001916 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001917
1918 switch (class) {
1919 case ATA_DEV_ATA:
1920 tf.command = ATA_CMD_ID_ATA;
1921 break;
1922 case ATA_DEV_ATAPI:
1923 tf.command = ATA_CMD_ID_ATAPI;
1924 break;
1925 default:
1926 rc = -ENODEV;
1927 reason = "unsupported class";
1928 goto err_out;
1929 }
1930
1931 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001932
1933 /* Some devices choke if TF registers contain garbage. Make
1934 * sure those are properly initialized.
1935 */
1936 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1937
1938 /* Device presence detection is unreliable on some
1939 * controllers. Always poll IDENTIFY if available.
1940 */
1941 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001942
Tejun Heo3373efd2006-05-15 20:57:53 +09001943 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo2b789102007-10-09 15:05:44 +09001944 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
Tejun Heo49016ac2006-02-21 02:12:11 +09001945 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001946 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo1ffc1512008-03-23 15:16:53 +09001947 ata_dev_printk(dev, KERN_DEBUG,
1948 "NODEV after polling detection\n");
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001949 return -ENOENT;
1950 }
1951
Tejun Heo1ffc1512008-03-23 15:16:53 +09001952 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1953 /* Device or controller might have reported
1954 * the wrong device class. Give a shot at the
1955 * other IDENTIFY if the current one is
1956 * aborted by the device.
1957 */
1958 if (may_fallback) {
1959 may_fallback = 0;
Tejun Heo54936f82007-05-11 14:35:29 +02001960
Tejun Heo1ffc1512008-03-23 15:16:53 +09001961 if (class == ATA_DEV_ATA)
1962 class = ATA_DEV_ATAPI;
1963 else
1964 class = ATA_DEV_ATA;
1965 goto retry;
1966 }
1967
1968 /* Control reaches here iff the device aborted
1969 * both flavors of IDENTIFYs which happens
1970 * sometimes with phantom devices.
1971 */
1972 ata_dev_printk(dev, KERN_DEBUG,
1973 "both IDENTIFYs aborted, assuming NODEV\n");
1974 return -ENOENT;
Tejun Heo54936f82007-05-11 14:35:29 +02001975 }
1976
Tejun Heo49016ac2006-02-21 02:12:11 +09001977 rc = -EIO;
1978 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09001979 goto err_out;
1980 }
1981
Tejun Heo54936f82007-05-11 14:35:29 +02001982 /* Falling back doesn't make sense if ID data was read
1983 * successfully at least once.
1984 */
1985 may_fallback = 0;
1986
Tejun Heo49016ac2006-02-21 02:12:11 +09001987 swap_buf_le16(id, ATA_ID_WORDS);
1988
Tejun Heo49016ac2006-02-21 02:12:11 +09001989 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07001990 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01001991 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07001992
1993 if (class == ATA_DEV_ATA) {
1994 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
1995 goto err_out;
1996 } else {
1997 if (ata_id_is_ata(id))
1998 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09001999 }
2000
Mark Lord169439c2007-04-17 18:26:07 -04002001 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2002 tried_spinup = 1;
2003 /*
2004 * Drive powered-up in standby mode, and requires a specific
2005 * SET_FEATURES spin-up subcommand before it will accept
2006 * anything other than the original IDENTIFY command.
2007 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002008 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07002009 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04002010 rc = -EIO;
2011 reason = "SPINUP failed";
2012 goto err_out;
2013 }
2014 /*
2015 * If the drive initially returned incomplete IDENTIFY info,
2016 * we now must reissue the IDENTIFY command.
2017 */
2018 if (id[2] == 0x37c8)
2019 goto retry;
2020 }
2021
Tejun Heobff04642006-11-10 18:08:10 +09002022 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09002023 /*
2024 * The exact sequence expected by certain pre-ATA4 drives is:
2025 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01002026 * IDENTIFY (optional in early ATA)
2027 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09002028 * anything else..
2029 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01002030 *
2031 * Note that ATA4 says lba is mandatory so the second check
2032 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09002033 */
2034 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09002035 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09002036 if (err_mask) {
2037 rc = -EIO;
2038 reason = "INIT_DEV_PARAMS failed";
2039 goto err_out;
2040 }
2041
2042 /* current CHS translation info (id[53-58]) might be
2043 * changed. reread the identify device info.
2044 */
Tejun Heobff04642006-11-10 18:08:10 +09002045 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09002046 goto retry;
2047 }
2048 }
2049
2050 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09002051
Tejun Heo49016ac2006-02-21 02:12:11 +09002052 return 0;
2053
2054 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09002055 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002056 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09002057 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09002058 return rc;
2059}
2060
Tejun Heo3373efd2006-05-15 20:57:53 +09002061static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002062{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002063 struct ata_port *ap = dev->link->ap;
2064 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002065}
2066
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002067static void ata_dev_config_ncq(struct ata_device *dev,
2068 char *desc, size_t desc_sz)
2069{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002070 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002071 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
2072
2073 if (!ata_id_has_ncq(dev->id)) {
2074 desc[0] = '\0';
2075 return;
2076 }
Tejun Heo75683fe2007-07-05 13:31:27 +09002077 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07002078 snprintf(desc, desc_sz, "NCQ (not used)");
2079 return;
2080 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002081 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04002082 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002083 dev->flags |= ATA_DFLAG_NCQ;
2084 }
2085
2086 if (hdepth >= ddepth)
2087 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
2088 else
2089 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
2090}
2091
Tejun Heo49016ac2006-02-21 02:12:11 +09002092/**
Tejun Heoffeae412006-03-01 16:09:35 +09002093 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09002094 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 *
Tejun Heoffeae412006-03-01 16:09:35 +09002096 * Configure @dev according to @dev->id. Generic and low-level
2097 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 *
2099 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09002100 * Kernel thread context (may sleep)
2101 *
2102 * RETURNS:
2103 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09002105int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002107 struct ata_port *ap = dev->link->ap;
2108 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09002109 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002110 const u16 *id = dev->id;
Tejun Heo7dc951a2007-11-27 19:43:42 +09002111 unsigned long xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01002112 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002113 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2114 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05002115 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002117 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09002118 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002119 __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002120 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 }
2122
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002123 if (ata_msg_probe(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002124 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Tejun Heo75683fe2007-07-05 13:31:27 +09002126 /* set horkage */
2127 dev->horkage |= ata_dev_blacklisted(dev);
Tejun Heo33267322008-02-13 09:15:09 +09002128 ata_force_horkage(dev);
Tejun Heo75683fe2007-07-05 13:31:27 +09002129
Tejun Heo67465442007-05-15 03:28:16 +09002130 /* let ACPI work its magic */
2131 rc = ata_acpi_on_devcfg(dev);
2132 if (rc)
2133 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08002134
Tejun Heo05027ad2007-09-03 12:32:57 +09002135 /* massage HPA, do it early as it might change IDENTIFY data */
2136 rc = ata_hpa_resize(dev);
2137 if (rc)
2138 return rc;
2139
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002140 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002141 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002142 ata_dev_printk(dev, KERN_DEBUG,
2143 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2144 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002145 __func__,
Tejun Heof15a1da2006-05-15 20:57:56 +09002146 id[49], id[82], id[83], id[84],
2147 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002148
Tejun Heo208a9932006-03-05 17:55:58 +09002149 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09002150 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09002151 dev->max_sectors = 0;
2152 dev->cdb_len = 0;
2153 dev->n_sectors = 0;
2154 dev->cylinders = 0;
2155 dev->heads = 0;
2156 dev->sectors = 0;
2157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 /*
2159 * common ATA, ATAPI feature tests
2160 */
2161
Tejun Heoff8854b2006-03-06 04:31:56 +09002162 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002163 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002165 if (ata_msg_probe(ap))
2166 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Albert Leeef143d52007-06-05 13:01:33 +08002168 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2169 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2170 sizeof(fwrevbuf));
2171
2172 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2173 sizeof(modelbuf));
2174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 /* ATA-specific feature tests */
2176 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01002177 if (ata_id_is_cfa(id)) {
2178 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09002179 ata_dev_printk(dev, KERN_WARNING,
2180 "supports DRM functions and may "
2181 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01002182 snprintf(revbuf, 7, "CFA");
Alan Coxae8d4ee2007-11-04 22:05:49 -05002183 } else {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002184 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
Alan Coxae8d4ee2007-11-04 22:05:49 -05002185 /* Warn the user if the device has TPM extensions */
2186 if (ata_id_has_tpm(id))
2187 ata_dev_printk(dev, KERN_WARNING,
2188 "supports DRM functions and may "
2189 "not be fully accessable.\n");
2190 }
Alan Coxb352e572006-08-10 18:52:12 +01002191
Tejun Heo1148c3a2006-03-13 19:48:04 +09002192 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09002193
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002194 if (dev->id[59] & 0x100)
2195 dev->multi_count = dev->id[59] & 0xff;
2196
Tejun Heo1148c3a2006-03-13 19:48:04 +09002197 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09002198 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002199 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002200
Tejun Heo4c2d7212006-03-05 17:55:58 +09002201 lba_desc = "LBA";
2202 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002203 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002204 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002205 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09002206
2207 if (dev->n_sectors >= (1UL << 28) &&
2208 ata_id_has_flush_ext(id))
2209 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002210 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002211
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002212 /* config NCQ */
2213 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2214
Albert Lee8bf62ece2005-05-12 15:29:42 -04002215 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002216 if (ata_msg_drv(ap) && print_info) {
2217 ata_dev_printk(dev, KERN_INFO,
2218 "%s: %s, %s, max %s\n",
2219 revbuf, modelbuf, fwrevbuf,
2220 ata_mode_string(xfer_mask));
2221 ata_dev_printk(dev, KERN_INFO,
2222 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002223 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002224 dev->multi_count, lba_desc, ncq_desc);
2225 }
Tejun Heoffeae412006-03-01 16:09:35 +09002226 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002227 /* CHS */
2228
2229 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002230 dev->cylinders = id[1];
2231 dev->heads = id[3];
2232 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002233
Tejun Heo1148c3a2006-03-13 19:48:04 +09002234 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002235 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002236 dev->cylinders = id[54];
2237 dev->heads = id[55];
2238 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002239 }
2240
2241 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002242 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002243 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002244 "%s: %s, %s, max %s\n",
2245 revbuf, modelbuf, fwrevbuf,
2246 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002247 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002248 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2249 (unsigned long long)dev->n_sectors,
2250 dev->multi_count, dev->cylinders,
2251 dev->heads, dev->sectors);
2252 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002253 }
2254
Tejun Heo6e7846e2006-02-12 23:32:58 +09002255 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 }
2257
2258 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002259 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002260 const char *cdb_intr_string = "";
2261 const char *atapi_an_string = "";
Tejun Heo91163002008-02-21 13:25:50 +09002262 const char *dma_dir_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002263 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002264
Tejun Heo1148c3a2006-03-13 19:48:04 +09002265 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002267 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002268 ata_dev_printk(dev, KERN_WARNING,
2269 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002270 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 goto err_out_nosup;
2272 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002273 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Tejun Heo7d77b242007-09-23 13:14:13 +09002275 /* Enable ATAPI AN if both the host and device have
2276 * the support. If PMP is attached, SNTF is required
2277 * to enable ATAPI AN to discern between PHY status
2278 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002279 */
Tejun Heo7d77b242007-09-23 13:14:13 +09002280 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
Tejun Heo071f44b2008-04-07 22:47:22 +09002281 (!sata_pmp_attached(ap) ||
Tejun Heo7d77b242007-09-23 13:14:13 +09002282 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002283 unsigned int err_mask;
2284
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002285 /* issue SET feature command to turn this on */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002286 err_mask = ata_dev_set_feature(dev,
2287 SETFEATURES_SATA_ENABLE, SATA_AN);
Tejun Heo854c73a2007-09-23 13:14:11 +09002288 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002289 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002290 "failed to enable ATAPI AN "
2291 "(err_mask=0x%x)\n", err_mask);
2292 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002293 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002294 atapi_an_string = ", ATAPI AN";
2295 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002296 }
2297
Albert Lee08a556d2006-03-31 13:29:04 +08002298 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002299 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002300 cdb_intr_string = ", CDB intr";
2301 }
Albert Lee312f7da2005-09-27 17:38:03 +08002302
Tejun Heo91163002008-02-21 13:25:50 +09002303 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2304 dev->flags |= ATA_DFLAG_DMADIR;
2305 dma_dir_string = ", DMADIR";
2306 }
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002309 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002310 ata_dev_printk(dev, KERN_INFO,
Tejun Heo91163002008-02-21 13:25:50 +09002311 "ATAPI: %s, %s, max %s%s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002312 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002313 ata_mode_string(xfer_mask),
Tejun Heo91163002008-02-21 13:25:50 +09002314 cdb_intr_string, atapi_an_string,
2315 dma_dir_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 }
2317
Tejun Heo914ed352006-11-01 18:39:55 +09002318 /* determine max_sectors */
2319 dev->max_sectors = ATA_MAX_SECTORS;
2320 if (dev->flags & ATA_DFLAG_LBA48)
2321 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2322
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002323 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2324 if (ata_id_has_hipm(dev->id))
2325 dev->flags |= ATA_DFLAG_HIPM;
2326 if (ata_id_has_dipm(dev->id))
2327 dev->flags |= ATA_DFLAG_DIPM;
2328 }
2329
Alan Coxc5038fc2007-10-25 14:21:16 +01002330 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2331 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002332 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002333 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002334 ata_dev_printk(dev, KERN_INFO,
2335 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002336 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002337 dev->max_sectors = ATA_MAX_SECTORS;
2338 }
2339
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002340 if ((dev->class == ATA_DEV_ATAPI) &&
Albert Leef442cd82007-11-15 10:35:47 +09002341 (atapi_command_packet_set(id) == TYPE_TAPE)) {
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002342 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
Albert Leef442cd82007-11-15 10:35:47 +09002343 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2344 }
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002345
Tejun Heo75683fe2007-07-05 13:31:27 +09002346 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002347 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2348 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002349
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002350 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2351 dev->horkage |= ATA_HORKAGE_IPM;
2352
2353 /* reset link pm_policy for this port to no pm */
2354 ap->pm_policy = MAX_PERFORMANCE;
2355 }
2356
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002357 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002358 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002359
Alan Coxc5038fc2007-10-25 14:21:16 +01002360 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2361 /* Let the user know. We don't want to disallow opens for
2362 rescue purposes, or in case the vendor is just a blithering
2363 idiot. Do this after the dev_config call as some controllers
2364 with buggy firmware may want to avoid reporting false device
2365 bugs */
2366
2367 if (print_info) {
2368 ata_dev_printk(dev, KERN_WARNING,
2369"Drive reports diagnostics failure. This may indicate a drive\n");
2370 ata_dev_printk(dev, KERN_WARNING,
2371"fault or invalid emulation. Contact drive vendor for information.\n");
2372 }
2373 }
2374
Tejun Heoffeae412006-03-01 16:09:35 +09002375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002378 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002379 ata_dev_printk(dev, KERN_DEBUG,
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002380 "%s: EXIT, err\n", __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002381 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382}
2383
2384/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002385 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002386 * @ap: port
2387 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002388 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002389 * detection.
2390 */
2391
2392int ata_cable_40wire(struct ata_port *ap)
2393{
2394 return ATA_CBL_PATA40;
2395}
2396
2397/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002398 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002399 * @ap: port
2400 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002401 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002402 * detection.
2403 */
2404
2405int ata_cable_80wire(struct ata_port *ap)
2406{
2407 return ATA_CBL_PATA80;
2408}
2409
2410/**
2411 * ata_cable_unknown - return unknown PATA cable.
2412 * @ap: port
2413 *
2414 * Helper method for drivers which have no PATA cable detection.
2415 */
2416
2417int ata_cable_unknown(struct ata_port *ap)
2418{
2419 return ATA_CBL_PATA_UNK;
2420}
2421
2422/**
Tejun Heoc88f90c2007-11-27 19:43:48 +09002423 * ata_cable_ignore - return ignored PATA cable.
2424 * @ap: port
2425 *
2426 * Helper method for drivers which don't use cable type to limit
2427 * transfer mode.
2428 */
2429int ata_cable_ignore(struct ata_port *ap)
2430{
2431 return ATA_CBL_PATA_IGN;
2432}
2433
2434/**
Alan Coxbe0d18d2007-03-06 02:37:56 -08002435 * ata_cable_sata - return SATA cable type
2436 * @ap: port
2437 *
2438 * Helper method for drivers which have SATA cables
2439 */
2440
2441int ata_cable_sata(struct ata_port *ap)
2442{
2443 return ATA_CBL_SATA;
2444}
2445
2446/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 * ata_bus_probe - Reset and probe ATA bus
2448 * @ap: Bus to probe
2449 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002450 * Master ATA bus probing function. Initiates a hardware-dependent
2451 * bus reset, then attempts to identify any devices found on
2452 * the bus.
2453 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002455 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 *
2457 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002458 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 */
2460
Brian King80289162006-08-07 14:27:31 -05002461int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002463 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002464 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002465 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002466 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Tejun Heo28ca5c52006-03-01 16:09:36 +09002468 ata_port_probe(ap);
2469
Tejun Heof58229f2007-08-06 18:36:23 +09002470 ata_link_for_each_dev(dev, &ap->link)
2471 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002472
2473 retry:
Tejun Heocdeab112007-10-29 16:41:09 +09002474 ata_link_for_each_dev(dev, &ap->link) {
2475 /* If we issue an SRST then an ATA drive (not ATAPI)
2476 * may change configuration and be in PIO0 timing. If
2477 * we do a hard reset (or are coming from power on)
2478 * this is true for ATA or ATAPI. Until we've set a
2479 * suitable controller mode we should not touch the
2480 * bus as we may be talking too fast.
2481 */
2482 dev->pio_mode = XFER_PIO_0;
2483
2484 /* If the controller has a pio mode setup function
2485 * then use it to set the chipset to rights. Don't
2486 * touch the DMA setup as that will be dealt with when
2487 * configuring devices.
2488 */
2489 if (ap->ops->set_piomode)
2490 ap->ops->set_piomode(ap, dev);
2491 }
2492
Tejun Heo20444702006-03-13 01:57:01 +09002493 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002494 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002495
Tejun Heof58229f2007-08-06 18:36:23 +09002496 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002497 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2498 dev->class != ATA_DEV_UNKNOWN)
2499 classes[dev->devno] = dev->class;
2500 else
2501 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002502
Tejun Heo52783c52006-05-31 18:28:22 +09002503 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
Tejun Heo52783c52006-05-31 18:28:22 +09002506 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002507
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002508 /* read IDENTIFY page and configure devices. We have to do the identify
2509 specific sequence bass-ackwards so that PDIAG- is released by
2510 the slave device */
2511
Bartlomiej Zolnierkiewicza4ba7fe2008-04-02 10:35:15 +09002512 ata_link_for_each_dev_reverse(dev, &ap->link) {
Tejun Heof58229f2007-08-06 18:36:23 +09002513 if (tries[dev->devno])
2514 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002515
Tejun Heoe1211e32006-04-01 01:38:18 +09002516 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002517 continue;
2518
Tejun Heobff04642006-11-10 18:08:10 +09002519 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2520 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002521 if (rc)
2522 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002523 }
2524
Alan Coxbe0d18d2007-03-06 02:37:56 -08002525 /* Now ask for the cable type as PDIAG- should have been released */
2526 if (ap->ops->cable_detect)
2527 ap->cbl = ap->ops->cable_detect(ap);
2528
Alan Cox614fe292007-08-22 23:22:45 +01002529 /* We may have SATA bridge glue hiding here irrespective of the
2530 reported cable types and sensed types */
2531 ata_link_for_each_dev(dev, &ap->link) {
2532 if (!ata_dev_enabled(dev))
2533 continue;
2534 /* SATA drives indicate we have a bridge. We don't know which
2535 end of the link the bridge is which is a problem */
2536 if (ata_id_is_sata(dev->id))
2537 ap->cbl = ATA_CBL_SATA;
2538 }
2539
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002540 /* After the identify sequence we can now set up the devices. We do
2541 this in the normal order so that the user doesn't get confused */
2542
Tejun Heof58229f2007-08-06 18:36:23 +09002543 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002544 if (!ata_dev_enabled(dev))
2545 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002546
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002547 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002548 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002549 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002550 if (rc)
2551 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 }
2553
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002554 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002555 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002556 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002557 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Tejun Heof58229f2007-08-06 18:36:23 +09002559 ata_link_for_each_dev(dev, &ap->link)
2560 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002561 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002562
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002563 /* no device present, disable port */
2564 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002565 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002566
2567 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002568 tries[dev->devno]--;
2569
Tejun Heo14d2bac2006-04-02 17:54:46 +09002570 switch (rc) {
2571 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002572 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002573 tries[dev->devno] = 0;
2574 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002575
2576 case -ENODEV:
2577 /* give it just one more chance */
2578 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002579 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002580 if (tries[dev->devno] == 1) {
2581 /* This is the last chance, better to slow
2582 * down than lose it.
2583 */
Tejun Heo936fd732007-08-06 18:36:23 +09002584 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002585 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2586 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002587 }
2588
Tejun Heo4ae72a12007-02-02 16:22:30 +09002589 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002590 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002591
Tejun Heo14d2bac2006-04-02 17:54:46 +09002592 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
2594
2595/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002596 * ata_port_probe - Mark port as enabled
2597 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002599 * Modify @ap data structure such that the system
2600 * thinks that the entire port is enabled.
2601 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002602 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002603 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 */
2605
2606void ata_port_probe(struct ata_port *ap)
2607{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002608 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609}
2610
2611/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002612 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002613 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002614 *
2615 * This function prints link speed and status of a SATA link.
2616 *
2617 * LOCKING:
2618 * None.
2619 */
Tejun Heo936fd732007-08-06 18:36:23 +09002620void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002621{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002622 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002623
Tejun Heo936fd732007-08-06 18:36:23 +09002624 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002625 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002626 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002627
Tejun Heo936fd732007-08-06 18:36:23 +09002628 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002629 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002630 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002631 "SATA link up %s (SStatus %X SControl %X)\n",
2632 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002633 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002634 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002635 "SATA link down (SStatus %X SControl %X)\n",
2636 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002637 }
2638}
2639
2640/**
Alan Coxebdfca62006-03-23 15:38:34 +00002641 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002642 * @adev: device
2643 *
2644 * Obtain the other device on the same cable, or if none is
2645 * present NULL is returned
2646 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002647
Tejun Heo3373efd2006-05-15 20:57:53 +09002648struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002649{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002650 struct ata_link *link = adev->link;
2651 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002652 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002653 return NULL;
2654 return pair;
2655}
2656
2657/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002658 * ata_port_disable - Disable port.
2659 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002661 * Modify @ap data structure such that the system
2662 * thinks that the entire port is disabled, and should
2663 * never attempt to probe or communicate with devices
2664 * on this port.
2665 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002666 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002667 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 */
2669
2670void ata_port_disable(struct ata_port *ap)
2671{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002672 ap->link.device[0].class = ATA_DEV_NONE;
2673 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002674 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675}
2676
Tejun Heo1c3fae42006-04-02 20:53:28 +09002677/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002678 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002679 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002680 *
Tejun Heo936fd732007-08-06 18:36:23 +09002681 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002682 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002683 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002684 *
2685 * LOCKING:
2686 * Inherited from caller.
2687 *
2688 * RETURNS:
2689 * 0 on success, negative errno on failure
2690 */
Tejun Heo936fd732007-08-06 18:36:23 +09002691int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002692{
Tejun Heo81952c52006-05-15 20:57:47 +09002693 u32 sstatus, spd, mask;
2694 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002695
Tejun Heo936fd732007-08-06 18:36:23 +09002696 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002697 return -EOPNOTSUPP;
2698
2699 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002700 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002701 */
Tejun Heo936fd732007-08-06 18:36:23 +09002702 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002703 if (rc == 0)
2704 spd = (sstatus >> 4) & 0xf;
2705 else
Tejun Heo936fd732007-08-06 18:36:23 +09002706 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002707
Tejun Heo936fd732007-08-06 18:36:23 +09002708 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002709 if (mask <= 1)
2710 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002711
2712 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002713 highbit = fls(mask) - 1;
2714 mask &= ~(1 << highbit);
2715
Tejun Heo008a7892007-07-16 14:29:40 +09002716 /* Mask off all speeds higher than or equal to the current
2717 * one. Force 1.5Gbps if current SPD is not available.
2718 */
2719 if (spd > 1)
2720 mask &= (1 << (spd - 1)) - 1;
2721 else
2722 mask &= 1;
2723
2724 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002725 if (!mask)
2726 return -EINVAL;
2727
Tejun Heo936fd732007-08-06 18:36:23 +09002728 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002729
Tejun Heo936fd732007-08-06 18:36:23 +09002730 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002731 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002732
2733 return 0;
2734}
2735
Tejun Heo936fd732007-08-06 18:36:23 +09002736static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002737{
Tejun Heo52702222007-10-31 10:17:07 +09002738 struct ata_link *host_link = &link->ap->link;
2739 u32 limit, target, spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002740
Tejun Heo52702222007-10-31 10:17:07 +09002741 limit = link->sata_spd_limit;
2742
2743 /* Don't configure downstream link faster than upstream link.
2744 * It doesn't speed up anything and some PMPs choke on such
2745 * configuration.
2746 */
2747 if (!ata_is_host_link(link) && host_link->sata_spd)
2748 limit &= (1 << host_link->sata_spd) - 1;
2749
2750 if (limit == UINT_MAX)
2751 target = 0;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002752 else
Tejun Heo52702222007-10-31 10:17:07 +09002753 target = fls(limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002754
2755 spd = (*scontrol >> 4) & 0xf;
Tejun Heo52702222007-10-31 10:17:07 +09002756 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002757
Tejun Heo52702222007-10-31 10:17:07 +09002758 return spd != target;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002759}
2760
2761/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002762 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002763 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002764 *
2765 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002766 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002767 * whether hardreset is necessary to apply SATA spd
2768 * configuration.
2769 *
2770 * LOCKING:
2771 * Inherited from caller.
2772 *
2773 * RETURNS:
2774 * 1 if SATA spd configuration is needed, 0 otherwise.
2775 */
Tejun Heo936fd732007-08-06 18:36:23 +09002776int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002777{
2778 u32 scontrol;
2779
Tejun Heo936fd732007-08-06 18:36:23 +09002780 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heodb64bcf2007-10-31 10:17:06 +09002781 return 1;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002782
Tejun Heo936fd732007-08-06 18:36:23 +09002783 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002784}
2785
2786/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002787 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002788 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002789 *
Tejun Heo936fd732007-08-06 18:36:23 +09002790 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002791 *
2792 * LOCKING:
2793 * Inherited from caller.
2794 *
2795 * RETURNS:
2796 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002797 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002798 */
Tejun Heo936fd732007-08-06 18:36:23 +09002799int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002800{
2801 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002802 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002803
Tejun Heo936fd732007-08-06 18:36:23 +09002804 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002805 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002806
Tejun Heo936fd732007-08-06 18:36:23 +09002807 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002808 return 0;
2809
Tejun Heo936fd732007-08-06 18:36:23 +09002810 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002811 return rc;
2812
Tejun Heo1c3fae42006-04-02 20:53:28 +09002813 return 1;
2814}
2815
Alan Cox452503f2005-10-21 19:01:32 -04002816/*
2817 * This mode timing computation functionality is ported over from
2818 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2819 */
2820/*
Alan Coxb352e572006-08-10 18:52:12 +01002821 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002822 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002823 * for UDMA6, which is currently supported only by Maxtor drives.
2824 *
2825 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002826 */
2827
2828static const struct ata_timing ata_timing[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +09002829/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2830 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2831 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2832 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2833 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2834 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2835 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
2836 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002837
Tejun Heo70cd0712007-11-27 19:43:40 +09002838 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2839 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2840 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002841
Tejun Heo70cd0712007-11-27 19:43:40 +09002842 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
2843 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2844 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
Alan Coxb352e572006-08-10 18:52:12 +01002845 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Tejun Heo70cd0712007-11-27 19:43:40 +09002846 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002847
2848/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Tejun Heo70cd0712007-11-27 19:43:40 +09002849 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2850 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2851 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2852 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2853 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2854 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2855 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
Alan Cox452503f2005-10-21 19:01:32 -04002856
2857 { 0xFF }
2858};
2859
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002860#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
2861#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
Alan Cox452503f2005-10-21 19:01:32 -04002862
2863static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2864{
2865 q->setup = EZ(t->setup * 1000, T);
2866 q->act8b = EZ(t->act8b * 1000, T);
2867 q->rec8b = EZ(t->rec8b * 1000, T);
2868 q->cyc8b = EZ(t->cyc8b * 1000, T);
2869 q->active = EZ(t->active * 1000, T);
2870 q->recover = EZ(t->recover * 1000, T);
2871 q->cycle = EZ(t->cycle * 1000, T);
2872 q->udma = EZ(t->udma * 1000, UT);
2873}
2874
2875void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2876 struct ata_timing *m, unsigned int what)
2877{
2878 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2879 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2880 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2881 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2882 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2883 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2884 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2885 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2886}
2887
Tejun Heo63573572007-11-27 19:43:39 +09002888const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
Alan Cox452503f2005-10-21 19:01:32 -04002889{
Tejun Heo70cd0712007-11-27 19:43:40 +09002890 const struct ata_timing *t = ata_timing;
Alan Cox452503f2005-10-21 19:01:32 -04002891
Tejun Heo70cd0712007-11-27 19:43:40 +09002892 while (xfer_mode > t->mode)
2893 t++;
2894
2895 if (xfer_mode == t->mode)
2896 return t;
2897 return NULL;
Alan Cox452503f2005-10-21 19:01:32 -04002898}
2899
2900int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2901 struct ata_timing *t, int T, int UT)
2902{
2903 const struct ata_timing *s;
2904 struct ata_timing p;
2905
2906 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002907 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002908 */
Alan Cox452503f2005-10-21 19:01:32 -04002909
2910 if (!(s = ata_timing_find_mode(speed)))
2911 return -EINVAL;
2912
Albert Lee75b1f2f2005-11-16 17:06:18 +08002913 memcpy(t, s, sizeof(*s));
2914
Alan Cox452503f2005-10-21 19:01:32 -04002915 /*
2916 * If the drive is an EIDE drive, it can tell us it needs extended
2917 * PIO/MW_DMA cycle timing.
2918 */
2919
2920 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2921 memset(&p, 0, sizeof(p));
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002922 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
Alan Cox452503f2005-10-21 19:01:32 -04002923 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2924 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002925 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
Alan Cox452503f2005-10-21 19:01:32 -04002926 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2927 }
2928 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2929 }
2930
2931 /*
2932 * Convert the timing to bus clock counts.
2933 */
2934
Albert Lee75b1f2f2005-11-16 17:06:18 +08002935 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002936
2937 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002938 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2939 * S.M.A.R.T * and some other commands. We have to ensure that the
2940 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002941 */
2942
Alanfd3367af2006-12-07 12:41:18 +00002943 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002944 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2945 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2946 }
2947
2948 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002949 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002950 */
2951
2952 if (t->act8b + t->rec8b < t->cyc8b) {
2953 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2954 t->rec8b = t->cyc8b - t->act8b;
2955 }
2956
2957 if (t->active + t->recover < t->cycle) {
2958 t->active += (t->cycle - (t->active + t->recover)) / 2;
2959 t->recover = t->cycle - t->active;
2960 }
Jeff Garzika617c092007-05-21 20:14:23 -04002961
Alan Cox4f701d12007-04-23 11:55:36 +01002962 /* In a few cases quantisation may produce enough errors to
2963 leave t->cycle too low for the sum of active and recovery
2964 if so we must correct this */
2965 if (t->active + t->recover > t->cycle)
2966 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04002967
2968 return 0;
2969}
2970
Tejun Heocf176e12006-04-02 17:54:46 +09002971/**
Tejun Heoa0f79b92007-12-18 16:33:05 +09002972 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
2973 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
2974 * @cycle: cycle duration in ns
2975 *
2976 * Return matching xfer mode for @cycle. The returned mode is of
2977 * the transfer type specified by @xfer_shift. If @cycle is too
2978 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
2979 * than the fastest known mode, the fasted mode is returned.
2980 *
2981 * LOCKING:
2982 * None.
2983 *
2984 * RETURNS:
2985 * Matching xfer_mode, 0xff if no match found.
2986 */
2987u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
2988{
2989 u8 base_mode = 0xff, last_mode = 0xff;
2990 const struct ata_xfer_ent *ent;
2991 const struct ata_timing *t;
2992
2993 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
2994 if (ent->shift == xfer_shift)
2995 base_mode = ent->base;
2996
2997 for (t = ata_timing_find_mode(base_mode);
2998 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
2999 unsigned short this_cycle;
3000
3001 switch (xfer_shift) {
3002 case ATA_SHIFT_PIO:
3003 case ATA_SHIFT_MWDMA:
3004 this_cycle = t->cycle;
3005 break;
3006 case ATA_SHIFT_UDMA:
3007 this_cycle = t->udma;
3008 break;
3009 default:
3010 return 0xff;
3011 }
3012
3013 if (cycle > this_cycle)
3014 break;
3015
3016 last_mode = t->mode;
3017 }
3018
3019 return last_mode;
3020}
3021
3022/**
Tejun Heocf176e12006-04-02 17:54:46 +09003023 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09003024 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09003025 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09003026 *
3027 * Adjust xfer masks of @dev downward. Note that this function
3028 * does not apply the change. Invoking ata_set_mode() afterwards
3029 * will apply the limit.
3030 *
3031 * LOCKING:
3032 * Inherited from caller.
3033 *
3034 * RETURNS:
3035 * 0 on success, negative errno on failure
3036 */
Tejun Heo458337d2007-02-02 16:22:30 +09003037int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09003038{
Tejun Heo458337d2007-02-02 16:22:30 +09003039 char buf[32];
Tejun Heo7dc951a2007-11-27 19:43:42 +09003040 unsigned long orig_mask, xfer_mask;
3041 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heo458337d2007-02-02 16:22:30 +09003042 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09003043
Tejun Heo458337d2007-02-02 16:22:30 +09003044 quiet = !!(sel & ATA_DNXFER_QUIET);
3045 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09003046
Tejun Heo458337d2007-02-02 16:22:30 +09003047 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3048 dev->mwdma_mask,
3049 dev->udma_mask);
3050 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09003051
Tejun Heo458337d2007-02-02 16:22:30 +09003052 switch (sel) {
3053 case ATA_DNXFER_PIO:
3054 highbit = fls(pio_mask) - 1;
3055 pio_mask &= ~(1 << highbit);
3056 break;
3057
3058 case ATA_DNXFER_DMA:
3059 if (udma_mask) {
3060 highbit = fls(udma_mask) - 1;
3061 udma_mask &= ~(1 << highbit);
3062 if (!udma_mask)
3063 return -ENOENT;
3064 } else if (mwdma_mask) {
3065 highbit = fls(mwdma_mask) - 1;
3066 mwdma_mask &= ~(1 << highbit);
3067 if (!mwdma_mask)
3068 return -ENOENT;
3069 }
3070 break;
3071
3072 case ATA_DNXFER_40C:
3073 udma_mask &= ATA_UDMA_MASK_40C;
3074 break;
3075
3076 case ATA_DNXFER_FORCE_PIO0:
3077 pio_mask &= 1;
3078 case ATA_DNXFER_FORCE_PIO:
3079 mwdma_mask = 0;
3080 udma_mask = 0;
3081 break;
3082
Tejun Heo458337d2007-02-02 16:22:30 +09003083 default:
3084 BUG();
3085 }
3086
3087 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3088
3089 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3090 return -ENOENT;
3091
3092 if (!quiet) {
3093 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3094 snprintf(buf, sizeof(buf), "%s:%s",
3095 ata_mode_string(xfer_mask),
3096 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3097 else
3098 snprintf(buf, sizeof(buf), "%s",
3099 ata_mode_string(xfer_mask));
3100
3101 ata_dev_printk(dev, KERN_WARNING,
3102 "limiting speed to %s\n", buf);
3103 }
Tejun Heocf176e12006-04-02 17:54:46 +09003104
3105 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3106 &dev->udma_mask);
3107
Tejun Heocf176e12006-04-02 17:54:46 +09003108 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09003109}
3110
Tejun Heo3373efd2006-05-15 20:57:53 +09003111static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003113 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo4055dee2008-02-07 10:34:08 +09003114 const char *dev_err_whine = "";
3115 int ign_dev_err = 0;
Tejun Heo83206a22006-03-24 15:25:31 +09003116 unsigned int err_mask;
3117 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Tejun Heoe8384602006-04-02 18:51:53 +09003119 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 if (dev->xfer_shift == ATA_SHIFT_PIO)
3121 dev->flags |= ATA_DFLAG_PIO;
3122
Tejun Heo3373efd2006-05-15 20:57:53 +09003123 err_mask = ata_dev_set_xfermode(dev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003124
Tejun Heo4055dee2008-02-07 10:34:08 +09003125 if (err_mask & ~AC_ERR_DEV)
3126 goto fail;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003127
Tejun Heo4055dee2008-02-07 10:34:08 +09003128 /* revalidate */
Tejun Heobaa1e782006-11-01 18:39:27 +09003129 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09003130 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09003131 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09003132 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09003133 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09003134
Alan Coxb93fda12008-04-08 16:36:44 +01003135 if (dev->xfer_shift == ATA_SHIFT_PIO) {
3136 /* Old CFA may refuse this command, which is just fine */
3137 if (ata_id_is_cfa(dev->id))
3138 ign_dev_err = 1;
3139 /* Catch several broken garbage emulations plus some pre
3140 ATA devices */
3141 if (ata_id_major_version(dev->id) == 0 &&
3142 dev->pio_mode <= XFER_PIO_2)
3143 ign_dev_err = 1;
3144 /* Some very old devices and some bad newer ones fail
3145 any kind of SET_XFERMODE request but support PIO0-2
3146 timings and no IORDY */
3147 if (!ata_id_has_iordy(dev->id) && dev->pio_mode <= XFER_PIO_2)
3148 ign_dev_err = 1;
3149 }
Tejun Heo4055dee2008-02-07 10:34:08 +09003150 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3151 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3152 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3153 dev->dma_mode == XFER_MW_DMA_0 &&
3154 (dev->id[63] >> 8) & 1)
3155 ign_dev_err = 1;
3156
3157 /* if the device is actually configured correctly, ignore dev err */
3158 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3159 ign_dev_err = 1;
3160
3161 if (err_mask & AC_ERR_DEV) {
3162 if (!ign_dev_err)
3163 goto fail;
3164 else
3165 dev_err_whine = " (device error ignored)";
3166 }
3167
Tejun Heo23e71c32006-03-06 04:31:57 +09003168 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3169 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170
Tejun Heo4055dee2008-02-07 10:34:08 +09003171 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3172 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3173 dev_err_whine);
3174
Tejun Heo83206a22006-03-24 15:25:31 +09003175 return 0;
Tejun Heo4055dee2008-02-07 10:34:08 +09003176
3177 fail:
3178 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3179 "(err_mask=0x%x)\n", err_mask);
3180 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181}
3182
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183/**
Alan04351822007-03-06 02:37:52 -08003184 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09003185 * @link: link on which timings will be programmed
Joe Perches1967b7f2008-02-03 17:08:11 +02003186 * @r_failed_dev: out parameter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 *
Alan04351822007-03-06 02:37:52 -08003188 * Standard implementation of the function used to tune and set
3189 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3190 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003191 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04003192 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003194 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003195 *
3196 * RETURNS:
3197 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 */
Alan04351822007-03-06 02:37:52 -08003199
Tejun Heo02607312007-08-06 18:36:23 +09003200int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201{
Tejun Heo02607312007-08-06 18:36:23 +09003202 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09003203 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09003204 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09003205
Tejun Heoa6d5a512006-03-06 04:31:57 +09003206 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09003207 ata_link_for_each_dev(dev, link) {
Tejun Heo7dc951a2007-11-27 19:43:42 +09003208 unsigned long pio_mask, dma_mask;
Alan Coxb3a70602007-10-02 12:38:26 -04003209 unsigned int mode_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003210
Tejun Heoe1211e32006-04-01 01:38:18 +09003211 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003212 continue;
3213
Alan Coxb3a70602007-10-02 12:38:26 -04003214 mode_mask = ATA_DMA_MASK_ATA;
3215 if (dev->class == ATA_DEV_ATAPI)
3216 mode_mask = ATA_DMA_MASK_ATAPI;
3217 else if (ata_id_is_cfa(dev->id))
3218 mode_mask = ATA_DMA_MASK_CFA;
3219
Tejun Heo3373efd2006-05-15 20:57:53 +09003220 ata_dev_xfermask(dev);
Tejun Heo33267322008-02-13 09:15:09 +09003221 ata_force_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003222
Tejun Heoacf356b2006-03-24 14:07:50 +09003223 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3224 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
Alan Coxb3a70602007-10-02 12:38:26 -04003225
3226 if (libata_dma_mask & mode_mask)
3227 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3228 else
3229 dma_mask = 0;
3230
Tejun Heoacf356b2006-03-24 14:07:50 +09003231 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3232 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003233
Tejun Heo4f659772006-04-01 01:38:18 +09003234 found = 1;
Tejun Heo70cd0712007-11-27 19:43:40 +09003235 if (dev->dma_mode != 0xff)
Alan Cox5444a6f2006-03-27 18:58:20 +01003236 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003237 }
Tejun Heo4f659772006-04-01 01:38:18 +09003238 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003239 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003240
3241 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003242 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09003243 if (!ata_dev_enabled(dev))
3244 continue;
3245
Tejun Heo70cd0712007-11-27 19:43:40 +09003246 if (dev->pio_mode == 0xff) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003247 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09003248 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003249 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09003250 }
3251
3252 dev->xfer_mode = dev->pio_mode;
3253 dev->xfer_shift = ATA_SHIFT_PIO;
3254 if (ap->ops->set_piomode)
3255 ap->ops->set_piomode(ap, dev);
3256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Tejun Heoa6d5a512006-03-06 04:31:57 +09003258 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003259 ata_link_for_each_dev(dev, link) {
Tejun Heo70cd0712007-11-27 19:43:40 +09003260 if (!ata_dev_enabled(dev) || dev->dma_mode == 0xff)
Tejun Heoe8e06192006-04-01 01:38:18 +09003261 continue;
3262
3263 dev->xfer_mode = dev->dma_mode;
3264 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3265 if (ap->ops->set_dmamode)
3266 ap->ops->set_dmamode(ap, dev);
3267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
3269 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09003270 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00003271 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02003272 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09003273 continue;
3274
Tejun Heo3373efd2006-05-15 20:57:53 +09003275 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09003276 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003277 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09003278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Tejun Heoe8e06192006-04-01 01:38:18 +09003280 /* Record simplex status. If we selected DMA then the other
3281 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01003282 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003283 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00003284 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003285
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003286 out:
3287 if (rc)
3288 *r_failed_dev = dev;
3289 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
3292/**
Tejun Heoaa2731a2008-04-07 22:47:19 +09003293 * ata_wait_ready - wait for link to become ready
3294 * @link: link to be waited on
3295 * @deadline: deadline jiffies for the operation
3296 * @check_ready: callback to check link readiness
3297 *
3298 * Wait for @link to become ready. @check_ready should return
3299 * positive number if @link is ready, 0 if it isn't, -ENODEV if
3300 * link doesn't seem to be occupied, other errno for other error
3301 * conditions.
3302 *
3303 * Transient -ENODEV conditions are allowed for
3304 * ATA_TMOUT_FF_WAIT.
3305 *
3306 * LOCKING:
3307 * EH context.
3308 *
3309 * RETURNS:
3310 * 0 if @linke is ready before @deadline; otherwise, -errno.
3311 */
3312int ata_wait_ready(struct ata_link *link, unsigned long deadline,
3313 int (*check_ready)(struct ata_link *link))
3314{
3315 unsigned long start = jiffies;
3316 unsigned long nodev_deadline = start + ATA_TMOUT_FF_WAIT;
3317 int warned = 0;
3318
3319 if (time_after(nodev_deadline, deadline))
3320 nodev_deadline = deadline;
3321
3322 while (1) {
3323 unsigned long now = jiffies;
3324 int ready, tmp;
3325
3326 ready = tmp = check_ready(link);
3327 if (ready > 0)
3328 return 0;
3329
3330 /* -ENODEV could be transient. Ignore -ENODEV if link
3331 * is online. Also, some SATA devices take a long
3332 * time to clear 0xff after reset. For example,
3333 * HHD424020F7SV00 iVDR needs >= 800ms while Quantum
3334 * GoVault needs even more than that. Wait for
3335 * ATA_TMOUT_FF_WAIT on -ENODEV if link isn't offline.
3336 *
3337 * Note that some PATA controllers (pata_ali) explode
3338 * if status register is read more than once when
3339 * there's no device attached.
3340 */
3341 if (ready == -ENODEV) {
3342 if (ata_link_online(link))
3343 ready = 0;
3344 else if ((link->ap->flags & ATA_FLAG_SATA) &&
3345 !ata_link_offline(link) &&
3346 time_before(now, nodev_deadline))
3347 ready = 0;
3348 }
3349
3350 if (ready)
3351 return ready;
3352 if (time_after(now, deadline))
3353 return -EBUSY;
3354
3355 if (!warned && time_after(now, start + 5 * HZ) &&
3356 (deadline - now > 3 * HZ)) {
3357 ata_link_printk(link, KERN_WARNING,
3358 "link is slow to respond, please be patient "
3359 "(ready=%d)\n", tmp);
3360 warned = 1;
3361 }
3362
3363 msleep(50);
3364 }
3365}
3366
3367/**
3368 * ata_wait_after_reset - wait for link to become ready after reset
3369 * @link: link to be waited on
3370 * @deadline: deadline jiffies for the operation
3371 * @check_ready: callback to check link readiness
3372 *
3373 * Wait for @link to become ready after reset.
3374 *
3375 * LOCKING:
3376 * EH context.
3377 *
3378 * RETURNS:
3379 * 0 if @linke is ready before @deadline; otherwise, -errno.
3380 */
3381extern int ata_wait_after_reset(struct ata_link *link, unsigned long deadline,
3382 int (*check_ready)(struct ata_link *link))
3383{
3384 msleep(ATA_WAIT_AFTER_RESET_MSECS);
3385
3386 return ata_wait_ready(link, deadline, check_ready);
3387}
3388
3389/**
Tejun Heo936fd732007-08-06 18:36:23 +09003390 * sata_link_debounce - debounce SATA phy status
3391 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003392 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003393 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003394 *
Tejun Heo936fd732007-08-06 18:36:23 +09003395* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003396 * holding the same value where DET is not 1 for @duration polled
3397 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003398 * beginning of the stable state. Because DET gets stuck at 1 on
3399 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003400 * until timeout then returns 0 if DET is stable at 1.
3401 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003402 * @timeout is further limited by @deadline. The sooner of the
3403 * two is used.
3404 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003405 * LOCKING:
3406 * Kernel thread context (may sleep)
3407 *
3408 * RETURNS:
3409 * 0 on success, -errno on failure.
3410 */
Tejun Heo936fd732007-08-06 18:36:23 +09003411int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3412 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003413{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003414 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003415 unsigned long duration = msecs_to_jiffies(params[1]);
3416 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003417 u32 last, cur;
3418 int rc;
3419
Tejun Heod4b2bab2007-02-02 16:50:52 +09003420 t = jiffies + msecs_to_jiffies(params[2]);
3421 if (time_before(t, deadline))
3422 deadline = t;
3423
Tejun Heo936fd732007-08-06 18:36:23 +09003424 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003425 return rc;
3426 cur &= 0xf;
3427
3428 last = cur;
3429 last_jiffies = jiffies;
3430
3431 while (1) {
3432 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003433 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003434 return rc;
3435 cur &= 0xf;
3436
3437 /* DET stable? */
3438 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003439 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003440 continue;
3441 if (time_after(jiffies, last_jiffies + duration))
3442 return 0;
3443 continue;
3444 }
3445
3446 /* unstable, start over */
3447 last = cur;
3448 last_jiffies = jiffies;
3449
Tejun Heof1545152007-07-16 14:29:40 +09003450 /* Check deadline. If debouncing failed, return
3451 * -EPIPE to tell upper layer to lower link speed.
3452 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003453 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003454 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003455 }
3456}
3457
3458/**
Tejun Heo936fd732007-08-06 18:36:23 +09003459 * sata_link_resume - resume SATA link
3460 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003461 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003462 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003463 *
Tejun Heo936fd732007-08-06 18:36:23 +09003464 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003465 *
3466 * LOCKING:
3467 * Kernel thread context (may sleep)
3468 *
3469 * RETURNS:
3470 * 0 on success, -errno on failure.
3471 */
Tejun Heo936fd732007-08-06 18:36:23 +09003472int sata_link_resume(struct ata_link *link, const unsigned long *params,
3473 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003474{
Tejun Heoac371982008-04-07 22:47:19 +09003475 u32 scontrol, serror;
Tejun Heo81952c52006-05-15 20:57:47 +09003476 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003477
Tejun Heo936fd732007-08-06 18:36:23 +09003478 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003479 return rc;
3480
Tejun Heo852ee162006-04-01 01:38:18 +09003481 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003482
Tejun Heo936fd732007-08-06 18:36:23 +09003483 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003484 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003485
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003486 /* Some PHYs react badly if SStatus is pounded immediately
3487 * after resuming. Delay 200ms before debouncing.
3488 */
3489 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003490
Tejun Heoac371982008-04-07 22:47:19 +09003491 if ((rc = sata_link_debounce(link, params, deadline)))
3492 return rc;
3493
3494 /* Clear SError. PMP and some host PHYs require this to
3495 * operate and clearing should be done before checking PHY
3496 * online status to avoid race condition (hotplugging between
3497 * link resume and status check).
3498 */
3499 if (!(rc = sata_scr_read(link, SCR_ERROR, &serror)))
3500 rc = sata_scr_write(link, SCR_ERROR, serror);
3501 if (rc == 0 || rc == -EINVAL) {
3502 unsigned long flags;
3503
3504 spin_lock_irqsave(link->ap->lock, flags);
3505 link->eh_info.serror = 0;
3506 spin_unlock_irqrestore(link->ap->lock, flags);
3507 rc = 0;
3508 }
3509 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003510}
3511
Tejun Heof5914a42006-05-31 18:27:48 +09003512/**
Tejun Heo0aa11132008-04-07 22:47:18 +09003513 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003514 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003515 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003516 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003517 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003518 * prereset makes libata abort whole reset sequence and give up
3519 * that port, so prereset should be best-effort. It does its
3520 * best to prepare for reset sequence but if things go wrong, it
3521 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003522 *
3523 * LOCKING:
3524 * Kernel thread context (may sleep)
3525 *
3526 * RETURNS:
3527 * 0 on success, -errno otherwise.
3528 */
Tejun Heo0aa11132008-04-07 22:47:18 +09003529int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003530{
Tejun Heocc0680a2007-08-06 18:36:23 +09003531 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003532 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003533 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003534 int rc;
3535
Tejun Heof5914a42006-05-31 18:27:48 +09003536 /* if we're about to do hardreset, nothing more to do */
3537 if (ehc->i.action & ATA_EH_HARDRESET)
3538 return 0;
3539
Tejun Heo936fd732007-08-06 18:36:23 +09003540 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003541 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003542 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003543 /* whine about phy resume failure but proceed */
3544 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003545 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003546 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003547 }
3548
Tejun Heo45db2f62008-04-08 01:46:56 +09003549 /* no point in trying softreset on offline link */
3550 if (ata_link_offline(link))
3551 ehc->i.action &= ~ATA_EH_SOFTRESET;
3552
Tejun Heof5914a42006-05-31 18:27:48 +09003553 return 0;
3554}
3555
Tejun Heoc2bd5802006-01-24 17:05:22 +09003556/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003557 * sata_link_hardreset - reset link via SATA phy reset
3558 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003559 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003560 * @deadline: deadline jiffies for the operation
Tejun Heo9dadd452008-04-07 22:47:19 +09003561 * @online: optional out parameter indicating link onlineness
3562 * @check_ready: optional callback to check link readiness
Tejun Heoc2bd5802006-01-24 17:05:22 +09003563 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003564 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heo9dadd452008-04-07 22:47:19 +09003565 * After hardreset, link readiness is waited upon using
3566 * ata_wait_ready() if @check_ready is specified. LLDs are
3567 * allowed to not specify @check_ready and wait itself after this
3568 * function returns. Device classification is LLD's
3569 * responsibility.
3570 *
3571 * *@online is set to one iff reset succeeded and @link is online
3572 * after reset.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003573 *
3574 * LOCKING:
3575 * Kernel thread context (may sleep)
3576 *
3577 * RETURNS:
3578 * 0 on success, -errno otherwise.
3579 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003580int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heo9dadd452008-04-07 22:47:19 +09003581 unsigned long deadline,
3582 bool *online, int (*check_ready)(struct ata_link *))
Tejun Heoc2bd5802006-01-24 17:05:22 +09003583{
Tejun Heo852ee162006-04-01 01:38:18 +09003584 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003585 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003586
Tejun Heoc2bd5802006-01-24 17:05:22 +09003587 DPRINTK("ENTER\n");
3588
Tejun Heo9dadd452008-04-07 22:47:19 +09003589 if (online)
3590 *online = false;
3591
Tejun Heo936fd732007-08-06 18:36:23 +09003592 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003593 /* SATA spec says nothing about how to reconfigure
3594 * spd. To be on the safe side, turn off phy during
3595 * reconfiguration. This works for at least ICH7 AHCI
3596 * and Sil3124.
3597 */
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
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003601 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003602
Tejun Heo936fd732007-08-06 18:36:23 +09003603 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003604 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003605
Tejun Heo936fd732007-08-06 18:36:23 +09003606 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003607 }
3608
3609 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003610 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003611 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003612
Tejun Heo852ee162006-04-01 01:38:18 +09003613 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003614
Tejun Heo936fd732007-08-06 18:36:23 +09003615 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003616 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003617
Tejun Heo1c3fae42006-04-02 20:53:28 +09003618 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003619 * 10.4.2 says at least 1 ms.
3620 */
3621 msleep(1);
3622
Tejun Heo936fd732007-08-06 18:36:23 +09003623 /* bring link back */
3624 rc = sata_link_resume(link, timing, deadline);
Tejun Heo9dadd452008-04-07 22:47:19 +09003625 if (rc)
3626 goto out;
3627 /* if link is offline nothing more to do */
3628 if (ata_link_offline(link))
3629 goto out;
3630
3631 /* Link is online. From this point, -ENODEV too is an error. */
3632 if (online)
3633 *online = true;
3634
Tejun Heo071f44b2008-04-07 22:47:22 +09003635 if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) {
Tejun Heo9dadd452008-04-07 22:47:19 +09003636 /* If PMP is supported, we have to do follow-up SRST.
3637 * Some PMPs don't send D2H Reg FIS after hardreset if
3638 * the first port is empty. Wait only for
3639 * ATA_TMOUT_PMP_SRST_WAIT.
3640 */
3641 if (check_ready) {
3642 unsigned long pmp_deadline;
3643
3644 pmp_deadline = jiffies + ATA_TMOUT_PMP_SRST_WAIT;
3645 if (time_after(pmp_deadline, deadline))
3646 pmp_deadline = deadline;
3647 ata_wait_ready(link, pmp_deadline, check_ready);
3648 }
3649 rc = -EAGAIN;
3650 goto out;
3651 }
3652
3653 rc = 0;
3654 if (check_ready)
3655 rc = ata_wait_ready(link, deadline, check_ready);
Tejun Heob6103f62006-11-01 17:59:53 +09003656 out:
Tejun Heo9dadd452008-04-07 22:47:19 +09003657 if (rc && rc != -EAGAIN)
3658 ata_link_printk(link, KERN_ERR,
3659 "COMRESET failed (errno=%d)\n", rc);
Tejun Heob6103f62006-11-01 17:59:53 +09003660 DPRINTK("EXIT, rc=%d\n", rc);
3661 return rc;
3662}
3663
3664/**
Tejun Heo57c9efd2008-04-07 22:47:19 +09003665 * sata_std_hardreset - COMRESET w/o waiting or classification
3666 * @link: link to reset
3667 * @class: resulting class of attached device
3668 * @deadline: deadline jiffies for the operation
3669 *
3670 * Standard SATA COMRESET w/o waiting or classification.
3671 *
3672 * LOCKING:
3673 * Kernel thread context (may sleep)
3674 *
3675 * RETURNS:
3676 * 0 if link offline, -EAGAIN if link online, -errno on errors.
3677 */
3678int sata_std_hardreset(struct ata_link *link, unsigned int *class,
3679 unsigned long deadline)
3680{
3681 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
3682 bool online;
3683 int rc;
3684
3685 /* do hardreset */
3686 rc = sata_link_hardreset(link, timing, deadline, &online, NULL);
Tejun Heo57c9efd2008-04-07 22:47:19 +09003687 return online ? -EAGAIN : rc;
3688}
3689
3690/**
Tejun Heo203c75b2008-04-07 22:47:18 +09003691 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003692 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003693 * @classes: classes of attached devices
3694 *
3695 * This function is invoked after a successful reset. Note that
3696 * the device might have been reset more than once using
3697 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003698 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003699 * LOCKING:
3700 * Kernel thread context (may sleep)
3701 */
Tejun Heo203c75b2008-04-07 22:47:18 +09003702void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003703{
3704 DPRINTK("ENTER\n");
3705
Tejun Heoc2bd5802006-01-24 17:05:22 +09003706 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003707 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003708
Tejun Heoc2bd5802006-01-24 17:05:22 +09003709 DPRINTK("EXIT\n");
3710}
3711
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003712/**
Tejun Heo623a3122006-03-05 17:55:58 +09003713 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003714 * @dev: device to compare against
3715 * @new_class: class of the new device
3716 * @new_id: IDENTIFY page of the new device
3717 *
3718 * Compare @new_class and @new_id against @dev and determine
3719 * whether @dev is the device indicated by @new_class and
3720 * @new_id.
3721 *
3722 * LOCKING:
3723 * None.
3724 *
3725 * RETURNS:
3726 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3727 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003728static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3729 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003730{
3731 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003732 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3733 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003734
3735 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003736 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3737 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003738 return 0;
3739 }
3740
Tejun Heoa0cf7332007-01-02 20:18:49 +09003741 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3742 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3743 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3744 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003745
3746 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003747 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3748 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003749 return 0;
3750 }
3751
3752 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003753 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3754 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003755 return 0;
3756 }
3757
Tejun Heo623a3122006-03-05 17:55:58 +09003758 return 1;
3759}
3760
3761/**
Tejun Heofe309112007-05-15 03:28:15 +09003762 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003763 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003764 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003765 *
3766 * Re-read IDENTIFY page and make sure @dev is still attached to
3767 * the port.
3768 *
3769 * LOCKING:
3770 * Kernel thread context (may sleep)
3771 *
3772 * RETURNS:
3773 * 0 on success, negative errno otherwise
3774 */
Tejun Heofe309112007-05-15 03:28:15 +09003775int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003776{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003777 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003778 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003779 int rc;
3780
Tejun Heofe635c72006-05-15 20:57:35 +09003781 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003782 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003783 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003784 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003785
3786 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003787 if (!ata_dev_same_device(dev, class, id))
3788 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003789
Tejun Heofe635c72006-05-15 20:57:35 +09003790 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003791 return 0;
3792}
3793
3794/**
3795 * ata_dev_revalidate - Revalidate ATA device
3796 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09003797 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09003798 * @readid_flags: read ID flags
3799 *
3800 * Re-read IDENTIFY page, make sure @dev is still attached to the
3801 * port and reconfigure it according to the new IDENTIFY page.
3802 *
3803 * LOCKING:
3804 * Kernel thread context (may sleep)
3805 *
3806 * RETURNS:
3807 * 0 on success, negative errno otherwise
3808 */
Tejun Heo422c9da2007-09-23 13:14:12 +09003809int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
3810 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09003811{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003812 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003813 int rc;
3814
3815 if (!ata_dev_enabled(dev))
3816 return -ENODEV;
3817
Tejun Heo422c9da2007-09-23 13:14:12 +09003818 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
3819 if (ata_class_enabled(new_class) &&
3820 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
3821 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
3822 dev->class, new_class);
3823 rc = -ENODEV;
3824 goto fail;
3825 }
3826
Tejun Heofe309112007-05-15 03:28:15 +09003827 /* re-read ID */
3828 rc = ata_dev_reread_id(dev, readid_flags);
3829 if (rc)
3830 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003831
3832 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003833 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003834 if (rc)
3835 goto fail;
3836
3837 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09003838 if (dev->class == ATA_DEV_ATA && n_sectors &&
3839 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003840 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3841 "%llu != %llu\n",
3842 (unsigned long long)n_sectors,
3843 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09003844
3845 /* restore original n_sectors */
3846 dev->n_sectors = n_sectors;
3847
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003848 rc = -ENODEV;
3849 goto fail;
3850 }
3851
3852 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003853
3854 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003855 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003856 return rc;
3857}
3858
Alan Cox6919a0a2006-10-27 19:08:46 -07003859struct ata_blacklist_entry {
3860 const char *model_num;
3861 const char *model_rev;
3862 unsigned long horkage;
3863};
3864
3865static const struct ata_blacklist_entry ata_device_blacklist [] = {
3866 /* Devices with DMA related problems under Linux */
3867 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3868 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3869 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3870 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3871 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3872 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3873 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3874 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3875 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3876 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3877 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3878 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3879 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3880 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3881 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3882 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3883 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3884 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3885 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3886 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3887 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3888 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3889 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3890 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3891 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3892 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003893 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3894 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003895 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003896 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09003897 /* Odd clown on sil3726/4726 PMPs */
3898 { "Config Disk", NULL, ATA_HORKAGE_NODMA |
3899 ATA_HORKAGE_SKIP_PM },
Alan Cox6919a0a2006-10-27 19:08:46 -07003900
Albert Lee18d6e9d2007-04-02 11:34:15 +08003901 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003902 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003903
Alan Cox6919a0a2006-10-27 19:08:46 -07003904 /* Devices we expect to fail diagnostics */
3905
3906 /* Devices where NCQ should be avoided */
3907 /* NCQ is slow */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003908 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo459ad682007-12-07 12:46:23 +09003909 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo09125ea2007-02-28 15:21:23 +09003910 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3911 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003912 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003913 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003914 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Paolo Ornatida6f0ec2007-10-04 11:06:56 +09003915 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
Tejun Heoe41bd3e2007-12-09 19:45:39 +09003916 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003917
Robert Hancock36e337d2007-04-02 22:05:29 -06003918 /* Blacklist entries taken from Silicon Image 3124/3132
3919 Windows driver .inf file - also several Linux problem reports */
3920 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3921 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3922 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003923
Tejun Heo16c55b02007-08-29 11:58:33 +09003924 /* devices which puke on READ_NATIVE_MAX */
3925 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3926 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3927 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3928 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003929
Alan Cox93328e12007-09-29 04:06:48 -04003930 /* Devices which report 1 sector over size HPA */
3931 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
3932 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
Mikko Rapelib152fcd2008-02-19 01:41:25 +01003933 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
Alan Cox93328e12007-09-29 04:06:48 -04003934
Alan Cox6bbfd532007-11-05 22:58:58 +00003935 /* Devices which get the IVB wrong */
3936 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
3937 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
Peter Missele9f33402007-11-27 18:04:42 +01003938 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
3939 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
3940 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00003941
Alan Cox6919a0a2006-10-27 19:08:46 -07003942 /* End Marker */
3943 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003945
Adrian Bunk741b7762007-10-24 18:23:06 +02003946static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003947{
3948 const char *p;
3949 int len;
3950
3951 /*
3952 * check for trailing wildcard: *\0
3953 */
3954 p = strchr(patt, wildchar);
3955 if (p && ((*(p + 1)) == 0))
3956 len = p - patt;
Andrew Paprocki317b50b2007-10-15 15:43:12 -04003957 else {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003958 len = strlen(name);
Andrew Paprocki317b50b2007-10-15 15:43:12 -04003959 if (!len) {
3960 if (!*patt)
3961 return 0;
3962 return -1;
3963 }
3964 }
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003965
3966 return strncmp(patt, name, len);
3967}
3968
Tejun Heo75683fe2007-07-05 13:31:27 +09003969static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003971 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3972 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003973 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003974
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003975 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3976 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Alan Cox6919a0a2006-10-27 19:08:46 -07003978 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003979 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003980 if (ad->model_rev == NULL)
3981 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003982 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07003983 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003984 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003985 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 return 0;
3988}
3989
Alan Cox6919a0a2006-10-27 19:08:46 -07003990static int ata_dma_blacklisted(const struct ata_device *dev)
3991{
3992 /* We don't support polling DMA.
3993 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3994 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3995 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003996 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07003997 (dev->flags & ATA_DFLAG_CDB_INTR))
3998 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09003999 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07004000}
4001
Tejun Heoa6d5a512006-03-06 04:31:57 +09004002/**
Alan Cox6bbfd532007-11-05 22:58:58 +00004003 * ata_is_40wire - check drive side detection
4004 * @dev: device
4005 *
4006 * Perform drive side detection decoding, allowing for device vendors
4007 * who can't follow the documentation.
4008 */
4009
4010static int ata_is_40wire(struct ata_device *dev)
4011{
4012 if (dev->horkage & ATA_HORKAGE_IVB)
4013 return ata_drive_40wire_relaxed(dev->id);
4014 return ata_drive_40wire(dev->id);
4015}
4016
4017/**
Alan Cox15a55512008-03-28 14:33:46 -07004018 * cable_is_40wire - 40/80/SATA decider
4019 * @ap: port to consider
4020 *
4021 * This function encapsulates the policy for speed management
4022 * in one place. At the moment we don't cache the result but
4023 * there is a good case for setting ap->cbl to the result when
4024 * we are called with unknown cables (and figuring out if it
4025 * impacts hotplug at all).
4026 *
4027 * Return 1 if the cable appears to be 40 wire.
4028 */
4029
4030static int cable_is_40wire(struct ata_port *ap)
4031{
4032 struct ata_link *link;
4033 struct ata_device *dev;
4034
4035 /* If the controller thinks we are 40 wire, we are */
4036 if (ap->cbl == ATA_CBL_PATA40)
4037 return 1;
4038 /* If the controller thinks we are 80 wire, we are */
4039 if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA)
4040 return 0;
Alan Coxf7920682008-04-08 16:37:50 +01004041 /* If the system is known to be 40 wire short cable (eg laptop),
4042 then we allow 80 wire modes even if the drive isn't sure */
4043 if (ap->cbl == ATA_CBL_PATA40_SHORT)
4044 return 0;
Alan Cox15a55512008-03-28 14:33:46 -07004045 /* If the controller doesn't know we scan
4046
4047 - Note: We look for all 40 wire detects at this point.
4048 Any 80 wire detect is taken to be 80 wire cable
4049 because
4050 - In many setups only the one drive (slave if present)
4051 will give a valid detect
4052 - If you have a non detect capable drive you don't
4053 want it to colour the choice
4054 */
4055 ata_port_for_each_link(link, ap) {
4056 ata_link_for_each_dev(dev, link) {
4057 if (!ata_is_40wire(dev))
4058 return 0;
4059 }
4060 }
4061 return 1;
4062}
4063
4064/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09004065 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09004066 * @dev: Device to compute xfermask for
4067 *
Tejun Heoacf356b2006-03-24 14:07:50 +09004068 * Compute supported xfermask of @dev and store it in
4069 * dev->*_mask. This function is responsible for applying all
4070 * known limits including host controller limits, device
4071 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09004072 *
4073 * LOCKING:
4074 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09004075 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004076static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004078 struct ata_link *link = dev->link;
4079 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04004080 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09004081 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Tejun Heo37deecb2006-08-10 16:59:07 +09004083 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09004084 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4085 ap->mwdma_mask, ap->udma_mask);
4086
Robert Hancock8343f882007-03-06 02:37:51 -08004087 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09004088 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4089 dev->mwdma_mask, dev->udma_mask);
4090 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09004091
Alan Coxb352e572006-08-10 18:52:12 +01004092 /*
4093 * CFA Advanced TrueIDE timings are not allowed on a shared
4094 * cable
4095 */
4096 if (ata_dev_pair(dev)) {
4097 /* No PIO5 or PIO6 */
4098 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4099 /* No MWDMA3 or MWDMA 4 */
4100 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4101 }
4102
Tejun Heo37deecb2006-08-10 16:59:07 +09004103 if (ata_dma_blacklisted(dev)) {
4104 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09004105 ata_dev_printk(dev, KERN_WARNING,
4106 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09004107 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09004108
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01004109 if ((host->flags & ATA_HOST_SIMPLEX) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004110 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09004111 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4112 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4113 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01004114 }
Tejun Heo565083e2006-04-02 17:54:47 +09004115
Jeff Garzike4246752007-03-09 09:56:46 -05004116 if (ap->flags & ATA_FLAG_NO_IORDY)
4117 xfer_mask &= ata_pio_mask_no_iordy(dev);
4118
Alan Cox5444a6f2006-03-27 18:58:20 +01004119 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05004120 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01004121
Robert Hancock8343f882007-03-06 02:37:51 -08004122 /* Apply cable rule here. Don't apply it early because when
4123 * we handle hot plug the cable type can itself change.
4124 * Check this last so that we know if the transfer rate was
4125 * solely limited by the cable.
4126 * Unknown or 80 wire cables reported host side are checked
4127 * drive side as well. Cases where we know a 40wire cable
4128 * is used safely for 80 are not checked here.
4129 */
4130 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4131 /* UDMA/44 or higher would be available */
Alan Cox15a55512008-03-28 14:33:46 -07004132 if (cable_is_40wire(ap)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004133 ata_dev_printk(dev, KERN_WARNING,
Robert Hancock8343f882007-03-06 02:37:51 -08004134 "limited to UDMA/33 due to 40-wire cable\n");
4135 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4136 }
4137
Tejun Heo565083e2006-04-02 17:54:47 +09004138 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4139 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140}
4141
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 * @dev: Device to which command will be sent
4145 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004146 * Issue SET FEATURES - XFER MODE command to device @dev
4147 * on port @ap.
4148 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004150 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004151 *
4152 * RETURNS:
4153 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 */
4155
Tejun Heo3373efd2006-05-15 20:57:53 +09004156static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157{
Tejun Heoa0123702005-12-13 14:49:31 +09004158 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004159 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
4161 /* set up set-features taskfile */
4162 DPRINTK("set features - xfer mode\n");
4163
Tejun Heo464cf172007-05-27 15:10:40 +02004164 /* Some controllers and ATAPI devices show flaky interrupt
4165 * behavior after setting xfer mode. Use polling instead.
4166 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004167 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004168 tf.command = ATA_CMD_SET_FEATURES;
4169 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004170 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004171 tf.protocol = ATA_PROT_NODATA;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004172 /* If we are using IORDY we must send the mode setting command */
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004173 if (ata_pio_need_iordy(dev))
4174 tf.nsect = dev->xfer_mode;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004175 /* If the device has IORDY and the controller does not - turn it off */
4176 else if (ata_id_has_iordy(dev->id))
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004177 tf.nsect = 0x01;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004178 else /* In the ancient relic department - skip all of this */
4179 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
Tejun Heo2b789102007-10-09 15:05:44 +09004181 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
Tejun Heo83206a22006-03-24 15:25:31 +09004183 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4184 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186/**
Jeff Garzik218f3d32007-10-25 00:33:27 -04004187 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004188 * @dev: Device to which command will be sent
4189 * @enable: Whether to enable or disable the feature
Jeff Garzik218f3d32007-10-25 00:33:27 -04004190 * @feature: The sector count represents the feature to set
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004191 *
4192 * Issue SET FEATURES - SATA FEATURES command to device @dev
Jeff Garzik218f3d32007-10-25 00:33:27 -04004193 * on port @ap with sector count
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004194 *
4195 * LOCKING:
4196 * PCI/etc. bus probe sem.
4197 *
4198 * RETURNS:
4199 * 0 on success, AC_ERR_* mask otherwise.
4200 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04004201static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4202 u8 feature)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004203{
4204 struct ata_taskfile tf;
4205 unsigned int err_mask;
4206
4207 /* set up set-features taskfile */
4208 DPRINTK("set features - SATA features\n");
4209
4210 ata_tf_init(dev, &tf);
4211 tf.command = ATA_CMD_SET_FEATURES;
4212 tf.feature = enable;
4213 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4214 tf.protocol = ATA_PROT_NODATA;
Jeff Garzik218f3d32007-10-25 00:33:27 -04004215 tf.nsect = feature;
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004216
Tejun Heo2b789102007-10-09 15:05:44 +09004217 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004218
4219 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4220 return err_mask;
4221}
4222
4223/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004224 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004225 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004226 * @heads: Number of heads (taskfile parameter)
4227 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004228 *
4229 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004230 * Kernel thread context (may sleep)
4231 *
4232 * RETURNS:
4233 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004234 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004235static unsigned int ata_dev_init_params(struct ata_device *dev,
4236 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004237{
Tejun Heoa0123702005-12-13 14:49:31 +09004238 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004239 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004240
4241 /* Number of sectors per track 1-255. Number of heads 1-16 */
4242 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004243 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004244
4245 /* set up init dev params taskfile */
4246 DPRINTK("init dev params \n");
4247
Tejun Heo3373efd2006-05-15 20:57:53 +09004248 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004249 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4250 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4251 tf.protocol = ATA_PROT_NODATA;
4252 tf.nsect = sectors;
4253 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004254
Tejun Heo2b789102007-10-09 15:05:44 +09004255 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004256 /* A clean abort indicates an original or just out of spec drive
4257 and we should continue as we issue the setup based on the
4258 drive reported working geometry */
4259 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4260 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004261
Tejun Heo6aff8f12006-02-15 18:24:09 +09004262 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4263 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004264}
4265
4266/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004267 * ata_sg_clean - Unmap DMA memory associated with command
4268 * @qc: Command containing DMA memory to be released
4269 *
4270 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 *
4272 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004273 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004275void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276{
4277 struct ata_port *ap = qc->ap;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004278 struct scatterlist *sg = qc->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 int dir = qc->dma_dir;
4280
Tejun Heoa46314742006-02-11 19:11:13 +09004281 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282
James Bottomleydde20202008-02-19 11:36:56 +01004283 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
James Bottomleydde20202008-02-19 11:36:56 +01004285 if (qc->n_elem)
4286 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287
4288 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004289 qc->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290}
4291
4292/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4294 * @qc: Metadata associated with taskfile to check
4295 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004296 * Allow low-level driver to filter ATA PACKET commands, returning
4297 * a status indicating whether or not it is OK to use DMA for the
4298 * supplied PACKET command.
4299 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004301 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004302 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 * RETURNS: 0 when ATAPI DMA can be used
4304 * nonzero otherwise
4305 */
4306int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4307{
4308 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309
Tejun Heob9a41972007-06-27 02:48:43 +09004310 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4311 * few ATAPI devices choke on such DMA requests.
4312 */
4313 if (unlikely(qc->nbytes & 15))
4314 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004315
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004317 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318
Tejun Heob9a41972007-06-27 02:48:43 +09004319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320}
Tejun Heob9a41972007-06-27 02:48:43 +09004321
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004323 * ata_std_qc_defer - Check whether a qc needs to be deferred
4324 * @qc: ATA command in question
4325 *
4326 * Non-NCQ commands cannot run with any other command, NCQ or
4327 * not. As upper layer only knows the queue depth, we are
4328 * responsible for maintaining exclusion. This function checks
4329 * whether a new command @qc can be issued.
4330 *
4331 * LOCKING:
4332 * spin_lock_irqsave(host lock)
4333 *
4334 * RETURNS:
4335 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4336 */
4337int ata_std_qc_defer(struct ata_queued_cmd *qc)
4338{
4339 struct ata_link *link = qc->dev->link;
4340
4341 if (qc->tf.protocol == ATA_PROT_NCQ) {
4342 if (!ata_tag_valid(link->active_tag))
4343 return 0;
4344 } else {
4345 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4346 return 0;
4347 }
4348
4349 return ATA_DEFER_LINK;
4350}
4351
Brian Kinge46834c2006-03-17 17:04:03 -06004352void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4353
Jeff Garzik0cba6322005-05-30 19:49:12 -04004354/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004355 * ata_sg_init - Associate command with scatter-gather table.
4356 * @qc: Command to be associated
4357 * @sg: Scatter-gather table.
4358 * @n_elem: Number of elements in s/g table.
4359 *
4360 * Initialize the data-related elements of queued_cmd @qc
4361 * to point to a scatter-gather table @sg, containing @n_elem
4362 * elements.
4363 *
4364 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004365 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004366 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4368 unsigned int n_elem)
4369{
Tejun Heoff2aeb12007-12-05 16:43:11 +09004370 qc->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 qc->n_elem = n_elem;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004372 qc->cursg = qc->sg;
4373}
4374
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004376 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4377 * @qc: Command with scatter-gather table to be mapped.
4378 *
4379 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 *
4381 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004382 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 *
4384 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004385 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 *
4387 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388static int ata_sg_setup(struct ata_queued_cmd *qc)
4389{
4390 struct ata_port *ap = qc->ap;
James Bottomleydde20202008-02-19 11:36:56 +01004391 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
Tejun Heo44877b42007-02-21 01:06:51 +09004393 VPRINTK("ENTER, ata%u\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
James Bottomleydde20202008-02-19 11:36:56 +01004395 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
4396 if (n_elem < 1)
4397 return -1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004398
James Bottomleydde20202008-02-19 11:36:56 +01004399 DPRINTK("%d sg elements mapped\n", n_elem);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004400
James Bottomleydde20202008-02-19 11:36:56 +01004401 qc->n_elem = n_elem;
Tejun Heof92a2632007-12-05 16:43:10 +09004402 qc->flags |= ATA_QCFLAG_DMAMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
4404 return 0;
4405}
4406
4407/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004408 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004409 * @buf: Buffer to swap
4410 * @buf_words: Number of 16-bit words in buffer.
4411 *
4412 * Swap halves of 16-bit words if needed to convert from
4413 * little-endian byte order to native cpu byte order, or
4414 * vice-versa.
4415 *
4416 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004417 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004418 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419void swap_buf_le16(u16 *buf, unsigned int buf_words)
4420{
4421#ifdef __BIG_ENDIAN
4422 unsigned int i;
4423
4424 for (i = 0; i < buf_words; i++)
4425 buf[i] = le16_to_cpu(buf[i]);
4426#endif /* __BIG_ENDIAN */
4427}
4428
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004429/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 * ata_qc_new - Request an available ATA command, for queueing
4431 * @ap: Port associated with device @dev
4432 * @dev: Device from whom we request an available command structure
4433 *
4434 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004435 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 */
4437
4438static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4439{
4440 struct ata_queued_cmd *qc = NULL;
4441 unsigned int i;
4442
Tejun Heoe3180492006-05-15 20:58:09 +09004443 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09004444 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09004445 return NULL;
4446
Tejun Heo2ab7db12006-05-15 20:58:02 +09004447 /* the last tag is reserved for internal command. */
4448 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004449 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004450 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 break;
4452 }
4453
4454 if (qc)
4455 qc->tag = i;
4456
4457 return qc;
4458}
4459
4460/**
4461 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 * @dev: Device from whom we request an available command structure
4463 *
4464 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004465 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 */
4467
Tejun Heo3373efd2006-05-15 20:57:53 +09004468struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004470 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 struct ata_queued_cmd *qc;
4472
4473 qc = ata_qc_new(ap);
4474 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 qc->scsicmd = NULL;
4476 qc->ap = ap;
4477 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004479 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 }
4481
4482 return qc;
4483}
4484
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485/**
4486 * ata_qc_free - free unused ata_queued_cmd
4487 * @qc: Command to complete
4488 *
4489 * Designed to free unused ata_queued_cmd object
4490 * in case something prevents using it.
4491 *
4492 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004493 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 */
4495void ata_qc_free(struct ata_queued_cmd *qc)
4496{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004497 struct ata_port *ap = qc->ap;
4498 unsigned int tag;
4499
Tejun Heoa46314742006-02-11 19:11:13 +09004500 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501
Tejun Heo4ba946e2006-01-23 13:09:36 +09004502 qc->flags = 0;
4503 tag = qc->tag;
4504 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004505 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004506 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508}
4509
Tejun Heo76014422006-02-11 15:13:49 +09004510void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004512 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004513 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004514
Tejun Heoa46314742006-02-11 19:11:13 +09004515 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4516 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
4518 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4519 ata_sg_clean(qc);
4520
Tejun Heo7401abf2006-05-15 20:57:32 +09004521 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09004522 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004523 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09004524 if (!link->sactive)
4525 ap->nr_active_links--;
4526 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004527 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09004528 ap->nr_active_links--;
4529 }
4530
4531 /* clear exclusive status */
4532 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
4533 ap->excl_link == link))
4534 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09004535
Albert Lee3f3791d2005-08-16 14:25:38 +08004536 /* atapi: mark qc as inactive to prevent the interrupt handler
4537 * from completing the command twice later, before the error handler
4538 * is called. (when rc != 0 and atapi request sense is needed)
4539 */
4540 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004541 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004542
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004544 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545}
4546
Tejun Heo39599a52006-11-14 22:37:35 +09004547static void fill_result_tf(struct ata_queued_cmd *qc)
4548{
4549 struct ata_port *ap = qc->ap;
4550
Tejun Heo39599a52006-11-14 22:37:35 +09004551 qc->result_tf.flags = qc->tf.flags;
Tejun Heo22183bf2008-04-07 22:47:20 +09004552 ap->ops->qc_fill_rtf(qc);
Tejun Heo39599a52006-11-14 22:37:35 +09004553}
4554
Tejun Heo00115e02007-11-27 19:28:58 +09004555static void ata_verify_xfer(struct ata_queued_cmd *qc)
4556{
4557 struct ata_device *dev = qc->dev;
4558
4559 if (ata_tag_internal(qc->tag))
4560 return;
4561
4562 if (ata_is_nodata(qc->tf.protocol))
4563 return;
4564
4565 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
4566 return;
4567
4568 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
4569}
4570
Tejun Heof686bcb2006-05-15 20:58:05 +09004571/**
4572 * ata_qc_complete - Complete an active ATA command
4573 * @qc: Command to complete
4574 * @err_mask: ATA Status register contents
4575 *
4576 * Indicate to the mid and upper layers that an ATA
4577 * command has completed, with either an ok or not-ok status.
4578 *
4579 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004580 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09004581 */
4582void ata_qc_complete(struct ata_queued_cmd *qc)
4583{
4584 struct ata_port *ap = qc->ap;
4585
4586 /* XXX: New EH and old EH use different mechanisms to
4587 * synchronize EH with regular execution path.
4588 *
4589 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4590 * Normal execution path is responsible for not accessing a
4591 * failed qc. libata core enforces the rule by returning NULL
4592 * from ata_qc_from_tag() for failed qcs.
4593 *
4594 * Old EH depends on ata_qc_complete() nullifying completion
4595 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4596 * not synchronize with interrupt handler. Only PIO task is
4597 * taken care of.
4598 */
4599 if (ap->ops->error_handler) {
Tejun Heo4dbfa392007-10-25 18:22:44 +09004600 struct ata_device *dev = qc->dev;
4601 struct ata_eh_info *ehi = &dev->link->eh_info;
4602
Tejun Heob51e9e52006-06-29 01:29:30 +09004603 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09004604
4605 if (unlikely(qc->err_mask))
4606 qc->flags |= ATA_QCFLAG_FAILED;
4607
4608 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4609 if (!ata_tag_internal(qc->tag)) {
4610 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09004611 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004612 ata_qc_schedule_eh(qc);
4613 return;
4614 }
4615 }
4616
4617 /* read result TF if requested */
4618 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004619 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004620
Tejun Heo4dbfa392007-10-25 18:22:44 +09004621 /* Some commands need post-processing after successful
4622 * completion.
4623 */
4624 switch (qc->tf.command) {
4625 case ATA_CMD_SET_FEATURES:
4626 if (qc->tf.feature != SETFEATURES_WC_ON &&
4627 qc->tf.feature != SETFEATURES_WC_OFF)
4628 break;
4629 /* fall through */
4630 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
4631 case ATA_CMD_SET_MULTI: /* multi_count changed */
4632 /* revalidate device */
4633 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
4634 ata_port_schedule_eh(ap);
4635 break;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004636
4637 case ATA_CMD_SLEEP:
4638 dev->flags |= ATA_DFLAG_SLEEPING;
4639 break;
Tejun Heo4dbfa392007-10-25 18:22:44 +09004640 }
4641
Tejun Heo00115e02007-11-27 19:28:58 +09004642 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
4643 ata_verify_xfer(qc);
4644
Tejun Heof686bcb2006-05-15 20:58:05 +09004645 __ata_qc_complete(qc);
4646 } else {
4647 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4648 return;
4649
4650 /* read result TF if failed or requested */
4651 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004652 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004653
4654 __ata_qc_complete(qc);
4655 }
4656}
4657
Tejun Heodedaf2b2006-05-15 21:03:43 +09004658/**
4659 * ata_qc_complete_multiple - Complete multiple qcs successfully
4660 * @ap: port in question
4661 * @qc_active: new qc_active mask
Tejun Heodedaf2b2006-05-15 21:03:43 +09004662 *
4663 * Complete in-flight commands. This functions is meant to be
4664 * called from low-level driver's interrupt routine to complete
4665 * requests normally. ap->qc_active and @qc_active is compared
4666 * and commands are completed accordingly.
4667 *
4668 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004669 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004670 *
4671 * RETURNS:
4672 * Number of completed commands on success, -errno otherwise.
4673 */
Tejun Heo79f97da2008-04-07 22:47:20 +09004674int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004675{
4676 int nr_done = 0;
4677 u32 done_mask;
4678 int i;
4679
4680 done_mask = ap->qc_active ^ qc_active;
4681
4682 if (unlikely(done_mask & qc_active)) {
4683 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4684 "(%08x->%08x)\n", ap->qc_active, qc_active);
4685 return -EINVAL;
4686 }
4687
4688 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4689 struct ata_queued_cmd *qc;
4690
4691 if (!(done_mask & (1 << i)))
4692 continue;
4693
4694 if ((qc = ata_qc_from_tag(ap, i))) {
Tejun Heodedaf2b2006-05-15 21:03:43 +09004695 ata_qc_complete(qc);
4696 nr_done++;
4697 }
4698 }
4699
4700 return nr_done;
4701}
4702
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703/**
4704 * ata_qc_issue - issue taskfile to device
4705 * @qc: command to issue to device
4706 *
4707 * Prepare an ATA command to submission to device.
4708 * This includes mapping the data into a DMA-able
4709 * area, filling in the S/G table, and finally
4710 * writing the taskfile to hardware, starting the command.
4711 *
4712 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004713 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004715void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716{
4717 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004718 struct ata_link *link = qc->dev->link;
Tejun Heo405e66b2007-11-27 19:28:53 +09004719 u8 prot = qc->tf.protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720
Tejun Heodedaf2b2006-05-15 21:03:43 +09004721 /* Make sure only one non-NCQ command is outstanding. The
4722 * check is skipped for old EH because it reuses active qc to
4723 * request ATAPI sense.
4724 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004725 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09004726
Tejun Heo1973a022007-12-05 10:36:13 +09004727 if (ata_is_ncq(prot)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004728 WARN_ON(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09004729
4730 if (!link->sactive)
4731 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004732 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004733 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004734 WARN_ON(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09004735
4736 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004737 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004738 }
4739
Tejun Heoe4a70e72006-03-31 20:36:47 +09004740 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004741 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004742
Tejun Heof92a2632007-12-05 16:43:10 +09004743 /* We guarantee to LLDs that they will have at least one
4744 * non-zero sg if the command is a data command.
4745 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09004746 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
Tejun Heof92a2632007-12-05 16:43:10 +09004747
Tejun Heo405e66b2007-11-27 19:28:53 +09004748 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
Tejun Heof92a2632007-12-05 16:43:10 +09004749 (ap->flags & ATA_FLAG_PIO_DMA)))
Tejun Heo001102d2007-12-05 16:43:09 +09004750 if (ata_sg_setup(qc))
4751 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752
Tejun Heocf480622008-01-24 00:05:14 +09004753 /* if device is sleeping, schedule reset and abort the link */
Tejun Heo054a5fb2007-10-25 18:30:36 +09004754 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
Tejun Heocf480622008-01-24 00:05:14 +09004755 link->eh_info.action |= ATA_EH_RESET;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004756 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
4757 ata_link_abort(link);
4758 return;
4759 }
4760
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 ap->ops->qc_prep(qc);
4762
Tejun Heo8e0e6942006-03-31 20:41:11 +09004763 qc->err_mask |= ap->ops->qc_issue(qc);
4764 if (unlikely(qc->err_mask))
4765 goto err;
4766 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767
Tejun Heo8e436af2006-01-23 13:09:36 +09004768sg_err:
Tejun Heo8e0e6942006-03-31 20:41:11 +09004769 qc->err_mask |= AC_ERR_SYSTEM;
4770err:
4771 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772}
4773
4774/**
Tejun Heo34bf2172006-05-15 20:57:46 +09004775 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09004776 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09004777 *
Tejun Heo936fd732007-08-06 18:36:23 +09004778 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09004779 *
4780 * LOCKING:
4781 * None.
4782 *
4783 * RETURNS:
4784 * 1 if SCRs are accessible, 0 otherwise.
4785 */
Tejun Heo936fd732007-08-06 18:36:23 +09004786int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004787{
Tejun Heo936fd732007-08-06 18:36:23 +09004788 struct ata_port *ap = link->ap;
4789
Tejun Heoa16abc02007-05-21 18:33:47 +02004790 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09004791}
4792
4793/**
4794 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09004795 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004796 * @reg: SCR to read
4797 * @val: Place to store read value
4798 *
Tejun Heo936fd732007-08-06 18:36:23 +09004799 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09004800 * guaranteed to succeed if @link is ap->link, the cable type of
4801 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09004802 *
4803 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09004804 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004805 *
4806 * RETURNS:
4807 * 0 on success, negative errno on failure.
4808 */
Tejun Heo936fd732007-08-06 18:36:23 +09004809int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004810{
Tejun Heo633273a32007-09-23 13:19:54 +09004811 if (ata_is_host_link(link)) {
4812 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004813
Tejun Heo633273a32007-09-23 13:19:54 +09004814 if (sata_scr_valid(link))
4815 return ap->ops->scr_read(ap, reg, val);
4816 return -EOPNOTSUPP;
4817 }
4818
4819 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004820}
4821
4822/**
4823 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09004824 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004825 * @reg: SCR to write
4826 * @val: value to write
4827 *
Tejun Heo936fd732007-08-06 18:36:23 +09004828 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09004829 * guaranteed to succeed if @link is ap->link, the cable type of
4830 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09004831 *
4832 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09004833 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004834 *
4835 * RETURNS:
4836 * 0 on success, negative errno on failure.
4837 */
Tejun Heo936fd732007-08-06 18:36:23 +09004838int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004839{
Tejun Heo633273a32007-09-23 13:19:54 +09004840 if (ata_is_host_link(link)) {
4841 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004842
Tejun Heo633273a32007-09-23 13:19:54 +09004843 if (sata_scr_valid(link))
4844 return ap->ops->scr_write(ap, reg, val);
4845 return -EOPNOTSUPP;
4846 }
4847
4848 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004849}
4850
4851/**
4852 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09004853 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004854 * @reg: SCR to write
4855 * @val: value to write
4856 *
4857 * This function is identical to sata_scr_write() except that this
4858 * function performs flush after writing to the register.
4859 *
4860 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09004861 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004862 *
4863 * RETURNS:
4864 * 0 on success, negative errno on failure.
4865 */
Tejun Heo936fd732007-08-06 18:36:23 +09004866int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004867{
Tejun Heo633273a32007-09-23 13:19:54 +09004868 if (ata_is_host_link(link)) {
4869 struct ata_port *ap = link->ap;
4870 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09004871
Tejun Heo633273a32007-09-23 13:19:54 +09004872 if (sata_scr_valid(link)) {
4873 rc = ap->ops->scr_write(ap, reg, val);
4874 if (rc == 0)
4875 rc = ap->ops->scr_read(ap, reg, &val);
4876 return rc;
4877 }
4878 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09004879 }
Tejun Heo633273a32007-09-23 13:19:54 +09004880
4881 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004882}
4883
4884/**
Tejun Heo936fd732007-08-06 18:36:23 +09004885 * ata_link_online - test whether the given link is online
4886 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09004887 *
Tejun Heo936fd732007-08-06 18:36:23 +09004888 * Test whether @link is online. Note that this function returns
4889 * 0 if online status of @link cannot be obtained, so
4890 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09004891 *
4892 * LOCKING:
4893 * None.
4894 *
4895 * RETURNS:
4896 * 1 if the port online status is available and online.
4897 */
Tejun Heo936fd732007-08-06 18:36:23 +09004898int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004899{
4900 u32 sstatus;
4901
Tejun Heo936fd732007-08-06 18:36:23 +09004902 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4903 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09004904 return 1;
4905 return 0;
4906}
4907
4908/**
Tejun Heo936fd732007-08-06 18:36:23 +09004909 * ata_link_offline - test whether the given link is offline
4910 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09004911 *
Tejun Heo936fd732007-08-06 18:36:23 +09004912 * Test whether @link is offline. Note that this function
4913 * returns 0 if offline status of @link cannot be obtained, so
4914 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09004915 *
4916 * LOCKING:
4917 * None.
4918 *
4919 * RETURNS:
4920 * 1 if the port offline status is available and offline.
4921 */
Tejun Heo936fd732007-08-06 18:36:23 +09004922int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004923{
4924 u32 sstatus;
4925
Tejun Heo936fd732007-08-06 18:36:23 +09004926 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4927 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09004928 return 1;
4929 return 0;
4930}
Edward Falk0baab862005-06-02 18:17:13 -04004931
Tejun Heo6ffa01d2007-03-02 17:32:47 +09004932#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04004933static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
4934 unsigned int action, unsigned int ehi_flags,
4935 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09004936{
4937 unsigned long flags;
4938 int i, rc;
4939
Jeff Garzikcca39742006-08-24 03:19:22 -04004940 for (i = 0; i < host->n_ports; i++) {
4941 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09004942 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09004943
4944 /* Previous resume operation might still be in
4945 * progress. Wait for PM_PENDING to clear.
4946 */
4947 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
4948 ata_port_wait_eh(ap);
4949 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4950 }
4951
4952 /* request PM ops to EH */
4953 spin_lock_irqsave(ap->lock, flags);
4954
4955 ap->pm_mesg = mesg;
4956 if (wait) {
4957 rc = 0;
4958 ap->pm_result = &rc;
4959 }
4960
4961 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09004962 __ata_port_for_each_link(link, ap) {
4963 link->eh_info.action |= action;
4964 link->eh_info.flags |= ehi_flags;
4965 }
Tejun Heo500530f2006-07-03 16:07:27 +09004966
4967 ata_port_schedule_eh(ap);
4968
4969 spin_unlock_irqrestore(ap->lock, flags);
4970
4971 /* wait and check result */
4972 if (wait) {
4973 ata_port_wait_eh(ap);
4974 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4975 if (rc)
4976 return rc;
4977 }
4978 }
4979
4980 return 0;
4981}
4982
4983/**
Jeff Garzikcca39742006-08-24 03:19:22 -04004984 * ata_host_suspend - suspend host
4985 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09004986 * @mesg: PM message
4987 *
Jeff Garzikcca39742006-08-24 03:19:22 -04004988 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09004989 * function requests EH to perform PM operations and waits for EH
4990 * to finish.
4991 *
4992 * LOCKING:
4993 * Kernel thread context (may sleep).
4994 *
4995 * RETURNS:
4996 * 0 on success, -errno on failure.
4997 */
Jeff Garzikcca39742006-08-24 03:19:22 -04004998int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09004999{
Tejun Heo9666f402007-05-04 21:27:47 +02005000 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005001
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005002 /*
5003 * disable link pm on all ports before requesting
5004 * any pm activity
5005 */
5006 ata_lpm_enable(host);
5007
Jeff Garzikcca39742006-08-24 03:19:22 -04005008 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005009 if (rc == 0)
5010 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005011 return rc;
5012}
5013
5014/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005015 * ata_host_resume - resume host
5016 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005017 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005018 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005019 * function requests EH to perform PM operations and returns.
5020 * Note that all resume operations are performed parallely.
5021 *
5022 * LOCKING:
5023 * Kernel thread context (may sleep).
5024 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005025void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005026{
Tejun Heocf480622008-01-24 00:05:14 +09005027 ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET,
Jeff Garzikcca39742006-08-24 03:19:22 -04005028 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005029 host->dev->power.power_state = PMSG_ON;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005030
5031 /* reenable link pm */
5032 ata_lpm_disable(host);
Tejun Heo500530f2006-07-03 16:07:27 +09005033}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005034#endif
Tejun Heo500530f2006-07-03 16:07:27 +09005035
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005036/**
5037 * ata_port_start - Set port up for dma.
5038 * @ap: Port to initialize
5039 *
5040 * Called just after data structures for each port are
5041 * initialized. Allocates space for PRD table.
5042 *
5043 * May be used as the port_start() entry in ata_port_operations.
5044 *
5045 * LOCKING:
5046 * Inherited from caller.
5047 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005048int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049{
Brian King2f1f6102006-03-23 17:30:15 -06005050 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051
Tejun Heof0d36ef2007-01-20 16:00:28 +09005052 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5053 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 if (!ap->prd)
5055 return -ENOMEM;
5056
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057 return 0;
5058}
5059
Edward Falk0baab862005-06-02 18:17:13 -04005060/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005061 * ata_dev_init - Initialize an ata_device structure
5062 * @dev: Device structure to initialize
5063 *
5064 * Initialize @dev in preparation for probing.
5065 *
5066 * LOCKING:
5067 * Inherited from caller.
5068 */
5069void ata_dev_init(struct ata_device *dev)
5070{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005071 struct ata_link *link = dev->link;
5072 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005073 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005074
Tejun Heo5a04bf42006-05-31 18:27:38 +09005075 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005076 link->sata_spd_limit = link->hw_sata_spd_limit;
5077 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005078
Tejun Heo72fa4b72006-05-31 18:27:32 +09005079 /* High bits of dev->flags are used to record warm plug
5080 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04005081 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09005082 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005083 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005084 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09005085 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005086 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005087
5088 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5089 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005090 dev->pio_mask = UINT_MAX;
5091 dev->mwdma_mask = UINT_MAX;
5092 dev->udma_mask = UINT_MAX;
5093}
5094
5095/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09005096 * ata_link_init - Initialize an ata_link structure
5097 * @ap: ATA port link is attached to
5098 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09005099 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09005100 *
5101 * Initialize @link.
5102 *
5103 * LOCKING:
5104 * Kernel thread context (may sleep)
5105 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005106void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005107{
5108 int i;
5109
5110 /* clear everything except for devices */
5111 memset(link, 0, offsetof(struct ata_link, device[0]));
5112
5113 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09005114 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005115 link->active_tag = ATA_TAG_POISON;
5116 link->hw_sata_spd_limit = UINT_MAX;
5117
5118 /* can't use iterator, ap isn't initialized yet */
5119 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5120 struct ata_device *dev = &link->device[i];
5121
5122 dev->link = link;
5123 dev->devno = dev - link->device;
5124 ata_dev_init(dev);
5125 }
5126}
5127
5128/**
5129 * sata_link_init_spd - Initialize link->sata_spd_limit
5130 * @link: Link to configure sata_spd_limit for
5131 *
5132 * Initialize @link->[hw_]sata_spd_limit to the currently
5133 * configured value.
5134 *
5135 * LOCKING:
5136 * Kernel thread context (may sleep).
5137 *
5138 * RETURNS:
5139 * 0 on success, -errno on failure.
5140 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005141int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005142{
Tejun Heo33267322008-02-13 09:15:09 +09005143 u32 scontrol;
5144 u8 spd;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005145 int rc;
5146
5147 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
5148 if (rc)
5149 return rc;
5150
5151 spd = (scontrol >> 4) & 0xf;
5152 if (spd)
5153 link->hw_sata_spd_limit &= (1 << spd) - 1;
5154
Tejun Heo33267322008-02-13 09:15:09 +09005155 ata_force_spd_limit(link);
5156
Tejun Heo4fb37a22007-08-06 18:36:23 +09005157 link->sata_spd_limit = link->hw_sata_spd_limit;
5158
5159 return 0;
5160}
5161
5162/**
Tejun Heof3187192007-04-17 23:44:07 +09005163 * ata_port_alloc - allocate and initialize basic ATA port resources
5164 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 *
Tejun Heof3187192007-04-17 23:44:07 +09005166 * Allocate and initialize basic ATA port resources.
5167 *
5168 * RETURNS:
5169 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005170 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005172 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173 */
Tejun Heof3187192007-04-17 23:44:07 +09005174struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175{
Tejun Heof3187192007-04-17 23:44:07 +09005176 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
Tejun Heof3187192007-04-17 23:44:07 +09005178 DPRINTK("ENTER\n");
5179
5180 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5181 if (!ap)
5182 return NULL;
5183
Tejun Heof4d6d002007-05-01 11:50:15 +02005184 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04005185 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005186 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09005187 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04005189 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09005190 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005192
5193#if defined(ATA_VERBOSE_DEBUG)
5194 /* turn on all debugging levels */
5195 ap->msg_enable = 0x00FF;
5196#elif defined(ATA_DEBUG)
5197 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 +09005198#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005199 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005200#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
Tejun Heo127102a2008-04-07 22:47:21 +09005202#ifdef CONFIG_ATA_SFF
Jeff Garzik442eacc2007-12-19 04:25:10 -05005203 INIT_DELAYED_WORK(&ap->port_task, ata_pio_task);
Tejun Heo127102a2008-04-07 22:47:21 +09005204#endif
David Howells65f27f32006-11-22 14:55:48 +00005205 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5206 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005207 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005208 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09005209 init_timer_deferrable(&ap->fastdrain_timer);
5210 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
5211 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212
Tejun Heo838df622006-05-15 20:57:44 +09005213 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09005214
Tejun Heo89898052007-08-06 18:36:23 +09005215 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216
5217#ifdef ATA_IRQ_TRAP
5218 ap->stats.unhandled_irq = 1;
5219 ap->stats.idle_irq = 1;
5220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222}
5223
Tejun Heof0d36ef2007-01-20 16:00:28 +09005224static void ata_host_release(struct device *gendev, void *res)
5225{
5226 struct ata_host *host = dev_get_drvdata(gendev);
5227 int i;
5228
5229 for (i = 0; i < host->n_ports; i++) {
5230 struct ata_port *ap = host->ports[i];
5231
Tejun Heoecef7252007-04-17 23:44:06 +09005232 if (!ap)
5233 continue;
5234
Tejun Heo49114872007-04-17 23:44:06 +09005235 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09005236 scsi_host_put(ap->scsi_host);
5237
Tejun Heo633273a32007-09-23 13:19:54 +09005238 kfree(ap->pmp_link);
Tejun Heo49114872007-04-17 23:44:06 +09005239 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09005240 host->ports[i] = NULL;
5241 }
5242
Tejun Heo1aa56cc2007-02-27 22:33:21 +09005243 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005244}
5245
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246/**
Tejun Heof3187192007-04-17 23:44:07 +09005247 * ata_host_alloc - allocate and init basic ATA host resources
5248 * @dev: generic device this host is associated with
5249 * @max_ports: maximum number of ATA ports associated with this host
5250 *
5251 * Allocate and initialize basic ATA host resources. LLD calls
5252 * this function to allocate a host, initializes it fully and
5253 * attaches it using ata_host_register().
5254 *
5255 * @max_ports ports are allocated and host->n_ports is
5256 * initialized to @max_ports. The caller is allowed to decrease
5257 * host->n_ports before calling ata_host_register(). The unused
5258 * ports will be automatically freed on registration.
5259 *
5260 * RETURNS:
5261 * Allocate ATA host on success, NULL on failure.
5262 *
5263 * LOCKING:
5264 * Inherited from calling layer (may sleep).
5265 */
5266struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
5267{
5268 struct ata_host *host;
5269 size_t sz;
5270 int i;
5271
5272 DPRINTK("ENTER\n");
5273
5274 if (!devres_open_group(dev, NULL, GFP_KERNEL))
5275 return NULL;
5276
5277 /* alloc a container for our list of ATA ports (buses) */
5278 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
5279 /* alloc a container for our list of ATA ports (buses) */
5280 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
5281 if (!host)
5282 goto err_out;
5283
5284 devres_add(dev, host);
5285 dev_set_drvdata(dev, host);
5286
5287 spin_lock_init(&host->lock);
5288 host->dev = dev;
5289 host->n_ports = max_ports;
5290
5291 /* allocate ports bound to this host */
5292 for (i = 0; i < max_ports; i++) {
5293 struct ata_port *ap;
5294
5295 ap = ata_port_alloc(host);
5296 if (!ap)
5297 goto err_out;
5298
5299 ap->port_no = i;
5300 host->ports[i] = ap;
5301 }
5302
5303 devres_remove_group(dev, NULL);
5304 return host;
5305
5306 err_out:
5307 devres_release_group(dev, NULL);
5308 return NULL;
5309}
5310
5311/**
Tejun Heof5cda252007-04-17 23:44:07 +09005312 * ata_host_alloc_pinfo - alloc host and init with port_info array
5313 * @dev: generic device this host is associated with
5314 * @ppi: array of ATA port_info to initialize host with
5315 * @n_ports: number of ATA ports attached to this host
5316 *
5317 * Allocate ATA host and initialize with info from @ppi. If NULL
5318 * terminated, @ppi may contain fewer entries than @n_ports. The
5319 * last entry will be used for the remaining ports.
5320 *
5321 * RETURNS:
5322 * Allocate ATA host on success, NULL on failure.
5323 *
5324 * LOCKING:
5325 * Inherited from calling layer (may sleep).
5326 */
5327struct ata_host *ata_host_alloc_pinfo(struct device *dev,
5328 const struct ata_port_info * const * ppi,
5329 int n_ports)
5330{
5331 const struct ata_port_info *pi;
5332 struct ata_host *host;
5333 int i, j;
5334
5335 host = ata_host_alloc(dev, n_ports);
5336 if (!host)
5337 return NULL;
5338
5339 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
5340 struct ata_port *ap = host->ports[i];
5341
5342 if (ppi[j])
5343 pi = ppi[j++];
5344
5345 ap->pio_mask = pi->pio_mask;
5346 ap->mwdma_mask = pi->mwdma_mask;
5347 ap->udma_mask = pi->udma_mask;
5348 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09005349 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09005350 ap->ops = pi->port_ops;
5351
5352 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
5353 host->ops = pi->port_ops;
Tejun Heof5cda252007-04-17 23:44:07 +09005354 }
5355
5356 return host;
5357}
5358
Tejun Heo32ebbc02007-11-08 13:09:00 +09005359static void ata_host_stop(struct device *gendev, void *res)
5360{
5361 struct ata_host *host = dev_get_drvdata(gendev);
5362 int i;
5363
5364 WARN_ON(!(host->flags & ATA_HOST_STARTED));
5365
5366 for (i = 0; i < host->n_ports; i++) {
5367 struct ata_port *ap = host->ports[i];
5368
5369 if (ap->ops->port_stop)
5370 ap->ops->port_stop(ap);
5371 }
5372
5373 if (host->ops->host_stop)
5374 host->ops->host_stop(host);
5375}
5376
Tejun Heof5cda252007-04-17 23:44:07 +09005377/**
Tejun Heo029cfd62008-03-25 12:22:49 +09005378 * ata_finalize_port_ops - finalize ata_port_operations
5379 * @ops: ata_port_operations to finalize
5380 *
5381 * An ata_port_operations can inherit from another ops and that
5382 * ops can again inherit from another. This can go on as many
5383 * times as necessary as long as there is no loop in the
5384 * inheritance chain.
5385 *
5386 * Ops tables are finalized when the host is started. NULL or
5387 * unspecified entries are inherited from the closet ancestor
5388 * which has the method and the entry is populated with it.
5389 * After finalization, the ops table directly points to all the
5390 * methods and ->inherits is no longer necessary and cleared.
5391 *
5392 * Using ATA_OP_NULL, inheriting ops can force a method to NULL.
5393 *
5394 * LOCKING:
5395 * None.
5396 */
5397static void ata_finalize_port_ops(struct ata_port_operations *ops)
5398{
5399 static spinlock_t lock = SPIN_LOCK_UNLOCKED;
5400 const struct ata_port_operations *cur;
5401 void **begin = (void **)ops;
5402 void **end = (void **)&ops->inherits;
5403 void **pp;
5404
5405 if (!ops || !ops->inherits)
5406 return;
5407
5408 spin_lock(&lock);
5409
5410 for (cur = ops->inherits; cur; cur = cur->inherits) {
5411 void **inherit = (void **)cur;
5412
5413 for (pp = begin; pp < end; pp++, inherit++)
5414 if (!*pp)
5415 *pp = *inherit;
5416 }
5417
5418 for (pp = begin; pp < end; pp++)
5419 if (IS_ERR(*pp))
5420 *pp = NULL;
5421
5422 ops->inherits = NULL;
5423
5424 spin_unlock(&lock);
5425}
5426
5427/**
Tejun Heoecef7252007-04-17 23:44:06 +09005428 * ata_host_start - start and freeze ports of an ATA host
5429 * @host: ATA host to start ports for
5430 *
5431 * Start and then freeze ports of @host. Started status is
5432 * recorded in host->flags, so this function can be called
5433 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09005434 * once. If host->ops isn't initialized yet, its set to the
5435 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09005436 *
5437 * LOCKING:
5438 * Inherited from calling layer (may sleep).
5439 *
5440 * RETURNS:
5441 * 0 if all ports are started successfully, -errno otherwise.
5442 */
5443int ata_host_start(struct ata_host *host)
5444{
Tejun Heo32ebbc02007-11-08 13:09:00 +09005445 int have_stop = 0;
5446 void *start_dr = NULL;
Tejun Heoecef7252007-04-17 23:44:06 +09005447 int i, rc;
5448
5449 if (host->flags & ATA_HOST_STARTED)
5450 return 0;
5451
Tejun Heo029cfd62008-03-25 12:22:49 +09005452 ata_finalize_port_ops(host->ops);
5453
Tejun Heoecef7252007-04-17 23:44:06 +09005454 for (i = 0; i < host->n_ports; i++) {
5455 struct ata_port *ap = host->ports[i];
5456
Tejun Heo029cfd62008-03-25 12:22:49 +09005457 ata_finalize_port_ops(ap->ops);
5458
Tejun Heof3187192007-04-17 23:44:07 +09005459 if (!host->ops && !ata_port_is_dummy(ap))
5460 host->ops = ap->ops;
5461
Tejun Heo32ebbc02007-11-08 13:09:00 +09005462 if (ap->ops->port_stop)
5463 have_stop = 1;
5464 }
5465
5466 if (host->ops->host_stop)
5467 have_stop = 1;
5468
5469 if (have_stop) {
5470 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
5471 if (!start_dr)
5472 return -ENOMEM;
5473 }
5474
5475 for (i = 0; i < host->n_ports; i++) {
5476 struct ata_port *ap = host->ports[i];
5477
Tejun Heoecef7252007-04-17 23:44:06 +09005478 if (ap->ops->port_start) {
5479 rc = ap->ops->port_start(ap);
5480 if (rc) {
Alan Cox0f9fe9b2007-11-30 15:23:16 +00005481 if (rc != -ENODEV)
Andrew Morton0f757742008-01-10 14:33:09 -08005482 dev_printk(KERN_ERR, host->dev,
5483 "failed to start port %d "
5484 "(errno=%d)\n", i, rc);
Tejun Heoecef7252007-04-17 23:44:06 +09005485 goto err_out;
5486 }
5487 }
Tejun Heoecef7252007-04-17 23:44:06 +09005488 ata_eh_freeze_port(ap);
5489 }
5490
Tejun Heo32ebbc02007-11-08 13:09:00 +09005491 if (start_dr)
5492 devres_add(host->dev, start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005493 host->flags |= ATA_HOST_STARTED;
5494 return 0;
5495
5496 err_out:
5497 while (--i >= 0) {
5498 struct ata_port *ap = host->ports[i];
5499
5500 if (ap->ops->port_stop)
5501 ap->ops->port_stop(ap);
5502 }
Tejun Heo32ebbc02007-11-08 13:09:00 +09005503 devres_free(start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005504 return rc;
5505}
5506
5507/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005508 * ata_sas_host_init - Initialize a host struct
5509 * @host: host to initialize
5510 * @dev: device host is attached to
5511 * @flags: host flags
5512 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05005513 *
5514 * LOCKING:
5515 * PCI/etc. bus probe sem.
5516 *
5517 */
Tejun Heof3187192007-04-17 23:44:07 +09005518/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04005519void ata_host_init(struct ata_host *host, struct device *dev,
Tejun Heo029cfd62008-03-25 12:22:49 +09005520 unsigned long flags, struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05005521{
Jeff Garzikcca39742006-08-24 03:19:22 -04005522 spin_lock_init(&host->lock);
5523 host->dev = dev;
5524 host->flags = flags;
5525 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05005526}
5527
5528/**
Tejun Heof3187192007-04-17 23:44:07 +09005529 * ata_host_register - register initialized ATA host
5530 * @host: ATA host to register
5531 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04005532 *
Tejun Heof3187192007-04-17 23:44:07 +09005533 * Register initialized ATA host. @host is allocated using
5534 * ata_host_alloc() and fully initialized by LLD. This function
5535 * starts ports, registers @host with ATA and SCSI layers and
5536 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537 *
5538 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005539 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540 *
5541 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09005542 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543 */
Tejun Heof3187192007-04-17 23:44:07 +09005544int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545{
Tejun Heof3187192007-04-17 23:44:07 +09005546 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547
Tejun Heof3187192007-04-17 23:44:07 +09005548 /* host must have been started */
5549 if (!(host->flags & ATA_HOST_STARTED)) {
5550 dev_printk(KERN_ERR, host->dev,
5551 "BUG: trying to register unstarted host\n");
5552 WARN_ON(1);
5553 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01005554 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09005555
Tejun Heof3187192007-04-17 23:44:07 +09005556 /* Blow away unused ports. This happens when LLD can't
5557 * determine the exact number of ports to allocate at
5558 * allocation time.
5559 */
5560 for (i = host->n_ports; host->ports[i]; i++)
5561 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562
Tejun Heof3187192007-04-17 23:44:07 +09005563 /* give ports names and add SCSI hosts */
5564 for (i = 0; i < host->n_ports; i++)
5565 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09005566
Tejun Heof3187192007-04-17 23:44:07 +09005567 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09005568 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09005569 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09005570
Tejun Heofafbae82007-05-15 03:28:16 +09005571 /* associate with ACPI nodes */
5572 ata_acpi_associate(host);
5573
Tejun Heof3187192007-04-17 23:44:07 +09005574 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04005575 for (i = 0; i < host->n_ports; i++) {
5576 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09005577 unsigned long xfer_mask;
5578
5579 /* set SATA cable type if still unset */
5580 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
5581 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582
Tejun Heo5a04bf42006-05-31 18:27:38 +09005583 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09005584 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09005585
Tejun Heocbcdd872007-08-18 13:14:55 +09005586 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09005587 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
5588 ap->udma_mask);
5589
Tejun Heoabf6e8e2007-10-09 14:57:25 +09005590 if (!ata_port_is_dummy(ap)) {
Tejun Heocbcdd872007-08-18 13:14:55 +09005591 ata_port_printk(ap, KERN_INFO,
5592 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02005593 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09005594 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09005595 ap->link.eh_info.desc);
Tejun Heoabf6e8e2007-10-09 14:57:25 +09005596 ata_ehi_clear_desc(&ap->link.eh_info);
5597 } else
Tejun Heof3187192007-04-17 23:44:07 +09005598 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
5599 }
5600
5601 /* perform each probe synchronously */
5602 DPRINTK("probe begin\n");
5603 for (i = 0; i < host->n_ports; i++) {
5604 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09005605
5606 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09005607 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005608 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09005609 unsigned long flags;
5610
5611 ata_port_probe(ap);
5612
5613 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005614 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005615
Tejun Heob558edd2008-01-24 00:05:14 +09005616 ehi->probe_mask |= ATA_ALL_DEVICES;
Tejun Heocf480622008-01-24 00:05:14 +09005617 ehi->action |= ATA_EH_RESET;
Tejun Heo1cdaf532006-07-03 16:07:26 +09005618 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09005619
Tejun Heof4d6d002007-05-01 11:50:15 +02005620 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09005621 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09005622 ata_port_schedule_eh(ap);
5623
Jeff Garzikba6a1302006-06-22 23:46:10 -04005624 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005625
5626 /* wait for EH to finish */
5627 ata_port_wait_eh(ap);
5628 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09005629 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09005630 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005631 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09005632
5633 if (rc) {
5634 /* FIXME: do something useful here?
5635 * Current libata behavior will
5636 * tear down everything when
5637 * the module is removed
5638 * or the h/w is unplugged.
5639 */
5640 }
5641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 }
5643
5644 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005645 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04005646 for (i = 0; i < host->n_ports; i++) {
5647 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648
Tejun Heo1ae46312007-07-16 14:29:40 +09005649 ata_scsi_scan_host(ap, 1);
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005650 ata_lpm_schedule(ap, ap->pm_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651 }
5652
Tejun Heof3187192007-04-17 23:44:07 +09005653 return 0;
5654}
5655
5656/**
Tejun Heof5cda252007-04-17 23:44:07 +09005657 * ata_host_activate - start host, request IRQ and register it
5658 * @host: target ATA host
5659 * @irq: IRQ to request
5660 * @irq_handler: irq_handler used when requesting IRQ
5661 * @irq_flags: irq_flags used when requesting IRQ
5662 * @sht: scsi_host_template to use when registering the host
5663 *
5664 * After allocating an ATA host and initializing it, most libata
5665 * LLDs perform three steps to activate the host - start host,
5666 * request IRQ and register it. This helper takes necessasry
5667 * arguments and performs the three steps in one go.
5668 *
Paul Mundt3d46b2e2007-11-08 11:14:56 +09005669 * An invalid IRQ skips the IRQ registration and expects the host to
5670 * have set polling mode on the port. In this case, @irq_handler
5671 * should be NULL.
5672 *
Tejun Heof5cda252007-04-17 23:44:07 +09005673 * LOCKING:
5674 * Inherited from calling layer (may sleep).
5675 *
5676 * RETURNS:
5677 * 0 on success, -errno otherwise.
5678 */
5679int ata_host_activate(struct ata_host *host, int irq,
5680 irq_handler_t irq_handler, unsigned long irq_flags,
5681 struct scsi_host_template *sht)
5682{
Tejun Heocbcdd872007-08-18 13:14:55 +09005683 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09005684
5685 rc = ata_host_start(host);
5686 if (rc)
5687 return rc;
5688
Paul Mundt3d46b2e2007-11-08 11:14:56 +09005689 /* Special case for polling mode */
5690 if (!irq) {
5691 WARN_ON(irq_handler);
5692 return ata_host_register(host, sht);
5693 }
5694
Tejun Heof5cda252007-04-17 23:44:07 +09005695 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
5696 dev_driver_string(host->dev), host);
5697 if (rc)
5698 return rc;
5699
Tejun Heocbcdd872007-08-18 13:14:55 +09005700 for (i = 0; i < host->n_ports; i++)
5701 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09005702
Tejun Heof5cda252007-04-17 23:44:07 +09005703 rc = ata_host_register(host, sht);
5704 /* if failed, just free the IRQ and leave ports alone */
5705 if (rc)
5706 devm_free_irq(host->dev, irq, host);
5707
5708 return rc;
5709}
5710
5711/**
Tejun Heo720ba122006-05-31 18:28:13 +09005712 * ata_port_detach - Detach ATA port in prepration of device removal
5713 * @ap: ATA port to be detached
5714 *
5715 * Detach all ATA devices and the associated SCSI devices of @ap;
5716 * then, remove the associated SCSI host. @ap is guaranteed to
5717 * be quiescent on return from this function.
5718 *
5719 * LOCKING:
5720 * Kernel thread context (may sleep).
5721 */
Adrian Bunk741b7762007-10-24 18:23:06 +02005722static void ata_port_detach(struct ata_port *ap)
Tejun Heo720ba122006-05-31 18:28:13 +09005723{
5724 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09005725 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09005726 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09005727
5728 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005729 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09005730
5731 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005732 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09005733 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005734 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005735
5736 ata_port_wait_eh(ap);
5737
Tejun Heo7f9ad9b2007-12-15 15:05:00 +09005738 /* EH is now guaranteed to see UNLOADING - EH context belongs
5739 * to us. Disable all existing devices.
Tejun Heo720ba122006-05-31 18:28:13 +09005740 */
Tejun Heo41bda9c2007-08-06 18:36:24 +09005741 ata_port_for_each_link(link, ap) {
5742 ata_link_for_each_dev(dev, link)
5743 ata_dev_disable(dev);
5744 }
Tejun Heo720ba122006-05-31 18:28:13 +09005745
Tejun Heo720ba122006-05-31 18:28:13 +09005746 /* Final freeze & EH. All in-flight commands are aborted. EH
5747 * will be skipped and retrials will be terminated with bad
5748 * target.
5749 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005750 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005751 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005752 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005753
5754 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07005755 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09005756
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005757 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09005758 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04005759 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09005760}
5761
5762/**
Tejun Heo0529c152007-01-20 16:00:26 +09005763 * ata_host_detach - Detach all ports of an ATA host
5764 * @host: Host to detach
5765 *
5766 * Detach all ports of @host.
5767 *
5768 * LOCKING:
5769 * Kernel thread context (may sleep).
5770 */
5771void ata_host_detach(struct ata_host *host)
5772{
5773 int i;
5774
5775 for (i = 0; i < host->n_ports; i++)
5776 ata_port_detach(host->ports[i]);
Tejun Heo562f0c22007-12-15 15:05:01 +09005777
5778 /* the host is dead now, dissociate ACPI */
5779 ata_acpi_dissociate(host);
Tejun Heo0529c152007-01-20 16:00:26 +09005780}
5781
Jeff Garzik374b1872005-08-30 05:42:52 -04005782#ifdef CONFIG_PCI
5783
Edward Falk0baab862005-06-02 18:17:13 -04005784/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785 * ata_pci_remove_one - PCI layer callback for device removal
5786 * @pdev: PCI device that was removed
5787 *
Tejun Heob878ca52007-01-20 16:00:28 +09005788 * PCI layer indicates to libata via this hook that hot-unplug or
5789 * module unload event has occurred. Detach all ports. Resource
5790 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791 *
5792 * LOCKING:
5793 * Inherited from PCI layer (may sleep).
5794 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005795void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796{
Jeff Garzik28555682007-10-11 17:12:35 -04005797 struct device *dev = &pdev->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04005798 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799
Tejun Heob878ca52007-01-20 16:00:28 +09005800 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801}
5802
5803/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005804int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805{
5806 unsigned long tmp = 0;
5807
5808 switch (bits->width) {
5809 case 1: {
5810 u8 tmp8 = 0;
5811 pci_read_config_byte(pdev, bits->reg, &tmp8);
5812 tmp = tmp8;
5813 break;
5814 }
5815 case 2: {
5816 u16 tmp16 = 0;
5817 pci_read_config_word(pdev, bits->reg, &tmp16);
5818 tmp = tmp16;
5819 break;
5820 }
5821 case 4: {
5822 u32 tmp32 = 0;
5823 pci_read_config_dword(pdev, bits->reg, &tmp32);
5824 tmp = tmp32;
5825 break;
5826 }
5827
5828 default:
5829 return -EINVAL;
5830 }
5831
5832 tmp &= bits->mask;
5833
5834 return (tmp == bits->val) ? 1 : 0;
5835}
Jens Axboe9b847542006-01-06 09:28:07 +01005836
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005837#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09005838void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01005839{
5840 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09005841 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09005842
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01005843 if (mesg.event & PM_EVENT_SLEEP)
Tejun Heo500530f2006-07-03 16:07:27 +09005844 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01005845}
5846
Tejun Heo553c4aa2006-12-26 19:39:50 +09005847int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01005848{
Tejun Heo553c4aa2006-12-26 19:39:50 +09005849 int rc;
5850
Jens Axboe9b847542006-01-06 09:28:07 +01005851 pci_set_power_state(pdev, PCI_D0);
5852 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005853
Tejun Heob878ca52007-01-20 16:00:28 +09005854 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005855 if (rc) {
5856 dev_printk(KERN_ERR, &pdev->dev,
5857 "failed to enable device after resume (%d)\n", rc);
5858 return rc;
5859 }
5860
Jens Axboe9b847542006-01-06 09:28:07 +01005861 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005862 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09005863}
5864
Tejun Heo3c5100c2006-07-26 16:58:33 +09005865int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005866{
Jeff Garzikcca39742006-08-24 03:19:22 -04005867 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09005868 int rc = 0;
5869
Jeff Garzikcca39742006-08-24 03:19:22 -04005870 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09005871 if (rc)
5872 return rc;
5873
Tejun Heo3c5100c2006-07-26 16:58:33 +09005874 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09005875
5876 return 0;
5877}
5878
5879int ata_pci_device_resume(struct pci_dev *pdev)
5880{
Jeff Garzikcca39742006-08-24 03:19:22 -04005881 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005882 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005883
Tejun Heo553c4aa2006-12-26 19:39:50 +09005884 rc = ata_pci_device_do_resume(pdev);
5885 if (rc == 0)
5886 ata_host_resume(host);
5887 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01005888}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005889#endif /* CONFIG_PM */
5890
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891#endif /* CONFIG_PCI */
5892
Tejun Heo33267322008-02-13 09:15:09 +09005893static int __init ata_parse_force_one(char **cur,
5894 struct ata_force_ent *force_ent,
5895 const char **reason)
5896{
5897 /* FIXME: Currently, there's no way to tag init const data and
5898 * using __initdata causes build failure on some versions of
5899 * gcc. Once __initdataconst is implemented, add const to the
5900 * following structure.
5901 */
5902 static struct ata_force_param force_tbl[] __initdata = {
5903 { "40c", .cbl = ATA_CBL_PATA40 },
5904 { "80c", .cbl = ATA_CBL_PATA80 },
5905 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
5906 { "unk", .cbl = ATA_CBL_PATA_UNK },
5907 { "ign", .cbl = ATA_CBL_PATA_IGN },
5908 { "sata", .cbl = ATA_CBL_SATA },
5909 { "1.5Gbps", .spd_limit = 1 },
5910 { "3.0Gbps", .spd_limit = 2 },
5911 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
5912 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
5913 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
5914 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
5915 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
5916 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
5917 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
5918 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
5919 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
5920 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
5921 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
5922 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
5923 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
5924 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
5925 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5926 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5927 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5928 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5929 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5930 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5931 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5932 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5933 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5934 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5935 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5936 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5937 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5938 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5939 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5940 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5941 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5942 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5943 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5944 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5945 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5946 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
5947 };
5948 char *start = *cur, *p = *cur;
5949 char *id, *val, *endp;
5950 const struct ata_force_param *match_fp = NULL;
5951 int nr_matches = 0, i;
5952
5953 /* find where this param ends and update *cur */
5954 while (*p != '\0' && *p != ',')
5955 p++;
5956
5957 if (*p == '\0')
5958 *cur = p;
5959 else
5960 *cur = p + 1;
5961
5962 *p = '\0';
5963
5964 /* parse */
5965 p = strchr(start, ':');
5966 if (!p) {
5967 val = strstrip(start);
5968 goto parse_val;
5969 }
5970 *p = '\0';
5971
5972 id = strstrip(start);
5973 val = strstrip(p + 1);
5974
5975 /* parse id */
5976 p = strchr(id, '.');
5977 if (p) {
5978 *p++ = '\0';
5979 force_ent->device = simple_strtoul(p, &endp, 10);
5980 if (p == endp || *endp != '\0') {
5981 *reason = "invalid device";
5982 return -EINVAL;
5983 }
5984 }
5985
5986 force_ent->port = simple_strtoul(id, &endp, 10);
5987 if (p == endp || *endp != '\0') {
5988 *reason = "invalid port/link";
5989 return -EINVAL;
5990 }
5991
5992 parse_val:
5993 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
5994 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
5995 const struct ata_force_param *fp = &force_tbl[i];
5996
5997 if (strncasecmp(val, fp->name, strlen(val)))
5998 continue;
5999
6000 nr_matches++;
6001 match_fp = fp;
6002
6003 if (strcasecmp(val, fp->name) == 0) {
6004 nr_matches = 1;
6005 break;
6006 }
6007 }
6008
6009 if (!nr_matches) {
6010 *reason = "unknown value";
6011 return -EINVAL;
6012 }
6013 if (nr_matches > 1) {
6014 *reason = "ambigious value";
6015 return -EINVAL;
6016 }
6017
6018 force_ent->param = *match_fp;
6019
6020 return 0;
6021}
6022
6023static void __init ata_parse_force_param(void)
6024{
6025 int idx = 0, size = 1;
6026 int last_port = -1, last_device = -1;
6027 char *p, *cur, *next;
6028
6029 /* calculate maximum number of params and allocate force_tbl */
6030 for (p = ata_force_param_buf; *p; p++)
6031 if (*p == ',')
6032 size++;
6033
6034 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
6035 if (!ata_force_tbl) {
6036 printk(KERN_WARNING "ata: failed to extend force table, "
6037 "libata.force ignored\n");
6038 return;
6039 }
6040
6041 /* parse and populate the table */
6042 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
6043 const char *reason = "";
6044 struct ata_force_ent te = { .port = -1, .device = -1 };
6045
6046 next = cur;
6047 if (ata_parse_force_one(&next, &te, &reason)) {
6048 printk(KERN_WARNING "ata: failed to parse force "
6049 "parameter \"%s\" (%s)\n",
6050 cur, reason);
6051 continue;
6052 }
6053
6054 if (te.port == -1) {
6055 te.port = last_port;
6056 te.device = last_device;
6057 }
6058
6059 ata_force_tbl[idx++] = te;
6060
6061 last_port = te.port;
6062 last_device = te.device;
6063 }
6064
6065 ata_force_tbl_size = idx;
6066}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068static int __init ata_init(void)
6069{
Andrew Mortona8601e52006-06-25 01:36:52 -07006070 ata_probe_timeout *= HZ;
Tejun Heo33267322008-02-13 09:15:09 +09006071
6072 ata_parse_force_param();
6073
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074 ata_wq = create_workqueue("ata");
6075 if (!ata_wq)
6076 return -ENOMEM;
6077
Tejun Heo453b07a2006-05-31 18:27:42 +09006078 ata_aux_wq = create_singlethread_workqueue("ata_aux");
6079 if (!ata_aux_wq) {
6080 destroy_workqueue(ata_wq);
6081 return -ENOMEM;
6082 }
6083
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6085 return 0;
6086}
6087
6088static void __exit ata_exit(void)
6089{
Tejun Heo33267322008-02-13 09:15:09 +09006090 kfree(ata_force_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006092 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093}
6094
Brian Kinga4625082006-11-13 16:32:36 -06006095subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096module_exit(ata_exit);
6097
Jeff Garzik67846b32005-10-05 02:58:32 -04006098static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006099static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006100
6101int ata_ratelimit(void)
6102{
6103 int rc;
6104 unsigned long flags;
6105
6106 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6107
6108 if (time_after(jiffies, ratelimit_time)) {
6109 rc = 1;
6110 ratelimit_time = jiffies + (HZ/5);
6111 } else
6112 rc = 0;
6113
6114 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6115
6116 return rc;
6117}
6118
Tejun Heoc22daff2006-04-11 22:22:29 +09006119/**
6120 * ata_wait_register - wait until register value changes
6121 * @reg: IO-mapped register
6122 * @mask: Mask to apply to read register value
6123 * @val: Wait condition
6124 * @interval_msec: polling interval in milliseconds
6125 * @timeout_msec: timeout in milliseconds
6126 *
6127 * Waiting for some bits of register to change is a common
6128 * operation for ATA controllers. This function reads 32bit LE
6129 * IO-mapped register @reg and tests for the following condition.
6130 *
6131 * (*@reg & mask) != val
6132 *
6133 * If the condition is met, it returns; otherwise, the process is
6134 * repeated after @interval_msec until timeout.
6135 *
6136 * LOCKING:
6137 * Kernel thread context (may sleep)
6138 *
6139 * RETURNS:
6140 * The final register value.
6141 */
6142u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6143 unsigned long interval_msec,
6144 unsigned long timeout_msec)
6145{
6146 unsigned long timeout;
6147 u32 tmp;
6148
6149 tmp = ioread32(reg);
6150
6151 /* Calculate timeout _after_ the first read to make sure
6152 * preceding writes reach the controller before starting to
6153 * eat away the timeout.
6154 */
6155 timeout = jiffies + (timeout_msec * HZ) / 1000;
6156
6157 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6158 msleep(interval_msec);
6159 tmp = ioread32(reg);
6160 }
6161
6162 return tmp;
6163}
6164
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006166 * Dummy port_ops
6167 */
Tejun Heodd5b06c2006-08-10 16:59:12 +09006168static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6169{
6170 return AC_ERR_SYSTEM;
6171}
6172
Tejun Heo182d7bb2008-04-07 22:47:21 +09006173static void ata_dummy_error_handler(struct ata_port *ap)
6174{
6175 /* truly dummy */
6176}
6177
Tejun Heo029cfd62008-03-25 12:22:49 +09006178struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09006179 .qc_prep = ata_noop_qc_prep,
6180 .qc_issue = ata_dummy_qc_issue,
Tejun Heo182d7bb2008-04-07 22:47:21 +09006181 .error_handler = ata_dummy_error_handler,
Tejun Heodd5b06c2006-08-10 16:59:12 +09006182};
6183
Tejun Heo21b0ad42007-04-17 23:44:07 +09006184const struct ata_port_info ata_dummy_port_info = {
6185 .port_ops = &ata_dummy_port_ops,
6186};
6187
Tejun Heodd5b06c2006-08-10 16:59:12 +09006188/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189 * libata is essentially a library of internal helper functions for
6190 * low-level ATA host controller drivers. As such, the API/ABI is
6191 * likely to change as new drivers are added and updated.
6192 * Do not depend on ABI/API stability.
6193 */
Tejun Heoe9c83912006-07-03 16:07:26 +09006194EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6195EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6196EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heo029cfd62008-03-25 12:22:49 +09006197EXPORT_SYMBOL_GPL(ata_base_port_ops);
6198EXPORT_SYMBOL_GPL(sata_port_ops);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006199EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006200EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201EXPORT_SYMBOL_GPL(ata_std_bios_param);
Jeff Garzikcca39742006-08-24 03:19:22 -04006202EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006203EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006204EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09006205EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006206EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006207EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09006208EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209EXPORT_SYMBOL_GPL(ata_sg_init);
Tejun Heof686bcb2006-05-15 20:58:05 +09006210EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006211EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Jeff Garzik43727fb2007-02-25 16:50:52 -05006212EXPORT_SYMBOL_GPL(sata_print_link_status);
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);
Tejun Heo022bdb02006-05-15 20:58:22 +09006294EXPORT_SYMBOL_GPL(ata_do_eh);
Tejun Heoa1efdab2008-03-25 12:22:50 +09006295EXPORT_SYMBOL_GPL(ata_std_error_handler);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006296
6297EXPORT_SYMBOL_GPL(ata_cable_40wire);
6298EXPORT_SYMBOL_GPL(ata_cable_80wire);
6299EXPORT_SYMBOL_GPL(ata_cable_unknown);
Tejun Heoc88f90c2007-11-27 19:43:48 +09006300EXPORT_SYMBOL_GPL(ata_cable_ignore);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006301EXPORT_SYMBOL_GPL(ata_cable_sata);