blob: 34c068f18350a6defdfeb2eaf7dc5cccdd14e608 [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 = {
77 .irq_clear = ata_noop_irq_clear,
Tejun Heoa1efdab2008-03-25 12:22:50 +090078 .prereset = ata_std_prereset,
79 .hardreset = sata_std_hardreset,
80 .postreset = ata_std_postreset,
81 .error_handler = ata_std_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +090082};
83
84const struct ata_port_operations sata_port_ops = {
85 .inherits = &ata_base_port_ops,
86
87 .qc_defer = ata_std_qc_defer,
88 .dev_select = ata_noop_dev_select,
89};
90
91const struct ata_port_operations sata_pmp_port_ops = {
92 .inherits = &sata_port_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +090093
94 .pmp_prereset = sata_pmp_std_prereset,
95 .pmp_hardreset = sata_pmp_std_hardreset,
96 .pmp_postreset = sata_pmp_std_postreset,
97 .error_handler = sata_pmp_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +090098};
99
Tejun Heo3373efd2006-05-15 20:57:53 +0900100static unsigned int ata_dev_init_params(struct ata_device *dev,
101 u16 heads, u16 sectors);
102static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Jeff Garzik218f3d32007-10-25 00:33:27 -0400103static unsigned int ata_dev_set_feature(struct ata_device *dev,
104 u8 enable, u8 feature);
Tejun Heo3373efd2006-05-15 20:57:53 +0900105static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +0900106static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Tejun Heof3187192007-04-17 23:44:07 +0900108unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static struct workqueue_struct *ata_wq;
110
Tejun Heo453b07a2006-05-31 18:27:42 +0900111struct workqueue_struct *ata_aux_wq;
112
Tejun Heo33267322008-02-13 09:15:09 +0900113struct ata_force_param {
114 const char *name;
115 unsigned int cbl;
116 int spd_limit;
117 unsigned long xfer_mask;
118 unsigned int horkage_on;
119 unsigned int horkage_off;
120};
121
122struct ata_force_ent {
123 int port;
124 int device;
125 struct ata_force_param param;
126};
127
128static struct ata_force_ent *ata_force_tbl;
129static int ata_force_tbl_size;
130
131static char ata_force_param_buf[PAGE_SIZE] __initdata;
Tejun Heo7afb4222008-03-09 20:21:53 +0900132/* param_buf is thrown away after initialization, disallow read */
133module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0);
Tejun Heo33267322008-02-13 09:15:09 +0900134MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)");
135
Jeff Garzik418dc1f2006-03-11 20:50:08 -0500136int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -0400137module_param(atapi_enabled, int, 0444);
138MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
139
Adrian Bunkc5c61bd2008-02-25 02:07:25 +0200140static int atapi_dmadir = 0;
Albert Lee95de7192006-04-04 10:57:18 +0800141module_param(atapi_dmadir, int, 0444);
142MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
143
Mark Lordbaf4fdf2007-08-08 01:08:45 +0900144int atapi_passthru16 = 1;
145module_param(atapi_passthru16, int, 0444);
146MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
147
Jeff Garzikc3c013a2006-02-27 22:31:19 -0500148int libata_fua = 0;
149module_param_named(fua, libata_fua, int, 0444);
150MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
151
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400152static int ata_ignore_hpa;
Alan Cox1e999732007-04-11 00:23:13 +0100153module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
154MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
155
Alan Coxb3a70602007-10-02 12:38:26 -0400156static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
157module_param_named(dma, libata_dma_mask, int, 0444);
158MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
159
Andrew Mortona8601e52006-06-25 01:36:52 -0700160static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ;
161module_param(ata_probe_timeout, int, 0444);
162MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
163
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400164int libata_noacpi = 0;
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400165module_param_named(noacpi, libata_noacpi, int, 0444);
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400166MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set");
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700167
Alan Coxae8d4ee2007-11-04 22:05:49 -0500168int libata_allow_tpm = 0;
169module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
170MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands");
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172MODULE_AUTHOR("Jeff Garzik");
173MODULE_DESCRIPTION("Library module for ATA devices");
174MODULE_LICENSE("GPL");
175MODULE_VERSION(DRV_VERSION);
176
Edward Falk0baab862005-06-02 18:17:13 -0400177
178/**
Tejun Heo33267322008-02-13 09:15:09 +0900179 * ata_force_cbl - force cable type according to libata.force
Randy Dunlap4cdfa1b2008-02-22 12:21:37 -0800180 * @ap: ATA port of interest
Tejun Heo33267322008-02-13 09:15:09 +0900181 *
182 * Force cable type according to libata.force and whine about it.
183 * The last entry which has matching port number is used, so it
184 * can be specified as part of device force parameters. For
185 * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
186 * same effect.
187 *
188 * LOCKING:
189 * EH context.
190 */
191void ata_force_cbl(struct ata_port *ap)
192{
193 int i;
194
195 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
196 const struct ata_force_ent *fe = &ata_force_tbl[i];
197
198 if (fe->port != -1 && fe->port != ap->print_id)
199 continue;
200
201 if (fe->param.cbl == ATA_CBL_NONE)
202 continue;
203
204 ap->cbl = fe->param.cbl;
205 ata_port_printk(ap, KERN_NOTICE,
206 "FORCE: cable set to %s\n", fe->param.name);
207 return;
208 }
209}
210
211/**
212 * ata_force_spd_limit - force SATA spd limit according to libata.force
213 * @link: ATA link of interest
214 *
215 * Force SATA spd limit according to libata.force and whine about
216 * it. When only the port part is specified (e.g. 1:), the limit
217 * applies to all links connected to both the host link and all
218 * fan-out ports connected via PMP. If the device part is
219 * specified as 0 (e.g. 1.00:), it specifies the first fan-out
220 * link not the host link. Device number 15 always points to the
221 * host link whether PMP is attached or not.
222 *
223 * LOCKING:
224 * EH context.
225 */
226static void ata_force_spd_limit(struct ata_link *link)
227{
228 int linkno, i;
229
230 if (ata_is_host_link(link))
231 linkno = 15;
232 else
233 linkno = link->pmp;
234
235 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
236 const struct ata_force_ent *fe = &ata_force_tbl[i];
237
238 if (fe->port != -1 && fe->port != link->ap->print_id)
239 continue;
240
241 if (fe->device != -1 && fe->device != linkno)
242 continue;
243
244 if (!fe->param.spd_limit)
245 continue;
246
247 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
248 ata_link_printk(link, KERN_NOTICE,
249 "FORCE: PHY spd limit set to %s\n", fe->param.name);
250 return;
251 }
252}
253
254/**
255 * ata_force_xfermask - force xfermask according to libata.force
256 * @dev: ATA device of interest
257 *
258 * Force xfer_mask according to libata.force and whine about it.
259 * For consistency with link selection, device number 15 selects
260 * the first device connected to the host link.
261 *
262 * LOCKING:
263 * EH context.
264 */
265static void ata_force_xfermask(struct ata_device *dev)
266{
267 int devno = dev->link->pmp + dev->devno;
268 int alt_devno = devno;
269 int i;
270
271 /* allow n.15 for the first device attached to host port */
272 if (ata_is_host_link(dev->link) && devno == 0)
273 alt_devno = 15;
274
275 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
276 const struct ata_force_ent *fe = &ata_force_tbl[i];
277 unsigned long pio_mask, mwdma_mask, udma_mask;
278
279 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
280 continue;
281
282 if (fe->device != -1 && fe->device != devno &&
283 fe->device != alt_devno)
284 continue;
285
286 if (!fe->param.xfer_mask)
287 continue;
288
289 ata_unpack_xfermask(fe->param.xfer_mask,
290 &pio_mask, &mwdma_mask, &udma_mask);
291 if (udma_mask)
292 dev->udma_mask = udma_mask;
293 else if (mwdma_mask) {
294 dev->udma_mask = 0;
295 dev->mwdma_mask = mwdma_mask;
296 } else {
297 dev->udma_mask = 0;
298 dev->mwdma_mask = 0;
299 dev->pio_mask = pio_mask;
300 }
301
302 ata_dev_printk(dev, KERN_NOTICE,
303 "FORCE: xfer_mask set to %s\n", fe->param.name);
304 return;
305 }
306}
307
308/**
309 * ata_force_horkage - force horkage according to libata.force
310 * @dev: ATA device of interest
311 *
312 * Force horkage according to libata.force and whine about it.
313 * For consistency with link selection, device number 15 selects
314 * the first device connected to the host link.
315 *
316 * LOCKING:
317 * EH context.
318 */
319static void ata_force_horkage(struct ata_device *dev)
320{
321 int devno = dev->link->pmp + dev->devno;
322 int alt_devno = devno;
323 int i;
324
325 /* allow n.15 for the first device attached to host port */
326 if (ata_is_host_link(dev->link) && devno == 0)
327 alt_devno = 15;
328
329 for (i = 0; i < ata_force_tbl_size; i++) {
330 const struct ata_force_ent *fe = &ata_force_tbl[i];
331
332 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
333 continue;
334
335 if (fe->device != -1 && fe->device != devno &&
336 fe->device != alt_devno)
337 continue;
338
339 if (!(~dev->horkage & fe->param.horkage_on) &&
340 !(dev->horkage & fe->param.horkage_off))
341 continue;
342
343 dev->horkage |= fe->param.horkage_on;
344 dev->horkage &= ~fe->param.horkage_off;
345
346 ata_dev_printk(dev, KERN_NOTICE,
347 "FORCE: horkage modified (%s)\n", fe->param.name);
348 }
349}
350
351/**
Tejun Heo436d34b2008-04-02 17:28:46 +0900352 * atapi_cmd_type - Determine ATAPI command type from SCSI opcode
353 * @opcode: SCSI opcode
354 *
355 * Determine ATAPI command type from @opcode.
356 *
357 * LOCKING:
358 * None.
359 *
360 * RETURNS:
361 * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
362 */
363int atapi_cmd_type(u8 opcode)
364{
365 switch (opcode) {
366 case GPCMD_READ_10:
367 case GPCMD_READ_12:
368 return ATAPI_READ;
369
370 case GPCMD_WRITE_10:
371 case GPCMD_WRITE_12:
372 case GPCMD_WRITE_AND_VERIFY_10:
373 return ATAPI_WRITE;
374
375 case GPCMD_READ_CD:
376 case GPCMD_READ_CD_MSF:
377 return ATAPI_READ_CD;
378
Tejun Heoe52dcc42008-04-02 17:35:19 +0900379 case ATA_16:
380 case ATA_12:
381 if (atapi_passthru16)
382 return ATAPI_PASS_THRU;
383 /* fall thru */
Tejun Heo436d34b2008-04-02 17:28:46 +0900384 default:
385 return ATAPI_MISC;
386 }
387}
388
389/**
Tejun Heo624d5c52008-03-25 22:16:41 +0900390 * ata_noop_irq_clear - Noop placeholder for irq_clear
391 * @ap: Port associated with this ATA transaction.
392 */
393void ata_noop_irq_clear(struct ata_port *ap)
394{
395}
396
397/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
399 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900401 * @is_cmd: This FIS is for command
402 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 *
404 * Converts a standard ATA taskfile to a Serial ATA
405 * FIS structure (Register - Host to Device).
406 *
407 * LOCKING:
408 * Inherited from caller.
409 */
Tejun Heo99771262007-07-16 14:29:38 +0900410void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Tejun Heo99771262007-07-16 14:29:38 +0900412 fis[0] = 0x27; /* Register - Host to Device FIS */
413 fis[1] = pmp & 0xf; /* Port multiplier number*/
414 if (is_cmd)
415 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 fis[2] = tf->command;
418 fis[3] = tf->feature;
419
420 fis[4] = tf->lbal;
421 fis[5] = tf->lbam;
422 fis[6] = tf->lbah;
423 fis[7] = tf->device;
424
425 fis[8] = tf->hob_lbal;
426 fis[9] = tf->hob_lbam;
427 fis[10] = tf->hob_lbah;
428 fis[11] = tf->hob_feature;
429
430 fis[12] = tf->nsect;
431 fis[13] = tf->hob_nsect;
432 fis[14] = 0;
433 fis[15] = tf->ctl;
434
435 fis[16] = 0;
436 fis[17] = 0;
437 fis[18] = 0;
438 fis[19] = 0;
439}
440
441/**
442 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
443 * @fis: Buffer from which data will be input
444 * @tf: Taskfile to output
445 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500446 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *
448 * LOCKING:
449 * Inherited from caller.
450 */
451
Jeff Garzik057ace52005-10-22 14:27:05 -0400452void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 tf->command = fis[2]; /* status */
455 tf->feature = fis[3]; /* error */
456
457 tf->lbal = fis[4];
458 tf->lbam = fis[5];
459 tf->lbah = fis[6];
460 tf->device = fis[7];
461
462 tf->hob_lbal = fis[8];
463 tf->hob_lbam = fis[9];
464 tf->hob_lbah = fis[10];
465
466 tf->nsect = fis[12];
467 tf->hob_nsect = fis[13];
468}
469
Albert Lee8cbd6df2005-10-12 15:06:27 +0800470static const u8 ata_rw_cmds[] = {
471 /* pio multi */
472 ATA_CMD_READ_MULTI,
473 ATA_CMD_WRITE_MULTI,
474 ATA_CMD_READ_MULTI_EXT,
475 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100476 0,
477 0,
478 0,
479 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800480 /* pio */
481 ATA_CMD_PIO_READ,
482 ATA_CMD_PIO_WRITE,
483 ATA_CMD_PIO_READ_EXT,
484 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100485 0,
486 0,
487 0,
488 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800489 /* dma */
490 ATA_CMD_READ,
491 ATA_CMD_WRITE,
492 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100493 ATA_CMD_WRITE_EXT,
494 0,
495 0,
496 0,
497 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800498};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800501 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900502 * @tf: command to examine and configure
503 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500505 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800506 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 *
508 * LOCKING:
509 * caller.
510 */
Tejun Heobd056d72006-11-14 22:47:10 +0900511static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100513 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100515 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500516
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100517 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800518 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
519 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Albert Lee8cbd6df2005-10-12 15:06:27 +0800521 if (dev->flags & ATA_DFLAG_PIO) {
522 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100523 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900524 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000525 /* Unable to use DMA due to host limitation */
526 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800527 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800528 } else {
529 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100530 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100533 cmd = ata_rw_cmds[index + fua + lba48 + write];
534 if (cmd) {
535 tf->command = cmd;
536 return 0;
537 }
538 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
Tejun Heocb95d562006-03-06 04:31:56 +0900541/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900542 * ata_tf_read_block - Read block address from ATA taskfile
543 * @tf: ATA taskfile of interest
544 * @dev: ATA device @tf belongs to
545 *
546 * LOCKING:
547 * None.
548 *
549 * Read block address from @tf. This function can handle all
550 * three address formats - LBA, LBA48 and CHS. tf->protocol and
551 * flags select the address format to use.
552 *
553 * RETURNS:
554 * Block address read from @tf.
555 */
556u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
557{
558 u64 block = 0;
559
560 if (tf->flags & ATA_TFLAG_LBA) {
561 if (tf->flags & ATA_TFLAG_LBA48) {
562 block |= (u64)tf->hob_lbah << 40;
563 block |= (u64)tf->hob_lbam << 32;
564 block |= tf->hob_lbal << 24;
565 } else
566 block |= (tf->device & 0xf) << 24;
567
568 block |= tf->lbah << 16;
569 block |= tf->lbam << 8;
570 block |= tf->lbal;
571 } else {
572 u32 cyl, head, sect;
573
574 cyl = tf->lbam | (tf->lbah << 8);
575 head = tf->device & 0xf;
576 sect = tf->lbal;
577
578 block = (cyl * dev->heads + head) * dev->sectors + sect;
579 }
580
581 return block;
582}
583
584/**
Tejun Heobd056d72006-11-14 22:47:10 +0900585 * ata_build_rw_tf - Build ATA taskfile for given read/write request
586 * @tf: Target ATA taskfile
587 * @dev: ATA device @tf belongs to
588 * @block: Block address
589 * @n_block: Number of blocks
590 * @tf_flags: RW/FUA etc...
591 * @tag: tag
592 *
593 * LOCKING:
594 * None.
595 *
596 * Build ATA taskfile @tf for read/write request described by
597 * @block, @n_block, @tf_flags and @tag on @dev.
598 *
599 * RETURNS:
600 *
601 * 0 on success, -ERANGE if the request is too large for @dev,
602 * -EINVAL if the request is invalid.
603 */
604int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
605 u64 block, u32 n_block, unsigned int tf_flags,
606 unsigned int tag)
607{
608 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
609 tf->flags |= tf_flags;
610
Tejun Heo6d1245b2007-02-20 23:20:27 +0900611 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900612 /* yay, NCQ */
613 if (!lba_48_ok(block, n_block))
614 return -ERANGE;
615
616 tf->protocol = ATA_PROT_NCQ;
617 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
618
619 if (tf->flags & ATA_TFLAG_WRITE)
620 tf->command = ATA_CMD_FPDMA_WRITE;
621 else
622 tf->command = ATA_CMD_FPDMA_READ;
623
624 tf->nsect = tag << 3;
625 tf->hob_feature = (n_block >> 8) & 0xff;
626 tf->feature = n_block & 0xff;
627
628 tf->hob_lbah = (block >> 40) & 0xff;
629 tf->hob_lbam = (block >> 32) & 0xff;
630 tf->hob_lbal = (block >> 24) & 0xff;
631 tf->lbah = (block >> 16) & 0xff;
632 tf->lbam = (block >> 8) & 0xff;
633 tf->lbal = block & 0xff;
634
635 tf->device = 1 << 6;
636 if (tf->flags & ATA_TFLAG_FUA)
637 tf->device |= 1 << 7;
638 } else if (dev->flags & ATA_DFLAG_LBA) {
639 tf->flags |= ATA_TFLAG_LBA;
640
641 if (lba_28_ok(block, n_block)) {
642 /* use LBA28 */
643 tf->device |= (block >> 24) & 0xf;
644 } else if (lba_48_ok(block, n_block)) {
645 if (!(dev->flags & ATA_DFLAG_LBA48))
646 return -ERANGE;
647
648 /* use LBA48 */
649 tf->flags |= ATA_TFLAG_LBA48;
650
651 tf->hob_nsect = (n_block >> 8) & 0xff;
652
653 tf->hob_lbah = (block >> 40) & 0xff;
654 tf->hob_lbam = (block >> 32) & 0xff;
655 tf->hob_lbal = (block >> 24) & 0xff;
656 } else
657 /* request too large even for LBA48 */
658 return -ERANGE;
659
660 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
661 return -EINVAL;
662
663 tf->nsect = n_block & 0xff;
664
665 tf->lbah = (block >> 16) & 0xff;
666 tf->lbam = (block >> 8) & 0xff;
667 tf->lbal = block & 0xff;
668
669 tf->device |= ATA_LBA;
670 } else {
671 /* CHS */
672 u32 sect, head, cyl, track;
673
674 /* The request -may- be too large for CHS addressing. */
675 if (!lba_28_ok(block, n_block))
676 return -ERANGE;
677
678 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
679 return -EINVAL;
680
681 /* Convert LBA to CHS */
682 track = (u32)block / dev->sectors;
683 cyl = track / dev->heads;
684 head = track % dev->heads;
685 sect = (u32)block % dev->sectors + 1;
686
687 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
688 (u32)block, track, cyl, head, sect);
689
690 /* Check whether the converted CHS can fit.
691 Cylinder: 0-65535
692 Head: 0-15
693 Sector: 1-255*/
694 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
695 return -ERANGE;
696
697 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
698 tf->lbal = sect;
699 tf->lbam = cyl;
700 tf->lbah = cyl >> 8;
701 tf->device |= head;
702 }
703
704 return 0;
705}
706
707/**
Tejun Heocb95d562006-03-06 04:31:56 +0900708 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
709 * @pio_mask: pio_mask
710 * @mwdma_mask: mwdma_mask
711 * @udma_mask: udma_mask
712 *
713 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
714 * unsigned int xfer_mask.
715 *
716 * LOCKING:
717 * None.
718 *
719 * RETURNS:
720 * Packed xfer_mask.
721 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900722unsigned long ata_pack_xfermask(unsigned long pio_mask,
723 unsigned long mwdma_mask,
724 unsigned long udma_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900725{
726 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
727 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
728 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
729}
730
Tejun Heoc0489e42006-03-24 14:07:49 +0900731/**
732 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
733 * @xfer_mask: xfer_mask to unpack
734 * @pio_mask: resulting pio_mask
735 * @mwdma_mask: resulting mwdma_mask
736 * @udma_mask: resulting udma_mask
737 *
738 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
739 * Any NULL distination masks will be ignored.
740 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900741void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
742 unsigned long *mwdma_mask, unsigned long *udma_mask)
Tejun Heoc0489e42006-03-24 14:07:49 +0900743{
744 if (pio_mask)
745 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
746 if (mwdma_mask)
747 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
748 if (udma_mask)
749 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
750}
751
Tejun Heocb95d562006-03-06 04:31:56 +0900752static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900753 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900754 u8 base;
755} ata_xfer_tbl[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +0900756 { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
757 { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
758 { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
Tejun Heocb95d562006-03-06 04:31:56 +0900759 { -1, },
760};
761
762/**
763 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
764 * @xfer_mask: xfer_mask of interest
765 *
766 * Return matching XFER_* value for @xfer_mask. Only the highest
767 * bit of @xfer_mask is considered.
768 *
769 * LOCKING:
770 * None.
771 *
772 * RETURNS:
Tejun Heo70cd0712007-11-27 19:43:40 +0900773 * Matching XFER_* value, 0xff if no match found.
Tejun Heocb95d562006-03-06 04:31:56 +0900774 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900775u8 ata_xfer_mask2mode(unsigned long xfer_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900776{
777 int highbit = fls(xfer_mask) - 1;
778 const struct ata_xfer_ent *ent;
779
780 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
781 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
782 return ent->base + highbit - ent->shift;
Tejun Heo70cd0712007-11-27 19:43:40 +0900783 return 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900784}
785
786/**
787 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
788 * @xfer_mode: XFER_* of interest
789 *
790 * Return matching xfer_mask for @xfer_mode.
791 *
792 * LOCKING:
793 * None.
794 *
795 * RETURNS:
796 * Matching xfer_mask, 0 if no match found.
797 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900798unsigned long ata_xfer_mode2mask(u8 xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900799{
800 const struct ata_xfer_ent *ent;
801
802 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
803 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
Tejun Heo70cd0712007-11-27 19:43:40 +0900804 return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
805 & ~((1 << ent->shift) - 1);
Tejun Heocb95d562006-03-06 04:31:56 +0900806 return 0;
807}
808
809/**
810 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
811 * @xfer_mode: XFER_* of interest
812 *
813 * Return matching xfer_shift for @xfer_mode.
814 *
815 * LOCKING:
816 * None.
817 *
818 * RETURNS:
819 * Matching xfer_shift, -1 if no match found.
820 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900821int ata_xfer_mode2shift(unsigned long xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900822{
823 const struct ata_xfer_ent *ent;
824
825 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
826 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
827 return ent->shift;
828 return -1;
829}
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900832 * ata_mode_string - convert xfer_mask to string
833 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 *
835 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900836 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 *
838 * LOCKING:
839 * None.
840 *
841 * RETURNS:
842 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900843 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900845const char *ata_mode_string(unsigned long xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Tejun Heo75f554b2006-03-06 04:31:57 +0900847 static const char * const xfer_mode_str[] = {
848 "PIO0",
849 "PIO1",
850 "PIO2",
851 "PIO3",
852 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100853 "PIO5",
854 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900855 "MWDMA0",
856 "MWDMA1",
857 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100858 "MWDMA3",
859 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900860 "UDMA/16",
861 "UDMA/25",
862 "UDMA/33",
863 "UDMA/44",
864 "UDMA/66",
865 "UDMA/100",
866 "UDMA/133",
867 "UDMA7",
868 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900869 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900871 highbit = fls(xfer_mask) - 1;
872 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
873 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Tejun Heo4c360c82006-04-01 01:38:17 +0900877static const char *sata_spd_string(unsigned int spd)
878{
879 static const char * const spd_str[] = {
880 "1.5 Gbps",
881 "3.0 Gbps",
882 };
883
884 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
885 return "<unknown>";
886 return spd_str[spd - 1];
887}
888
Tejun Heo3373efd2006-05-15 20:57:53 +0900889void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +0900890{
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900891 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900892 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +0900893 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo562f0c22007-12-15 15:05:01 +0900894 ata_acpi_on_disable(dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +0900895 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
896 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +0900897 dev->class++;
898 }
899}
900
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400901static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
902{
903 struct ata_link *link = dev->link;
904 struct ata_port *ap = link->ap;
905 u32 scontrol;
906 unsigned int err_mask;
907 int rc;
908
909 /*
910 * disallow DIPM for drivers which haven't set
911 * ATA_FLAG_IPM. This is because when DIPM is enabled,
912 * phy ready will be set in the interrupt status on
913 * state changes, which will cause some drivers to
914 * think there are errors - additionally drivers will
915 * need to disable hot plug.
916 */
917 if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) {
918 ap->pm_policy = NOT_AVAILABLE;
919 return -EINVAL;
920 }
921
922 /*
923 * For DIPM, we will only enable it for the
924 * min_power setting.
925 *
926 * Why? Because Disks are too stupid to know that
927 * If the host rejects a request to go to SLUMBER
928 * they should retry at PARTIAL, and instead it
929 * just would give up. So, for medium_power to
930 * work at all, we need to only allow HIPM.
931 */
932 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
933 if (rc)
934 return rc;
935
936 switch (policy) {
937 case MIN_POWER:
938 /* no restrictions on IPM transitions */
939 scontrol &= ~(0x3 << 8);
940 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
941 if (rc)
942 return rc;
943
944 /* enable DIPM */
945 if (dev->flags & ATA_DFLAG_DIPM)
946 err_mask = ata_dev_set_feature(dev,
947 SETFEATURES_SATA_ENABLE, SATA_DIPM);
948 break;
949 case MEDIUM_POWER:
950 /* allow IPM to PARTIAL */
951 scontrol &= ~(0x1 << 8);
952 scontrol |= (0x2 << 8);
953 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
954 if (rc)
955 return rc;
956
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700957 /*
958 * we don't have to disable DIPM since IPM flags
959 * disallow transitions to SLUMBER, which effectively
960 * disable DIPM if it does not support PARTIAL
961 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400962 break;
963 case NOT_AVAILABLE:
964 case MAX_PERFORMANCE:
965 /* disable all IPM transitions */
966 scontrol |= (0x3 << 8);
967 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
968 if (rc)
969 return rc;
970
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -0700971 /*
972 * we don't have to disable DIPM since IPM flags
973 * disallow all transitions which effectively
974 * disable DIPM anyway.
975 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400976 break;
977 }
978
979 /* FIXME: handle SET FEATURES failure */
980 (void) err_mask;
981
982 return 0;
983}
984
985/**
986 * ata_dev_enable_pm - enable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -0700987 * @dev: device to enable power management
988 * @policy: the link power management policy
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400989 *
990 * Enable SATA Interface power management. This will enable
991 * Device Interface Power Management (DIPM) for min_power
992 * policy, and then call driver specific callbacks for
993 * enabling Host Initiated Power management.
994 *
995 * Locking: Caller.
996 * Returns: -EINVAL if IPM is not supported, 0 otherwise.
997 */
998void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy)
999{
1000 int rc = 0;
1001 struct ata_port *ap = dev->link->ap;
1002
1003 /* set HIPM first, then DIPM */
1004 if (ap->ops->enable_pm)
1005 rc = ap->ops->enable_pm(ap, policy);
1006 if (rc)
1007 goto enable_pm_out;
1008 rc = ata_dev_set_dipm(dev, policy);
1009
1010enable_pm_out:
1011 if (rc)
1012 ap->pm_policy = MAX_PERFORMANCE;
1013 else
1014 ap->pm_policy = policy;
1015 return /* rc */; /* hopefully we can use 'rc' eventually */
1016}
1017
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001018#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001019/**
1020 * ata_dev_disable_pm - disable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001021 * @dev: device to disable power management
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001022 *
1023 * Disable SATA Interface power management. This will disable
1024 * Device Interface Power Management (DIPM) without changing
1025 * policy, call driver specific callbacks for disabling Host
1026 * Initiated Power management.
1027 *
1028 * Locking: Caller.
1029 * Returns: void
1030 */
1031static void ata_dev_disable_pm(struct ata_device *dev)
1032{
1033 struct ata_port *ap = dev->link->ap;
1034
1035 ata_dev_set_dipm(dev, MAX_PERFORMANCE);
1036 if (ap->ops->disable_pm)
1037 ap->ops->disable_pm(ap);
1038}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001039#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001040
1041void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy)
1042{
1043 ap->pm_policy = policy;
Tejun Heo3ec25eb2008-03-27 18:37:14 +09001044 ap->link.eh_info.action |= ATA_EH_LPM;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001045 ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY;
1046 ata_port_schedule_eh(ap);
1047}
1048
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001049#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001050static void ata_lpm_enable(struct ata_host *host)
1051{
1052 struct ata_link *link;
1053 struct ata_port *ap;
1054 struct ata_device *dev;
1055 int i;
1056
1057 for (i = 0; i < host->n_ports; i++) {
1058 ap = host->ports[i];
1059 ata_port_for_each_link(link, ap) {
1060 ata_link_for_each_dev(dev, link)
1061 ata_dev_disable_pm(dev);
1062 }
1063 }
1064}
1065
1066static void ata_lpm_disable(struct ata_host *host)
1067{
1068 int i;
1069
1070 for (i = 0; i < host->n_ports; i++) {
1071 struct ata_port *ap = host->ports[i];
1072 ata_lpm_schedule(ap, ap->pm_policy);
1073 }
1074}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001075#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077/**
1078 * ata_dev_classify - determine device type based on ATA-spec signature
1079 * @tf: ATA taskfile register set for device to be identified
1080 *
1081 * Determine from taskfile register contents whether a device is
1082 * ATA or ATAPI, as per "Signature and persistence" section
1083 * of ATA/PI spec (volume 1, sect 5.14).
1084 *
1085 * LOCKING:
1086 * None.
1087 *
1088 * RETURNS:
Tejun Heo633273a32007-09-23 13:19:54 +09001089 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
1090 * %ATA_DEV_UNKNOWN the event of failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 */
Jeff Garzik057ace52005-10-22 14:27:05 -04001092unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
1094 /* Apple's open source Darwin code hints that some devices only
1095 * put a proper signature into the LBA mid/high registers,
1096 * So, we only check those. It's sufficient for uniqueness.
Tejun Heo633273a32007-09-23 13:19:54 +09001097 *
1098 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1099 * signatures for ATA and ATAPI devices attached on SerialATA,
1100 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
1101 * spec has never mentioned about using different signatures
1102 * for ATA/ATAPI devices. Then, Serial ATA II: Port
1103 * Multiplier specification began to use 0x69/0x96 to identify
1104 * port multpliers and 0x3c/0xc3 to identify SEMB device.
1105 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1106 * 0x69/0x96 shortly and described them as reserved for
1107 * SerialATA.
1108 *
1109 * We follow the current spec and consider that 0x69/0x96
1110 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 */
Tejun Heo633273a32007-09-23 13:19:54 +09001112 if ((tf->lbam == 0) && (tf->lbah == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 DPRINTK("found ATA device by sig\n");
1114 return ATA_DEV_ATA;
1115 }
1116
Tejun Heo633273a32007-09-23 13:19:54 +09001117 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 DPRINTK("found ATAPI device by sig\n");
1119 return ATA_DEV_ATAPI;
1120 }
1121
Tejun Heo633273a32007-09-23 13:19:54 +09001122 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1123 DPRINTK("found PMP device by sig\n");
1124 return ATA_DEV_PMP;
1125 }
1126
1127 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001128 printk(KERN_INFO "ata: SEMB device ignored\n");
Tejun Heo633273a32007-09-23 13:19:54 +09001129 return ATA_DEV_SEMB_UNSUP; /* not yet */
1130 }
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 DPRINTK("unknown device\n");
1133 return ATA_DEV_UNKNOWN;
1134}
1135
1136/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001137 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 * @id: IDENTIFY DEVICE results we will examine
1139 * @s: string into which data is output
1140 * @ofs: offset into identify device page
1141 * @len: length of string to return. must be an even number.
1142 *
1143 * The strings in the IDENTIFY DEVICE page are broken up into
1144 * 16-bit chunks. Run through the string, and output each
1145 * 8-bit chunk linearly, regardless of platform.
1146 *
1147 * LOCKING:
1148 * caller.
1149 */
1150
Tejun Heo6a62a042006-02-13 10:02:46 +09001151void ata_id_string(const u16 *id, unsigned char *s,
1152 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 unsigned int c;
1155
1156 while (len > 0) {
1157 c = id[ofs] >> 8;
1158 *s = c;
1159 s++;
1160
1161 c = id[ofs] & 0xff;
1162 *s = c;
1163 s++;
1164
1165 ofs++;
1166 len -= 2;
1167 }
1168}
1169
Tejun Heo0e949ff2006-02-12 22:47:04 +09001170/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001171 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +09001172 * @id: IDENTIFY DEVICE results we will examine
1173 * @s: string into which data is output
1174 * @ofs: offset into identify device page
1175 * @len: length of string to return. must be an odd number.
1176 *
Tejun Heo6a62a042006-02-13 10:02:46 +09001177 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +09001178 * trims trailing spaces and terminates the resulting string with
1179 * null. @len must be actual maximum length (even number) + 1.
1180 *
1181 * LOCKING:
1182 * caller.
1183 */
Tejun Heo6a62a042006-02-13 10:02:46 +09001184void ata_id_c_string(const u16 *id, unsigned char *s,
1185 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +09001186{
1187 unsigned char *p;
1188
1189 WARN_ON(!(len & 1));
1190
Tejun Heo6a62a042006-02-13 10:02:46 +09001191 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +09001192
1193 p = s + strnlen(s, len - 1);
1194 while (p > s && p[-1] == ' ')
1195 p--;
1196 *p = '\0';
1197}
Edward Falk0baab862005-06-02 18:17:13 -04001198
Tejun Heodb6f8752007-09-03 12:31:58 +09001199static u64 ata_id_n_sectors(const u16 *id)
1200{
1201 if (ata_id_has_lba(id)) {
1202 if (ata_id_has_lba48(id))
1203 return ata_id_u64(id, 100);
1204 else
1205 return ata_id_u32(id, 60);
1206 } else {
1207 if (ata_id_current_chs_valid(id))
1208 return ata_id_u32(id, 57);
1209 else
1210 return id[1] * id[3] * id[6];
1211 }
1212}
1213
Alan Cox1e999732007-04-11 00:23:13 +01001214static u64 ata_tf_to_lba48(struct ata_taskfile *tf)
1215{
1216 u64 sectors = 0;
1217
1218 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1219 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
1220 sectors |= (tf->hob_lbal & 0xff) << 24;
1221 sectors |= (tf->lbah & 0xff) << 16;
1222 sectors |= (tf->lbam & 0xff) << 8;
1223 sectors |= (tf->lbal & 0xff);
1224
1225 return ++sectors;
1226}
1227
1228static u64 ata_tf_to_lba(struct ata_taskfile *tf)
1229{
1230 u64 sectors = 0;
1231
1232 sectors |= (tf->device & 0x0f) << 24;
1233 sectors |= (tf->lbah & 0xff) << 16;
1234 sectors |= (tf->lbam & 0xff) << 8;
1235 sectors |= (tf->lbal & 0xff);
1236
1237 return ++sectors;
1238}
1239
1240/**
Tejun Heoc728a912007-09-03 12:32:30 +09001241 * ata_read_native_max_address - Read native max address
1242 * @dev: target device
1243 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +01001244 *
Tejun Heoc728a912007-09-03 12:32:30 +09001245 * Perform an LBA48 or LBA28 native size query upon the device in
1246 * question.
1247 *
1248 * RETURNS:
1249 * 0 on success, -EACCES if command is aborted by the drive.
1250 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +01001251 */
Tejun Heoc728a912007-09-03 12:32:30 +09001252static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001253{
Tejun Heoc728a912007-09-03 12:32:30 +09001254 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001255 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001256 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001257
1258 ata_tf_init(dev, &tf);
1259
Tejun Heoc728a912007-09-03 12:32:30 +09001260 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +01001261 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001262
1263 if (lba48) {
1264 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1265 tf.flags |= ATA_TFLAG_LBA48;
1266 } else
1267 tf.command = ATA_CMD_READ_NATIVE_MAX;
1268
Alan Cox1e999732007-04-11 00:23:13 +01001269 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001270 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001271
Tejun Heo2b789102007-10-09 15:05:44 +09001272 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001273 if (err_mask) {
1274 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
1275 "max address (err_mask=0x%x)\n", err_mask);
1276 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1277 return -EACCES;
1278 return -EIO;
1279 }
Alan Cox1e999732007-04-11 00:23:13 +01001280
Tejun Heoc728a912007-09-03 12:32:30 +09001281 if (lba48)
1282 *max_sectors = ata_tf_to_lba48(&tf);
1283 else
1284 *max_sectors = ata_tf_to_lba(&tf);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001285 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
Alan Cox93328e12007-09-29 04:06:48 -04001286 (*max_sectors)--;
Tejun Heoc728a912007-09-03 12:32:30 +09001287 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001288}
1289
1290/**
Tejun Heoc728a912007-09-03 12:32:30 +09001291 * ata_set_max_sectors - Set max sectors
1292 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -07001293 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +01001294 *
Tejun Heoc728a912007-09-03 12:32:30 +09001295 * Set max sectors of @dev to @new_sectors.
1296 *
1297 * RETURNS:
1298 * 0 on success, -EACCES if command is aborted or denied (due to
1299 * previous non-volatile SET_MAX) by the drive. -EIO on other
1300 * errors.
Alan Cox1e999732007-04-11 00:23:13 +01001301 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001302static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001303{
Tejun Heoc728a912007-09-03 12:32:30 +09001304 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001305 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001306 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001307
1308 new_sectors--;
1309
1310 ata_tf_init(dev, &tf);
1311
Alan Cox1e999732007-04-11 00:23:13 +01001312 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001313
1314 if (lba48) {
1315 tf.command = ATA_CMD_SET_MAX_EXT;
1316 tf.flags |= ATA_TFLAG_LBA48;
1317
1318 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1319 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1320 tf.hob_lbah = (new_sectors >> 40) & 0xff;
Tejun Heo1e582ba2007-09-21 20:07:14 +09001321 } else {
Tejun Heoc728a912007-09-03 12:32:30 +09001322 tf.command = ATA_CMD_SET_MAX;
1323
Tejun Heo1e582ba2007-09-21 20:07:14 +09001324 tf.device |= (new_sectors >> 24) & 0xf;
1325 }
1326
Alan Cox1e999732007-04-11 00:23:13 +01001327 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001328 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001329
1330 tf.lbal = (new_sectors >> 0) & 0xff;
1331 tf.lbam = (new_sectors >> 8) & 0xff;
1332 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +01001333
Tejun Heo2b789102007-10-09 15:05:44 +09001334 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001335 if (err_mask) {
1336 ata_dev_printk(dev, KERN_WARNING, "failed to set "
1337 "max address (err_mask=0x%x)\n", err_mask);
1338 if (err_mask == AC_ERR_DEV &&
1339 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1340 return -EACCES;
1341 return -EIO;
1342 }
Alan Cox1e999732007-04-11 00:23:13 +01001343
Tejun Heoc728a912007-09-03 12:32:30 +09001344 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001345}
1346
1347/**
1348 * ata_hpa_resize - Resize a device with an HPA set
1349 * @dev: Device to resize
1350 *
1351 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1352 * it if required to the full size of the media. The caller must check
1353 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +09001354 *
1355 * RETURNS:
1356 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +01001357 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001358static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +01001359{
Tejun Heo05027ad2007-09-03 12:32:57 +09001360 struct ata_eh_context *ehc = &dev->link->eh_context;
1361 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1362 u64 sectors = ata_id_n_sectors(dev->id);
1363 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +09001364 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -04001365
Tejun Heo05027ad2007-09-03 12:32:57 +09001366 /* do we need to do it? */
1367 if (dev->class != ATA_DEV_ATA ||
1368 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1369 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +09001370 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001371
Tejun Heo05027ad2007-09-03 12:32:57 +09001372 /* read native max address */
1373 rc = ata_read_native_max_address(dev, &native_sectors);
1374 if (rc) {
Tejun Heodda7aba2008-03-23 21:05:15 +09001375 /* If device aborted the command or HPA isn't going to
1376 * be unlocked, skip HPA resizing.
Tejun Heo05027ad2007-09-03 12:32:57 +09001377 */
Tejun Heodda7aba2008-03-23 21:05:15 +09001378 if (rc == -EACCES || !ata_ignore_hpa) {
Tejun Heo05027ad2007-09-03 12:32:57 +09001379 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
Tejun Heodda7aba2008-03-23 21:05:15 +09001380 "broken, skipping HPA handling\n");
Tejun Heo05027ad2007-09-03 12:32:57 +09001381 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001382
Tejun Heo05027ad2007-09-03 12:32:57 +09001383 /* we can continue if device aborted the command */
1384 if (rc == -EACCES)
1385 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001386 }
Tejun Heo37301a52007-06-25 20:45:54 +09001387
Tejun Heo05027ad2007-09-03 12:32:57 +09001388 return rc;
1389 }
1390
1391 /* nothing to do? */
1392 if (native_sectors <= sectors || !ata_ignore_hpa) {
1393 if (!print_info || native_sectors == sectors)
1394 return 0;
1395
1396 if (native_sectors > sectors)
1397 ata_dev_printk(dev, KERN_INFO,
1398 "HPA detected: current %llu, native %llu\n",
1399 (unsigned long long)sectors,
1400 (unsigned long long)native_sectors);
1401 else if (native_sectors < sectors)
1402 ata_dev_printk(dev, KERN_WARNING,
1403 "native sectors (%llu) is smaller than "
1404 "sectors (%llu)\n",
1405 (unsigned long long)native_sectors,
1406 (unsigned long long)sectors);
1407 return 0;
1408 }
1409
1410 /* let's unlock HPA */
1411 rc = ata_set_max_sectors(dev, native_sectors);
1412 if (rc == -EACCES) {
1413 /* if device aborted the command, skip HPA resizing */
1414 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1415 "(%llu -> %llu), skipping HPA handling\n",
1416 (unsigned long long)sectors,
1417 (unsigned long long)native_sectors);
1418 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1419 return 0;
1420 } else if (rc)
1421 return rc;
1422
1423 /* re-read IDENTIFY data */
1424 rc = ata_dev_reread_id(dev, 0);
1425 if (rc) {
1426 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1427 "data after HPA resizing\n");
1428 return rc;
1429 }
1430
1431 if (print_info) {
1432 u64 new_sectors = ata_id_n_sectors(dev->id);
1433 ata_dev_printk(dev, KERN_INFO,
1434 "HPA unlocked: %llu -> %llu, native %llu\n",
1435 (unsigned long long)sectors,
1436 (unsigned long long)new_sectors,
1437 (unsigned long long)native_sectors);
1438 }
1439
1440 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001441}
1442
Edward Falk0baab862005-06-02 18:17:13 -04001443/**
1444 * ata_noop_dev_select - Select device 0/1 on ATA bus
1445 * @ap: ATA channel to manipulate
1446 * @device: ATA device (numbered from zero) to select
1447 *
1448 * This function performs no actual function.
1449 *
1450 * May be used as the dev_select() entry in ata_port_operations.
1451 *
1452 * LOCKING:
1453 * caller.
1454 */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001455void ata_noop_dev_select(struct ata_port *ap, unsigned int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457}
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459/**
1460 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001461 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001463 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1464 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 *
1466 * LOCKING:
1467 * caller.
1468 */
1469
Tejun Heo0bd33002006-02-12 22:47:05 +09001470static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
1472 DPRINTK("49==0x%04x "
1473 "53==0x%04x "
1474 "63==0x%04x "
1475 "64==0x%04x "
1476 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001477 id[49],
1478 id[53],
1479 id[63],
1480 id[64],
1481 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 DPRINTK("80==0x%04x "
1483 "81==0x%04x "
1484 "82==0x%04x "
1485 "83==0x%04x "
1486 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001487 id[80],
1488 id[81],
1489 id[82],
1490 id[83],
1491 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 DPRINTK("88==0x%04x "
1493 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001494 id[88],
1495 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Tejun Heocb95d562006-03-06 04:31:56 +09001498/**
1499 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1500 * @id: IDENTIFY data to compute xfer mask from
1501 *
1502 * Compute the xfermask for this device. This is not as trivial
1503 * as it seems if we must consider early devices correctly.
1504 *
1505 * FIXME: pre IDE drive timing (do we care ?).
1506 *
1507 * LOCKING:
1508 * None.
1509 *
1510 * RETURNS:
1511 * Computed xfermask
1512 */
Tejun Heo7dc951a2007-11-27 19:43:42 +09001513unsigned long ata_id_xfermask(const u16 *id)
Tejun Heocb95d562006-03-06 04:31:56 +09001514{
Tejun Heo7dc951a2007-11-27 19:43:42 +09001515 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heocb95d562006-03-06 04:31:56 +09001516
1517 /* Usual case. Word 53 indicates word 64 is valid */
1518 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1519 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1520 pio_mask <<= 3;
1521 pio_mask |= 0x7;
1522 } else {
1523 /* If word 64 isn't valid then Word 51 high byte holds
1524 * the PIO timing number for the maximum. Turn it into
1525 * a mask.
1526 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001527 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001528 if (mode < 5) /* Valid PIO range */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001529 pio_mask = (2 << mode) - 1;
Alan Cox46767aeb2006-09-29 18:26:47 +01001530 else
1531 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001532
1533 /* But wait.. there's more. Design your standards by
1534 * committee and you too can get a free iordy field to
1535 * process. However its the speeds not the modes that
1536 * are supported... Note drivers using the timing API
1537 * will get this right anyway
1538 */
1539 }
1540
1541 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001542
Alan Coxb352e572006-08-10 18:52:12 +01001543 if (ata_id_is_cfa(id)) {
1544 /*
1545 * Process compact flash extended modes
1546 */
1547 int pio = id[163] & 0x7;
1548 int dma = (id[163] >> 3) & 7;
1549
1550 if (pio)
1551 pio_mask |= (1 << 5);
1552 if (pio > 1)
1553 pio_mask |= (1 << 6);
1554 if (dma)
1555 mwdma_mask |= (1 << 3);
1556 if (dma > 1)
1557 mwdma_mask |= (1 << 4);
1558 }
1559
Tejun Heofb21f0d2006-03-12 12:34:35 +09001560 udma_mask = 0;
1561 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1562 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001563
1564 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1565}
1566
Tejun Heo86e45b62006-03-05 15:29:09 +09001567/**
Jeff Garzik442eacc2007-12-19 04:25:10 -05001568 * ata_pio_queue_task - Queue port_task
Tejun Heo86e45b62006-03-05 15:29:09 +09001569 * @ap: The ata_port to queue port_task for
Randy Dunlape2a7f772006-05-18 10:50:18 -07001570 * @fn: workqueue function to be scheduled
David Howells65f27f32006-11-22 14:55:48 +00001571 * @data: data for @fn to use
Randy Dunlape2a7f772006-05-18 10:50:18 -07001572 * @delay: delay time for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001573 *
1574 * Schedule @fn(@data) for execution after @delay jiffies using
1575 * port_task. There is one port_task per port and it's the
1576 * user(low level driver)'s responsibility to make sure that only
1577 * one task is active at any given time.
1578 *
1579 * libata core layer takes care of synchronization between
Jeff Garzik442eacc2007-12-19 04:25:10 -05001580 * port_task and EH. ata_pio_queue_task() may be ignored for EH
Tejun Heo86e45b62006-03-05 15:29:09 +09001581 * synchronization.
1582 *
1583 * LOCKING:
1584 * Inherited from caller.
1585 */
Tejun Heo624d5c52008-03-25 22:16:41 +09001586void ata_pio_queue_task(struct ata_port *ap, void *data, unsigned long delay)
Tejun Heo86e45b62006-03-05 15:29:09 +09001587{
David Howells65f27f32006-11-22 14:55:48 +00001588 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001589
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001590 /* may fail if ata_port_flush_task() in progress */
1591 queue_delayed_work(ata_wq, &ap->port_task, delay);
Tejun Heo86e45b62006-03-05 15:29:09 +09001592}
1593
1594/**
1595 * ata_port_flush_task - Flush port_task
1596 * @ap: The ata_port to flush port_task for
1597 *
1598 * After this function completes, port_task is guranteed not to
1599 * be running or scheduled.
1600 *
1601 * LOCKING:
1602 * Kernel thread context (may sleep)
1603 */
1604void ata_port_flush_task(struct ata_port *ap)
1605{
Tejun Heo86e45b62006-03-05 15:29:09 +09001606 DPRINTK("ENTER\n");
1607
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001608 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001609
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001610 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001611 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001612}
1613
Adrian Bunk7102d232007-01-04 00:09:36 +01001614static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001615{
Tejun Heo77853bf2006-01-23 13:09:36 +09001616 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001617
Tejun Heoa2a7a662005-12-13 14:48:31 +09001618 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001619}
1620
1621/**
Tejun Heo24326972006-11-14 22:47:09 +09001622 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001623 * @dev: Device to which the command is sent
1624 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001625 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001626 * @dma_dir: Data tranfer direction of the command
Randy Dunlap5c1ad8b2007-10-18 14:12:26 -07001627 * @sgl: sg list for the data buffer of the command
Tejun Heo24326972006-11-14 22:47:09 +09001628 * @n_elem: Number of sg entries
Tejun Heo2b789102007-10-09 15:05:44 +09001629 * @timeout: Timeout in msecs (0 for default)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001630 *
1631 * Executes libata internal command with timeout. @tf contains
1632 * command on entry and result on return. Timeout and error
1633 * conditions are reported via return value. No recovery action
1634 * is taken after a command times out. It's caller's duty to
1635 * clean up after timeout.
1636 *
1637 * LOCKING:
1638 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001639 *
1640 * RETURNS:
1641 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001642 */
Tejun Heo24326972006-11-14 22:47:09 +09001643unsigned ata_exec_internal_sg(struct ata_device *dev,
1644 struct ata_taskfile *tf, const u8 *cdb,
Jens Axboe87260212007-10-16 11:14:12 +02001645 int dma_dir, struct scatterlist *sgl,
Tejun Heo2b789102007-10-09 15:05:44 +09001646 unsigned int n_elem, unsigned long timeout)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001647{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001648 struct ata_link *link = dev->link;
1649 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001650 u8 command = tf->command;
1651 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001652 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001653 u32 preempted_sactive, preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001654 int preempted_nr_active_links;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001655 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001656 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001657 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001658 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001659
Jeff Garzikba6a1302006-06-22 23:46:10 -04001660 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001661
Tejun Heoe3180492006-05-15 20:58:09 +09001662 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001663 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001664 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001665 return AC_ERR_SYSTEM;
1666 }
1667
Tejun Heo2ab7db12006-05-15 20:58:02 +09001668 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001669
Tejun Heo2ab7db12006-05-15 20:58:02 +09001670 /* XXX: Tag 0 is used for drivers with legacy EH as some
1671 * drivers choke if any other tag is given. This breaks
1672 * ata_tag_internal() test for those drivers. Don't use new
1673 * EH stuff without converting to it.
1674 */
1675 if (ap->ops->error_handler)
1676 tag = ATA_TAG_INTERNAL;
1677 else
1678 tag = 0;
1679
Tejun Heo6cec4a32006-05-15 21:03:41 +09001680 if (test_and_set_bit(tag, &ap->qc_allocated))
Tejun Heo2ab7db12006-05-15 20:58:02 +09001681 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001682 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001683
1684 qc->tag = tag;
1685 qc->scsicmd = NULL;
1686 qc->ap = ap;
1687 qc->dev = dev;
1688 ata_qc_reinit(qc);
1689
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001690 preempted_tag = link->active_tag;
1691 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001692 preempted_qc_active = ap->qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001693 preempted_nr_active_links = ap->nr_active_links;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001694 link->active_tag = ATA_TAG_POISON;
1695 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001696 ap->qc_active = 0;
Tejun Heoda917d62007-09-23 13:14:12 +09001697 ap->nr_active_links = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001698
1699 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001700 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001701 if (cdb)
1702 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001703 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001704 qc->dma_dir = dma_dir;
1705 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001706 unsigned int i, buflen = 0;
Jens Axboe87260212007-10-16 11:14:12 +02001707 struct scatterlist *sg;
Tejun Heo24326972006-11-14 22:47:09 +09001708
Jens Axboe87260212007-10-16 11:14:12 +02001709 for_each_sg(sgl, sg, n_elem, i)
1710 buflen += sg->length;
Tejun Heo24326972006-11-14 22:47:09 +09001711
Jens Axboe87260212007-10-16 11:14:12 +02001712 ata_sg_init(qc, sgl, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001713 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001714 }
1715
Tejun Heo77853bf2006-01-23 13:09:36 +09001716 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001717 qc->complete_fn = ata_qc_complete_internal;
1718
Tejun Heo8e0e6942006-03-31 20:41:11 +09001719 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001720
Jeff Garzikba6a1302006-06-22 23:46:10 -04001721 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001722
Tejun Heo2b789102007-10-09 15:05:44 +09001723 if (!timeout)
1724 timeout = ata_probe_timeout * 1000 / HZ;
1725
1726 rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
Albert Lee41ade502006-03-14 11:19:04 +08001727
Tejun Heod95a7172006-05-15 20:58:14 +09001728 ata_port_flush_task(ap);
1729
1730 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001731 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001732
1733 /* We're racing with irq here. If we lose, the
1734 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001735 * twice. If we win, the port is frozen and will be
1736 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001737 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001738 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001739 qc->err_mask |= AC_ERR_TIMEOUT;
1740
1741 if (ap->ops->error_handler)
1742 ata_port_freeze(ap);
1743 else
1744 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001745
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001746 if (ata_msg_warn(ap))
1747 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001748 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001749 }
1750
Jeff Garzikba6a1302006-06-22 23:46:10 -04001751 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001752 }
1753
Tejun Heod95a7172006-05-15 20:58:14 +09001754 /* do post_internal_cmd */
1755 if (ap->ops->post_internal_cmd)
1756 ap->ops->post_internal_cmd(qc);
1757
Tejun Heoa51d6442007-03-20 15:24:11 +09001758 /* perform minimal error analysis */
1759 if (qc->flags & ATA_QCFLAG_FAILED) {
1760 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1761 qc->err_mask |= AC_ERR_DEV;
1762
1763 if (!qc->err_mask)
1764 qc->err_mask |= AC_ERR_OTHER;
1765
1766 if (qc->err_mask & ~AC_ERR_OTHER)
1767 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001768 }
1769
Tejun Heo15869302006-05-15 20:57:33 +09001770 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001771 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001772
Tejun Heoe61e0672006-05-15 20:57:40 +09001773 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001774 err_mask = qc->err_mask;
1775
1776 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001777 link->active_tag = preempted_tag;
1778 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001779 ap->qc_active = preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001780 ap->nr_active_links = preempted_nr_active_links;
Tejun Heo77853bf2006-01-23 13:09:36 +09001781
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001782 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1783 * Until those drivers are fixed, we detect the condition
1784 * here, fail the command with AC_ERR_SYSTEM and reenable the
1785 * port.
1786 *
1787 * Note that this doesn't change any behavior as internal
1788 * command failure results in disabling the device in the
1789 * higher layer for LLDDs without new reset/EH callbacks.
1790 *
1791 * Kill the following code as soon as those drivers are fixed.
1792 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001793 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001794 err_mask |= AC_ERR_SYSTEM;
1795 ata_port_probe(ap);
1796 }
1797
Jeff Garzikba6a1302006-06-22 23:46:10 -04001798 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001799
Tejun Heo77853bf2006-01-23 13:09:36 +09001800 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001801}
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803/**
Tejun Heo33480a02006-12-12 02:15:31 +09001804 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001805 * @dev: Device to which the command is sent
1806 * @tf: Taskfile registers for the command and the result
1807 * @cdb: CDB for packet command
1808 * @dma_dir: Data tranfer direction of the command
1809 * @buf: Data buffer of the command
1810 * @buflen: Length of data buffer
Tejun Heo2b789102007-10-09 15:05:44 +09001811 * @timeout: Timeout in msecs (0 for default)
Tejun Heo24326972006-11-14 22:47:09 +09001812 *
1813 * Wrapper around ata_exec_internal_sg() which takes simple
1814 * buffer instead of sg list.
1815 *
1816 * LOCKING:
1817 * None. Should be called with kernel context, might sleep.
1818 *
1819 * RETURNS:
1820 * Zero on success, AC_ERR_* mask on failure
1821 */
1822unsigned ata_exec_internal(struct ata_device *dev,
1823 struct ata_taskfile *tf, const u8 *cdb,
Tejun Heo2b789102007-10-09 15:05:44 +09001824 int dma_dir, void *buf, unsigned int buflen,
1825 unsigned long timeout)
Tejun Heo24326972006-11-14 22:47:09 +09001826{
Tejun Heo33480a02006-12-12 02:15:31 +09001827 struct scatterlist *psg = NULL, sg;
1828 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001829
Tejun Heo33480a02006-12-12 02:15:31 +09001830 if (dma_dir != DMA_NONE) {
1831 WARN_ON(!buf);
1832 sg_init_one(&sg, buf, buflen);
1833 psg = &sg;
1834 n_elem++;
1835 }
Tejun Heo24326972006-11-14 22:47:09 +09001836
Tejun Heo2b789102007-10-09 15:05:44 +09001837 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
1838 timeout);
Tejun Heo24326972006-11-14 22:47:09 +09001839}
1840
1841/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001842 * ata_do_simple_cmd - execute simple internal command
1843 * @dev: Device to which the command is sent
1844 * @cmd: Opcode to execute
1845 *
1846 * Execute a 'simple' command, that only consists of the opcode
1847 * 'cmd' itself, without filling any other registers
1848 *
1849 * LOCKING:
1850 * Kernel thread context (may sleep).
1851 *
1852 * RETURNS:
1853 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001854 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001855unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001856{
1857 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001858
1859 ata_tf_init(dev, &tf);
1860
1861 tf.command = cmd;
1862 tf.flags |= ATA_TFLAG_DEVICE;
1863 tf.protocol = ATA_PROT_NODATA;
1864
Tejun Heo2b789102007-10-09 15:05:44 +09001865 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001866}
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001869 * ata_pio_need_iordy - check if iordy needed
1870 * @adev: ATA device
1871 *
1872 * Check if the current speed of the device requires IORDY. Used
1873 * by various controllers for chip configuration.
1874 */
Jeff Garzika617c092007-05-21 20:14:23 -04001875
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001876unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1877{
Alan Cox432729f2007-03-08 23:22:59 +00001878 /* Controller doesn't support IORDY. Probably a pointless check
1879 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001880 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001881 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001882 /* PIO3 and higher it is mandatory */
1883 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001884 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001885 /* We turn it on when possible */
1886 if (ata_id_has_iordy(adev->id))
1887 return 1;
1888 return 0;
1889}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001890
Alan Cox432729f2007-03-08 23:22:59 +00001891/**
1892 * ata_pio_mask_no_iordy - Return the non IORDY mask
1893 * @adev: ATA device
1894 *
1895 * Compute the highest mode possible if we are not using iordy. Return
1896 * -1 if no iordy mode is available.
1897 */
Jeff Garzika617c092007-05-21 20:14:23 -04001898
Alan Cox432729f2007-03-08 23:22:59 +00001899static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1900{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001901 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001902 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001903 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001904 /* Is the speed faster than the drive allows non IORDY ? */
1905 if (pio) {
1906 /* This is cycle times not frequency - watch the logic! */
1907 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001908 return 3 << ATA_SHIFT_PIO;
1909 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001910 }
1911 }
Alan Cox432729f2007-03-08 23:22:59 +00001912 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001913}
1914
1915/**
Tejun Heo49016ac2006-02-21 02:12:11 +09001916 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09001917 * @dev: target device
1918 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09001919 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09001920 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09001921 *
1922 * Read ID data from the specified device. ATA_CMD_ID_ATA is
1923 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09001924 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
1925 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09001926 *
Alan Cox50a99012007-08-08 14:27:00 +01001927 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001928 * now we abort if we hit that case.
Alan Cox50a99012007-08-08 14:27:00 +01001929 *
Tejun Heo49016ac2006-02-21 02:12:11 +09001930 * LOCKING:
1931 * Kernel thread context (may sleep)
1932 *
1933 * RETURNS:
1934 * 0 on success, -errno otherwise.
1935 */
Tejun Heoa9beec92006-05-31 18:27:44 +09001936int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09001937 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09001938{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001939 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09001940 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09001941 struct ata_taskfile tf;
1942 unsigned int err_mask = 0;
1943 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02001944 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09001945 int rc;
1946
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001947 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001948 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Tejun Heo49016ac2006-02-21 02:12:11 +09001949
Tejun Heo49016ac2006-02-21 02:12:11 +09001950 retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09001951 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09001952
1953 switch (class) {
1954 case ATA_DEV_ATA:
1955 tf.command = ATA_CMD_ID_ATA;
1956 break;
1957 case ATA_DEV_ATAPI:
1958 tf.command = ATA_CMD_ID_ATAPI;
1959 break;
1960 default:
1961 rc = -ENODEV;
1962 reason = "unsupported class";
1963 goto err_out;
1964 }
1965
1966 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08001967
1968 /* Some devices choke if TF registers contain garbage. Make
1969 * sure those are properly initialized.
1970 */
1971 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1972
1973 /* Device presence detection is unreliable on some
1974 * controllers. Always poll IDENTIFY if available.
1975 */
1976 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09001977
Tejun Heo3373efd2006-05-15 20:57:53 +09001978 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
Tejun Heo2b789102007-10-09 15:05:44 +09001979 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
Tejun Heo49016ac2006-02-21 02:12:11 +09001980 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09001981 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo1ffc1512008-03-23 15:16:53 +09001982 ata_dev_printk(dev, KERN_DEBUG,
1983 "NODEV after polling detection\n");
Tejun Heo55a8e2c2006-11-10 18:08:10 +09001984 return -ENOENT;
1985 }
1986
Tejun Heo1ffc1512008-03-23 15:16:53 +09001987 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
1988 /* Device or controller might have reported
1989 * the wrong device class. Give a shot at the
1990 * other IDENTIFY if the current one is
1991 * aborted by the device.
1992 */
1993 if (may_fallback) {
1994 may_fallback = 0;
Tejun Heo54936f82007-05-11 14:35:29 +02001995
Tejun Heo1ffc1512008-03-23 15:16:53 +09001996 if (class == ATA_DEV_ATA)
1997 class = ATA_DEV_ATAPI;
1998 else
1999 class = ATA_DEV_ATA;
2000 goto retry;
2001 }
2002
2003 /* Control reaches here iff the device aborted
2004 * both flavors of IDENTIFYs which happens
2005 * sometimes with phantom devices.
2006 */
2007 ata_dev_printk(dev, KERN_DEBUG,
2008 "both IDENTIFYs aborted, assuming NODEV\n");
2009 return -ENOENT;
Tejun Heo54936f82007-05-11 14:35:29 +02002010 }
2011
Tejun Heo49016ac2006-02-21 02:12:11 +09002012 rc = -EIO;
2013 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09002014 goto err_out;
2015 }
2016
Tejun Heo54936f82007-05-11 14:35:29 +02002017 /* Falling back doesn't make sense if ID data was read
2018 * successfully at least once.
2019 */
2020 may_fallback = 0;
2021
Tejun Heo49016ac2006-02-21 02:12:11 +09002022 swap_buf_le16(id, ATA_ID_WORDS);
2023
Tejun Heo49016ac2006-02-21 02:12:11 +09002024 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07002025 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01002026 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07002027
2028 if (class == ATA_DEV_ATA) {
2029 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
2030 goto err_out;
2031 } else {
2032 if (ata_id_is_ata(id))
2033 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09002034 }
2035
Mark Lord169439c2007-04-17 18:26:07 -04002036 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2037 tried_spinup = 1;
2038 /*
2039 * Drive powered-up in standby mode, and requires a specific
2040 * SET_FEATURES spin-up subcommand before it will accept
2041 * anything other than the original IDENTIFY command.
2042 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002043 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07002044 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04002045 rc = -EIO;
2046 reason = "SPINUP failed";
2047 goto err_out;
2048 }
2049 /*
2050 * If the drive initially returned incomplete IDENTIFY info,
2051 * we now must reissue the IDENTIFY command.
2052 */
2053 if (id[2] == 0x37c8)
2054 goto retry;
2055 }
2056
Tejun Heobff04642006-11-10 18:08:10 +09002057 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09002058 /*
2059 * The exact sequence expected by certain pre-ATA4 drives is:
2060 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01002061 * IDENTIFY (optional in early ATA)
2062 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09002063 * anything else..
2064 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01002065 *
2066 * Note that ATA4 says lba is mandatory so the second check
2067 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09002068 */
2069 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09002070 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09002071 if (err_mask) {
2072 rc = -EIO;
2073 reason = "INIT_DEV_PARAMS failed";
2074 goto err_out;
2075 }
2076
2077 /* current CHS translation info (id[53-58]) might be
2078 * changed. reread the identify device info.
2079 */
Tejun Heobff04642006-11-10 18:08:10 +09002080 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09002081 goto retry;
2082 }
2083 }
2084
2085 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09002086
Tejun Heo49016ac2006-02-21 02:12:11 +09002087 return 0;
2088
2089 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09002090 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002091 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09002092 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09002093 return rc;
2094}
2095
Tejun Heo3373efd2006-05-15 20:57:53 +09002096static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002097{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002098 struct ata_port *ap = dev->link->ap;
2099 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002100}
2101
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002102static void ata_dev_config_ncq(struct ata_device *dev,
2103 char *desc, size_t desc_sz)
2104{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002105 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002106 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
2107
2108 if (!ata_id_has_ncq(dev->id)) {
2109 desc[0] = '\0';
2110 return;
2111 }
Tejun Heo75683fe2007-07-05 13:31:27 +09002112 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07002113 snprintf(desc, desc_sz, "NCQ (not used)");
2114 return;
2115 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002116 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04002117 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002118 dev->flags |= ATA_DFLAG_NCQ;
2119 }
2120
2121 if (hdepth >= ddepth)
2122 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
2123 else
2124 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
2125}
2126
Tejun Heo49016ac2006-02-21 02:12:11 +09002127/**
Tejun Heoffeae412006-03-01 16:09:35 +09002128 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09002129 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 *
Tejun Heoffeae412006-03-01 16:09:35 +09002131 * Configure @dev according to @dev->id. Generic and low-level
2132 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 *
2134 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09002135 * Kernel thread context (may sleep)
2136 *
2137 * RETURNS:
2138 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09002140int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002142 struct ata_port *ap = dev->link->ap;
2143 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09002144 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002145 const u16 *id = dev->id;
Tejun Heo7dc951a2007-11-27 19:43:42 +09002146 unsigned long xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01002147 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002148 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2149 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05002150 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002152 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09002153 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002154 __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 }
2157
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002158 if (ata_msg_probe(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002159 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Tejun Heo75683fe2007-07-05 13:31:27 +09002161 /* set horkage */
2162 dev->horkage |= ata_dev_blacklisted(dev);
Tejun Heo33267322008-02-13 09:15:09 +09002163 ata_force_horkage(dev);
Tejun Heo75683fe2007-07-05 13:31:27 +09002164
Tejun Heo67465442007-05-15 03:28:16 +09002165 /* let ACPI work its magic */
2166 rc = ata_acpi_on_devcfg(dev);
2167 if (rc)
2168 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08002169
Tejun Heo05027ad2007-09-03 12:32:57 +09002170 /* massage HPA, do it early as it might change IDENTIFY data */
2171 rc = ata_hpa_resize(dev);
2172 if (rc)
2173 return rc;
2174
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002175 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002176 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002177 ata_dev_printk(dev, KERN_DEBUG,
2178 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2179 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002180 __func__,
Tejun Heof15a1da2006-05-15 20:57:56 +09002181 id[49], id[82], id[83], id[84],
2182 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002183
Tejun Heo208a9932006-03-05 17:55:58 +09002184 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09002185 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09002186 dev->max_sectors = 0;
2187 dev->cdb_len = 0;
2188 dev->n_sectors = 0;
2189 dev->cylinders = 0;
2190 dev->heads = 0;
2191 dev->sectors = 0;
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 /*
2194 * common ATA, ATAPI feature tests
2195 */
2196
Tejun Heoff8854b2006-03-06 04:31:56 +09002197 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002198 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002200 if (ata_msg_probe(ap))
2201 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Albert Leeef143d52007-06-05 13:01:33 +08002203 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2204 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2205 sizeof(fwrevbuf));
2206
2207 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2208 sizeof(modelbuf));
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 /* ATA-specific feature tests */
2211 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01002212 if (ata_id_is_cfa(id)) {
2213 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09002214 ata_dev_printk(dev, KERN_WARNING,
2215 "supports DRM functions and may "
2216 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01002217 snprintf(revbuf, 7, "CFA");
Alan Coxae8d4ee2007-11-04 22:05:49 -05002218 } else {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002219 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
Alan Coxae8d4ee2007-11-04 22:05:49 -05002220 /* Warn the user if the device has TPM extensions */
2221 if (ata_id_has_tpm(id))
2222 ata_dev_printk(dev, KERN_WARNING,
2223 "supports DRM functions and may "
2224 "not be fully accessable.\n");
2225 }
Alan Coxb352e572006-08-10 18:52:12 +01002226
Tejun Heo1148c3a2006-03-13 19:48:04 +09002227 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09002228
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002229 if (dev->id[59] & 0x100)
2230 dev->multi_count = dev->id[59] & 0xff;
2231
Tejun Heo1148c3a2006-03-13 19:48:04 +09002232 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09002233 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002234 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002235
Tejun Heo4c2d7212006-03-05 17:55:58 +09002236 lba_desc = "LBA";
2237 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002238 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002239 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002240 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09002241
2242 if (dev->n_sectors >= (1UL << 28) &&
2243 ata_id_has_flush_ext(id))
2244 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002245 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002246
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002247 /* config NCQ */
2248 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2249
Albert Lee8bf62ece2005-05-12 15:29:42 -04002250 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002251 if (ata_msg_drv(ap) && print_info) {
2252 ata_dev_printk(dev, KERN_INFO,
2253 "%s: %s, %s, max %s\n",
2254 revbuf, modelbuf, fwrevbuf,
2255 ata_mode_string(xfer_mask));
2256 ata_dev_printk(dev, KERN_INFO,
2257 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002258 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002259 dev->multi_count, lba_desc, ncq_desc);
2260 }
Tejun Heoffeae412006-03-01 16:09:35 +09002261 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002262 /* CHS */
2263
2264 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002265 dev->cylinders = id[1];
2266 dev->heads = id[3];
2267 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002268
Tejun Heo1148c3a2006-03-13 19:48:04 +09002269 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002270 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002271 dev->cylinders = id[54];
2272 dev->heads = id[55];
2273 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002274 }
2275
2276 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002277 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002278 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002279 "%s: %s, %s, max %s\n",
2280 revbuf, modelbuf, fwrevbuf,
2281 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002282 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002283 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2284 (unsigned long long)dev->n_sectors,
2285 dev->multi_count, dev->cylinders,
2286 dev->heads, dev->sectors);
2287 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002288 }
2289
Tejun Heo6e7846e2006-02-12 23:32:58 +09002290 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 }
2292
2293 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002294 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002295 const char *cdb_intr_string = "";
2296 const char *atapi_an_string = "";
Tejun Heo91163002008-02-21 13:25:50 +09002297 const char *dma_dir_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002298 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002299
Tejun Heo1148c3a2006-03-13 19:48:04 +09002300 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002302 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002303 ata_dev_printk(dev, KERN_WARNING,
2304 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002305 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 goto err_out_nosup;
2307 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002308 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Tejun Heo7d77b242007-09-23 13:14:13 +09002310 /* Enable ATAPI AN if both the host and device have
2311 * the support. If PMP is attached, SNTF is required
2312 * to enable ATAPI AN to discern between PHY status
2313 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002314 */
Tejun Heo7d77b242007-09-23 13:14:13 +09002315 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
2316 (!ap->nr_pmp_links ||
2317 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002318 unsigned int err_mask;
2319
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002320 /* issue SET feature command to turn this on */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002321 err_mask = ata_dev_set_feature(dev,
2322 SETFEATURES_SATA_ENABLE, SATA_AN);
Tejun Heo854c73a2007-09-23 13:14:11 +09002323 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002324 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002325 "failed to enable ATAPI AN "
2326 "(err_mask=0x%x)\n", err_mask);
2327 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002328 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002329 atapi_an_string = ", ATAPI AN";
2330 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002331 }
2332
Albert Lee08a556d2006-03-31 13:29:04 +08002333 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002334 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002335 cdb_intr_string = ", CDB intr";
2336 }
Albert Lee312f7da2005-09-27 17:38:03 +08002337
Tejun Heo91163002008-02-21 13:25:50 +09002338 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2339 dev->flags |= ATA_DFLAG_DMADIR;
2340 dma_dir_string = ", DMADIR";
2341 }
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002344 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002345 ata_dev_printk(dev, KERN_INFO,
Tejun Heo91163002008-02-21 13:25:50 +09002346 "ATAPI: %s, %s, max %s%s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002347 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002348 ata_mode_string(xfer_mask),
Tejun Heo91163002008-02-21 13:25:50 +09002349 cdb_intr_string, atapi_an_string,
2350 dma_dir_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 }
2352
Tejun Heo914ed352006-11-01 18:39:55 +09002353 /* determine max_sectors */
2354 dev->max_sectors = ATA_MAX_SECTORS;
2355 if (dev->flags & ATA_DFLAG_LBA48)
2356 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2357
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002358 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2359 if (ata_id_has_hipm(dev->id))
2360 dev->flags |= ATA_DFLAG_HIPM;
2361 if (ata_id_has_dipm(dev->id))
2362 dev->flags |= ATA_DFLAG_DIPM;
2363 }
2364
Alan Coxc5038fc2007-10-25 14:21:16 +01002365 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2366 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002367 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002368 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002369 ata_dev_printk(dev, KERN_INFO,
2370 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002371 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002372 dev->max_sectors = ATA_MAX_SECTORS;
2373 }
2374
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002375 if ((dev->class == ATA_DEV_ATAPI) &&
Albert Leef442cd82007-11-15 10:35:47 +09002376 (atapi_command_packet_set(id) == TYPE_TAPE)) {
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002377 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
Albert Leef442cd82007-11-15 10:35:47 +09002378 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2379 }
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002380
Tejun Heo75683fe2007-07-05 13:31:27 +09002381 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002382 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2383 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002384
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002385 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2386 dev->horkage |= ATA_HORKAGE_IPM;
2387
2388 /* reset link pm_policy for this port to no pm */
2389 ap->pm_policy = MAX_PERFORMANCE;
2390 }
2391
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002392 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002393 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002394
Alan Coxc5038fc2007-10-25 14:21:16 +01002395 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2396 /* Let the user know. We don't want to disallow opens for
2397 rescue purposes, or in case the vendor is just a blithering
2398 idiot. Do this after the dev_config call as some controllers
2399 with buggy firmware may want to avoid reporting false device
2400 bugs */
2401
2402 if (print_info) {
2403 ata_dev_printk(dev, KERN_WARNING,
2404"Drive reports diagnostics failure. This may indicate a drive\n");
2405 ata_dev_printk(dev, KERN_WARNING,
2406"fault or invalid emulation. Contact drive vendor for information.\n");
2407 }
2408 }
2409
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002410 if (ata_msg_probe(ap))
2411 ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002412 __func__, ata_chk_status(ap));
Tejun Heoffeae412006-03-01 16:09:35 +09002413 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002416 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002417 ata_dev_printk(dev, KERN_DEBUG,
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002418 "%s: EXIT, err\n", __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002419 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420}
2421
2422/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002423 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002424 * @ap: port
2425 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002426 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002427 * detection.
2428 */
2429
2430int ata_cable_40wire(struct ata_port *ap)
2431{
2432 return ATA_CBL_PATA40;
2433}
2434
2435/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002436 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002437 * @ap: port
2438 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002439 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002440 * detection.
2441 */
2442
2443int ata_cable_80wire(struct ata_port *ap)
2444{
2445 return ATA_CBL_PATA80;
2446}
2447
2448/**
2449 * ata_cable_unknown - return unknown PATA cable.
2450 * @ap: port
2451 *
2452 * Helper method for drivers which have no PATA cable detection.
2453 */
2454
2455int ata_cable_unknown(struct ata_port *ap)
2456{
2457 return ATA_CBL_PATA_UNK;
2458}
2459
2460/**
Tejun Heoc88f90c2007-11-27 19:43:48 +09002461 * ata_cable_ignore - return ignored PATA cable.
2462 * @ap: port
2463 *
2464 * Helper method for drivers which don't use cable type to limit
2465 * transfer mode.
2466 */
2467int ata_cable_ignore(struct ata_port *ap)
2468{
2469 return ATA_CBL_PATA_IGN;
2470}
2471
2472/**
Alan Coxbe0d18d2007-03-06 02:37:56 -08002473 * ata_cable_sata - return SATA cable type
2474 * @ap: port
2475 *
2476 * Helper method for drivers which have SATA cables
2477 */
2478
2479int ata_cable_sata(struct ata_port *ap)
2480{
2481 return ATA_CBL_SATA;
2482}
2483
2484/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 * ata_bus_probe - Reset and probe ATA bus
2486 * @ap: Bus to probe
2487 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002488 * Master ATA bus probing function. Initiates a hardware-dependent
2489 * bus reset, then attempts to identify any devices found on
2490 * the bus.
2491 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002493 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 *
2495 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002496 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 */
2498
Brian King80289162006-08-07 14:27:31 -05002499int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002501 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002502 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002503 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002504 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
Tejun Heo28ca5c52006-03-01 16:09:36 +09002506 ata_port_probe(ap);
2507
Tejun Heof58229f2007-08-06 18:36:23 +09002508 ata_link_for_each_dev(dev, &ap->link)
2509 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002510
2511 retry:
Tejun Heocdeab112007-10-29 16:41:09 +09002512 ata_link_for_each_dev(dev, &ap->link) {
2513 /* If we issue an SRST then an ATA drive (not ATAPI)
2514 * may change configuration and be in PIO0 timing. If
2515 * we do a hard reset (or are coming from power on)
2516 * this is true for ATA or ATAPI. Until we've set a
2517 * suitable controller mode we should not touch the
2518 * bus as we may be talking too fast.
2519 */
2520 dev->pio_mode = XFER_PIO_0;
2521
2522 /* If the controller has a pio mode setup function
2523 * then use it to set the chipset to rights. Don't
2524 * touch the DMA setup as that will be dealt with when
2525 * configuring devices.
2526 */
2527 if (ap->ops->set_piomode)
2528 ap->ops->set_piomode(ap, dev);
2529 }
2530
Tejun Heo20444702006-03-13 01:57:01 +09002531 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002532 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002533
Tejun Heof58229f2007-08-06 18:36:23 +09002534 ata_link_for_each_dev(dev, &ap->link) {
Tejun Heo52783c52006-05-31 18:28:22 +09002535 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2536 dev->class != ATA_DEV_UNKNOWN)
2537 classes[dev->devno] = dev->class;
2538 else
2539 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002540
Tejun Heo52783c52006-05-31 18:28:22 +09002541 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Tejun Heo52783c52006-05-31 18:28:22 +09002544 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002545
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002546 /* read IDENTIFY page and configure devices. We have to do the identify
2547 specific sequence bass-ackwards so that PDIAG- is released by
2548 the slave device */
2549
Bartlomiej Zolnierkiewicza4ba7fe2008-04-02 10:35:15 +09002550 ata_link_for_each_dev_reverse(dev, &ap->link) {
Tejun Heof58229f2007-08-06 18:36:23 +09002551 if (tries[dev->devno])
2552 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002553
Tejun Heoe1211e32006-04-01 01:38:18 +09002554 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002555 continue;
2556
Tejun Heobff04642006-11-10 18:08:10 +09002557 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2558 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002559 if (rc)
2560 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002561 }
2562
Alan Coxbe0d18d2007-03-06 02:37:56 -08002563 /* Now ask for the cable type as PDIAG- should have been released */
2564 if (ap->ops->cable_detect)
2565 ap->cbl = ap->ops->cable_detect(ap);
2566
Alan Cox614fe292007-08-22 23:22:45 +01002567 /* We may have SATA bridge glue hiding here irrespective of the
2568 reported cable types and sensed types */
2569 ata_link_for_each_dev(dev, &ap->link) {
2570 if (!ata_dev_enabled(dev))
2571 continue;
2572 /* SATA drives indicate we have a bridge. We don't know which
2573 end of the link the bridge is which is a problem */
2574 if (ata_id_is_sata(dev->id))
2575 ap->cbl = ATA_CBL_SATA;
2576 }
2577
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002578 /* After the identify sequence we can now set up the devices. We do
2579 this in the normal order so that the user doesn't get confused */
2580
Tejun Heof58229f2007-08-06 18:36:23 +09002581 ata_link_for_each_dev(dev, &ap->link) {
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002582 if (!ata_dev_enabled(dev))
2583 continue;
Tejun Heoffeae412006-03-01 16:09:35 +09002584
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002585 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002586 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002587 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002588 if (rc)
2589 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 }
2591
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002592 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002593 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002594 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002595 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
Tejun Heof58229f2007-08-06 18:36:23 +09002597 ata_link_for_each_dev(dev, &ap->link)
2598 if (ata_dev_enabled(dev))
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002599 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002600
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002601 /* no device present, disable port */
2602 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002603 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002604
2605 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002606 tries[dev->devno]--;
2607
Tejun Heo14d2bac2006-04-02 17:54:46 +09002608 switch (rc) {
2609 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002610 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002611 tries[dev->devno] = 0;
2612 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002613
2614 case -ENODEV:
2615 /* give it just one more chance */
2616 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002617 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002618 if (tries[dev->devno] == 1) {
2619 /* This is the last chance, better to slow
2620 * down than lose it.
2621 */
Tejun Heo936fd732007-08-06 18:36:23 +09002622 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002623 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2624 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002625 }
2626
Tejun Heo4ae72a12007-02-02 16:22:30 +09002627 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002628 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002629
Tejun Heo14d2bac2006-04-02 17:54:46 +09002630 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631}
2632
2633/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002634 * ata_port_probe - Mark port as enabled
2635 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002637 * Modify @ap data structure such that the system
2638 * thinks that the entire port is enabled.
2639 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002640 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002641 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 */
2643
2644void ata_port_probe(struct ata_port *ap)
2645{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002646 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
2649/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002650 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002651 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002652 *
2653 * This function prints link speed and status of a SATA link.
2654 *
2655 * LOCKING:
2656 * None.
2657 */
Tejun Heo936fd732007-08-06 18:36:23 +09002658void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002659{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002660 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002661
Tejun Heo936fd732007-08-06 18:36:23 +09002662 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002663 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002664 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002665
Tejun Heo936fd732007-08-06 18:36:23 +09002666 if (ata_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002667 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002668 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002669 "SATA link up %s (SStatus %X SControl %X)\n",
2670 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002671 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002672 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002673 "SATA link down (SStatus %X SControl %X)\n",
2674 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002675 }
2676}
2677
2678/**
Alan Coxebdfca62006-03-23 15:38:34 +00002679 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002680 * @adev: device
2681 *
2682 * Obtain the other device on the same cable, or if none is
2683 * present NULL is returned
2684 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002685
Tejun Heo3373efd2006-05-15 20:57:53 +09002686struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002687{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002688 struct ata_link *link = adev->link;
2689 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002690 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002691 return NULL;
2692 return pair;
2693}
2694
2695/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002696 * ata_port_disable - Disable port.
2697 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002699 * Modify @ap data structure such that the system
2700 * thinks that the entire port is disabled, and should
2701 * never attempt to probe or communicate with devices
2702 * on this port.
2703 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002704 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002705 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 */
2707
2708void ata_port_disable(struct ata_port *ap)
2709{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002710 ap->link.device[0].class = ATA_DEV_NONE;
2711 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002712 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713}
2714
Tejun Heo1c3fae42006-04-02 20:53:28 +09002715/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002716 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002717 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002718 *
Tejun Heo936fd732007-08-06 18:36:23 +09002719 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002720 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002721 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002722 *
2723 * LOCKING:
2724 * Inherited from caller.
2725 *
2726 * RETURNS:
2727 * 0 on success, negative errno on failure
2728 */
Tejun Heo936fd732007-08-06 18:36:23 +09002729int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002730{
Tejun Heo81952c52006-05-15 20:57:47 +09002731 u32 sstatus, spd, mask;
2732 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002733
Tejun Heo936fd732007-08-06 18:36:23 +09002734 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002735 return -EOPNOTSUPP;
2736
2737 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002738 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002739 */
Tejun Heo936fd732007-08-06 18:36:23 +09002740 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002741 if (rc == 0)
2742 spd = (sstatus >> 4) & 0xf;
2743 else
Tejun Heo936fd732007-08-06 18:36:23 +09002744 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002745
Tejun Heo936fd732007-08-06 18:36:23 +09002746 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002747 if (mask <= 1)
2748 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002749
2750 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002751 highbit = fls(mask) - 1;
2752 mask &= ~(1 << highbit);
2753
Tejun Heo008a7892007-07-16 14:29:40 +09002754 /* Mask off all speeds higher than or equal to the current
2755 * one. Force 1.5Gbps if current SPD is not available.
2756 */
2757 if (spd > 1)
2758 mask &= (1 << (spd - 1)) - 1;
2759 else
2760 mask &= 1;
2761
2762 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002763 if (!mask)
2764 return -EINVAL;
2765
Tejun Heo936fd732007-08-06 18:36:23 +09002766 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002767
Tejun Heo936fd732007-08-06 18:36:23 +09002768 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002769 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002770
2771 return 0;
2772}
2773
Tejun Heo936fd732007-08-06 18:36:23 +09002774static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002775{
Tejun Heo52702222007-10-31 10:17:07 +09002776 struct ata_link *host_link = &link->ap->link;
2777 u32 limit, target, spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002778
Tejun Heo52702222007-10-31 10:17:07 +09002779 limit = link->sata_spd_limit;
2780
2781 /* Don't configure downstream link faster than upstream link.
2782 * It doesn't speed up anything and some PMPs choke on such
2783 * configuration.
2784 */
2785 if (!ata_is_host_link(link) && host_link->sata_spd)
2786 limit &= (1 << host_link->sata_spd) - 1;
2787
2788 if (limit == UINT_MAX)
2789 target = 0;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002790 else
Tejun Heo52702222007-10-31 10:17:07 +09002791 target = fls(limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002792
2793 spd = (*scontrol >> 4) & 0xf;
Tejun Heo52702222007-10-31 10:17:07 +09002794 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002795
Tejun Heo52702222007-10-31 10:17:07 +09002796 return spd != target;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002797}
2798
2799/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002800 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002801 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002802 *
2803 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002804 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002805 * whether hardreset is necessary to apply SATA spd
2806 * configuration.
2807 *
2808 * LOCKING:
2809 * Inherited from caller.
2810 *
2811 * RETURNS:
2812 * 1 if SATA spd configuration is needed, 0 otherwise.
2813 */
Tejun Heo936fd732007-08-06 18:36:23 +09002814int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002815{
2816 u32 scontrol;
2817
Tejun Heo936fd732007-08-06 18:36:23 +09002818 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heodb64bcf2007-10-31 10:17:06 +09002819 return 1;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002820
Tejun Heo936fd732007-08-06 18:36:23 +09002821 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002822}
2823
2824/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002825 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002826 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002827 *
Tejun Heo936fd732007-08-06 18:36:23 +09002828 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002829 *
2830 * LOCKING:
2831 * Inherited from caller.
2832 *
2833 * RETURNS:
2834 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002835 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002836 */
Tejun Heo936fd732007-08-06 18:36:23 +09002837int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002838{
2839 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09002840 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002841
Tejun Heo936fd732007-08-06 18:36:23 +09002842 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002843 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002844
Tejun Heo936fd732007-08-06 18:36:23 +09002845 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09002846 return 0;
2847
Tejun Heo936fd732007-08-06 18:36:23 +09002848 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09002849 return rc;
2850
Tejun Heo1c3fae42006-04-02 20:53:28 +09002851 return 1;
2852}
2853
Alan Cox452503f2005-10-21 19:01:32 -04002854/*
2855 * This mode timing computation functionality is ported over from
2856 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
2857 */
2858/*
Alan Coxb352e572006-08-10 18:52:12 +01002859 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04002860 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01002861 * for UDMA6, which is currently supported only by Maxtor drives.
2862 *
2863 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04002864 */
2865
2866static const struct ata_timing ata_timing[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +09002867/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
2868 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
2869 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
2870 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
2871 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
2872 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
2873 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
2874 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002875
Tejun Heo70cd0712007-11-27 19:43:40 +09002876 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
2877 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
2878 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002879
Tejun Heo70cd0712007-11-27 19:43:40 +09002880 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
2881 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
2882 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
Alan Coxb352e572006-08-10 18:52:12 +01002883 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Tejun Heo70cd0712007-11-27 19:43:40 +09002884 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04002885
2886/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Tejun Heo70cd0712007-11-27 19:43:40 +09002887 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
2888 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
2889 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
2890 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
2891 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
2892 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
2893 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
Alan Cox452503f2005-10-21 19:01:32 -04002894
2895 { 0xFF }
2896};
2897
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002898#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
2899#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
Alan Cox452503f2005-10-21 19:01:32 -04002900
2901static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
2902{
2903 q->setup = EZ(t->setup * 1000, T);
2904 q->act8b = EZ(t->act8b * 1000, T);
2905 q->rec8b = EZ(t->rec8b * 1000, T);
2906 q->cyc8b = EZ(t->cyc8b * 1000, T);
2907 q->active = EZ(t->active * 1000, T);
2908 q->recover = EZ(t->recover * 1000, T);
2909 q->cycle = EZ(t->cycle * 1000, T);
2910 q->udma = EZ(t->udma * 1000, UT);
2911}
2912
2913void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
2914 struct ata_timing *m, unsigned int what)
2915{
2916 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
2917 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
2918 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
2919 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
2920 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
2921 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
2922 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
2923 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
2924}
2925
Tejun Heo63573572007-11-27 19:43:39 +09002926const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
Alan Cox452503f2005-10-21 19:01:32 -04002927{
Tejun Heo70cd0712007-11-27 19:43:40 +09002928 const struct ata_timing *t = ata_timing;
Alan Cox452503f2005-10-21 19:01:32 -04002929
Tejun Heo70cd0712007-11-27 19:43:40 +09002930 while (xfer_mode > t->mode)
2931 t++;
2932
2933 if (xfer_mode == t->mode)
2934 return t;
2935 return NULL;
Alan Cox452503f2005-10-21 19:01:32 -04002936}
2937
2938int ata_timing_compute(struct ata_device *adev, unsigned short speed,
2939 struct ata_timing *t, int T, int UT)
2940{
2941 const struct ata_timing *s;
2942 struct ata_timing p;
2943
2944 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002945 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08002946 */
Alan Cox452503f2005-10-21 19:01:32 -04002947
2948 if (!(s = ata_timing_find_mode(speed)))
2949 return -EINVAL;
2950
Albert Lee75b1f2f2005-11-16 17:06:18 +08002951 memcpy(t, s, sizeof(*s));
2952
Alan Cox452503f2005-10-21 19:01:32 -04002953 /*
2954 * If the drive is an EIDE drive, it can tell us it needs extended
2955 * PIO/MW_DMA cycle timing.
2956 */
2957
2958 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
2959 memset(&p, 0, sizeof(p));
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002960 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
Alan Cox452503f2005-10-21 19:01:32 -04002961 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
2962 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002963 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
Alan Cox452503f2005-10-21 19:01:32 -04002964 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
2965 }
2966 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
2967 }
2968
2969 /*
2970 * Convert the timing to bus clock counts.
2971 */
2972
Albert Lee75b1f2f2005-11-16 17:06:18 +08002973 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04002974
2975 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002976 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
2977 * S.M.A.R.T * and some other commands. We have to ensure that the
2978 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04002979 */
2980
Alanfd3367af2006-12-07 12:41:18 +00002981 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04002982 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
2983 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
2984 }
2985
2986 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05002987 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04002988 */
2989
2990 if (t->act8b + t->rec8b < t->cyc8b) {
2991 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
2992 t->rec8b = t->cyc8b - t->act8b;
2993 }
2994
2995 if (t->active + t->recover < t->cycle) {
2996 t->active += (t->cycle - (t->active + t->recover)) / 2;
2997 t->recover = t->cycle - t->active;
2998 }
Jeff Garzika617c092007-05-21 20:14:23 -04002999
Alan Cox4f701d12007-04-23 11:55:36 +01003000 /* In a few cases quantisation may produce enough errors to
3001 leave t->cycle too low for the sum of active and recovery
3002 if so we must correct this */
3003 if (t->active + t->recover > t->cycle)
3004 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04003005
3006 return 0;
3007}
3008
Tejun Heocf176e12006-04-02 17:54:46 +09003009/**
Tejun Heoa0f79b92007-12-18 16:33:05 +09003010 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
3011 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
3012 * @cycle: cycle duration in ns
3013 *
3014 * Return matching xfer mode for @cycle. The returned mode is of
3015 * the transfer type specified by @xfer_shift. If @cycle is too
3016 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
3017 * than the fastest known mode, the fasted mode is returned.
3018 *
3019 * LOCKING:
3020 * None.
3021 *
3022 * RETURNS:
3023 * Matching xfer_mode, 0xff if no match found.
3024 */
3025u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
3026{
3027 u8 base_mode = 0xff, last_mode = 0xff;
3028 const struct ata_xfer_ent *ent;
3029 const struct ata_timing *t;
3030
3031 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
3032 if (ent->shift == xfer_shift)
3033 base_mode = ent->base;
3034
3035 for (t = ata_timing_find_mode(base_mode);
3036 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
3037 unsigned short this_cycle;
3038
3039 switch (xfer_shift) {
3040 case ATA_SHIFT_PIO:
3041 case ATA_SHIFT_MWDMA:
3042 this_cycle = t->cycle;
3043 break;
3044 case ATA_SHIFT_UDMA:
3045 this_cycle = t->udma;
3046 break;
3047 default:
3048 return 0xff;
3049 }
3050
3051 if (cycle > this_cycle)
3052 break;
3053
3054 last_mode = t->mode;
3055 }
3056
3057 return last_mode;
3058}
3059
3060/**
Tejun Heocf176e12006-04-02 17:54:46 +09003061 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09003062 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09003063 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09003064 *
3065 * Adjust xfer masks of @dev downward. Note that this function
3066 * does not apply the change. Invoking ata_set_mode() afterwards
3067 * will apply the limit.
3068 *
3069 * LOCKING:
3070 * Inherited from caller.
3071 *
3072 * RETURNS:
3073 * 0 on success, negative errno on failure
3074 */
Tejun Heo458337d2007-02-02 16:22:30 +09003075int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09003076{
Tejun Heo458337d2007-02-02 16:22:30 +09003077 char buf[32];
Tejun Heo7dc951a2007-11-27 19:43:42 +09003078 unsigned long orig_mask, xfer_mask;
3079 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heo458337d2007-02-02 16:22:30 +09003080 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09003081
Tejun Heo458337d2007-02-02 16:22:30 +09003082 quiet = !!(sel & ATA_DNXFER_QUIET);
3083 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09003084
Tejun Heo458337d2007-02-02 16:22:30 +09003085 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3086 dev->mwdma_mask,
3087 dev->udma_mask);
3088 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09003089
Tejun Heo458337d2007-02-02 16:22:30 +09003090 switch (sel) {
3091 case ATA_DNXFER_PIO:
3092 highbit = fls(pio_mask) - 1;
3093 pio_mask &= ~(1 << highbit);
3094 break;
3095
3096 case ATA_DNXFER_DMA:
3097 if (udma_mask) {
3098 highbit = fls(udma_mask) - 1;
3099 udma_mask &= ~(1 << highbit);
3100 if (!udma_mask)
3101 return -ENOENT;
3102 } else if (mwdma_mask) {
3103 highbit = fls(mwdma_mask) - 1;
3104 mwdma_mask &= ~(1 << highbit);
3105 if (!mwdma_mask)
3106 return -ENOENT;
3107 }
3108 break;
3109
3110 case ATA_DNXFER_40C:
3111 udma_mask &= ATA_UDMA_MASK_40C;
3112 break;
3113
3114 case ATA_DNXFER_FORCE_PIO0:
3115 pio_mask &= 1;
3116 case ATA_DNXFER_FORCE_PIO:
3117 mwdma_mask = 0;
3118 udma_mask = 0;
3119 break;
3120
Tejun Heo458337d2007-02-02 16:22:30 +09003121 default:
3122 BUG();
3123 }
3124
3125 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3126
3127 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3128 return -ENOENT;
3129
3130 if (!quiet) {
3131 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3132 snprintf(buf, sizeof(buf), "%s:%s",
3133 ata_mode_string(xfer_mask),
3134 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3135 else
3136 snprintf(buf, sizeof(buf), "%s",
3137 ata_mode_string(xfer_mask));
3138
3139 ata_dev_printk(dev, KERN_WARNING,
3140 "limiting speed to %s\n", buf);
3141 }
Tejun Heocf176e12006-04-02 17:54:46 +09003142
3143 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3144 &dev->udma_mask);
3145
Tejun Heocf176e12006-04-02 17:54:46 +09003146 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09003147}
3148
Tejun Heo3373efd2006-05-15 20:57:53 +09003149static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003151 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo4055dee2008-02-07 10:34:08 +09003152 const char *dev_err_whine = "";
3153 int ign_dev_err = 0;
Tejun Heo83206a22006-03-24 15:25:31 +09003154 unsigned int err_mask;
3155 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Tejun Heoe8384602006-04-02 18:51:53 +09003157 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 if (dev->xfer_shift == ATA_SHIFT_PIO)
3159 dev->flags |= ATA_DFLAG_PIO;
3160
Tejun Heo3373efd2006-05-15 20:57:53 +09003161 err_mask = ata_dev_set_xfermode(dev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003162
Tejun Heo4055dee2008-02-07 10:34:08 +09003163 if (err_mask & ~AC_ERR_DEV)
3164 goto fail;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003165
Tejun Heo4055dee2008-02-07 10:34:08 +09003166 /* revalidate */
Tejun Heobaa1e782006-11-01 18:39:27 +09003167 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09003168 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09003169 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09003170 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09003171 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09003172
Tejun Heo4055dee2008-02-07 10:34:08 +09003173 /* Old CFA may refuse this command, which is just fine */
3174 if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id))
3175 ign_dev_err = 1;
3176
3177 /* Some very old devices and some bad newer ones fail any kind of
3178 SET_XFERMODE request but support PIO0-2 timings and no IORDY */
3179 if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) &&
3180 dev->pio_mode <= XFER_PIO_2)
3181 ign_dev_err = 1;
3182
3183 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3184 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3185 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3186 dev->dma_mode == XFER_MW_DMA_0 &&
3187 (dev->id[63] >> 8) & 1)
3188 ign_dev_err = 1;
3189
3190 /* if the device is actually configured correctly, ignore dev err */
3191 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3192 ign_dev_err = 1;
3193
3194 if (err_mask & AC_ERR_DEV) {
3195 if (!ign_dev_err)
3196 goto fail;
3197 else
3198 dev_err_whine = " (device error ignored)";
3199 }
3200
Tejun Heo23e71c32006-03-06 04:31:57 +09003201 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3202 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Tejun Heo4055dee2008-02-07 10:34:08 +09003204 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3205 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3206 dev_err_whine);
3207
Tejun Heo83206a22006-03-24 15:25:31 +09003208 return 0;
Tejun Heo4055dee2008-02-07 10:34:08 +09003209
3210 fail:
3211 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3212 "(err_mask=0x%x)\n", err_mask);
3213 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214}
3215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216/**
Alan04351822007-03-06 02:37:52 -08003217 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09003218 * @link: link on which timings will be programmed
Joe Perches1967b7f2008-02-03 17:08:11 +02003219 * @r_failed_dev: out parameter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 *
Alan04351822007-03-06 02:37:52 -08003221 * Standard implementation of the function used to tune and set
3222 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3223 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003224 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04003225 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003227 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003228 *
3229 * RETURNS:
3230 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 */
Alan04351822007-03-06 02:37:52 -08003232
Tejun Heo02607312007-08-06 18:36:23 +09003233int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234{
Tejun Heo02607312007-08-06 18:36:23 +09003235 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09003236 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09003237 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09003238
Tejun Heoa6d5a512006-03-06 04:31:57 +09003239 /* step 1: calculate xfer_mask */
Tejun Heof58229f2007-08-06 18:36:23 +09003240 ata_link_for_each_dev(dev, link) {
Tejun Heo7dc951a2007-11-27 19:43:42 +09003241 unsigned long pio_mask, dma_mask;
Alan Coxb3a70602007-10-02 12:38:26 -04003242 unsigned int mode_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003243
Tejun Heoe1211e32006-04-01 01:38:18 +09003244 if (!ata_dev_enabled(dev))
Tejun Heoa6d5a512006-03-06 04:31:57 +09003245 continue;
3246
Alan Coxb3a70602007-10-02 12:38:26 -04003247 mode_mask = ATA_DMA_MASK_ATA;
3248 if (dev->class == ATA_DEV_ATAPI)
3249 mode_mask = ATA_DMA_MASK_ATAPI;
3250 else if (ata_id_is_cfa(dev->id))
3251 mode_mask = ATA_DMA_MASK_CFA;
3252
Tejun Heo3373efd2006-05-15 20:57:53 +09003253 ata_dev_xfermask(dev);
Tejun Heo33267322008-02-13 09:15:09 +09003254 ata_force_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003255
Tejun Heoacf356b2006-03-24 14:07:50 +09003256 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3257 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
Alan Coxb3a70602007-10-02 12:38:26 -04003258
3259 if (libata_dma_mask & mode_mask)
3260 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3261 else
3262 dma_mask = 0;
3263
Tejun Heoacf356b2006-03-24 14:07:50 +09003264 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3265 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003266
Tejun Heo4f659772006-04-01 01:38:18 +09003267 found = 1;
Tejun Heo70cd0712007-11-27 19:43:40 +09003268 if (dev->dma_mode != 0xff)
Alan Cox5444a6f2006-03-27 18:58:20 +01003269 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003270 }
Tejun Heo4f659772006-04-01 01:38:18 +09003271 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003272 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003273
3274 /* step 2: always set host PIO timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003275 ata_link_for_each_dev(dev, link) {
Tejun Heoe8e06192006-04-01 01:38:18 +09003276 if (!ata_dev_enabled(dev))
3277 continue;
3278
Tejun Heo70cd0712007-11-27 19:43:40 +09003279 if (dev->pio_mode == 0xff) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003280 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09003281 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003282 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09003283 }
3284
3285 dev->xfer_mode = dev->pio_mode;
3286 dev->xfer_shift = ATA_SHIFT_PIO;
3287 if (ap->ops->set_piomode)
3288 ap->ops->set_piomode(ap, dev);
3289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
Tejun Heoa6d5a512006-03-06 04:31:57 +09003291 /* step 3: set host DMA timings */
Tejun Heof58229f2007-08-06 18:36:23 +09003292 ata_link_for_each_dev(dev, link) {
Tejun Heo70cd0712007-11-27 19:43:40 +09003293 if (!ata_dev_enabled(dev) || dev->dma_mode == 0xff)
Tejun Heoe8e06192006-04-01 01:38:18 +09003294 continue;
3295
3296 dev->xfer_mode = dev->dma_mode;
3297 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3298 if (ap->ops->set_dmamode)
3299 ap->ops->set_dmamode(ap, dev);
3300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
3302 /* step 4: update devices' xfer mode */
Tejun Heof58229f2007-08-06 18:36:23 +09003303 ata_link_for_each_dev(dev, link) {
Alan18d90de2007-01-24 11:42:38 +00003304 /* don't update suspended devices' xfer mode */
Tejun Heo9666f402007-05-04 21:27:47 +02003305 if (!ata_dev_enabled(dev))
Tejun Heo83206a22006-03-24 15:25:31 +09003306 continue;
3307
Tejun Heo3373efd2006-05-15 20:57:53 +09003308 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09003309 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003310 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09003311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Tejun Heoe8e06192006-04-01 01:38:18 +09003313 /* Record simplex status. If we selected DMA then the other
3314 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01003315 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003316 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00003317 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003318
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003319 out:
3320 if (rc)
3321 *r_failed_dev = dev;
3322 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323}
3324
3325/**
Tejun Heo936fd732007-08-06 18:36:23 +09003326 * sata_link_debounce - debounce SATA phy status
3327 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003328 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003329 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003330 *
Tejun Heo936fd732007-08-06 18:36:23 +09003331* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003332 * holding the same value where DET is not 1 for @duration polled
3333 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003334 * beginning of the stable state. Because DET gets stuck at 1 on
3335 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003336 * until timeout then returns 0 if DET is stable at 1.
3337 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003338 * @timeout is further limited by @deadline. The sooner of the
3339 * two is used.
3340 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003341 * LOCKING:
3342 * Kernel thread context (may sleep)
3343 *
3344 * RETURNS:
3345 * 0 on success, -errno on failure.
3346 */
Tejun Heo936fd732007-08-06 18:36:23 +09003347int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3348 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003349{
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003350 unsigned long interval_msec = params[0];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003351 unsigned long duration = msecs_to_jiffies(params[1]);
3352 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003353 u32 last, cur;
3354 int rc;
3355
Tejun Heod4b2bab2007-02-02 16:50:52 +09003356 t = jiffies + msecs_to_jiffies(params[2]);
3357 if (time_before(t, deadline))
3358 deadline = t;
3359
Tejun Heo936fd732007-08-06 18:36:23 +09003360 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003361 return rc;
3362 cur &= 0xf;
3363
3364 last = cur;
3365 last_jiffies = jiffies;
3366
3367 while (1) {
3368 msleep(interval_msec);
Tejun Heo936fd732007-08-06 18:36:23 +09003369 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003370 return rc;
3371 cur &= 0xf;
3372
3373 /* DET stable? */
3374 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003375 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003376 continue;
3377 if (time_after(jiffies, last_jiffies + duration))
3378 return 0;
3379 continue;
3380 }
3381
3382 /* unstable, start over */
3383 last = cur;
3384 last_jiffies = jiffies;
3385
Tejun Heof1545152007-07-16 14:29:40 +09003386 /* Check deadline. If debouncing failed, return
3387 * -EPIPE to tell upper layer to lower link speed.
3388 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003389 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003390 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003391 }
3392}
3393
3394/**
Tejun Heo936fd732007-08-06 18:36:23 +09003395 * sata_link_resume - resume SATA link
3396 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003397 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003398 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003399 *
Tejun Heo936fd732007-08-06 18:36:23 +09003400 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003401 *
3402 * LOCKING:
3403 * Kernel thread context (may sleep)
3404 *
3405 * RETURNS:
3406 * 0 on success, -errno on failure.
3407 */
Tejun Heo936fd732007-08-06 18:36:23 +09003408int sata_link_resume(struct ata_link *link, const unsigned long *params,
3409 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003410{
3411 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003412 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003413
Tejun Heo936fd732007-08-06 18:36:23 +09003414 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003415 return rc;
3416
Tejun Heo852ee162006-04-01 01:38:18 +09003417 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003418
Tejun Heo936fd732007-08-06 18:36:23 +09003419 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003420 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003421
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003422 /* Some PHYs react badly if SStatus is pounded immediately
3423 * after resuming. Delay 200ms before debouncing.
3424 */
3425 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003426
Tejun Heo936fd732007-08-06 18:36:23 +09003427 return sata_link_debounce(link, params, deadline);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003428}
3429
Tejun Heof5914a42006-05-31 18:27:48 +09003430/**
3431 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003432 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003433 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003434 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003435 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003436 * prereset makes libata abort whole reset sequence and give up
3437 * that port, so prereset should be best-effort. It does its
3438 * best to prepare for reset sequence but if things go wrong, it
3439 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003440 *
3441 * LOCKING:
3442 * Kernel thread context (may sleep)
3443 *
3444 * RETURNS:
3445 * 0 on success, -errno otherwise.
3446 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003447int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003448{
Tejun Heocc0680a2007-08-06 18:36:23 +09003449 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003450 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003451 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003452 int rc;
3453
Tejun Heof5914a42006-05-31 18:27:48 +09003454 /* if we're about to do hardreset, nothing more to do */
3455 if (ehc->i.action & ATA_EH_HARDRESET)
3456 return 0;
3457
Tejun Heo936fd732007-08-06 18:36:23 +09003458 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003459 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003460 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003461 /* whine about phy resume failure but proceed */
3462 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003463 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003464 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003465 }
3466
Tejun Heo8cebf272008-01-24 00:05:14 +09003467 /* wait for !BSY if we don't know that no device is attached */
3468 if (!ata_link_offline(link)) {
Tejun Heob8cffc62007-02-02 16:50:52 +09003469 rc = ata_wait_ready(ap, deadline);
Tejun Heo6dffaf62007-05-23 11:58:52 +02003470 if (rc && rc != -ENODEV) {
Tejun Heocc0680a2007-08-06 18:36:23 +09003471 ata_link_printk(link, KERN_WARNING, "device not ready "
Tejun Heob8cffc62007-02-02 16:50:52 +09003472 "(errno=%d), forcing hardreset\n", rc);
3473 ehc->i.action |= ATA_EH_HARDRESET;
3474 }
3475 }
Tejun Heof5914a42006-05-31 18:27:48 +09003476
3477 return 0;
3478}
3479
Tejun Heoc2bd5802006-01-24 17:05:22 +09003480/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003481 * sata_link_hardreset - reset link via SATA phy reset
3482 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003483 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003484 * @deadline: deadline jiffies for the operation
Tejun Heoc2bd5802006-01-24 17:05:22 +09003485 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003486 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003487 *
3488 * LOCKING:
3489 * Kernel thread context (may sleep)
3490 *
3491 * RETURNS:
3492 * 0 on success, -errno otherwise.
3493 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003494int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heod4b2bab2007-02-02 16:50:52 +09003495 unsigned long deadline)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003496{
Tejun Heo852ee162006-04-01 01:38:18 +09003497 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003498 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003499
Tejun Heoc2bd5802006-01-24 17:05:22 +09003500 DPRINTK("ENTER\n");
3501
Tejun Heo936fd732007-08-06 18:36:23 +09003502 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003503 /* SATA spec says nothing about how to reconfigure
3504 * spd. To be on the safe side, turn off phy during
3505 * reconfiguration. This works for at least ICH7 AHCI
3506 * and Sil3124.
3507 */
Tejun Heo936fd732007-08-06 18:36:23 +09003508 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003509 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003510
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003511 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003512
Tejun Heo936fd732007-08-06 18:36:23 +09003513 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003514 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003515
Tejun Heo936fd732007-08-06 18:36:23 +09003516 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003517 }
3518
3519 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003520 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003521 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003522
Tejun Heo852ee162006-04-01 01:38:18 +09003523 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003524
Tejun Heo936fd732007-08-06 18:36:23 +09003525 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003526 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003527
Tejun Heo1c3fae42006-04-02 20:53:28 +09003528 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003529 * 10.4.2 says at least 1 ms.
3530 */
3531 msleep(1);
3532
Tejun Heo936fd732007-08-06 18:36:23 +09003533 /* bring link back */
3534 rc = sata_link_resume(link, timing, deadline);
Tejun Heob6103f62006-11-01 17:59:53 +09003535 out:
3536 DPRINTK("EXIT, rc=%d\n", rc);
3537 return rc;
3538}
3539
3540/**
Tejun Heoc2bd5802006-01-24 17:05:22 +09003541 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003542 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003543 * @classes: classes of attached devices
3544 *
3545 * This function is invoked after a successful reset. Note that
3546 * the device might have been reset more than once using
3547 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003548 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003549 * LOCKING:
3550 * Kernel thread context (may sleep)
3551 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003552void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003553{
Tejun Heocc0680a2007-08-06 18:36:23 +09003554 struct ata_port *ap = link->ap;
Tejun Heodc2b3512006-05-15 20:58:00 +09003555 u32 serror;
3556
Tejun Heoc2bd5802006-01-24 17:05:22 +09003557 DPRINTK("ENTER\n");
3558
Tejun Heoc2bd5802006-01-24 17:05:22 +09003559 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003560 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003561
Tejun Heodc2b3512006-05-15 20:58:00 +09003562 /* clear SError */
Tejun Heo936fd732007-08-06 18:36:23 +09003563 if (sata_scr_read(link, SCR_ERROR, &serror) == 0)
3564 sata_scr_write(link, SCR_ERROR, serror);
Tejun Heof7fe7ad42007-12-08 08:47:01 +09003565 link->eh_info.serror = 0;
Tejun Heodc2b3512006-05-15 20:58:00 +09003566
Tejun Heoc2bd5802006-01-24 17:05:22 +09003567 /* is double-select really necessary? */
3568 if (classes[0] != ATA_DEV_NONE)
3569 ap->ops->dev_select(ap, 1);
3570 if (classes[1] != ATA_DEV_NONE)
3571 ap->ops->dev_select(ap, 0);
3572
Tejun Heo3a397462006-02-10 23:58:48 +09003573 /* bail out if no device is present */
3574 if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) {
3575 DPRINTK("EXIT, no device\n");
3576 return;
3577 }
3578
3579 /* set up device control */
Tejun Heo0d5ff562007-02-01 15:06:36 +09003580 if (ap->ioaddr.ctl_addr)
3581 iowrite8(ap->ctl, ap->ioaddr.ctl_addr);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003582
3583 DPRINTK("EXIT\n");
3584}
3585
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003586/**
Tejun Heo623a3122006-03-05 17:55:58 +09003587 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003588 * @dev: device to compare against
3589 * @new_class: class of the new device
3590 * @new_id: IDENTIFY page of the new device
3591 *
3592 * Compare @new_class and @new_id against @dev and determine
3593 * whether @dev is the device indicated by @new_class and
3594 * @new_id.
3595 *
3596 * LOCKING:
3597 * None.
3598 *
3599 * RETURNS:
3600 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3601 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003602static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3603 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003604{
3605 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003606 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3607 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003608
3609 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003610 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3611 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003612 return 0;
3613 }
3614
Tejun Heoa0cf7332007-01-02 20:18:49 +09003615 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3616 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3617 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3618 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003619
3620 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003621 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3622 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003623 return 0;
3624 }
3625
3626 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003627 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3628 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003629 return 0;
3630 }
3631
Tejun Heo623a3122006-03-05 17:55:58 +09003632 return 1;
3633}
3634
3635/**
Tejun Heofe309112007-05-15 03:28:15 +09003636 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003637 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003638 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003639 *
3640 * Re-read IDENTIFY page and make sure @dev is still attached to
3641 * the port.
3642 *
3643 * LOCKING:
3644 * Kernel thread context (may sleep)
3645 *
3646 * RETURNS:
3647 * 0 on success, negative errno otherwise
3648 */
Tejun Heofe309112007-05-15 03:28:15 +09003649int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003650{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003651 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003652 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003653 int rc;
3654
Tejun Heofe635c72006-05-15 20:57:35 +09003655 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003656 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003657 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003658 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003659
3660 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003661 if (!ata_dev_same_device(dev, class, id))
3662 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003663
Tejun Heofe635c72006-05-15 20:57:35 +09003664 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003665 return 0;
3666}
3667
3668/**
3669 * ata_dev_revalidate - Revalidate ATA device
3670 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09003671 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09003672 * @readid_flags: read ID flags
3673 *
3674 * Re-read IDENTIFY page, make sure @dev is still attached to the
3675 * port and reconfigure it according to the new IDENTIFY page.
3676 *
3677 * LOCKING:
3678 * Kernel thread context (may sleep)
3679 *
3680 * RETURNS:
3681 * 0 on success, negative errno otherwise
3682 */
Tejun Heo422c9da2007-09-23 13:14:12 +09003683int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
3684 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09003685{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003686 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09003687 int rc;
3688
3689 if (!ata_dev_enabled(dev))
3690 return -ENODEV;
3691
Tejun Heo422c9da2007-09-23 13:14:12 +09003692 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
3693 if (ata_class_enabled(new_class) &&
3694 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
3695 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
3696 dev->class, new_class);
3697 rc = -ENODEV;
3698 goto fail;
3699 }
3700
Tejun Heofe309112007-05-15 03:28:15 +09003701 /* re-read ID */
3702 rc = ata_dev_reread_id(dev, readid_flags);
3703 if (rc)
3704 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09003705
3706 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09003707 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003708 if (rc)
3709 goto fail;
3710
3711 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09003712 if (dev->class == ATA_DEV_ATA && n_sectors &&
3713 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003714 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
3715 "%llu != %llu\n",
3716 (unsigned long long)n_sectors,
3717 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09003718
3719 /* restore original n_sectors */
3720 dev->n_sectors = n_sectors;
3721
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09003722 rc = -ENODEV;
3723 goto fail;
3724 }
3725
3726 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09003727
3728 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09003729 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09003730 return rc;
3731}
3732
Alan Cox6919a0a2006-10-27 19:08:46 -07003733struct ata_blacklist_entry {
3734 const char *model_num;
3735 const char *model_rev;
3736 unsigned long horkage;
3737};
3738
3739static const struct ata_blacklist_entry ata_device_blacklist [] = {
3740 /* Devices with DMA related problems under Linux */
3741 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
3742 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
3743 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
3744 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
3745 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
3746 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
3747 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
3748 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
3749 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
3750 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
3751 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
3752 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
3753 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
3754 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
3755 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
3756 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
3757 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
3758 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
3759 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
3760 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
3761 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
3762 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
3763 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
3764 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
3765 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
3766 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003767 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
3768 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003769 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04003770 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09003771 /* Odd clown on sil3726/4726 PMPs */
3772 { "Config Disk", NULL, ATA_HORKAGE_NODMA |
3773 ATA_HORKAGE_SKIP_PM },
Alan Cox6919a0a2006-10-27 19:08:46 -07003774
Albert Lee18d6e9d2007-04-02 11:34:15 +08003775 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09003776 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Albert Lee18d6e9d2007-04-02 11:34:15 +08003777
Alan Cox6919a0a2006-10-27 19:08:46 -07003778 /* Devices we expect to fail diagnostics */
3779
3780 /* Devices where NCQ should be avoided */
3781 /* NCQ is slow */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003782 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo459ad682007-12-07 12:46:23 +09003783 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo09125ea2007-02-28 15:21:23 +09003784 /* http://thread.gmane.org/gmane.linux.ide/14907 */
3785 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08003786 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003787 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01003788 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Paolo Ornatida6f0ec2007-10-04 11:06:56 +09003789 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
Tejun Heoe41bd3e2007-12-09 19:45:39 +09003790 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003791
Robert Hancock36e337d2007-04-02 22:05:29 -06003792 /* Blacklist entries taken from Silicon Image 3124/3132
3793 Windows driver .inf file - also several Linux problem reports */
3794 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
3795 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
3796 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07003797
Tejun Heo16c55b02007-08-29 11:58:33 +09003798 /* devices which puke on READ_NATIVE_MAX */
3799 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
3800 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
3801 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
3802 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07003803
Alan Cox93328e12007-09-29 04:06:48 -04003804 /* Devices which report 1 sector over size HPA */
3805 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
3806 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
Mikko Rapelib152fcd2008-02-19 01:41:25 +01003807 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
Alan Cox93328e12007-09-29 04:06:48 -04003808
Alan Cox6bbfd532007-11-05 22:58:58 +00003809 /* Devices which get the IVB wrong */
3810 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
3811 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
Peter Missele9f33402007-11-27 18:04:42 +01003812 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
3813 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
3814 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00003815
Alan Cox6919a0a2006-10-27 19:08:46 -07003816 /* End Marker */
3817 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003819
Adrian Bunk741b7762007-10-24 18:23:06 +02003820static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003821{
3822 const char *p;
3823 int len;
3824
3825 /*
3826 * check for trailing wildcard: *\0
3827 */
3828 p = strchr(patt, wildchar);
3829 if (p && ((*(p + 1)) == 0))
3830 len = p - patt;
Andrew Paprocki317b50b2007-10-15 15:43:12 -04003831 else {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003832 len = strlen(name);
Andrew Paprocki317b50b2007-10-15 15:43:12 -04003833 if (!len) {
3834 if (!*patt)
3835 return 0;
3836 return -1;
3837 }
3838 }
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003839
3840 return strncmp(patt, name, len);
3841}
3842
Tejun Heo75683fe2007-07-05 13:31:27 +09003843static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003845 unsigned char model_num[ATA_ID_PROD_LEN + 1];
3846 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07003847 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08003848
Tejun Heo8bfa79f2007-01-02 20:19:40 +09003849 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
3850 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851
Alan Cox6919a0a2006-10-27 19:08:46 -07003852 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003853 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07003854 if (ad->model_rev == NULL)
3855 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04003856 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07003857 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003858 }
Alan Cox6919a0a2006-10-27 19:08:46 -07003859 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00003860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 return 0;
3862}
3863
Alan Cox6919a0a2006-10-27 19:08:46 -07003864static int ata_dma_blacklisted(const struct ata_device *dev)
3865{
3866 /* We don't support polling DMA.
3867 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
3868 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
3869 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003870 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07003871 (dev->flags & ATA_DFLAG_CDB_INTR))
3872 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09003873 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07003874}
3875
Tejun Heoa6d5a512006-03-06 04:31:57 +09003876/**
Alan Cox6bbfd532007-11-05 22:58:58 +00003877 * ata_is_40wire - check drive side detection
3878 * @dev: device
3879 *
3880 * Perform drive side detection decoding, allowing for device vendors
3881 * who can't follow the documentation.
3882 */
3883
3884static int ata_is_40wire(struct ata_device *dev)
3885{
3886 if (dev->horkage & ATA_HORKAGE_IVB)
3887 return ata_drive_40wire_relaxed(dev->id);
3888 return ata_drive_40wire(dev->id);
3889}
3890
3891/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09003892 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09003893 * @dev: Device to compute xfermask for
3894 *
Tejun Heoacf356b2006-03-24 14:07:50 +09003895 * Compute supported xfermask of @dev and store it in
3896 * dev->*_mask. This function is responsible for applying all
3897 * known limits including host controller limits, device
3898 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09003899 *
3900 * LOCKING:
3901 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09003902 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003903static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003905 struct ata_link *link = dev->link;
3906 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04003907 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003908 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Tejun Heo37deecb2006-08-10 16:59:07 +09003910 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09003911 xfer_mask = ata_pack_xfermask(ap->pio_mask,
3912 ap->mwdma_mask, ap->udma_mask);
3913
Robert Hancock8343f882007-03-06 02:37:51 -08003914 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09003915 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
3916 dev->mwdma_mask, dev->udma_mask);
3917 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09003918
Alan Coxb352e572006-08-10 18:52:12 +01003919 /*
3920 * CFA Advanced TrueIDE timings are not allowed on a shared
3921 * cable
3922 */
3923 if (ata_dev_pair(dev)) {
3924 /* No PIO5 or PIO6 */
3925 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
3926 /* No MWDMA3 or MWDMA 4 */
3927 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
3928 }
3929
Tejun Heo37deecb2006-08-10 16:59:07 +09003930 if (ata_dma_blacklisted(dev)) {
3931 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09003932 ata_dev_printk(dev, KERN_WARNING,
3933 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09003934 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09003935
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01003936 if ((host->flags & ATA_HOST_SIMPLEX) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003937 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09003938 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
3939 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
3940 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01003941 }
Tejun Heo565083e2006-04-02 17:54:47 +09003942
Jeff Garzike4246752007-03-09 09:56:46 -05003943 if (ap->flags & ATA_FLAG_NO_IORDY)
3944 xfer_mask &= ata_pio_mask_no_iordy(dev);
3945
Alan Cox5444a6f2006-03-27 18:58:20 +01003946 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05003947 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003948
Robert Hancock8343f882007-03-06 02:37:51 -08003949 /* Apply cable rule here. Don't apply it early because when
3950 * we handle hot plug the cable type can itself change.
3951 * Check this last so that we know if the transfer rate was
3952 * solely limited by the cable.
3953 * Unknown or 80 wire cables reported host side are checked
3954 * drive side as well. Cases where we know a 40wire cable
3955 * is used safely for 80 are not checked here.
3956 */
3957 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
3958 /* UDMA/44 or higher would be available */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003959 if ((ap->cbl == ATA_CBL_PATA40) ||
Alan Cox6bbfd532007-11-05 22:58:58 +00003960 (ata_is_40wire(dev) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003961 (ap->cbl == ATA_CBL_PATA_UNK ||
3962 ap->cbl == ATA_CBL_PATA80))) {
3963 ata_dev_printk(dev, KERN_WARNING,
Robert Hancock8343f882007-03-06 02:37:51 -08003964 "limited to UDMA/33 due to 40-wire cable\n");
3965 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
3966 }
3967
Tejun Heo565083e2006-04-02 17:54:47 +09003968 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
3969 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970}
3971
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 * @dev: Device to which command will be sent
3975 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04003976 * Issue SET FEATURES - XFER MODE command to device @dev
3977 * on port @ap.
3978 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003980 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09003981 *
3982 * RETURNS:
3983 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 */
3985
Tejun Heo3373efd2006-05-15 20:57:53 +09003986static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987{
Tejun Heoa0123702005-12-13 14:49:31 +09003988 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09003989 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
3991 /* set up set-features taskfile */
3992 DPRINTK("set features - xfer mode\n");
3993
Tejun Heo464cf172007-05-27 15:10:40 +02003994 /* Some controllers and ATAPI devices show flaky interrupt
3995 * behavior after setting xfer mode. Use polling instead.
3996 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003997 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09003998 tf.command = ATA_CMD_SET_FEATURES;
3999 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004000 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004001 tf.protocol = ATA_PROT_NODATA;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004002 /* If we are using IORDY we must send the mode setting command */
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004003 if (ata_pio_need_iordy(dev))
4004 tf.nsect = dev->xfer_mode;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004005 /* If the device has IORDY and the controller does not - turn it off */
4006 else if (ata_id_has_iordy(dev->id))
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004007 tf.nsect = 0x01;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004008 else /* In the ancient relic department - skip all of this */
4009 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010
Tejun Heo2b789102007-10-09 15:05:44 +09004011 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
Tejun Heo83206a22006-03-24 15:25:31 +09004013 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4014 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016/**
Jeff Garzik218f3d32007-10-25 00:33:27 -04004017 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004018 * @dev: Device to which command will be sent
4019 * @enable: Whether to enable or disable the feature
Jeff Garzik218f3d32007-10-25 00:33:27 -04004020 * @feature: The sector count represents the feature to set
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004021 *
4022 * Issue SET FEATURES - SATA FEATURES command to device @dev
Jeff Garzik218f3d32007-10-25 00:33:27 -04004023 * on port @ap with sector count
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004024 *
4025 * LOCKING:
4026 * PCI/etc. bus probe sem.
4027 *
4028 * RETURNS:
4029 * 0 on success, AC_ERR_* mask otherwise.
4030 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04004031static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4032 u8 feature)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004033{
4034 struct ata_taskfile tf;
4035 unsigned int err_mask;
4036
4037 /* set up set-features taskfile */
4038 DPRINTK("set features - SATA features\n");
4039
4040 ata_tf_init(dev, &tf);
4041 tf.command = ATA_CMD_SET_FEATURES;
4042 tf.feature = enable;
4043 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4044 tf.protocol = ATA_PROT_NODATA;
Jeff Garzik218f3d32007-10-25 00:33:27 -04004045 tf.nsect = feature;
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004046
Tejun Heo2b789102007-10-09 15:05:44 +09004047 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004048
4049 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4050 return err_mask;
4051}
4052
4053/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004054 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004055 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004056 * @heads: Number of heads (taskfile parameter)
4057 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004058 *
4059 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004060 * Kernel thread context (may sleep)
4061 *
4062 * RETURNS:
4063 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004064 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004065static unsigned int ata_dev_init_params(struct ata_device *dev,
4066 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004067{
Tejun Heoa0123702005-12-13 14:49:31 +09004068 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004069 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004070
4071 /* Number of sectors per track 1-255. Number of heads 1-16 */
4072 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004073 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004074
4075 /* set up init dev params taskfile */
4076 DPRINTK("init dev params \n");
4077
Tejun Heo3373efd2006-05-15 20:57:53 +09004078 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004079 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4080 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4081 tf.protocol = ATA_PROT_NODATA;
4082 tf.nsect = sectors;
4083 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004084
Tejun Heo2b789102007-10-09 15:05:44 +09004085 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004086 /* A clean abort indicates an original or just out of spec drive
4087 and we should continue as we issue the setup based on the
4088 drive reported working geometry */
4089 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4090 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004091
Tejun Heo6aff8f12006-02-15 18:24:09 +09004092 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4093 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004094}
4095
4096/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004097 * ata_sg_clean - Unmap DMA memory associated with command
4098 * @qc: Command containing DMA memory to be released
4099 *
4100 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 *
4102 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004103 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004105void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106{
4107 struct ata_port *ap = qc->ap;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004108 struct scatterlist *sg = qc->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 int dir = qc->dma_dir;
4110
Tejun Heoa46314742006-02-11 19:11:13 +09004111 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112
James Bottomleydde20202008-02-19 11:36:56 +01004113 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
James Bottomleydde20202008-02-19 11:36:56 +01004115 if (qc->n_elem)
4116 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
4118 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004119 qc->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120}
4121
4122/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 * ata_check_atapi_dma - Check whether ATAPI DMA can be supported
4124 * @qc: Metadata associated with taskfile to check
4125 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004126 * Allow low-level driver to filter ATA PACKET commands, returning
4127 * a status indicating whether or not it is OK to use DMA for the
4128 * supplied PACKET command.
4129 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004131 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004132 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 * RETURNS: 0 when ATAPI DMA can be used
4134 * nonzero otherwise
4135 */
4136int ata_check_atapi_dma(struct ata_queued_cmd *qc)
4137{
4138 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
Tejun Heob9a41972007-06-27 02:48:43 +09004140 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4141 * few ATAPI devices choke on such DMA requests.
4142 */
4143 if (unlikely(qc->nbytes & 15))
4144 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004145
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004147 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
Tejun Heob9a41972007-06-27 02:48:43 +09004149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150}
Tejun Heob9a41972007-06-27 02:48:43 +09004151
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004153 * ata_std_qc_defer - Check whether a qc needs to be deferred
4154 * @qc: ATA command in question
4155 *
4156 * Non-NCQ commands cannot run with any other command, NCQ or
4157 * not. As upper layer only knows the queue depth, we are
4158 * responsible for maintaining exclusion. This function checks
4159 * whether a new command @qc can be issued.
4160 *
4161 * LOCKING:
4162 * spin_lock_irqsave(host lock)
4163 *
4164 * RETURNS:
4165 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4166 */
4167int ata_std_qc_defer(struct ata_queued_cmd *qc)
4168{
4169 struct ata_link *link = qc->dev->link;
4170
4171 if (qc->tf.protocol == ATA_PROT_NCQ) {
4172 if (!ata_tag_valid(link->active_tag))
4173 return 0;
4174 } else {
4175 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4176 return 0;
4177 }
4178
4179 return ATA_DEFER_LINK;
4180}
4181
Brian Kinge46834c2006-03-17 17:04:03 -06004182void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4183
Jeff Garzik0cba6322005-05-30 19:49:12 -04004184/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004185 * ata_sg_init - Associate command with scatter-gather table.
4186 * @qc: Command to be associated
4187 * @sg: Scatter-gather table.
4188 * @n_elem: Number of elements in s/g table.
4189 *
4190 * Initialize the data-related elements of queued_cmd @qc
4191 * to point to a scatter-gather table @sg, containing @n_elem
4192 * elements.
4193 *
4194 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004195 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4198 unsigned int n_elem)
4199{
Tejun Heoff2aeb12007-12-05 16:43:11 +09004200 qc->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 qc->n_elem = n_elem;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004202 qc->cursg = qc->sg;
4203}
4204
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004206 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4207 * @qc: Command with scatter-gather table to be mapped.
4208 *
4209 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 *
4211 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004212 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 *
4214 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004215 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 *
4217 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218static int ata_sg_setup(struct ata_queued_cmd *qc)
4219{
4220 struct ata_port *ap = qc->ap;
James Bottomleydde20202008-02-19 11:36:56 +01004221 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
Tejun Heo44877b42007-02-21 01:06:51 +09004223 VPRINTK("ENTER, ata%u\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
James Bottomleydde20202008-02-19 11:36:56 +01004225 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
4226 if (n_elem < 1)
4227 return -1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004228
James Bottomleydde20202008-02-19 11:36:56 +01004229 DPRINTK("%d sg elements mapped\n", n_elem);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004230
James Bottomleydde20202008-02-19 11:36:56 +01004231 qc->n_elem = n_elem;
Tejun Heof92a2632007-12-05 16:43:10 +09004232 qc->flags |= ATA_QCFLAG_DMAMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233
4234 return 0;
4235}
4236
4237/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004238 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004239 * @buf: Buffer to swap
4240 * @buf_words: Number of 16-bit words in buffer.
4241 *
4242 * Swap halves of 16-bit words if needed to convert from
4243 * little-endian byte order to native cpu byte order, or
4244 * vice-versa.
4245 *
4246 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004247 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004248 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249void swap_buf_le16(u16 *buf, unsigned int buf_words)
4250{
4251#ifdef __BIG_ENDIAN
4252 unsigned int i;
4253
4254 for (i = 0; i < buf_words; i++)
4255 buf[i] = le16_to_cpu(buf[i]);
4256#endif /* __BIG_ENDIAN */
4257}
4258
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004259/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 * ata_qc_new - Request an available ATA command, for queueing
4261 * @ap: Port associated with device @dev
4262 * @dev: Device from whom we request an available command structure
4263 *
4264 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004265 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 */
4267
4268static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4269{
4270 struct ata_queued_cmd *qc = NULL;
4271 unsigned int i;
4272
Tejun Heoe3180492006-05-15 20:58:09 +09004273 /* no command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09004274 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
Tejun Heoe3180492006-05-15 20:58:09 +09004275 return NULL;
4276
Tejun Heo2ab7db12006-05-15 20:58:02 +09004277 /* the last tag is reserved for internal command. */
4278 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
Tejun Heo6cec4a32006-05-15 21:03:41 +09004279 if (!test_and_set_bit(i, &ap->qc_allocated)) {
Tejun Heof69499f2006-05-15 20:58:03 +09004280 qc = __ata_qc_from_tag(ap, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 break;
4282 }
4283
4284 if (qc)
4285 qc->tag = i;
4286
4287 return qc;
4288}
4289
4290/**
4291 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 * @dev: Device from whom we request an available command structure
4293 *
4294 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004295 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 */
4297
Tejun Heo3373efd2006-05-15 20:57:53 +09004298struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004300 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 struct ata_queued_cmd *qc;
4302
4303 qc = ata_qc_new(ap);
4304 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 qc->scsicmd = NULL;
4306 qc->ap = ap;
4307 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004309 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 }
4311
4312 return qc;
4313}
4314
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315/**
4316 * ata_qc_free - free unused ata_queued_cmd
4317 * @qc: Command to complete
4318 *
4319 * Designed to free unused ata_queued_cmd object
4320 * in case something prevents using it.
4321 *
4322 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004323 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 */
4325void ata_qc_free(struct ata_queued_cmd *qc)
4326{
Tejun Heo4ba946e2006-01-23 13:09:36 +09004327 struct ata_port *ap = qc->ap;
4328 unsigned int tag;
4329
Tejun Heoa46314742006-02-11 19:11:13 +09004330 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
Tejun Heo4ba946e2006-01-23 13:09:36 +09004332 qc->flags = 0;
4333 tag = qc->tag;
4334 if (likely(ata_tag_valid(tag))) {
Tejun Heo4ba946e2006-01-23 13:09:36 +09004335 qc->tag = ATA_TAG_POISON;
Tejun Heo6cec4a32006-05-15 21:03:41 +09004336 clear_bit(tag, &ap->qc_allocated);
Tejun Heo4ba946e2006-01-23 13:09:36 +09004337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338}
4339
Tejun Heo76014422006-02-11 15:13:49 +09004340void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004342 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004343 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004344
Tejun Heoa46314742006-02-11 19:11:13 +09004345 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4346 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347
4348 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4349 ata_sg_clean(qc);
4350
Tejun Heo7401abf2006-05-15 20:57:32 +09004351 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09004352 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004353 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09004354 if (!link->sactive)
4355 ap->nr_active_links--;
4356 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004357 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09004358 ap->nr_active_links--;
4359 }
4360
4361 /* clear exclusive status */
4362 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
4363 ap->excl_link == link))
4364 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09004365
Albert Lee3f3791d2005-08-16 14:25:38 +08004366 /* atapi: mark qc as inactive to prevent the interrupt handler
4367 * from completing the command twice later, before the error handler
4368 * is called. (when rc != 0 and atapi request sense is needed)
4369 */
4370 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004371 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004372
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004374 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375}
4376
Tejun Heo39599a52006-11-14 22:37:35 +09004377static void fill_result_tf(struct ata_queued_cmd *qc)
4378{
4379 struct ata_port *ap = qc->ap;
4380
Tejun Heo39599a52006-11-14 22:37:35 +09004381 qc->result_tf.flags = qc->tf.flags;
Mark Lord4742d542007-04-02 16:20:35 -04004382 ap->ops->tf_read(ap, &qc->result_tf);
Tejun Heo39599a52006-11-14 22:37:35 +09004383}
4384
Tejun Heo00115e02007-11-27 19:28:58 +09004385static void ata_verify_xfer(struct ata_queued_cmd *qc)
4386{
4387 struct ata_device *dev = qc->dev;
4388
4389 if (ata_tag_internal(qc->tag))
4390 return;
4391
4392 if (ata_is_nodata(qc->tf.protocol))
4393 return;
4394
4395 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
4396 return;
4397
4398 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
4399}
4400
Tejun Heof686bcb2006-05-15 20:58:05 +09004401/**
4402 * ata_qc_complete - Complete an active ATA command
4403 * @qc: Command to complete
4404 * @err_mask: ATA Status register contents
4405 *
4406 * Indicate to the mid and upper layers that an ATA
4407 * command has completed, with either an ok or not-ok status.
4408 *
4409 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004410 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09004411 */
4412void ata_qc_complete(struct ata_queued_cmd *qc)
4413{
4414 struct ata_port *ap = qc->ap;
4415
4416 /* XXX: New EH and old EH use different mechanisms to
4417 * synchronize EH with regular execution path.
4418 *
4419 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4420 * Normal execution path is responsible for not accessing a
4421 * failed qc. libata core enforces the rule by returning NULL
4422 * from ata_qc_from_tag() for failed qcs.
4423 *
4424 * Old EH depends on ata_qc_complete() nullifying completion
4425 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4426 * not synchronize with interrupt handler. Only PIO task is
4427 * taken care of.
4428 */
4429 if (ap->ops->error_handler) {
Tejun Heo4dbfa392007-10-25 18:22:44 +09004430 struct ata_device *dev = qc->dev;
4431 struct ata_eh_info *ehi = &dev->link->eh_info;
4432
Tejun Heob51e9e52006-06-29 01:29:30 +09004433 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09004434
4435 if (unlikely(qc->err_mask))
4436 qc->flags |= ATA_QCFLAG_FAILED;
4437
4438 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4439 if (!ata_tag_internal(qc->tag)) {
4440 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09004441 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004442 ata_qc_schedule_eh(qc);
4443 return;
4444 }
4445 }
4446
4447 /* read result TF if requested */
4448 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004449 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004450
Tejun Heo4dbfa392007-10-25 18:22:44 +09004451 /* Some commands need post-processing after successful
4452 * completion.
4453 */
4454 switch (qc->tf.command) {
4455 case ATA_CMD_SET_FEATURES:
4456 if (qc->tf.feature != SETFEATURES_WC_ON &&
4457 qc->tf.feature != SETFEATURES_WC_OFF)
4458 break;
4459 /* fall through */
4460 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
4461 case ATA_CMD_SET_MULTI: /* multi_count changed */
4462 /* revalidate device */
4463 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
4464 ata_port_schedule_eh(ap);
4465 break;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004466
4467 case ATA_CMD_SLEEP:
4468 dev->flags |= ATA_DFLAG_SLEEPING;
4469 break;
Tejun Heo4dbfa392007-10-25 18:22:44 +09004470 }
4471
Tejun Heo00115e02007-11-27 19:28:58 +09004472 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
4473 ata_verify_xfer(qc);
4474
Tejun Heof686bcb2006-05-15 20:58:05 +09004475 __ata_qc_complete(qc);
4476 } else {
4477 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4478 return;
4479
4480 /* read result TF if failed or requested */
4481 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004482 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004483
4484 __ata_qc_complete(qc);
4485 }
4486}
4487
Tejun Heodedaf2b2006-05-15 21:03:43 +09004488/**
4489 * ata_qc_complete_multiple - Complete multiple qcs successfully
4490 * @ap: port in question
4491 * @qc_active: new qc_active mask
4492 * @finish_qc: LLDD callback invoked before completing a qc
4493 *
4494 * Complete in-flight commands. This functions is meant to be
4495 * called from low-level driver's interrupt routine to complete
4496 * requests normally. ap->qc_active and @qc_active is compared
4497 * and commands are completed accordingly.
4498 *
4499 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004500 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004501 *
4502 * RETURNS:
4503 * Number of completed commands on success, -errno otherwise.
4504 */
4505int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active,
4506 void (*finish_qc)(struct ata_queued_cmd *))
4507{
4508 int nr_done = 0;
4509 u32 done_mask;
4510 int i;
4511
4512 done_mask = ap->qc_active ^ qc_active;
4513
4514 if (unlikely(done_mask & qc_active)) {
4515 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4516 "(%08x->%08x)\n", ap->qc_active, qc_active);
4517 return -EINVAL;
4518 }
4519
4520 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4521 struct ata_queued_cmd *qc;
4522
4523 if (!(done_mask & (1 << i)))
4524 continue;
4525
4526 if ((qc = ata_qc_from_tag(ap, i))) {
4527 if (finish_qc)
4528 finish_qc(qc);
4529 ata_qc_complete(qc);
4530 nr_done++;
4531 }
4532 }
4533
4534 return nr_done;
4535}
4536
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537/**
4538 * ata_qc_issue - issue taskfile to device
4539 * @qc: command to issue to device
4540 *
4541 * Prepare an ATA command to submission to device.
4542 * This includes mapping the data into a DMA-able
4543 * area, filling in the S/G table, and finally
4544 * writing the taskfile to hardware, starting the command.
4545 *
4546 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004547 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004549void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550{
4551 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004552 struct ata_link *link = qc->dev->link;
Tejun Heo405e66b2007-11-27 19:28:53 +09004553 u8 prot = qc->tf.protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
Tejun Heodedaf2b2006-05-15 21:03:43 +09004555 /* Make sure only one non-NCQ command is outstanding. The
4556 * check is skipped for old EH because it reuses active qc to
4557 * request ATAPI sense.
4558 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004559 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09004560
Tejun Heo1973a022007-12-05 10:36:13 +09004561 if (ata_is_ncq(prot)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004562 WARN_ON(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09004563
4564 if (!link->sactive)
4565 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004566 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004567 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004568 WARN_ON(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09004569
4570 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004571 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004572 }
4573
Tejun Heoe4a70e72006-03-31 20:36:47 +09004574 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004575 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09004576
Tejun Heof92a2632007-12-05 16:43:10 +09004577 /* We guarantee to LLDs that they will have at least one
4578 * non-zero sg if the command is a data command.
4579 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09004580 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
Tejun Heof92a2632007-12-05 16:43:10 +09004581
Tejun Heo405e66b2007-11-27 19:28:53 +09004582 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
Tejun Heof92a2632007-12-05 16:43:10 +09004583 (ap->flags & ATA_FLAG_PIO_DMA)))
Tejun Heo001102d2007-12-05 16:43:09 +09004584 if (ata_sg_setup(qc))
4585 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586
Tejun Heocf480622008-01-24 00:05:14 +09004587 /* if device is sleeping, schedule reset and abort the link */
Tejun Heo054a5fb2007-10-25 18:30:36 +09004588 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
Tejun Heocf480622008-01-24 00:05:14 +09004589 link->eh_info.action |= ATA_EH_RESET;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004590 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
4591 ata_link_abort(link);
4592 return;
4593 }
4594
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 ap->ops->qc_prep(qc);
4596
Tejun Heo8e0e6942006-03-31 20:41:11 +09004597 qc->err_mask |= ap->ops->qc_issue(qc);
4598 if (unlikely(qc->err_mask))
4599 goto err;
4600 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
Tejun Heo8e436af2006-01-23 13:09:36 +09004602sg_err:
Tejun Heo8e0e6942006-03-31 20:41:11 +09004603 qc->err_mask |= AC_ERR_SYSTEM;
4604err:
4605 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606}
4607
4608/**
Tejun Heo34bf2172006-05-15 20:57:46 +09004609 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09004610 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09004611 *
Tejun Heo936fd732007-08-06 18:36:23 +09004612 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09004613 *
4614 * LOCKING:
4615 * None.
4616 *
4617 * RETURNS:
4618 * 1 if SCRs are accessible, 0 otherwise.
4619 */
Tejun Heo936fd732007-08-06 18:36:23 +09004620int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004621{
Tejun Heo936fd732007-08-06 18:36:23 +09004622 struct ata_port *ap = link->ap;
4623
Tejun Heoa16abc02007-05-21 18:33:47 +02004624 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09004625}
4626
4627/**
4628 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09004629 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004630 * @reg: SCR to read
4631 * @val: Place to store read value
4632 *
Tejun Heo936fd732007-08-06 18:36:23 +09004633 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09004634 * guaranteed to succeed if @link is ap->link, the cable type of
4635 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09004636 *
4637 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09004638 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004639 *
4640 * RETURNS:
4641 * 0 on success, negative errno on failure.
4642 */
Tejun Heo936fd732007-08-06 18:36:23 +09004643int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004644{
Tejun Heo633273a32007-09-23 13:19:54 +09004645 if (ata_is_host_link(link)) {
4646 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004647
Tejun Heo633273a32007-09-23 13:19:54 +09004648 if (sata_scr_valid(link))
4649 return ap->ops->scr_read(ap, reg, val);
4650 return -EOPNOTSUPP;
4651 }
4652
4653 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004654}
4655
4656/**
4657 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09004658 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004659 * @reg: SCR to write
4660 * @val: value to write
4661 *
Tejun Heo936fd732007-08-06 18:36:23 +09004662 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09004663 * guaranteed to succeed if @link is ap->link, the cable type of
4664 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09004665 *
4666 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09004667 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004668 *
4669 * RETURNS:
4670 * 0 on success, negative errno on failure.
4671 */
Tejun Heo936fd732007-08-06 18:36:23 +09004672int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004673{
Tejun Heo633273a32007-09-23 13:19:54 +09004674 if (ata_is_host_link(link)) {
4675 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09004676
Tejun Heo633273a32007-09-23 13:19:54 +09004677 if (sata_scr_valid(link))
4678 return ap->ops->scr_write(ap, reg, val);
4679 return -EOPNOTSUPP;
4680 }
4681
4682 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004683}
4684
4685/**
4686 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09004687 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09004688 * @reg: SCR to write
4689 * @val: value to write
4690 *
4691 * This function is identical to sata_scr_write() except that this
4692 * function performs flush after writing to the register.
4693 *
4694 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09004695 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09004696 *
4697 * RETURNS:
4698 * 0 on success, negative errno on failure.
4699 */
Tejun Heo936fd732007-08-06 18:36:23 +09004700int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09004701{
Tejun Heo633273a32007-09-23 13:19:54 +09004702 if (ata_is_host_link(link)) {
4703 struct ata_port *ap = link->ap;
4704 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09004705
Tejun Heo633273a32007-09-23 13:19:54 +09004706 if (sata_scr_valid(link)) {
4707 rc = ap->ops->scr_write(ap, reg, val);
4708 if (rc == 0)
4709 rc = ap->ops->scr_read(ap, reg, &val);
4710 return rc;
4711 }
4712 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09004713 }
Tejun Heo633273a32007-09-23 13:19:54 +09004714
4715 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09004716}
4717
4718/**
Tejun Heo936fd732007-08-06 18:36:23 +09004719 * ata_link_online - test whether the given link is online
4720 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09004721 *
Tejun Heo936fd732007-08-06 18:36:23 +09004722 * Test whether @link is online. Note that this function returns
4723 * 0 if online status of @link cannot be obtained, so
4724 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09004725 *
4726 * LOCKING:
4727 * None.
4728 *
4729 * RETURNS:
4730 * 1 if the port online status is available and online.
4731 */
Tejun Heo936fd732007-08-06 18:36:23 +09004732int ata_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004733{
4734 u32 sstatus;
4735
Tejun Heo936fd732007-08-06 18:36:23 +09004736 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4737 (sstatus & 0xf) == 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09004738 return 1;
4739 return 0;
4740}
4741
4742/**
Tejun Heo936fd732007-08-06 18:36:23 +09004743 * ata_link_offline - test whether the given link is offline
4744 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09004745 *
Tejun Heo936fd732007-08-06 18:36:23 +09004746 * Test whether @link is offline. Note that this function
4747 * returns 0 if offline status of @link cannot be obtained, so
4748 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09004749 *
4750 * LOCKING:
4751 * None.
4752 *
4753 * RETURNS:
4754 * 1 if the port offline status is available and offline.
4755 */
Tejun Heo936fd732007-08-06 18:36:23 +09004756int ata_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09004757{
4758 u32 sstatus;
4759
Tejun Heo936fd732007-08-06 18:36:23 +09004760 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
4761 (sstatus & 0xf) != 0x3)
Tejun Heo34bf2172006-05-15 20:57:46 +09004762 return 1;
4763 return 0;
4764}
Edward Falk0baab862005-06-02 18:17:13 -04004765
Tejun Heo77b08fb2006-06-24 20:30:19 +09004766int ata_flush_cache(struct ata_device *dev)
Jens Axboe9b847542006-01-06 09:28:07 +01004767{
Tejun Heo977e6b92006-06-24 20:30:19 +09004768 unsigned int err_mask;
Jens Axboe9b847542006-01-06 09:28:07 +01004769 u8 cmd;
4770
4771 if (!ata_try_flush_cache(dev))
4772 return 0;
4773
Tejun Heo6fc49ad2006-11-11 20:10:45 +09004774 if (dev->flags & ATA_DFLAG_FLUSH_EXT)
Jens Axboe9b847542006-01-06 09:28:07 +01004775 cmd = ATA_CMD_FLUSH_EXT;
4776 else
4777 cmd = ATA_CMD_FLUSH;
4778
Alan Cox4f343372007-08-08 14:30:31 +01004779 /* This is wrong. On a failed flush we get back the LBA of the lost
4780 sector and we should (assuming it wasn't aborted as unknown) issue
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004781 a further flush command to continue the writeback until it
Alan Cox4f343372007-08-08 14:30:31 +01004782 does not error */
Tejun Heo977e6b92006-06-24 20:30:19 +09004783 err_mask = ata_do_simple_cmd(dev, cmd);
4784 if (err_mask) {
4785 ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n");
4786 return -EIO;
4787 }
4788
4789 return 0;
Jens Axboe9b847542006-01-06 09:28:07 +01004790}
4791
Tejun Heo6ffa01d2007-03-02 17:32:47 +09004792#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04004793static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
4794 unsigned int action, unsigned int ehi_flags,
4795 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09004796{
4797 unsigned long flags;
4798 int i, rc;
4799
Jeff Garzikcca39742006-08-24 03:19:22 -04004800 for (i = 0; i < host->n_ports; i++) {
4801 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09004802 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09004803
4804 /* Previous resume operation might still be in
4805 * progress. Wait for PM_PENDING to clear.
4806 */
4807 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
4808 ata_port_wait_eh(ap);
4809 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4810 }
4811
4812 /* request PM ops to EH */
4813 spin_lock_irqsave(ap->lock, flags);
4814
4815 ap->pm_mesg = mesg;
4816 if (wait) {
4817 rc = 0;
4818 ap->pm_result = &rc;
4819 }
4820
4821 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heoe3667eb2007-08-06 18:36:24 +09004822 __ata_port_for_each_link(link, ap) {
4823 link->eh_info.action |= action;
4824 link->eh_info.flags |= ehi_flags;
4825 }
Tejun Heo500530f2006-07-03 16:07:27 +09004826
4827 ata_port_schedule_eh(ap);
4828
4829 spin_unlock_irqrestore(ap->lock, flags);
4830
4831 /* wait and check result */
4832 if (wait) {
4833 ata_port_wait_eh(ap);
4834 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
4835 if (rc)
4836 return rc;
4837 }
4838 }
4839
4840 return 0;
4841}
4842
4843/**
Jeff Garzikcca39742006-08-24 03:19:22 -04004844 * ata_host_suspend - suspend host
4845 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09004846 * @mesg: PM message
4847 *
Jeff Garzikcca39742006-08-24 03:19:22 -04004848 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09004849 * function requests EH to perform PM operations and waits for EH
4850 * to finish.
4851 *
4852 * LOCKING:
4853 * Kernel thread context (may sleep).
4854 *
4855 * RETURNS:
4856 * 0 on success, -errno on failure.
4857 */
Jeff Garzikcca39742006-08-24 03:19:22 -04004858int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09004859{
Tejun Heo9666f402007-05-04 21:27:47 +02004860 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09004861
Kristen Carlson Accardica773292007-10-25 00:58:59 -04004862 /*
4863 * disable link pm on all ports before requesting
4864 * any pm activity
4865 */
4866 ata_lpm_enable(host);
4867
Jeff Garzikcca39742006-08-24 03:19:22 -04004868 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05004869 if (rc == 0)
4870 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09004871 return rc;
4872}
4873
4874/**
Jeff Garzikcca39742006-08-24 03:19:22 -04004875 * ata_host_resume - resume host
4876 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09004877 *
Jeff Garzikcca39742006-08-24 03:19:22 -04004878 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09004879 * function requests EH to perform PM operations and returns.
4880 * Note that all resume operations are performed parallely.
4881 *
4882 * LOCKING:
4883 * Kernel thread context (may sleep).
4884 */
Jeff Garzikcca39742006-08-24 03:19:22 -04004885void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09004886{
Tejun Heocf480622008-01-24 00:05:14 +09004887 ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET,
Jeff Garzikcca39742006-08-24 03:19:22 -04004888 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05004889 host->dev->power.power_state = PMSG_ON;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04004890
4891 /* reenable link pm */
4892 ata_lpm_disable(host);
Tejun Heo500530f2006-07-03 16:07:27 +09004893}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09004894#endif
Tejun Heo500530f2006-07-03 16:07:27 +09004895
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004896/**
4897 * ata_port_start - Set port up for dma.
4898 * @ap: Port to initialize
4899 *
4900 * Called just after data structures for each port are
4901 * initialized. Allocates space for PRD table.
4902 *
4903 * May be used as the port_start() entry in ata_port_operations.
4904 *
4905 * LOCKING:
4906 * Inherited from caller.
4907 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09004908int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909{
Brian King2f1f6102006-03-23 17:30:15 -06004910 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911
Tejun Heof0d36ef2007-01-20 16:00:28 +09004912 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
4913 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 if (!ap->prd)
4915 return -ENOMEM;
4916
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 return 0;
4918}
4919
Edward Falk0baab862005-06-02 18:17:13 -04004920/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09004921 * ata_dev_init - Initialize an ata_device structure
4922 * @dev: Device structure to initialize
4923 *
4924 * Initialize @dev in preparation for probing.
4925 *
4926 * LOCKING:
4927 * Inherited from caller.
4928 */
4929void ata_dev_init(struct ata_device *dev)
4930{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004931 struct ata_link *link = dev->link;
4932 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09004933 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09004934
Tejun Heo5a04bf42006-05-31 18:27:38 +09004935 /* SATA spd limit is bound to the first device */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004936 link->sata_spd_limit = link->hw_sata_spd_limit;
4937 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09004938
Tejun Heo72fa4b72006-05-31 18:27:32 +09004939 /* High bits of dev->flags are used to record warm plug
4940 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04004941 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09004942 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04004943 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09004944 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09004945 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04004946 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09004947
4948 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
4949 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09004950 dev->pio_mask = UINT_MAX;
4951 dev->mwdma_mask = UINT_MAX;
4952 dev->udma_mask = UINT_MAX;
4953}
4954
4955/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09004956 * ata_link_init - Initialize an ata_link structure
4957 * @ap: ATA port link is attached to
4958 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09004959 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09004960 *
4961 * Initialize @link.
4962 *
4963 * LOCKING:
4964 * Kernel thread context (may sleep)
4965 */
Tejun Heofb7fd612007-09-23 13:14:12 +09004966void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09004967{
4968 int i;
4969
4970 /* clear everything except for devices */
4971 memset(link, 0, offsetof(struct ata_link, device[0]));
4972
4973 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09004974 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09004975 link->active_tag = ATA_TAG_POISON;
4976 link->hw_sata_spd_limit = UINT_MAX;
4977
4978 /* can't use iterator, ap isn't initialized yet */
4979 for (i = 0; i < ATA_MAX_DEVICES; i++) {
4980 struct ata_device *dev = &link->device[i];
4981
4982 dev->link = link;
4983 dev->devno = dev - link->device;
4984 ata_dev_init(dev);
4985 }
4986}
4987
4988/**
4989 * sata_link_init_spd - Initialize link->sata_spd_limit
4990 * @link: Link to configure sata_spd_limit for
4991 *
4992 * Initialize @link->[hw_]sata_spd_limit to the currently
4993 * configured value.
4994 *
4995 * LOCKING:
4996 * Kernel thread context (may sleep).
4997 *
4998 * RETURNS:
4999 * 0 on success, -errno on failure.
5000 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005001int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005002{
Tejun Heo33267322008-02-13 09:15:09 +09005003 u32 scontrol;
5004 u8 spd;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005005 int rc;
5006
5007 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
5008 if (rc)
5009 return rc;
5010
5011 spd = (scontrol >> 4) & 0xf;
5012 if (spd)
5013 link->hw_sata_spd_limit &= (1 << spd) - 1;
5014
Tejun Heo33267322008-02-13 09:15:09 +09005015 ata_force_spd_limit(link);
5016
Tejun Heo4fb37a22007-08-06 18:36:23 +09005017 link->sata_spd_limit = link->hw_sata_spd_limit;
5018
5019 return 0;
5020}
5021
5022/**
Tejun Heof3187192007-04-17 23:44:07 +09005023 * ata_port_alloc - allocate and initialize basic ATA port resources
5024 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 *
Tejun Heof3187192007-04-17 23:44:07 +09005026 * Allocate and initialize basic ATA port resources.
5027 *
5028 * RETURNS:
5029 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005032 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 */
Tejun Heof3187192007-04-17 23:44:07 +09005034struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035{
Tejun Heof3187192007-04-17 23:44:07 +09005036 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
Tejun Heof3187192007-04-17 23:44:07 +09005038 DPRINTK("ENTER\n");
5039
5040 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5041 if (!ap)
5042 return NULL;
5043
Tejun Heof4d6d002007-05-01 11:50:15 +02005044 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04005045 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005046 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09005047 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04005049 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09005050 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005052
5053#if defined(ATA_VERBOSE_DEBUG)
5054 /* turn on all debugging levels */
5055 ap->msg_enable = 0x00FF;
5056#elif defined(ATA_DEBUG)
5057 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 +09005058#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005059 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005060#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061
Jeff Garzik442eacc2007-12-19 04:25:10 -05005062 INIT_DELAYED_WORK(&ap->port_task, ata_pio_task);
David Howells65f27f32006-11-22 14:55:48 +00005063 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5064 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005065 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005066 init_waitqueue_head(&ap->eh_wait_q);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09005067 init_timer_deferrable(&ap->fastdrain_timer);
5068 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
5069 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070
Tejun Heo838df622006-05-15 20:57:44 +09005071 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09005072
Tejun Heo89898052007-08-06 18:36:23 +09005073 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074
5075#ifdef ATA_IRQ_TRAP
5076 ap->stats.unhandled_irq = 1;
5077 ap->stats.idle_irq = 1;
5078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080}
5081
Tejun Heof0d36ef2007-01-20 16:00:28 +09005082static void ata_host_release(struct device *gendev, void *res)
5083{
5084 struct ata_host *host = dev_get_drvdata(gendev);
5085 int i;
5086
5087 for (i = 0; i < host->n_ports; i++) {
5088 struct ata_port *ap = host->ports[i];
5089
Tejun Heoecef7252007-04-17 23:44:06 +09005090 if (!ap)
5091 continue;
5092
Tejun Heo49114872007-04-17 23:44:06 +09005093 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09005094 scsi_host_put(ap->scsi_host);
5095
Tejun Heo633273a32007-09-23 13:19:54 +09005096 kfree(ap->pmp_link);
Tejun Heo49114872007-04-17 23:44:06 +09005097 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09005098 host->ports[i] = NULL;
5099 }
5100
Tejun Heo1aa56cc2007-02-27 22:33:21 +09005101 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005102}
5103
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104/**
Tejun Heof3187192007-04-17 23:44:07 +09005105 * ata_host_alloc - allocate and init basic ATA host resources
5106 * @dev: generic device this host is associated with
5107 * @max_ports: maximum number of ATA ports associated with this host
5108 *
5109 * Allocate and initialize basic ATA host resources. LLD calls
5110 * this function to allocate a host, initializes it fully and
5111 * attaches it using ata_host_register().
5112 *
5113 * @max_ports ports are allocated and host->n_ports is
5114 * initialized to @max_ports. The caller is allowed to decrease
5115 * host->n_ports before calling ata_host_register(). The unused
5116 * ports will be automatically freed on registration.
5117 *
5118 * RETURNS:
5119 * Allocate ATA host on success, NULL on failure.
5120 *
5121 * LOCKING:
5122 * Inherited from calling layer (may sleep).
5123 */
5124struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
5125{
5126 struct ata_host *host;
5127 size_t sz;
5128 int i;
5129
5130 DPRINTK("ENTER\n");
5131
5132 if (!devres_open_group(dev, NULL, GFP_KERNEL))
5133 return NULL;
5134
5135 /* alloc a container for our list of ATA ports (buses) */
5136 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
5137 /* alloc a container for our list of ATA ports (buses) */
5138 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
5139 if (!host)
5140 goto err_out;
5141
5142 devres_add(dev, host);
5143 dev_set_drvdata(dev, host);
5144
5145 spin_lock_init(&host->lock);
5146 host->dev = dev;
5147 host->n_ports = max_ports;
5148
5149 /* allocate ports bound to this host */
5150 for (i = 0; i < max_ports; i++) {
5151 struct ata_port *ap;
5152
5153 ap = ata_port_alloc(host);
5154 if (!ap)
5155 goto err_out;
5156
5157 ap->port_no = i;
5158 host->ports[i] = ap;
5159 }
5160
5161 devres_remove_group(dev, NULL);
5162 return host;
5163
5164 err_out:
5165 devres_release_group(dev, NULL);
5166 return NULL;
5167}
5168
5169/**
Tejun Heof5cda252007-04-17 23:44:07 +09005170 * ata_host_alloc_pinfo - alloc host and init with port_info array
5171 * @dev: generic device this host is associated with
5172 * @ppi: array of ATA port_info to initialize host with
5173 * @n_ports: number of ATA ports attached to this host
5174 *
5175 * Allocate ATA host and initialize with info from @ppi. If NULL
5176 * terminated, @ppi may contain fewer entries than @n_ports. The
5177 * last entry will be used for the remaining ports.
5178 *
5179 * RETURNS:
5180 * Allocate ATA host on success, NULL on failure.
5181 *
5182 * LOCKING:
5183 * Inherited from calling layer (may sleep).
5184 */
5185struct ata_host *ata_host_alloc_pinfo(struct device *dev,
5186 const struct ata_port_info * const * ppi,
5187 int n_ports)
5188{
5189 const struct ata_port_info *pi;
5190 struct ata_host *host;
5191 int i, j;
5192
5193 host = ata_host_alloc(dev, n_ports);
5194 if (!host)
5195 return NULL;
5196
5197 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
5198 struct ata_port *ap = host->ports[i];
5199
5200 if (ppi[j])
5201 pi = ppi[j++];
5202
5203 ap->pio_mask = pi->pio_mask;
5204 ap->mwdma_mask = pi->mwdma_mask;
5205 ap->udma_mask = pi->udma_mask;
5206 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09005207 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09005208 ap->ops = pi->port_ops;
5209
5210 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
5211 host->ops = pi->port_ops;
Tejun Heof5cda252007-04-17 23:44:07 +09005212 }
5213
5214 return host;
5215}
5216
Tejun Heo32ebbc02007-11-08 13:09:00 +09005217static void ata_host_stop(struct device *gendev, void *res)
5218{
5219 struct ata_host *host = dev_get_drvdata(gendev);
5220 int i;
5221
5222 WARN_ON(!(host->flags & ATA_HOST_STARTED));
5223
5224 for (i = 0; i < host->n_ports; i++) {
5225 struct ata_port *ap = host->ports[i];
5226
5227 if (ap->ops->port_stop)
5228 ap->ops->port_stop(ap);
5229 }
5230
5231 if (host->ops->host_stop)
5232 host->ops->host_stop(host);
5233}
5234
Tejun Heof5cda252007-04-17 23:44:07 +09005235/**
Tejun Heo029cfd62008-03-25 12:22:49 +09005236 * ata_finalize_port_ops - finalize ata_port_operations
5237 * @ops: ata_port_operations to finalize
5238 *
5239 * An ata_port_operations can inherit from another ops and that
5240 * ops can again inherit from another. This can go on as many
5241 * times as necessary as long as there is no loop in the
5242 * inheritance chain.
5243 *
5244 * Ops tables are finalized when the host is started. NULL or
5245 * unspecified entries are inherited from the closet ancestor
5246 * which has the method and the entry is populated with it.
5247 * After finalization, the ops table directly points to all the
5248 * methods and ->inherits is no longer necessary and cleared.
5249 *
5250 * Using ATA_OP_NULL, inheriting ops can force a method to NULL.
5251 *
5252 * LOCKING:
5253 * None.
5254 */
5255static void ata_finalize_port_ops(struct ata_port_operations *ops)
5256{
5257 static spinlock_t lock = SPIN_LOCK_UNLOCKED;
5258 const struct ata_port_operations *cur;
5259 void **begin = (void **)ops;
5260 void **end = (void **)&ops->inherits;
5261 void **pp;
5262
5263 if (!ops || !ops->inherits)
5264 return;
5265
5266 spin_lock(&lock);
5267
5268 for (cur = ops->inherits; cur; cur = cur->inherits) {
5269 void **inherit = (void **)cur;
5270
5271 for (pp = begin; pp < end; pp++, inherit++)
5272 if (!*pp)
5273 *pp = *inherit;
5274 }
5275
5276 for (pp = begin; pp < end; pp++)
5277 if (IS_ERR(*pp))
5278 *pp = NULL;
5279
5280 ops->inherits = NULL;
5281
5282 spin_unlock(&lock);
5283}
5284
5285/**
Tejun Heoecef7252007-04-17 23:44:06 +09005286 * ata_host_start - start and freeze ports of an ATA host
5287 * @host: ATA host to start ports for
5288 *
5289 * Start and then freeze ports of @host. Started status is
5290 * recorded in host->flags, so this function can be called
5291 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09005292 * once. If host->ops isn't initialized yet, its set to the
5293 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09005294 *
5295 * LOCKING:
5296 * Inherited from calling layer (may sleep).
5297 *
5298 * RETURNS:
5299 * 0 if all ports are started successfully, -errno otherwise.
5300 */
5301int ata_host_start(struct ata_host *host)
5302{
Tejun Heo32ebbc02007-11-08 13:09:00 +09005303 int have_stop = 0;
5304 void *start_dr = NULL;
Tejun Heoecef7252007-04-17 23:44:06 +09005305 int i, rc;
5306
5307 if (host->flags & ATA_HOST_STARTED)
5308 return 0;
5309
Tejun Heo029cfd62008-03-25 12:22:49 +09005310 ata_finalize_port_ops(host->ops);
5311
Tejun Heoecef7252007-04-17 23:44:06 +09005312 for (i = 0; i < host->n_ports; i++) {
5313 struct ata_port *ap = host->ports[i];
5314
Tejun Heo029cfd62008-03-25 12:22:49 +09005315 ata_finalize_port_ops(ap->ops);
5316
Tejun Heof3187192007-04-17 23:44:07 +09005317 if (!host->ops && !ata_port_is_dummy(ap))
5318 host->ops = ap->ops;
5319
Tejun Heo32ebbc02007-11-08 13:09:00 +09005320 if (ap->ops->port_stop)
5321 have_stop = 1;
5322 }
5323
5324 if (host->ops->host_stop)
5325 have_stop = 1;
5326
5327 if (have_stop) {
5328 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
5329 if (!start_dr)
5330 return -ENOMEM;
5331 }
5332
5333 for (i = 0; i < host->n_ports; i++) {
5334 struct ata_port *ap = host->ports[i];
5335
Tejun Heoecef7252007-04-17 23:44:06 +09005336 if (ap->ops->port_start) {
5337 rc = ap->ops->port_start(ap);
5338 if (rc) {
Alan Cox0f9fe9b2007-11-30 15:23:16 +00005339 if (rc != -ENODEV)
Andrew Morton0f757742008-01-10 14:33:09 -08005340 dev_printk(KERN_ERR, host->dev,
5341 "failed to start port %d "
5342 "(errno=%d)\n", i, rc);
Tejun Heoecef7252007-04-17 23:44:06 +09005343 goto err_out;
5344 }
5345 }
Tejun Heoecef7252007-04-17 23:44:06 +09005346 ata_eh_freeze_port(ap);
5347 }
5348
Tejun Heo32ebbc02007-11-08 13:09:00 +09005349 if (start_dr)
5350 devres_add(host->dev, start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005351 host->flags |= ATA_HOST_STARTED;
5352 return 0;
5353
5354 err_out:
5355 while (--i >= 0) {
5356 struct ata_port *ap = host->ports[i];
5357
5358 if (ap->ops->port_stop)
5359 ap->ops->port_stop(ap);
5360 }
Tejun Heo32ebbc02007-11-08 13:09:00 +09005361 devres_free(start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005362 return rc;
5363}
5364
5365/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005366 * ata_sas_host_init - Initialize a host struct
5367 * @host: host to initialize
5368 * @dev: device host is attached to
5369 * @flags: host flags
5370 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05005371 *
5372 * LOCKING:
5373 * PCI/etc. bus probe sem.
5374 *
5375 */
Tejun Heof3187192007-04-17 23:44:07 +09005376/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04005377void ata_host_init(struct ata_host *host, struct device *dev,
Tejun Heo029cfd62008-03-25 12:22:49 +09005378 unsigned long flags, struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05005379{
Jeff Garzikcca39742006-08-24 03:19:22 -04005380 spin_lock_init(&host->lock);
5381 host->dev = dev;
5382 host->flags = flags;
5383 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05005384}
5385
5386/**
Tejun Heof3187192007-04-17 23:44:07 +09005387 * ata_host_register - register initialized ATA host
5388 * @host: ATA host to register
5389 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04005390 *
Tejun Heof3187192007-04-17 23:44:07 +09005391 * Register initialized ATA host. @host is allocated using
5392 * ata_host_alloc() and fully initialized by LLD. This function
5393 * starts ports, registers @host with ATA and SCSI layers and
5394 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395 *
5396 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005397 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 *
5399 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09005400 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401 */
Tejun Heof3187192007-04-17 23:44:07 +09005402int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403{
Tejun Heof3187192007-04-17 23:44:07 +09005404 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405
Tejun Heof3187192007-04-17 23:44:07 +09005406 /* host must have been started */
5407 if (!(host->flags & ATA_HOST_STARTED)) {
5408 dev_printk(KERN_ERR, host->dev,
5409 "BUG: trying to register unstarted host\n");
5410 WARN_ON(1);
5411 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01005412 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09005413
Tejun Heof3187192007-04-17 23:44:07 +09005414 /* Blow away unused ports. This happens when LLD can't
5415 * determine the exact number of ports to allocate at
5416 * allocation time.
5417 */
5418 for (i = host->n_ports; host->ports[i]; i++)
5419 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420
Tejun Heof3187192007-04-17 23:44:07 +09005421 /* give ports names and add SCSI hosts */
5422 for (i = 0; i < host->n_ports; i++)
5423 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09005424
Tejun Heof3187192007-04-17 23:44:07 +09005425 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09005426 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09005427 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09005428
Tejun Heofafbae82007-05-15 03:28:16 +09005429 /* associate with ACPI nodes */
5430 ata_acpi_associate(host);
5431
Tejun Heof3187192007-04-17 23:44:07 +09005432 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04005433 for (i = 0; i < host->n_ports; i++) {
5434 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09005435 unsigned long xfer_mask;
5436
5437 /* set SATA cable type if still unset */
5438 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
5439 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
Tejun Heo5a04bf42006-05-31 18:27:38 +09005441 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09005442 sata_link_init_spd(&ap->link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09005443
Tejun Heocbcdd872007-08-18 13:14:55 +09005444 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09005445 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
5446 ap->udma_mask);
5447
Tejun Heoabf6e8e2007-10-09 14:57:25 +09005448 if (!ata_port_is_dummy(ap)) {
Tejun Heocbcdd872007-08-18 13:14:55 +09005449 ata_port_printk(ap, KERN_INFO,
5450 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02005451 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09005452 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09005453 ap->link.eh_info.desc);
Tejun Heoabf6e8e2007-10-09 14:57:25 +09005454 ata_ehi_clear_desc(&ap->link.eh_info);
5455 } else
Tejun Heof3187192007-04-17 23:44:07 +09005456 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
5457 }
5458
5459 /* perform each probe synchronously */
5460 DPRINTK("probe begin\n");
5461 for (i = 0; i < host->n_ports; i++) {
5462 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09005463
5464 /* probe */
Tejun Heo52783c52006-05-31 18:28:22 +09005465 if (ap->ops->error_handler) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005466 struct ata_eh_info *ehi = &ap->link.eh_info;
Tejun Heo3e706392006-05-31 18:28:11 +09005467 unsigned long flags;
5468
5469 ata_port_probe(ap);
5470
5471 /* kick EH for boot probing */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005472 spin_lock_irqsave(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005473
Tejun Heob558edd2008-01-24 00:05:14 +09005474 ehi->probe_mask |= ATA_ALL_DEVICES;
Tejun Heocf480622008-01-24 00:05:14 +09005475 ehi->action |= ATA_EH_RESET;
Tejun Heo1cdaf532006-07-03 16:07:26 +09005476 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
Tejun Heo3e706392006-05-31 18:28:11 +09005477
Tejun Heof4d6d002007-05-01 11:50:15 +02005478 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
Tejun Heob51e9e52006-06-29 01:29:30 +09005479 ap->pflags |= ATA_PFLAG_LOADING;
Tejun Heo3e706392006-05-31 18:28:11 +09005480 ata_port_schedule_eh(ap);
5481
Jeff Garzikba6a1302006-06-22 23:46:10 -04005482 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo3e706392006-05-31 18:28:11 +09005483
5484 /* wait for EH to finish */
5485 ata_port_wait_eh(ap);
5486 } else {
Tejun Heo44877b42007-02-21 01:06:51 +09005487 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09005488 rc = ata_bus_probe(ap);
Tejun Heo44877b42007-02-21 01:06:51 +09005489 DPRINTK("ata%u: bus probe end\n", ap->print_id);
Tejun Heo3e706392006-05-31 18:28:11 +09005490
5491 if (rc) {
5492 /* FIXME: do something useful here?
5493 * Current libata behavior will
5494 * tear down everything when
5495 * the module is removed
5496 * or the h/w is unplugged.
5497 */
5498 }
5499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500 }
5501
5502 /* probes are done, now scan each port's disk(s) */
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005503 DPRINTK("host probe begin\n");
Jeff Garzikcca39742006-08-24 03:19:22 -04005504 for (i = 0; i < host->n_ports; i++) {
5505 struct ata_port *ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506
Tejun Heo1ae46312007-07-16 14:29:40 +09005507 ata_scsi_scan_host(ap, 1);
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005508 ata_lpm_schedule(ap, ap->pm_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509 }
5510
Tejun Heof3187192007-04-17 23:44:07 +09005511 return 0;
5512}
5513
5514/**
Tejun Heof5cda252007-04-17 23:44:07 +09005515 * ata_host_activate - start host, request IRQ and register it
5516 * @host: target ATA host
5517 * @irq: IRQ to request
5518 * @irq_handler: irq_handler used when requesting IRQ
5519 * @irq_flags: irq_flags used when requesting IRQ
5520 * @sht: scsi_host_template to use when registering the host
5521 *
5522 * After allocating an ATA host and initializing it, most libata
5523 * LLDs perform three steps to activate the host - start host,
5524 * request IRQ and register it. This helper takes necessasry
5525 * arguments and performs the three steps in one go.
5526 *
Paul Mundt3d46b2e2007-11-08 11:14:56 +09005527 * An invalid IRQ skips the IRQ registration and expects the host to
5528 * have set polling mode on the port. In this case, @irq_handler
5529 * should be NULL.
5530 *
Tejun Heof5cda252007-04-17 23:44:07 +09005531 * LOCKING:
5532 * Inherited from calling layer (may sleep).
5533 *
5534 * RETURNS:
5535 * 0 on success, -errno otherwise.
5536 */
5537int ata_host_activate(struct ata_host *host, int irq,
5538 irq_handler_t irq_handler, unsigned long irq_flags,
5539 struct scsi_host_template *sht)
5540{
Tejun Heocbcdd872007-08-18 13:14:55 +09005541 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09005542
5543 rc = ata_host_start(host);
5544 if (rc)
5545 return rc;
5546
Paul Mundt3d46b2e2007-11-08 11:14:56 +09005547 /* Special case for polling mode */
5548 if (!irq) {
5549 WARN_ON(irq_handler);
5550 return ata_host_register(host, sht);
5551 }
5552
Tejun Heof5cda252007-04-17 23:44:07 +09005553 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
5554 dev_driver_string(host->dev), host);
5555 if (rc)
5556 return rc;
5557
Tejun Heocbcdd872007-08-18 13:14:55 +09005558 for (i = 0; i < host->n_ports; i++)
5559 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09005560
Tejun Heof5cda252007-04-17 23:44:07 +09005561 rc = ata_host_register(host, sht);
5562 /* if failed, just free the IRQ and leave ports alone */
5563 if (rc)
5564 devm_free_irq(host->dev, irq, host);
5565
5566 return rc;
5567}
5568
5569/**
Tejun Heo720ba122006-05-31 18:28:13 +09005570 * ata_port_detach - Detach ATA port in prepration of device removal
5571 * @ap: ATA port to be detached
5572 *
5573 * Detach all ATA devices and the associated SCSI devices of @ap;
5574 * then, remove the associated SCSI host. @ap is guaranteed to
5575 * be quiescent on return from this function.
5576 *
5577 * LOCKING:
5578 * Kernel thread context (may sleep).
5579 */
Adrian Bunk741b7762007-10-24 18:23:06 +02005580static void ata_port_detach(struct ata_port *ap)
Tejun Heo720ba122006-05-31 18:28:13 +09005581{
5582 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09005583 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09005584 struct ata_device *dev;
Tejun Heo720ba122006-05-31 18:28:13 +09005585
5586 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005587 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09005588
5589 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005590 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09005591 ap->pflags |= ATA_PFLAG_UNLOADING;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005592 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005593
5594 ata_port_wait_eh(ap);
5595
Tejun Heo7f9ad9b2007-12-15 15:05:00 +09005596 /* EH is now guaranteed to see UNLOADING - EH context belongs
5597 * to us. Disable all existing devices.
Tejun Heo720ba122006-05-31 18:28:13 +09005598 */
Tejun Heo41bda9c2007-08-06 18:36:24 +09005599 ata_port_for_each_link(link, ap) {
5600 ata_link_for_each_dev(dev, link)
5601 ata_dev_disable(dev);
5602 }
Tejun Heo720ba122006-05-31 18:28:13 +09005603
Tejun Heo720ba122006-05-31 18:28:13 +09005604 /* Final freeze & EH. All in-flight commands are aborted. EH
5605 * will be skipped and retrials will be terminated with bad
5606 * target.
5607 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005608 spin_lock_irqsave(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005609 ata_port_freeze(ap); /* won't be thawed */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005610 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09005611
5612 ata_port_wait_eh(ap);
Oleg Nesterov45a66c12007-07-09 11:46:13 -07005613 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09005614
Tejun Heoc3cf30a2006-08-05 03:59:11 +09005615 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09005616 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04005617 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09005618}
5619
5620/**
Tejun Heo0529c152007-01-20 16:00:26 +09005621 * ata_host_detach - Detach all ports of an ATA host
5622 * @host: Host to detach
5623 *
5624 * Detach all ports of @host.
5625 *
5626 * LOCKING:
5627 * Kernel thread context (may sleep).
5628 */
5629void ata_host_detach(struct ata_host *host)
5630{
5631 int i;
5632
5633 for (i = 0; i < host->n_ports; i++)
5634 ata_port_detach(host->ports[i]);
Tejun Heo562f0c22007-12-15 15:05:01 +09005635
5636 /* the host is dead now, dissociate ACPI */
5637 ata_acpi_dissociate(host);
Tejun Heo0529c152007-01-20 16:00:26 +09005638}
5639
Jeff Garzik374b1872005-08-30 05:42:52 -04005640#ifdef CONFIG_PCI
5641
Edward Falk0baab862005-06-02 18:17:13 -04005642/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 * ata_pci_remove_one - PCI layer callback for device removal
5644 * @pdev: PCI device that was removed
5645 *
Tejun Heob878ca52007-01-20 16:00:28 +09005646 * PCI layer indicates to libata via this hook that hot-unplug or
5647 * module unload event has occurred. Detach all ports. Resource
5648 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649 *
5650 * LOCKING:
5651 * Inherited from PCI layer (may sleep).
5652 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005653void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654{
Jeff Garzik28555682007-10-11 17:12:35 -04005655 struct device *dev = &pdev->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04005656 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657
Tejun Heob878ca52007-01-20 16:00:28 +09005658 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659}
5660
5661/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04005662int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663{
5664 unsigned long tmp = 0;
5665
5666 switch (bits->width) {
5667 case 1: {
5668 u8 tmp8 = 0;
5669 pci_read_config_byte(pdev, bits->reg, &tmp8);
5670 tmp = tmp8;
5671 break;
5672 }
5673 case 2: {
5674 u16 tmp16 = 0;
5675 pci_read_config_word(pdev, bits->reg, &tmp16);
5676 tmp = tmp16;
5677 break;
5678 }
5679 case 4: {
5680 u32 tmp32 = 0;
5681 pci_read_config_dword(pdev, bits->reg, &tmp32);
5682 tmp = tmp32;
5683 break;
5684 }
5685
5686 default:
5687 return -EINVAL;
5688 }
5689
5690 tmp &= bits->mask;
5691
5692 return (tmp == bits->val) ? 1 : 0;
5693}
Jens Axboe9b847542006-01-06 09:28:07 +01005694
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005695#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09005696void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01005697{
5698 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09005699 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09005700
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01005701 if (mesg.event & PM_EVENT_SLEEP)
Tejun Heo500530f2006-07-03 16:07:27 +09005702 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01005703}
5704
Tejun Heo553c4aa2006-12-26 19:39:50 +09005705int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01005706{
Tejun Heo553c4aa2006-12-26 19:39:50 +09005707 int rc;
5708
Jens Axboe9b847542006-01-06 09:28:07 +01005709 pci_set_power_state(pdev, PCI_D0);
5710 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005711
Tejun Heob878ca52007-01-20 16:00:28 +09005712 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005713 if (rc) {
5714 dev_printk(KERN_ERR, &pdev->dev,
5715 "failed to enable device after resume (%d)\n", rc);
5716 return rc;
5717 }
5718
Jens Axboe9b847542006-01-06 09:28:07 +01005719 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005720 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09005721}
5722
Tejun Heo3c5100c2006-07-26 16:58:33 +09005723int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005724{
Jeff Garzikcca39742006-08-24 03:19:22 -04005725 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09005726 int rc = 0;
5727
Jeff Garzikcca39742006-08-24 03:19:22 -04005728 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09005729 if (rc)
5730 return rc;
5731
Tejun Heo3c5100c2006-07-26 16:58:33 +09005732 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09005733
5734 return 0;
5735}
5736
5737int ata_pci_device_resume(struct pci_dev *pdev)
5738{
Jeff Garzikcca39742006-08-24 03:19:22 -04005739 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09005740 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005741
Tejun Heo553c4aa2006-12-26 19:39:50 +09005742 rc = ata_pci_device_do_resume(pdev);
5743 if (rc == 0)
5744 ata_host_resume(host);
5745 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01005746}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005747#endif /* CONFIG_PM */
5748
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749#endif /* CONFIG_PCI */
5750
Tejun Heo33267322008-02-13 09:15:09 +09005751static int __init ata_parse_force_one(char **cur,
5752 struct ata_force_ent *force_ent,
5753 const char **reason)
5754{
5755 /* FIXME: Currently, there's no way to tag init const data and
5756 * using __initdata causes build failure on some versions of
5757 * gcc. Once __initdataconst is implemented, add const to the
5758 * following structure.
5759 */
5760 static struct ata_force_param force_tbl[] __initdata = {
5761 { "40c", .cbl = ATA_CBL_PATA40 },
5762 { "80c", .cbl = ATA_CBL_PATA80 },
5763 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
5764 { "unk", .cbl = ATA_CBL_PATA_UNK },
5765 { "ign", .cbl = ATA_CBL_PATA_IGN },
5766 { "sata", .cbl = ATA_CBL_SATA },
5767 { "1.5Gbps", .spd_limit = 1 },
5768 { "3.0Gbps", .spd_limit = 2 },
5769 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
5770 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
5771 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
5772 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
5773 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
5774 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
5775 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
5776 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
5777 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
5778 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
5779 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
5780 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
5781 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
5782 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
5783 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5784 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5785 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
5786 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5787 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5788 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
5789 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5790 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5791 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
5792 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5793 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5794 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
5795 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5796 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5797 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
5798 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5799 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5800 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
5801 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5802 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5803 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
5804 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
5805 };
5806 char *start = *cur, *p = *cur;
5807 char *id, *val, *endp;
5808 const struct ata_force_param *match_fp = NULL;
5809 int nr_matches = 0, i;
5810
5811 /* find where this param ends and update *cur */
5812 while (*p != '\0' && *p != ',')
5813 p++;
5814
5815 if (*p == '\0')
5816 *cur = p;
5817 else
5818 *cur = p + 1;
5819
5820 *p = '\0';
5821
5822 /* parse */
5823 p = strchr(start, ':');
5824 if (!p) {
5825 val = strstrip(start);
5826 goto parse_val;
5827 }
5828 *p = '\0';
5829
5830 id = strstrip(start);
5831 val = strstrip(p + 1);
5832
5833 /* parse id */
5834 p = strchr(id, '.');
5835 if (p) {
5836 *p++ = '\0';
5837 force_ent->device = simple_strtoul(p, &endp, 10);
5838 if (p == endp || *endp != '\0') {
5839 *reason = "invalid device";
5840 return -EINVAL;
5841 }
5842 }
5843
5844 force_ent->port = simple_strtoul(id, &endp, 10);
5845 if (p == endp || *endp != '\0') {
5846 *reason = "invalid port/link";
5847 return -EINVAL;
5848 }
5849
5850 parse_val:
5851 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
5852 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
5853 const struct ata_force_param *fp = &force_tbl[i];
5854
5855 if (strncasecmp(val, fp->name, strlen(val)))
5856 continue;
5857
5858 nr_matches++;
5859 match_fp = fp;
5860
5861 if (strcasecmp(val, fp->name) == 0) {
5862 nr_matches = 1;
5863 break;
5864 }
5865 }
5866
5867 if (!nr_matches) {
5868 *reason = "unknown value";
5869 return -EINVAL;
5870 }
5871 if (nr_matches > 1) {
5872 *reason = "ambigious value";
5873 return -EINVAL;
5874 }
5875
5876 force_ent->param = *match_fp;
5877
5878 return 0;
5879}
5880
5881static void __init ata_parse_force_param(void)
5882{
5883 int idx = 0, size = 1;
5884 int last_port = -1, last_device = -1;
5885 char *p, *cur, *next;
5886
5887 /* calculate maximum number of params and allocate force_tbl */
5888 for (p = ata_force_param_buf; *p; p++)
5889 if (*p == ',')
5890 size++;
5891
5892 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
5893 if (!ata_force_tbl) {
5894 printk(KERN_WARNING "ata: failed to extend force table, "
5895 "libata.force ignored\n");
5896 return;
5897 }
5898
5899 /* parse and populate the table */
5900 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
5901 const char *reason = "";
5902 struct ata_force_ent te = { .port = -1, .device = -1 };
5903
5904 next = cur;
5905 if (ata_parse_force_one(&next, &te, &reason)) {
5906 printk(KERN_WARNING "ata: failed to parse force "
5907 "parameter \"%s\" (%s)\n",
5908 cur, reason);
5909 continue;
5910 }
5911
5912 if (te.port == -1) {
5913 te.port = last_port;
5914 te.device = last_device;
5915 }
5916
5917 ata_force_tbl[idx++] = te;
5918
5919 last_port = te.port;
5920 last_device = te.device;
5921 }
5922
5923 ata_force_tbl_size = idx;
5924}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926static int __init ata_init(void)
5927{
Andrew Mortona8601e52006-06-25 01:36:52 -07005928 ata_probe_timeout *= HZ;
Tejun Heo33267322008-02-13 09:15:09 +09005929
5930 ata_parse_force_param();
5931
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932 ata_wq = create_workqueue("ata");
5933 if (!ata_wq)
5934 return -ENOMEM;
5935
Tejun Heo453b07a2006-05-31 18:27:42 +09005936 ata_aux_wq = create_singlethread_workqueue("ata_aux");
5937 if (!ata_aux_wq) {
5938 destroy_workqueue(ata_wq);
5939 return -ENOMEM;
5940 }
5941
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
5943 return 0;
5944}
5945
5946static void __exit ata_exit(void)
5947{
Tejun Heo33267322008-02-13 09:15:09 +09005948 kfree(ata_force_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09005950 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951}
5952
Brian Kinga4625082006-11-13 16:32:36 -06005953subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954module_exit(ata_exit);
5955
Jeff Garzik67846b32005-10-05 02:58:32 -04005956static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07005957static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04005958
5959int ata_ratelimit(void)
5960{
5961 int rc;
5962 unsigned long flags;
5963
5964 spin_lock_irqsave(&ata_ratelimit_lock, flags);
5965
5966 if (time_after(jiffies, ratelimit_time)) {
5967 rc = 1;
5968 ratelimit_time = jiffies + (HZ/5);
5969 } else
5970 rc = 0;
5971
5972 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
5973
5974 return rc;
5975}
5976
Tejun Heoc22daff2006-04-11 22:22:29 +09005977/**
5978 * ata_wait_register - wait until register value changes
5979 * @reg: IO-mapped register
5980 * @mask: Mask to apply to read register value
5981 * @val: Wait condition
5982 * @interval_msec: polling interval in milliseconds
5983 * @timeout_msec: timeout in milliseconds
5984 *
5985 * Waiting for some bits of register to change is a common
5986 * operation for ATA controllers. This function reads 32bit LE
5987 * IO-mapped register @reg and tests for the following condition.
5988 *
5989 * (*@reg & mask) != val
5990 *
5991 * If the condition is met, it returns; otherwise, the process is
5992 * repeated after @interval_msec until timeout.
5993 *
5994 * LOCKING:
5995 * Kernel thread context (may sleep)
5996 *
5997 * RETURNS:
5998 * The final register value.
5999 */
6000u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
6001 unsigned long interval_msec,
6002 unsigned long timeout_msec)
6003{
6004 unsigned long timeout;
6005 u32 tmp;
6006
6007 tmp = ioread32(reg);
6008
6009 /* Calculate timeout _after_ the first read to make sure
6010 * preceding writes reach the controller before starting to
6011 * eat away the timeout.
6012 */
6013 timeout = jiffies + (timeout_msec * HZ) / 1000;
6014
6015 while ((tmp & mask) == val && time_before(jiffies, timeout)) {
6016 msleep(interval_msec);
6017 tmp = ioread32(reg);
6018 }
6019
6020 return tmp;
6021}
6022
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006024 * Dummy port_ops
6025 */
6026static void ata_dummy_noret(struct ata_port *ap) { }
6027static int ata_dummy_ret0(struct ata_port *ap) { return 0; }
6028static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { }
6029
6030static u8 ata_dummy_check_status(struct ata_port *ap)
6031{
6032 return ATA_DRDY;
6033}
6034
6035static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6036{
6037 return AC_ERR_SYSTEM;
6038}
6039
Tejun Heo029cfd62008-03-25 12:22:49 +09006040struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09006041 .check_status = ata_dummy_check_status,
6042 .check_altstatus = ata_dummy_check_status,
6043 .dev_select = ata_noop_dev_select,
6044 .qc_prep = ata_noop_qc_prep,
6045 .qc_issue = ata_dummy_qc_issue,
6046 .freeze = ata_dummy_noret,
6047 .thaw = ata_dummy_noret,
6048 .error_handler = ata_dummy_noret,
6049 .post_internal_cmd = ata_dummy_qc_noret,
6050 .irq_clear = ata_dummy_noret,
6051 .port_start = ata_dummy_ret0,
6052 .port_stop = ata_dummy_noret,
6053};
6054
Tejun Heo21b0ad42007-04-17 23:44:07 +09006055const struct ata_port_info ata_dummy_port_info = {
6056 .port_ops = &ata_dummy_port_ops,
6057};
6058
Tejun Heodd5b06c2006-08-10 16:59:12 +09006059/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060 * libata is essentially a library of internal helper functions for
6061 * low-level ATA host controller drivers. As such, the API/ABI is
6062 * likely to change as new drivers are added and updated.
6063 * Do not depend on ABI/API stability.
6064 */
Tejun Heoe9c83912006-07-03 16:07:26 +09006065EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6066EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6067EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heo029cfd62008-03-25 12:22:49 +09006068EXPORT_SYMBOL_GPL(ata_base_port_ops);
6069EXPORT_SYMBOL_GPL(sata_port_ops);
6070EXPORT_SYMBOL_GPL(sata_pmp_port_ops);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006071EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006072EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073EXPORT_SYMBOL_GPL(ata_std_bios_param);
Jeff Garzikcca39742006-08-24 03:19:22 -04006074EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006075EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006076EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heoecef7252007-04-17 23:44:06 +09006077EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006078EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006079EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09006080EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081EXPORT_SYMBOL_GPL(ata_sg_init);
Tejun Heof686bcb2006-05-15 20:58:05 +09006082EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006083EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084EXPORT_SYMBOL_GPL(ata_noop_dev_select);
Jeff Garzik43727fb2007-02-25 16:50:52 -05006085EXPORT_SYMBOL_GPL(sata_print_link_status);
Tejun Heo436d34b2008-04-02 17:28:46 +09006086EXPORT_SYMBOL_GPL(atapi_cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6088EXPORT_SYMBOL_GPL(ata_tf_from_fis);
Tejun Heo63573572007-11-27 19:43:39 +09006089EXPORT_SYMBOL_GPL(ata_pack_xfermask);
6090EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
6091EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
6092EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
6093EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
6094EXPORT_SYMBOL_GPL(ata_mode_string);
6095EXPORT_SYMBOL_GPL(ata_id_xfermask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096EXPORT_SYMBOL_GPL(ata_port_start);
Alan04351822007-03-06 02:37:52 -08006097EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo31cc23b2007-09-23 13:14:12 +09006098EXPORT_SYMBOL_GPL(ata_std_qc_defer);
Brian Kinge46834c2006-03-17 17:04:03 -06006099EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Tejun Heo358f9a72008-03-25 12:22:47 +09006100EXPORT_SYMBOL_GPL(ata_noop_irq_clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00006102EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09006103EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heo936fd732007-08-06 18:36:23 +09006104EXPORT_SYMBOL_GPL(sata_link_debounce);
6105EXPORT_SYMBOL_GPL(sata_link_resume);
Tejun Heocc0680a2007-08-06 18:36:23 +09006106EXPORT_SYMBOL_GPL(sata_link_hardreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006107EXPORT_SYMBOL_GPL(ata_dev_classify);
6108EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006110EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006111EXPORT_SYMBOL_GPL(ata_wait_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6113EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006115EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006116EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Tejun Heo34bf2172006-05-15 20:57:46 +09006117EXPORT_SYMBOL_GPL(sata_scr_valid);
6118EXPORT_SYMBOL_GPL(sata_scr_read);
6119EXPORT_SYMBOL_GPL(sata_scr_write);
6120EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09006121EXPORT_SYMBOL_GPL(ata_link_online);
6122EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006123#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006124EXPORT_SYMBOL_GPL(ata_host_suspend);
6125EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006126#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09006127EXPORT_SYMBOL_GPL(ata_id_string);
6128EXPORT_SYMBOL_GPL(ata_id_c_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6130
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006131EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Tejun Heo63573572007-11-27 19:43:39 +09006132EXPORT_SYMBOL_GPL(ata_timing_find_mode);
Alan Cox452503f2005-10-21 19:01:32 -04006133EXPORT_SYMBOL_GPL(ata_timing_compute);
6134EXPORT_SYMBOL_GPL(ata_timing_merge);
Tejun Heoa0f79b92007-12-18 16:33:05 +09006135EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
Alan Cox452503f2005-10-21 19:01:32 -04006136
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137#ifdef CONFIG_PCI
6138EXPORT_SYMBOL_GPL(pci_test_config_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006140#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09006141EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6142EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006143EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6144EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006145#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006147
Tejun Heo31f88382007-09-23 13:19:54 +09006148EXPORT_SYMBOL_GPL(sata_pmp_qc_defer_cmd_switch);
Tejun Heo3af9a772007-09-23 13:19:54 +09006149EXPORT_SYMBOL_GPL(sata_pmp_std_prereset);
6150EXPORT_SYMBOL_GPL(sata_pmp_std_hardreset);
6151EXPORT_SYMBOL_GPL(sata_pmp_std_postreset);
Tejun Heoa1efdab2008-03-25 12:22:50 +09006152EXPORT_SYMBOL_GPL(sata_pmp_error_handler);
Tejun Heo3af9a772007-09-23 13:19:54 +09006153
Tejun Heob64bbc32007-07-16 14:29:39 +09006154EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
6155EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
6156EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09006157EXPORT_SYMBOL_GPL(ata_port_desc);
6158#ifdef CONFIG_PCI
6159EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
6160#endif /* CONFIG_PCI */
Tejun Heo7b70fc02006-05-15 20:58:07 +09006161EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09006162EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006163EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006164EXPORT_SYMBOL_GPL(ata_port_freeze);
Tejun Heo7d77b242007-09-23 13:14:13 +09006165EXPORT_SYMBOL_GPL(sata_async_notification);
Tejun Heoe3180492006-05-15 20:58:09 +09006166EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6167EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006168EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6169EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Tejun Heo022bdb02006-05-15 20:58:22 +09006170EXPORT_SYMBOL_GPL(ata_do_eh);
Tejun Heoa1efdab2008-03-25 12:22:50 +09006171EXPORT_SYMBOL_GPL(ata_std_error_handler);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006172
6173EXPORT_SYMBOL_GPL(ata_cable_40wire);
6174EXPORT_SYMBOL_GPL(ata_cable_80wire);
6175EXPORT_SYMBOL_GPL(ata_cable_unknown);
Tejun Heoc88f90c2007-11-27 19:43:48 +09006176EXPORT_SYMBOL_GPL(ata_cable_ignore);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006177EXPORT_SYMBOL_GPL(ata_cable_sata);