blob: 4f78741692dc19078ebe10df68c306db6d00561d [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>
David Hardeman378f0582005-09-17 17:55:31 +100057#include <linux/scatterlist.h>
Jeff Garzik2dcb4072007-10-19 06:42:56 -040058#include <linux/io.h>
Arjan van de Ven79318052009-01-04 05:32:28 -080059#include <linux/async.h>
Mark Lorde18086d2009-03-19 13:32:21 -040060#include <linux/log2.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090061#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050063#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <scsi/scsi_host.h>
65#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <asm/byteorder.h>
Tejun Heo140b5e52007-12-12 12:21:52 +090067#include <linux/cdrom.h>
Akinobu Mita9990b6f2010-04-12 21:11:41 +090068#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#include "libata.h"
71
Jeff Garzikfda0efc2007-01-31 07:43:15 -050072
Tejun Heod7bb4cc2006-05-31 18:27:46 +090073/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090074const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
75const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
76const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090077
Tejun Heo029cfd62008-03-25 12:22:49 +090078const struct ata_port_operations ata_base_port_ops = {
Tejun Heo0aa11132008-04-07 22:47:18 +090079 .prereset = ata_std_prereset,
Tejun Heo203c75b2008-04-07 22:47:18 +090080 .postreset = ata_std_postreset,
Tejun Heoa1efdab2008-03-25 12:22:50 +090081 .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,
Tejun Heo57c9efd2008-04-07 22:47:19 +090088 .hardreset = sata_std_hardreset,
Tejun Heo029cfd62008-03-25 12:22:49 +090089};
90
Tejun Heo3373efd2006-05-15 20:57:53 +090091static unsigned int ata_dev_init_params(struct ata_device *dev,
92 u16 heads, u16 sectors);
93static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Jeff Garzik218f3d32007-10-25 00:33:27 -040094static unsigned int ata_dev_set_feature(struct ata_device *dev,
95 u8 enable, u8 feature);
Tejun Heo3373efd2006-05-15 20:57:53 +090096static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090097static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Tejun Heof3187192007-04-17 23:44:07 +090099unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Tejun Heo33267322008-02-13 09:15:09 +0900101struct ata_force_param {
102 const char *name;
103 unsigned int cbl;
104 int spd_limit;
105 unsigned long xfer_mask;
106 unsigned int horkage_on;
107 unsigned int horkage_off;
Tejun Heo05944bd2008-08-13 20:19:09 +0900108 unsigned int lflags;
Tejun Heo33267322008-02-13 09:15:09 +0900109};
110
111struct ata_force_ent {
112 int port;
113 int device;
114 struct ata_force_param param;
115};
116
117static struct ata_force_ent *ata_force_tbl;
118static int ata_force_tbl_size;
119
120static char ata_force_param_buf[PAGE_SIZE] __initdata;
Tejun Heo7afb4222008-03-09 20:21:53 +0900121/* param_buf is thrown away after initialization, disallow read */
122module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0);
Tejun Heo33267322008-02-13 09:15:09 +0900123MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)");
124
Tejun Heo2486fa52008-07-31 07:52:40 +0900125static int atapi_enabled = 1;
Jeff Garzik1623c812005-08-30 03:37:42 -0400126module_param(atapi_enabled, int, 0444);
Evgeni Golovad5d8ea2009-06-22 09:46:20 +0200127MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on [default])");
Jeff Garzik1623c812005-08-30 03:37:42 -0400128
Adrian Bunkc5c61bd2008-02-25 02:07:25 +0200129static int atapi_dmadir = 0;
Albert Lee95de7192006-04-04 10:57:18 +0800130module_param(atapi_dmadir, int, 0444);
Evgeni Golovad5d8ea2009-06-22 09:46:20 +0200131MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off [default], 1=on)");
Albert Lee95de7192006-04-04 10:57:18 +0800132
Mark Lordbaf4fdf2007-08-08 01:08:45 +0900133int atapi_passthru16 = 1;
134module_param(atapi_passthru16, int, 0444);
Evgeni Golovad5d8ea2009-06-22 09:46:20 +0200135MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices (0=off, 1=on [default])");
Mark Lordbaf4fdf2007-08-08 01:08:45 +0900136
Jeff Garzikc3c013a2006-02-27 22:31:19 -0500137int libata_fua = 0;
138module_param_named(fua, libata_fua, int, 0444);
Evgeni Golovad5d8ea2009-06-22 09:46:20 +0200139MODULE_PARM_DESC(fua, "FUA support (0=off [default], 1=on)");
Jeff Garzikc3c013a2006-02-27 22:31:19 -0500140
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400141static int ata_ignore_hpa;
Alan Cox1e999732007-04-11 00:23:13 +0100142module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
143MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
144
Alan Coxb3a70602007-10-02 12:38:26 -0400145static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
146module_param_named(dma, libata_dma_mask, int, 0444);
147MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
148
Tejun Heo87fbc5a2008-05-20 02:17:54 +0900149static int ata_probe_timeout;
Andrew Mortona8601e52006-06-25 01:36:52 -0700150module_param(ata_probe_timeout, int, 0444);
151MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
152
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400153int libata_noacpi = 0;
Jeff Garzikd7d0dad2007-03-28 01:57:37 -0400154module_param_named(noacpi, libata_noacpi, int, 0444);
Evgeni Golovad5d8ea2009-06-22 09:46:20 +0200155MODULE_PARM_DESC(noacpi, "Disable the use of ACPI in probe/suspend/resume (0=off [default], 1=on)");
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700156
Alan Coxae8d4ee2007-11-04 22:05:49 -0500157int libata_allow_tpm = 0;
158module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
Evgeni Golovad5d8ea2009-06-22 09:46:20 +0200159MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands (0=off [default], 1=on)");
Alan Coxae8d4ee2007-11-04 22:05:49 -0500160
Tejun Heoe7ecd432010-05-19 15:38:58 +0200161static int atapi_an;
162module_param(atapi_an, int, 0444);
163MODULE_PARM_DESC(atapi_an, "Enable ATAPI AN media presence notification (0=0ff [default], 1=on)");
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165MODULE_AUTHOR("Jeff Garzik");
166MODULE_DESCRIPTION("Library module for ATA devices");
167MODULE_LICENSE("GPL");
168MODULE_VERSION(DRV_VERSION);
169
Edward Falk0baab862005-06-02 18:17:13 -0400170
Tejun Heo9913ff82009-01-29 20:31:31 +0900171static bool ata_sstatus_online(u32 sstatus)
172{
173 return (sstatus & 0xf) == 0x3;
174}
175
Tejun Heo1eca4362008-11-03 20:03:17 +0900176/**
177 * ata_link_next - link iteration helper
178 * @link: the previous link, NULL to start
179 * @ap: ATA port containing links to iterate
180 * @mode: iteration mode, one of ATA_LITER_*
Tejun Heoaadffb62008-07-31 17:02:41 +0900181 *
Tejun Heo1eca4362008-11-03 20:03:17 +0900182 * LOCKING:
183 * Host lock or EH context.
184 *
185 * RETURNS:
186 * Pointer to the next link.
Tejun Heoaadffb62008-07-31 17:02:41 +0900187 */
Tejun Heo1eca4362008-11-03 20:03:17 +0900188struct ata_link *ata_link_next(struct ata_link *link, struct ata_port *ap,
189 enum ata_link_iter_mode mode)
Tejun Heoaadffb62008-07-31 17:02:41 +0900190{
Tejun Heo1eca4362008-11-03 20:03:17 +0900191 BUG_ON(mode != ATA_LITER_EDGE &&
192 mode != ATA_LITER_PMP_FIRST && mode != ATA_LITER_HOST_FIRST);
Tejun Heoaadffb62008-07-31 17:02:41 +0900193
Tejun Heo1eca4362008-11-03 20:03:17 +0900194 /* NULL link indicates start of iteration */
195 if (!link)
196 switch (mode) {
197 case ATA_LITER_EDGE:
198 case ATA_LITER_PMP_FIRST:
199 if (sata_pmp_attached(ap))
200 return ap->pmp_link;
201 /* fall through */
202 case ATA_LITER_HOST_FIRST:
203 return &ap->link;
204 }
205
206 /* we just iterated over the host link, what's next? */
207 if (link == &ap->link)
208 switch (mode) {
209 case ATA_LITER_HOST_FIRST:
210 if (sata_pmp_attached(ap))
211 return ap->pmp_link;
212 /* fall through */
213 case ATA_LITER_PMP_FIRST:
214 if (unlikely(ap->slave_link))
Tejun Heob1c72912008-07-31 17:02:43 +0900215 return ap->slave_link;
Tejun Heo1eca4362008-11-03 20:03:17 +0900216 /* fall through */
217 case ATA_LITER_EDGE:
Tejun Heoaadffb62008-07-31 17:02:41 +0900218 return NULL;
Tejun Heob1c72912008-07-31 17:02:43 +0900219 }
Tejun Heoaadffb62008-07-31 17:02:41 +0900220
Tejun Heob1c72912008-07-31 17:02:43 +0900221 /* slave_link excludes PMP */
222 if (unlikely(link == ap->slave_link))
223 return NULL;
224
Tejun Heo1eca4362008-11-03 20:03:17 +0900225 /* we were over a PMP link */
Tejun Heoaadffb62008-07-31 17:02:41 +0900226 if (++link < ap->pmp_link + ap->nr_pmp_links)
227 return link;
Tejun Heo1eca4362008-11-03 20:03:17 +0900228
229 if (mode == ATA_LITER_PMP_FIRST)
230 return &ap->link;
231
Tejun Heoaadffb62008-07-31 17:02:41 +0900232 return NULL;
233}
234
Edward Falk0baab862005-06-02 18:17:13 -0400235/**
Tejun Heo1eca4362008-11-03 20:03:17 +0900236 * ata_dev_next - device iteration helper
237 * @dev: the previous device, NULL to start
238 * @link: ATA link containing devices to iterate
239 * @mode: iteration mode, one of ATA_DITER_*
240 *
241 * LOCKING:
242 * Host lock or EH context.
243 *
244 * RETURNS:
245 * Pointer to the next device.
246 */
247struct ata_device *ata_dev_next(struct ata_device *dev, struct ata_link *link,
248 enum ata_dev_iter_mode mode)
249{
250 BUG_ON(mode != ATA_DITER_ENABLED && mode != ATA_DITER_ENABLED_REVERSE &&
251 mode != ATA_DITER_ALL && mode != ATA_DITER_ALL_REVERSE);
252
253 /* NULL dev indicates start of iteration */
254 if (!dev)
255 switch (mode) {
256 case ATA_DITER_ENABLED:
257 case ATA_DITER_ALL:
258 dev = link->device;
259 goto check;
260 case ATA_DITER_ENABLED_REVERSE:
261 case ATA_DITER_ALL_REVERSE:
262 dev = link->device + ata_link_max_devices(link) - 1;
263 goto check;
264 }
265
266 next:
267 /* move to the next one */
268 switch (mode) {
269 case ATA_DITER_ENABLED:
270 case ATA_DITER_ALL:
271 if (++dev < link->device + ata_link_max_devices(link))
272 goto check;
273 return NULL;
274 case ATA_DITER_ENABLED_REVERSE:
275 case ATA_DITER_ALL_REVERSE:
276 if (--dev >= link->device)
277 goto check;
278 return NULL;
279 }
280
281 check:
282 if ((mode == ATA_DITER_ENABLED || mode == ATA_DITER_ENABLED_REVERSE) &&
283 !ata_dev_enabled(dev))
284 goto next;
285 return dev;
286}
287
288/**
Tejun Heob1c72912008-07-31 17:02:43 +0900289 * ata_dev_phys_link - find physical link for a device
290 * @dev: ATA device to look up physical link for
291 *
292 * Look up physical link which @dev is attached to. Note that
293 * this is different from @dev->link only when @dev is on slave
294 * link. For all other cases, it's the same as @dev->link.
295 *
296 * LOCKING:
297 * Don't care.
298 *
299 * RETURNS:
300 * Pointer to the found physical link.
301 */
302struct ata_link *ata_dev_phys_link(struct ata_device *dev)
303{
304 struct ata_port *ap = dev->link->ap;
305
306 if (!ap->slave_link)
307 return dev->link;
308 if (!dev->devno)
309 return &ap->link;
310 return ap->slave_link;
311}
312
313/**
Tejun Heo33267322008-02-13 09:15:09 +0900314 * ata_force_cbl - force cable type according to libata.force
Randy Dunlap4cdfa1b2008-02-22 12:21:37 -0800315 * @ap: ATA port of interest
Tejun Heo33267322008-02-13 09:15:09 +0900316 *
317 * Force cable type according to libata.force and whine about it.
318 * The last entry which has matching port number is used, so it
319 * can be specified as part of device force parameters. For
320 * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
321 * same effect.
322 *
323 * LOCKING:
324 * EH context.
325 */
326void ata_force_cbl(struct ata_port *ap)
327{
328 int i;
329
330 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
331 const struct ata_force_ent *fe = &ata_force_tbl[i];
332
333 if (fe->port != -1 && fe->port != ap->print_id)
334 continue;
335
336 if (fe->param.cbl == ATA_CBL_NONE)
337 continue;
338
339 ap->cbl = fe->param.cbl;
340 ata_port_printk(ap, KERN_NOTICE,
341 "FORCE: cable set to %s\n", fe->param.name);
342 return;
343 }
344}
345
346/**
Tejun Heo05944bd2008-08-13 20:19:09 +0900347 * ata_force_link_limits - force link limits according to libata.force
Tejun Heo33267322008-02-13 09:15:09 +0900348 * @link: ATA link of interest
349 *
Tejun Heo05944bd2008-08-13 20:19:09 +0900350 * Force link flags and SATA spd limit according to libata.force
351 * and whine about it. When only the port part is specified
352 * (e.g. 1:), the limit applies to all links connected to both
353 * the host link and all fan-out ports connected via PMP. If the
354 * device part is specified as 0 (e.g. 1.00:), it specifies the
355 * first fan-out link not the host link. Device number 15 always
Tejun Heob1c72912008-07-31 17:02:43 +0900356 * points to the host link whether PMP is attached or not. If the
357 * controller has slave link, device number 16 points to it.
Tejun Heo33267322008-02-13 09:15:09 +0900358 *
359 * LOCKING:
360 * EH context.
361 */
Tejun Heo05944bd2008-08-13 20:19:09 +0900362static void ata_force_link_limits(struct ata_link *link)
Tejun Heo33267322008-02-13 09:15:09 +0900363{
Tejun Heo05944bd2008-08-13 20:19:09 +0900364 bool did_spd = false;
Tejun Heob1c72912008-07-31 17:02:43 +0900365 int linkno = link->pmp;
366 int i;
Tejun Heo33267322008-02-13 09:15:09 +0900367
368 if (ata_is_host_link(link))
Tejun Heob1c72912008-07-31 17:02:43 +0900369 linkno += 15;
Tejun Heo33267322008-02-13 09:15:09 +0900370
371 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
372 const struct ata_force_ent *fe = &ata_force_tbl[i];
373
374 if (fe->port != -1 && fe->port != link->ap->print_id)
375 continue;
376
377 if (fe->device != -1 && fe->device != linkno)
378 continue;
379
Tejun Heo05944bd2008-08-13 20:19:09 +0900380 /* only honor the first spd limit */
381 if (!did_spd && fe->param.spd_limit) {
382 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
383 ata_link_printk(link, KERN_NOTICE,
384 "FORCE: PHY spd limit set to %s\n",
385 fe->param.name);
386 did_spd = true;
387 }
Tejun Heo33267322008-02-13 09:15:09 +0900388
Tejun Heo05944bd2008-08-13 20:19:09 +0900389 /* let lflags stack */
390 if (fe->param.lflags) {
391 link->flags |= fe->param.lflags;
392 ata_link_printk(link, KERN_NOTICE,
393 "FORCE: link flag 0x%x forced -> 0x%x\n",
394 fe->param.lflags, link->flags);
395 }
Tejun Heo33267322008-02-13 09:15:09 +0900396 }
397}
398
399/**
400 * ata_force_xfermask - force xfermask according to libata.force
401 * @dev: ATA device of interest
402 *
403 * Force xfer_mask according to libata.force and whine about it.
404 * For consistency with link selection, device number 15 selects
405 * the first device connected to the host link.
406 *
407 * LOCKING:
408 * EH context.
409 */
410static void ata_force_xfermask(struct ata_device *dev)
411{
412 int devno = dev->link->pmp + dev->devno;
413 int alt_devno = devno;
414 int i;
415
Tejun Heob1c72912008-07-31 17:02:43 +0900416 /* allow n.15/16 for devices attached to host port */
417 if (ata_is_host_link(dev->link))
418 alt_devno += 15;
Tejun Heo33267322008-02-13 09:15:09 +0900419
420 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
421 const struct ata_force_ent *fe = &ata_force_tbl[i];
422 unsigned long pio_mask, mwdma_mask, udma_mask;
423
424 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
425 continue;
426
427 if (fe->device != -1 && fe->device != devno &&
428 fe->device != alt_devno)
429 continue;
430
431 if (!fe->param.xfer_mask)
432 continue;
433
434 ata_unpack_xfermask(fe->param.xfer_mask,
435 &pio_mask, &mwdma_mask, &udma_mask);
436 if (udma_mask)
437 dev->udma_mask = udma_mask;
438 else if (mwdma_mask) {
439 dev->udma_mask = 0;
440 dev->mwdma_mask = mwdma_mask;
441 } else {
442 dev->udma_mask = 0;
443 dev->mwdma_mask = 0;
444 dev->pio_mask = pio_mask;
445 }
446
447 ata_dev_printk(dev, KERN_NOTICE,
448 "FORCE: xfer_mask set to %s\n", fe->param.name);
449 return;
450 }
451}
452
453/**
454 * ata_force_horkage - force horkage according to libata.force
455 * @dev: ATA device of interest
456 *
457 * Force horkage according to libata.force and whine about it.
458 * For consistency with link selection, device number 15 selects
459 * the first device connected to the host link.
460 *
461 * LOCKING:
462 * EH context.
463 */
464static void ata_force_horkage(struct ata_device *dev)
465{
466 int devno = dev->link->pmp + dev->devno;
467 int alt_devno = devno;
468 int i;
469
Tejun Heob1c72912008-07-31 17:02:43 +0900470 /* allow n.15/16 for devices attached to host port */
471 if (ata_is_host_link(dev->link))
472 alt_devno += 15;
Tejun Heo33267322008-02-13 09:15:09 +0900473
474 for (i = 0; i < ata_force_tbl_size; i++) {
475 const struct ata_force_ent *fe = &ata_force_tbl[i];
476
477 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
478 continue;
479
480 if (fe->device != -1 && fe->device != devno &&
481 fe->device != alt_devno)
482 continue;
483
484 if (!(~dev->horkage & fe->param.horkage_on) &&
485 !(dev->horkage & fe->param.horkage_off))
486 continue;
487
488 dev->horkage |= fe->param.horkage_on;
489 dev->horkage &= ~fe->param.horkage_off;
490
491 ata_dev_printk(dev, KERN_NOTICE,
492 "FORCE: horkage modified (%s)\n", fe->param.name);
493 }
494}
495
496/**
Tejun Heo436d34b2008-04-02 17:28:46 +0900497 * atapi_cmd_type - Determine ATAPI command type from SCSI opcode
498 * @opcode: SCSI opcode
499 *
500 * Determine ATAPI command type from @opcode.
501 *
502 * LOCKING:
503 * None.
504 *
505 * RETURNS:
506 * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
507 */
508int atapi_cmd_type(u8 opcode)
509{
510 switch (opcode) {
511 case GPCMD_READ_10:
512 case GPCMD_READ_12:
513 return ATAPI_READ;
514
515 case GPCMD_WRITE_10:
516 case GPCMD_WRITE_12:
517 case GPCMD_WRITE_AND_VERIFY_10:
518 return ATAPI_WRITE;
519
520 case GPCMD_READ_CD:
521 case GPCMD_READ_CD_MSF:
522 return ATAPI_READ_CD;
523
Tejun Heoe52dcc42008-04-02 17:35:19 +0900524 case ATA_16:
525 case ATA_12:
526 if (atapi_passthru16)
527 return ATAPI_PASS_THRU;
528 /* fall thru */
Tejun Heo436d34b2008-04-02 17:28:46 +0900529 default:
530 return ATAPI_MISC;
531 }
532}
533
534/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
536 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900538 * @is_cmd: This FIS is for command
539 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 *
541 * Converts a standard ATA taskfile to a Serial ATA
542 * FIS structure (Register - Host to Device).
543 *
544 * LOCKING:
545 * Inherited from caller.
546 */
Tejun Heo99771262007-07-16 14:29:38 +0900547void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Tejun Heo99771262007-07-16 14:29:38 +0900549 fis[0] = 0x27; /* Register - Host to Device FIS */
550 fis[1] = pmp & 0xf; /* Port multiplier number*/
551 if (is_cmd)
552 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 fis[2] = tf->command;
555 fis[3] = tf->feature;
556
557 fis[4] = tf->lbal;
558 fis[5] = tf->lbam;
559 fis[6] = tf->lbah;
560 fis[7] = tf->device;
561
562 fis[8] = tf->hob_lbal;
563 fis[9] = tf->hob_lbam;
564 fis[10] = tf->hob_lbah;
565 fis[11] = tf->hob_feature;
566
567 fis[12] = tf->nsect;
568 fis[13] = tf->hob_nsect;
569 fis[14] = 0;
570 fis[15] = tf->ctl;
571
572 fis[16] = 0;
573 fis[17] = 0;
574 fis[18] = 0;
575 fis[19] = 0;
576}
577
578/**
579 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
580 * @fis: Buffer from which data will be input
581 * @tf: Taskfile to output
582 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500583 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 *
585 * LOCKING:
586 * Inherited from caller.
587 */
588
Jeff Garzik057ace52005-10-22 14:27:05 -0400589void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
591 tf->command = fis[2]; /* status */
592 tf->feature = fis[3]; /* error */
593
594 tf->lbal = fis[4];
595 tf->lbam = fis[5];
596 tf->lbah = fis[6];
597 tf->device = fis[7];
598
599 tf->hob_lbal = fis[8];
600 tf->hob_lbam = fis[9];
601 tf->hob_lbah = fis[10];
602
603 tf->nsect = fis[12];
604 tf->hob_nsect = fis[13];
605}
606
Albert Lee8cbd6df2005-10-12 15:06:27 +0800607static const u8 ata_rw_cmds[] = {
608 /* pio multi */
609 ATA_CMD_READ_MULTI,
610 ATA_CMD_WRITE_MULTI,
611 ATA_CMD_READ_MULTI_EXT,
612 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100613 0,
614 0,
615 0,
616 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800617 /* pio */
618 ATA_CMD_PIO_READ,
619 ATA_CMD_PIO_WRITE,
620 ATA_CMD_PIO_READ_EXT,
621 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100622 0,
623 0,
624 0,
625 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800626 /* dma */
627 ATA_CMD_READ,
628 ATA_CMD_WRITE,
629 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100630 ATA_CMD_WRITE_EXT,
631 0,
632 0,
633 0,
634 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800635};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800638 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900639 * @tf: command to examine and configure
640 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500642 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800643 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 *
645 * LOCKING:
646 * caller.
647 */
Tejun Heobd056d72006-11-14 22:47:10 +0900648static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100650 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100652 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500653
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100654 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800655 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
656 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Albert Lee8cbd6df2005-10-12 15:06:27 +0800658 if (dev->flags & ATA_DFLAG_PIO) {
659 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100660 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900661 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000662 /* Unable to use DMA due to host limitation */
663 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800664 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800665 } else {
666 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100667 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100670 cmd = ata_rw_cmds[index + fua + lba48 + write];
671 if (cmd) {
672 tf->command = cmd;
673 return 0;
674 }
675 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Tejun Heocb95d562006-03-06 04:31:56 +0900678/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900679 * ata_tf_read_block - Read block address from ATA taskfile
680 * @tf: ATA taskfile of interest
681 * @dev: ATA device @tf belongs to
682 *
683 * LOCKING:
684 * None.
685 *
686 * Read block address from @tf. This function can handle all
687 * three address formats - LBA, LBA48 and CHS. tf->protocol and
688 * flags select the address format to use.
689 *
690 * RETURNS:
691 * Block address read from @tf.
692 */
693u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
694{
695 u64 block = 0;
696
697 if (tf->flags & ATA_TFLAG_LBA) {
698 if (tf->flags & ATA_TFLAG_LBA48) {
699 block |= (u64)tf->hob_lbah << 40;
700 block |= (u64)tf->hob_lbam << 32;
Roland Dreier44901a92008-11-04 10:34:48 -0800701 block |= (u64)tf->hob_lbal << 24;
Tejun Heo35b649f2006-11-14 22:37:35 +0900702 } else
703 block |= (tf->device & 0xf) << 24;
704
705 block |= tf->lbah << 16;
706 block |= tf->lbam << 8;
707 block |= tf->lbal;
708 } else {
709 u32 cyl, head, sect;
710
711 cyl = tf->lbam | (tf->lbah << 8);
712 head = tf->device & 0xf;
713 sect = tf->lbal;
714
Tejun Heoac8672e2009-08-16 21:21:21 +0900715 if (!sect) {
716 ata_dev_printk(dev, KERN_WARNING, "device reported "
717 "invalid CHS sector 0\n");
718 sect = 1; /* oh well */
719 }
720
721 block = (cyl * dev->heads + head) * dev->sectors + sect - 1;
Tejun Heo35b649f2006-11-14 22:37:35 +0900722 }
723
724 return block;
725}
726
727/**
Tejun Heobd056d72006-11-14 22:47:10 +0900728 * ata_build_rw_tf - Build ATA taskfile for given read/write request
729 * @tf: Target ATA taskfile
730 * @dev: ATA device @tf belongs to
731 * @block: Block address
732 * @n_block: Number of blocks
733 * @tf_flags: RW/FUA etc...
734 * @tag: tag
735 *
736 * LOCKING:
737 * None.
738 *
739 * Build ATA taskfile @tf for read/write request described by
740 * @block, @n_block, @tf_flags and @tag on @dev.
741 *
742 * RETURNS:
743 *
744 * 0 on success, -ERANGE if the request is too large for @dev,
745 * -EINVAL if the request is invalid.
746 */
747int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
748 u64 block, u32 n_block, unsigned int tf_flags,
749 unsigned int tag)
750{
751 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
752 tf->flags |= tf_flags;
753
Tejun Heo6d1245b2007-02-20 23:20:27 +0900754 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900755 /* yay, NCQ */
756 if (!lba_48_ok(block, n_block))
757 return -ERANGE;
758
759 tf->protocol = ATA_PROT_NCQ;
760 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
761
762 if (tf->flags & ATA_TFLAG_WRITE)
763 tf->command = ATA_CMD_FPDMA_WRITE;
764 else
765 tf->command = ATA_CMD_FPDMA_READ;
766
767 tf->nsect = tag << 3;
768 tf->hob_feature = (n_block >> 8) & 0xff;
769 tf->feature = n_block & 0xff;
770
771 tf->hob_lbah = (block >> 40) & 0xff;
772 tf->hob_lbam = (block >> 32) & 0xff;
773 tf->hob_lbal = (block >> 24) & 0xff;
774 tf->lbah = (block >> 16) & 0xff;
775 tf->lbam = (block >> 8) & 0xff;
776 tf->lbal = block & 0xff;
777
778 tf->device = 1 << 6;
779 if (tf->flags & ATA_TFLAG_FUA)
780 tf->device |= 1 << 7;
781 } else if (dev->flags & ATA_DFLAG_LBA) {
782 tf->flags |= ATA_TFLAG_LBA;
783
784 if (lba_28_ok(block, n_block)) {
785 /* use LBA28 */
786 tf->device |= (block >> 24) & 0xf;
787 } else if (lba_48_ok(block, n_block)) {
788 if (!(dev->flags & ATA_DFLAG_LBA48))
789 return -ERANGE;
790
791 /* use LBA48 */
792 tf->flags |= ATA_TFLAG_LBA48;
793
794 tf->hob_nsect = (n_block >> 8) & 0xff;
795
796 tf->hob_lbah = (block >> 40) & 0xff;
797 tf->hob_lbam = (block >> 32) & 0xff;
798 tf->hob_lbal = (block >> 24) & 0xff;
799 } else
800 /* request too large even for LBA48 */
801 return -ERANGE;
802
803 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
804 return -EINVAL;
805
806 tf->nsect = n_block & 0xff;
807
808 tf->lbah = (block >> 16) & 0xff;
809 tf->lbam = (block >> 8) & 0xff;
810 tf->lbal = block & 0xff;
811
812 tf->device |= ATA_LBA;
813 } else {
814 /* CHS */
815 u32 sect, head, cyl, track;
816
817 /* The request -may- be too large for CHS addressing. */
818 if (!lba_28_ok(block, n_block))
819 return -ERANGE;
820
821 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
822 return -EINVAL;
823
824 /* Convert LBA to CHS */
825 track = (u32)block / dev->sectors;
826 cyl = track / dev->heads;
827 head = track % dev->heads;
828 sect = (u32)block % dev->sectors + 1;
829
830 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
831 (u32)block, track, cyl, head, sect);
832
833 /* Check whether the converted CHS can fit.
834 Cylinder: 0-65535
835 Head: 0-15
836 Sector: 1-255*/
837 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
838 return -ERANGE;
839
840 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
841 tf->lbal = sect;
842 tf->lbam = cyl;
843 tf->lbah = cyl >> 8;
844 tf->device |= head;
845 }
846
847 return 0;
848}
849
850/**
Tejun Heocb95d562006-03-06 04:31:56 +0900851 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
852 * @pio_mask: pio_mask
853 * @mwdma_mask: mwdma_mask
854 * @udma_mask: udma_mask
855 *
856 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
857 * unsigned int xfer_mask.
858 *
859 * LOCKING:
860 * None.
861 *
862 * RETURNS:
863 * Packed xfer_mask.
864 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900865unsigned long ata_pack_xfermask(unsigned long pio_mask,
866 unsigned long mwdma_mask,
867 unsigned long udma_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900868{
869 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
870 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
871 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
872}
873
Tejun Heoc0489e42006-03-24 14:07:49 +0900874/**
875 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
876 * @xfer_mask: xfer_mask to unpack
877 * @pio_mask: resulting pio_mask
878 * @mwdma_mask: resulting mwdma_mask
879 * @udma_mask: resulting udma_mask
880 *
881 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
882 * Any NULL distination masks will be ignored.
883 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900884void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
885 unsigned long *mwdma_mask, unsigned long *udma_mask)
Tejun Heoc0489e42006-03-24 14:07:49 +0900886{
887 if (pio_mask)
888 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
889 if (mwdma_mask)
890 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
891 if (udma_mask)
892 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
893}
894
Tejun Heocb95d562006-03-06 04:31:56 +0900895static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900896 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900897 u8 base;
898} ata_xfer_tbl[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +0900899 { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
900 { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
901 { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
Tejun Heocb95d562006-03-06 04:31:56 +0900902 { -1, },
903};
904
905/**
906 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
907 * @xfer_mask: xfer_mask of interest
908 *
909 * Return matching XFER_* value for @xfer_mask. Only the highest
910 * bit of @xfer_mask is considered.
911 *
912 * LOCKING:
913 * None.
914 *
915 * RETURNS:
Tejun Heo70cd0712007-11-27 19:43:40 +0900916 * Matching XFER_* value, 0xff if no match found.
Tejun Heocb95d562006-03-06 04:31:56 +0900917 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900918u8 ata_xfer_mask2mode(unsigned long xfer_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900919{
920 int highbit = fls(xfer_mask) - 1;
921 const struct ata_xfer_ent *ent;
922
923 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
924 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
925 return ent->base + highbit - ent->shift;
Tejun Heo70cd0712007-11-27 19:43:40 +0900926 return 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900927}
928
929/**
930 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
931 * @xfer_mode: XFER_* of interest
932 *
933 * Return matching xfer_mask for @xfer_mode.
934 *
935 * LOCKING:
936 * None.
937 *
938 * RETURNS:
939 * Matching xfer_mask, 0 if no match found.
940 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900941unsigned long ata_xfer_mode2mask(u8 xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900942{
943 const struct ata_xfer_ent *ent;
944
945 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
946 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
Tejun Heo70cd0712007-11-27 19:43:40 +0900947 return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
948 & ~((1 << ent->shift) - 1);
Tejun Heocb95d562006-03-06 04:31:56 +0900949 return 0;
950}
951
952/**
953 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
954 * @xfer_mode: XFER_* of interest
955 *
956 * Return matching xfer_shift for @xfer_mode.
957 *
958 * LOCKING:
959 * None.
960 *
961 * RETURNS:
962 * Matching xfer_shift, -1 if no match found.
963 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900964int ata_xfer_mode2shift(unsigned long xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900965{
966 const struct ata_xfer_ent *ent;
967
968 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
969 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
970 return ent->shift;
971 return -1;
972}
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900975 * ata_mode_string - convert xfer_mask to string
976 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 *
978 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900979 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 *
981 * LOCKING:
982 * None.
983 *
984 * RETURNS:
985 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900986 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900988const char *ata_mode_string(unsigned long xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
Tejun Heo75f554b2006-03-06 04:31:57 +0900990 static const char * const xfer_mode_str[] = {
991 "PIO0",
992 "PIO1",
993 "PIO2",
994 "PIO3",
995 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100996 "PIO5",
997 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900998 "MWDMA0",
999 "MWDMA1",
1000 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +01001001 "MWDMA3",
1002 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +09001003 "UDMA/16",
1004 "UDMA/25",
1005 "UDMA/33",
1006 "UDMA/44",
1007 "UDMA/66",
1008 "UDMA/100",
1009 "UDMA/133",
1010 "UDMA7",
1011 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +09001012 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Tejun Heo1da7b0d2006-03-06 04:31:56 +09001014 highbit = fls(xfer_mask) - 1;
1015 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
1016 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Tejun Heo4c360c82006-04-01 01:38:17 +09001020static const char *sata_spd_string(unsigned int spd)
1021{
1022 static const char * const spd_str[] = {
1023 "1.5 Gbps",
1024 "3.0 Gbps",
Shane Huang8522ee22008-12-30 11:00:37 +08001025 "6.0 Gbps",
Tejun Heo4c360c82006-04-01 01:38:17 +09001026 };
1027
1028 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
1029 return "<unknown>";
1030 return spd_str[spd - 1];
1031}
1032
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001033static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
1034{
1035 struct ata_link *link = dev->link;
1036 struct ata_port *ap = link->ap;
1037 u32 scontrol;
1038 unsigned int err_mask;
1039 int rc;
1040
1041 /*
1042 * disallow DIPM for drivers which haven't set
1043 * ATA_FLAG_IPM. This is because when DIPM is enabled,
1044 * phy ready will be set in the interrupt status on
1045 * state changes, which will cause some drivers to
1046 * think there are errors - additionally drivers will
1047 * need to disable hot plug.
1048 */
1049 if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) {
1050 ap->pm_policy = NOT_AVAILABLE;
1051 return -EINVAL;
1052 }
1053
1054 /*
1055 * For DIPM, we will only enable it for the
1056 * min_power setting.
1057 *
1058 * Why? Because Disks are too stupid to know that
1059 * If the host rejects a request to go to SLUMBER
1060 * they should retry at PARTIAL, and instead it
1061 * just would give up. So, for medium_power to
1062 * work at all, we need to only allow HIPM.
1063 */
1064 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
1065 if (rc)
1066 return rc;
1067
1068 switch (policy) {
1069 case MIN_POWER:
1070 /* no restrictions on IPM transitions */
1071 scontrol &= ~(0x3 << 8);
1072 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
1073 if (rc)
1074 return rc;
1075
1076 /* enable DIPM */
1077 if (dev->flags & ATA_DFLAG_DIPM)
1078 err_mask = ata_dev_set_feature(dev,
1079 SETFEATURES_SATA_ENABLE, SATA_DIPM);
1080 break;
1081 case MEDIUM_POWER:
1082 /* allow IPM to PARTIAL */
1083 scontrol &= ~(0x1 << 8);
1084 scontrol |= (0x2 << 8);
1085 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
1086 if (rc)
1087 return rc;
1088
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -07001089 /*
1090 * we don't have to disable DIPM since IPM flags
1091 * disallow transitions to SLUMBER, which effectively
1092 * disable DIPM if it does not support PARTIAL
1093 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001094 break;
1095 case NOT_AVAILABLE:
1096 case MAX_PERFORMANCE:
1097 /* disable all IPM transitions */
1098 scontrol |= (0x3 << 8);
1099 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
1100 if (rc)
1101 return rc;
1102
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -07001103 /*
1104 * we don't have to disable DIPM since IPM flags
1105 * disallow all transitions which effectively
1106 * disable DIPM anyway.
1107 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001108 break;
1109 }
1110
1111 /* FIXME: handle SET FEATURES failure */
1112 (void) err_mask;
1113
1114 return 0;
1115}
1116
1117/**
1118 * ata_dev_enable_pm - enable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001119 * @dev: device to enable power management
1120 * @policy: the link power management policy
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001121 *
1122 * Enable SATA Interface power management. This will enable
1123 * Device Interface Power Management (DIPM) for min_power
1124 * policy, and then call driver specific callbacks for
1125 * enabling Host Initiated Power management.
1126 *
1127 * Locking: Caller.
1128 * Returns: -EINVAL if IPM is not supported, 0 otherwise.
1129 */
1130void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy)
1131{
1132 int rc = 0;
1133 struct ata_port *ap = dev->link->ap;
1134
1135 /* set HIPM first, then DIPM */
1136 if (ap->ops->enable_pm)
1137 rc = ap->ops->enable_pm(ap, policy);
1138 if (rc)
1139 goto enable_pm_out;
1140 rc = ata_dev_set_dipm(dev, policy);
1141
1142enable_pm_out:
1143 if (rc)
1144 ap->pm_policy = MAX_PERFORMANCE;
1145 else
1146 ap->pm_policy = policy;
1147 return /* rc */; /* hopefully we can use 'rc' eventually */
1148}
1149
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001150#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001151/**
1152 * ata_dev_disable_pm - disable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001153 * @dev: device to disable power management
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001154 *
1155 * Disable SATA Interface power management. This will disable
1156 * Device Interface Power Management (DIPM) without changing
1157 * policy, call driver specific callbacks for disabling Host
1158 * Initiated Power management.
1159 *
1160 * Locking: Caller.
1161 * Returns: void
1162 */
1163static void ata_dev_disable_pm(struct ata_device *dev)
1164{
1165 struct ata_port *ap = dev->link->ap;
1166
1167 ata_dev_set_dipm(dev, MAX_PERFORMANCE);
1168 if (ap->ops->disable_pm)
1169 ap->ops->disable_pm(ap);
1170}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001171#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001172
1173void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy)
1174{
1175 ap->pm_policy = policy;
Tejun Heo3ec25eb2008-03-27 18:37:14 +09001176 ap->link.eh_info.action |= ATA_EH_LPM;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001177 ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY;
1178 ata_port_schedule_eh(ap);
1179}
1180
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001181#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001182static void ata_lpm_enable(struct ata_host *host)
1183{
1184 struct ata_link *link;
1185 struct ata_port *ap;
1186 struct ata_device *dev;
1187 int i;
1188
1189 for (i = 0; i < host->n_ports; i++) {
1190 ap = host->ports[i];
Tejun Heo1eca4362008-11-03 20:03:17 +09001191 ata_for_each_link(link, ap, EDGE) {
1192 ata_for_each_dev(dev, link, ALL)
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001193 ata_dev_disable_pm(dev);
1194 }
1195 }
1196}
1197
1198static void ata_lpm_disable(struct ata_host *host)
1199{
1200 int i;
1201
1202 for (i = 0; i < host->n_ports; i++) {
1203 struct ata_port *ap = host->ports[i];
1204 ata_lpm_schedule(ap, ap->pm_policy);
1205 }
1206}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001207#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209/**
1210 * ata_dev_classify - determine device type based on ATA-spec signature
1211 * @tf: ATA taskfile register set for device to be identified
1212 *
1213 * Determine from taskfile register contents whether a device is
1214 * ATA or ATAPI, as per "Signature and persistence" section
1215 * of ATA/PI spec (volume 1, sect 5.14).
1216 *
1217 * LOCKING:
1218 * None.
1219 *
1220 * RETURNS:
Tejun Heo633273a32007-09-23 13:19:54 +09001221 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
1222 * %ATA_DEV_UNKNOWN the event of failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 */
Jeff Garzik057ace52005-10-22 14:27:05 -04001224unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226 /* Apple's open source Darwin code hints that some devices only
1227 * put a proper signature into the LBA mid/high registers,
1228 * So, we only check those. It's sufficient for uniqueness.
Tejun Heo633273a32007-09-23 13:19:54 +09001229 *
1230 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1231 * signatures for ATA and ATAPI devices attached on SerialATA,
1232 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
1233 * spec has never mentioned about using different signatures
1234 * for ATA/ATAPI devices. Then, Serial ATA II: Port
1235 * Multiplier specification began to use 0x69/0x96 to identify
1236 * port multpliers and 0x3c/0xc3 to identify SEMB device.
1237 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1238 * 0x69/0x96 shortly and described them as reserved for
1239 * SerialATA.
1240 *
1241 * We follow the current spec and consider that 0x69/0x96
1242 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
Tejun Heo79b42ba2009-04-15 06:21:10 +09001243 * Unfortunately, WDC WD1600JS-62MHB5 (a hard drive) reports
1244 * SEMB signature. This is worked around in
1245 * ata_dev_read_id().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 */
Tejun Heo633273a32007-09-23 13:19:54 +09001247 if ((tf->lbam == 0) && (tf->lbah == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 DPRINTK("found ATA device by sig\n");
1249 return ATA_DEV_ATA;
1250 }
1251
Tejun Heo633273a32007-09-23 13:19:54 +09001252 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 DPRINTK("found ATAPI device by sig\n");
1254 return ATA_DEV_ATAPI;
1255 }
1256
Tejun Heo633273a32007-09-23 13:19:54 +09001257 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1258 DPRINTK("found PMP device by sig\n");
1259 return ATA_DEV_PMP;
1260 }
1261
1262 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
Tejun Heo79b42ba2009-04-15 06:21:10 +09001263 DPRINTK("found SEMB device by sig (could be ATA device)\n");
1264 return ATA_DEV_SEMB;
Tejun Heo633273a32007-09-23 13:19:54 +09001265 }
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 DPRINTK("unknown device\n");
1268 return ATA_DEV_UNKNOWN;
1269}
1270
1271/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001272 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 * @id: IDENTIFY DEVICE results we will examine
1274 * @s: string into which data is output
1275 * @ofs: offset into identify device page
1276 * @len: length of string to return. must be an even number.
1277 *
1278 * The strings in the IDENTIFY DEVICE page are broken up into
1279 * 16-bit chunks. Run through the string, and output each
1280 * 8-bit chunk linearly, regardless of platform.
1281 *
1282 * LOCKING:
1283 * caller.
1284 */
1285
Tejun Heo6a62a042006-02-13 10:02:46 +09001286void ata_id_string(const u16 *id, unsigned char *s,
1287 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
1289 unsigned int c;
1290
Alan Cox963e4972008-07-24 17:16:06 +01001291 BUG_ON(len & 1);
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 while (len > 0) {
1294 c = id[ofs] >> 8;
1295 *s = c;
1296 s++;
1297
1298 c = id[ofs] & 0xff;
1299 *s = c;
1300 s++;
1301
1302 ofs++;
1303 len -= 2;
1304 }
1305}
1306
Tejun Heo0e949ff2006-02-12 22:47:04 +09001307/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001308 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +09001309 * @id: IDENTIFY DEVICE results we will examine
1310 * @s: string into which data is output
1311 * @ofs: offset into identify device page
1312 * @len: length of string to return. must be an odd number.
1313 *
Tejun Heo6a62a042006-02-13 10:02:46 +09001314 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +09001315 * trims trailing spaces and terminates the resulting string with
1316 * null. @len must be actual maximum length (even number) + 1.
1317 *
1318 * LOCKING:
1319 * caller.
1320 */
Tejun Heo6a62a042006-02-13 10:02:46 +09001321void ata_id_c_string(const u16 *id, unsigned char *s,
1322 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +09001323{
1324 unsigned char *p;
1325
Tejun Heo6a62a042006-02-13 10:02:46 +09001326 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +09001327
1328 p = s + strnlen(s, len - 1);
1329 while (p > s && p[-1] == ' ')
1330 p--;
1331 *p = '\0';
1332}
Edward Falk0baab862005-06-02 18:17:13 -04001333
Tejun Heodb6f8752007-09-03 12:31:58 +09001334static u64 ata_id_n_sectors(const u16 *id)
1335{
1336 if (ata_id_has_lba(id)) {
1337 if (ata_id_has_lba48(id))
Robert Hancock968e5942009-02-16 20:15:08 -06001338 return ata_id_u64(id, ATA_ID_LBA_CAPACITY_2);
Tejun Heodb6f8752007-09-03 12:31:58 +09001339 else
Robert Hancock968e5942009-02-16 20:15:08 -06001340 return ata_id_u32(id, ATA_ID_LBA_CAPACITY);
Tejun Heodb6f8752007-09-03 12:31:58 +09001341 } else {
1342 if (ata_id_current_chs_valid(id))
Robert Hancock968e5942009-02-16 20:15:08 -06001343 return id[ATA_ID_CUR_CYLS] * id[ATA_ID_CUR_HEADS] *
1344 id[ATA_ID_CUR_SECTORS];
Tejun Heodb6f8752007-09-03 12:31:58 +09001345 else
Robert Hancock968e5942009-02-16 20:15:08 -06001346 return id[ATA_ID_CYLS] * id[ATA_ID_HEADS] *
1347 id[ATA_ID_SECTORS];
Tejun Heodb6f8752007-09-03 12:31:58 +09001348 }
1349}
1350
Tejun Heoa5987e02008-03-27 19:14:23 +09001351u64 ata_tf_to_lba48(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001352{
1353 u64 sectors = 0;
1354
1355 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1356 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
Roland Dreierba14a9c2008-10-28 16:52:20 -07001357 sectors |= ((u64)(tf->hob_lbal & 0xff)) << 24;
Alan Cox1e999732007-04-11 00:23:13 +01001358 sectors |= (tf->lbah & 0xff) << 16;
1359 sectors |= (tf->lbam & 0xff) << 8;
1360 sectors |= (tf->lbal & 0xff);
1361
Tejun Heoa5987e02008-03-27 19:14:23 +09001362 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001363}
1364
Tejun Heoa5987e02008-03-27 19:14:23 +09001365u64 ata_tf_to_lba(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001366{
1367 u64 sectors = 0;
1368
1369 sectors |= (tf->device & 0x0f) << 24;
1370 sectors |= (tf->lbah & 0xff) << 16;
1371 sectors |= (tf->lbam & 0xff) << 8;
1372 sectors |= (tf->lbal & 0xff);
1373
Tejun Heoa5987e02008-03-27 19:14:23 +09001374 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001375}
1376
1377/**
Tejun Heoc728a912007-09-03 12:32:30 +09001378 * ata_read_native_max_address - Read native max address
1379 * @dev: target device
1380 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +01001381 *
Tejun Heoc728a912007-09-03 12:32:30 +09001382 * Perform an LBA48 or LBA28 native size query upon the device in
1383 * question.
1384 *
1385 * RETURNS:
1386 * 0 on success, -EACCES if command is aborted by the drive.
1387 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +01001388 */
Tejun Heoc728a912007-09-03 12:32:30 +09001389static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001390{
Tejun Heoc728a912007-09-03 12:32:30 +09001391 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001392 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001393 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001394
1395 ata_tf_init(dev, &tf);
1396
Tejun Heoc728a912007-09-03 12:32:30 +09001397 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +01001398 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001399
1400 if (lba48) {
1401 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1402 tf.flags |= ATA_TFLAG_LBA48;
1403 } else
1404 tf.command = ATA_CMD_READ_NATIVE_MAX;
1405
Alan Cox1e999732007-04-11 00:23:13 +01001406 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001407 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001408
Tejun Heo2b789102007-10-09 15:05:44 +09001409 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001410 if (err_mask) {
1411 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
1412 "max address (err_mask=0x%x)\n", err_mask);
1413 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1414 return -EACCES;
1415 return -EIO;
1416 }
Alan Cox1e999732007-04-11 00:23:13 +01001417
Tejun Heoc728a912007-09-03 12:32:30 +09001418 if (lba48)
Tejun Heoa5987e02008-03-27 19:14:23 +09001419 *max_sectors = ata_tf_to_lba48(&tf) + 1;
Tejun Heoc728a912007-09-03 12:32:30 +09001420 else
Tejun Heoa5987e02008-03-27 19:14:23 +09001421 *max_sectors = ata_tf_to_lba(&tf) + 1;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001422 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
Alan Cox93328e12007-09-29 04:06:48 -04001423 (*max_sectors)--;
Tejun Heoc728a912007-09-03 12:32:30 +09001424 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001425}
1426
1427/**
Tejun Heoc728a912007-09-03 12:32:30 +09001428 * ata_set_max_sectors - Set max sectors
1429 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -07001430 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +01001431 *
Tejun Heoc728a912007-09-03 12:32:30 +09001432 * Set max sectors of @dev to @new_sectors.
1433 *
1434 * RETURNS:
1435 * 0 on success, -EACCES if command is aborted or denied (due to
1436 * previous non-volatile SET_MAX) by the drive. -EIO on other
1437 * errors.
Alan Cox1e999732007-04-11 00:23:13 +01001438 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001439static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001440{
Tejun Heoc728a912007-09-03 12:32:30 +09001441 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001442 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001443 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001444
1445 new_sectors--;
1446
1447 ata_tf_init(dev, &tf);
1448
Alan Cox1e999732007-04-11 00:23:13 +01001449 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001450
1451 if (lba48) {
1452 tf.command = ATA_CMD_SET_MAX_EXT;
1453 tf.flags |= ATA_TFLAG_LBA48;
1454
1455 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1456 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1457 tf.hob_lbah = (new_sectors >> 40) & 0xff;
Tejun Heo1e582ba2007-09-21 20:07:14 +09001458 } else {
Tejun Heoc728a912007-09-03 12:32:30 +09001459 tf.command = ATA_CMD_SET_MAX;
1460
Tejun Heo1e582ba2007-09-21 20:07:14 +09001461 tf.device |= (new_sectors >> 24) & 0xf;
1462 }
1463
Alan Cox1e999732007-04-11 00:23:13 +01001464 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001465 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001466
1467 tf.lbal = (new_sectors >> 0) & 0xff;
1468 tf.lbam = (new_sectors >> 8) & 0xff;
1469 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +01001470
Tejun Heo2b789102007-10-09 15:05:44 +09001471 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001472 if (err_mask) {
1473 ata_dev_printk(dev, KERN_WARNING, "failed to set "
1474 "max address (err_mask=0x%x)\n", err_mask);
1475 if (err_mask == AC_ERR_DEV &&
1476 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1477 return -EACCES;
1478 return -EIO;
1479 }
Alan Cox1e999732007-04-11 00:23:13 +01001480
Tejun Heoc728a912007-09-03 12:32:30 +09001481 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001482}
1483
1484/**
1485 * ata_hpa_resize - Resize a device with an HPA set
1486 * @dev: Device to resize
1487 *
1488 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1489 * it if required to the full size of the media. The caller must check
1490 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +09001491 *
1492 * RETURNS:
1493 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +01001494 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001495static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +01001496{
Tejun Heo05027ad2007-09-03 12:32:57 +09001497 struct ata_eh_context *ehc = &dev->link->eh_context;
1498 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo445d2112010-04-05 10:33:13 +09001499 bool unlock_hpa = ata_ignore_hpa || dev->flags & ATA_DFLAG_UNLOCK_HPA;
Tejun Heo05027ad2007-09-03 12:32:57 +09001500 u64 sectors = ata_id_n_sectors(dev->id);
1501 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +09001502 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -04001503
Tejun Heo05027ad2007-09-03 12:32:57 +09001504 /* do we need to do it? */
1505 if (dev->class != ATA_DEV_ATA ||
1506 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1507 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +09001508 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001509
Tejun Heo05027ad2007-09-03 12:32:57 +09001510 /* read native max address */
1511 rc = ata_read_native_max_address(dev, &native_sectors);
1512 if (rc) {
Tejun Heodda7aba2008-03-23 21:05:15 +09001513 /* If device aborted the command or HPA isn't going to
1514 * be unlocked, skip HPA resizing.
Tejun Heo05027ad2007-09-03 12:32:57 +09001515 */
Tejun Heo445d2112010-04-05 10:33:13 +09001516 if (rc == -EACCES || !unlock_hpa) {
Tejun Heo05027ad2007-09-03 12:32:57 +09001517 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
Tejun Heodda7aba2008-03-23 21:05:15 +09001518 "broken, skipping HPA handling\n");
Tejun Heo05027ad2007-09-03 12:32:57 +09001519 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001520
Tejun Heo05027ad2007-09-03 12:32:57 +09001521 /* we can continue if device aborted the command */
1522 if (rc == -EACCES)
1523 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001524 }
Tejun Heo37301a52007-06-25 20:45:54 +09001525
Tejun Heo05027ad2007-09-03 12:32:57 +09001526 return rc;
1527 }
Tejun Heo5920dad2009-07-15 17:11:41 +09001528 dev->n_native_sectors = native_sectors;
Tejun Heo05027ad2007-09-03 12:32:57 +09001529
1530 /* nothing to do? */
Tejun Heo445d2112010-04-05 10:33:13 +09001531 if (native_sectors <= sectors || !unlock_hpa) {
Tejun Heo05027ad2007-09-03 12:32:57 +09001532 if (!print_info || native_sectors == sectors)
1533 return 0;
1534
1535 if (native_sectors > sectors)
1536 ata_dev_printk(dev, KERN_INFO,
1537 "HPA detected: current %llu, native %llu\n",
1538 (unsigned long long)sectors,
1539 (unsigned long long)native_sectors);
1540 else if (native_sectors < sectors)
1541 ata_dev_printk(dev, KERN_WARNING,
1542 "native sectors (%llu) is smaller than "
1543 "sectors (%llu)\n",
1544 (unsigned long long)native_sectors,
1545 (unsigned long long)sectors);
1546 return 0;
1547 }
1548
1549 /* let's unlock HPA */
1550 rc = ata_set_max_sectors(dev, native_sectors);
1551 if (rc == -EACCES) {
1552 /* if device aborted the command, skip HPA resizing */
1553 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1554 "(%llu -> %llu), skipping HPA handling\n",
1555 (unsigned long long)sectors,
1556 (unsigned long long)native_sectors);
1557 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1558 return 0;
1559 } else if (rc)
1560 return rc;
1561
1562 /* re-read IDENTIFY data */
1563 rc = ata_dev_reread_id(dev, 0);
1564 if (rc) {
1565 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1566 "data after HPA resizing\n");
1567 return rc;
1568 }
1569
1570 if (print_info) {
1571 u64 new_sectors = ata_id_n_sectors(dev->id);
1572 ata_dev_printk(dev, KERN_INFO,
1573 "HPA unlocked: %llu -> %llu, native %llu\n",
1574 (unsigned long long)sectors,
1575 (unsigned long long)new_sectors,
1576 (unsigned long long)native_sectors);
1577 }
1578
1579 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001580}
1581
Edward Falk0baab862005-06-02 18:17:13 -04001582/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001584 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001586 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1587 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 *
1589 * LOCKING:
1590 * caller.
1591 */
1592
Tejun Heo0bd33002006-02-12 22:47:05 +09001593static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
1595 DPRINTK("49==0x%04x "
1596 "53==0x%04x "
1597 "63==0x%04x "
1598 "64==0x%04x "
1599 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001600 id[49],
1601 id[53],
1602 id[63],
1603 id[64],
1604 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 DPRINTK("80==0x%04x "
1606 "81==0x%04x "
1607 "82==0x%04x "
1608 "83==0x%04x "
1609 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001610 id[80],
1611 id[81],
1612 id[82],
1613 id[83],
1614 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 DPRINTK("88==0x%04x "
1616 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001617 id[88],
1618 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
Tejun Heocb95d562006-03-06 04:31:56 +09001621/**
1622 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1623 * @id: IDENTIFY data to compute xfer mask from
1624 *
1625 * Compute the xfermask for this device. This is not as trivial
1626 * as it seems if we must consider early devices correctly.
1627 *
1628 * FIXME: pre IDE drive timing (do we care ?).
1629 *
1630 * LOCKING:
1631 * None.
1632 *
1633 * RETURNS:
1634 * Computed xfermask
1635 */
Tejun Heo7dc951a2007-11-27 19:43:42 +09001636unsigned long ata_id_xfermask(const u16 *id)
Tejun Heocb95d562006-03-06 04:31:56 +09001637{
Tejun Heo7dc951a2007-11-27 19:43:42 +09001638 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heocb95d562006-03-06 04:31:56 +09001639
1640 /* Usual case. Word 53 indicates word 64 is valid */
1641 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1642 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1643 pio_mask <<= 3;
1644 pio_mask |= 0x7;
1645 } else {
1646 /* If word 64 isn't valid then Word 51 high byte holds
1647 * the PIO timing number for the maximum. Turn it into
1648 * a mask.
1649 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001650 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001651 if (mode < 5) /* Valid PIO range */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001652 pio_mask = (2 << mode) - 1;
Alan Cox46767aeb2006-09-29 18:26:47 +01001653 else
1654 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001655
1656 /* But wait.. there's more. Design your standards by
1657 * committee and you too can get a free iordy field to
1658 * process. However its the speeds not the modes that
1659 * are supported... Note drivers using the timing API
1660 * will get this right anyway
1661 */
1662 }
1663
1664 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001665
Alan Coxb352e572006-08-10 18:52:12 +01001666 if (ata_id_is_cfa(id)) {
1667 /*
1668 * Process compact flash extended modes
1669 */
Sergei Shtylyov62afe5d2009-04-13 20:50:00 +04001670 int pio = (id[ATA_ID_CFA_MODES] >> 0) & 0x7;
1671 int dma = (id[ATA_ID_CFA_MODES] >> 3) & 0x7;
Alan Coxb352e572006-08-10 18:52:12 +01001672
1673 if (pio)
1674 pio_mask |= (1 << 5);
1675 if (pio > 1)
1676 pio_mask |= (1 << 6);
1677 if (dma)
1678 mwdma_mask |= (1 << 3);
1679 if (dma > 1)
1680 mwdma_mask |= (1 << 4);
1681 }
1682
Tejun Heofb21f0d2006-03-12 12:34:35 +09001683 udma_mask = 0;
1684 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1685 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001686
1687 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1688}
1689
Adrian Bunk7102d232007-01-04 00:09:36 +01001690static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001691{
Tejun Heo77853bf2006-01-23 13:09:36 +09001692 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001693
Tejun Heoa2a7a662005-12-13 14:48:31 +09001694 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001695}
1696
1697/**
Tejun Heo24326972006-11-14 22:47:09 +09001698 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001699 * @dev: Device to which the command is sent
1700 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001701 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001702 * @dma_dir: Data tranfer direction of the command
Randy Dunlap5c1ad8b2007-10-18 14:12:26 -07001703 * @sgl: sg list for the data buffer of the command
Tejun Heo24326972006-11-14 22:47:09 +09001704 * @n_elem: Number of sg entries
Tejun Heo2b789102007-10-09 15:05:44 +09001705 * @timeout: Timeout in msecs (0 for default)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001706 *
1707 * Executes libata internal command with timeout. @tf contains
1708 * command on entry and result on return. Timeout and error
1709 * conditions are reported via return value. No recovery action
1710 * is taken after a command times out. It's caller's duty to
1711 * clean up after timeout.
1712 *
1713 * LOCKING:
1714 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001715 *
1716 * RETURNS:
1717 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001718 */
Tejun Heo24326972006-11-14 22:47:09 +09001719unsigned ata_exec_internal_sg(struct ata_device *dev,
1720 struct ata_taskfile *tf, const u8 *cdb,
Jens Axboe87260212007-10-16 11:14:12 +02001721 int dma_dir, struct scatterlist *sgl,
Tejun Heo2b789102007-10-09 15:05:44 +09001722 unsigned int n_elem, unsigned long timeout)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001723{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001724 struct ata_link *link = dev->link;
1725 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001726 u8 command = tf->command;
Tejun Heo87fbc5a2008-05-20 02:17:54 +09001727 int auto_timeout = 0;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001728 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001729 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001730 u32 preempted_sactive, preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001731 int preempted_nr_active_links;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001732 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001733 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001734 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001735 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001736
Jeff Garzikba6a1302006-06-22 23:46:10 -04001737 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001738
Tejun Heoe3180492006-05-15 20:58:09 +09001739 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001740 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001741 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001742 return AC_ERR_SYSTEM;
1743 }
1744
Tejun Heo2ab7db12006-05-15 20:58:02 +09001745 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001746
Tejun Heo2ab7db12006-05-15 20:58:02 +09001747 /* XXX: Tag 0 is used for drivers with legacy EH as some
1748 * drivers choke if any other tag is given. This breaks
1749 * ata_tag_internal() test for those drivers. Don't use new
1750 * EH stuff without converting to it.
1751 */
1752 if (ap->ops->error_handler)
1753 tag = ATA_TAG_INTERNAL;
1754 else
1755 tag = 0;
1756
Tejun Heo8a8bc222008-11-10 14:48:21 +09001757 if (test_and_set_bit(tag, &ap->qc_allocated))
1758 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001759 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001760
1761 qc->tag = tag;
1762 qc->scsicmd = NULL;
1763 qc->ap = ap;
1764 qc->dev = dev;
1765 ata_qc_reinit(qc);
1766
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001767 preempted_tag = link->active_tag;
1768 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001769 preempted_qc_active = ap->qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001770 preempted_nr_active_links = ap->nr_active_links;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001771 link->active_tag = ATA_TAG_POISON;
1772 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001773 ap->qc_active = 0;
Tejun Heoda917d62007-09-23 13:14:12 +09001774 ap->nr_active_links = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001775
1776 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001777 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001778 if (cdb)
1779 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001780 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001781 qc->dma_dir = dma_dir;
1782 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001783 unsigned int i, buflen = 0;
Jens Axboe87260212007-10-16 11:14:12 +02001784 struct scatterlist *sg;
Tejun Heo24326972006-11-14 22:47:09 +09001785
Jens Axboe87260212007-10-16 11:14:12 +02001786 for_each_sg(sgl, sg, n_elem, i)
1787 buflen += sg->length;
Tejun Heo24326972006-11-14 22:47:09 +09001788
Jens Axboe87260212007-10-16 11:14:12 +02001789 ata_sg_init(qc, sgl, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001790 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001791 }
1792
Tejun Heo77853bf2006-01-23 13:09:36 +09001793 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001794 qc->complete_fn = ata_qc_complete_internal;
1795
Tejun Heo8e0e6942006-03-31 20:41:11 +09001796 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001797
Jeff Garzikba6a1302006-06-22 23:46:10 -04001798 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001799
Tejun Heo87fbc5a2008-05-20 02:17:54 +09001800 if (!timeout) {
1801 if (ata_probe_timeout)
1802 timeout = ata_probe_timeout * 1000;
1803 else {
1804 timeout = ata_internal_cmd_timeout(dev, command);
1805 auto_timeout = 1;
1806 }
1807 }
Tejun Heo2b789102007-10-09 15:05:44 +09001808
1809 rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
Albert Lee41ade502006-03-14 11:19:04 +08001810
Tejun Heoc4291372010-05-10 21:41:38 +02001811 ata_sff_flush_pio_task(ap);
Tejun Heod95a7172006-05-15 20:58:14 +09001812
1813 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001814 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001815
1816 /* We're racing with irq here. If we lose, the
1817 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001818 * twice. If we win, the port is frozen and will be
1819 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001820 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001821 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001822 qc->err_mask |= AC_ERR_TIMEOUT;
1823
1824 if (ap->ops->error_handler)
1825 ata_port_freeze(ap);
1826 else
1827 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001828
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001829 if (ata_msg_warn(ap))
1830 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001831 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001832 }
1833
Jeff Garzikba6a1302006-06-22 23:46:10 -04001834 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001835 }
1836
Tejun Heod95a7172006-05-15 20:58:14 +09001837 /* do post_internal_cmd */
1838 if (ap->ops->post_internal_cmd)
1839 ap->ops->post_internal_cmd(qc);
1840
Tejun Heoa51d6442007-03-20 15:24:11 +09001841 /* perform minimal error analysis */
1842 if (qc->flags & ATA_QCFLAG_FAILED) {
1843 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1844 qc->err_mask |= AC_ERR_DEV;
1845
1846 if (!qc->err_mask)
1847 qc->err_mask |= AC_ERR_OTHER;
1848
1849 if (qc->err_mask & ~AC_ERR_OTHER)
1850 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001851 }
1852
Tejun Heo15869302006-05-15 20:57:33 +09001853 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001854 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001855
Tejun Heoe61e0672006-05-15 20:57:40 +09001856 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001857 err_mask = qc->err_mask;
1858
1859 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001860 link->active_tag = preempted_tag;
1861 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001862 ap->qc_active = preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001863 ap->nr_active_links = preempted_nr_active_links;
Tejun Heo77853bf2006-01-23 13:09:36 +09001864
Jeff Garzikba6a1302006-06-22 23:46:10 -04001865 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001866
Tejun Heo87fbc5a2008-05-20 02:17:54 +09001867 if ((err_mask & AC_ERR_TIMEOUT) && auto_timeout)
1868 ata_internal_cmd_timed_out(dev, command);
1869
Tejun Heo77853bf2006-01-23 13:09:36 +09001870 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001871}
1872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873/**
Tejun Heo33480a02006-12-12 02:15:31 +09001874 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001875 * @dev: Device to which the command is sent
1876 * @tf: Taskfile registers for the command and the result
1877 * @cdb: CDB for packet command
1878 * @dma_dir: Data tranfer direction of the command
1879 * @buf: Data buffer of the command
1880 * @buflen: Length of data buffer
Tejun Heo2b789102007-10-09 15:05:44 +09001881 * @timeout: Timeout in msecs (0 for default)
Tejun Heo24326972006-11-14 22:47:09 +09001882 *
1883 * Wrapper around ata_exec_internal_sg() which takes simple
1884 * buffer instead of sg list.
1885 *
1886 * LOCKING:
1887 * None. Should be called with kernel context, might sleep.
1888 *
1889 * RETURNS:
1890 * Zero on success, AC_ERR_* mask on failure
1891 */
1892unsigned ata_exec_internal(struct ata_device *dev,
1893 struct ata_taskfile *tf, const u8 *cdb,
Tejun Heo2b789102007-10-09 15:05:44 +09001894 int dma_dir, void *buf, unsigned int buflen,
1895 unsigned long timeout)
Tejun Heo24326972006-11-14 22:47:09 +09001896{
Tejun Heo33480a02006-12-12 02:15:31 +09001897 struct scatterlist *psg = NULL, sg;
1898 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001899
Tejun Heo33480a02006-12-12 02:15:31 +09001900 if (dma_dir != DMA_NONE) {
1901 WARN_ON(!buf);
1902 sg_init_one(&sg, buf, buflen);
1903 psg = &sg;
1904 n_elem++;
1905 }
Tejun Heo24326972006-11-14 22:47:09 +09001906
Tejun Heo2b789102007-10-09 15:05:44 +09001907 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
1908 timeout);
Tejun Heo24326972006-11-14 22:47:09 +09001909}
1910
1911/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001912 * ata_do_simple_cmd - execute simple internal command
1913 * @dev: Device to which the command is sent
1914 * @cmd: Opcode to execute
1915 *
1916 * Execute a 'simple' command, that only consists of the opcode
1917 * 'cmd' itself, without filling any other registers
1918 *
1919 * LOCKING:
1920 * Kernel thread context (may sleep).
1921 *
1922 * RETURNS:
1923 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001924 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001925unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001926{
1927 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001928
1929 ata_tf_init(dev, &tf);
1930
1931 tf.command = cmd;
1932 tf.flags |= ATA_TFLAG_DEVICE;
1933 tf.protocol = ATA_PROT_NODATA;
1934
Tejun Heo2b789102007-10-09 15:05:44 +09001935 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001936}
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001939 * ata_pio_need_iordy - check if iordy needed
1940 * @adev: ATA device
1941 *
1942 * Check if the current speed of the device requires IORDY. Used
1943 * by various controllers for chip configuration.
1944 */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001945unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1946{
Tejun Heo0d9e6652009-06-11 11:04:45 +09001947 /* Don't set IORDY if we're preparing for reset. IORDY may
1948 * lead to controller lock up on certain controllers if the
1949 * port is not occupied. See bko#11703 for details.
1950 */
1951 if (adev->link->ap->pflags & ATA_PFLAG_RESETTING)
1952 return 0;
1953 /* Controller doesn't support IORDY. Probably a pointless
1954 * check as the caller should know this.
1955 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001956 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001957 return 0;
David Daney5c18c4d2008-12-10 15:39:12 -08001958 /* CF spec. r4.1 Table 22 says no iordy on PIO5 and PIO6. */
1959 if (ata_id_is_cfa(adev->id)
1960 && (adev->pio_mode == XFER_PIO_5 || adev->pio_mode == XFER_PIO_6))
1961 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00001962 /* PIO3 and higher it is mandatory */
1963 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001964 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00001965 /* We turn it on when possible */
1966 if (ata_id_has_iordy(adev->id))
1967 return 1;
1968 return 0;
1969}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001970
Alan Cox432729f2007-03-08 23:22:59 +00001971/**
1972 * ata_pio_mask_no_iordy - Return the non IORDY mask
1973 * @adev: ATA device
1974 *
1975 * Compute the highest mode possible if we are not using iordy. Return
1976 * -1 if no iordy mode is available.
1977 */
Alan Cox432729f2007-03-08 23:22:59 +00001978static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
1979{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001980 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001981 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00001982 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001983 /* Is the speed faster than the drive allows non IORDY ? */
1984 if (pio) {
1985 /* This is cycle times not frequency - watch the logic! */
1986 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00001987 return 3 << ATA_SHIFT_PIO;
1988 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001989 }
1990 }
Alan Cox432729f2007-03-08 23:22:59 +00001991 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001992}
1993
1994/**
Alan Cox963e4972008-07-24 17:16:06 +01001995 * ata_do_dev_read_id - default ID read method
1996 * @dev: device
1997 * @tf: proposed taskfile
1998 * @id: data buffer
1999 *
2000 * Issue the identify taskfile and hand back the buffer containing
2001 * identify data. For some RAID controllers and for pre ATA devices
2002 * this function is wrapped or replaced by the driver
2003 */
2004unsigned int ata_do_dev_read_id(struct ata_device *dev,
2005 struct ata_taskfile *tf, u16 *id)
2006{
2007 return ata_exec_internal(dev, tf, NULL, DMA_FROM_DEVICE,
2008 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
2009}
2010
2011/**
Tejun Heo49016ac2006-02-21 02:12:11 +09002012 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09002013 * @dev: target device
2014 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09002015 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09002016 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09002017 *
2018 * Read ID data from the specified device. ATA_CMD_ID_ATA is
2019 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002020 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
2021 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09002022 *
Alan Cox50a99012007-08-08 14:27:00 +01002023 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002024 * now we abort if we hit that case.
Alan Cox50a99012007-08-08 14:27:00 +01002025 *
Tejun Heo49016ac2006-02-21 02:12:11 +09002026 * LOCKING:
2027 * Kernel thread context (may sleep)
2028 *
2029 * RETURNS:
2030 * 0 on success, -errno otherwise.
2031 */
Tejun Heoa9beec92006-05-31 18:27:44 +09002032int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09002033 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09002034{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002035 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09002036 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09002037 struct ata_taskfile tf;
2038 unsigned int err_mask = 0;
2039 const char *reason;
Tejun Heo79b42ba2009-04-15 06:21:10 +09002040 bool is_semb = class == ATA_DEV_SEMB;
Tejun Heo54936f82007-05-11 14:35:29 +02002041 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09002042 int rc;
2043
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002044 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002045 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Tejun Heo49016ac2006-02-21 02:12:11 +09002046
Alan Cox963e4972008-07-24 17:16:06 +01002047retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09002048 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09002049
2050 switch (class) {
Tejun Heo79b42ba2009-04-15 06:21:10 +09002051 case ATA_DEV_SEMB:
2052 class = ATA_DEV_ATA; /* some hard drives report SEMB sig */
Tejun Heo49016ac2006-02-21 02:12:11 +09002053 case ATA_DEV_ATA:
2054 tf.command = ATA_CMD_ID_ATA;
2055 break;
2056 case ATA_DEV_ATAPI:
2057 tf.command = ATA_CMD_ID_ATAPI;
2058 break;
2059 default:
2060 rc = -ENODEV;
2061 reason = "unsupported class";
2062 goto err_out;
2063 }
2064
2065 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08002066
2067 /* Some devices choke if TF registers contain garbage. Make
2068 * sure those are properly initialized.
2069 */
2070 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2071
2072 /* Device presence detection is unreliable on some
2073 * controllers. Always poll IDENTIFY if available.
2074 */
2075 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09002076
Alan Cox963e4972008-07-24 17:16:06 +01002077 if (ap->ops->read_id)
2078 err_mask = ap->ops->read_id(dev, &tf, id);
2079 else
2080 err_mask = ata_do_dev_read_id(dev, &tf, id);
2081
Tejun Heo49016ac2006-02-21 02:12:11 +09002082 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09002083 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo1ffc1512008-03-23 15:16:53 +09002084 ata_dev_printk(dev, KERN_DEBUG,
2085 "NODEV after polling detection\n");
Tejun Heo55a8e2c2006-11-10 18:08:10 +09002086 return -ENOENT;
2087 }
2088
Tejun Heo79b42ba2009-04-15 06:21:10 +09002089 if (is_semb) {
2090 ata_dev_printk(dev, KERN_INFO, "IDENTIFY failed on "
2091 "device w/ SEMB sig, disabled\n");
2092 /* SEMB is not supported yet */
2093 *p_class = ATA_DEV_SEMB_UNSUP;
2094 return 0;
2095 }
2096
Tejun Heo1ffc1512008-03-23 15:16:53 +09002097 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
2098 /* Device or controller might have reported
2099 * the wrong device class. Give a shot at the
2100 * other IDENTIFY if the current one is
2101 * aborted by the device.
2102 */
2103 if (may_fallback) {
2104 may_fallback = 0;
Tejun Heo54936f82007-05-11 14:35:29 +02002105
Tejun Heo1ffc1512008-03-23 15:16:53 +09002106 if (class == ATA_DEV_ATA)
2107 class = ATA_DEV_ATAPI;
2108 else
2109 class = ATA_DEV_ATA;
2110 goto retry;
2111 }
2112
2113 /* Control reaches here iff the device aborted
2114 * both flavors of IDENTIFYs which happens
2115 * sometimes with phantom devices.
2116 */
2117 ata_dev_printk(dev, KERN_DEBUG,
2118 "both IDENTIFYs aborted, assuming NODEV\n");
2119 return -ENOENT;
Tejun Heo54936f82007-05-11 14:35:29 +02002120 }
2121
Tejun Heo49016ac2006-02-21 02:12:11 +09002122 rc = -EIO;
2123 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09002124 goto err_out;
2125 }
2126
Tejun Heo43c9c592010-05-23 12:59:11 +02002127 if (dev->horkage & ATA_HORKAGE_DUMP_ID) {
2128 ata_dev_printk(dev, KERN_DEBUG, "dumping IDENTIFY data, "
2129 "class=%d may_fallback=%d tried_spinup=%d\n",
2130 class, may_fallback, tried_spinup);
2131 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET,
2132 16, 2, id, ATA_ID_WORDS * sizeof(*id), true);
2133 }
2134
Tejun Heo54936f82007-05-11 14:35:29 +02002135 /* Falling back doesn't make sense if ID data was read
2136 * successfully at least once.
2137 */
2138 may_fallback = 0;
2139
Tejun Heo49016ac2006-02-21 02:12:11 +09002140 swap_buf_le16(id, ATA_ID_WORDS);
2141
Tejun Heo49016ac2006-02-21 02:12:11 +09002142 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07002143 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01002144 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07002145
2146 if (class == ATA_DEV_ATA) {
2147 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
2148 goto err_out;
2149 } else {
2150 if (ata_id_is_ata(id))
2151 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09002152 }
2153
Mark Lord169439c2007-04-17 18:26:07 -04002154 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2155 tried_spinup = 1;
2156 /*
2157 * Drive powered-up in standby mode, and requires a specific
2158 * SET_FEATURES spin-up subcommand before it will accept
2159 * anything other than the original IDENTIFY command.
2160 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002161 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07002162 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04002163 rc = -EIO;
2164 reason = "SPINUP failed";
2165 goto err_out;
2166 }
2167 /*
2168 * If the drive initially returned incomplete IDENTIFY info,
2169 * we now must reissue the IDENTIFY command.
2170 */
2171 if (id[2] == 0x37c8)
2172 goto retry;
2173 }
2174
Tejun Heobff04642006-11-10 18:08:10 +09002175 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09002176 /*
2177 * The exact sequence expected by certain pre-ATA4 drives is:
2178 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01002179 * IDENTIFY (optional in early ATA)
2180 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09002181 * anything else..
2182 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01002183 *
2184 * Note that ATA4 says lba is mandatory so the second check
Adam Buchbinderc9404c92009-12-18 15:40:42 -05002185 * should never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09002186 */
2187 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09002188 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09002189 if (err_mask) {
2190 rc = -EIO;
2191 reason = "INIT_DEV_PARAMS failed";
2192 goto err_out;
2193 }
2194
2195 /* current CHS translation info (id[53-58]) might be
2196 * changed. reread the identify device info.
2197 */
Tejun Heobff04642006-11-10 18:08:10 +09002198 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09002199 goto retry;
2200 }
2201 }
2202
2203 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09002204
Tejun Heo49016ac2006-02-21 02:12:11 +09002205 return 0;
2206
2207 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09002208 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002209 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09002210 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09002211 return rc;
2212}
2213
Tejun Heo90627122009-01-29 20:31:36 +09002214static int ata_do_link_spd_horkage(struct ata_device *dev)
2215{
2216 struct ata_link *plink = ata_dev_phys_link(dev);
2217 u32 target, target_limit;
2218
2219 if (!sata_scr_valid(plink))
2220 return 0;
2221
2222 if (dev->horkage & ATA_HORKAGE_1_5_GBPS)
2223 target = 1;
2224 else
2225 return 0;
2226
2227 target_limit = (1 << target) - 1;
2228
2229 /* if already on stricter limit, no need to push further */
2230 if (plink->sata_spd_limit <= target_limit)
2231 return 0;
2232
2233 plink->sata_spd_limit = target_limit;
2234
2235 /* Request another EH round by returning -EAGAIN if link is
2236 * going faster than the target speed. Forward progress is
2237 * guaranteed by setting sata_spd_limit to target_limit above.
2238 */
2239 if (plink->sata_spd > target) {
2240 ata_dev_printk(dev, KERN_INFO,
2241 "applying link speed limit horkage to %s\n",
2242 sata_spd_string(target));
2243 return -EAGAIN;
2244 }
2245 return 0;
2246}
2247
Tejun Heo3373efd2006-05-15 20:57:53 +09002248static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002249{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002250 struct ata_port *ap = dev->link->ap;
Jens Axboe9ce8e302008-08-27 15:23:18 +02002251
2252 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_BRIDGE_OK)
2253 return 0;
2254
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002255 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002256}
2257
Shaohua Li388539f2009-07-27 09:24:35 +08002258static int ata_dev_config_ncq(struct ata_device *dev,
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002259 char *desc, size_t desc_sz)
2260{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002261 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002262 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
Shaohua Li388539f2009-07-27 09:24:35 +08002263 unsigned int err_mask;
2264 char *aa_desc = "";
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002265
2266 if (!ata_id_has_ncq(dev->id)) {
2267 desc[0] = '\0';
Shaohua Li388539f2009-07-27 09:24:35 +08002268 return 0;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002269 }
Tejun Heo75683fe2007-07-05 13:31:27 +09002270 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07002271 snprintf(desc, desc_sz, "NCQ (not used)");
Shaohua Li388539f2009-07-27 09:24:35 +08002272 return 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07002273 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002274 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04002275 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002276 dev->flags |= ATA_DFLAG_NCQ;
2277 }
2278
Shaohua Li388539f2009-07-27 09:24:35 +08002279 if (!(dev->horkage & ATA_HORKAGE_BROKEN_FPDMA_AA) &&
2280 (ap->flags & ATA_FLAG_FPDMA_AA) &&
2281 ata_id_has_fpdma_aa(dev->id)) {
2282 err_mask = ata_dev_set_feature(dev, SETFEATURES_SATA_ENABLE,
2283 SATA_FPDMA_AA);
2284 if (err_mask) {
2285 ata_dev_printk(dev, KERN_ERR, "failed to enable AA"
2286 "(error_mask=0x%x)\n", err_mask);
2287 if (err_mask != AC_ERR_DEV) {
2288 dev->horkage |= ATA_HORKAGE_BROKEN_FPDMA_AA;
2289 return -EIO;
2290 }
2291 } else
2292 aa_desc = ", AA";
2293 }
2294
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002295 if (hdepth >= ddepth)
Shaohua Li388539f2009-07-27 09:24:35 +08002296 snprintf(desc, desc_sz, "NCQ (depth %d)%s", ddepth, aa_desc);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002297 else
Shaohua Li388539f2009-07-27 09:24:35 +08002298 snprintf(desc, desc_sz, "NCQ (depth %d/%d)%s", hdepth,
2299 ddepth, aa_desc);
2300 return 0;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002301}
2302
Tejun Heo49016ac2006-02-21 02:12:11 +09002303/**
Tejun Heoffeae412006-03-01 16:09:35 +09002304 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09002305 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 *
Tejun Heoffeae412006-03-01 16:09:35 +09002307 * Configure @dev according to @dev->id. Generic and low-level
2308 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 *
2310 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09002311 * Kernel thread context (may sleep)
2312 *
2313 * RETURNS:
2314 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09002316int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002318 struct ata_port *ap = dev->link->ap;
2319 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09002320 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002321 const u16 *id = dev->id;
Tejun Heo7dc951a2007-11-27 19:43:42 +09002322 unsigned long xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01002323 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002324 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2325 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05002326 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002328 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09002329 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002330 __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002334 if (ata_msg_probe(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002335 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Tejun Heo75683fe2007-07-05 13:31:27 +09002337 /* set horkage */
2338 dev->horkage |= ata_dev_blacklisted(dev);
Tejun Heo33267322008-02-13 09:15:09 +09002339 ata_force_horkage(dev);
Tejun Heo75683fe2007-07-05 13:31:27 +09002340
Tejun Heo50af2fa2008-05-19 01:15:14 +09002341 if (dev->horkage & ATA_HORKAGE_DISABLE) {
2342 ata_dev_printk(dev, KERN_INFO,
2343 "unsupported device, disabling\n");
2344 ata_dev_disable(dev);
2345 return 0;
2346 }
2347
Tejun Heo2486fa52008-07-31 07:52:40 +09002348 if ((!atapi_enabled || (ap->flags & ATA_FLAG_NO_ATAPI)) &&
2349 dev->class == ATA_DEV_ATAPI) {
2350 ata_dev_printk(dev, KERN_WARNING,
2351 "WARNING: ATAPI is %s, device ignored.\n",
2352 atapi_enabled ? "not supported with this driver"
2353 : "disabled");
2354 ata_dev_disable(dev);
2355 return 0;
2356 }
2357
Tejun Heo90627122009-01-29 20:31:36 +09002358 rc = ata_do_link_spd_horkage(dev);
2359 if (rc)
2360 return rc;
2361
Tejun Heo67465442007-05-15 03:28:16 +09002362 /* let ACPI work its magic */
2363 rc = ata_acpi_on_devcfg(dev);
2364 if (rc)
2365 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08002366
Tejun Heo05027ad2007-09-03 12:32:57 +09002367 /* massage HPA, do it early as it might change IDENTIFY data */
2368 rc = ata_hpa_resize(dev);
2369 if (rc)
2370 return rc;
2371
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002372 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002373 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002374 ata_dev_printk(dev, KERN_DEBUG,
2375 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2376 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002377 __func__,
Tejun Heof15a1da2006-05-15 20:57:56 +09002378 id[49], id[82], id[83], id[84],
2379 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002380
Tejun Heo208a9932006-03-05 17:55:58 +09002381 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09002382 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09002383 dev->max_sectors = 0;
2384 dev->cdb_len = 0;
2385 dev->n_sectors = 0;
2386 dev->cylinders = 0;
2387 dev->heads = 0;
2388 dev->sectors = 0;
Mark Lorde18086d2009-03-19 13:32:21 -04002389 dev->multi_count = 0;
Tejun Heo208a9932006-03-05 17:55:58 +09002390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 /*
2392 * common ATA, ATAPI feature tests
2393 */
2394
Tejun Heoff8854b2006-03-06 04:31:56 +09002395 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002396 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002398 if (ata_msg_probe(ap))
2399 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Albert Leeef143d52007-06-05 13:01:33 +08002401 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2402 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2403 sizeof(fwrevbuf));
2404
2405 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2406 sizeof(modelbuf));
2407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 /* ATA-specific feature tests */
2409 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01002410 if (ata_id_is_cfa(id)) {
Sergei Shtylyov62afe5d2009-04-13 20:50:00 +04002411 /* CPRM may make this media unusable */
2412 if (id[ATA_ID_CFA_KEY_MGMT] & 1)
Tejun Heo44877b42007-02-21 01:06:51 +09002413 ata_dev_printk(dev, KERN_WARNING,
2414 "supports DRM functions and may "
2415 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01002416 snprintf(revbuf, 7, "CFA");
Alan Coxae8d4ee2007-11-04 22:05:49 -05002417 } else {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002418 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
Alan Coxae8d4ee2007-11-04 22:05:49 -05002419 /* Warn the user if the device has TPM extensions */
2420 if (ata_id_has_tpm(id))
2421 ata_dev_printk(dev, KERN_WARNING,
2422 "supports DRM functions and may "
2423 "not be fully accessable.\n");
2424 }
Alan Coxb352e572006-08-10 18:52:12 +01002425
Tejun Heo1148c3a2006-03-13 19:48:04 +09002426 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09002427
Mark Lorde18086d2009-03-19 13:32:21 -04002428 /* get current R/W Multiple count setting */
2429 if ((dev->id[47] >> 8) == 0x80 && (dev->id[59] & 0x100)) {
2430 unsigned int max = dev->id[47] & 0xff;
2431 unsigned int cnt = dev->id[59] & 0xff;
2432 /* only recognize/allow powers of two here */
2433 if (is_power_of_2(max) && is_power_of_2(cnt))
2434 if (cnt <= max)
2435 dev->multi_count = cnt;
2436 }
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002437
Tejun Heo1148c3a2006-03-13 19:48:04 +09002438 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09002439 const char *lba_desc;
Shaohua Li388539f2009-07-27 09:24:35 +08002440 char ncq_desc[24];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002441
Tejun Heo4c2d7212006-03-05 17:55:58 +09002442 lba_desc = "LBA";
2443 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002444 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002445 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002446 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09002447
2448 if (dev->n_sectors >= (1UL << 28) &&
2449 ata_id_has_flush_ext(id))
2450 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002451 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002452
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002453 /* config NCQ */
Shaohua Li388539f2009-07-27 09:24:35 +08002454 rc = ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2455 if (rc)
2456 return rc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002457
Albert Lee8bf62ece2005-05-12 15:29:42 -04002458 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002459 if (ata_msg_drv(ap) && print_info) {
2460 ata_dev_printk(dev, KERN_INFO,
2461 "%s: %s, %s, max %s\n",
2462 revbuf, modelbuf, fwrevbuf,
2463 ata_mode_string(xfer_mask));
2464 ata_dev_printk(dev, KERN_INFO,
2465 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002466 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002467 dev->multi_count, lba_desc, ncq_desc);
2468 }
Tejun Heoffeae412006-03-01 16:09:35 +09002469 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002470 /* CHS */
2471
2472 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002473 dev->cylinders = id[1];
2474 dev->heads = id[3];
2475 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002476
Tejun Heo1148c3a2006-03-13 19:48:04 +09002477 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002478 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002479 dev->cylinders = id[54];
2480 dev->heads = id[55];
2481 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002482 }
2483
2484 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002485 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002486 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002487 "%s: %s, %s, max %s\n",
2488 revbuf, modelbuf, fwrevbuf,
2489 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002490 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002491 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2492 (unsigned long long)dev->n_sectors,
2493 dev->multi_count, dev->cylinders,
2494 dev->heads, dev->sectors);
2495 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002496 }
2497
Tejun Heo6e7846e2006-02-12 23:32:58 +09002498 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 }
2500
2501 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002502 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002503 const char *cdb_intr_string = "";
2504 const char *atapi_an_string = "";
Tejun Heo91163002008-02-21 13:25:50 +09002505 const char *dma_dir_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002506 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002507
Tejun Heo1148c3a2006-03-13 19:48:04 +09002508 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002510 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002511 ata_dev_printk(dev, KERN_WARNING,
2512 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002513 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 goto err_out_nosup;
2515 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002516 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Tejun Heo7d77b242007-09-23 13:14:13 +09002518 /* Enable ATAPI AN if both the host and device have
2519 * the support. If PMP is attached, SNTF is required
2520 * to enable ATAPI AN to discern between PHY status
2521 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002522 */
Tejun Heoe7ecd432010-05-19 15:38:58 +02002523 if (atapi_an &&
2524 (ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
Tejun Heo071f44b2008-04-07 22:47:22 +09002525 (!sata_pmp_attached(ap) ||
Tejun Heo7d77b242007-09-23 13:14:13 +09002526 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002527 unsigned int err_mask;
2528
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002529 /* issue SET feature command to turn this on */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002530 err_mask = ata_dev_set_feature(dev,
2531 SETFEATURES_SATA_ENABLE, SATA_AN);
Tejun Heo854c73a2007-09-23 13:14:11 +09002532 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002533 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002534 "failed to enable ATAPI AN "
2535 "(err_mask=0x%x)\n", err_mask);
2536 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002537 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002538 atapi_an_string = ", ATAPI AN";
2539 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002540 }
2541
Albert Lee08a556d2006-03-31 13:29:04 +08002542 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002543 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002544 cdb_intr_string = ", CDB intr";
2545 }
Albert Lee312f7da2005-09-27 17:38:03 +08002546
Tejun Heo91163002008-02-21 13:25:50 +09002547 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2548 dev->flags |= ATA_DFLAG_DMADIR;
2549 dma_dir_string = ", DMADIR";
2550 }
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002553 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002554 ata_dev_printk(dev, KERN_INFO,
Tejun Heo91163002008-02-21 13:25:50 +09002555 "ATAPI: %s, %s, max %s%s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002556 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002557 ata_mode_string(xfer_mask),
Tejun Heo91163002008-02-21 13:25:50 +09002558 cdb_intr_string, atapi_an_string,
2559 dma_dir_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 }
2561
Tejun Heo914ed352006-11-01 18:39:55 +09002562 /* determine max_sectors */
2563 dev->max_sectors = ATA_MAX_SECTORS;
2564 if (dev->flags & ATA_DFLAG_LBA48)
2565 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2566
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002567 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2568 if (ata_id_has_hipm(dev->id))
2569 dev->flags |= ATA_DFLAG_HIPM;
2570 if (ata_id_has_dipm(dev->id))
2571 dev->flags |= ATA_DFLAG_DIPM;
2572 }
2573
Alan Coxc5038fc2007-10-25 14:21:16 +01002574 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2575 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002576 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002577 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002578 ata_dev_printk(dev, KERN_INFO,
2579 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002580 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002581 dev->max_sectors = ATA_MAX_SECTORS;
2582 }
2583
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002584 if ((dev->class == ATA_DEV_ATAPI) &&
Albert Leef442cd82007-11-15 10:35:47 +09002585 (atapi_command_packet_set(id) == TYPE_TAPE)) {
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002586 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
Albert Leef442cd82007-11-15 10:35:47 +09002587 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2588 }
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002589
Tejun Heo75683fe2007-07-05 13:31:27 +09002590 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002591 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2592 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002593
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002594 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2595 dev->horkage |= ATA_HORKAGE_IPM;
2596
2597 /* reset link pm_policy for this port to no pm */
2598 ap->pm_policy = MAX_PERFORMANCE;
2599 }
2600
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002601 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002602 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002603
Alan Coxc5038fc2007-10-25 14:21:16 +01002604 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2605 /* Let the user know. We don't want to disallow opens for
2606 rescue purposes, or in case the vendor is just a blithering
2607 idiot. Do this after the dev_config call as some controllers
2608 with buggy firmware may want to avoid reporting false device
2609 bugs */
2610
2611 if (print_info) {
2612 ata_dev_printk(dev, KERN_WARNING,
2613"Drive reports diagnostics failure. This may indicate a drive\n");
2614 ata_dev_printk(dev, KERN_WARNING,
2615"fault or invalid emulation. Contact drive vendor for information.\n");
2616 }
2617 }
2618
Tejun Heoac70a962008-11-27 13:36:48 +09002619 if ((dev->horkage & ATA_HORKAGE_FIRMWARE_WARN) && print_info) {
2620 ata_dev_printk(dev, KERN_WARNING, "WARNING: device requires "
2621 "firmware update to be fully functional.\n");
2622 ata_dev_printk(dev, KERN_WARNING, " contact the vendor "
2623 "or visit http://ata.wiki.kernel.org.\n");
2624 }
2625
Tejun Heoffeae412006-03-01 16:09:35 +09002626 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
2628err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002629 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002630 ata_dev_printk(dev, KERN_DEBUG,
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002631 "%s: EXIT, err\n", __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002632 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633}
2634
2635/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002636 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002637 * @ap: port
2638 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002639 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002640 * detection.
2641 */
2642
2643int ata_cable_40wire(struct ata_port *ap)
2644{
2645 return ATA_CBL_PATA40;
2646}
2647
2648/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002649 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002650 * @ap: port
2651 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002652 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002653 * detection.
2654 */
2655
2656int ata_cable_80wire(struct ata_port *ap)
2657{
2658 return ATA_CBL_PATA80;
2659}
2660
2661/**
2662 * ata_cable_unknown - return unknown PATA cable.
2663 * @ap: port
2664 *
2665 * Helper method for drivers which have no PATA cable detection.
2666 */
2667
2668int ata_cable_unknown(struct ata_port *ap)
2669{
2670 return ATA_CBL_PATA_UNK;
2671}
2672
2673/**
Tejun Heoc88f90c2007-11-27 19:43:48 +09002674 * ata_cable_ignore - return ignored PATA cable.
2675 * @ap: port
2676 *
2677 * Helper method for drivers which don't use cable type to limit
2678 * transfer mode.
2679 */
2680int ata_cable_ignore(struct ata_port *ap)
2681{
2682 return ATA_CBL_PATA_IGN;
2683}
2684
2685/**
Alan Coxbe0d18d2007-03-06 02:37:56 -08002686 * ata_cable_sata - return SATA cable type
2687 * @ap: port
2688 *
2689 * Helper method for drivers which have SATA cables
2690 */
2691
2692int ata_cable_sata(struct ata_port *ap)
2693{
2694 return ATA_CBL_SATA;
2695}
2696
2697/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 * ata_bus_probe - Reset and probe ATA bus
2699 * @ap: Bus to probe
2700 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002701 * Master ATA bus probing function. Initiates a hardware-dependent
2702 * bus reset, then attempts to identify any devices found on
2703 * the bus.
2704 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002706 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 *
2708 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002709 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 */
2711
Brian King80289162006-08-07 14:27:31 -05002712int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002714 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002715 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002716 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002717 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
Tejun Heo1eca4362008-11-03 20:03:17 +09002719 ata_for_each_dev(dev, &ap->link, ALL)
Tejun Heof58229f2007-08-06 18:36:23 +09002720 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002721
2722 retry:
Tejun Heo1eca4362008-11-03 20:03:17 +09002723 ata_for_each_dev(dev, &ap->link, ALL) {
Tejun Heocdeab112007-10-29 16:41:09 +09002724 /* If we issue an SRST then an ATA drive (not ATAPI)
2725 * may change configuration and be in PIO0 timing. If
2726 * we do a hard reset (or are coming from power on)
2727 * this is true for ATA or ATAPI. Until we've set a
2728 * suitable controller mode we should not touch the
2729 * bus as we may be talking too fast.
2730 */
2731 dev->pio_mode = XFER_PIO_0;
2732
2733 /* If the controller has a pio mode setup function
2734 * then use it to set the chipset to rights. Don't
2735 * touch the DMA setup as that will be dealt with when
2736 * configuring devices.
2737 */
2738 if (ap->ops->set_piomode)
2739 ap->ops->set_piomode(ap, dev);
2740 }
2741
Tejun Heo20444702006-03-13 01:57:01 +09002742 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002743 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002744
Tejun Heo1eca4362008-11-03 20:03:17 +09002745 ata_for_each_dev(dev, &ap->link, ALL) {
Tejun Heo3e4ec342010-05-10 21:41:30 +02002746 if (dev->class != ATA_DEV_UNKNOWN)
Tejun Heo52783c52006-05-31 18:28:22 +09002747 classes[dev->devno] = dev->class;
2748 else
2749 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002750
Tejun Heo52783c52006-05-31 18:28:22 +09002751 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002754 /* read IDENTIFY page and configure devices. We have to do the identify
2755 specific sequence bass-ackwards so that PDIAG- is released by
2756 the slave device */
2757
Tejun Heo1eca4362008-11-03 20:03:17 +09002758 ata_for_each_dev(dev, &ap->link, ALL_REVERSE) {
Tejun Heof58229f2007-08-06 18:36:23 +09002759 if (tries[dev->devno])
2760 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002761
Tejun Heoe1211e32006-04-01 01:38:18 +09002762 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002763 continue;
2764
Tejun Heobff04642006-11-10 18:08:10 +09002765 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2766 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002767 if (rc)
2768 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002769 }
2770
Alan Coxbe0d18d2007-03-06 02:37:56 -08002771 /* Now ask for the cable type as PDIAG- should have been released */
2772 if (ap->ops->cable_detect)
2773 ap->cbl = ap->ops->cable_detect(ap);
2774
Tejun Heo1eca4362008-11-03 20:03:17 +09002775 /* We may have SATA bridge glue hiding here irrespective of
2776 * the reported cable types and sensed types. When SATA
2777 * drives indicate we have a bridge, we don't know which end
2778 * of the link the bridge is which is a problem.
2779 */
2780 ata_for_each_dev(dev, &ap->link, ENABLED)
Alan Cox614fe292007-08-22 23:22:45 +01002781 if (ata_id_is_sata(dev->id))
2782 ap->cbl = ATA_CBL_SATA;
Alan Cox614fe292007-08-22 23:22:45 +01002783
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002784 /* After the identify sequence we can now set up the devices. We do
2785 this in the normal order so that the user doesn't get confused */
2786
Tejun Heo1eca4362008-11-03 20:03:17 +09002787 ata_for_each_dev(dev, &ap->link, ENABLED) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002788 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002789 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002790 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002791 if (rc)
2792 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 }
2794
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002795 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002796 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002797 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002798 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Tejun Heo1eca4362008-11-03 20:03:17 +09002800 ata_for_each_dev(dev, &ap->link, ENABLED)
2801 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002802
Tejun Heo96072e62006-04-01 01:38:17 +09002803 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002804
2805 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002806 tries[dev->devno]--;
2807
Tejun Heo14d2bac2006-04-02 17:54:46 +09002808 switch (rc) {
2809 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002810 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002811 tries[dev->devno] = 0;
2812 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002813
2814 case -ENODEV:
2815 /* give it just one more chance */
2816 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002817 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002818 if (tries[dev->devno] == 1) {
2819 /* This is the last chance, better to slow
2820 * down than lose it.
2821 */
Tejun Heoa07d4992009-01-29 20:31:33 +09002822 sata_down_spd_limit(&ap->link, 0);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002823 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2824 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002825 }
2826
Tejun Heo4ae72a12007-02-02 16:22:30 +09002827 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002828 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002829
Tejun Heo14d2bac2006-04-02 17:54:46 +09002830 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831}
2832
2833/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002834 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002835 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002836 *
2837 * This function prints link speed and status of a SATA link.
2838 *
2839 * LOCKING:
2840 * None.
2841 */
Adrian Bunk6bdb4fc2008-04-21 11:51:11 +03002842static void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002843{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002844 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002845
Tejun Heo936fd732007-08-06 18:36:23 +09002846 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002847 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002848 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002849
Tejun Heob1c72912008-07-31 17:02:43 +09002850 if (ata_phys_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002851 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002852 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002853 "SATA link up %s (SStatus %X SControl %X)\n",
2854 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002855 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002856 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002857 "SATA link down (SStatus %X SControl %X)\n",
2858 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002859 }
2860}
2861
2862/**
Alan Coxebdfca62006-03-23 15:38:34 +00002863 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002864 * @adev: device
2865 *
2866 * Obtain the other device on the same cable, or if none is
2867 * present NULL is returned
2868 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002869
Tejun Heo3373efd2006-05-15 20:57:53 +09002870struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002871{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002872 struct ata_link *link = adev->link;
2873 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002874 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002875 return NULL;
2876 return pair;
2877}
2878
2879/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002880 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002881 * @link: Link to adjust SATA spd limit for
Tejun Heoa07d4992009-01-29 20:31:33 +09002882 * @spd_limit: Additional limit
Tejun Heo1c3fae42006-04-02 20:53:28 +09002883 *
Tejun Heo936fd732007-08-06 18:36:23 +09002884 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002885 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002886 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002887 *
Tejun Heoa07d4992009-01-29 20:31:33 +09002888 * If @spd_limit is non-zero, the speed is limited to equal to or
2889 * lower than @spd_limit if such speed is supported. If
2890 * @spd_limit is slower than any supported speed, only the lowest
2891 * supported speed is allowed.
2892 *
Tejun Heo1c3fae42006-04-02 20:53:28 +09002893 * LOCKING:
2894 * Inherited from caller.
2895 *
2896 * RETURNS:
2897 * 0 on success, negative errno on failure
2898 */
Tejun Heoa07d4992009-01-29 20:31:33 +09002899int sata_down_spd_limit(struct ata_link *link, u32 spd_limit)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002900{
Tejun Heo81952c52006-05-15 20:57:47 +09002901 u32 sstatus, spd, mask;
Tejun Heoa07d4992009-01-29 20:31:33 +09002902 int rc, bit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002903
Tejun Heo936fd732007-08-06 18:36:23 +09002904 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002905 return -EOPNOTSUPP;
2906
2907 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002908 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002909 */
Tejun Heo936fd732007-08-06 18:36:23 +09002910 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo9913ff82009-01-29 20:31:31 +09002911 if (rc == 0 && ata_sstatus_online(sstatus))
Tejun Heo008a7892007-07-16 14:29:40 +09002912 spd = (sstatus >> 4) & 0xf;
2913 else
Tejun Heo936fd732007-08-06 18:36:23 +09002914 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002915
Tejun Heo936fd732007-08-06 18:36:23 +09002916 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002917 if (mask <= 1)
2918 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002919
2920 /* unconditionally mask off the highest bit */
Tejun Heoa07d4992009-01-29 20:31:33 +09002921 bit = fls(mask) - 1;
2922 mask &= ~(1 << bit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002923
Tejun Heo008a7892007-07-16 14:29:40 +09002924 /* Mask off all speeds higher than or equal to the current
2925 * one. Force 1.5Gbps if current SPD is not available.
2926 */
2927 if (spd > 1)
2928 mask &= (1 << (spd - 1)) - 1;
2929 else
2930 mask &= 1;
2931
2932 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002933 if (!mask)
2934 return -EINVAL;
2935
Tejun Heoa07d4992009-01-29 20:31:33 +09002936 if (spd_limit) {
2937 if (mask & ((1 << spd_limit) - 1))
2938 mask &= (1 << spd_limit) - 1;
2939 else {
2940 bit = ffs(mask) - 1;
2941 mask = 1 << bit;
2942 }
2943 }
2944
Tejun Heo936fd732007-08-06 18:36:23 +09002945 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002946
Tejun Heo936fd732007-08-06 18:36:23 +09002947 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002948 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002949
2950 return 0;
2951}
2952
Tejun Heo936fd732007-08-06 18:36:23 +09002953static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002954{
Tejun Heo52702222007-10-31 10:17:07 +09002955 struct ata_link *host_link = &link->ap->link;
2956 u32 limit, target, spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002957
Tejun Heo52702222007-10-31 10:17:07 +09002958 limit = link->sata_spd_limit;
2959
2960 /* Don't configure downstream link faster than upstream link.
2961 * It doesn't speed up anything and some PMPs choke on such
2962 * configuration.
2963 */
2964 if (!ata_is_host_link(link) && host_link->sata_spd)
2965 limit &= (1 << host_link->sata_spd) - 1;
2966
2967 if (limit == UINT_MAX)
2968 target = 0;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002969 else
Tejun Heo52702222007-10-31 10:17:07 +09002970 target = fls(limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002971
2972 spd = (*scontrol >> 4) & 0xf;
Tejun Heo52702222007-10-31 10:17:07 +09002973 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002974
Tejun Heo52702222007-10-31 10:17:07 +09002975 return spd != target;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002976}
2977
2978/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002979 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002980 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002981 *
2982 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002983 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002984 * whether hardreset is necessary to apply SATA spd
2985 * configuration.
2986 *
2987 * LOCKING:
2988 * Inherited from caller.
2989 *
2990 * RETURNS:
2991 * 1 if SATA spd configuration is needed, 0 otherwise.
2992 */
Adrian Bunk1dc55e82008-04-21 11:51:17 +03002993static int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002994{
2995 u32 scontrol;
2996
Tejun Heo936fd732007-08-06 18:36:23 +09002997 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heodb64bcf2007-10-31 10:17:06 +09002998 return 1;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002999
Tejun Heo936fd732007-08-06 18:36:23 +09003000 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003001}
3002
3003/**
Tejun Heo3c567b72006-05-15 20:57:23 +09003004 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09003005 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09003006 *
Tejun Heo936fd732007-08-06 18:36:23 +09003007 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09003008 *
3009 * LOCKING:
3010 * Inherited from caller.
3011 *
3012 * RETURNS:
3013 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09003014 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09003015 */
Tejun Heo936fd732007-08-06 18:36:23 +09003016int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09003017{
3018 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003019 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003020
Tejun Heo936fd732007-08-06 18:36:23 +09003021 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003022 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003023
Tejun Heo936fd732007-08-06 18:36:23 +09003024 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09003025 return 0;
3026
Tejun Heo936fd732007-08-06 18:36:23 +09003027 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003028 return rc;
3029
Tejun Heo1c3fae42006-04-02 20:53:28 +09003030 return 1;
3031}
3032
Alan Cox452503f2005-10-21 19:01:32 -04003033/*
3034 * This mode timing computation functionality is ported over from
3035 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
3036 */
3037/*
Alan Coxb352e572006-08-10 18:52:12 +01003038 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04003039 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01003040 * for UDMA6, which is currently supported only by Maxtor drives.
3041 *
3042 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04003043 */
3044
3045static const struct ata_timing ata_timing[] = {
David Daney3ada9c12009-01-15 17:45:31 -08003046/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 0, 960, 0 }, */
3047 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 0, 600, 0 },
3048 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 0, 383, 0 },
3049 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 0, 240, 0 },
3050 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 0, 180, 0 },
3051 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 0, 120, 0 },
3052 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 0, 100, 0 },
3053 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 0, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003054
David Daney3ada9c12009-01-15 17:45:31 -08003055 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 50, 960, 0 },
3056 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 30, 480, 0 },
3057 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 20, 240, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003058
David Daney3ada9c12009-01-15 17:45:31 -08003059 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 20, 480, 0 },
3060 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 5, 150, 0 },
3061 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 5, 120, 0 },
3062 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 5, 100, 0 },
3063 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 5, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003064
David Daney3ada9c12009-01-15 17:45:31 -08003065/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 0, 150 }, */
3066 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 0, 120 },
3067 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 0, 80 },
3068 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 0, 60 },
3069 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 0, 45 },
3070 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 0, 30 },
3071 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 0, 20 },
3072 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 0, 15 },
Alan Cox452503f2005-10-21 19:01:32 -04003073
3074 { 0xFF }
3075};
3076
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003077#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
3078#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
Alan Cox452503f2005-10-21 19:01:32 -04003079
3080static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
3081{
David Daney3ada9c12009-01-15 17:45:31 -08003082 q->setup = EZ(t->setup * 1000, T);
3083 q->act8b = EZ(t->act8b * 1000, T);
3084 q->rec8b = EZ(t->rec8b * 1000, T);
3085 q->cyc8b = EZ(t->cyc8b * 1000, T);
3086 q->active = EZ(t->active * 1000, T);
3087 q->recover = EZ(t->recover * 1000, T);
3088 q->dmack_hold = EZ(t->dmack_hold * 1000, T);
3089 q->cycle = EZ(t->cycle * 1000, T);
3090 q->udma = EZ(t->udma * 1000, UT);
Alan Cox452503f2005-10-21 19:01:32 -04003091}
3092
3093void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
3094 struct ata_timing *m, unsigned int what)
3095{
3096 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
3097 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
3098 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
3099 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
3100 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
3101 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
David Daney3ada9c12009-01-15 17:45:31 -08003102 if (what & ATA_TIMING_DMACK_HOLD) m->dmack_hold = max(a->dmack_hold, b->dmack_hold);
Alan Cox452503f2005-10-21 19:01:32 -04003103 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
3104 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
3105}
3106
Tejun Heo63573572007-11-27 19:43:39 +09003107const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
Alan Cox452503f2005-10-21 19:01:32 -04003108{
Tejun Heo70cd0712007-11-27 19:43:40 +09003109 const struct ata_timing *t = ata_timing;
Alan Cox452503f2005-10-21 19:01:32 -04003110
Tejun Heo70cd0712007-11-27 19:43:40 +09003111 while (xfer_mode > t->mode)
3112 t++;
3113
3114 if (xfer_mode == t->mode)
3115 return t;
3116 return NULL;
Alan Cox452503f2005-10-21 19:01:32 -04003117}
3118
3119int ata_timing_compute(struct ata_device *adev, unsigned short speed,
3120 struct ata_timing *t, int T, int UT)
3121{
Bartlomiej Zolnierkiewicz9e8808a2010-01-18 18:13:57 +01003122 const u16 *id = adev->id;
Alan Cox452503f2005-10-21 19:01:32 -04003123 const struct ata_timing *s;
3124 struct ata_timing p;
3125
3126 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003127 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08003128 */
Alan Cox452503f2005-10-21 19:01:32 -04003129
3130 if (!(s = ata_timing_find_mode(speed)))
3131 return -EINVAL;
3132
Albert Lee75b1f2f2005-11-16 17:06:18 +08003133 memcpy(t, s, sizeof(*s));
3134
Alan Cox452503f2005-10-21 19:01:32 -04003135 /*
3136 * If the drive is an EIDE drive, it can tell us it needs extended
3137 * PIO/MW_DMA cycle timing.
3138 */
3139
Bartlomiej Zolnierkiewicz9e8808a2010-01-18 18:13:57 +01003140 if (id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
Alan Cox452503f2005-10-21 19:01:32 -04003141 memset(&p, 0, sizeof(p));
Bartlomiej Zolnierkiewicz9e8808a2010-01-18 18:13:57 +01003142
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003143 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
Bartlomiej Zolnierkiewicz9e8808a2010-01-18 18:13:57 +01003144 if (speed <= XFER_PIO_2)
3145 p.cycle = p.cyc8b = id[ATA_ID_EIDE_PIO];
3146 else if ((speed <= XFER_PIO_4) ||
3147 (speed == XFER_PIO_5 && !ata_id_is_cfa(id)))
3148 p.cycle = p.cyc8b = id[ATA_ID_EIDE_PIO_IORDY];
3149 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2)
3150 p.cycle = id[ATA_ID_EIDE_DMA_MIN];
3151
Alan Cox452503f2005-10-21 19:01:32 -04003152 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
3153 }
3154
3155 /*
3156 * Convert the timing to bus clock counts.
3157 */
3158
Albert Lee75b1f2f2005-11-16 17:06:18 +08003159 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04003160
3161 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003162 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
3163 * S.M.A.R.T * and some other commands. We have to ensure that the
3164 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04003165 */
3166
Alanfd3367af2006-12-07 12:41:18 +00003167 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04003168 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
3169 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
3170 }
3171
3172 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003173 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04003174 */
3175
3176 if (t->act8b + t->rec8b < t->cyc8b) {
3177 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
3178 t->rec8b = t->cyc8b - t->act8b;
3179 }
3180
3181 if (t->active + t->recover < t->cycle) {
3182 t->active += (t->cycle - (t->active + t->recover)) / 2;
3183 t->recover = t->cycle - t->active;
3184 }
Jeff Garzika617c092007-05-21 20:14:23 -04003185
Alan Cox4f701d12007-04-23 11:55:36 +01003186 /* In a few cases quantisation may produce enough errors to
3187 leave t->cycle too low for the sum of active and recovery
3188 if so we must correct this */
3189 if (t->active + t->recover > t->cycle)
3190 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04003191
3192 return 0;
3193}
3194
Tejun Heocf176e12006-04-02 17:54:46 +09003195/**
Tejun Heoa0f79b92007-12-18 16:33:05 +09003196 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
3197 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
3198 * @cycle: cycle duration in ns
3199 *
3200 * Return matching xfer mode for @cycle. The returned mode is of
3201 * the transfer type specified by @xfer_shift. If @cycle is too
3202 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
3203 * than the fastest known mode, the fasted mode is returned.
3204 *
3205 * LOCKING:
3206 * None.
3207 *
3208 * RETURNS:
3209 * Matching xfer_mode, 0xff if no match found.
3210 */
3211u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
3212{
3213 u8 base_mode = 0xff, last_mode = 0xff;
3214 const struct ata_xfer_ent *ent;
3215 const struct ata_timing *t;
3216
3217 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
3218 if (ent->shift == xfer_shift)
3219 base_mode = ent->base;
3220
3221 for (t = ata_timing_find_mode(base_mode);
3222 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
3223 unsigned short this_cycle;
3224
3225 switch (xfer_shift) {
3226 case ATA_SHIFT_PIO:
3227 case ATA_SHIFT_MWDMA:
3228 this_cycle = t->cycle;
3229 break;
3230 case ATA_SHIFT_UDMA:
3231 this_cycle = t->udma;
3232 break;
3233 default:
3234 return 0xff;
3235 }
3236
3237 if (cycle > this_cycle)
3238 break;
3239
3240 last_mode = t->mode;
3241 }
3242
3243 return last_mode;
3244}
3245
3246/**
Tejun Heocf176e12006-04-02 17:54:46 +09003247 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09003248 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09003249 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09003250 *
3251 * Adjust xfer masks of @dev downward. Note that this function
3252 * does not apply the change. Invoking ata_set_mode() afterwards
3253 * will apply the limit.
3254 *
3255 * LOCKING:
3256 * Inherited from caller.
3257 *
3258 * RETURNS:
3259 * 0 on success, negative errno on failure
3260 */
Tejun Heo458337d2007-02-02 16:22:30 +09003261int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09003262{
Tejun Heo458337d2007-02-02 16:22:30 +09003263 char buf[32];
Tejun Heo7dc951a2007-11-27 19:43:42 +09003264 unsigned long orig_mask, xfer_mask;
3265 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heo458337d2007-02-02 16:22:30 +09003266 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09003267
Tejun Heo458337d2007-02-02 16:22:30 +09003268 quiet = !!(sel & ATA_DNXFER_QUIET);
3269 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09003270
Tejun Heo458337d2007-02-02 16:22:30 +09003271 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3272 dev->mwdma_mask,
3273 dev->udma_mask);
3274 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09003275
Tejun Heo458337d2007-02-02 16:22:30 +09003276 switch (sel) {
3277 case ATA_DNXFER_PIO:
3278 highbit = fls(pio_mask) - 1;
3279 pio_mask &= ~(1 << highbit);
3280 break;
3281
3282 case ATA_DNXFER_DMA:
3283 if (udma_mask) {
3284 highbit = fls(udma_mask) - 1;
3285 udma_mask &= ~(1 << highbit);
3286 if (!udma_mask)
3287 return -ENOENT;
3288 } else if (mwdma_mask) {
3289 highbit = fls(mwdma_mask) - 1;
3290 mwdma_mask &= ~(1 << highbit);
3291 if (!mwdma_mask)
3292 return -ENOENT;
3293 }
3294 break;
3295
3296 case ATA_DNXFER_40C:
3297 udma_mask &= ATA_UDMA_MASK_40C;
3298 break;
3299
3300 case ATA_DNXFER_FORCE_PIO0:
3301 pio_mask &= 1;
3302 case ATA_DNXFER_FORCE_PIO:
3303 mwdma_mask = 0;
3304 udma_mask = 0;
3305 break;
3306
Tejun Heo458337d2007-02-02 16:22:30 +09003307 default:
3308 BUG();
3309 }
3310
3311 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3312
3313 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3314 return -ENOENT;
3315
3316 if (!quiet) {
3317 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3318 snprintf(buf, sizeof(buf), "%s:%s",
3319 ata_mode_string(xfer_mask),
3320 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3321 else
3322 snprintf(buf, sizeof(buf), "%s",
3323 ata_mode_string(xfer_mask));
3324
3325 ata_dev_printk(dev, KERN_WARNING,
3326 "limiting speed to %s\n", buf);
3327 }
Tejun Heocf176e12006-04-02 17:54:46 +09003328
3329 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3330 &dev->udma_mask);
3331
Tejun Heocf176e12006-04-02 17:54:46 +09003332 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09003333}
3334
Tejun Heo3373efd2006-05-15 20:57:53 +09003335static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336{
Tejun Heod0cb43b2009-07-09 09:27:50 +09003337 struct ata_port *ap = dev->link->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003338 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heod0cb43b2009-07-09 09:27:50 +09003339 const bool nosetxfer = dev->horkage & ATA_HORKAGE_NOSETXFER;
Tejun Heo4055dee2008-02-07 10:34:08 +09003340 const char *dev_err_whine = "";
3341 int ign_dev_err = 0;
Tejun Heod0cb43b2009-07-09 09:27:50 +09003342 unsigned int err_mask = 0;
Tejun Heo83206a22006-03-24 15:25:31 +09003343 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
Tejun Heoe8384602006-04-02 18:51:53 +09003345 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 if (dev->xfer_shift == ATA_SHIFT_PIO)
3347 dev->flags |= ATA_DFLAG_PIO;
3348
Tejun Heod0cb43b2009-07-09 09:27:50 +09003349 if (nosetxfer && ap->flags & ATA_FLAG_SATA && ata_id_is_sata(dev->id))
3350 dev_err_whine = " (SET_XFERMODE skipped)";
3351 else {
3352 if (nosetxfer)
3353 ata_dev_printk(dev, KERN_WARNING,
3354 "NOSETXFER but PATA detected - can't "
3355 "skip SETXFER, might malfunction\n");
3356 err_mask = ata_dev_set_xfermode(dev);
3357 }
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003358
Tejun Heo4055dee2008-02-07 10:34:08 +09003359 if (err_mask & ~AC_ERR_DEV)
3360 goto fail;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003361
Tejun Heo4055dee2008-02-07 10:34:08 +09003362 /* revalidate */
Tejun Heobaa1e782006-11-01 18:39:27 +09003363 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09003364 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09003365 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09003366 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09003367 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09003368
Alan Coxb93fda12008-04-08 16:36:44 +01003369 if (dev->xfer_shift == ATA_SHIFT_PIO) {
3370 /* Old CFA may refuse this command, which is just fine */
3371 if (ata_id_is_cfa(dev->id))
3372 ign_dev_err = 1;
3373 /* Catch several broken garbage emulations plus some pre
3374 ATA devices */
3375 if (ata_id_major_version(dev->id) == 0 &&
3376 dev->pio_mode <= XFER_PIO_2)
3377 ign_dev_err = 1;
3378 /* Some very old devices and some bad newer ones fail
3379 any kind of SET_XFERMODE request but support PIO0-2
3380 timings and no IORDY */
3381 if (!ata_id_has_iordy(dev->id) && dev->pio_mode <= XFER_PIO_2)
3382 ign_dev_err = 1;
3383 }
Tejun Heo4055dee2008-02-07 10:34:08 +09003384 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3385 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3386 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3387 dev->dma_mode == XFER_MW_DMA_0 &&
3388 (dev->id[63] >> 8) & 1)
3389 ign_dev_err = 1;
3390
3391 /* if the device is actually configured correctly, ignore dev err */
3392 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3393 ign_dev_err = 1;
3394
3395 if (err_mask & AC_ERR_DEV) {
3396 if (!ign_dev_err)
3397 goto fail;
3398 else
3399 dev_err_whine = " (device error ignored)";
3400 }
3401
Tejun Heo23e71c32006-03-06 04:31:57 +09003402 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3403 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
Tejun Heo4055dee2008-02-07 10:34:08 +09003405 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3406 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3407 dev_err_whine);
3408
Tejun Heo83206a22006-03-24 15:25:31 +09003409 return 0;
Tejun Heo4055dee2008-02-07 10:34:08 +09003410
3411 fail:
3412 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3413 "(err_mask=0x%x)\n", err_mask);
3414 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415}
3416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417/**
Alan04351822007-03-06 02:37:52 -08003418 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09003419 * @link: link on which timings will be programmed
Joe Perches1967b7f2008-02-03 17:08:11 +02003420 * @r_failed_dev: out parameter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 *
Alan04351822007-03-06 02:37:52 -08003422 * Standard implementation of the function used to tune and set
3423 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3424 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003425 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04003426 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003428 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003429 *
3430 * RETURNS:
3431 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 */
Alan04351822007-03-06 02:37:52 -08003433
Tejun Heo02607312007-08-06 18:36:23 +09003434int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435{
Tejun Heo02607312007-08-06 18:36:23 +09003436 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09003437 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09003438 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09003439
Tejun Heoa6d5a512006-03-06 04:31:57 +09003440 /* step 1: calculate xfer_mask */
Tejun Heo1eca4362008-11-03 20:03:17 +09003441 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo7dc951a2007-11-27 19:43:42 +09003442 unsigned long pio_mask, dma_mask;
Alan Coxb3a70602007-10-02 12:38:26 -04003443 unsigned int mode_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003444
Alan Coxb3a70602007-10-02 12:38:26 -04003445 mode_mask = ATA_DMA_MASK_ATA;
3446 if (dev->class == ATA_DEV_ATAPI)
3447 mode_mask = ATA_DMA_MASK_ATAPI;
3448 else if (ata_id_is_cfa(dev->id))
3449 mode_mask = ATA_DMA_MASK_CFA;
3450
Tejun Heo3373efd2006-05-15 20:57:53 +09003451 ata_dev_xfermask(dev);
Tejun Heo33267322008-02-13 09:15:09 +09003452 ata_force_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003453
Tejun Heoacf356b2006-03-24 14:07:50 +09003454 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3455 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
Alan Coxb3a70602007-10-02 12:38:26 -04003456
3457 if (libata_dma_mask & mode_mask)
3458 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3459 else
3460 dma_mask = 0;
3461
Tejun Heoacf356b2006-03-24 14:07:50 +09003462 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3463 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003464
Tejun Heo4f659772006-04-01 01:38:18 +09003465 found = 1;
Alan Coxb15b3eb2008-08-01 09:18:34 +01003466 if (ata_dma_enabled(dev))
Alan Cox5444a6f2006-03-27 18:58:20 +01003467 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003468 }
Tejun Heo4f659772006-04-01 01:38:18 +09003469 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003470 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003471
3472 /* step 2: always set host PIO timings */
Tejun Heo1eca4362008-11-03 20:03:17 +09003473 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo70cd0712007-11-27 19:43:40 +09003474 if (dev->pio_mode == 0xff) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003475 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09003476 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003477 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09003478 }
3479
3480 dev->xfer_mode = dev->pio_mode;
3481 dev->xfer_shift = ATA_SHIFT_PIO;
3482 if (ap->ops->set_piomode)
3483 ap->ops->set_piomode(ap, dev);
3484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Tejun Heoa6d5a512006-03-06 04:31:57 +09003486 /* step 3: set host DMA timings */
Tejun Heo1eca4362008-11-03 20:03:17 +09003487 ata_for_each_dev(dev, link, ENABLED) {
3488 if (!ata_dma_enabled(dev))
Tejun Heoe8e06192006-04-01 01:38:18 +09003489 continue;
3490
3491 dev->xfer_mode = dev->dma_mode;
3492 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3493 if (ap->ops->set_dmamode)
3494 ap->ops->set_dmamode(ap, dev);
3495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
3497 /* step 4: update devices' xfer mode */
Tejun Heo1eca4362008-11-03 20:03:17 +09003498 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo3373efd2006-05-15 20:57:53 +09003499 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09003500 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003501 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09003502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503
Tejun Heoe8e06192006-04-01 01:38:18 +09003504 /* Record simplex status. If we selected DMA then the other
3505 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01003506 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003507 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00003508 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003509
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003510 out:
3511 if (rc)
3512 *r_failed_dev = dev;
3513 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514}
3515
3516/**
Tejun Heoaa2731a2008-04-07 22:47:19 +09003517 * ata_wait_ready - wait for link to become ready
3518 * @link: link to be waited on
3519 * @deadline: deadline jiffies for the operation
3520 * @check_ready: callback to check link readiness
3521 *
3522 * Wait for @link to become ready. @check_ready should return
3523 * positive number if @link is ready, 0 if it isn't, -ENODEV if
3524 * link doesn't seem to be occupied, other errno for other error
3525 * conditions.
3526 *
3527 * Transient -ENODEV conditions are allowed for
3528 * ATA_TMOUT_FF_WAIT.
3529 *
3530 * LOCKING:
3531 * EH context.
3532 *
3533 * RETURNS:
3534 * 0 if @linke is ready before @deadline; otherwise, -errno.
3535 */
3536int ata_wait_ready(struct ata_link *link, unsigned long deadline,
3537 int (*check_ready)(struct ata_link *link))
3538{
3539 unsigned long start = jiffies;
Tejun Heob48d58f2010-04-09 19:46:38 +09003540 unsigned long nodev_deadline;
Tejun Heoaa2731a2008-04-07 22:47:19 +09003541 int warned = 0;
3542
Tejun Heob48d58f2010-04-09 19:46:38 +09003543 /* choose which 0xff timeout to use, read comment in libata.h */
3544 if (link->ap->host->flags & ATA_HOST_PARALLEL_SCAN)
3545 nodev_deadline = ata_deadline(start, ATA_TMOUT_FF_WAIT_LONG);
3546 else
3547 nodev_deadline = ata_deadline(start, ATA_TMOUT_FF_WAIT);
3548
Tejun Heob1c72912008-07-31 17:02:43 +09003549 /* Slave readiness can't be tested separately from master. On
3550 * M/S emulation configuration, this function should be called
3551 * only on the master and it will handle both master and slave.
3552 */
3553 WARN_ON(link == link->ap->slave_link);
3554
Tejun Heoaa2731a2008-04-07 22:47:19 +09003555 if (time_after(nodev_deadline, deadline))
3556 nodev_deadline = deadline;
3557
3558 while (1) {
3559 unsigned long now = jiffies;
3560 int ready, tmp;
3561
3562 ready = tmp = check_ready(link);
3563 if (ready > 0)
3564 return 0;
3565
Tejun Heob48d58f2010-04-09 19:46:38 +09003566 /*
3567 * -ENODEV could be transient. Ignore -ENODEV if link
Tejun Heoaa2731a2008-04-07 22:47:19 +09003568 * is online. Also, some SATA devices take a long
Tejun Heob48d58f2010-04-09 19:46:38 +09003569 * time to clear 0xff after reset. Wait for
3570 * ATA_TMOUT_FF_WAIT[_LONG] on -ENODEV if link isn't
3571 * offline.
Tejun Heoaa2731a2008-04-07 22:47:19 +09003572 *
3573 * Note that some PATA controllers (pata_ali) explode
3574 * if status register is read more than once when
3575 * there's no device attached.
3576 */
3577 if (ready == -ENODEV) {
3578 if (ata_link_online(link))
3579 ready = 0;
3580 else if ((link->ap->flags & ATA_FLAG_SATA) &&
3581 !ata_link_offline(link) &&
3582 time_before(now, nodev_deadline))
3583 ready = 0;
3584 }
3585
3586 if (ready)
3587 return ready;
3588 if (time_after(now, deadline))
3589 return -EBUSY;
3590
3591 if (!warned && time_after(now, start + 5 * HZ) &&
3592 (deadline - now > 3 * HZ)) {
3593 ata_link_printk(link, KERN_WARNING,
3594 "link is slow to respond, please be patient "
3595 "(ready=%d)\n", tmp);
3596 warned = 1;
3597 }
3598
3599 msleep(50);
3600 }
3601}
3602
3603/**
3604 * ata_wait_after_reset - wait for link to become ready after reset
3605 * @link: link to be waited on
3606 * @deadline: deadline jiffies for the operation
3607 * @check_ready: callback to check link readiness
3608 *
3609 * Wait for @link to become ready after reset.
3610 *
3611 * LOCKING:
3612 * EH context.
3613 *
3614 * RETURNS:
3615 * 0 if @linke is ready before @deadline; otherwise, -errno.
3616 */
Harvey Harrison2b4221b2008-04-24 18:37:34 -07003617int ata_wait_after_reset(struct ata_link *link, unsigned long deadline,
Tejun Heoaa2731a2008-04-07 22:47:19 +09003618 int (*check_ready)(struct ata_link *link))
3619{
Tejun Heo341c2c92008-05-20 02:17:51 +09003620 msleep(ATA_WAIT_AFTER_RESET);
Tejun Heoaa2731a2008-04-07 22:47:19 +09003621
3622 return ata_wait_ready(link, deadline, check_ready);
3623}
3624
3625/**
Tejun Heo936fd732007-08-06 18:36:23 +09003626 * sata_link_debounce - debounce SATA phy status
3627 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003628 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003629 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003630 *
Tejun Heo936fd732007-08-06 18:36:23 +09003631* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003632 * holding the same value where DET is not 1 for @duration polled
3633 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003634 * beginning of the stable state. Because DET gets stuck at 1 on
3635 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003636 * until timeout then returns 0 if DET is stable at 1.
3637 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003638 * @timeout is further limited by @deadline. The sooner of the
3639 * two is used.
3640 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003641 * LOCKING:
3642 * Kernel thread context (may sleep)
3643 *
3644 * RETURNS:
3645 * 0 on success, -errno on failure.
3646 */
Tejun Heo936fd732007-08-06 18:36:23 +09003647int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3648 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003649{
Tejun Heo341c2c92008-05-20 02:17:51 +09003650 unsigned long interval = params[0];
3651 unsigned long duration = params[1];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003652 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003653 u32 last, cur;
3654 int rc;
3655
Tejun Heo341c2c92008-05-20 02:17:51 +09003656 t = ata_deadline(jiffies, params[2]);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003657 if (time_before(t, deadline))
3658 deadline = t;
3659
Tejun Heo936fd732007-08-06 18:36:23 +09003660 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003661 return rc;
3662 cur &= 0xf;
3663
3664 last = cur;
3665 last_jiffies = jiffies;
3666
3667 while (1) {
Tejun Heo341c2c92008-05-20 02:17:51 +09003668 msleep(interval);
Tejun Heo936fd732007-08-06 18:36:23 +09003669 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003670 return rc;
3671 cur &= 0xf;
3672
3673 /* DET stable? */
3674 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003675 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003676 continue;
Tejun Heo341c2c92008-05-20 02:17:51 +09003677 if (time_after(jiffies,
3678 ata_deadline(last_jiffies, duration)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003679 return 0;
3680 continue;
3681 }
3682
3683 /* unstable, start over */
3684 last = cur;
3685 last_jiffies = jiffies;
3686
Tejun Heof1545152007-07-16 14:29:40 +09003687 /* Check deadline. If debouncing failed, return
3688 * -EPIPE to tell upper layer to lower link speed.
3689 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003690 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003691 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003692 }
3693}
3694
3695/**
Tejun Heo936fd732007-08-06 18:36:23 +09003696 * sata_link_resume - resume SATA link
3697 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003698 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003699 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003700 *
Tejun Heo936fd732007-08-06 18:36:23 +09003701 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003702 *
3703 * LOCKING:
3704 * Kernel thread context (may sleep)
3705 *
3706 * RETURNS:
3707 * 0 on success, -errno on failure.
3708 */
Tejun Heo936fd732007-08-06 18:36:23 +09003709int sata_link_resume(struct ata_link *link, const unsigned long *params,
3710 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003711{
Tejun Heo5040ab62010-01-11 11:14:44 +09003712 int tries = ATA_LINK_RESUME_TRIES;
Tejun Heoac371982008-04-07 22:47:19 +09003713 u32 scontrol, serror;
Tejun Heo81952c52006-05-15 20:57:47 +09003714 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003715
Tejun Heo936fd732007-08-06 18:36:23 +09003716 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003717 return rc;
3718
Tejun Heo5040ab62010-01-11 11:14:44 +09003719 /*
3720 * Writes to SControl sometimes get ignored under certain
3721 * controllers (ata_piix SIDPR). Make sure DET actually is
3722 * cleared.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003723 */
Tejun Heo5040ab62010-01-11 11:14:44 +09003724 do {
3725 scontrol = (scontrol & 0x0f0) | 0x300;
3726 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
3727 return rc;
3728 /*
3729 * Some PHYs react badly if SStatus is pounded
3730 * immediately after resuming. Delay 200ms before
3731 * debouncing.
3732 */
3733 msleep(200);
3734
3735 /* is SControl restored correctly? */
3736 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
3737 return rc;
3738 } while ((scontrol & 0xf0f) != 0x300 && --tries);
3739
3740 if ((scontrol & 0xf0f) != 0x300) {
3741 ata_link_printk(link, KERN_ERR,
3742 "failed to resume link (SControl %X)\n",
3743 scontrol);
3744 return 0;
3745 }
3746
3747 if (tries < ATA_LINK_RESUME_TRIES)
3748 ata_link_printk(link, KERN_WARNING,
3749 "link resume succeeded after %d retries\n",
3750 ATA_LINK_RESUME_TRIES - tries);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003751
Tejun Heoac371982008-04-07 22:47:19 +09003752 if ((rc = sata_link_debounce(link, params, deadline)))
3753 return rc;
3754
Tejun Heof0465192008-05-19 01:15:08 +09003755 /* clear SError, some PHYs require this even for SRST to work */
Tejun Heoac371982008-04-07 22:47:19 +09003756 if (!(rc = sata_scr_read(link, SCR_ERROR, &serror)))
3757 rc = sata_scr_write(link, SCR_ERROR, serror);
Tejun Heoac371982008-04-07 22:47:19 +09003758
Tejun Heof0465192008-05-19 01:15:08 +09003759 return rc != -EINVAL ? rc : 0;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003760}
3761
Tejun Heof5914a42006-05-31 18:27:48 +09003762/**
Tejun Heo0aa11132008-04-07 22:47:18 +09003763 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003764 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003765 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003766 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003767 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003768 * prereset makes libata abort whole reset sequence and give up
3769 * that port, so prereset should be best-effort. It does its
3770 * best to prepare for reset sequence but if things go wrong, it
3771 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003772 *
3773 * LOCKING:
3774 * Kernel thread context (may sleep)
3775 *
3776 * RETURNS:
3777 * 0 on success, -errno otherwise.
3778 */
Tejun Heo0aa11132008-04-07 22:47:18 +09003779int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003780{
Tejun Heocc0680a2007-08-06 18:36:23 +09003781 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003782 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003783 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003784 int rc;
3785
Tejun Heof5914a42006-05-31 18:27:48 +09003786 /* if we're about to do hardreset, nothing more to do */
3787 if (ehc->i.action & ATA_EH_HARDRESET)
3788 return 0;
3789
Tejun Heo936fd732007-08-06 18:36:23 +09003790 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003791 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003792 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003793 /* whine about phy resume failure but proceed */
3794 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003795 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003796 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003797 }
3798
Tejun Heo45db2f62008-04-08 01:46:56 +09003799 /* no point in trying softreset on offline link */
Tejun Heob1c72912008-07-31 17:02:43 +09003800 if (ata_phys_link_offline(link))
Tejun Heo45db2f62008-04-08 01:46:56 +09003801 ehc->i.action &= ~ATA_EH_SOFTRESET;
3802
Tejun Heof5914a42006-05-31 18:27:48 +09003803 return 0;
3804}
3805
Tejun Heoc2bd5802006-01-24 17:05:22 +09003806/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003807 * sata_link_hardreset - reset link via SATA phy reset
3808 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003809 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003810 * @deadline: deadline jiffies for the operation
Tejun Heo9dadd452008-04-07 22:47:19 +09003811 * @online: optional out parameter indicating link onlineness
3812 * @check_ready: optional callback to check link readiness
Tejun Heoc2bd5802006-01-24 17:05:22 +09003813 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003814 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heo9dadd452008-04-07 22:47:19 +09003815 * After hardreset, link readiness is waited upon using
3816 * ata_wait_ready() if @check_ready is specified. LLDs are
3817 * allowed to not specify @check_ready and wait itself after this
3818 * function returns. Device classification is LLD's
3819 * responsibility.
3820 *
3821 * *@online is set to one iff reset succeeded and @link is online
3822 * after reset.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003823 *
3824 * LOCKING:
3825 * Kernel thread context (may sleep)
3826 *
3827 * RETURNS:
3828 * 0 on success, -errno otherwise.
3829 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003830int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heo9dadd452008-04-07 22:47:19 +09003831 unsigned long deadline,
3832 bool *online, int (*check_ready)(struct ata_link *))
Tejun Heoc2bd5802006-01-24 17:05:22 +09003833{
Tejun Heo852ee162006-04-01 01:38:18 +09003834 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003835 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003836
Tejun Heoc2bd5802006-01-24 17:05:22 +09003837 DPRINTK("ENTER\n");
3838
Tejun Heo9dadd452008-04-07 22:47:19 +09003839 if (online)
3840 *online = false;
3841
Tejun Heo936fd732007-08-06 18:36:23 +09003842 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003843 /* SATA spec says nothing about how to reconfigure
3844 * spd. To be on the safe side, turn off phy during
3845 * reconfiguration. This works for at least ICH7 AHCI
3846 * and Sil3124.
3847 */
Tejun Heo936fd732007-08-06 18:36:23 +09003848 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003849 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003850
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003851 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003852
Tejun Heo936fd732007-08-06 18:36:23 +09003853 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003854 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003855
Tejun Heo936fd732007-08-06 18:36:23 +09003856 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003857 }
3858
3859 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003860 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003861 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003862
Tejun Heo852ee162006-04-01 01:38:18 +09003863 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003864
Tejun Heo936fd732007-08-06 18:36:23 +09003865 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003866 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003867
Tejun Heo1c3fae42006-04-02 20:53:28 +09003868 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003869 * 10.4.2 says at least 1 ms.
3870 */
3871 msleep(1);
3872
Tejun Heo936fd732007-08-06 18:36:23 +09003873 /* bring link back */
3874 rc = sata_link_resume(link, timing, deadline);
Tejun Heo9dadd452008-04-07 22:47:19 +09003875 if (rc)
3876 goto out;
3877 /* if link is offline nothing more to do */
Tejun Heob1c72912008-07-31 17:02:43 +09003878 if (ata_phys_link_offline(link))
Tejun Heo9dadd452008-04-07 22:47:19 +09003879 goto out;
3880
3881 /* Link is online. From this point, -ENODEV too is an error. */
3882 if (online)
3883 *online = true;
3884
Tejun Heo071f44b2008-04-07 22:47:22 +09003885 if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) {
Tejun Heo9dadd452008-04-07 22:47:19 +09003886 /* If PMP is supported, we have to do follow-up SRST.
3887 * Some PMPs don't send D2H Reg FIS after hardreset if
3888 * the first port is empty. Wait only for
3889 * ATA_TMOUT_PMP_SRST_WAIT.
3890 */
3891 if (check_ready) {
3892 unsigned long pmp_deadline;
3893
Tejun Heo341c2c92008-05-20 02:17:51 +09003894 pmp_deadline = ata_deadline(jiffies,
3895 ATA_TMOUT_PMP_SRST_WAIT);
Tejun Heo9dadd452008-04-07 22:47:19 +09003896 if (time_after(pmp_deadline, deadline))
3897 pmp_deadline = deadline;
3898 ata_wait_ready(link, pmp_deadline, check_ready);
3899 }
3900 rc = -EAGAIN;
3901 goto out;
3902 }
3903
3904 rc = 0;
3905 if (check_ready)
3906 rc = ata_wait_ready(link, deadline, check_ready);
Tejun Heob6103f62006-11-01 17:59:53 +09003907 out:
Tejun Heo0cbf0712008-05-19 01:15:05 +09003908 if (rc && rc != -EAGAIN) {
3909 /* online is set iff link is online && reset succeeded */
3910 if (online)
3911 *online = false;
Tejun Heo9dadd452008-04-07 22:47:19 +09003912 ata_link_printk(link, KERN_ERR,
3913 "COMRESET failed (errno=%d)\n", rc);
Tejun Heo0cbf0712008-05-19 01:15:05 +09003914 }
Tejun Heob6103f62006-11-01 17:59:53 +09003915 DPRINTK("EXIT, rc=%d\n", rc);
3916 return rc;
3917}
3918
3919/**
Tejun Heo57c9efd2008-04-07 22:47:19 +09003920 * sata_std_hardreset - COMRESET w/o waiting or classification
3921 * @link: link to reset
3922 * @class: resulting class of attached device
3923 * @deadline: deadline jiffies for the operation
3924 *
3925 * Standard SATA COMRESET w/o waiting or classification.
3926 *
3927 * LOCKING:
3928 * Kernel thread context (may sleep)
3929 *
3930 * RETURNS:
3931 * 0 if link offline, -EAGAIN if link online, -errno on errors.
3932 */
3933int sata_std_hardreset(struct ata_link *link, unsigned int *class,
3934 unsigned long deadline)
3935{
3936 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
3937 bool online;
3938 int rc;
3939
3940 /* do hardreset */
3941 rc = sata_link_hardreset(link, timing, deadline, &online, NULL);
Tejun Heo57c9efd2008-04-07 22:47:19 +09003942 return online ? -EAGAIN : rc;
3943}
3944
3945/**
Tejun Heo203c75b2008-04-07 22:47:18 +09003946 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003947 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003948 * @classes: classes of attached devices
3949 *
3950 * This function is invoked after a successful reset. Note that
3951 * the device might have been reset more than once using
3952 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003953 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003954 * LOCKING:
3955 * Kernel thread context (may sleep)
3956 */
Tejun Heo203c75b2008-04-07 22:47:18 +09003957void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003958{
Tejun Heof0465192008-05-19 01:15:08 +09003959 u32 serror;
3960
Tejun Heoc2bd5802006-01-24 17:05:22 +09003961 DPRINTK("ENTER\n");
3962
Tejun Heof0465192008-05-19 01:15:08 +09003963 /* reset complete, clear SError */
3964 if (!sata_scr_read(link, SCR_ERROR, &serror))
3965 sata_scr_write(link, SCR_ERROR, serror);
3966
Tejun Heoc2bd5802006-01-24 17:05:22 +09003967 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003968 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003969
Tejun Heoc2bd5802006-01-24 17:05:22 +09003970 DPRINTK("EXIT\n");
3971}
3972
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003973/**
Tejun Heo623a3122006-03-05 17:55:58 +09003974 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003975 * @dev: device to compare against
3976 * @new_class: class of the new device
3977 * @new_id: IDENTIFY page of the new device
3978 *
3979 * Compare @new_class and @new_id against @dev and determine
3980 * whether @dev is the device indicated by @new_class and
3981 * @new_id.
3982 *
3983 * LOCKING:
3984 * None.
3985 *
3986 * RETURNS:
3987 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3988 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003989static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3990 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003991{
3992 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003993 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3994 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003995
3996 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003997 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3998 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003999 return 0;
4000 }
4001
Tejun Heoa0cf7332007-01-02 20:18:49 +09004002 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
4003 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
4004 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
4005 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09004006
4007 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09004008 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
4009 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09004010 return 0;
4011 }
4012
4013 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09004014 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
4015 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09004016 return 0;
4017 }
4018
Tejun Heo623a3122006-03-05 17:55:58 +09004019 return 1;
4020}
4021
4022/**
Tejun Heofe309112007-05-15 03:28:15 +09004023 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02004024 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09004025 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09004026 *
4027 * Re-read IDENTIFY page and make sure @dev is still attached to
4028 * the port.
4029 *
4030 * LOCKING:
4031 * Kernel thread context (may sleep)
4032 *
4033 * RETURNS:
4034 * 0 on success, negative errno otherwise
4035 */
Tejun Heofe309112007-05-15 03:28:15 +09004036int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09004037{
Tejun Heo5eb45c02006-04-02 18:51:52 +09004038 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004039 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09004040 int rc;
4041
Tejun Heofe635c72006-05-15 20:57:35 +09004042 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09004043 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09004044 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09004045 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09004046
4047 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09004048 if (!ata_dev_same_device(dev, class, id))
4049 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09004050
Tejun Heofe635c72006-05-15 20:57:35 +09004051 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09004052 return 0;
4053}
4054
4055/**
4056 * ata_dev_revalidate - Revalidate ATA device
4057 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09004058 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09004059 * @readid_flags: read ID flags
4060 *
4061 * Re-read IDENTIFY page, make sure @dev is still attached to the
4062 * port and reconfigure it according to the new IDENTIFY page.
4063 *
4064 * LOCKING:
4065 * Kernel thread context (may sleep)
4066 *
4067 * RETURNS:
4068 * 0 on success, negative errno otherwise
4069 */
Tejun Heo422c9da2007-09-23 13:14:12 +09004070int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
4071 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09004072{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004073 u64 n_sectors = dev->n_sectors;
Tejun Heo5920dad2009-07-15 17:11:41 +09004074 u64 n_native_sectors = dev->n_native_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09004075 int rc;
4076
4077 if (!ata_dev_enabled(dev))
4078 return -ENODEV;
4079
Tejun Heo422c9da2007-09-23 13:14:12 +09004080 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
4081 if (ata_class_enabled(new_class) &&
Borislav Petkovf0d06132009-04-26 16:33:34 +02004082 new_class != ATA_DEV_ATA &&
4083 new_class != ATA_DEV_ATAPI &&
4084 new_class != ATA_DEV_SEMB) {
Tejun Heo422c9da2007-09-23 13:14:12 +09004085 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
4086 dev->class, new_class);
4087 rc = -ENODEV;
4088 goto fail;
4089 }
4090
Tejun Heofe309112007-05-15 03:28:15 +09004091 /* re-read ID */
4092 rc = ata_dev_reread_id(dev, readid_flags);
4093 if (rc)
4094 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09004095
4096 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09004097 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004098 if (rc)
4099 goto fail;
4100
4101 /* verify n_sectors hasn't changed */
Tejun Heo445d2112010-04-05 10:33:13 +09004102 if (dev->class != ATA_DEV_ATA || !n_sectors ||
4103 dev->n_sectors == n_sectors)
4104 return 0;
4105
4106 /* n_sectors has changed */
4107 ata_dev_printk(dev, KERN_WARNING, "n_sectors mismatch %llu != %llu\n",
4108 (unsigned long long)n_sectors,
4109 (unsigned long long)dev->n_sectors);
4110
4111 /*
4112 * Something could have caused HPA to be unlocked
4113 * involuntarily. If n_native_sectors hasn't changed and the
4114 * new size matches it, keep the device.
4115 */
4116 if (dev->n_native_sectors == n_native_sectors &&
4117 dev->n_sectors > n_sectors && dev->n_sectors == n_native_sectors) {
4118 ata_dev_printk(dev, KERN_WARNING,
4119 "new n_sectors matches native, probably "
Tejun Heo68939ce2010-05-15 20:09:33 +02004120 "late HPA unlock, n_sectors updated\n");
4121 /* use the larger n_sectors */
Tejun Heo445d2112010-04-05 10:33:13 +09004122 return 0;
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004123 }
4124
Tejun Heo445d2112010-04-05 10:33:13 +09004125 /*
4126 * Some BIOSes boot w/o HPA but resume w/ HPA locked. Try
4127 * unlocking HPA in those cases.
4128 *
4129 * https://bugzilla.kernel.org/show_bug.cgi?id=15396
4130 */
4131 if (dev->n_native_sectors == n_native_sectors &&
4132 dev->n_sectors < n_sectors && n_sectors == n_native_sectors &&
4133 !(dev->horkage & ATA_HORKAGE_BROKEN_HPA)) {
4134 ata_dev_printk(dev, KERN_WARNING,
4135 "old n_sectors matches native, probably "
4136 "late HPA lock, will try to unlock HPA\n");
4137 /* try unlocking HPA */
4138 dev->flags |= ATA_DFLAG_UNLOCK_HPA;
4139 rc = -EIO;
4140 } else
4141 rc = -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09004142
Tejun Heo445d2112010-04-05 10:33:13 +09004143 /* restore original n_[native_]sectors and fail */
4144 dev->n_native_sectors = n_native_sectors;
4145 dev->n_sectors = n_sectors;
Tejun Heo623a3122006-03-05 17:55:58 +09004146 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09004147 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09004148 return rc;
4149}
4150
Alan Cox6919a0a2006-10-27 19:08:46 -07004151struct ata_blacklist_entry {
4152 const char *model_num;
4153 const char *model_rev;
4154 unsigned long horkage;
4155};
4156
4157static const struct ata_blacklist_entry ata_device_blacklist [] = {
4158 /* Devices with DMA related problems under Linux */
4159 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
4160 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
4161 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
4162 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
4163 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
4164 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
4165 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
4166 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
4167 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
4168 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
4169 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
4170 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
4171 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
4172 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
4173 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
4174 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
4175 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
4176 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
4177 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
4178 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
4179 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
4180 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
4181 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
4182 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
4183 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
4184 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004185 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
4186 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004187 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04004188 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09004189 /* Odd clown on sil3726/4726 PMPs */
Tejun Heo50af2fa2008-05-19 01:15:14 +09004190 { "Config Disk", NULL, ATA_HORKAGE_DISABLE },
Alan Cox6919a0a2006-10-27 19:08:46 -07004191
Albert Lee18d6e9d2007-04-02 11:34:15 +08004192 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09004193 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Tejun Heo6a87e422008-11-03 19:01:09 +09004194 { "QUANTUM DAT DAT72-000", NULL, ATA_HORKAGE_ATAPI_MOD16_DMA },
Albert Lee18d6e9d2007-04-02 11:34:15 +08004195
Alan Cox6919a0a2006-10-27 19:08:46 -07004196 /* Devices we expect to fail diagnostics */
4197
4198 /* Devices where NCQ should be avoided */
4199 /* NCQ is slow */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004200 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo459ad682007-12-07 12:46:23 +09004201 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo09125ea2007-02-28 15:21:23 +09004202 /* http://thread.gmane.org/gmane.linux.ide/14907 */
4203 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08004204 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004205 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01004206 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Paolo Ornatida6f0ec2007-10-04 11:06:56 +09004207 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
Tejun Heoe41bd3e2007-12-09 19:45:39 +09004208 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
Lubomir Bulej5ccfca92008-12-22 11:35:22 +01004209 { "OCZ CORE_SSD", "02.10104", ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004210
Tejun Heoac70a962008-11-27 13:36:48 +09004211 /* Seagate NCQ + FLUSH CACHE firmware bug */
Tejun Heod10d4912008-12-11 13:42:42 +09004212 { "ST31500341AS", "SD15", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004213 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004214 { "ST31500341AS", "SD16", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004215 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004216 { "ST31500341AS", "SD17", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004217 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004218 { "ST31500341AS", "SD18", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004219 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004220 { "ST31500341AS", "SD19", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004221 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004222
4223 { "ST31000333AS", "SD15", ATA_HORKAGE_NONCQ |
4224 ATA_HORKAGE_FIRMWARE_WARN },
4225 { "ST31000333AS", "SD16", ATA_HORKAGE_NONCQ |
4226 ATA_HORKAGE_FIRMWARE_WARN },
4227 { "ST31000333AS", "SD17", ATA_HORKAGE_NONCQ |
4228 ATA_HORKAGE_FIRMWARE_WARN },
4229 { "ST31000333AS", "SD18", ATA_HORKAGE_NONCQ |
4230 ATA_HORKAGE_FIRMWARE_WARN },
4231 { "ST31000333AS", "SD19", ATA_HORKAGE_NONCQ |
4232 ATA_HORKAGE_FIRMWARE_WARN },
4233
4234 { "ST3640623AS", "SD15", ATA_HORKAGE_NONCQ |
4235 ATA_HORKAGE_FIRMWARE_WARN },
4236 { "ST3640623AS", "SD16", ATA_HORKAGE_NONCQ |
4237 ATA_HORKAGE_FIRMWARE_WARN },
4238 { "ST3640623AS", "SD17", ATA_HORKAGE_NONCQ |
4239 ATA_HORKAGE_FIRMWARE_WARN },
4240 { "ST3640623AS", "SD18", ATA_HORKAGE_NONCQ |
4241 ATA_HORKAGE_FIRMWARE_WARN },
4242 { "ST3640623AS", "SD19", ATA_HORKAGE_NONCQ |
4243 ATA_HORKAGE_FIRMWARE_WARN },
4244
4245 { "ST3640323AS", "SD15", ATA_HORKAGE_NONCQ |
4246 ATA_HORKAGE_FIRMWARE_WARN },
4247 { "ST3640323AS", "SD16", ATA_HORKAGE_NONCQ |
4248 ATA_HORKAGE_FIRMWARE_WARN },
4249 { "ST3640323AS", "SD17", ATA_HORKAGE_NONCQ |
4250 ATA_HORKAGE_FIRMWARE_WARN },
4251 { "ST3640323AS", "SD18", ATA_HORKAGE_NONCQ |
4252 ATA_HORKAGE_FIRMWARE_WARN },
4253 { "ST3640323AS", "SD19", ATA_HORKAGE_NONCQ |
4254 ATA_HORKAGE_FIRMWARE_WARN },
4255
4256 { "ST3320813AS", "SD15", ATA_HORKAGE_NONCQ |
4257 ATA_HORKAGE_FIRMWARE_WARN },
4258 { "ST3320813AS", "SD16", ATA_HORKAGE_NONCQ |
4259 ATA_HORKAGE_FIRMWARE_WARN },
4260 { "ST3320813AS", "SD17", ATA_HORKAGE_NONCQ |
4261 ATA_HORKAGE_FIRMWARE_WARN },
4262 { "ST3320813AS", "SD18", ATA_HORKAGE_NONCQ |
4263 ATA_HORKAGE_FIRMWARE_WARN },
4264 { "ST3320813AS", "SD19", ATA_HORKAGE_NONCQ |
4265 ATA_HORKAGE_FIRMWARE_WARN },
4266
4267 { "ST3320613AS", "SD15", ATA_HORKAGE_NONCQ |
4268 ATA_HORKAGE_FIRMWARE_WARN },
4269 { "ST3320613AS", "SD16", ATA_HORKAGE_NONCQ |
4270 ATA_HORKAGE_FIRMWARE_WARN },
4271 { "ST3320613AS", "SD17", ATA_HORKAGE_NONCQ |
4272 ATA_HORKAGE_FIRMWARE_WARN },
4273 { "ST3320613AS", "SD18", ATA_HORKAGE_NONCQ |
4274 ATA_HORKAGE_FIRMWARE_WARN },
4275 { "ST3320613AS", "SD19", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004276 ATA_HORKAGE_FIRMWARE_WARN },
4277
Robert Hancock36e337d2007-04-02 22:05:29 -06004278 /* Blacklist entries taken from Silicon Image 3124/3132
4279 Windows driver .inf file - also several Linux problem reports */
4280 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
4281 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
4282 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07004283
Tejun Heo68b0ddb2010-04-05 10:51:26 +09004284 /* https://bugzilla.kernel.org/show_bug.cgi?id=15573 */
4285 { "C300-CTFDDAC128MAG", "0001", ATA_HORKAGE_NONCQ, },
4286
Tejun Heo16c55b02007-08-29 11:58:33 +09004287 /* devices which puke on READ_NATIVE_MAX */
4288 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
4289 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
4290 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
4291 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004292
Tejun Heo78313872009-08-07 01:59:15 +09004293 /* this one allows HPA unlocking but fails IOs on the area */
4294 { "OCZ-VERTEX", "1.30", ATA_HORKAGE_BROKEN_HPA },
4295
Alan Cox93328e12007-09-29 04:06:48 -04004296 /* Devices which report 1 sector over size HPA */
4297 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
4298 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
Mikko Rapelib152fcd2008-02-19 01:41:25 +01004299 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
Alan Cox93328e12007-09-29 04:06:48 -04004300
Alan Cox6bbfd532007-11-05 22:58:58 +00004301 /* Devices which get the IVB wrong */
4302 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
Alan Coxa79067e2008-04-29 14:08:36 +01004303 /* Maybe we should just blacklist TSSTcorp... */
4304 { "TSSTcorp CDDVDW SH-S202H", "SB00", ATA_HORKAGE_IVB, },
4305 { "TSSTcorp CDDVDW SH-S202H", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00004306 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
Peter Missele9f33402007-11-27 18:04:42 +01004307 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
4308 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
4309 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00004310
Jens Axboe9ce8e302008-08-27 15:23:18 +02004311 /* Devices that do not need bridging limits applied */
4312 { "MTRON MSP-SATA*", NULL, ATA_HORKAGE_BRIDGE_OK, },
4313
Tejun Heo90627122009-01-29 20:31:36 +09004314 /* Devices which aren't very happy with higher link speeds */
4315 { "WD My Book", NULL, ATA_HORKAGE_1_5_GBPS, },
4316
Tejun Heod0cb43b2009-07-09 09:27:50 +09004317 /*
4318 * Devices which choke on SETXFER. Applies only if both the
4319 * device and controller are SATA.
4320 */
4321 { "PIONEER DVD-RW DVRTD08", "1.00", ATA_HORKAGE_NOSETXFER },
4322
Alan Cox6919a0a2006-10-27 19:08:46 -07004323 /* End Marker */
4324 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004326
Adrian Bunk741b7762007-10-24 18:23:06 +02004327static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004328{
4329 const char *p;
4330 int len;
4331
4332 /*
4333 * check for trailing wildcard: *\0
4334 */
4335 p = strchr(patt, wildchar);
4336 if (p && ((*(p + 1)) == 0))
4337 len = p - patt;
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004338 else {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004339 len = strlen(name);
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004340 if (!len) {
4341 if (!*patt)
4342 return 0;
4343 return -1;
4344 }
4345 }
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004346
4347 return strncmp(patt, name, len);
4348}
4349
Tejun Heo75683fe2007-07-05 13:31:27 +09004350static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004352 unsigned char model_num[ATA_ID_PROD_LEN + 1];
4353 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07004354 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08004355
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004356 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
4357 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358
Alan Cox6919a0a2006-10-27 19:08:46 -07004359 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004360 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07004361 if (ad->model_rev == NULL)
4362 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004363 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07004364 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004365 }
Alan Cox6919a0a2006-10-27 19:08:46 -07004366 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 return 0;
4369}
4370
Alan Cox6919a0a2006-10-27 19:08:46 -07004371static int ata_dma_blacklisted(const struct ata_device *dev)
4372{
4373 /* We don't support polling DMA.
4374 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
4375 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
4376 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004377 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07004378 (dev->flags & ATA_DFLAG_CDB_INTR))
4379 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09004380 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07004381}
4382
Tejun Heoa6d5a512006-03-06 04:31:57 +09004383/**
Alan Cox6bbfd532007-11-05 22:58:58 +00004384 * ata_is_40wire - check drive side detection
4385 * @dev: device
4386 *
4387 * Perform drive side detection decoding, allowing for device vendors
4388 * who can't follow the documentation.
4389 */
4390
4391static int ata_is_40wire(struct ata_device *dev)
4392{
4393 if (dev->horkage & ATA_HORKAGE_IVB)
4394 return ata_drive_40wire_relaxed(dev->id);
4395 return ata_drive_40wire(dev->id);
4396}
4397
4398/**
Alan Cox15a55512008-03-28 14:33:46 -07004399 * cable_is_40wire - 40/80/SATA decider
4400 * @ap: port to consider
4401 *
4402 * This function encapsulates the policy for speed management
4403 * in one place. At the moment we don't cache the result but
4404 * there is a good case for setting ap->cbl to the result when
4405 * we are called with unknown cables (and figuring out if it
4406 * impacts hotplug at all).
4407 *
4408 * Return 1 if the cable appears to be 40 wire.
4409 */
4410
4411static int cable_is_40wire(struct ata_port *ap)
4412{
4413 struct ata_link *link;
4414 struct ata_device *dev;
4415
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004416 /* If the controller thinks we are 40 wire, we are. */
Alan Cox15a55512008-03-28 14:33:46 -07004417 if (ap->cbl == ATA_CBL_PATA40)
4418 return 1;
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004419
4420 /* If the controller thinks we are 80 wire, we are. */
Alan Cox15a55512008-03-28 14:33:46 -07004421 if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA)
4422 return 0;
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004423
4424 /* If the system is known to be 40 wire short cable (eg
4425 * laptop), then we allow 80 wire modes even if the drive
4426 * isn't sure.
4427 */
Alan Coxf7920682008-04-08 16:37:50 +01004428 if (ap->cbl == ATA_CBL_PATA40_SHORT)
4429 return 0;
Alan Cox15a55512008-03-28 14:33:46 -07004430
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004431 /* If the controller doesn't know, we scan.
4432 *
4433 * Note: We look for all 40 wire detects at this point. Any
4434 * 80 wire detect is taken to be 80 wire cable because
4435 * - in many setups only the one drive (slave if present) will
4436 * give a valid detect
4437 * - if you have a non detect capable drive you don't want it
4438 * to colour the choice
4439 */
Tejun Heo1eca4362008-11-03 20:03:17 +09004440 ata_for_each_link(link, ap, EDGE) {
4441 ata_for_each_dev(dev, link, ENABLED) {
4442 if (!ata_is_40wire(dev))
Alan Cox15a55512008-03-28 14:33:46 -07004443 return 0;
4444 }
4445 }
4446 return 1;
4447}
4448
4449/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09004450 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09004451 * @dev: Device to compute xfermask for
4452 *
Tejun Heoacf356b2006-03-24 14:07:50 +09004453 * Compute supported xfermask of @dev and store it in
4454 * dev->*_mask. This function is responsible for applying all
4455 * known limits including host controller limits, device
4456 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09004457 *
4458 * LOCKING:
4459 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09004460 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004461static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004463 struct ata_link *link = dev->link;
4464 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04004465 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09004466 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Tejun Heo37deecb2006-08-10 16:59:07 +09004468 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09004469 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4470 ap->mwdma_mask, ap->udma_mask);
4471
Robert Hancock8343f882007-03-06 02:37:51 -08004472 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09004473 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4474 dev->mwdma_mask, dev->udma_mask);
4475 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09004476
Alan Coxb352e572006-08-10 18:52:12 +01004477 /*
4478 * CFA Advanced TrueIDE timings are not allowed on a shared
4479 * cable
4480 */
4481 if (ata_dev_pair(dev)) {
4482 /* No PIO5 or PIO6 */
4483 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4484 /* No MWDMA3 or MWDMA 4 */
4485 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4486 }
4487
Tejun Heo37deecb2006-08-10 16:59:07 +09004488 if (ata_dma_blacklisted(dev)) {
4489 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09004490 ata_dev_printk(dev, KERN_WARNING,
4491 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09004492 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09004493
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01004494 if ((host->flags & ATA_HOST_SIMPLEX) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004495 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09004496 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4497 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4498 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01004499 }
Tejun Heo565083e2006-04-02 17:54:47 +09004500
Jeff Garzike4246752007-03-09 09:56:46 -05004501 if (ap->flags & ATA_FLAG_NO_IORDY)
4502 xfer_mask &= ata_pio_mask_no_iordy(dev);
4503
Alan Cox5444a6f2006-03-27 18:58:20 +01004504 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05004505 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01004506
Robert Hancock8343f882007-03-06 02:37:51 -08004507 /* Apply cable rule here. Don't apply it early because when
4508 * we handle hot plug the cable type can itself change.
4509 * Check this last so that we know if the transfer rate was
4510 * solely limited by the cable.
4511 * Unknown or 80 wire cables reported host side are checked
4512 * drive side as well. Cases where we know a 40wire cable
4513 * is used safely for 80 are not checked here.
4514 */
4515 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4516 /* UDMA/44 or higher would be available */
Alan Cox15a55512008-03-28 14:33:46 -07004517 if (cable_is_40wire(ap)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004518 ata_dev_printk(dev, KERN_WARNING,
Robert Hancock8343f882007-03-06 02:37:51 -08004519 "limited to UDMA/33 due to 40-wire cable\n");
4520 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4521 }
4522
Tejun Heo565083e2006-04-02 17:54:47 +09004523 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4524 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525}
4526
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 * @dev: Device to which command will be sent
4530 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004531 * Issue SET FEATURES - XFER MODE command to device @dev
4532 * on port @ap.
4533 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004535 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004536 *
4537 * RETURNS:
4538 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 */
4540
Tejun Heo3373efd2006-05-15 20:57:53 +09004541static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542{
Tejun Heoa0123702005-12-13 14:49:31 +09004543 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004544 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545
4546 /* set up set-features taskfile */
4547 DPRINTK("set features - xfer mode\n");
4548
Tejun Heo464cf172007-05-27 15:10:40 +02004549 /* Some controllers and ATAPI devices show flaky interrupt
4550 * behavior after setting xfer mode. Use polling instead.
4551 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004552 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004553 tf.command = ATA_CMD_SET_FEATURES;
4554 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004555 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004556 tf.protocol = ATA_PROT_NODATA;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004557 /* If we are using IORDY we must send the mode setting command */
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004558 if (ata_pio_need_iordy(dev))
4559 tf.nsect = dev->xfer_mode;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004560 /* If the device has IORDY and the controller does not - turn it off */
4561 else if (ata_id_has_iordy(dev->id))
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004562 tf.nsect = 0x01;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004563 else /* In the ancient relic department - skip all of this */
4564 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565
Tejun Heo2b789102007-10-09 15:05:44 +09004566 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
Tejun Heo83206a22006-03-24 15:25:31 +09004568 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4569 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571/**
Jeff Garzik218f3d32007-10-25 00:33:27 -04004572 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004573 * @dev: Device to which command will be sent
4574 * @enable: Whether to enable or disable the feature
Jeff Garzik218f3d32007-10-25 00:33:27 -04004575 * @feature: The sector count represents the feature to set
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004576 *
4577 * Issue SET FEATURES - SATA FEATURES command to device @dev
Jeff Garzik218f3d32007-10-25 00:33:27 -04004578 * on port @ap with sector count
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004579 *
4580 * LOCKING:
4581 * PCI/etc. bus probe sem.
4582 *
4583 * RETURNS:
4584 * 0 on success, AC_ERR_* mask otherwise.
4585 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04004586static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4587 u8 feature)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004588{
4589 struct ata_taskfile tf;
4590 unsigned int err_mask;
4591
4592 /* set up set-features taskfile */
4593 DPRINTK("set features - SATA features\n");
4594
4595 ata_tf_init(dev, &tf);
4596 tf.command = ATA_CMD_SET_FEATURES;
4597 tf.feature = enable;
4598 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4599 tf.protocol = ATA_PROT_NODATA;
Jeff Garzik218f3d32007-10-25 00:33:27 -04004600 tf.nsect = feature;
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004601
Tejun Heo2b789102007-10-09 15:05:44 +09004602 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004603
4604 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4605 return err_mask;
4606}
4607
4608/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004609 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004610 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004611 * @heads: Number of heads (taskfile parameter)
4612 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004613 *
4614 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004615 * Kernel thread context (may sleep)
4616 *
4617 * RETURNS:
4618 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004619 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004620static unsigned int ata_dev_init_params(struct ata_device *dev,
4621 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004622{
Tejun Heoa0123702005-12-13 14:49:31 +09004623 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004624 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004625
4626 /* Number of sectors per track 1-255. Number of heads 1-16 */
4627 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004628 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004629
4630 /* set up init dev params taskfile */
4631 DPRINTK("init dev params \n");
4632
Tejun Heo3373efd2006-05-15 20:57:53 +09004633 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004634 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4635 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4636 tf.protocol = ATA_PROT_NODATA;
4637 tf.nsect = sectors;
4638 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004639
Tejun Heo2b789102007-10-09 15:05:44 +09004640 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004641 /* A clean abort indicates an original or just out of spec drive
4642 and we should continue as we issue the setup based on the
4643 drive reported working geometry */
4644 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4645 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004646
Tejun Heo6aff8f12006-02-15 18:24:09 +09004647 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4648 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004649}
4650
4651/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004652 * ata_sg_clean - Unmap DMA memory associated with command
4653 * @qc: Command containing DMA memory to be released
4654 *
4655 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 *
4657 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004658 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004660void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661{
4662 struct ata_port *ap = qc->ap;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004663 struct scatterlist *sg = qc->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 int dir = qc->dma_dir;
4665
Tejun Heoefcb3cf2009-01-09 19:19:14 +09004666 WARN_ON_ONCE(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
James Bottomleydde20202008-02-19 11:36:56 +01004668 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
James Bottomleydde20202008-02-19 11:36:56 +01004670 if (qc->n_elem)
FUJITA Tomonori58256272009-02-27 17:35:43 +09004671 dma_unmap_sg(ap->dev, sg, qc->orig_n_elem, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672
4673 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004674 qc->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675}
4676
4677/**
Tejun Heo5895ef92008-06-17 12:36:26 +09004678 * atapi_check_dma - Check whether ATAPI DMA can be supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 * @qc: Metadata associated with taskfile to check
4680 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004681 * Allow low-level driver to filter ATA PACKET commands, returning
4682 * a status indicating whether or not it is OK to use DMA for the
4683 * supplied PACKET command.
4684 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004686 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004687 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 * RETURNS: 0 when ATAPI DMA can be used
4689 * nonzero otherwise
4690 */
Tejun Heo5895ef92008-06-17 12:36:26 +09004691int atapi_check_dma(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692{
4693 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694
Tejun Heob9a41972007-06-27 02:48:43 +09004695 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4696 * few ATAPI devices choke on such DMA requests.
4697 */
Tejun Heo6a87e422008-11-03 19:01:09 +09004698 if (!(qc->dev->horkage & ATA_HORKAGE_ATAPI_MOD16_DMA) &&
4699 unlikely(qc->nbytes & 15))
Tejun Heob9a41972007-06-27 02:48:43 +09004700 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004701
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004703 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704
Tejun Heob9a41972007-06-27 02:48:43 +09004705 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706}
Tejun Heob9a41972007-06-27 02:48:43 +09004707
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004709 * ata_std_qc_defer - Check whether a qc needs to be deferred
4710 * @qc: ATA command in question
4711 *
4712 * Non-NCQ commands cannot run with any other command, NCQ or
4713 * not. As upper layer only knows the queue depth, we are
4714 * responsible for maintaining exclusion. This function checks
4715 * whether a new command @qc can be issued.
4716 *
4717 * LOCKING:
4718 * spin_lock_irqsave(host lock)
4719 *
4720 * RETURNS:
4721 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4722 */
4723int ata_std_qc_defer(struct ata_queued_cmd *qc)
4724{
4725 struct ata_link *link = qc->dev->link;
4726
4727 if (qc->tf.protocol == ATA_PROT_NCQ) {
4728 if (!ata_tag_valid(link->active_tag))
4729 return 0;
4730 } else {
4731 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4732 return 0;
4733 }
4734
4735 return ATA_DEFER_LINK;
4736}
4737
Brian Kinge46834c2006-03-17 17:04:03 -06004738void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4739
Jeff Garzik0cba6322005-05-30 19:49:12 -04004740/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004741 * ata_sg_init - Associate command with scatter-gather table.
4742 * @qc: Command to be associated
4743 * @sg: Scatter-gather table.
4744 * @n_elem: Number of elements in s/g table.
4745 *
4746 * Initialize the data-related elements of queued_cmd @qc
4747 * to point to a scatter-gather table @sg, containing @n_elem
4748 * elements.
4749 *
4750 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004751 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004752 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4754 unsigned int n_elem)
4755{
Tejun Heoff2aeb12007-12-05 16:43:11 +09004756 qc->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 qc->n_elem = n_elem;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004758 qc->cursg = qc->sg;
4759}
4760
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004762 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4763 * @qc: Command with scatter-gather table to be mapped.
4764 *
4765 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 *
4767 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004768 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 *
4770 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004771 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 *
4773 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774static int ata_sg_setup(struct ata_queued_cmd *qc)
4775{
4776 struct ata_port *ap = qc->ap;
James Bottomleydde20202008-02-19 11:36:56 +01004777 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
Tejun Heo44877b42007-02-21 01:06:51 +09004779 VPRINTK("ENTER, ata%u\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780
James Bottomleydde20202008-02-19 11:36:56 +01004781 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
4782 if (n_elem < 1)
4783 return -1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004784
James Bottomleydde20202008-02-19 11:36:56 +01004785 DPRINTK("%d sg elements mapped\n", n_elem);
FUJITA Tomonori58256272009-02-27 17:35:43 +09004786 qc->orig_n_elem = qc->n_elem;
James Bottomleydde20202008-02-19 11:36:56 +01004787 qc->n_elem = n_elem;
Tejun Heof92a2632007-12-05 16:43:10 +09004788 qc->flags |= ATA_QCFLAG_DMAMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789
4790 return 0;
4791}
4792
4793/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004794 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004795 * @buf: Buffer to swap
4796 * @buf_words: Number of 16-bit words in buffer.
4797 *
4798 * Swap halves of 16-bit words if needed to convert from
4799 * little-endian byte order to native cpu byte order, or
4800 * vice-versa.
4801 *
4802 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004803 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004804 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805void swap_buf_le16(u16 *buf, unsigned int buf_words)
4806{
4807#ifdef __BIG_ENDIAN
4808 unsigned int i;
4809
4810 for (i = 0; i < buf_words; i++)
4811 buf[i] = le16_to_cpu(buf[i]);
4812#endif /* __BIG_ENDIAN */
4813}
4814
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004815/**
Tejun Heo8a8bc222008-11-10 14:48:21 +09004816 * ata_qc_new - Request an available ATA command, for queueing
Randy Dunlap5eb66fe2009-01-20 16:28:59 -08004817 * @ap: target port
Tejun Heo8a8bc222008-11-10 14:48:21 +09004818 *
4819 * LOCKING:
4820 * None.
4821 */
4822
4823static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4824{
4825 struct ata_queued_cmd *qc = NULL;
4826 unsigned int i;
4827
4828 /* no command while frozen */
4829 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
4830 return NULL;
4831
4832 /* the last tag is reserved for internal command. */
4833 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
4834 if (!test_and_set_bit(i, &ap->qc_allocated)) {
4835 qc = __ata_qc_from_tag(ap, i);
4836 break;
4837 }
4838
4839 if (qc)
4840 qc->tag = i;
4841
4842 return qc;
4843}
4844
4845/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 * @dev: Device from whom we request an available command structure
4848 *
4849 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004850 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851 */
4852
Tejun Heo8a8bc222008-11-10 14:48:21 +09004853struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004855 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 struct ata_queued_cmd *qc;
4857
Tejun Heo8a8bc222008-11-10 14:48:21 +09004858 qc = ata_qc_new(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 qc->scsicmd = NULL;
4861 qc->ap = ap;
4862 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004864 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865 }
4866
4867 return qc;
4868}
4869
Tejun Heo8a8bc222008-11-10 14:48:21 +09004870/**
4871 * ata_qc_free - free unused ata_queued_cmd
4872 * @qc: Command to complete
4873 *
4874 * Designed to free unused ata_queued_cmd object
4875 * in case something prevents using it.
4876 *
4877 * LOCKING:
4878 * spin_lock_irqsave(host lock)
4879 */
4880void ata_qc_free(struct ata_queued_cmd *qc)
4881{
Julia Lawalla1104012009-10-17 08:41:47 +02004882 struct ata_port *ap;
Tejun Heo8a8bc222008-11-10 14:48:21 +09004883 unsigned int tag;
4884
Tejun Heoefcb3cf2009-01-09 19:19:14 +09004885 WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Julia Lawalla1104012009-10-17 08:41:47 +02004886 ap = qc->ap;
Tejun Heo8a8bc222008-11-10 14:48:21 +09004887
4888 qc->flags = 0;
4889 tag = qc->tag;
4890 if (likely(ata_tag_valid(tag))) {
4891 qc->tag = ATA_TAG_POISON;
4892 clear_bit(tag, &ap->qc_allocated);
4893 }
4894}
4895
Tejun Heo76014422006-02-11 15:13:49 +09004896void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897{
Julia Lawalla1104012009-10-17 08:41:47 +02004898 struct ata_port *ap;
4899 struct ata_link *link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004900
Tejun Heoefcb3cf2009-01-09 19:19:14 +09004901 WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4902 WARN_ON_ONCE(!(qc->flags & ATA_QCFLAG_ACTIVE));
Julia Lawalla1104012009-10-17 08:41:47 +02004903 ap = qc->ap;
4904 link = qc->dev->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905
4906 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4907 ata_sg_clean(qc);
4908
Tejun Heo7401abf2006-05-15 20:57:32 +09004909 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09004910 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004911 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09004912 if (!link->sactive)
4913 ap->nr_active_links--;
4914 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004915 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09004916 ap->nr_active_links--;
4917 }
4918
4919 /* clear exclusive status */
4920 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
4921 ap->excl_link == link))
4922 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09004923
Albert Lee3f3791d2005-08-16 14:25:38 +08004924 /* atapi: mark qc as inactive to prevent the interrupt handler
4925 * from completing the command twice later, before the error handler
4926 * is called. (when rc != 0 and atapi request sense is needed)
4927 */
4928 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004929 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004930
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004932 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933}
4934
Tejun Heo39599a52006-11-14 22:37:35 +09004935static void fill_result_tf(struct ata_queued_cmd *qc)
4936{
4937 struct ata_port *ap = qc->ap;
4938
Tejun Heo39599a52006-11-14 22:37:35 +09004939 qc->result_tf.flags = qc->tf.flags;
Tejun Heo22183bf2008-04-07 22:47:20 +09004940 ap->ops->qc_fill_rtf(qc);
Tejun Heo39599a52006-11-14 22:37:35 +09004941}
4942
Tejun Heo00115e02007-11-27 19:28:58 +09004943static void ata_verify_xfer(struct ata_queued_cmd *qc)
4944{
4945 struct ata_device *dev = qc->dev;
4946
4947 if (ata_tag_internal(qc->tag))
4948 return;
4949
4950 if (ata_is_nodata(qc->tf.protocol))
4951 return;
4952
4953 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
4954 return;
4955
4956 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
4957}
4958
Tejun Heof686bcb2006-05-15 20:58:05 +09004959/**
4960 * ata_qc_complete - Complete an active ATA command
4961 * @qc: Command to complete
Tejun Heof686bcb2006-05-15 20:58:05 +09004962 *
4963 * Indicate to the mid and upper layers that an ATA
4964 * command has completed, with either an ok or not-ok status.
4965 *
4966 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004967 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09004968 */
4969void ata_qc_complete(struct ata_queued_cmd *qc)
4970{
4971 struct ata_port *ap = qc->ap;
4972
4973 /* XXX: New EH and old EH use different mechanisms to
4974 * synchronize EH with regular execution path.
4975 *
4976 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4977 * Normal execution path is responsible for not accessing a
4978 * failed qc. libata core enforces the rule by returning NULL
4979 * from ata_qc_from_tag() for failed qcs.
4980 *
4981 * Old EH depends on ata_qc_complete() nullifying completion
4982 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4983 * not synchronize with interrupt handler. Only PIO task is
4984 * taken care of.
4985 */
4986 if (ap->ops->error_handler) {
Tejun Heo4dbfa392007-10-25 18:22:44 +09004987 struct ata_device *dev = qc->dev;
4988 struct ata_eh_info *ehi = &dev->link->eh_info;
4989
Tejun Heof686bcb2006-05-15 20:58:05 +09004990 if (unlikely(qc->err_mask))
4991 qc->flags |= ATA_QCFLAG_FAILED;
4992
4993 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
Tejun Heof4b31db92009-10-16 13:00:51 +09004994 /* always fill result TF for failed qc */
4995 fill_result_tf(qc);
4996
4997 if (!ata_tag_internal(qc->tag))
Tejun Heof686bcb2006-05-15 20:58:05 +09004998 ata_qc_schedule_eh(qc);
Tejun Heof4b31db92009-10-16 13:00:51 +09004999 else
5000 __ata_qc_complete(qc);
5001 return;
Tejun Heof686bcb2006-05-15 20:58:05 +09005002 }
5003
Tejun Heo4dc738e2009-09-17 18:45:27 +09005004 WARN_ON_ONCE(ap->pflags & ATA_PFLAG_FROZEN);
5005
Tejun Heof686bcb2006-05-15 20:58:05 +09005006 /* read result TF if requested */
5007 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005008 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005009
Tejun Heo4dbfa392007-10-25 18:22:44 +09005010 /* Some commands need post-processing after successful
5011 * completion.
5012 */
5013 switch (qc->tf.command) {
5014 case ATA_CMD_SET_FEATURES:
5015 if (qc->tf.feature != SETFEATURES_WC_ON &&
5016 qc->tf.feature != SETFEATURES_WC_OFF)
5017 break;
5018 /* fall through */
5019 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
5020 case ATA_CMD_SET_MULTI: /* multi_count changed */
5021 /* revalidate device */
5022 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
5023 ata_port_schedule_eh(ap);
5024 break;
Tejun Heo054a5fb2007-10-25 18:30:36 +09005025
5026 case ATA_CMD_SLEEP:
5027 dev->flags |= ATA_DFLAG_SLEEPING;
5028 break;
Tejun Heo4dbfa392007-10-25 18:22:44 +09005029 }
5030
Tejun Heo00115e02007-11-27 19:28:58 +09005031 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
5032 ata_verify_xfer(qc);
5033
Tejun Heof686bcb2006-05-15 20:58:05 +09005034 __ata_qc_complete(qc);
5035 } else {
5036 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
5037 return;
5038
5039 /* read result TF if failed or requested */
5040 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09005041 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09005042
5043 __ata_qc_complete(qc);
5044 }
5045}
5046
Tejun Heodedaf2b2006-05-15 21:03:43 +09005047/**
5048 * ata_qc_complete_multiple - Complete multiple qcs successfully
5049 * @ap: port in question
5050 * @qc_active: new qc_active mask
Tejun Heodedaf2b2006-05-15 21:03:43 +09005051 *
5052 * Complete in-flight commands. This functions is meant to be
5053 * called from low-level driver's interrupt routine to complete
5054 * requests normally. ap->qc_active and @qc_active is compared
5055 * and commands are completed accordingly.
5056 *
5057 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005058 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005059 *
5060 * RETURNS:
5061 * Number of completed commands on success, -errno otherwise.
5062 */
Tejun Heo79f97da2008-04-07 22:47:20 +09005063int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active)
Tejun Heodedaf2b2006-05-15 21:03:43 +09005064{
5065 int nr_done = 0;
5066 u32 done_mask;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005067
5068 done_mask = ap->qc_active ^ qc_active;
5069
5070 if (unlikely(done_mask & qc_active)) {
5071 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
5072 "(%08x->%08x)\n", ap->qc_active, qc_active);
5073 return -EINVAL;
5074 }
5075
Jens Axboe43768182009-05-20 09:44:39 +02005076 while (done_mask) {
Tejun Heodedaf2b2006-05-15 21:03:43 +09005077 struct ata_queued_cmd *qc;
Jens Axboe43768182009-05-20 09:44:39 +02005078 unsigned int tag = __ffs(done_mask);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005079
Jens Axboe43768182009-05-20 09:44:39 +02005080 qc = ata_qc_from_tag(ap, tag);
5081 if (qc) {
Tejun Heodedaf2b2006-05-15 21:03:43 +09005082 ata_qc_complete(qc);
5083 nr_done++;
5084 }
Jens Axboe43768182009-05-20 09:44:39 +02005085 done_mask &= ~(1 << tag);
Tejun Heodedaf2b2006-05-15 21:03:43 +09005086 }
5087
5088 return nr_done;
5089}
5090
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091/**
5092 * ata_qc_issue - issue taskfile to device
5093 * @qc: command to issue to device
5094 *
5095 * Prepare an ATA command to submission to device.
5096 * This includes mapping the data into a DMA-able
5097 * area, filling in the S/G table, and finally
5098 * writing the taskfile to hardware, starting the command.
5099 *
5100 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04005101 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09005103void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104{
5105 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005106 struct ata_link *link = qc->dev->link;
Tejun Heo405e66b2007-11-27 19:28:53 +09005107 u8 prot = qc->tf.protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
Tejun Heodedaf2b2006-05-15 21:03:43 +09005109 /* Make sure only one non-NCQ command is outstanding. The
5110 * check is skipped for old EH because it reuses active qc to
5111 * request ATAPI sense.
5112 */
Tejun Heoefcb3cf2009-01-09 19:19:14 +09005113 WARN_ON_ONCE(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09005114
Tejun Heo1973a022007-12-05 10:36:13 +09005115 if (ata_is_ncq(prot)) {
Tejun Heoefcb3cf2009-01-09 19:19:14 +09005116 WARN_ON_ONCE(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09005117
5118 if (!link->sactive)
5119 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005120 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005121 } else {
Tejun Heoefcb3cf2009-01-09 19:19:14 +09005122 WARN_ON_ONCE(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09005123
5124 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005125 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005126 }
5127
Tejun Heoe4a70e72006-03-31 20:36:47 +09005128 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005129 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005130
Tejun Heof92a2632007-12-05 16:43:10 +09005131 /* We guarantee to LLDs that they will have at least one
5132 * non-zero sg if the command is a data command.
5133 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09005134 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
Tejun Heof92a2632007-12-05 16:43:10 +09005135
Tejun Heo405e66b2007-11-27 19:28:53 +09005136 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
Tejun Heof92a2632007-12-05 16:43:10 +09005137 (ap->flags & ATA_FLAG_PIO_DMA)))
Tejun Heo001102d2007-12-05 16:43:09 +09005138 if (ata_sg_setup(qc))
5139 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
Tejun Heocf480622008-01-24 00:05:14 +09005141 /* if device is sleeping, schedule reset and abort the link */
Tejun Heo054a5fb2007-10-25 18:30:36 +09005142 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
Tejun Heocf480622008-01-24 00:05:14 +09005143 link->eh_info.action |= ATA_EH_RESET;
Tejun Heo054a5fb2007-10-25 18:30:36 +09005144 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
5145 ata_link_abort(link);
5146 return;
5147 }
5148
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 ap->ops->qc_prep(qc);
5150
Tejun Heo8e0e6942006-03-31 20:41:11 +09005151 qc->err_mask |= ap->ops->qc_issue(qc);
5152 if (unlikely(qc->err_mask))
5153 goto err;
5154 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
Tejun Heo8e436af2006-01-23 13:09:36 +09005156sg_err:
Tejun Heo8e0e6942006-03-31 20:41:11 +09005157 qc->err_mask |= AC_ERR_SYSTEM;
5158err:
5159 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160}
5161
5162/**
Tejun Heo34bf2172006-05-15 20:57:46 +09005163 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09005164 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09005165 *
Tejun Heo936fd732007-08-06 18:36:23 +09005166 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09005167 *
5168 * LOCKING:
5169 * None.
5170 *
5171 * RETURNS:
5172 * 1 if SCRs are accessible, 0 otherwise.
5173 */
Tejun Heo936fd732007-08-06 18:36:23 +09005174int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005175{
Tejun Heo936fd732007-08-06 18:36:23 +09005176 struct ata_port *ap = link->ap;
5177
Tejun Heoa16abc02007-05-21 18:33:47 +02005178 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09005179}
5180
5181/**
5182 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005183 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005184 * @reg: SCR to read
5185 * @val: Place to store read value
5186 *
Tejun Heo936fd732007-08-06 18:36:23 +09005187 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09005188 * guaranteed to succeed if @link is ap->link, the cable type of
5189 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09005190 *
5191 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09005192 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09005193 *
5194 * RETURNS:
5195 * 0 on success, negative errno on failure.
5196 */
Tejun Heo936fd732007-08-06 18:36:23 +09005197int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005198{
Tejun Heo633273a32007-09-23 13:19:54 +09005199 if (ata_is_host_link(link)) {
Tejun Heo633273a32007-09-23 13:19:54 +09005200 if (sata_scr_valid(link))
Tejun Heo82ef04f2008-07-31 17:02:40 +09005201 return link->ap->ops->scr_read(link, reg, val);
Tejun Heo633273a32007-09-23 13:19:54 +09005202 return -EOPNOTSUPP;
5203 }
5204
5205 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005206}
5207
5208/**
5209 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005210 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005211 * @reg: SCR to write
5212 * @val: value to write
5213 *
Tejun Heo936fd732007-08-06 18:36:23 +09005214 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09005215 * guaranteed to succeed if @link is ap->link, the cable type of
5216 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09005217 *
5218 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09005219 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09005220 *
5221 * RETURNS:
5222 * 0 on success, negative errno on failure.
5223 */
Tejun Heo936fd732007-08-06 18:36:23 +09005224int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005225{
Tejun Heo633273a32007-09-23 13:19:54 +09005226 if (ata_is_host_link(link)) {
Tejun Heo633273a32007-09-23 13:19:54 +09005227 if (sata_scr_valid(link))
Tejun Heo82ef04f2008-07-31 17:02:40 +09005228 return link->ap->ops->scr_write(link, reg, val);
Tejun Heo633273a32007-09-23 13:19:54 +09005229 return -EOPNOTSUPP;
5230 }
5231
5232 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005233}
5234
5235/**
5236 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09005237 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005238 * @reg: SCR to write
5239 * @val: value to write
5240 *
5241 * This function is identical to sata_scr_write() except that this
5242 * function performs flush after writing to the register.
5243 *
5244 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09005245 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09005246 *
5247 * RETURNS:
5248 * 0 on success, negative errno on failure.
5249 */
Tejun Heo936fd732007-08-06 18:36:23 +09005250int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005251{
Tejun Heo633273a32007-09-23 13:19:54 +09005252 if (ata_is_host_link(link)) {
Tejun Heo633273a32007-09-23 13:19:54 +09005253 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09005254
Tejun Heo633273a32007-09-23 13:19:54 +09005255 if (sata_scr_valid(link)) {
Tejun Heo82ef04f2008-07-31 17:02:40 +09005256 rc = link->ap->ops->scr_write(link, reg, val);
Tejun Heo633273a32007-09-23 13:19:54 +09005257 if (rc == 0)
Tejun Heo82ef04f2008-07-31 17:02:40 +09005258 rc = link->ap->ops->scr_read(link, reg, &val);
Tejun Heo633273a32007-09-23 13:19:54 +09005259 return rc;
5260 }
5261 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09005262 }
Tejun Heo633273a32007-09-23 13:19:54 +09005263
5264 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005265}
5266
5267/**
Tejun Heob1c72912008-07-31 17:02:43 +09005268 * ata_phys_link_online - test whether the given link is online
Tejun Heo936fd732007-08-06 18:36:23 +09005269 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005270 *
Tejun Heo936fd732007-08-06 18:36:23 +09005271 * Test whether @link is online. Note that this function returns
5272 * 0 if online status of @link cannot be obtained, so
5273 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005274 *
5275 * LOCKING:
5276 * None.
5277 *
5278 * RETURNS:
Tejun Heob5b3fa32008-07-31 17:02:42 +09005279 * True if the port online status is available and online.
Tejun Heo34bf2172006-05-15 20:57:46 +09005280 */
Tejun Heob1c72912008-07-31 17:02:43 +09005281bool ata_phys_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005282{
5283 u32 sstatus;
5284
Tejun Heo936fd732007-08-06 18:36:23 +09005285 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
Tejun Heo9913ff82009-01-29 20:31:31 +09005286 ata_sstatus_online(sstatus))
Tejun Heob5b3fa32008-07-31 17:02:42 +09005287 return true;
5288 return false;
Tejun Heo34bf2172006-05-15 20:57:46 +09005289}
5290
5291/**
Tejun Heob1c72912008-07-31 17:02:43 +09005292 * ata_phys_link_offline - test whether the given link is offline
Tejun Heo936fd732007-08-06 18:36:23 +09005293 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005294 *
Tejun Heo936fd732007-08-06 18:36:23 +09005295 * Test whether @link is offline. Note that this function
5296 * returns 0 if offline status of @link cannot be obtained, so
5297 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005298 *
5299 * LOCKING:
5300 * None.
5301 *
5302 * RETURNS:
Tejun Heob5b3fa32008-07-31 17:02:42 +09005303 * True if the port offline status is available and offline.
Tejun Heo34bf2172006-05-15 20:57:46 +09005304 */
Tejun Heob1c72912008-07-31 17:02:43 +09005305bool ata_phys_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005306{
5307 u32 sstatus;
5308
Tejun Heo936fd732007-08-06 18:36:23 +09005309 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
Tejun Heo9913ff82009-01-29 20:31:31 +09005310 !ata_sstatus_online(sstatus))
Tejun Heob5b3fa32008-07-31 17:02:42 +09005311 return true;
5312 return false;
Tejun Heo34bf2172006-05-15 20:57:46 +09005313}
Edward Falk0baab862005-06-02 18:17:13 -04005314
Tejun Heob1c72912008-07-31 17:02:43 +09005315/**
5316 * ata_link_online - test whether the given link is online
5317 * @link: ATA link to test
5318 *
5319 * Test whether @link is online. This is identical to
5320 * ata_phys_link_online() when there's no slave link. When
5321 * there's a slave link, this function should only be called on
5322 * the master link and will return true if any of M/S links is
5323 * online.
5324 *
5325 * LOCKING:
5326 * None.
5327 *
5328 * RETURNS:
5329 * True if the port online status is available and online.
5330 */
5331bool ata_link_online(struct ata_link *link)
5332{
5333 struct ata_link *slave = link->ap->slave_link;
5334
5335 WARN_ON(link == slave); /* shouldn't be called on slave link */
5336
5337 return ata_phys_link_online(link) ||
5338 (slave && ata_phys_link_online(slave));
5339}
5340
5341/**
5342 * ata_link_offline - test whether the given link is offline
5343 * @link: ATA link to test
5344 *
5345 * Test whether @link is offline. This is identical to
5346 * ata_phys_link_offline() when there's no slave link. When
5347 * there's a slave link, this function should only be called on
5348 * the master link and will return true if both M/S links are
5349 * offline.
5350 *
5351 * LOCKING:
5352 * None.
5353 *
5354 * RETURNS:
5355 * True if the port offline status is available and offline.
5356 */
5357bool ata_link_offline(struct ata_link *link)
5358{
5359 struct ata_link *slave = link->ap->slave_link;
5360
5361 WARN_ON(link == slave); /* shouldn't be called on slave link */
5362
5363 return ata_phys_link_offline(link) &&
5364 (!slave || ata_phys_link_offline(slave));
5365}
5366
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005367#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04005368static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5369 unsigned int action, unsigned int ehi_flags,
5370 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005371{
5372 unsigned long flags;
5373 int i, rc;
5374
Jeff Garzikcca39742006-08-24 03:19:22 -04005375 for (i = 0; i < host->n_ports; i++) {
5376 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09005377 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09005378
5379 /* Previous resume operation might still be in
5380 * progress. Wait for PM_PENDING to clear.
5381 */
5382 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5383 ata_port_wait_eh(ap);
5384 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5385 }
5386
5387 /* request PM ops to EH */
5388 spin_lock_irqsave(ap->lock, flags);
5389
5390 ap->pm_mesg = mesg;
5391 if (wait) {
5392 rc = 0;
5393 ap->pm_result = &rc;
5394 }
5395
5396 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heo1eca4362008-11-03 20:03:17 +09005397 ata_for_each_link(link, ap, HOST_FIRST) {
Tejun Heoe3667eb2007-08-06 18:36:24 +09005398 link->eh_info.action |= action;
5399 link->eh_info.flags |= ehi_flags;
5400 }
Tejun Heo500530f2006-07-03 16:07:27 +09005401
5402 ata_port_schedule_eh(ap);
5403
5404 spin_unlock_irqrestore(ap->lock, flags);
5405
5406 /* wait and check result */
5407 if (wait) {
5408 ata_port_wait_eh(ap);
5409 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5410 if (rc)
5411 return rc;
5412 }
5413 }
5414
5415 return 0;
5416}
5417
5418/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005419 * ata_host_suspend - suspend host
5420 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09005421 * @mesg: PM message
5422 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005423 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005424 * function requests EH to perform PM operations and waits for EH
5425 * to finish.
5426 *
5427 * LOCKING:
5428 * Kernel thread context (may sleep).
5429 *
5430 * RETURNS:
5431 * 0 on success, -errno on failure.
5432 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005433int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005434{
Tejun Heo9666f402007-05-04 21:27:47 +02005435 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005436
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005437 /*
5438 * disable link pm on all ports before requesting
5439 * any pm activity
5440 */
5441 ata_lpm_enable(host);
5442
Jeff Garzikcca39742006-08-24 03:19:22 -04005443 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005444 if (rc == 0)
5445 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005446 return rc;
5447}
5448
5449/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005450 * ata_host_resume - resume host
5451 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005452 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005453 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005454 * function requests EH to perform PM operations and returns.
5455 * Note that all resume operations are performed parallely.
5456 *
5457 * LOCKING:
5458 * Kernel thread context (may sleep).
5459 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005460void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005461{
Tejun Heocf480622008-01-24 00:05:14 +09005462 ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET,
Jeff Garzikcca39742006-08-24 03:19:22 -04005463 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005464 host->dev->power.power_state = PMSG_ON;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005465
5466 /* reenable link pm */
5467 ata_lpm_disable(host);
Tejun Heo500530f2006-07-03 16:07:27 +09005468}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005469#endif
Tejun Heo500530f2006-07-03 16:07:27 +09005470
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005471/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005472 * ata_dev_init - Initialize an ata_device structure
5473 * @dev: Device structure to initialize
5474 *
5475 * Initialize @dev in preparation for probing.
5476 *
5477 * LOCKING:
5478 * Inherited from caller.
5479 */
5480void ata_dev_init(struct ata_device *dev)
5481{
Tejun Heob1c72912008-07-31 17:02:43 +09005482 struct ata_link *link = ata_dev_phys_link(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005483 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005484 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005485
Tejun Heob1c72912008-07-31 17:02:43 +09005486 /* SATA spd limit is bound to the attached device, reset together */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005487 link->sata_spd_limit = link->hw_sata_spd_limit;
5488 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005489
Tejun Heo72fa4b72006-05-31 18:27:32 +09005490 /* High bits of dev->flags are used to record warm plug
5491 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04005492 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09005493 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005494 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005495 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09005496 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005497 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005498
Tejun Heo99cf6102009-01-29 20:31:32 +09005499 memset((void *)dev + ATA_DEVICE_CLEAR_BEGIN, 0,
5500 ATA_DEVICE_CLEAR_END - ATA_DEVICE_CLEAR_BEGIN);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005501 dev->pio_mask = UINT_MAX;
5502 dev->mwdma_mask = UINT_MAX;
5503 dev->udma_mask = UINT_MAX;
5504}
5505
5506/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09005507 * ata_link_init - Initialize an ata_link structure
5508 * @ap: ATA port link is attached to
5509 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09005510 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09005511 *
5512 * Initialize @link.
5513 *
5514 * LOCKING:
5515 * Kernel thread context (may sleep)
5516 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005517void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005518{
5519 int i;
5520
5521 /* clear everything except for devices */
5522 memset(link, 0, offsetof(struct ata_link, device[0]));
5523
5524 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09005525 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005526 link->active_tag = ATA_TAG_POISON;
5527 link->hw_sata_spd_limit = UINT_MAX;
5528
5529 /* can't use iterator, ap isn't initialized yet */
5530 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5531 struct ata_device *dev = &link->device[i];
5532
5533 dev->link = link;
5534 dev->devno = dev - link->device;
Tejun Heo110f66d2009-09-16 04:17:28 +09005535#ifdef CONFIG_ATA_ACPI
5536 dev->gtf_filter = ata_acpi_gtf_filter;
5537#endif
Tejun Heo4fb37a22007-08-06 18:36:23 +09005538 ata_dev_init(dev);
5539 }
5540}
5541
5542/**
5543 * sata_link_init_spd - Initialize link->sata_spd_limit
5544 * @link: Link to configure sata_spd_limit for
5545 *
5546 * Initialize @link->[hw_]sata_spd_limit to the currently
5547 * configured value.
5548 *
5549 * LOCKING:
5550 * Kernel thread context (may sleep).
5551 *
5552 * RETURNS:
5553 * 0 on success, -errno on failure.
5554 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005555int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005556{
Tejun Heo33267322008-02-13 09:15:09 +09005557 u8 spd;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005558 int rc;
5559
Tejun Heod127ea72008-07-31 16:09:34 +09005560 rc = sata_scr_read(link, SCR_CONTROL, &link->saved_scontrol);
Tejun Heo4fb37a22007-08-06 18:36:23 +09005561 if (rc)
5562 return rc;
5563
Tejun Heod127ea72008-07-31 16:09:34 +09005564 spd = (link->saved_scontrol >> 4) & 0xf;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005565 if (spd)
5566 link->hw_sata_spd_limit &= (1 << spd) - 1;
5567
Tejun Heo05944bd2008-08-13 20:19:09 +09005568 ata_force_link_limits(link);
Tejun Heo33267322008-02-13 09:15:09 +09005569
Tejun Heo4fb37a22007-08-06 18:36:23 +09005570 link->sata_spd_limit = link->hw_sata_spd_limit;
5571
5572 return 0;
5573}
5574
5575/**
Tejun Heof3187192007-04-17 23:44:07 +09005576 * ata_port_alloc - allocate and initialize basic ATA port resources
5577 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 *
Tejun Heof3187192007-04-17 23:44:07 +09005579 * Allocate and initialize basic ATA port resources.
5580 *
5581 * RETURNS:
5582 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005583 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005585 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 */
Tejun Heof3187192007-04-17 23:44:07 +09005587struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588{
Tejun Heof3187192007-04-17 23:44:07 +09005589 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590
Tejun Heof3187192007-04-17 23:44:07 +09005591 DPRINTK("ENTER\n");
5592
5593 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5594 if (!ap)
5595 return NULL;
5596
Tejun Heof4d6d002007-05-01 11:50:15 +02005597 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04005598 ap->lock = &host->lock;
Tejun Heof3187192007-04-17 23:44:07 +09005599 ap->print_id = -1;
Jeff Garzikcca39742006-08-24 03:19:22 -04005600 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09005601 ap->dev = host->dev;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005602
5603#if defined(ATA_VERBOSE_DEBUG)
5604 /* turn on all debugging levels */
5605 ap->msg_enable = 0x00FF;
5606#elif defined(ATA_DEBUG)
5607 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 +09005608#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005609 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005610#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
Tejun Heoad72cf92010-07-02 10:03:52 +02005612 mutex_init(&ap->scsi_scan_mutex);
David Howells65f27f32006-11-22 14:55:48 +00005613 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5614 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005615 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005616 init_waitqueue_head(&ap->eh_wait_q);
Elias Oltmanns45fabbb2008-09-21 11:54:08 +02005617 init_completion(&ap->park_req_pending);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09005618 init_timer_deferrable(&ap->fastdrain_timer);
5619 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
5620 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
Tejun Heo838df622006-05-15 20:57:44 +09005622 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09005623
Tejun Heo89898052007-08-06 18:36:23 +09005624 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625
5626#ifdef ATA_IRQ_TRAP
5627 ap->stats.unhandled_irq = 1;
5628 ap->stats.idle_irq = 1;
5629#endif
Tejun Heo270390e2010-05-10 21:41:35 +02005630 ata_sff_port_init(ap);
5631
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633}
5634
Tejun Heof0d36ef2007-01-20 16:00:28 +09005635static void ata_host_release(struct device *gendev, void *res)
5636{
5637 struct ata_host *host = dev_get_drvdata(gendev);
5638 int i;
5639
5640 for (i = 0; i < host->n_ports; i++) {
5641 struct ata_port *ap = host->ports[i];
5642
Tejun Heoecef7252007-04-17 23:44:06 +09005643 if (!ap)
5644 continue;
5645
Tejun Heo49114872007-04-17 23:44:06 +09005646 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09005647 scsi_host_put(ap->scsi_host);
5648
Tejun Heo633273a32007-09-23 13:19:54 +09005649 kfree(ap->pmp_link);
Tejun Heob1c72912008-07-31 17:02:43 +09005650 kfree(ap->slave_link);
Tejun Heo49114872007-04-17 23:44:06 +09005651 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09005652 host->ports[i] = NULL;
5653 }
5654
Tejun Heo1aa56cc2007-02-27 22:33:21 +09005655 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005656}
5657
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658/**
Tejun Heof3187192007-04-17 23:44:07 +09005659 * ata_host_alloc - allocate and init basic ATA host resources
5660 * @dev: generic device this host is associated with
5661 * @max_ports: maximum number of ATA ports associated with this host
5662 *
5663 * Allocate and initialize basic ATA host resources. LLD calls
5664 * this function to allocate a host, initializes it fully and
5665 * attaches it using ata_host_register().
5666 *
5667 * @max_ports ports are allocated and host->n_ports is
5668 * initialized to @max_ports. The caller is allowed to decrease
5669 * host->n_ports before calling ata_host_register(). The unused
5670 * ports will be automatically freed on registration.
5671 *
5672 * RETURNS:
5673 * Allocate ATA host on success, NULL on failure.
5674 *
5675 * LOCKING:
5676 * Inherited from calling layer (may sleep).
5677 */
5678struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
5679{
5680 struct ata_host *host;
5681 size_t sz;
5682 int i;
5683
5684 DPRINTK("ENTER\n");
5685
5686 if (!devres_open_group(dev, NULL, GFP_KERNEL))
5687 return NULL;
5688
5689 /* alloc a container for our list of ATA ports (buses) */
5690 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
5691 /* alloc a container for our list of ATA ports (buses) */
5692 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
5693 if (!host)
5694 goto err_out;
5695
5696 devres_add(dev, host);
5697 dev_set_drvdata(dev, host);
5698
5699 spin_lock_init(&host->lock);
5700 host->dev = dev;
5701 host->n_ports = max_ports;
5702
5703 /* allocate ports bound to this host */
5704 for (i = 0; i < max_ports; i++) {
5705 struct ata_port *ap;
5706
5707 ap = ata_port_alloc(host);
5708 if (!ap)
5709 goto err_out;
5710
5711 ap->port_no = i;
5712 host->ports[i] = ap;
5713 }
5714
5715 devres_remove_group(dev, NULL);
5716 return host;
5717
5718 err_out:
5719 devres_release_group(dev, NULL);
5720 return NULL;
5721}
5722
5723/**
Tejun Heof5cda252007-04-17 23:44:07 +09005724 * ata_host_alloc_pinfo - alloc host and init with port_info array
5725 * @dev: generic device this host is associated with
5726 * @ppi: array of ATA port_info to initialize host with
5727 * @n_ports: number of ATA ports attached to this host
5728 *
5729 * Allocate ATA host and initialize with info from @ppi. If NULL
5730 * terminated, @ppi may contain fewer entries than @n_ports. The
5731 * last entry will be used for the remaining ports.
5732 *
5733 * RETURNS:
5734 * Allocate ATA host on success, NULL on failure.
5735 *
5736 * LOCKING:
5737 * Inherited from calling layer (may sleep).
5738 */
5739struct ata_host *ata_host_alloc_pinfo(struct device *dev,
5740 const struct ata_port_info * const * ppi,
5741 int n_ports)
5742{
5743 const struct ata_port_info *pi;
5744 struct ata_host *host;
5745 int i, j;
5746
5747 host = ata_host_alloc(dev, n_ports);
5748 if (!host)
5749 return NULL;
5750
5751 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
5752 struct ata_port *ap = host->ports[i];
5753
5754 if (ppi[j])
5755 pi = ppi[j++];
5756
5757 ap->pio_mask = pi->pio_mask;
5758 ap->mwdma_mask = pi->mwdma_mask;
5759 ap->udma_mask = pi->udma_mask;
5760 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09005761 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09005762 ap->ops = pi->port_ops;
5763
5764 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
5765 host->ops = pi->port_ops;
Tejun Heof5cda252007-04-17 23:44:07 +09005766 }
5767
5768 return host;
5769}
5770
Tejun Heob1c72912008-07-31 17:02:43 +09005771/**
5772 * ata_slave_link_init - initialize slave link
5773 * @ap: port to initialize slave link for
5774 *
5775 * Create and initialize slave link for @ap. This enables slave
5776 * link handling on the port.
5777 *
5778 * In libata, a port contains links and a link contains devices.
5779 * There is single host link but if a PMP is attached to it,
5780 * there can be multiple fan-out links. On SATA, there's usually
5781 * a single device connected to a link but PATA and SATA
5782 * controllers emulating TF based interface can have two - master
5783 * and slave.
5784 *
5785 * However, there are a few controllers which don't fit into this
5786 * abstraction too well - SATA controllers which emulate TF
5787 * interface with both master and slave devices but also have
5788 * separate SCR register sets for each device. These controllers
5789 * need separate links for physical link handling
5790 * (e.g. onlineness, link speed) but should be treated like a
5791 * traditional M/S controller for everything else (e.g. command
5792 * issue, softreset).
5793 *
5794 * slave_link is libata's way of handling this class of
5795 * controllers without impacting core layer too much. For
5796 * anything other than physical link handling, the default host
5797 * link is used for both master and slave. For physical link
5798 * handling, separate @ap->slave_link is used. All dirty details
5799 * are implemented inside libata core layer. From LLD's POV, the
5800 * only difference is that prereset, hardreset and postreset are
5801 * called once more for the slave link, so the reset sequence
5802 * looks like the following.
5803 *
5804 * prereset(M) -> prereset(S) -> hardreset(M) -> hardreset(S) ->
5805 * softreset(M) -> postreset(M) -> postreset(S)
5806 *
5807 * Note that softreset is called only for the master. Softreset
5808 * resets both M/S by definition, so SRST on master should handle
5809 * both (the standard method will work just fine).
5810 *
5811 * LOCKING:
5812 * Should be called before host is registered.
5813 *
5814 * RETURNS:
5815 * 0 on success, -errno on failure.
5816 */
5817int ata_slave_link_init(struct ata_port *ap)
5818{
5819 struct ata_link *link;
5820
5821 WARN_ON(ap->slave_link);
5822 WARN_ON(ap->flags & ATA_FLAG_PMP);
5823
5824 link = kzalloc(sizeof(*link), GFP_KERNEL);
5825 if (!link)
5826 return -ENOMEM;
5827
5828 ata_link_init(ap, link, 1);
5829 ap->slave_link = link;
5830 return 0;
5831}
5832
Tejun Heo32ebbc02007-11-08 13:09:00 +09005833static void ata_host_stop(struct device *gendev, void *res)
5834{
5835 struct ata_host *host = dev_get_drvdata(gendev);
5836 int i;
5837
5838 WARN_ON(!(host->flags & ATA_HOST_STARTED));
5839
5840 for (i = 0; i < host->n_ports; i++) {
5841 struct ata_port *ap = host->ports[i];
5842
5843 if (ap->ops->port_stop)
5844 ap->ops->port_stop(ap);
5845 }
5846
5847 if (host->ops->host_stop)
5848 host->ops->host_stop(host);
5849}
5850
Tejun Heof5cda252007-04-17 23:44:07 +09005851/**
Tejun Heo029cfd62008-03-25 12:22:49 +09005852 * ata_finalize_port_ops - finalize ata_port_operations
5853 * @ops: ata_port_operations to finalize
5854 *
5855 * An ata_port_operations can inherit from another ops and that
5856 * ops can again inherit from another. This can go on as many
5857 * times as necessary as long as there is no loop in the
5858 * inheritance chain.
5859 *
5860 * Ops tables are finalized when the host is started. NULL or
5861 * unspecified entries are inherited from the closet ancestor
5862 * which has the method and the entry is populated with it.
5863 * After finalization, the ops table directly points to all the
5864 * methods and ->inherits is no longer necessary and cleared.
5865 *
5866 * Using ATA_OP_NULL, inheriting ops can force a method to NULL.
5867 *
5868 * LOCKING:
5869 * None.
5870 */
5871static void ata_finalize_port_ops(struct ata_port_operations *ops)
5872{
Pradeep Singh Rautela2da67652008-05-29 23:28:14 +05305873 static DEFINE_SPINLOCK(lock);
Tejun Heo029cfd62008-03-25 12:22:49 +09005874 const struct ata_port_operations *cur;
5875 void **begin = (void **)ops;
5876 void **end = (void **)&ops->inherits;
5877 void **pp;
5878
5879 if (!ops || !ops->inherits)
5880 return;
5881
5882 spin_lock(&lock);
5883
5884 for (cur = ops->inherits; cur; cur = cur->inherits) {
5885 void **inherit = (void **)cur;
5886
5887 for (pp = begin; pp < end; pp++, inherit++)
5888 if (!*pp)
5889 *pp = *inherit;
5890 }
5891
5892 for (pp = begin; pp < end; pp++)
5893 if (IS_ERR(*pp))
5894 *pp = NULL;
5895
5896 ops->inherits = NULL;
5897
5898 spin_unlock(&lock);
5899}
5900
5901/**
Tejun Heoecef7252007-04-17 23:44:06 +09005902 * ata_host_start - start and freeze ports of an ATA host
5903 * @host: ATA host to start ports for
5904 *
5905 * Start and then freeze ports of @host. Started status is
5906 * recorded in host->flags, so this function can be called
5907 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09005908 * once. If host->ops isn't initialized yet, its set to the
5909 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09005910 *
5911 * LOCKING:
5912 * Inherited from calling layer (may sleep).
5913 *
5914 * RETURNS:
5915 * 0 if all ports are started successfully, -errno otherwise.
5916 */
5917int ata_host_start(struct ata_host *host)
5918{
Tejun Heo32ebbc02007-11-08 13:09:00 +09005919 int have_stop = 0;
5920 void *start_dr = NULL;
Tejun Heoecef7252007-04-17 23:44:06 +09005921 int i, rc;
5922
5923 if (host->flags & ATA_HOST_STARTED)
5924 return 0;
5925
Tejun Heo029cfd62008-03-25 12:22:49 +09005926 ata_finalize_port_ops(host->ops);
5927
Tejun Heoecef7252007-04-17 23:44:06 +09005928 for (i = 0; i < host->n_ports; i++) {
5929 struct ata_port *ap = host->ports[i];
5930
Tejun Heo029cfd62008-03-25 12:22:49 +09005931 ata_finalize_port_ops(ap->ops);
5932
Tejun Heof3187192007-04-17 23:44:07 +09005933 if (!host->ops && !ata_port_is_dummy(ap))
5934 host->ops = ap->ops;
5935
Tejun Heo32ebbc02007-11-08 13:09:00 +09005936 if (ap->ops->port_stop)
5937 have_stop = 1;
5938 }
5939
5940 if (host->ops->host_stop)
5941 have_stop = 1;
5942
5943 if (have_stop) {
5944 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
5945 if (!start_dr)
5946 return -ENOMEM;
5947 }
5948
5949 for (i = 0; i < host->n_ports; i++) {
5950 struct ata_port *ap = host->ports[i];
5951
Tejun Heoecef7252007-04-17 23:44:06 +09005952 if (ap->ops->port_start) {
5953 rc = ap->ops->port_start(ap);
5954 if (rc) {
Alan Cox0f9fe9b2007-11-30 15:23:16 +00005955 if (rc != -ENODEV)
Andrew Morton0f757742008-01-10 14:33:09 -08005956 dev_printk(KERN_ERR, host->dev,
5957 "failed to start port %d "
5958 "(errno=%d)\n", i, rc);
Tejun Heoecef7252007-04-17 23:44:06 +09005959 goto err_out;
5960 }
5961 }
Tejun Heoecef7252007-04-17 23:44:06 +09005962 ata_eh_freeze_port(ap);
5963 }
5964
Tejun Heo32ebbc02007-11-08 13:09:00 +09005965 if (start_dr)
5966 devres_add(host->dev, start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005967 host->flags |= ATA_HOST_STARTED;
5968 return 0;
5969
5970 err_out:
5971 while (--i >= 0) {
5972 struct ata_port *ap = host->ports[i];
5973
5974 if (ap->ops->port_stop)
5975 ap->ops->port_stop(ap);
5976 }
Tejun Heo32ebbc02007-11-08 13:09:00 +09005977 devres_free(start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005978 return rc;
5979}
5980
5981/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005982 * ata_sas_host_init - Initialize a host struct
5983 * @host: host to initialize
5984 * @dev: device host is attached to
5985 * @flags: host flags
5986 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05005987 *
5988 * LOCKING:
5989 * PCI/etc. bus probe sem.
5990 *
5991 */
Tejun Heof3187192007-04-17 23:44:07 +09005992/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04005993void ata_host_init(struct ata_host *host, struct device *dev,
Tejun Heo029cfd62008-03-25 12:22:49 +09005994 unsigned long flags, struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05005995{
Jeff Garzikcca39742006-08-24 03:19:22 -04005996 spin_lock_init(&host->lock);
5997 host->dev = dev;
5998 host->flags = flags;
5999 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05006000}
6001
Arjan van de Ven79318052009-01-04 05:32:28 -08006002
6003static void async_port_probe(void *data, async_cookie_t cookie)
6004{
6005 int rc;
6006 struct ata_port *ap = data;
Arjan van de Ven886ad092009-01-09 15:54:07 -08006007
6008 /*
6009 * If we're not allowed to scan this host in parallel,
6010 * we need to wait until all previous scans have completed
6011 * before going further.
Arjan van de Venfa853a42009-01-10 10:18:44 -08006012 * Jeff Garzik says this is only within a controller, so we
6013 * don't need to wait for port 0, only for later ports.
Arjan van de Ven886ad092009-01-09 15:54:07 -08006014 */
Arjan van de Venfa853a42009-01-10 10:18:44 -08006015 if (!(ap->host->flags & ATA_HOST_PARALLEL_SCAN) && ap->port_no != 0)
Arjan van de Ven886ad092009-01-09 15:54:07 -08006016 async_synchronize_cookie(cookie);
6017
Arjan van de Ven79318052009-01-04 05:32:28 -08006018 /* probe */
6019 if (ap->ops->error_handler) {
6020 struct ata_eh_info *ehi = &ap->link.eh_info;
6021 unsigned long flags;
6022
Arjan van de Ven79318052009-01-04 05:32:28 -08006023 /* kick EH for boot probing */
6024 spin_lock_irqsave(ap->lock, flags);
6025
6026 ehi->probe_mask |= ATA_ALL_DEVICES;
6027 ehi->action |= ATA_EH_RESET | ATA_EH_LPM;
6028 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
6029
6030 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
6031 ap->pflags |= ATA_PFLAG_LOADING;
6032 ata_port_schedule_eh(ap);
6033
6034 spin_unlock_irqrestore(ap->lock, flags);
6035
6036 /* wait for EH to finish */
6037 ata_port_wait_eh(ap);
6038 } else {
6039 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
6040 rc = ata_bus_probe(ap);
6041 DPRINTK("ata%u: bus probe end\n", ap->print_id);
6042
6043 if (rc) {
6044 /* FIXME: do something useful here?
6045 * Current libata behavior will
6046 * tear down everything when
6047 * the module is removed
6048 * or the h/w is unplugged.
6049 */
6050 }
6051 }
Arjan van de Venf29d3b22009-01-05 15:07:07 -08006052
6053 /* in order to keep device order, we need to synchronize at this point */
6054 async_synchronize_cookie(cookie);
6055
6056 ata_scsi_scan_host(ap, 1);
6057
Arjan van de Ven79318052009-01-04 05:32:28 -08006058}
Brian Kingb03732f2006-08-07 14:27:10 -05006059/**
Tejun Heof3187192007-04-17 23:44:07 +09006060 * ata_host_register - register initialized ATA host
6061 * @host: ATA host to register
6062 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04006063 *
Tejun Heof3187192007-04-17 23:44:07 +09006064 * Register initialized ATA host. @host is allocated using
6065 * ata_host_alloc() and fully initialized by LLD. This function
6066 * starts ports, registers @host with ATA and SCSI layers and
6067 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068 *
6069 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09006070 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071 *
6072 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09006073 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074 */
Tejun Heof3187192007-04-17 23:44:07 +09006075int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076{
Tejun Heof3187192007-04-17 23:44:07 +09006077 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078
Tejun Heof3187192007-04-17 23:44:07 +09006079 /* host must have been started */
6080 if (!(host->flags & ATA_HOST_STARTED)) {
6081 dev_printk(KERN_ERR, host->dev,
6082 "BUG: trying to register unstarted host\n");
6083 WARN_ON(1);
6084 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01006085 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09006086
Tejun Heof3187192007-04-17 23:44:07 +09006087 /* Blow away unused ports. This happens when LLD can't
6088 * determine the exact number of ports to allocate at
6089 * allocation time.
6090 */
6091 for (i = host->n_ports; host->ports[i]; i++)
6092 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093
Tejun Heof3187192007-04-17 23:44:07 +09006094 /* give ports names and add SCSI hosts */
6095 for (i = 0; i < host->n_ports; i++)
6096 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006097
Tejun Heof3187192007-04-17 23:44:07 +09006098 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006099 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006100 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006101
Tejun Heofafbae82007-05-15 03:28:16 +09006102 /* associate with ACPI nodes */
6103 ata_acpi_associate(host);
6104
Tejun Heof3187192007-04-17 23:44:07 +09006105 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006106 for (i = 0; i < host->n_ports; i++) {
6107 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006108 unsigned long xfer_mask;
6109
6110 /* set SATA cable type if still unset */
6111 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6112 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113
Tejun Heo5a04bf42006-05-31 18:27:38 +09006114 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09006115 sata_link_init_spd(&ap->link);
Tejun Heob1c72912008-07-31 17:02:43 +09006116 if (ap->slave_link)
6117 sata_link_init_spd(ap->slave_link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09006118
Tejun Heocbcdd872007-08-18 13:14:55 +09006119 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09006120 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6121 ap->udma_mask);
6122
Tejun Heoabf6e8e2007-10-09 14:57:25 +09006123 if (!ata_port_is_dummy(ap)) {
Tejun Heocbcdd872007-08-18 13:14:55 +09006124 ata_port_printk(ap, KERN_INFO,
6125 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02006126 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09006127 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09006128 ap->link.eh_info.desc);
Tejun Heoabf6e8e2007-10-09 14:57:25 +09006129 ata_ehi_clear_desc(&ap->link.eh_info);
6130 } else
Tejun Heof3187192007-04-17 23:44:07 +09006131 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6132 }
6133
Vegard Nossumf6005352009-04-08 18:19:39 +02006134 /* perform each probe asynchronously */
Tejun Heof3187192007-04-17 23:44:07 +09006135 for (i = 0; i < host->n_ports; i++) {
6136 struct ata_port *ap = host->ports[i];
Arjan van de Ven79318052009-01-04 05:32:28 -08006137 async_schedule(async_port_probe, ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139
Tejun Heof3187192007-04-17 23:44:07 +09006140 return 0;
6141}
6142
6143/**
Tejun Heof5cda252007-04-17 23:44:07 +09006144 * ata_host_activate - start host, request IRQ and register it
6145 * @host: target ATA host
6146 * @irq: IRQ to request
6147 * @irq_handler: irq_handler used when requesting IRQ
6148 * @irq_flags: irq_flags used when requesting IRQ
6149 * @sht: scsi_host_template to use when registering the host
6150 *
6151 * After allocating an ATA host and initializing it, most libata
6152 * LLDs perform three steps to activate the host - start host,
6153 * request IRQ and register it. This helper takes necessasry
6154 * arguments and performs the three steps in one go.
6155 *
Paul Mundt3d46b2e2007-11-08 11:14:56 +09006156 * An invalid IRQ skips the IRQ registration and expects the host to
6157 * have set polling mode on the port. In this case, @irq_handler
6158 * should be NULL.
6159 *
Tejun Heof5cda252007-04-17 23:44:07 +09006160 * LOCKING:
6161 * Inherited from calling layer (may sleep).
6162 *
6163 * RETURNS:
6164 * 0 on success, -errno otherwise.
6165 */
6166int ata_host_activate(struct ata_host *host, int irq,
6167 irq_handler_t irq_handler, unsigned long irq_flags,
6168 struct scsi_host_template *sht)
6169{
Tejun Heocbcdd872007-08-18 13:14:55 +09006170 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09006171
6172 rc = ata_host_start(host);
6173 if (rc)
6174 return rc;
6175
Paul Mundt3d46b2e2007-11-08 11:14:56 +09006176 /* Special case for polling mode */
6177 if (!irq) {
6178 WARN_ON(irq_handler);
6179 return ata_host_register(host, sht);
6180 }
6181
Tejun Heof5cda252007-04-17 23:44:07 +09006182 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6183 dev_driver_string(host->dev), host);
6184 if (rc)
6185 return rc;
6186
Tejun Heocbcdd872007-08-18 13:14:55 +09006187 for (i = 0; i < host->n_ports; i++)
6188 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09006189
Tejun Heof5cda252007-04-17 23:44:07 +09006190 rc = ata_host_register(host, sht);
6191 /* if failed, just free the IRQ and leave ports alone */
6192 if (rc)
6193 devm_free_irq(host->dev, irq, host);
6194
6195 return rc;
6196}
6197
6198/**
Tejun Heo720ba122006-05-31 18:28:13 +09006199 * ata_port_detach - Detach ATA port in prepration of device removal
6200 * @ap: ATA port to be detached
6201 *
6202 * Detach all ATA devices and the associated SCSI devices of @ap;
6203 * then, remove the associated SCSI host. @ap is guaranteed to
6204 * be quiescent on return from this function.
6205 *
6206 * LOCKING:
6207 * Kernel thread context (may sleep).
6208 */
Adrian Bunk741b7762007-10-24 18:23:06 +02006209static void ata_port_detach(struct ata_port *ap)
Tejun Heo720ba122006-05-31 18:28:13 +09006210{
6211 unsigned long flags;
Tejun Heo720ba122006-05-31 18:28:13 +09006212
6213 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006214 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006215
6216 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006217 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006218 ap->pflags |= ATA_PFLAG_UNLOADING;
Tejun Heoece180d2008-11-03 20:04:37 +09006219 ata_port_schedule_eh(ap);
Jeff Garzikba6a1302006-06-22 23:46:10 -04006220 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006221
Tejun Heoece180d2008-11-03 20:04:37 +09006222 /* wait till EH commits suicide */
Tejun Heo720ba122006-05-31 18:28:13 +09006223 ata_port_wait_eh(ap);
6224
Tejun Heoece180d2008-11-03 20:04:37 +09006225 /* it better be dead now */
6226 WARN_ON(!(ap->pflags & ATA_PFLAG_UNLOADED));
Tejun Heo720ba122006-05-31 18:28:13 +09006227
Oleg Nesterov45a66c12007-07-09 11:46:13 -07006228 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09006229
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006230 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006231 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006232 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006233}
6234
6235/**
Tejun Heo0529c152007-01-20 16:00:26 +09006236 * ata_host_detach - Detach all ports of an ATA host
6237 * @host: Host to detach
6238 *
6239 * Detach all ports of @host.
6240 *
6241 * LOCKING:
6242 * Kernel thread context (may sleep).
6243 */
6244void ata_host_detach(struct ata_host *host)
6245{
6246 int i;
6247
6248 for (i = 0; i < host->n_ports; i++)
6249 ata_port_detach(host->ports[i]);
Tejun Heo562f0c22007-12-15 15:05:01 +09006250
6251 /* the host is dead now, dissociate ACPI */
6252 ata_acpi_dissociate(host);
Tejun Heo0529c152007-01-20 16:00:26 +09006253}
6254
Jeff Garzik374b1872005-08-30 05:42:52 -04006255#ifdef CONFIG_PCI
6256
Edward Falk0baab862005-06-02 18:17:13 -04006257/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258 * ata_pci_remove_one - PCI layer callback for device removal
6259 * @pdev: PCI device that was removed
6260 *
Tejun Heob878ca52007-01-20 16:00:28 +09006261 * PCI layer indicates to libata via this hook that hot-unplug or
6262 * module unload event has occurred. Detach all ports. Resource
6263 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264 *
6265 * LOCKING:
6266 * Inherited from PCI layer (may sleep).
6267 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006268void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269{
Jeff Garzik28555682007-10-11 17:12:35 -04006270 struct device *dev = &pdev->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04006271 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272
Tejun Heob878ca52007-01-20 16:00:28 +09006273 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274}
6275
6276/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006277int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278{
6279 unsigned long tmp = 0;
6280
6281 switch (bits->width) {
6282 case 1: {
6283 u8 tmp8 = 0;
6284 pci_read_config_byte(pdev, bits->reg, &tmp8);
6285 tmp = tmp8;
6286 break;
6287 }
6288 case 2: {
6289 u16 tmp16 = 0;
6290 pci_read_config_word(pdev, bits->reg, &tmp16);
6291 tmp = tmp16;
6292 break;
6293 }
6294 case 4: {
6295 u32 tmp32 = 0;
6296 pci_read_config_dword(pdev, bits->reg, &tmp32);
6297 tmp = tmp32;
6298 break;
6299 }
6300
6301 default:
6302 return -EINVAL;
6303 }
6304
6305 tmp &= bits->mask;
6306
6307 return (tmp == bits->val) ? 1 : 0;
6308}
Jens Axboe9b847542006-01-06 09:28:07 +01006309
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006310#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09006311void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006312{
6313 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09006314 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006315
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01006316 if (mesg.event & PM_EVENT_SLEEP)
Tejun Heo500530f2006-07-03 16:07:27 +09006317 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01006318}
6319
Tejun Heo553c4aa2006-12-26 19:39:50 +09006320int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006321{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006322 int rc;
6323
Jens Axboe9b847542006-01-06 09:28:07 +01006324 pci_set_power_state(pdev, PCI_D0);
6325 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006326
Tejun Heob878ca52007-01-20 16:00:28 +09006327 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006328 if (rc) {
6329 dev_printk(KERN_ERR, &pdev->dev,
6330 "failed to enable device after resume (%d)\n", rc);
6331 return rc;
6332 }
6333
Jens Axboe9b847542006-01-06 09:28:07 +01006334 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006335 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006336}
6337
Tejun Heo3c5100c2006-07-26 16:58:33 +09006338int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006339{
Jeff Garzikcca39742006-08-24 03:19:22 -04006340 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006341 int rc = 0;
6342
Jeff Garzikcca39742006-08-24 03:19:22 -04006343 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006344 if (rc)
6345 return rc;
6346
Tejun Heo3c5100c2006-07-26 16:58:33 +09006347 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006348
6349 return 0;
6350}
6351
6352int ata_pci_device_resume(struct pci_dev *pdev)
6353{
Jeff Garzikcca39742006-08-24 03:19:22 -04006354 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006355 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006356
Tejun Heo553c4aa2006-12-26 19:39:50 +09006357 rc = ata_pci_device_do_resume(pdev);
6358 if (rc == 0)
6359 ata_host_resume(host);
6360 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006361}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006362#endif /* CONFIG_PM */
6363
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364#endif /* CONFIG_PCI */
6365
Tejun Heo33267322008-02-13 09:15:09 +09006366static int __init ata_parse_force_one(char **cur,
6367 struct ata_force_ent *force_ent,
6368 const char **reason)
6369{
6370 /* FIXME: Currently, there's no way to tag init const data and
6371 * using __initdata causes build failure on some versions of
6372 * gcc. Once __initdataconst is implemented, add const to the
6373 * following structure.
6374 */
6375 static struct ata_force_param force_tbl[] __initdata = {
6376 { "40c", .cbl = ATA_CBL_PATA40 },
6377 { "80c", .cbl = ATA_CBL_PATA80 },
6378 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
6379 { "unk", .cbl = ATA_CBL_PATA_UNK },
6380 { "ign", .cbl = ATA_CBL_PATA_IGN },
6381 { "sata", .cbl = ATA_CBL_SATA },
6382 { "1.5Gbps", .spd_limit = 1 },
6383 { "3.0Gbps", .spd_limit = 2 },
6384 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
6385 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
Tejun Heo43c9c592010-05-23 12:59:11 +02006386 { "dump_id", .horkage_on = ATA_HORKAGE_DUMP_ID },
Tejun Heo33267322008-02-13 09:15:09 +09006387 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
6388 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
6389 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
6390 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
6391 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
6392 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
6393 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
6394 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
6395 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
6396 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
6397 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
6398 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
6399 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
6400 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
6401 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
6402 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
6403 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
6404 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
6405 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
6406 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
6407 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
6408 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
6409 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
6410 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
6411 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
6412 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
6413 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
6414 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
6415 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
6416 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
6417 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
6418 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
6419 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
6420 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
Tejun Heo05944bd2008-08-13 20:19:09 +09006421 { "nohrst", .lflags = ATA_LFLAG_NO_HRST },
6422 { "nosrst", .lflags = ATA_LFLAG_NO_SRST },
6423 { "norst", .lflags = ATA_LFLAG_NO_HRST | ATA_LFLAG_NO_SRST },
Tejun Heo33267322008-02-13 09:15:09 +09006424 };
6425 char *start = *cur, *p = *cur;
6426 char *id, *val, *endp;
6427 const struct ata_force_param *match_fp = NULL;
6428 int nr_matches = 0, i;
6429
6430 /* find where this param ends and update *cur */
6431 while (*p != '\0' && *p != ',')
6432 p++;
6433
6434 if (*p == '\0')
6435 *cur = p;
6436 else
6437 *cur = p + 1;
6438
6439 *p = '\0';
6440
6441 /* parse */
6442 p = strchr(start, ':');
6443 if (!p) {
6444 val = strstrip(start);
6445 goto parse_val;
6446 }
6447 *p = '\0';
6448
6449 id = strstrip(start);
6450 val = strstrip(p + 1);
6451
6452 /* parse id */
6453 p = strchr(id, '.');
6454 if (p) {
6455 *p++ = '\0';
6456 force_ent->device = simple_strtoul(p, &endp, 10);
6457 if (p == endp || *endp != '\0') {
6458 *reason = "invalid device";
6459 return -EINVAL;
6460 }
6461 }
6462
6463 force_ent->port = simple_strtoul(id, &endp, 10);
6464 if (p == endp || *endp != '\0') {
6465 *reason = "invalid port/link";
6466 return -EINVAL;
6467 }
6468
6469 parse_val:
6470 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
6471 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
6472 const struct ata_force_param *fp = &force_tbl[i];
6473
6474 if (strncasecmp(val, fp->name, strlen(val)))
6475 continue;
6476
6477 nr_matches++;
6478 match_fp = fp;
6479
6480 if (strcasecmp(val, fp->name) == 0) {
6481 nr_matches = 1;
6482 break;
6483 }
6484 }
6485
6486 if (!nr_matches) {
6487 *reason = "unknown value";
6488 return -EINVAL;
6489 }
6490 if (nr_matches > 1) {
6491 *reason = "ambigious value";
6492 return -EINVAL;
6493 }
6494
6495 force_ent->param = *match_fp;
6496
6497 return 0;
6498}
6499
6500static void __init ata_parse_force_param(void)
6501{
6502 int idx = 0, size = 1;
6503 int last_port = -1, last_device = -1;
6504 char *p, *cur, *next;
6505
6506 /* calculate maximum number of params and allocate force_tbl */
6507 for (p = ata_force_param_buf; *p; p++)
6508 if (*p == ',')
6509 size++;
6510
6511 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
6512 if (!ata_force_tbl) {
6513 printk(KERN_WARNING "ata: failed to extend force table, "
6514 "libata.force ignored\n");
6515 return;
6516 }
6517
6518 /* parse and populate the table */
6519 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
6520 const char *reason = "";
6521 struct ata_force_ent te = { .port = -1, .device = -1 };
6522
6523 next = cur;
6524 if (ata_parse_force_one(&next, &te, &reason)) {
6525 printk(KERN_WARNING "ata: failed to parse force "
6526 "parameter \"%s\" (%s)\n",
6527 cur, reason);
6528 continue;
6529 }
6530
6531 if (te.port == -1) {
6532 te.port = last_port;
6533 te.device = last_device;
6534 }
6535
6536 ata_force_tbl[idx++] = te;
6537
6538 last_port = te.port;
6539 last_device = te.device;
6540 }
6541
6542 ata_force_tbl_size = idx;
6543}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545static int __init ata_init(void)
6546{
Tejun Heo270390e2010-05-10 21:41:35 +02006547 int rc = -ENOMEM;
6548
Tejun Heo33267322008-02-13 09:15:09 +09006549 ata_parse_force_param();
6550
Tejun Heo270390e2010-05-10 21:41:35 +02006551 rc = ata_sff_init();
Tejun Heoad72cf92010-07-02 10:03:52 +02006552 if (rc) {
6553 kfree(ata_force_tbl);
6554 return rc;
6555 }
Tejun Heo453b07a2006-05-31 18:27:42 +09006556
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6558 return 0;
6559}
6560
6561static void __exit ata_exit(void)
6562{
Tejun Heo270390e2010-05-10 21:41:35 +02006563 ata_sff_exit();
Tejun Heo33267322008-02-13 09:15:09 +09006564 kfree(ata_force_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565}
6566
Brian Kinga4625082006-11-13 16:32:36 -06006567subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568module_exit(ata_exit);
6569
Akinobu Mita9990b6f2010-04-12 21:11:41 +09006570static DEFINE_RATELIMIT_STATE(ratelimit, HZ / 5, 1);
Jeff Garzik67846b32005-10-05 02:58:32 -04006571
6572int ata_ratelimit(void)
6573{
Akinobu Mita9990b6f2010-04-12 21:11:41 +09006574 return __ratelimit(&ratelimit);
Jeff Garzik67846b32005-10-05 02:58:32 -04006575}
6576
Tejun Heoc22daff2006-04-11 22:22:29 +09006577/**
6578 * ata_wait_register - wait until register value changes
6579 * @reg: IO-mapped register
6580 * @mask: Mask to apply to read register value
6581 * @val: Wait condition
Tejun Heo341c2c92008-05-20 02:17:51 +09006582 * @interval: polling interval in milliseconds
6583 * @timeout: timeout in milliseconds
Tejun Heoc22daff2006-04-11 22:22:29 +09006584 *
6585 * Waiting for some bits of register to change is a common
6586 * operation for ATA controllers. This function reads 32bit LE
6587 * IO-mapped register @reg and tests for the following condition.
6588 *
6589 * (*@reg & mask) != val
6590 *
6591 * If the condition is met, it returns; otherwise, the process is
6592 * repeated after @interval_msec until timeout.
6593 *
6594 * LOCKING:
6595 * Kernel thread context (may sleep)
6596 *
6597 * RETURNS:
6598 * The final register value.
6599 */
6600u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
Tejun Heo341c2c92008-05-20 02:17:51 +09006601 unsigned long interval, unsigned long timeout)
Tejun Heoc22daff2006-04-11 22:22:29 +09006602{
Tejun Heo341c2c92008-05-20 02:17:51 +09006603 unsigned long deadline;
Tejun Heoc22daff2006-04-11 22:22:29 +09006604 u32 tmp;
6605
6606 tmp = ioread32(reg);
6607
6608 /* Calculate timeout _after_ the first read to make sure
6609 * preceding writes reach the controller before starting to
6610 * eat away the timeout.
6611 */
Tejun Heo341c2c92008-05-20 02:17:51 +09006612 deadline = ata_deadline(jiffies, timeout);
Tejun Heoc22daff2006-04-11 22:22:29 +09006613
Tejun Heo341c2c92008-05-20 02:17:51 +09006614 while ((tmp & mask) == val && time_before(jiffies, deadline)) {
6615 msleep(interval);
Tejun Heoc22daff2006-04-11 22:22:29 +09006616 tmp = ioread32(reg);
6617 }
6618
6619 return tmp;
6620}
6621
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006623 * Dummy port_ops
6624 */
Tejun Heodd5b06c2006-08-10 16:59:12 +09006625static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6626{
6627 return AC_ERR_SYSTEM;
6628}
6629
Tejun Heo182d7bb2008-04-07 22:47:21 +09006630static void ata_dummy_error_handler(struct ata_port *ap)
6631{
6632 /* truly dummy */
6633}
6634
Tejun Heo029cfd62008-03-25 12:22:49 +09006635struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09006636 .qc_prep = ata_noop_qc_prep,
6637 .qc_issue = ata_dummy_qc_issue,
Tejun Heo182d7bb2008-04-07 22:47:21 +09006638 .error_handler = ata_dummy_error_handler,
Tejun Heodd5b06c2006-08-10 16:59:12 +09006639};
6640
Tejun Heo21b0ad42007-04-17 23:44:07 +09006641const struct ata_port_info ata_dummy_port_info = {
6642 .port_ops = &ata_dummy_port_ops,
6643};
6644
Tejun Heodd5b06c2006-08-10 16:59:12 +09006645/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646 * libata is essentially a library of internal helper functions for
6647 * low-level ATA host controller drivers. As such, the API/ABI is
6648 * likely to change as new drivers are added and updated.
6649 * Do not depend on ABI/API stability.
6650 */
Tejun Heoe9c83912006-07-03 16:07:26 +09006651EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6652EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6653EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heo029cfd62008-03-25 12:22:49 +09006654EXPORT_SYMBOL_GPL(ata_base_port_ops);
6655EXPORT_SYMBOL_GPL(sata_port_ops);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006656EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006657EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Tejun Heo1eca4362008-11-03 20:03:17 +09006658EXPORT_SYMBOL_GPL(ata_link_next);
6659EXPORT_SYMBOL_GPL(ata_dev_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660EXPORT_SYMBOL_GPL(ata_std_bios_param);
Tejun Heod8d91292010-05-15 20:09:34 +02006661EXPORT_SYMBOL_GPL(ata_scsi_unlock_native_capacity);
Jeff Garzikcca39742006-08-24 03:19:22 -04006662EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006663EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006664EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heob1c72912008-07-31 17:02:43 +09006665EXPORT_SYMBOL_GPL(ata_slave_link_init);
Tejun Heoecef7252007-04-17 23:44:06 +09006666EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006667EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006668EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09006669EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670EXPORT_SYMBOL_GPL(ata_sg_init);
Tejun Heof686bcb2006-05-15 20:58:05 +09006671EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006672EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Tejun Heo436d34b2008-04-02 17:28:46 +09006673EXPORT_SYMBOL_GPL(atapi_cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6675EXPORT_SYMBOL_GPL(ata_tf_from_fis);
Tejun Heo63573572007-11-27 19:43:39 +09006676EXPORT_SYMBOL_GPL(ata_pack_xfermask);
6677EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
6678EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
6679EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
6680EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
6681EXPORT_SYMBOL_GPL(ata_mode_string);
6682EXPORT_SYMBOL_GPL(ata_id_xfermask);
Alan04351822007-03-06 02:37:52 -08006683EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo31cc23b2007-09-23 13:14:12 +09006684EXPORT_SYMBOL_GPL(ata_std_qc_defer);
Brian Kinge46834c2006-03-17 17:04:03 -06006685EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Alan10305f02007-02-20 18:01:59 +00006686EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09006687EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heoaa2731a2008-04-07 22:47:19 +09006688EXPORT_SYMBOL_GPL(ata_wait_after_reset);
Tejun Heo936fd732007-08-06 18:36:23 +09006689EXPORT_SYMBOL_GPL(sata_link_debounce);
6690EXPORT_SYMBOL_GPL(sata_link_resume);
Tejun Heo0aa11132008-04-07 22:47:18 +09006691EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heocc0680a2007-08-06 18:36:23 +09006692EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heo57c9efd2008-04-07 22:47:19 +09006693EXPORT_SYMBOL_GPL(sata_std_hardreset);
Tejun Heo203c75b2008-04-07 22:47:18 +09006694EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006695EXPORT_SYMBOL_GPL(ata_dev_classify);
6696EXPORT_SYMBOL_GPL(ata_dev_pair);
Jeff Garzik67846b32005-10-05 02:58:32 -04006697EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006698EXPORT_SYMBOL_GPL(ata_wait_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006699EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006701EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006702EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Tejun Heo34bf2172006-05-15 20:57:46 +09006703EXPORT_SYMBOL_GPL(sata_scr_valid);
6704EXPORT_SYMBOL_GPL(sata_scr_read);
6705EXPORT_SYMBOL_GPL(sata_scr_write);
6706EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09006707EXPORT_SYMBOL_GPL(ata_link_online);
6708EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006709#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006710EXPORT_SYMBOL_GPL(ata_host_suspend);
6711EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006712#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09006713EXPORT_SYMBOL_GPL(ata_id_string);
6714EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan Cox963e4972008-07-24 17:16:06 +01006715EXPORT_SYMBOL_GPL(ata_do_dev_read_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6717
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006718EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Tejun Heo63573572007-11-27 19:43:39 +09006719EXPORT_SYMBOL_GPL(ata_timing_find_mode);
Alan Cox452503f2005-10-21 19:01:32 -04006720EXPORT_SYMBOL_GPL(ata_timing_compute);
6721EXPORT_SYMBOL_GPL(ata_timing_merge);
Tejun Heoa0f79b92007-12-18 16:33:05 +09006722EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
Alan Cox452503f2005-10-21 19:01:32 -04006723
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724#ifdef CONFIG_PCI
6725EXPORT_SYMBOL_GPL(pci_test_config_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006727#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09006728EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6729EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006730EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6731EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006732#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006733#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006734
Tejun Heob64bbc32007-07-16 14:29:39 +09006735EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
6736EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
6737EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09006738EXPORT_SYMBOL_GPL(ata_port_desc);
6739#ifdef CONFIG_PCI
6740EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
6741#endif /* CONFIG_PCI */
Tejun Heo7b70fc02006-05-15 20:58:07 +09006742EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09006743EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006744EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006745EXPORT_SYMBOL_GPL(ata_port_freeze);
Tejun Heo7d77b242007-09-23 13:14:13 +09006746EXPORT_SYMBOL_GPL(sata_async_notification);
Tejun Heoe3180492006-05-15 20:58:09 +09006747EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6748EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006749EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6750EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Mark Lord10acf3b2008-05-02 02:14:53 -04006751EXPORT_SYMBOL_GPL(ata_eh_analyze_ncq_error);
Tejun Heo022bdb02006-05-15 20:58:22 +09006752EXPORT_SYMBOL_GPL(ata_do_eh);
Tejun Heoa1efdab2008-03-25 12:22:50 +09006753EXPORT_SYMBOL_GPL(ata_std_error_handler);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006754
6755EXPORT_SYMBOL_GPL(ata_cable_40wire);
6756EXPORT_SYMBOL_GPL(ata_cable_80wire);
6757EXPORT_SYMBOL_GPL(ata_cable_unknown);
Tejun Heoc88f90c2007-11-27 19:43:48 +09006758EXPORT_SYMBOL_GPL(ata_cable_ignore);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006759EXPORT_SYMBOL_GPL(ata_cable_sata);