blob: 88c242856dae999861f6864e9d70e064035a82b0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <scsi/scsi.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050061#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <scsi/scsi_host.h>
63#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/byteorder.h>
Tejun Heo140b5e52007-12-12 12:21:52 +090065#include <linux/cdrom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#include "libata.h"
68
Jeff Garzikfda0efc2007-01-31 07:43:15 -050069
Tejun Heod7bb4cc2006-05-31 18:27:46 +090070/* debounce timing parameters in msecs { interval, duration, timeout } */
Tejun Heoe9c83912006-07-03 16:07:26 +090071const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 };
72const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 };
73const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 };
Tejun Heod7bb4cc2006-05-31 18:27:46 +090074
Tejun Heo029cfd62008-03-25 12:22:49 +090075const struct ata_port_operations ata_base_port_ops = {
Tejun Heo0aa11132008-04-07 22:47:18 +090076 .prereset = ata_std_prereset,
Tejun Heo203c75b2008-04-07 22:47:18 +090077 .postreset = ata_std_postreset,
Tejun Heoa1efdab2008-03-25 12:22:50 +090078 .error_handler = ata_std_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +090079};
80
81const struct ata_port_operations sata_port_ops = {
82 .inherits = &ata_base_port_ops,
83
84 .qc_defer = ata_std_qc_defer,
Tejun Heo57c9efd2008-04-07 22:47:19 +090085 .hardreset = sata_std_hardreset,
Tejun Heo029cfd62008-03-25 12:22:49 +090086};
87
Tejun Heo3373efd2006-05-15 20:57:53 +090088static unsigned int ata_dev_init_params(struct ata_device *dev,
89 u16 heads, u16 sectors);
90static unsigned int ata_dev_set_xfermode(struct ata_device *dev);
Jeff Garzik218f3d32007-10-25 00:33:27 -040091static unsigned int ata_dev_set_feature(struct ata_device *dev,
92 u8 enable, u8 feature);
Tejun Heo3373efd2006-05-15 20:57:53 +090093static void ata_dev_xfermask(struct ata_device *dev);
Tejun Heo75683fe2007-07-05 13:31:27 +090094static unsigned long ata_dev_blacklisted(const struct ata_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Tejun Heof3187192007-04-17 23:44:07 +090096unsigned int ata_print_id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static struct workqueue_struct *ata_wq;
98
Tejun Heo453b07a2006-05-31 18:27:42 +090099struct workqueue_struct *ata_aux_wq;
100
Tejun Heo33267322008-02-13 09:15:09 +0900101struct ata_force_param {
102 const char *name;
103 unsigned int cbl;
104 int spd_limit;
105 unsigned long xfer_mask;
106 unsigned int horkage_on;
107 unsigned int horkage_off;
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);
127MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
128
Adrian Bunkc5c61bd2008-02-25 02:07:25 +0200129static int atapi_dmadir = 0;
Albert Lee95de7192006-04-04 10:57:18 +0800130module_param(atapi_dmadir, int, 0444);
131MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
132
Mark Lordbaf4fdf2007-08-08 01:08:45 +0900133int atapi_passthru16 = 1;
134module_param(atapi_passthru16, int, 0444);
135MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)");
136
Jeff Garzikc3c013a2006-02-27 22:31:19 -0500137int libata_fua = 0;
138module_param_named(fua, libata_fua, int, 0444);
139MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)");
140
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400141static int ata_ignore_hpa;
Alan Cox1e999732007-04-11 00:23:13 +0100142module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
143MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)");
144
Alan Coxb3a70602007-10-02 12:38:26 -0400145static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA;
146module_param_named(dma, libata_dma_mask, int, 0444);
147MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)");
148
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);
Jeff Garzik6ebe9d82007-10-05 16:28:36 -0400155MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set");
Kristen Carlson Accardi11ef6972006-09-28 11:29:01 -0700156
Alan Coxae8d4ee2007-11-04 22:05:49 -0500157int libata_allow_tpm = 0;
158module_param_named(allow_tpm, libata_allow_tpm, int, 0444);
159MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands");
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161MODULE_AUTHOR("Jeff Garzik");
162MODULE_DESCRIPTION("Library module for ATA devices");
163MODULE_LICENSE("GPL");
164MODULE_VERSION(DRV_VERSION);
165
Edward Falk0baab862005-06-02 18:17:13 -0400166
Tejun Heo1eca4362008-11-03 20:03:17 +0900167/**
168 * ata_link_next - link iteration helper
169 * @link: the previous link, NULL to start
170 * @ap: ATA port containing links to iterate
171 * @mode: iteration mode, one of ATA_LITER_*
Tejun Heoaadffb62008-07-31 17:02:41 +0900172 *
Tejun Heo1eca4362008-11-03 20:03:17 +0900173 * LOCKING:
174 * Host lock or EH context.
175 *
176 * RETURNS:
177 * Pointer to the next link.
Tejun Heoaadffb62008-07-31 17:02:41 +0900178 */
Tejun Heo1eca4362008-11-03 20:03:17 +0900179struct ata_link *ata_link_next(struct ata_link *link, struct ata_port *ap,
180 enum ata_link_iter_mode mode)
Tejun Heoaadffb62008-07-31 17:02:41 +0900181{
Tejun Heo1eca4362008-11-03 20:03:17 +0900182 BUG_ON(mode != ATA_LITER_EDGE &&
183 mode != ATA_LITER_PMP_FIRST && mode != ATA_LITER_HOST_FIRST);
Tejun Heoaadffb62008-07-31 17:02:41 +0900184
Tejun Heo1eca4362008-11-03 20:03:17 +0900185 /* NULL link indicates start of iteration */
186 if (!link)
187 switch (mode) {
188 case ATA_LITER_EDGE:
189 case ATA_LITER_PMP_FIRST:
190 if (sata_pmp_attached(ap))
191 return ap->pmp_link;
192 /* fall through */
193 case ATA_LITER_HOST_FIRST:
194 return &ap->link;
195 }
196
197 /* we just iterated over the host link, what's next? */
198 if (link == &ap->link)
199 switch (mode) {
200 case ATA_LITER_HOST_FIRST:
201 if (sata_pmp_attached(ap))
202 return ap->pmp_link;
203 /* fall through */
204 case ATA_LITER_PMP_FIRST:
205 if (unlikely(ap->slave_link))
Tejun Heob1c72912008-07-31 17:02:43 +0900206 return ap->slave_link;
Tejun Heo1eca4362008-11-03 20:03:17 +0900207 /* fall through */
208 case ATA_LITER_EDGE:
Tejun Heoaadffb62008-07-31 17:02:41 +0900209 return NULL;
Tejun Heob1c72912008-07-31 17:02:43 +0900210 }
Tejun Heoaadffb62008-07-31 17:02:41 +0900211
Tejun Heob1c72912008-07-31 17:02:43 +0900212 /* slave_link excludes PMP */
213 if (unlikely(link == ap->slave_link))
214 return NULL;
215
Tejun Heo1eca4362008-11-03 20:03:17 +0900216 /* we were over a PMP link */
Tejun Heoaadffb62008-07-31 17:02:41 +0900217 if (++link < ap->pmp_link + ap->nr_pmp_links)
218 return link;
Tejun Heo1eca4362008-11-03 20:03:17 +0900219
220 if (mode == ATA_LITER_PMP_FIRST)
221 return &ap->link;
222
Tejun Heoaadffb62008-07-31 17:02:41 +0900223 return NULL;
224}
225
Edward Falk0baab862005-06-02 18:17:13 -0400226/**
Tejun Heo1eca4362008-11-03 20:03:17 +0900227 * ata_dev_next - device iteration helper
228 * @dev: the previous device, NULL to start
229 * @link: ATA link containing devices to iterate
230 * @mode: iteration mode, one of ATA_DITER_*
231 *
232 * LOCKING:
233 * Host lock or EH context.
234 *
235 * RETURNS:
236 * Pointer to the next device.
237 */
238struct ata_device *ata_dev_next(struct ata_device *dev, struct ata_link *link,
239 enum ata_dev_iter_mode mode)
240{
241 BUG_ON(mode != ATA_DITER_ENABLED && mode != ATA_DITER_ENABLED_REVERSE &&
242 mode != ATA_DITER_ALL && mode != ATA_DITER_ALL_REVERSE);
243
244 /* NULL dev indicates start of iteration */
245 if (!dev)
246 switch (mode) {
247 case ATA_DITER_ENABLED:
248 case ATA_DITER_ALL:
249 dev = link->device;
250 goto check;
251 case ATA_DITER_ENABLED_REVERSE:
252 case ATA_DITER_ALL_REVERSE:
253 dev = link->device + ata_link_max_devices(link) - 1;
254 goto check;
255 }
256
257 next:
258 /* move to the next one */
259 switch (mode) {
260 case ATA_DITER_ENABLED:
261 case ATA_DITER_ALL:
262 if (++dev < link->device + ata_link_max_devices(link))
263 goto check;
264 return NULL;
265 case ATA_DITER_ENABLED_REVERSE:
266 case ATA_DITER_ALL_REVERSE:
267 if (--dev >= link->device)
268 goto check;
269 return NULL;
270 }
271
272 check:
273 if ((mode == ATA_DITER_ENABLED || mode == ATA_DITER_ENABLED_REVERSE) &&
274 !ata_dev_enabled(dev))
275 goto next;
276 return dev;
277}
278
279/**
Tejun Heob1c72912008-07-31 17:02:43 +0900280 * ata_dev_phys_link - find physical link for a device
281 * @dev: ATA device to look up physical link for
282 *
283 * Look up physical link which @dev is attached to. Note that
284 * this is different from @dev->link only when @dev is on slave
285 * link. For all other cases, it's the same as @dev->link.
286 *
287 * LOCKING:
288 * Don't care.
289 *
290 * RETURNS:
291 * Pointer to the found physical link.
292 */
293struct ata_link *ata_dev_phys_link(struct ata_device *dev)
294{
295 struct ata_port *ap = dev->link->ap;
296
297 if (!ap->slave_link)
298 return dev->link;
299 if (!dev->devno)
300 return &ap->link;
301 return ap->slave_link;
302}
303
304/**
Tejun Heo33267322008-02-13 09:15:09 +0900305 * ata_force_cbl - force cable type according to libata.force
Randy Dunlap4cdfa1b2008-02-22 12:21:37 -0800306 * @ap: ATA port of interest
Tejun Heo33267322008-02-13 09:15:09 +0900307 *
308 * Force cable type according to libata.force and whine about it.
309 * The last entry which has matching port number is used, so it
310 * can be specified as part of device force parameters. For
311 * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the
312 * same effect.
313 *
314 * LOCKING:
315 * EH context.
316 */
317void ata_force_cbl(struct ata_port *ap)
318{
319 int i;
320
321 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
322 const struct ata_force_ent *fe = &ata_force_tbl[i];
323
324 if (fe->port != -1 && fe->port != ap->print_id)
325 continue;
326
327 if (fe->param.cbl == ATA_CBL_NONE)
328 continue;
329
330 ap->cbl = fe->param.cbl;
331 ata_port_printk(ap, KERN_NOTICE,
332 "FORCE: cable set to %s\n", fe->param.name);
333 return;
334 }
335}
336
337/**
Tejun Heo05944bd2008-08-13 20:19:09 +0900338 * ata_force_link_limits - force link limits according to libata.force
Tejun Heo33267322008-02-13 09:15:09 +0900339 * @link: ATA link of interest
340 *
Tejun Heo05944bd2008-08-13 20:19:09 +0900341 * Force link flags and SATA spd limit according to libata.force
342 * and whine about it. When only the port part is specified
343 * (e.g. 1:), the limit applies to all links connected to both
344 * the host link and all fan-out ports connected via PMP. If the
345 * device part is specified as 0 (e.g. 1.00:), it specifies the
346 * first fan-out link not the host link. Device number 15 always
Tejun Heob1c72912008-07-31 17:02:43 +0900347 * points to the host link whether PMP is attached or not. If the
348 * controller has slave link, device number 16 points to it.
Tejun Heo33267322008-02-13 09:15:09 +0900349 *
350 * LOCKING:
351 * EH context.
352 */
Tejun Heo05944bd2008-08-13 20:19:09 +0900353static void ata_force_link_limits(struct ata_link *link)
Tejun Heo33267322008-02-13 09:15:09 +0900354{
Tejun Heo05944bd2008-08-13 20:19:09 +0900355 bool did_spd = false;
Tejun Heob1c72912008-07-31 17:02:43 +0900356 int linkno = link->pmp;
357 int i;
Tejun Heo33267322008-02-13 09:15:09 +0900358
359 if (ata_is_host_link(link))
Tejun Heob1c72912008-07-31 17:02:43 +0900360 linkno += 15;
Tejun Heo33267322008-02-13 09:15:09 +0900361
362 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
363 const struct ata_force_ent *fe = &ata_force_tbl[i];
364
365 if (fe->port != -1 && fe->port != link->ap->print_id)
366 continue;
367
368 if (fe->device != -1 && fe->device != linkno)
369 continue;
370
Tejun Heo05944bd2008-08-13 20:19:09 +0900371 /* only honor the first spd limit */
372 if (!did_spd && fe->param.spd_limit) {
373 link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1;
374 ata_link_printk(link, KERN_NOTICE,
375 "FORCE: PHY spd limit set to %s\n",
376 fe->param.name);
377 did_spd = true;
378 }
Tejun Heo33267322008-02-13 09:15:09 +0900379
Tejun Heo05944bd2008-08-13 20:19:09 +0900380 /* let lflags stack */
381 if (fe->param.lflags) {
382 link->flags |= fe->param.lflags;
383 ata_link_printk(link, KERN_NOTICE,
384 "FORCE: link flag 0x%x forced -> 0x%x\n",
385 fe->param.lflags, link->flags);
386 }
Tejun Heo33267322008-02-13 09:15:09 +0900387 }
388}
389
390/**
391 * ata_force_xfermask - force xfermask according to libata.force
392 * @dev: ATA device of interest
393 *
394 * Force xfer_mask according to libata.force and whine about it.
395 * For consistency with link selection, device number 15 selects
396 * the first device connected to the host link.
397 *
398 * LOCKING:
399 * EH context.
400 */
401static void ata_force_xfermask(struct ata_device *dev)
402{
403 int devno = dev->link->pmp + dev->devno;
404 int alt_devno = devno;
405 int i;
406
Tejun Heob1c72912008-07-31 17:02:43 +0900407 /* allow n.15/16 for devices attached to host port */
408 if (ata_is_host_link(dev->link))
409 alt_devno += 15;
Tejun Heo33267322008-02-13 09:15:09 +0900410
411 for (i = ata_force_tbl_size - 1; i >= 0; i--) {
412 const struct ata_force_ent *fe = &ata_force_tbl[i];
413 unsigned long pio_mask, mwdma_mask, udma_mask;
414
415 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
416 continue;
417
418 if (fe->device != -1 && fe->device != devno &&
419 fe->device != alt_devno)
420 continue;
421
422 if (!fe->param.xfer_mask)
423 continue;
424
425 ata_unpack_xfermask(fe->param.xfer_mask,
426 &pio_mask, &mwdma_mask, &udma_mask);
427 if (udma_mask)
428 dev->udma_mask = udma_mask;
429 else if (mwdma_mask) {
430 dev->udma_mask = 0;
431 dev->mwdma_mask = mwdma_mask;
432 } else {
433 dev->udma_mask = 0;
434 dev->mwdma_mask = 0;
435 dev->pio_mask = pio_mask;
436 }
437
438 ata_dev_printk(dev, KERN_NOTICE,
439 "FORCE: xfer_mask set to %s\n", fe->param.name);
440 return;
441 }
442}
443
444/**
445 * ata_force_horkage - force horkage according to libata.force
446 * @dev: ATA device of interest
447 *
448 * Force horkage according to libata.force and whine about it.
449 * For consistency with link selection, device number 15 selects
450 * the first device connected to the host link.
451 *
452 * LOCKING:
453 * EH context.
454 */
455static void ata_force_horkage(struct ata_device *dev)
456{
457 int devno = dev->link->pmp + dev->devno;
458 int alt_devno = devno;
459 int i;
460
Tejun Heob1c72912008-07-31 17:02:43 +0900461 /* allow n.15/16 for devices attached to host port */
462 if (ata_is_host_link(dev->link))
463 alt_devno += 15;
Tejun Heo33267322008-02-13 09:15:09 +0900464
465 for (i = 0; i < ata_force_tbl_size; i++) {
466 const struct ata_force_ent *fe = &ata_force_tbl[i];
467
468 if (fe->port != -1 && fe->port != dev->link->ap->print_id)
469 continue;
470
471 if (fe->device != -1 && fe->device != devno &&
472 fe->device != alt_devno)
473 continue;
474
475 if (!(~dev->horkage & fe->param.horkage_on) &&
476 !(dev->horkage & fe->param.horkage_off))
477 continue;
478
479 dev->horkage |= fe->param.horkage_on;
480 dev->horkage &= ~fe->param.horkage_off;
481
482 ata_dev_printk(dev, KERN_NOTICE,
483 "FORCE: horkage modified (%s)\n", fe->param.name);
484 }
485}
486
487/**
Tejun Heo436d34b2008-04-02 17:28:46 +0900488 * atapi_cmd_type - Determine ATAPI command type from SCSI opcode
489 * @opcode: SCSI opcode
490 *
491 * Determine ATAPI command type from @opcode.
492 *
493 * LOCKING:
494 * None.
495 *
496 * RETURNS:
497 * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC}
498 */
499int atapi_cmd_type(u8 opcode)
500{
501 switch (opcode) {
502 case GPCMD_READ_10:
503 case GPCMD_READ_12:
504 return ATAPI_READ;
505
506 case GPCMD_WRITE_10:
507 case GPCMD_WRITE_12:
508 case GPCMD_WRITE_AND_VERIFY_10:
509 return ATAPI_WRITE;
510
511 case GPCMD_READ_CD:
512 case GPCMD_READ_CD_MSF:
513 return ATAPI_READ_CD;
514
Tejun Heoe52dcc42008-04-02 17:35:19 +0900515 case ATA_16:
516 case ATA_12:
517 if (atapi_passthru16)
518 return ATAPI_PASS_THRU;
519 /* fall thru */
Tejun Heo436d34b2008-04-02 17:28:46 +0900520 default:
521 return ATAPI_MISC;
522 }
523}
524
525/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
527 * @tf: Taskfile to convert
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 * @pmp: Port multiplier port
Tejun Heo99771262007-07-16 14:29:38 +0900529 * @is_cmd: This FIS is for command
530 * @fis: Buffer into which data will output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 *
532 * Converts a standard ATA taskfile to a Serial ATA
533 * FIS structure (Register - Host to Device).
534 *
535 * LOCKING:
536 * Inherited from caller.
537 */
Tejun Heo99771262007-07-16 14:29:38 +0900538void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Tejun Heo99771262007-07-16 14:29:38 +0900540 fis[0] = 0x27; /* Register - Host to Device FIS */
541 fis[1] = pmp & 0xf; /* Port multiplier number*/
542 if (is_cmd)
543 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 fis[2] = tf->command;
546 fis[3] = tf->feature;
547
548 fis[4] = tf->lbal;
549 fis[5] = tf->lbam;
550 fis[6] = tf->lbah;
551 fis[7] = tf->device;
552
553 fis[8] = tf->hob_lbal;
554 fis[9] = tf->hob_lbam;
555 fis[10] = tf->hob_lbah;
556 fis[11] = tf->hob_feature;
557
558 fis[12] = tf->nsect;
559 fis[13] = tf->hob_nsect;
560 fis[14] = 0;
561 fis[15] = tf->ctl;
562
563 fis[16] = 0;
564 fis[17] = 0;
565 fis[18] = 0;
566 fis[19] = 0;
567}
568
569/**
570 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
571 * @fis: Buffer from which data will be input
572 * @tf: Taskfile to output
573 *
Mark Lorde12a1be2005-11-12 18:55:45 -0500574 * Converts a serial ATA FIS structure to a standard ATA taskfile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 *
576 * LOCKING:
577 * Inherited from caller.
578 */
579
Jeff Garzik057ace52005-10-22 14:27:05 -0400580void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 tf->command = fis[2]; /* status */
583 tf->feature = fis[3]; /* error */
584
585 tf->lbal = fis[4];
586 tf->lbam = fis[5];
587 tf->lbah = fis[6];
588 tf->device = fis[7];
589
590 tf->hob_lbal = fis[8];
591 tf->hob_lbam = fis[9];
592 tf->hob_lbah = fis[10];
593
594 tf->nsect = fis[12];
595 tf->hob_nsect = fis[13];
596}
597
Albert Lee8cbd6df2005-10-12 15:06:27 +0800598static const u8 ata_rw_cmds[] = {
599 /* pio multi */
600 ATA_CMD_READ_MULTI,
601 ATA_CMD_WRITE_MULTI,
602 ATA_CMD_READ_MULTI_EXT,
603 ATA_CMD_WRITE_MULTI_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100604 0,
605 0,
606 0,
607 ATA_CMD_WRITE_MULTI_FUA_EXT,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800608 /* pio */
609 ATA_CMD_PIO_READ,
610 ATA_CMD_PIO_WRITE,
611 ATA_CMD_PIO_READ_EXT,
612 ATA_CMD_PIO_WRITE_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100613 0,
614 0,
615 0,
616 0,
Albert Lee8cbd6df2005-10-12 15:06:27 +0800617 /* dma */
618 ATA_CMD_READ,
619 ATA_CMD_WRITE,
620 ATA_CMD_READ_EXT,
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100621 ATA_CMD_WRITE_EXT,
622 0,
623 0,
624 0,
625 ATA_CMD_WRITE_FUA_EXT
Albert Lee8cbd6df2005-10-12 15:06:27 +0800626};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628/**
Albert Lee8cbd6df2005-10-12 15:06:27 +0800629 * ata_rwcmd_protocol - set taskfile r/w commands and protocol
Tejun Heobd056d72006-11-14 22:47:10 +0900630 * @tf: command to examine and configure
631 * @dev: device tf belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 *
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500633 * Examine the device configuration and tf->flags to calculate
Albert Lee8cbd6df2005-10-12 15:06:27 +0800634 * the proper read/write commands and protocol to use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 *
636 * LOCKING:
637 * caller.
638 */
Tejun Heobd056d72006-11-14 22:47:10 +0900639static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100641 u8 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100643 int index, fua, lba48, write;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500644
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100645 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800646 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0;
647 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Albert Lee8cbd6df2005-10-12 15:06:27 +0800649 if (dev->flags & ATA_DFLAG_PIO) {
650 tf->protocol = ATA_PROT_PIO;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100651 index = dev->multi_count ? 0 : 8;
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900652 } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) {
Alan Cox8d238e02006-01-17 20:50:31 +0000653 /* Unable to use DMA due to host limitation */
654 tf->protocol = ATA_PROT_PIO;
Albert Lee0565c262006-02-13 18:55:25 +0800655 index = dev->multi_count ? 0 : 8;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800656 } else {
657 tf->protocol = ATA_PROT_DMA;
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100658 index = 16;
Albert Lee8cbd6df2005-10-12 15:06:27 +0800659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Tejun Heo9a3dccc2006-01-06 09:56:18 +0100661 cmd = ata_rw_cmds[index + fua + lba48 + write];
662 if (cmd) {
663 tf->command = cmd;
664 return 0;
665 }
666 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Tejun Heocb95d562006-03-06 04:31:56 +0900669/**
Tejun Heo35b649f2006-11-14 22:37:35 +0900670 * ata_tf_read_block - Read block address from ATA taskfile
671 * @tf: ATA taskfile of interest
672 * @dev: ATA device @tf belongs to
673 *
674 * LOCKING:
675 * None.
676 *
677 * Read block address from @tf. This function can handle all
678 * three address formats - LBA, LBA48 and CHS. tf->protocol and
679 * flags select the address format to use.
680 *
681 * RETURNS:
682 * Block address read from @tf.
683 */
684u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev)
685{
686 u64 block = 0;
687
688 if (tf->flags & ATA_TFLAG_LBA) {
689 if (tf->flags & ATA_TFLAG_LBA48) {
690 block |= (u64)tf->hob_lbah << 40;
691 block |= (u64)tf->hob_lbam << 32;
Roland Dreier44901a92008-11-04 10:34:48 -0800692 block |= (u64)tf->hob_lbal << 24;
Tejun Heo35b649f2006-11-14 22:37:35 +0900693 } else
694 block |= (tf->device & 0xf) << 24;
695
696 block |= tf->lbah << 16;
697 block |= tf->lbam << 8;
698 block |= tf->lbal;
699 } else {
700 u32 cyl, head, sect;
701
702 cyl = tf->lbam | (tf->lbah << 8);
703 head = tf->device & 0xf;
704 sect = tf->lbal;
705
706 block = (cyl * dev->heads + head) * dev->sectors + sect;
707 }
708
709 return block;
710}
711
712/**
Tejun Heobd056d72006-11-14 22:47:10 +0900713 * ata_build_rw_tf - Build ATA taskfile for given read/write request
714 * @tf: Target ATA taskfile
715 * @dev: ATA device @tf belongs to
716 * @block: Block address
717 * @n_block: Number of blocks
718 * @tf_flags: RW/FUA etc...
719 * @tag: tag
720 *
721 * LOCKING:
722 * None.
723 *
724 * Build ATA taskfile @tf for read/write request described by
725 * @block, @n_block, @tf_flags and @tag on @dev.
726 *
727 * RETURNS:
728 *
729 * 0 on success, -ERANGE if the request is too large for @dev,
730 * -EINVAL if the request is invalid.
731 */
732int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev,
733 u64 block, u32 n_block, unsigned int tf_flags,
734 unsigned int tag)
735{
736 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
737 tf->flags |= tf_flags;
738
Tejun Heo6d1245b2007-02-20 23:20:27 +0900739 if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) {
Tejun Heobd056d72006-11-14 22:47:10 +0900740 /* yay, NCQ */
741 if (!lba_48_ok(block, n_block))
742 return -ERANGE;
743
744 tf->protocol = ATA_PROT_NCQ;
745 tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
746
747 if (tf->flags & ATA_TFLAG_WRITE)
748 tf->command = ATA_CMD_FPDMA_WRITE;
749 else
750 tf->command = ATA_CMD_FPDMA_READ;
751
752 tf->nsect = tag << 3;
753 tf->hob_feature = (n_block >> 8) & 0xff;
754 tf->feature = n_block & 0xff;
755
756 tf->hob_lbah = (block >> 40) & 0xff;
757 tf->hob_lbam = (block >> 32) & 0xff;
758 tf->hob_lbal = (block >> 24) & 0xff;
759 tf->lbah = (block >> 16) & 0xff;
760 tf->lbam = (block >> 8) & 0xff;
761 tf->lbal = block & 0xff;
762
763 tf->device = 1 << 6;
764 if (tf->flags & ATA_TFLAG_FUA)
765 tf->device |= 1 << 7;
766 } else if (dev->flags & ATA_DFLAG_LBA) {
767 tf->flags |= ATA_TFLAG_LBA;
768
769 if (lba_28_ok(block, n_block)) {
770 /* use LBA28 */
771 tf->device |= (block >> 24) & 0xf;
772 } else if (lba_48_ok(block, n_block)) {
773 if (!(dev->flags & ATA_DFLAG_LBA48))
774 return -ERANGE;
775
776 /* use LBA48 */
777 tf->flags |= ATA_TFLAG_LBA48;
778
779 tf->hob_nsect = (n_block >> 8) & 0xff;
780
781 tf->hob_lbah = (block >> 40) & 0xff;
782 tf->hob_lbam = (block >> 32) & 0xff;
783 tf->hob_lbal = (block >> 24) & 0xff;
784 } else
785 /* request too large even for LBA48 */
786 return -ERANGE;
787
788 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
789 return -EINVAL;
790
791 tf->nsect = n_block & 0xff;
792
793 tf->lbah = (block >> 16) & 0xff;
794 tf->lbam = (block >> 8) & 0xff;
795 tf->lbal = block & 0xff;
796
797 tf->device |= ATA_LBA;
798 } else {
799 /* CHS */
800 u32 sect, head, cyl, track;
801
802 /* The request -may- be too large for CHS addressing. */
803 if (!lba_28_ok(block, n_block))
804 return -ERANGE;
805
806 if (unlikely(ata_rwcmd_protocol(tf, dev) < 0))
807 return -EINVAL;
808
809 /* Convert LBA to CHS */
810 track = (u32)block / dev->sectors;
811 cyl = track / dev->heads;
812 head = track % dev->heads;
813 sect = (u32)block % dev->sectors + 1;
814
815 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
816 (u32)block, track, cyl, head, sect);
817
818 /* Check whether the converted CHS can fit.
819 Cylinder: 0-65535
820 Head: 0-15
821 Sector: 1-255*/
822 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
823 return -ERANGE;
824
825 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
826 tf->lbal = sect;
827 tf->lbam = cyl;
828 tf->lbah = cyl >> 8;
829 tf->device |= head;
830 }
831
832 return 0;
833}
834
835/**
Tejun Heocb95d562006-03-06 04:31:56 +0900836 * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask
837 * @pio_mask: pio_mask
838 * @mwdma_mask: mwdma_mask
839 * @udma_mask: udma_mask
840 *
841 * Pack @pio_mask, @mwdma_mask and @udma_mask into a single
842 * unsigned int xfer_mask.
843 *
844 * LOCKING:
845 * None.
846 *
847 * RETURNS:
848 * Packed xfer_mask.
849 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900850unsigned long ata_pack_xfermask(unsigned long pio_mask,
851 unsigned long mwdma_mask,
852 unsigned long udma_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900853{
854 return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) |
855 ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) |
856 ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA);
857}
858
Tejun Heoc0489e42006-03-24 14:07:49 +0900859/**
860 * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks
861 * @xfer_mask: xfer_mask to unpack
862 * @pio_mask: resulting pio_mask
863 * @mwdma_mask: resulting mwdma_mask
864 * @udma_mask: resulting udma_mask
865 *
866 * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask.
867 * Any NULL distination masks will be ignored.
868 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900869void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask,
870 unsigned long *mwdma_mask, unsigned long *udma_mask)
Tejun Heoc0489e42006-03-24 14:07:49 +0900871{
872 if (pio_mask)
873 *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO;
874 if (mwdma_mask)
875 *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA;
876 if (udma_mask)
877 *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA;
878}
879
Tejun Heocb95d562006-03-06 04:31:56 +0900880static const struct ata_xfer_ent {
Tejun Heobe9a50c2006-03-31 22:48:52 +0900881 int shift, bits;
Tejun Heocb95d562006-03-06 04:31:56 +0900882 u8 base;
883} ata_xfer_tbl[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +0900884 { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 },
885 { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 },
886 { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 },
Tejun Heocb95d562006-03-06 04:31:56 +0900887 { -1, },
888};
889
890/**
891 * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask
892 * @xfer_mask: xfer_mask of interest
893 *
894 * Return matching XFER_* value for @xfer_mask. Only the highest
895 * bit of @xfer_mask is considered.
896 *
897 * LOCKING:
898 * None.
899 *
900 * RETURNS:
Tejun Heo70cd0712007-11-27 19:43:40 +0900901 * Matching XFER_* value, 0xff if no match found.
Tejun Heocb95d562006-03-06 04:31:56 +0900902 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900903u8 ata_xfer_mask2mode(unsigned long xfer_mask)
Tejun Heocb95d562006-03-06 04:31:56 +0900904{
905 int highbit = fls(xfer_mask) - 1;
906 const struct ata_xfer_ent *ent;
907
908 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
909 if (highbit >= ent->shift && highbit < ent->shift + ent->bits)
910 return ent->base + highbit - ent->shift;
Tejun Heo70cd0712007-11-27 19:43:40 +0900911 return 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +0900912}
913
914/**
915 * ata_xfer_mode2mask - Find matching xfer_mask for XFER_*
916 * @xfer_mode: XFER_* of interest
917 *
918 * Return matching xfer_mask for @xfer_mode.
919 *
920 * LOCKING:
921 * None.
922 *
923 * RETURNS:
924 * Matching xfer_mask, 0 if no match found.
925 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900926unsigned long ata_xfer_mode2mask(u8 xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900927{
928 const struct ata_xfer_ent *ent;
929
930 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
931 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
Tejun Heo70cd0712007-11-27 19:43:40 +0900932 return ((2 << (ent->shift + xfer_mode - ent->base)) - 1)
933 & ~((1 << ent->shift) - 1);
Tejun Heocb95d562006-03-06 04:31:56 +0900934 return 0;
935}
936
937/**
938 * ata_xfer_mode2shift - Find matching xfer_shift for XFER_*
939 * @xfer_mode: XFER_* of interest
940 *
941 * Return matching xfer_shift for @xfer_mode.
942 *
943 * LOCKING:
944 * None.
945 *
946 * RETURNS:
947 * Matching xfer_shift, -1 if no match found.
948 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900949int ata_xfer_mode2shift(unsigned long xfer_mode)
Tejun Heocb95d562006-03-06 04:31:56 +0900950{
951 const struct ata_xfer_ent *ent;
952
953 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
954 if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits)
955 return ent->shift;
956 return -1;
957}
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959/**
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900960 * ata_mode_string - convert xfer_mask to string
961 * @xfer_mask: mask of bits supported; only highest bit counts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 *
963 * Determine string which represents the highest speed
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900964 * (highest bit in @modemask).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 *
966 * LOCKING:
967 * None.
968 *
969 * RETURNS:
970 * Constant C string representing highest speed listed in
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900971 * @mode_mask, or the constant C string "<n/a>".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 */
Tejun Heo7dc951a2007-11-27 19:43:42 +0900973const char *ata_mode_string(unsigned long xfer_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Tejun Heo75f554b2006-03-06 04:31:57 +0900975 static const char * const xfer_mode_str[] = {
976 "PIO0",
977 "PIO1",
978 "PIO2",
979 "PIO3",
980 "PIO4",
Alan Coxb352e572006-08-10 18:52:12 +0100981 "PIO5",
982 "PIO6",
Tejun Heo75f554b2006-03-06 04:31:57 +0900983 "MWDMA0",
984 "MWDMA1",
985 "MWDMA2",
Alan Coxb352e572006-08-10 18:52:12 +0100986 "MWDMA3",
987 "MWDMA4",
Tejun Heo75f554b2006-03-06 04:31:57 +0900988 "UDMA/16",
989 "UDMA/25",
990 "UDMA/33",
991 "UDMA/44",
992 "UDMA/66",
993 "UDMA/100",
994 "UDMA/133",
995 "UDMA7",
996 };
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900997 int highbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Tejun Heo1da7b0d2006-03-06 04:31:56 +0900999 highbit = fls(xfer_mask) - 1;
1000 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str))
1001 return xfer_mode_str[highbit];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 return "<n/a>";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Tejun Heo4c360c82006-04-01 01:38:17 +09001005static const char *sata_spd_string(unsigned int spd)
1006{
1007 static const char * const spd_str[] = {
1008 "1.5 Gbps",
1009 "3.0 Gbps",
Shane Huang8522ee22008-12-30 11:00:37 +08001010 "6.0 Gbps",
Tejun Heo4c360c82006-04-01 01:38:17 +09001011 };
1012
1013 if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))
1014 return "<unknown>";
1015 return spd_str[spd - 1];
1016}
1017
Tejun Heo3373efd2006-05-15 20:57:53 +09001018void ata_dev_disable(struct ata_device *dev)
Tejun Heo0b8efb02006-03-24 15:25:31 +09001019{
Tejun Heo09d7f9b2007-06-25 23:34:02 +09001020 if (ata_dev_enabled(dev)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001021 if (ata_msg_drv(dev->link->ap))
Tejun Heo09d7f9b2007-06-25 23:34:02 +09001022 ata_dev_printk(dev, KERN_WARNING, "disabled\n");
Tejun Heo562f0c22007-12-15 15:05:01 +09001023 ata_acpi_on_disable(dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09001024 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 |
1025 ATA_DNXFER_QUIET);
Tejun Heo0b8efb02006-03-24 15:25:31 +09001026 dev->class++;
1027 }
1028}
1029
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001030static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy)
1031{
1032 struct ata_link *link = dev->link;
1033 struct ata_port *ap = link->ap;
1034 u32 scontrol;
1035 unsigned int err_mask;
1036 int rc;
1037
1038 /*
1039 * disallow DIPM for drivers which haven't set
1040 * ATA_FLAG_IPM. This is because when DIPM is enabled,
1041 * phy ready will be set in the interrupt status on
1042 * state changes, which will cause some drivers to
1043 * think there are errors - additionally drivers will
1044 * need to disable hot plug.
1045 */
1046 if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) {
1047 ap->pm_policy = NOT_AVAILABLE;
1048 return -EINVAL;
1049 }
1050
1051 /*
1052 * For DIPM, we will only enable it for the
1053 * min_power setting.
1054 *
1055 * Why? Because Disks are too stupid to know that
1056 * If the host rejects a request to go to SLUMBER
1057 * they should retry at PARTIAL, and instead it
1058 * just would give up. So, for medium_power to
1059 * work at all, we need to only allow HIPM.
1060 */
1061 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
1062 if (rc)
1063 return rc;
1064
1065 switch (policy) {
1066 case MIN_POWER:
1067 /* no restrictions on IPM transitions */
1068 scontrol &= ~(0x3 << 8);
1069 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
1070 if (rc)
1071 return rc;
1072
1073 /* enable DIPM */
1074 if (dev->flags & ATA_DFLAG_DIPM)
1075 err_mask = ata_dev_set_feature(dev,
1076 SETFEATURES_SATA_ENABLE, SATA_DIPM);
1077 break;
1078 case MEDIUM_POWER:
1079 /* allow IPM to PARTIAL */
1080 scontrol &= ~(0x1 << 8);
1081 scontrol |= (0x2 << 8);
1082 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
1083 if (rc)
1084 return rc;
1085
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -07001086 /*
1087 * we don't have to disable DIPM since IPM flags
1088 * disallow transitions to SLUMBER, which effectively
1089 * disable DIPM if it does not support PARTIAL
1090 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001091 break;
1092 case NOT_AVAILABLE:
1093 case MAX_PERFORMANCE:
1094 /* disable all IPM transitions */
1095 scontrol |= (0x3 << 8);
1096 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
1097 if (rc)
1098 return rc;
1099
Kristen Carlson Accardif5456b62007-11-02 16:37:08 -07001100 /*
1101 * we don't have to disable DIPM since IPM flags
1102 * disallow all transitions which effectively
1103 * disable DIPM anyway.
1104 */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001105 break;
1106 }
1107
1108 /* FIXME: handle SET FEATURES failure */
1109 (void) err_mask;
1110
1111 return 0;
1112}
1113
1114/**
1115 * ata_dev_enable_pm - enable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001116 * @dev: device to enable power management
1117 * @policy: the link power management policy
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001118 *
1119 * Enable SATA Interface power management. This will enable
1120 * Device Interface Power Management (DIPM) for min_power
1121 * policy, and then call driver specific callbacks for
1122 * enabling Host Initiated Power management.
1123 *
1124 * Locking: Caller.
1125 * Returns: -EINVAL if IPM is not supported, 0 otherwise.
1126 */
1127void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy)
1128{
1129 int rc = 0;
1130 struct ata_port *ap = dev->link->ap;
1131
1132 /* set HIPM first, then DIPM */
1133 if (ap->ops->enable_pm)
1134 rc = ap->ops->enable_pm(ap, policy);
1135 if (rc)
1136 goto enable_pm_out;
1137 rc = ata_dev_set_dipm(dev, policy);
1138
1139enable_pm_out:
1140 if (rc)
1141 ap->pm_policy = MAX_PERFORMANCE;
1142 else
1143 ap->pm_policy = policy;
1144 return /* rc */; /* hopefully we can use 'rc' eventually */
1145}
1146
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001147#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001148/**
1149 * ata_dev_disable_pm - disable SATA interface power management
Stephen Hemminger48166fd2007-10-31 10:00:27 -07001150 * @dev: device to disable power management
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001151 *
1152 * Disable SATA Interface power management. This will disable
1153 * Device Interface Power Management (DIPM) without changing
1154 * policy, call driver specific callbacks for disabling Host
1155 * Initiated Power management.
1156 *
1157 * Locking: Caller.
1158 * Returns: void
1159 */
1160static void ata_dev_disable_pm(struct ata_device *dev)
1161{
1162 struct ata_port *ap = dev->link->ap;
1163
1164 ata_dev_set_dipm(dev, MAX_PERFORMANCE);
1165 if (ap->ops->disable_pm)
1166 ap->ops->disable_pm(ap);
1167}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001168#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001169
1170void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy)
1171{
1172 ap->pm_policy = policy;
Tejun Heo3ec25eb2008-03-27 18:37:14 +09001173 ap->link.eh_info.action |= ATA_EH_LPM;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001174 ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY;
1175 ata_port_schedule_eh(ap);
1176}
1177
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001178#ifdef CONFIG_PM
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001179static void ata_lpm_enable(struct ata_host *host)
1180{
1181 struct ata_link *link;
1182 struct ata_port *ap;
1183 struct ata_device *dev;
1184 int i;
1185
1186 for (i = 0; i < host->n_ports; i++) {
1187 ap = host->ports[i];
Tejun Heo1eca4362008-11-03 20:03:17 +09001188 ata_for_each_link(link, ap, EDGE) {
1189 ata_for_each_dev(dev, link, ALL)
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001190 ata_dev_disable_pm(dev);
1191 }
1192 }
1193}
1194
1195static void ata_lpm_disable(struct ata_host *host)
1196{
1197 int i;
1198
1199 for (i = 0; i < host->n_ports; i++) {
1200 struct ata_port *ap = host->ports[i];
1201 ata_lpm_schedule(ap, ap->pm_policy);
1202 }
1203}
Stephen Rothwell1992a5e2007-10-31 14:53:32 +11001204#endif /* CONFIG_PM */
Kristen Carlson Accardica773292007-10-25 00:58:59 -04001205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206/**
1207 * ata_dev_classify - determine device type based on ATA-spec signature
1208 * @tf: ATA taskfile register set for device to be identified
1209 *
1210 * Determine from taskfile register contents whether a device is
1211 * ATA or ATAPI, as per "Signature and persistence" section
1212 * of ATA/PI spec (volume 1, sect 5.14).
1213 *
1214 * LOCKING:
1215 * None.
1216 *
1217 * RETURNS:
Tejun Heo633273a32007-09-23 13:19:54 +09001218 * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or
1219 * %ATA_DEV_UNKNOWN the event of failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 */
Jeff Garzik057ace52005-10-22 14:27:05 -04001221unsigned int ata_dev_classify(const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
1223 /* Apple's open source Darwin code hints that some devices only
1224 * put a proper signature into the LBA mid/high registers,
1225 * So, we only check those. It's sufficient for uniqueness.
Tejun Heo633273a32007-09-23 13:19:54 +09001226 *
1227 * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate
1228 * signatures for ATA and ATAPI devices attached on SerialATA,
1229 * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA
1230 * spec has never mentioned about using different signatures
1231 * for ATA/ATAPI devices. Then, Serial ATA II: Port
1232 * Multiplier specification began to use 0x69/0x96 to identify
1233 * port multpliers and 0x3c/0xc3 to identify SEMB device.
1234 * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and
1235 * 0x69/0x96 shortly and described them as reserved for
1236 * SerialATA.
1237 *
1238 * We follow the current spec and consider that 0x69/0x96
1239 * identifies a port multiplier and 0x3c/0xc3 a SEMB device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 */
Tejun Heo633273a32007-09-23 13:19:54 +09001241 if ((tf->lbam == 0) && (tf->lbah == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 DPRINTK("found ATA device by sig\n");
1243 return ATA_DEV_ATA;
1244 }
1245
Tejun Heo633273a32007-09-23 13:19:54 +09001246 if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 DPRINTK("found ATAPI device by sig\n");
1248 return ATA_DEV_ATAPI;
1249 }
1250
Tejun Heo633273a32007-09-23 13:19:54 +09001251 if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) {
1252 DPRINTK("found PMP device by sig\n");
1253 return ATA_DEV_PMP;
1254 }
1255
1256 if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001257 printk(KERN_INFO "ata: SEMB device ignored\n");
Tejun Heo633273a32007-09-23 13:19:54 +09001258 return ATA_DEV_SEMB_UNSUP; /* not yet */
1259 }
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 DPRINTK("unknown device\n");
1262 return ATA_DEV_UNKNOWN;
1263}
1264
1265/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001266 * ata_id_string - Convert IDENTIFY DEVICE page into string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 * @id: IDENTIFY DEVICE results we will examine
1268 * @s: string into which data is output
1269 * @ofs: offset into identify device page
1270 * @len: length of string to return. must be an even number.
1271 *
1272 * The strings in the IDENTIFY DEVICE page are broken up into
1273 * 16-bit chunks. Run through the string, and output each
1274 * 8-bit chunk linearly, regardless of platform.
1275 *
1276 * LOCKING:
1277 * caller.
1278 */
1279
Tejun Heo6a62a042006-02-13 10:02:46 +09001280void ata_id_string(const u16 *id, unsigned char *s,
1281 unsigned int ofs, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 unsigned int c;
1284
Alan Cox963e4972008-07-24 17:16:06 +01001285 BUG_ON(len & 1);
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 while (len > 0) {
1288 c = id[ofs] >> 8;
1289 *s = c;
1290 s++;
1291
1292 c = id[ofs] & 0xff;
1293 *s = c;
1294 s++;
1295
1296 ofs++;
1297 len -= 2;
1298 }
1299}
1300
Tejun Heo0e949ff2006-02-12 22:47:04 +09001301/**
Tejun Heo6a62a042006-02-13 10:02:46 +09001302 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
Tejun Heo0e949ff2006-02-12 22:47:04 +09001303 * @id: IDENTIFY DEVICE results we will examine
1304 * @s: string into which data is output
1305 * @ofs: offset into identify device page
1306 * @len: length of string to return. must be an odd number.
1307 *
Tejun Heo6a62a042006-02-13 10:02:46 +09001308 * This function is identical to ata_id_string except that it
Tejun Heo0e949ff2006-02-12 22:47:04 +09001309 * trims trailing spaces and terminates the resulting string with
1310 * null. @len must be actual maximum length (even number) + 1.
1311 *
1312 * LOCKING:
1313 * caller.
1314 */
Tejun Heo6a62a042006-02-13 10:02:46 +09001315void ata_id_c_string(const u16 *id, unsigned char *s,
1316 unsigned int ofs, unsigned int len)
Tejun Heo0e949ff2006-02-12 22:47:04 +09001317{
1318 unsigned char *p;
1319
Tejun Heo6a62a042006-02-13 10:02:46 +09001320 ata_id_string(id, s, ofs, len - 1);
Tejun Heo0e949ff2006-02-12 22:47:04 +09001321
1322 p = s + strnlen(s, len - 1);
1323 while (p > s && p[-1] == ' ')
1324 p--;
1325 *p = '\0';
1326}
Edward Falk0baab862005-06-02 18:17:13 -04001327
Tejun Heodb6f8752007-09-03 12:31:58 +09001328static u64 ata_id_n_sectors(const u16 *id)
1329{
1330 if (ata_id_has_lba(id)) {
1331 if (ata_id_has_lba48(id))
1332 return ata_id_u64(id, 100);
1333 else
1334 return ata_id_u32(id, 60);
1335 } else {
1336 if (ata_id_current_chs_valid(id))
1337 return ata_id_u32(id, 57);
1338 else
1339 return id[1] * id[3] * id[6];
1340 }
1341}
1342
Tejun Heoa5987e02008-03-27 19:14:23 +09001343u64 ata_tf_to_lba48(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001344{
1345 u64 sectors = 0;
1346
1347 sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40;
1348 sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32;
Roland Dreierba14a9c2008-10-28 16:52:20 -07001349 sectors |= ((u64)(tf->hob_lbal & 0xff)) << 24;
Alan Cox1e999732007-04-11 00:23:13 +01001350 sectors |= (tf->lbah & 0xff) << 16;
1351 sectors |= (tf->lbam & 0xff) << 8;
1352 sectors |= (tf->lbal & 0xff);
1353
Tejun Heoa5987e02008-03-27 19:14:23 +09001354 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001355}
1356
Tejun Heoa5987e02008-03-27 19:14:23 +09001357u64 ata_tf_to_lba(const struct ata_taskfile *tf)
Alan Cox1e999732007-04-11 00:23:13 +01001358{
1359 u64 sectors = 0;
1360
1361 sectors |= (tf->device & 0x0f) << 24;
1362 sectors |= (tf->lbah & 0xff) << 16;
1363 sectors |= (tf->lbam & 0xff) << 8;
1364 sectors |= (tf->lbal & 0xff);
1365
Tejun Heoa5987e02008-03-27 19:14:23 +09001366 return sectors;
Alan Cox1e999732007-04-11 00:23:13 +01001367}
1368
1369/**
Tejun Heoc728a912007-09-03 12:32:30 +09001370 * ata_read_native_max_address - Read native max address
1371 * @dev: target device
1372 * @max_sectors: out parameter for the result native max address
Alan Cox1e999732007-04-11 00:23:13 +01001373 *
Tejun Heoc728a912007-09-03 12:32:30 +09001374 * Perform an LBA48 or LBA28 native size query upon the device in
1375 * question.
1376 *
1377 * RETURNS:
1378 * 0 on success, -EACCES if command is aborted by the drive.
1379 * -EIO on other errors.
Alan Cox1e999732007-04-11 00:23:13 +01001380 */
Tejun Heoc728a912007-09-03 12:32:30 +09001381static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001382{
Tejun Heoc728a912007-09-03 12:32:30 +09001383 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001384 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001385 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001386
1387 ata_tf_init(dev, &tf);
1388
Tejun Heoc728a912007-09-03 12:32:30 +09001389 /* always clear all address registers */
Alan Cox1e999732007-04-11 00:23:13 +01001390 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001391
1392 if (lba48) {
1393 tf.command = ATA_CMD_READ_NATIVE_MAX_EXT;
1394 tf.flags |= ATA_TFLAG_LBA48;
1395 } else
1396 tf.command = ATA_CMD_READ_NATIVE_MAX;
1397
Alan Cox1e999732007-04-11 00:23:13 +01001398 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001399 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001400
Tejun Heo2b789102007-10-09 15:05:44 +09001401 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001402 if (err_mask) {
1403 ata_dev_printk(dev, KERN_WARNING, "failed to read native "
1404 "max address (err_mask=0x%x)\n", err_mask);
1405 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
1406 return -EACCES;
1407 return -EIO;
1408 }
Alan Cox1e999732007-04-11 00:23:13 +01001409
Tejun Heoc728a912007-09-03 12:32:30 +09001410 if (lba48)
Tejun Heoa5987e02008-03-27 19:14:23 +09001411 *max_sectors = ata_tf_to_lba48(&tf) + 1;
Tejun Heoc728a912007-09-03 12:32:30 +09001412 else
Tejun Heoa5987e02008-03-27 19:14:23 +09001413 *max_sectors = ata_tf_to_lba(&tf) + 1;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001414 if (dev->horkage & ATA_HORKAGE_HPA_SIZE)
Alan Cox93328e12007-09-29 04:06:48 -04001415 (*max_sectors)--;
Tejun Heoc728a912007-09-03 12:32:30 +09001416 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001417}
1418
1419/**
Tejun Heoc728a912007-09-03 12:32:30 +09001420 * ata_set_max_sectors - Set max sectors
1421 * @dev: target device
Randy Dunlap6b38d1d2007-05-01 17:35:55 -07001422 * @new_sectors: new max sectors value to set for the device
Alan Cox1e999732007-04-11 00:23:13 +01001423 *
Tejun Heoc728a912007-09-03 12:32:30 +09001424 * Set max sectors of @dev to @new_sectors.
1425 *
1426 * RETURNS:
1427 * 0 on success, -EACCES if command is aborted or denied (due to
1428 * previous non-volatile SET_MAX) by the drive. -EIO on other
1429 * errors.
Alan Cox1e999732007-04-11 00:23:13 +01001430 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001431static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors)
Alan Cox1e999732007-04-11 00:23:13 +01001432{
Tejun Heoc728a912007-09-03 12:32:30 +09001433 unsigned int err_mask;
Alan Cox1e999732007-04-11 00:23:13 +01001434 struct ata_taskfile tf;
Tejun Heoc728a912007-09-03 12:32:30 +09001435 int lba48 = ata_id_has_lba48(dev->id);
Alan Cox1e999732007-04-11 00:23:13 +01001436
1437 new_sectors--;
1438
1439 ata_tf_init(dev, &tf);
1440
Alan Cox1e999732007-04-11 00:23:13 +01001441 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
Tejun Heoc728a912007-09-03 12:32:30 +09001442
1443 if (lba48) {
1444 tf.command = ATA_CMD_SET_MAX_EXT;
1445 tf.flags |= ATA_TFLAG_LBA48;
1446
1447 tf.hob_lbal = (new_sectors >> 24) & 0xff;
1448 tf.hob_lbam = (new_sectors >> 32) & 0xff;
1449 tf.hob_lbah = (new_sectors >> 40) & 0xff;
Tejun Heo1e582ba2007-09-21 20:07:14 +09001450 } else {
Tejun Heoc728a912007-09-03 12:32:30 +09001451 tf.command = ATA_CMD_SET_MAX;
1452
Tejun Heo1e582ba2007-09-21 20:07:14 +09001453 tf.device |= (new_sectors >> 24) & 0xf;
1454 }
1455
Alan Cox1e999732007-04-11 00:23:13 +01001456 tf.protocol |= ATA_PROT_NODATA;
Tejun Heoc728a912007-09-03 12:32:30 +09001457 tf.device |= ATA_LBA;
Alan Cox1e999732007-04-11 00:23:13 +01001458
1459 tf.lbal = (new_sectors >> 0) & 0xff;
1460 tf.lbam = (new_sectors >> 8) & 0xff;
1461 tf.lbah = (new_sectors >> 16) & 0xff;
Alan Cox1e999732007-04-11 00:23:13 +01001462
Tejun Heo2b789102007-10-09 15:05:44 +09001463 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoc728a912007-09-03 12:32:30 +09001464 if (err_mask) {
1465 ata_dev_printk(dev, KERN_WARNING, "failed to set "
1466 "max address (err_mask=0x%x)\n", err_mask);
1467 if (err_mask == AC_ERR_DEV &&
1468 (tf.feature & (ATA_ABORTED | ATA_IDNF)))
1469 return -EACCES;
1470 return -EIO;
1471 }
Alan Cox1e999732007-04-11 00:23:13 +01001472
Tejun Heoc728a912007-09-03 12:32:30 +09001473 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001474}
1475
1476/**
1477 * ata_hpa_resize - Resize a device with an HPA set
1478 * @dev: Device to resize
1479 *
1480 * Read the size of an LBA28 or LBA48 disk with HPA features and resize
1481 * it if required to the full size of the media. The caller must check
1482 * the drive has the HPA feature set enabled.
Tejun Heo05027ad2007-09-03 12:32:57 +09001483 *
1484 * RETURNS:
1485 * 0 on success, -errno on failure.
Alan Cox1e999732007-04-11 00:23:13 +01001486 */
Tejun Heo05027ad2007-09-03 12:32:57 +09001487static int ata_hpa_resize(struct ata_device *dev)
Alan Cox1e999732007-04-11 00:23:13 +01001488{
Tejun Heo05027ad2007-09-03 12:32:57 +09001489 struct ata_eh_context *ehc = &dev->link->eh_context;
1490 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
1491 u64 sectors = ata_id_n_sectors(dev->id);
1492 u64 native_sectors;
Tejun Heoc728a912007-09-03 12:32:30 +09001493 int rc;
Jeff Garzika617c092007-05-21 20:14:23 -04001494
Tejun Heo05027ad2007-09-03 12:32:57 +09001495 /* do we need to do it? */
1496 if (dev->class != ATA_DEV_ATA ||
1497 !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) ||
1498 (dev->horkage & ATA_HORKAGE_BROKEN_HPA))
Tejun Heoc728a912007-09-03 12:32:30 +09001499 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001500
Tejun Heo05027ad2007-09-03 12:32:57 +09001501 /* read native max address */
1502 rc = ata_read_native_max_address(dev, &native_sectors);
1503 if (rc) {
Tejun Heodda7aba2008-03-23 21:05:15 +09001504 /* If device aborted the command or HPA isn't going to
1505 * be unlocked, skip HPA resizing.
Tejun Heo05027ad2007-09-03 12:32:57 +09001506 */
Tejun Heodda7aba2008-03-23 21:05:15 +09001507 if (rc == -EACCES || !ata_ignore_hpa) {
Tejun Heo05027ad2007-09-03 12:32:57 +09001508 ata_dev_printk(dev, KERN_WARNING, "HPA support seems "
Tejun Heodda7aba2008-03-23 21:05:15 +09001509 "broken, skipping HPA handling\n");
Tejun Heo05027ad2007-09-03 12:32:57 +09001510 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
Alan Cox1e999732007-04-11 00:23:13 +01001511
Tejun Heo05027ad2007-09-03 12:32:57 +09001512 /* we can continue if device aborted the command */
1513 if (rc == -EACCES)
1514 rc = 0;
Alan Cox1e999732007-04-11 00:23:13 +01001515 }
Tejun Heo37301a52007-06-25 20:45:54 +09001516
Tejun Heo05027ad2007-09-03 12:32:57 +09001517 return rc;
1518 }
1519
1520 /* nothing to do? */
1521 if (native_sectors <= sectors || !ata_ignore_hpa) {
1522 if (!print_info || native_sectors == sectors)
1523 return 0;
1524
1525 if (native_sectors > sectors)
1526 ata_dev_printk(dev, KERN_INFO,
1527 "HPA detected: current %llu, native %llu\n",
1528 (unsigned long long)sectors,
1529 (unsigned long long)native_sectors);
1530 else if (native_sectors < sectors)
1531 ata_dev_printk(dev, KERN_WARNING,
1532 "native sectors (%llu) is smaller than "
1533 "sectors (%llu)\n",
1534 (unsigned long long)native_sectors,
1535 (unsigned long long)sectors);
1536 return 0;
1537 }
1538
1539 /* let's unlock HPA */
1540 rc = ata_set_max_sectors(dev, native_sectors);
1541 if (rc == -EACCES) {
1542 /* if device aborted the command, skip HPA resizing */
1543 ata_dev_printk(dev, KERN_WARNING, "device aborted resize "
1544 "(%llu -> %llu), skipping HPA handling\n",
1545 (unsigned long long)sectors,
1546 (unsigned long long)native_sectors);
1547 dev->horkage |= ATA_HORKAGE_BROKEN_HPA;
1548 return 0;
1549 } else if (rc)
1550 return rc;
1551
1552 /* re-read IDENTIFY data */
1553 rc = ata_dev_reread_id(dev, 0);
1554 if (rc) {
1555 ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY "
1556 "data after HPA resizing\n");
1557 return rc;
1558 }
1559
1560 if (print_info) {
1561 u64 new_sectors = ata_id_n_sectors(dev->id);
1562 ata_dev_printk(dev, KERN_INFO,
1563 "HPA unlocked: %llu -> %llu, native %llu\n",
1564 (unsigned long long)sectors,
1565 (unsigned long long)new_sectors,
1566 (unsigned long long)native_sectors);
1567 }
1568
1569 return 0;
Alan Cox1e999732007-04-11 00:23:13 +01001570}
1571
Edward Falk0baab862005-06-02 18:17:13 -04001572/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 * ata_dump_id - IDENTIFY DEVICE info debugging output
Tejun Heo0bd33002006-02-12 22:47:05 +09001574 * @id: IDENTIFY DEVICE page to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 *
Tejun Heo0bd33002006-02-12 22:47:05 +09001576 * Dump selected 16-bit words from the given IDENTIFY DEVICE
1577 * page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 *
1579 * LOCKING:
1580 * caller.
1581 */
1582
Tejun Heo0bd33002006-02-12 22:47:05 +09001583static inline void ata_dump_id(const u16 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
1585 DPRINTK("49==0x%04x "
1586 "53==0x%04x "
1587 "63==0x%04x "
1588 "64==0x%04x "
1589 "75==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001590 id[49],
1591 id[53],
1592 id[63],
1593 id[64],
1594 id[75]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 DPRINTK("80==0x%04x "
1596 "81==0x%04x "
1597 "82==0x%04x "
1598 "83==0x%04x "
1599 "84==0x%04x \n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001600 id[80],
1601 id[81],
1602 id[82],
1603 id[83],
1604 id[84]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 DPRINTK("88==0x%04x "
1606 "93==0x%04x\n",
Tejun Heo0bd33002006-02-12 22:47:05 +09001607 id[88],
1608 id[93]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
1610
Tejun Heocb95d562006-03-06 04:31:56 +09001611/**
1612 * ata_id_xfermask - Compute xfermask from the given IDENTIFY data
1613 * @id: IDENTIFY data to compute xfer mask from
1614 *
1615 * Compute the xfermask for this device. This is not as trivial
1616 * as it seems if we must consider early devices correctly.
1617 *
1618 * FIXME: pre IDE drive timing (do we care ?).
1619 *
1620 * LOCKING:
1621 * None.
1622 *
1623 * RETURNS:
1624 * Computed xfermask
1625 */
Tejun Heo7dc951a2007-11-27 19:43:42 +09001626unsigned long ata_id_xfermask(const u16 *id)
Tejun Heocb95d562006-03-06 04:31:56 +09001627{
Tejun Heo7dc951a2007-11-27 19:43:42 +09001628 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heocb95d562006-03-06 04:31:56 +09001629
1630 /* Usual case. Word 53 indicates word 64 is valid */
1631 if (id[ATA_ID_FIELD_VALID] & (1 << 1)) {
1632 pio_mask = id[ATA_ID_PIO_MODES] & 0x03;
1633 pio_mask <<= 3;
1634 pio_mask |= 0x7;
1635 } else {
1636 /* If word 64 isn't valid then Word 51 high byte holds
1637 * the PIO timing number for the maximum. Turn it into
1638 * a mask.
1639 */
Lennert Buytenhek7a0f1c82007-01-29 13:28:47 +01001640 u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF;
Alan Cox46767aeb2006-09-29 18:26:47 +01001641 if (mode < 5) /* Valid PIO range */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001642 pio_mask = (2 << mode) - 1;
Alan Cox46767aeb2006-09-29 18:26:47 +01001643 else
1644 pio_mask = 1;
Tejun Heocb95d562006-03-06 04:31:56 +09001645
1646 /* But wait.. there's more. Design your standards by
1647 * committee and you too can get a free iordy field to
1648 * process. However its the speeds not the modes that
1649 * are supported... Note drivers using the timing API
1650 * will get this right anyway
1651 */
1652 }
1653
1654 mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07;
Tejun Heofb21f0d2006-03-12 12:34:35 +09001655
Alan Coxb352e572006-08-10 18:52:12 +01001656 if (ata_id_is_cfa(id)) {
1657 /*
1658 * Process compact flash extended modes
1659 */
1660 int pio = id[163] & 0x7;
1661 int dma = (id[163] >> 3) & 7;
1662
1663 if (pio)
1664 pio_mask |= (1 << 5);
1665 if (pio > 1)
1666 pio_mask |= (1 << 6);
1667 if (dma)
1668 mwdma_mask |= (1 << 3);
1669 if (dma > 1)
1670 mwdma_mask |= (1 << 4);
1671 }
1672
Tejun Heofb21f0d2006-03-12 12:34:35 +09001673 udma_mask = 0;
1674 if (id[ATA_ID_FIELD_VALID] & (1 << 2))
1675 udma_mask = id[ATA_ID_UDMA_MODES] & 0xff;
Tejun Heocb95d562006-03-06 04:31:56 +09001676
1677 return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
1678}
1679
Tejun Heo86e45b62006-03-05 15:29:09 +09001680/**
Jeff Garzik442eacc2007-12-19 04:25:10 -05001681 * ata_pio_queue_task - Queue port_task
Tejun Heo86e45b62006-03-05 15:29:09 +09001682 * @ap: The ata_port to queue port_task for
David Howells65f27f32006-11-22 14:55:48 +00001683 * @data: data for @fn to use
Tejun Heo341c2c92008-05-20 02:17:51 +09001684 * @delay: delay time in msecs for workqueue function
Tejun Heo86e45b62006-03-05 15:29:09 +09001685 *
1686 * Schedule @fn(@data) for execution after @delay jiffies using
1687 * port_task. There is one port_task per port and it's the
1688 * user(low level driver)'s responsibility to make sure that only
1689 * one task is active at any given time.
1690 *
1691 * libata core layer takes care of synchronization between
Jeff Garzik442eacc2007-12-19 04:25:10 -05001692 * port_task and EH. ata_pio_queue_task() may be ignored for EH
Tejun Heo86e45b62006-03-05 15:29:09 +09001693 * synchronization.
1694 *
1695 * LOCKING:
1696 * Inherited from caller.
1697 */
Tejun Heo624d5c52008-03-25 22:16:41 +09001698void ata_pio_queue_task(struct ata_port *ap, void *data, unsigned long delay)
Tejun Heo86e45b62006-03-05 15:29:09 +09001699{
David Howells65f27f32006-11-22 14:55:48 +00001700 ap->port_task_data = data;
Tejun Heo86e45b62006-03-05 15:29:09 +09001701
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001702 /* may fail if ata_port_flush_task() in progress */
Tejun Heo341c2c92008-05-20 02:17:51 +09001703 queue_delayed_work(ata_wq, &ap->port_task, msecs_to_jiffies(delay));
Tejun Heo86e45b62006-03-05 15:29:09 +09001704}
1705
1706/**
1707 * ata_port_flush_task - Flush port_task
1708 * @ap: The ata_port to flush port_task for
1709 *
1710 * After this function completes, port_task is guranteed not to
1711 * be running or scheduled.
1712 *
1713 * LOCKING:
1714 * Kernel thread context (may sleep)
1715 */
1716void ata_port_flush_task(struct ata_port *ap)
1717{
Tejun Heo86e45b62006-03-05 15:29:09 +09001718 DPRINTK("ENTER\n");
1719
Oleg Nesterov45a66c12007-07-09 11:46:13 -07001720 cancel_rearming_delayed_work(&ap->port_task);
Tejun Heo86e45b62006-03-05 15:29:09 +09001721
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001722 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08001723 ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__);
Tejun Heo86e45b62006-03-05 15:29:09 +09001724}
1725
Adrian Bunk7102d232007-01-04 00:09:36 +01001726static void ata_qc_complete_internal(struct ata_queued_cmd *qc)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001727{
Tejun Heo77853bf2006-01-23 13:09:36 +09001728 struct completion *waiting = qc->private_data;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001729
Tejun Heoa2a7a662005-12-13 14:48:31 +09001730 complete(waiting);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001731}
1732
1733/**
Tejun Heo24326972006-11-14 22:47:09 +09001734 * ata_exec_internal_sg - execute libata internal command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001735 * @dev: Device to which the command is sent
1736 * @tf: Taskfile registers for the command and the result
Tejun Heod69cf372006-04-02 18:51:53 +09001737 * @cdb: CDB for packet command
Tejun Heoa2a7a662005-12-13 14:48:31 +09001738 * @dma_dir: Data tranfer direction of the command
Randy Dunlap5c1ad8b2007-10-18 14:12:26 -07001739 * @sgl: sg list for the data buffer of the command
Tejun Heo24326972006-11-14 22:47:09 +09001740 * @n_elem: Number of sg entries
Tejun Heo2b789102007-10-09 15:05:44 +09001741 * @timeout: Timeout in msecs (0 for default)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001742 *
1743 * Executes libata internal command with timeout. @tf contains
1744 * command on entry and result on return. Timeout and error
1745 * conditions are reported via return value. No recovery action
1746 * is taken after a command times out. It's caller's duty to
1747 * clean up after timeout.
1748 *
1749 * LOCKING:
1750 * None. Should be called with kernel context, might sleep.
Tejun Heo551e8882006-06-12 14:09:49 +09001751 *
1752 * RETURNS:
1753 * Zero on success, AC_ERR_* mask on failure
Tejun Heoa2a7a662005-12-13 14:48:31 +09001754 */
Tejun Heo24326972006-11-14 22:47:09 +09001755unsigned ata_exec_internal_sg(struct ata_device *dev,
1756 struct ata_taskfile *tf, const u8 *cdb,
Jens Axboe87260212007-10-16 11:14:12 +02001757 int dma_dir, struct scatterlist *sgl,
Tejun Heo2b789102007-10-09 15:05:44 +09001758 unsigned int n_elem, unsigned long timeout)
Tejun Heoa2a7a662005-12-13 14:48:31 +09001759{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001760 struct ata_link *link = dev->link;
1761 struct ata_port *ap = link->ap;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001762 u8 command = tf->command;
Tejun Heo87fbc5a2008-05-20 02:17:54 +09001763 int auto_timeout = 0;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001764 struct ata_queued_cmd *qc;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001765 unsigned int tag, preempted_tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001766 u32 preempted_sactive, preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001767 int preempted_nr_active_links;
Ingo Molnar60be6b92006-07-03 00:25:26 -07001768 DECLARE_COMPLETION_ONSTACK(wait);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001769 unsigned long flags;
Tejun Heo77853bf2006-01-23 13:09:36 +09001770 unsigned int err_mask;
Tejun Heod95a7172006-05-15 20:58:14 +09001771 int rc;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001772
Jeff Garzikba6a1302006-06-22 23:46:10 -04001773 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001774
Tejun Heoe3180492006-05-15 20:58:09 +09001775 /* no internal command while frozen */
Tejun Heob51e9e52006-06-29 01:29:30 +09001776 if (ap->pflags & ATA_PFLAG_FROZEN) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001777 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoe3180492006-05-15 20:58:09 +09001778 return AC_ERR_SYSTEM;
1779 }
1780
Tejun Heo2ab7db12006-05-15 20:58:02 +09001781 /* initialize internal qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001782
Tejun Heo2ab7db12006-05-15 20:58:02 +09001783 /* XXX: Tag 0 is used for drivers with legacy EH as some
1784 * drivers choke if any other tag is given. This breaks
1785 * ata_tag_internal() test for those drivers. Don't use new
1786 * EH stuff without converting to it.
1787 */
1788 if (ap->ops->error_handler)
1789 tag = ATA_TAG_INTERNAL;
1790 else
1791 tag = 0;
1792
Tejun Heo8a8bc222008-11-10 14:48:21 +09001793 if (test_and_set_bit(tag, &ap->qc_allocated))
1794 BUG();
Tejun Heof69499f2006-05-15 20:58:03 +09001795 qc = __ata_qc_from_tag(ap, tag);
Tejun Heo2ab7db12006-05-15 20:58:02 +09001796
1797 qc->tag = tag;
1798 qc->scsicmd = NULL;
1799 qc->ap = ap;
1800 qc->dev = dev;
1801 ata_qc_reinit(qc);
1802
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001803 preempted_tag = link->active_tag;
1804 preempted_sactive = link->sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001805 preempted_qc_active = ap->qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001806 preempted_nr_active_links = ap->nr_active_links;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001807 link->active_tag = ATA_TAG_POISON;
1808 link->sactive = 0;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001809 ap->qc_active = 0;
Tejun Heoda917d62007-09-23 13:14:12 +09001810 ap->nr_active_links = 0;
Tejun Heo2ab7db12006-05-15 20:58:02 +09001811
1812 /* prepare & issue qc */
Tejun Heoa2a7a662005-12-13 14:48:31 +09001813 qc->tf = *tf;
Tejun Heod69cf372006-04-02 18:51:53 +09001814 if (cdb)
1815 memcpy(qc->cdb, cdb, ATAPI_CDB_LEN);
Tejun Heoe61e0672006-05-15 20:57:40 +09001816 qc->flags |= ATA_QCFLAG_RESULT_TF;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001817 qc->dma_dir = dma_dir;
1818 if (dma_dir != DMA_NONE) {
Tejun Heo24326972006-11-14 22:47:09 +09001819 unsigned int i, buflen = 0;
Jens Axboe87260212007-10-16 11:14:12 +02001820 struct scatterlist *sg;
Tejun Heo24326972006-11-14 22:47:09 +09001821
Jens Axboe87260212007-10-16 11:14:12 +02001822 for_each_sg(sgl, sg, n_elem, i)
1823 buflen += sg->length;
Tejun Heo24326972006-11-14 22:47:09 +09001824
Jens Axboe87260212007-10-16 11:14:12 +02001825 ata_sg_init(qc, sgl, n_elem);
Brian King49c80422007-01-30 11:32:26 -06001826 qc->nbytes = buflen;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001827 }
1828
Tejun Heo77853bf2006-01-23 13:09:36 +09001829 qc->private_data = &wait;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001830 qc->complete_fn = ata_qc_complete_internal;
1831
Tejun Heo8e0e6942006-03-31 20:41:11 +09001832 ata_qc_issue(qc);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001833
Jeff Garzikba6a1302006-06-22 23:46:10 -04001834 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001835
Tejun Heo87fbc5a2008-05-20 02:17:54 +09001836 if (!timeout) {
1837 if (ata_probe_timeout)
1838 timeout = ata_probe_timeout * 1000;
1839 else {
1840 timeout = ata_internal_cmd_timeout(dev, command);
1841 auto_timeout = 1;
1842 }
1843 }
Tejun Heo2b789102007-10-09 15:05:44 +09001844
1845 rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout));
Albert Lee41ade502006-03-14 11:19:04 +08001846
Tejun Heod95a7172006-05-15 20:58:14 +09001847 ata_port_flush_task(ap);
1848
1849 if (!rc) {
Jeff Garzikba6a1302006-06-22 23:46:10 -04001850 spin_lock_irqsave(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001851
1852 /* We're racing with irq here. If we lose, the
1853 * following test prevents us from completing the qc
Tejun Heod95a7172006-05-15 20:58:14 +09001854 * twice. If we win, the port is frozen and will be
1855 * cleaned up by ->post_internal_cmd().
Tejun Heoa2a7a662005-12-13 14:48:31 +09001856 */
Tejun Heo77853bf2006-01-23 13:09:36 +09001857 if (qc->flags & ATA_QCFLAG_ACTIVE) {
Tejun Heod95a7172006-05-15 20:58:14 +09001858 qc->err_mask |= AC_ERR_TIMEOUT;
1859
1860 if (ap->ops->error_handler)
1861 ata_port_freeze(ap);
1862 else
1863 ata_qc_complete(qc);
Tejun Heof15a1da2006-05-15 20:57:56 +09001864
Borislav Petkov0dd4b212006-06-23 02:29:08 -04001865 if (ata_msg_warn(ap))
1866 ata_dev_printk(dev, KERN_WARNING,
Tejun Heo88574552006-06-25 20:00:35 +09001867 "qc timeout (cmd 0x%x)\n", command);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001868 }
1869
Jeff Garzikba6a1302006-06-22 23:46:10 -04001870 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heoa2a7a662005-12-13 14:48:31 +09001871 }
1872
Tejun Heod95a7172006-05-15 20:58:14 +09001873 /* do post_internal_cmd */
1874 if (ap->ops->post_internal_cmd)
1875 ap->ops->post_internal_cmd(qc);
1876
Tejun Heoa51d6442007-03-20 15:24:11 +09001877 /* perform minimal error analysis */
1878 if (qc->flags & ATA_QCFLAG_FAILED) {
1879 if (qc->result_tf.command & (ATA_ERR | ATA_DF))
1880 qc->err_mask |= AC_ERR_DEV;
1881
1882 if (!qc->err_mask)
1883 qc->err_mask |= AC_ERR_OTHER;
1884
1885 if (qc->err_mask & ~AC_ERR_OTHER)
1886 qc->err_mask &= ~AC_ERR_OTHER;
Tejun Heod95a7172006-05-15 20:58:14 +09001887 }
1888
Tejun Heo15869302006-05-15 20:57:33 +09001889 /* finish up */
Jeff Garzikba6a1302006-06-22 23:46:10 -04001890 spin_lock_irqsave(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001891
Tejun Heoe61e0672006-05-15 20:57:40 +09001892 *tf = qc->result_tf;
Tejun Heo77853bf2006-01-23 13:09:36 +09001893 err_mask = qc->err_mask;
1894
1895 ata_qc_free(qc);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001896 link->active_tag = preempted_tag;
1897 link->sactive = preempted_sactive;
Tejun Heodedaf2b2006-05-15 21:03:43 +09001898 ap->qc_active = preempted_qc_active;
Tejun Heoda917d62007-09-23 13:14:12 +09001899 ap->nr_active_links = preempted_nr_active_links;
Tejun Heo77853bf2006-01-23 13:09:36 +09001900
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001901 /* XXX - Some LLDDs (sata_mv) disable port on command failure.
1902 * Until those drivers are fixed, we detect the condition
1903 * here, fail the command with AC_ERR_SYSTEM and reenable the
1904 * port.
1905 *
1906 * Note that this doesn't change any behavior as internal
1907 * command failure results in disabling the device in the
1908 * higher layer for LLDDs without new reset/EH callbacks.
1909 *
1910 * Kill the following code as soon as those drivers are fixed.
1911 */
Tejun Heo198e0fe2006-04-02 18:51:52 +09001912 if (ap->flags & ATA_FLAG_DISABLED) {
Tejun Heo1f7dd3e92006-03-24 15:25:30 +09001913 err_mask |= AC_ERR_SYSTEM;
1914 ata_port_probe(ap);
1915 }
1916
Jeff Garzikba6a1302006-06-22 23:46:10 -04001917 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo15869302006-05-15 20:57:33 +09001918
Tejun Heo87fbc5a2008-05-20 02:17:54 +09001919 if ((err_mask & AC_ERR_TIMEOUT) && auto_timeout)
1920 ata_internal_cmd_timed_out(dev, command);
1921
Tejun Heo77853bf2006-01-23 13:09:36 +09001922 return err_mask;
Tejun Heoa2a7a662005-12-13 14:48:31 +09001923}
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925/**
Tejun Heo33480a02006-12-12 02:15:31 +09001926 * ata_exec_internal - execute libata internal command
Tejun Heo24326972006-11-14 22:47:09 +09001927 * @dev: Device to which the command is sent
1928 * @tf: Taskfile registers for the command and the result
1929 * @cdb: CDB for packet command
1930 * @dma_dir: Data tranfer direction of the command
1931 * @buf: Data buffer of the command
1932 * @buflen: Length of data buffer
Tejun Heo2b789102007-10-09 15:05:44 +09001933 * @timeout: Timeout in msecs (0 for default)
Tejun Heo24326972006-11-14 22:47:09 +09001934 *
1935 * Wrapper around ata_exec_internal_sg() which takes simple
1936 * buffer instead of sg list.
1937 *
1938 * LOCKING:
1939 * None. Should be called with kernel context, might sleep.
1940 *
1941 * RETURNS:
1942 * Zero on success, AC_ERR_* mask on failure
1943 */
1944unsigned ata_exec_internal(struct ata_device *dev,
1945 struct ata_taskfile *tf, const u8 *cdb,
Tejun Heo2b789102007-10-09 15:05:44 +09001946 int dma_dir, void *buf, unsigned int buflen,
1947 unsigned long timeout)
Tejun Heo24326972006-11-14 22:47:09 +09001948{
Tejun Heo33480a02006-12-12 02:15:31 +09001949 struct scatterlist *psg = NULL, sg;
1950 unsigned int n_elem = 0;
Tejun Heo24326972006-11-14 22:47:09 +09001951
Tejun Heo33480a02006-12-12 02:15:31 +09001952 if (dma_dir != DMA_NONE) {
1953 WARN_ON(!buf);
1954 sg_init_one(&sg, buf, buflen);
1955 psg = &sg;
1956 n_elem++;
1957 }
Tejun Heo24326972006-11-14 22:47:09 +09001958
Tejun Heo2b789102007-10-09 15:05:44 +09001959 return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem,
1960 timeout);
Tejun Heo24326972006-11-14 22:47:09 +09001961}
1962
1963/**
Tejun Heo977e6b92006-06-24 20:30:19 +09001964 * ata_do_simple_cmd - execute simple internal command
1965 * @dev: Device to which the command is sent
1966 * @cmd: Opcode to execute
1967 *
1968 * Execute a 'simple' command, that only consists of the opcode
1969 * 'cmd' itself, without filling any other registers
1970 *
1971 * LOCKING:
1972 * Kernel thread context (may sleep).
1973 *
1974 * RETURNS:
1975 * Zero on success, AC_ERR_* mask on failure
Tejun Heoe58eb582006-06-24 20:30:19 +09001976 */
Tejun Heo77b08fb2006-06-24 20:30:19 +09001977unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
Tejun Heoe58eb582006-06-24 20:30:19 +09001978{
1979 struct ata_taskfile tf;
Tejun Heoe58eb582006-06-24 20:30:19 +09001980
1981 ata_tf_init(dev, &tf);
1982
1983 tf.command = cmd;
1984 tf.flags |= ATA_TFLAG_DEVICE;
1985 tf.protocol = ATA_PROT_NODATA;
1986
Tejun Heo2b789102007-10-09 15:05:44 +09001987 return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Tejun Heoe58eb582006-06-24 20:30:19 +09001988}
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990/**
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001991 * ata_pio_need_iordy - check if iordy needed
1992 * @adev: ATA device
1993 *
1994 * Check if the current speed of the device requires IORDY. Used
1995 * by various controllers for chip configuration.
1996 */
Jeff Garzika617c092007-05-21 20:14:23 -04001997
Alan Cox1bc4ccf2006-01-09 17:18:14 +00001998unsigned int ata_pio_need_iordy(const struct ata_device *adev)
1999{
Alan Cox432729f2007-03-08 23:22:59 +00002000 /* Controller doesn't support IORDY. Probably a pointless check
2001 as the caller should know this */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002002 if (adev->link->ap->flags & ATA_FLAG_NO_IORDY)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002003 return 0;
David Daney5c18c4d2008-12-10 15:39:12 -08002004 /* CF spec. r4.1 Table 22 says no iordy on PIO5 and PIO6. */
2005 if (ata_id_is_cfa(adev->id)
2006 && (adev->pio_mode == XFER_PIO_5 || adev->pio_mode == XFER_PIO_6))
2007 return 0;
Alan Cox432729f2007-03-08 23:22:59 +00002008 /* PIO3 and higher it is mandatory */
2009 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002010 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00002011 /* We turn it on when possible */
2012 if (ata_id_has_iordy(adev->id))
2013 return 1;
2014 return 0;
2015}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002016
Alan Cox432729f2007-03-08 23:22:59 +00002017/**
2018 * ata_pio_mask_no_iordy - Return the non IORDY mask
2019 * @adev: ATA device
2020 *
2021 * Compute the highest mode possible if we are not using iordy. Return
2022 * -1 if no iordy mode is available.
2023 */
Jeff Garzika617c092007-05-21 20:14:23 -04002024
Alan Cox432729f2007-03-08 23:22:59 +00002025static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
2026{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002027 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002028 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00002029 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002030 /* Is the speed faster than the drive allows non IORDY ? */
2031 if (pio) {
2032 /* This is cycle times not frequency - watch the logic! */
2033 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00002034 return 3 << ATA_SHIFT_PIO;
2035 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002036 }
2037 }
Alan Cox432729f2007-03-08 23:22:59 +00002038 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002039}
2040
2041/**
Alan Cox963e4972008-07-24 17:16:06 +01002042 * ata_do_dev_read_id - default ID read method
2043 * @dev: device
2044 * @tf: proposed taskfile
2045 * @id: data buffer
2046 *
2047 * Issue the identify taskfile and hand back the buffer containing
2048 * identify data. For some RAID controllers and for pre ATA devices
2049 * this function is wrapped or replaced by the driver
2050 */
2051unsigned int ata_do_dev_read_id(struct ata_device *dev,
2052 struct ata_taskfile *tf, u16 *id)
2053{
2054 return ata_exec_internal(dev, tf, NULL, DMA_FROM_DEVICE,
2055 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
2056}
2057
2058/**
Tejun Heo49016ac2006-02-21 02:12:11 +09002059 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09002060 * @dev: target device
2061 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09002062 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09002063 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09002064 *
2065 * Read ID data from the specified device. ATA_CMD_ID_ATA is
2066 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002067 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
2068 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09002069 *
Alan Cox50a99012007-08-08 14:27:00 +01002070 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002071 * now we abort if we hit that case.
Alan Cox50a99012007-08-08 14:27:00 +01002072 *
Tejun Heo49016ac2006-02-21 02:12:11 +09002073 * LOCKING:
2074 * Kernel thread context (may sleep)
2075 *
2076 * RETURNS:
2077 * 0 on success, -errno otherwise.
2078 */
Tejun Heoa9beec92006-05-31 18:27:44 +09002079int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09002080 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09002081{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002082 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09002083 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09002084 struct ata_taskfile tf;
2085 unsigned int err_mask = 0;
2086 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02002087 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09002088 int rc;
2089
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002090 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002091 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Tejun Heo49016ac2006-02-21 02:12:11 +09002092
Alan Cox963e4972008-07-24 17:16:06 +01002093retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09002094 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09002095
2096 switch (class) {
2097 case ATA_DEV_ATA:
2098 tf.command = ATA_CMD_ID_ATA;
2099 break;
2100 case ATA_DEV_ATAPI:
2101 tf.command = ATA_CMD_ID_ATAPI;
2102 break;
2103 default:
2104 rc = -ENODEV;
2105 reason = "unsupported class";
2106 goto err_out;
2107 }
2108
2109 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08002110
2111 /* Some devices choke if TF registers contain garbage. Make
2112 * sure those are properly initialized.
2113 */
2114 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2115
2116 /* Device presence detection is unreliable on some
2117 * controllers. Always poll IDENTIFY if available.
2118 */
2119 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09002120
Alan Cox963e4972008-07-24 17:16:06 +01002121 if (ap->ops->read_id)
2122 err_mask = ap->ops->read_id(dev, &tf, id);
2123 else
2124 err_mask = ata_do_dev_read_id(dev, &tf, id);
2125
Tejun Heo49016ac2006-02-21 02:12:11 +09002126 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09002127 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo1ffc1512008-03-23 15:16:53 +09002128 ata_dev_printk(dev, KERN_DEBUG,
2129 "NODEV after polling detection\n");
Tejun Heo55a8e2c2006-11-10 18:08:10 +09002130 return -ENOENT;
2131 }
2132
Tejun Heo1ffc1512008-03-23 15:16:53 +09002133 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
2134 /* Device or controller might have reported
2135 * the wrong device class. Give a shot at the
2136 * other IDENTIFY if the current one is
2137 * aborted by the device.
2138 */
2139 if (may_fallback) {
2140 may_fallback = 0;
Tejun Heo54936f82007-05-11 14:35:29 +02002141
Tejun Heo1ffc1512008-03-23 15:16:53 +09002142 if (class == ATA_DEV_ATA)
2143 class = ATA_DEV_ATAPI;
2144 else
2145 class = ATA_DEV_ATA;
2146 goto retry;
2147 }
2148
2149 /* Control reaches here iff the device aborted
2150 * both flavors of IDENTIFYs which happens
2151 * sometimes with phantom devices.
2152 */
2153 ata_dev_printk(dev, KERN_DEBUG,
2154 "both IDENTIFYs aborted, assuming NODEV\n");
2155 return -ENOENT;
Tejun Heo54936f82007-05-11 14:35:29 +02002156 }
2157
Tejun Heo49016ac2006-02-21 02:12:11 +09002158 rc = -EIO;
2159 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09002160 goto err_out;
2161 }
2162
Tejun Heo54936f82007-05-11 14:35:29 +02002163 /* Falling back doesn't make sense if ID data was read
2164 * successfully at least once.
2165 */
2166 may_fallback = 0;
2167
Tejun Heo49016ac2006-02-21 02:12:11 +09002168 swap_buf_le16(id, ATA_ID_WORDS);
2169
Tejun Heo49016ac2006-02-21 02:12:11 +09002170 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07002171 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01002172 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07002173
2174 if (class == ATA_DEV_ATA) {
2175 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
2176 goto err_out;
2177 } else {
2178 if (ata_id_is_ata(id))
2179 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09002180 }
2181
Mark Lord169439c2007-04-17 18:26:07 -04002182 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2183 tried_spinup = 1;
2184 /*
2185 * Drive powered-up in standby mode, and requires a specific
2186 * SET_FEATURES spin-up subcommand before it will accept
2187 * anything other than the original IDENTIFY command.
2188 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002189 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07002190 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04002191 rc = -EIO;
2192 reason = "SPINUP failed";
2193 goto err_out;
2194 }
2195 /*
2196 * If the drive initially returned incomplete IDENTIFY info,
2197 * we now must reissue the IDENTIFY command.
2198 */
2199 if (id[2] == 0x37c8)
2200 goto retry;
2201 }
2202
Tejun Heobff04642006-11-10 18:08:10 +09002203 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09002204 /*
2205 * The exact sequence expected by certain pre-ATA4 drives is:
2206 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01002207 * IDENTIFY (optional in early ATA)
2208 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09002209 * anything else..
2210 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01002211 *
2212 * Note that ATA4 says lba is mandatory so the second check
2213 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09002214 */
2215 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09002216 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09002217 if (err_mask) {
2218 rc = -EIO;
2219 reason = "INIT_DEV_PARAMS failed";
2220 goto err_out;
2221 }
2222
2223 /* current CHS translation info (id[53-58]) might be
2224 * changed. reread the identify device info.
2225 */
Tejun Heobff04642006-11-10 18:08:10 +09002226 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09002227 goto retry;
2228 }
2229 }
2230
2231 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09002232
Tejun Heo49016ac2006-02-21 02:12:11 +09002233 return 0;
2234
2235 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09002236 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002237 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09002238 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09002239 return rc;
2240}
2241
Tejun Heo3373efd2006-05-15 20:57:53 +09002242static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002243{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002244 struct ata_port *ap = dev->link->ap;
Jens Axboe9ce8e302008-08-27 15:23:18 +02002245
2246 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_BRIDGE_OK)
2247 return 0;
2248
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002249 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002250}
2251
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002252static void ata_dev_config_ncq(struct ata_device *dev,
2253 char *desc, size_t desc_sz)
2254{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002255 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002256 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
2257
2258 if (!ata_id_has_ncq(dev->id)) {
2259 desc[0] = '\0';
2260 return;
2261 }
Tejun Heo75683fe2007-07-05 13:31:27 +09002262 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07002263 snprintf(desc, desc_sz, "NCQ (not used)");
2264 return;
2265 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002266 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04002267 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002268 dev->flags |= ATA_DFLAG_NCQ;
2269 }
2270
2271 if (hdepth >= ddepth)
2272 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
2273 else
2274 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
2275}
2276
Tejun Heo49016ac2006-02-21 02:12:11 +09002277/**
Tejun Heoffeae412006-03-01 16:09:35 +09002278 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09002279 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 *
Tejun Heoffeae412006-03-01 16:09:35 +09002281 * Configure @dev according to @dev->id. Generic and low-level
2282 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 *
2284 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09002285 * Kernel thread context (may sleep)
2286 *
2287 * RETURNS:
2288 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09002290int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002292 struct ata_port *ap = dev->link->ap;
2293 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09002294 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002295 const u16 *id = dev->id;
Tejun Heo7dc951a2007-11-27 19:43:42 +09002296 unsigned long xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01002297 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002298 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2299 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05002300 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002302 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09002303 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002304 __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002305 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002308 if (ata_msg_probe(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002309 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Tejun Heo75683fe2007-07-05 13:31:27 +09002311 /* set horkage */
2312 dev->horkage |= ata_dev_blacklisted(dev);
Tejun Heo33267322008-02-13 09:15:09 +09002313 ata_force_horkage(dev);
Tejun Heo75683fe2007-07-05 13:31:27 +09002314
Tejun Heo50af2fa2008-05-19 01:15:14 +09002315 if (dev->horkage & ATA_HORKAGE_DISABLE) {
2316 ata_dev_printk(dev, KERN_INFO,
2317 "unsupported device, disabling\n");
2318 ata_dev_disable(dev);
2319 return 0;
2320 }
2321
Tejun Heo2486fa52008-07-31 07:52:40 +09002322 if ((!atapi_enabled || (ap->flags & ATA_FLAG_NO_ATAPI)) &&
2323 dev->class == ATA_DEV_ATAPI) {
2324 ata_dev_printk(dev, KERN_WARNING,
2325 "WARNING: ATAPI is %s, device ignored.\n",
2326 atapi_enabled ? "not supported with this driver"
2327 : "disabled");
2328 ata_dev_disable(dev);
2329 return 0;
2330 }
2331
Tejun Heo67465442007-05-15 03:28:16 +09002332 /* let ACPI work its magic */
2333 rc = ata_acpi_on_devcfg(dev);
2334 if (rc)
2335 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08002336
Tejun Heo05027ad2007-09-03 12:32:57 +09002337 /* massage HPA, do it early as it might change IDENTIFY data */
2338 rc = ata_hpa_resize(dev);
2339 if (rc)
2340 return rc;
2341
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002342 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002343 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002344 ata_dev_printk(dev, KERN_DEBUG,
2345 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2346 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002347 __func__,
Tejun Heof15a1da2006-05-15 20:57:56 +09002348 id[49], id[82], id[83], id[84],
2349 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002350
Tejun Heo208a9932006-03-05 17:55:58 +09002351 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09002352 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09002353 dev->max_sectors = 0;
2354 dev->cdb_len = 0;
2355 dev->n_sectors = 0;
2356 dev->cylinders = 0;
2357 dev->heads = 0;
2358 dev->sectors = 0;
2359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 /*
2361 * common ATA, ATAPI feature tests
2362 */
2363
Tejun Heoff8854b2006-03-06 04:31:56 +09002364 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002365 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002367 if (ata_msg_probe(ap))
2368 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Albert Leeef143d52007-06-05 13:01:33 +08002370 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2371 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2372 sizeof(fwrevbuf));
2373
2374 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2375 sizeof(modelbuf));
2376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 /* ATA-specific feature tests */
2378 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01002379 if (ata_id_is_cfa(id)) {
2380 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09002381 ata_dev_printk(dev, KERN_WARNING,
2382 "supports DRM functions and may "
2383 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01002384 snprintf(revbuf, 7, "CFA");
Alan Coxae8d4ee2007-11-04 22:05:49 -05002385 } else {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002386 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
Alan Coxae8d4ee2007-11-04 22:05:49 -05002387 /* Warn the user if the device has TPM extensions */
2388 if (ata_id_has_tpm(id))
2389 ata_dev_printk(dev, KERN_WARNING,
2390 "supports DRM functions and may "
2391 "not be fully accessable.\n");
2392 }
Alan Coxb352e572006-08-10 18:52:12 +01002393
Tejun Heo1148c3a2006-03-13 19:48:04 +09002394 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09002395
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002396 if (dev->id[59] & 0x100)
2397 dev->multi_count = dev->id[59] & 0xff;
2398
Tejun Heo1148c3a2006-03-13 19:48:04 +09002399 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09002400 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002401 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002402
Tejun Heo4c2d7212006-03-05 17:55:58 +09002403 lba_desc = "LBA";
2404 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002405 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002406 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002407 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09002408
2409 if (dev->n_sectors >= (1UL << 28) &&
2410 ata_id_has_flush_ext(id))
2411 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002412 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002413
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002414 /* config NCQ */
2415 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2416
Albert Lee8bf62ece2005-05-12 15:29:42 -04002417 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002418 if (ata_msg_drv(ap) && print_info) {
2419 ata_dev_printk(dev, KERN_INFO,
2420 "%s: %s, %s, max %s\n",
2421 revbuf, modelbuf, fwrevbuf,
2422 ata_mode_string(xfer_mask));
2423 ata_dev_printk(dev, KERN_INFO,
2424 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002425 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002426 dev->multi_count, lba_desc, ncq_desc);
2427 }
Tejun Heoffeae412006-03-01 16:09:35 +09002428 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002429 /* CHS */
2430
2431 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002432 dev->cylinders = id[1];
2433 dev->heads = id[3];
2434 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002435
Tejun Heo1148c3a2006-03-13 19:48:04 +09002436 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002437 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002438 dev->cylinders = id[54];
2439 dev->heads = id[55];
2440 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002441 }
2442
2443 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002444 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002445 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002446 "%s: %s, %s, max %s\n",
2447 revbuf, modelbuf, fwrevbuf,
2448 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002449 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002450 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2451 (unsigned long long)dev->n_sectors,
2452 dev->multi_count, dev->cylinders,
2453 dev->heads, dev->sectors);
2454 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002455 }
2456
Tejun Heo6e7846e2006-02-12 23:32:58 +09002457 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 }
2459
2460 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002461 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002462 const char *cdb_intr_string = "";
2463 const char *atapi_an_string = "";
Tejun Heo91163002008-02-21 13:25:50 +09002464 const char *dma_dir_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002465 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002466
Tejun Heo1148c3a2006-03-13 19:48:04 +09002467 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002469 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002470 ata_dev_printk(dev, KERN_WARNING,
2471 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002472 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 goto err_out_nosup;
2474 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002475 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Tejun Heo7d77b242007-09-23 13:14:13 +09002477 /* Enable ATAPI AN if both the host and device have
2478 * the support. If PMP is attached, SNTF is required
2479 * to enable ATAPI AN to discern between PHY status
2480 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002481 */
Tejun Heo7d77b242007-09-23 13:14:13 +09002482 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
Tejun Heo071f44b2008-04-07 22:47:22 +09002483 (!sata_pmp_attached(ap) ||
Tejun Heo7d77b242007-09-23 13:14:13 +09002484 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002485 unsigned int err_mask;
2486
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002487 /* issue SET feature command to turn this on */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002488 err_mask = ata_dev_set_feature(dev,
2489 SETFEATURES_SATA_ENABLE, SATA_AN);
Tejun Heo854c73a2007-09-23 13:14:11 +09002490 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002491 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002492 "failed to enable ATAPI AN "
2493 "(err_mask=0x%x)\n", err_mask);
2494 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002495 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002496 atapi_an_string = ", ATAPI AN";
2497 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002498 }
2499
Albert Lee08a556d2006-03-31 13:29:04 +08002500 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002501 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002502 cdb_intr_string = ", CDB intr";
2503 }
Albert Lee312f7da2005-09-27 17:38:03 +08002504
Tejun Heo91163002008-02-21 13:25:50 +09002505 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2506 dev->flags |= ATA_DFLAG_DMADIR;
2507 dma_dir_string = ", DMADIR";
2508 }
2509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002511 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002512 ata_dev_printk(dev, KERN_INFO,
Tejun Heo91163002008-02-21 13:25:50 +09002513 "ATAPI: %s, %s, max %s%s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002514 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002515 ata_mode_string(xfer_mask),
Tejun Heo91163002008-02-21 13:25:50 +09002516 cdb_intr_string, atapi_an_string,
2517 dma_dir_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 }
2519
Tejun Heo914ed352006-11-01 18:39:55 +09002520 /* determine max_sectors */
2521 dev->max_sectors = ATA_MAX_SECTORS;
2522 if (dev->flags & ATA_DFLAG_LBA48)
2523 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2524
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002525 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2526 if (ata_id_has_hipm(dev->id))
2527 dev->flags |= ATA_DFLAG_HIPM;
2528 if (ata_id_has_dipm(dev->id))
2529 dev->flags |= ATA_DFLAG_DIPM;
2530 }
2531
Alan Coxc5038fc2007-10-25 14:21:16 +01002532 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2533 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002534 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002535 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002536 ata_dev_printk(dev, KERN_INFO,
2537 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002538 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002539 dev->max_sectors = ATA_MAX_SECTORS;
2540 }
2541
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002542 if ((dev->class == ATA_DEV_ATAPI) &&
Albert Leef442cd82007-11-15 10:35:47 +09002543 (atapi_command_packet_set(id) == TYPE_TAPE)) {
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002544 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
Albert Leef442cd82007-11-15 10:35:47 +09002545 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2546 }
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002547
Tejun Heo75683fe2007-07-05 13:31:27 +09002548 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002549 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2550 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002551
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002552 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2553 dev->horkage |= ATA_HORKAGE_IPM;
2554
2555 /* reset link pm_policy for this port to no pm */
2556 ap->pm_policy = MAX_PERFORMANCE;
2557 }
2558
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002559 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002560 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002561
Alan Coxc5038fc2007-10-25 14:21:16 +01002562 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2563 /* Let the user know. We don't want to disallow opens for
2564 rescue purposes, or in case the vendor is just a blithering
2565 idiot. Do this after the dev_config call as some controllers
2566 with buggy firmware may want to avoid reporting false device
2567 bugs */
2568
2569 if (print_info) {
2570 ata_dev_printk(dev, KERN_WARNING,
2571"Drive reports diagnostics failure. This may indicate a drive\n");
2572 ata_dev_printk(dev, KERN_WARNING,
2573"fault or invalid emulation. Contact drive vendor for information.\n");
2574 }
2575 }
2576
Tejun Heoac70a962008-11-27 13:36:48 +09002577 if ((dev->horkage & ATA_HORKAGE_FIRMWARE_WARN) && print_info) {
2578 ata_dev_printk(dev, KERN_WARNING, "WARNING: device requires "
2579 "firmware update to be fully functional.\n");
2580 ata_dev_printk(dev, KERN_WARNING, " contact the vendor "
2581 "or visit http://ata.wiki.kernel.org.\n");
2582 }
2583
Tejun Heoffeae412006-03-01 16:09:35 +09002584 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
2586err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002587 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002588 ata_dev_printk(dev, KERN_DEBUG,
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002589 "%s: EXIT, err\n", __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002590 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591}
2592
2593/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002594 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002595 * @ap: port
2596 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002597 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002598 * detection.
2599 */
2600
2601int ata_cable_40wire(struct ata_port *ap)
2602{
2603 return ATA_CBL_PATA40;
2604}
2605
2606/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002607 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002608 * @ap: port
2609 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002610 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002611 * detection.
2612 */
2613
2614int ata_cable_80wire(struct ata_port *ap)
2615{
2616 return ATA_CBL_PATA80;
2617}
2618
2619/**
2620 * ata_cable_unknown - return unknown PATA cable.
2621 * @ap: port
2622 *
2623 * Helper method for drivers which have no PATA cable detection.
2624 */
2625
2626int ata_cable_unknown(struct ata_port *ap)
2627{
2628 return ATA_CBL_PATA_UNK;
2629}
2630
2631/**
Tejun Heoc88f90c2007-11-27 19:43:48 +09002632 * ata_cable_ignore - return ignored PATA cable.
2633 * @ap: port
2634 *
2635 * Helper method for drivers which don't use cable type to limit
2636 * transfer mode.
2637 */
2638int ata_cable_ignore(struct ata_port *ap)
2639{
2640 return ATA_CBL_PATA_IGN;
2641}
2642
2643/**
Alan Coxbe0d18d2007-03-06 02:37:56 -08002644 * ata_cable_sata - return SATA cable type
2645 * @ap: port
2646 *
2647 * Helper method for drivers which have SATA cables
2648 */
2649
2650int ata_cable_sata(struct ata_port *ap)
2651{
2652 return ATA_CBL_SATA;
2653}
2654
2655/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 * ata_bus_probe - Reset and probe ATA bus
2657 * @ap: Bus to probe
2658 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002659 * Master ATA bus probing function. Initiates a hardware-dependent
2660 * bus reset, then attempts to identify any devices found on
2661 * the bus.
2662 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002664 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 *
2666 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002667 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 */
2669
Brian King80289162006-08-07 14:27:31 -05002670int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002672 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002673 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002674 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002675 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Tejun Heo28ca5c52006-03-01 16:09:36 +09002677 ata_port_probe(ap);
2678
Tejun Heo1eca4362008-11-03 20:03:17 +09002679 ata_for_each_dev(dev, &ap->link, ALL)
Tejun Heof58229f2007-08-06 18:36:23 +09002680 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002681
2682 retry:
Tejun Heo1eca4362008-11-03 20:03:17 +09002683 ata_for_each_dev(dev, &ap->link, ALL) {
Tejun Heocdeab112007-10-29 16:41:09 +09002684 /* If we issue an SRST then an ATA drive (not ATAPI)
2685 * may change configuration and be in PIO0 timing. If
2686 * we do a hard reset (or are coming from power on)
2687 * this is true for ATA or ATAPI. Until we've set a
2688 * suitable controller mode we should not touch the
2689 * bus as we may be talking too fast.
2690 */
2691 dev->pio_mode = XFER_PIO_0;
2692
2693 /* If the controller has a pio mode setup function
2694 * then use it to set the chipset to rights. Don't
2695 * touch the DMA setup as that will be dealt with when
2696 * configuring devices.
2697 */
2698 if (ap->ops->set_piomode)
2699 ap->ops->set_piomode(ap, dev);
2700 }
2701
Tejun Heo20444702006-03-13 01:57:01 +09002702 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002703 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002704
Tejun Heo1eca4362008-11-03 20:03:17 +09002705 ata_for_each_dev(dev, &ap->link, ALL) {
Tejun Heo52783c52006-05-31 18:28:22 +09002706 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2707 dev->class != ATA_DEV_UNKNOWN)
2708 classes[dev->devno] = dev->class;
2709 else
2710 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002711
Tejun Heo52783c52006-05-31 18:28:22 +09002712 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Tejun Heo52783c52006-05-31 18:28:22 +09002715 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002716
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002717 /* read IDENTIFY page and configure devices. We have to do the identify
2718 specific sequence bass-ackwards so that PDIAG- is released by
2719 the slave device */
2720
Tejun Heo1eca4362008-11-03 20:03:17 +09002721 ata_for_each_dev(dev, &ap->link, ALL_REVERSE) {
Tejun Heof58229f2007-08-06 18:36:23 +09002722 if (tries[dev->devno])
2723 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002724
Tejun Heoe1211e32006-04-01 01:38:18 +09002725 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002726 continue;
2727
Tejun Heobff04642006-11-10 18:08:10 +09002728 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2729 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002730 if (rc)
2731 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002732 }
2733
Alan Coxbe0d18d2007-03-06 02:37:56 -08002734 /* Now ask for the cable type as PDIAG- should have been released */
2735 if (ap->ops->cable_detect)
2736 ap->cbl = ap->ops->cable_detect(ap);
2737
Tejun Heo1eca4362008-11-03 20:03:17 +09002738 /* We may have SATA bridge glue hiding here irrespective of
2739 * the reported cable types and sensed types. When SATA
2740 * drives indicate we have a bridge, we don't know which end
2741 * of the link the bridge is which is a problem.
2742 */
2743 ata_for_each_dev(dev, &ap->link, ENABLED)
Alan Cox614fe292007-08-22 23:22:45 +01002744 if (ata_id_is_sata(dev->id))
2745 ap->cbl = ATA_CBL_SATA;
Alan Cox614fe292007-08-22 23:22:45 +01002746
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002747 /* After the identify sequence we can now set up the devices. We do
2748 this in the normal order so that the user doesn't get confused */
2749
Tejun Heo1eca4362008-11-03 20:03:17 +09002750 ata_for_each_dev(dev, &ap->link, ENABLED) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002751 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002752 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002753 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002754 if (rc)
2755 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 }
2757
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002758 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002759 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002760 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002761 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Tejun Heo1eca4362008-11-03 20:03:17 +09002763 ata_for_each_dev(dev, &ap->link, ENABLED)
2764 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002765
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002766 /* no device present, disable port */
2767 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002768 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002769
2770 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002771 tries[dev->devno]--;
2772
Tejun Heo14d2bac2006-04-02 17:54:46 +09002773 switch (rc) {
2774 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002775 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002776 tries[dev->devno] = 0;
2777 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002778
2779 case -ENODEV:
2780 /* give it just one more chance */
2781 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002782 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002783 if (tries[dev->devno] == 1) {
2784 /* This is the last chance, better to slow
2785 * down than lose it.
2786 */
Tejun Heo936fd732007-08-06 18:36:23 +09002787 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002788 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2789 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002790 }
2791
Tejun Heo4ae72a12007-02-02 16:22:30 +09002792 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002793 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002794
Tejun Heo14d2bac2006-04-02 17:54:46 +09002795 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796}
2797
2798/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002799 * ata_port_probe - Mark port as enabled
2800 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002802 * Modify @ap data structure such that the system
2803 * thinks that the entire port is enabled.
2804 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002805 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002806 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 */
2808
2809void ata_port_probe(struct ata_port *ap)
2810{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002811 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
2813
2814/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002815 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002816 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002817 *
2818 * This function prints link speed and status of a SATA link.
2819 *
2820 * LOCKING:
2821 * None.
2822 */
Adrian Bunk6bdb4fc2008-04-21 11:51:11 +03002823static void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002824{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002825 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002826
Tejun Heo936fd732007-08-06 18:36:23 +09002827 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002828 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002829 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002830
Tejun Heob1c72912008-07-31 17:02:43 +09002831 if (ata_phys_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002832 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002833 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002834 "SATA link up %s (SStatus %X SControl %X)\n",
2835 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002836 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002837 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002838 "SATA link down (SStatus %X SControl %X)\n",
2839 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002840 }
2841}
2842
2843/**
Alan Coxebdfca62006-03-23 15:38:34 +00002844 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002845 * @adev: device
2846 *
2847 * Obtain the other device on the same cable, or if none is
2848 * present NULL is returned
2849 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002850
Tejun Heo3373efd2006-05-15 20:57:53 +09002851struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002852{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002853 struct ata_link *link = adev->link;
2854 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002855 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002856 return NULL;
2857 return pair;
2858}
2859
2860/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002861 * ata_port_disable - Disable port.
2862 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002864 * Modify @ap data structure such that the system
2865 * thinks that the entire port is disabled, and should
2866 * never attempt to probe or communicate with devices
2867 * on this port.
2868 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002869 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002870 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 */
2872
2873void ata_port_disable(struct ata_port *ap)
2874{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002875 ap->link.device[0].class = ATA_DEV_NONE;
2876 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002877 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878}
2879
Tejun Heo1c3fae42006-04-02 20:53:28 +09002880/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002881 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002882 * @link: Link to adjust SATA spd limit for
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 *
2888 * LOCKING:
2889 * Inherited from caller.
2890 *
2891 * RETURNS:
2892 * 0 on success, negative errno on failure
2893 */
Tejun Heo936fd732007-08-06 18:36:23 +09002894int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002895{
Tejun Heo81952c52006-05-15 20:57:47 +09002896 u32 sstatus, spd, mask;
2897 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002898
Tejun Heo936fd732007-08-06 18:36:23 +09002899 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002900 return -EOPNOTSUPP;
2901
2902 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002903 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002904 */
Tejun Heo936fd732007-08-06 18:36:23 +09002905 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002906 if (rc == 0)
2907 spd = (sstatus >> 4) & 0xf;
2908 else
Tejun Heo936fd732007-08-06 18:36:23 +09002909 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002910
Tejun Heo936fd732007-08-06 18:36:23 +09002911 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002912 if (mask <= 1)
2913 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002914
2915 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002916 highbit = fls(mask) - 1;
2917 mask &= ~(1 << highbit);
2918
Tejun Heo008a7892007-07-16 14:29:40 +09002919 /* Mask off all speeds higher than or equal to the current
2920 * one. Force 1.5Gbps if current SPD is not available.
2921 */
2922 if (spd > 1)
2923 mask &= (1 << (spd - 1)) - 1;
2924 else
2925 mask &= 1;
2926
2927 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002928 if (!mask)
2929 return -EINVAL;
2930
Tejun Heo936fd732007-08-06 18:36:23 +09002931 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002932
Tejun Heo936fd732007-08-06 18:36:23 +09002933 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002934 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002935
2936 return 0;
2937}
2938
Tejun Heo936fd732007-08-06 18:36:23 +09002939static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002940{
Tejun Heo52702222007-10-31 10:17:07 +09002941 struct ata_link *host_link = &link->ap->link;
2942 u32 limit, target, spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002943
Tejun Heo52702222007-10-31 10:17:07 +09002944 limit = link->sata_spd_limit;
2945
2946 /* Don't configure downstream link faster than upstream link.
2947 * It doesn't speed up anything and some PMPs choke on such
2948 * configuration.
2949 */
2950 if (!ata_is_host_link(link) && host_link->sata_spd)
2951 limit &= (1 << host_link->sata_spd) - 1;
2952
2953 if (limit == UINT_MAX)
2954 target = 0;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002955 else
Tejun Heo52702222007-10-31 10:17:07 +09002956 target = fls(limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002957
2958 spd = (*scontrol >> 4) & 0xf;
Tejun Heo52702222007-10-31 10:17:07 +09002959 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002960
Tejun Heo52702222007-10-31 10:17:07 +09002961 return spd != target;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002962}
2963
2964/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002965 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002966 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002967 *
2968 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002969 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002970 * whether hardreset is necessary to apply SATA spd
2971 * configuration.
2972 *
2973 * LOCKING:
2974 * Inherited from caller.
2975 *
2976 * RETURNS:
2977 * 1 if SATA spd configuration is needed, 0 otherwise.
2978 */
Adrian Bunk1dc55e82008-04-21 11:51:17 +03002979static int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002980{
2981 u32 scontrol;
2982
Tejun Heo936fd732007-08-06 18:36:23 +09002983 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heodb64bcf2007-10-31 10:17:06 +09002984 return 1;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002985
Tejun Heo936fd732007-08-06 18:36:23 +09002986 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002987}
2988
2989/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002990 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002991 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002992 *
Tejun Heo936fd732007-08-06 18:36:23 +09002993 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002994 *
2995 * LOCKING:
2996 * Inherited from caller.
2997 *
2998 * RETURNS:
2999 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09003000 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09003001 */
Tejun Heo936fd732007-08-06 18:36:23 +09003002int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09003003{
3004 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003005 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003006
Tejun Heo936fd732007-08-06 18:36:23 +09003007 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003008 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003009
Tejun Heo936fd732007-08-06 18:36:23 +09003010 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09003011 return 0;
3012
Tejun Heo936fd732007-08-06 18:36:23 +09003013 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003014 return rc;
3015
Tejun Heo1c3fae42006-04-02 20:53:28 +09003016 return 1;
3017}
3018
Alan Cox452503f2005-10-21 19:01:32 -04003019/*
3020 * This mode timing computation functionality is ported over from
3021 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
3022 */
3023/*
Alan Coxb352e572006-08-10 18:52:12 +01003024 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04003025 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01003026 * for UDMA6, which is currently supported only by Maxtor drives.
3027 *
3028 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04003029 */
3030
3031static const struct ata_timing ata_timing[] = {
David Daney3ada9c12009-01-15 17:45:31 -08003032/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 0, 960, 0 }, */
3033 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 0, 600, 0 },
3034 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 0, 383, 0 },
3035 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 0, 240, 0 },
3036 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 0, 180, 0 },
3037 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 0, 120, 0 },
3038 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 0, 100, 0 },
3039 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 0, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003040
David Daney3ada9c12009-01-15 17:45:31 -08003041 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 50, 960, 0 },
3042 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 30, 480, 0 },
3043 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 20, 240, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003044
David Daney3ada9c12009-01-15 17:45:31 -08003045 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 20, 480, 0 },
3046 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 5, 150, 0 },
3047 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 5, 120, 0 },
3048 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 5, 100, 0 },
3049 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 5, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003050
David Daney3ada9c12009-01-15 17:45:31 -08003051/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 0, 150 }, */
3052 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 0, 120 },
3053 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 0, 80 },
3054 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 0, 60 },
3055 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 0, 45 },
3056 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 0, 30 },
3057 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 0, 20 },
3058 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 0, 15 },
Alan Cox452503f2005-10-21 19:01:32 -04003059
3060 { 0xFF }
3061};
3062
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003063#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
3064#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
Alan Cox452503f2005-10-21 19:01:32 -04003065
3066static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
3067{
David Daney3ada9c12009-01-15 17:45:31 -08003068 q->setup = EZ(t->setup * 1000, T);
3069 q->act8b = EZ(t->act8b * 1000, T);
3070 q->rec8b = EZ(t->rec8b * 1000, T);
3071 q->cyc8b = EZ(t->cyc8b * 1000, T);
3072 q->active = EZ(t->active * 1000, T);
3073 q->recover = EZ(t->recover * 1000, T);
3074 q->dmack_hold = EZ(t->dmack_hold * 1000, T);
3075 q->cycle = EZ(t->cycle * 1000, T);
3076 q->udma = EZ(t->udma * 1000, UT);
Alan Cox452503f2005-10-21 19:01:32 -04003077}
3078
3079void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
3080 struct ata_timing *m, unsigned int what)
3081{
3082 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
3083 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
3084 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
3085 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
3086 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
3087 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
David Daney3ada9c12009-01-15 17:45:31 -08003088 if (what & ATA_TIMING_DMACK_HOLD) m->dmack_hold = max(a->dmack_hold, b->dmack_hold);
Alan Cox452503f2005-10-21 19:01:32 -04003089 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
3090 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
3091}
3092
Tejun Heo63573572007-11-27 19:43:39 +09003093const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
Alan Cox452503f2005-10-21 19:01:32 -04003094{
Tejun Heo70cd0712007-11-27 19:43:40 +09003095 const struct ata_timing *t = ata_timing;
Alan Cox452503f2005-10-21 19:01:32 -04003096
Tejun Heo70cd0712007-11-27 19:43:40 +09003097 while (xfer_mode > t->mode)
3098 t++;
3099
3100 if (xfer_mode == t->mode)
3101 return t;
3102 return NULL;
Alan Cox452503f2005-10-21 19:01:32 -04003103}
3104
3105int ata_timing_compute(struct ata_device *adev, unsigned short speed,
3106 struct ata_timing *t, int T, int UT)
3107{
3108 const struct ata_timing *s;
3109 struct ata_timing p;
3110
3111 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003112 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08003113 */
Alan Cox452503f2005-10-21 19:01:32 -04003114
3115 if (!(s = ata_timing_find_mode(speed)))
3116 return -EINVAL;
3117
Albert Lee75b1f2f2005-11-16 17:06:18 +08003118 memcpy(t, s, sizeof(*s));
3119
Alan Cox452503f2005-10-21 19:01:32 -04003120 /*
3121 * If the drive is an EIDE drive, it can tell us it needs extended
3122 * PIO/MW_DMA cycle timing.
3123 */
3124
3125 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
3126 memset(&p, 0, sizeof(p));
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003127 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
Alan Cox452503f2005-10-21 19:01:32 -04003128 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
3129 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003130 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
Alan Cox452503f2005-10-21 19:01:32 -04003131 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
3132 }
3133 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
3134 }
3135
3136 /*
3137 * Convert the timing to bus clock counts.
3138 */
3139
Albert Lee75b1f2f2005-11-16 17:06:18 +08003140 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04003141
3142 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003143 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
3144 * S.M.A.R.T * and some other commands. We have to ensure that the
3145 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04003146 */
3147
Alanfd3367af2006-12-07 12:41:18 +00003148 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04003149 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
3150 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
3151 }
3152
3153 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003154 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04003155 */
3156
3157 if (t->act8b + t->rec8b < t->cyc8b) {
3158 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
3159 t->rec8b = t->cyc8b - t->act8b;
3160 }
3161
3162 if (t->active + t->recover < t->cycle) {
3163 t->active += (t->cycle - (t->active + t->recover)) / 2;
3164 t->recover = t->cycle - t->active;
3165 }
Jeff Garzika617c092007-05-21 20:14:23 -04003166
Alan Cox4f701d12007-04-23 11:55:36 +01003167 /* In a few cases quantisation may produce enough errors to
3168 leave t->cycle too low for the sum of active and recovery
3169 if so we must correct this */
3170 if (t->active + t->recover > t->cycle)
3171 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04003172
3173 return 0;
3174}
3175
Tejun Heocf176e12006-04-02 17:54:46 +09003176/**
Tejun Heoa0f79b92007-12-18 16:33:05 +09003177 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
3178 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
3179 * @cycle: cycle duration in ns
3180 *
3181 * Return matching xfer mode for @cycle. The returned mode is of
3182 * the transfer type specified by @xfer_shift. If @cycle is too
3183 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
3184 * than the fastest known mode, the fasted mode is returned.
3185 *
3186 * LOCKING:
3187 * None.
3188 *
3189 * RETURNS:
3190 * Matching xfer_mode, 0xff if no match found.
3191 */
3192u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
3193{
3194 u8 base_mode = 0xff, last_mode = 0xff;
3195 const struct ata_xfer_ent *ent;
3196 const struct ata_timing *t;
3197
3198 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
3199 if (ent->shift == xfer_shift)
3200 base_mode = ent->base;
3201
3202 for (t = ata_timing_find_mode(base_mode);
3203 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
3204 unsigned short this_cycle;
3205
3206 switch (xfer_shift) {
3207 case ATA_SHIFT_PIO:
3208 case ATA_SHIFT_MWDMA:
3209 this_cycle = t->cycle;
3210 break;
3211 case ATA_SHIFT_UDMA:
3212 this_cycle = t->udma;
3213 break;
3214 default:
3215 return 0xff;
3216 }
3217
3218 if (cycle > this_cycle)
3219 break;
3220
3221 last_mode = t->mode;
3222 }
3223
3224 return last_mode;
3225}
3226
3227/**
Tejun Heocf176e12006-04-02 17:54:46 +09003228 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09003229 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09003230 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09003231 *
3232 * Adjust xfer masks of @dev downward. Note that this function
3233 * does not apply the change. Invoking ata_set_mode() afterwards
3234 * will apply the limit.
3235 *
3236 * LOCKING:
3237 * Inherited from caller.
3238 *
3239 * RETURNS:
3240 * 0 on success, negative errno on failure
3241 */
Tejun Heo458337d2007-02-02 16:22:30 +09003242int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09003243{
Tejun Heo458337d2007-02-02 16:22:30 +09003244 char buf[32];
Tejun Heo7dc951a2007-11-27 19:43:42 +09003245 unsigned long orig_mask, xfer_mask;
3246 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heo458337d2007-02-02 16:22:30 +09003247 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09003248
Tejun Heo458337d2007-02-02 16:22:30 +09003249 quiet = !!(sel & ATA_DNXFER_QUIET);
3250 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09003251
Tejun Heo458337d2007-02-02 16:22:30 +09003252 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3253 dev->mwdma_mask,
3254 dev->udma_mask);
3255 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09003256
Tejun Heo458337d2007-02-02 16:22:30 +09003257 switch (sel) {
3258 case ATA_DNXFER_PIO:
3259 highbit = fls(pio_mask) - 1;
3260 pio_mask &= ~(1 << highbit);
3261 break;
3262
3263 case ATA_DNXFER_DMA:
3264 if (udma_mask) {
3265 highbit = fls(udma_mask) - 1;
3266 udma_mask &= ~(1 << highbit);
3267 if (!udma_mask)
3268 return -ENOENT;
3269 } else if (mwdma_mask) {
3270 highbit = fls(mwdma_mask) - 1;
3271 mwdma_mask &= ~(1 << highbit);
3272 if (!mwdma_mask)
3273 return -ENOENT;
3274 }
3275 break;
3276
3277 case ATA_DNXFER_40C:
3278 udma_mask &= ATA_UDMA_MASK_40C;
3279 break;
3280
3281 case ATA_DNXFER_FORCE_PIO0:
3282 pio_mask &= 1;
3283 case ATA_DNXFER_FORCE_PIO:
3284 mwdma_mask = 0;
3285 udma_mask = 0;
3286 break;
3287
Tejun Heo458337d2007-02-02 16:22:30 +09003288 default:
3289 BUG();
3290 }
3291
3292 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3293
3294 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3295 return -ENOENT;
3296
3297 if (!quiet) {
3298 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3299 snprintf(buf, sizeof(buf), "%s:%s",
3300 ata_mode_string(xfer_mask),
3301 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3302 else
3303 snprintf(buf, sizeof(buf), "%s",
3304 ata_mode_string(xfer_mask));
3305
3306 ata_dev_printk(dev, KERN_WARNING,
3307 "limiting speed to %s\n", buf);
3308 }
Tejun Heocf176e12006-04-02 17:54:46 +09003309
3310 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3311 &dev->udma_mask);
3312
Tejun Heocf176e12006-04-02 17:54:46 +09003313 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09003314}
3315
Tejun Heo3373efd2006-05-15 20:57:53 +09003316static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003318 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo4055dee2008-02-07 10:34:08 +09003319 const char *dev_err_whine = "";
3320 int ign_dev_err = 0;
Tejun Heo83206a22006-03-24 15:25:31 +09003321 unsigned int err_mask;
3322 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Tejun Heoe8384602006-04-02 18:51:53 +09003324 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 if (dev->xfer_shift == ATA_SHIFT_PIO)
3326 dev->flags |= ATA_DFLAG_PIO;
3327
Tejun Heo3373efd2006-05-15 20:57:53 +09003328 err_mask = ata_dev_set_xfermode(dev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003329
Tejun Heo4055dee2008-02-07 10:34:08 +09003330 if (err_mask & ~AC_ERR_DEV)
3331 goto fail;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003332
Tejun Heo4055dee2008-02-07 10:34:08 +09003333 /* revalidate */
Tejun Heobaa1e782006-11-01 18:39:27 +09003334 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09003335 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09003336 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09003337 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09003338 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09003339
Alan Coxb93fda12008-04-08 16:36:44 +01003340 if (dev->xfer_shift == ATA_SHIFT_PIO) {
3341 /* Old CFA may refuse this command, which is just fine */
3342 if (ata_id_is_cfa(dev->id))
3343 ign_dev_err = 1;
3344 /* Catch several broken garbage emulations plus some pre
3345 ATA devices */
3346 if (ata_id_major_version(dev->id) == 0 &&
3347 dev->pio_mode <= XFER_PIO_2)
3348 ign_dev_err = 1;
3349 /* Some very old devices and some bad newer ones fail
3350 any kind of SET_XFERMODE request but support PIO0-2
3351 timings and no IORDY */
3352 if (!ata_id_has_iordy(dev->id) && dev->pio_mode <= XFER_PIO_2)
3353 ign_dev_err = 1;
3354 }
Tejun Heo4055dee2008-02-07 10:34:08 +09003355 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3356 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3357 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3358 dev->dma_mode == XFER_MW_DMA_0 &&
3359 (dev->id[63] >> 8) & 1)
3360 ign_dev_err = 1;
3361
3362 /* if the device is actually configured correctly, ignore dev err */
3363 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3364 ign_dev_err = 1;
3365
3366 if (err_mask & AC_ERR_DEV) {
3367 if (!ign_dev_err)
3368 goto fail;
3369 else
3370 dev_err_whine = " (device error ignored)";
3371 }
3372
Tejun Heo23e71c32006-03-06 04:31:57 +09003373 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3374 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375
Tejun Heo4055dee2008-02-07 10:34:08 +09003376 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3377 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3378 dev_err_whine);
3379
Tejun Heo83206a22006-03-24 15:25:31 +09003380 return 0;
Tejun Heo4055dee2008-02-07 10:34:08 +09003381
3382 fail:
3383 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3384 "(err_mask=0x%x)\n", err_mask);
3385 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386}
3387
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388/**
Alan04351822007-03-06 02:37:52 -08003389 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09003390 * @link: link on which timings will be programmed
Joe Perches1967b7f2008-02-03 17:08:11 +02003391 * @r_failed_dev: out parameter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 *
Alan04351822007-03-06 02:37:52 -08003393 * Standard implementation of the function used to tune and set
3394 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3395 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003396 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04003397 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003399 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003400 *
3401 * RETURNS:
3402 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 */
Alan04351822007-03-06 02:37:52 -08003404
Tejun Heo02607312007-08-06 18:36:23 +09003405int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
Tejun Heo02607312007-08-06 18:36:23 +09003407 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09003408 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09003409 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09003410
Tejun Heoa6d5a512006-03-06 04:31:57 +09003411 /* step 1: calculate xfer_mask */
Tejun Heo1eca4362008-11-03 20:03:17 +09003412 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo7dc951a2007-11-27 19:43:42 +09003413 unsigned long pio_mask, dma_mask;
Alan Coxb3a70602007-10-02 12:38:26 -04003414 unsigned int mode_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003415
Alan Coxb3a70602007-10-02 12:38:26 -04003416 mode_mask = ATA_DMA_MASK_ATA;
3417 if (dev->class == ATA_DEV_ATAPI)
3418 mode_mask = ATA_DMA_MASK_ATAPI;
3419 else if (ata_id_is_cfa(dev->id))
3420 mode_mask = ATA_DMA_MASK_CFA;
3421
Tejun Heo3373efd2006-05-15 20:57:53 +09003422 ata_dev_xfermask(dev);
Tejun Heo33267322008-02-13 09:15:09 +09003423 ata_force_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003424
Tejun Heoacf356b2006-03-24 14:07:50 +09003425 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3426 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
Alan Coxb3a70602007-10-02 12:38:26 -04003427
3428 if (libata_dma_mask & mode_mask)
3429 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3430 else
3431 dma_mask = 0;
3432
Tejun Heoacf356b2006-03-24 14:07:50 +09003433 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3434 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003435
Tejun Heo4f659772006-04-01 01:38:18 +09003436 found = 1;
Alan Coxb15b3eb2008-08-01 09:18:34 +01003437 if (ata_dma_enabled(dev))
Alan Cox5444a6f2006-03-27 18:58:20 +01003438 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003439 }
Tejun Heo4f659772006-04-01 01:38:18 +09003440 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003441 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003442
3443 /* step 2: always set host PIO timings */
Tejun Heo1eca4362008-11-03 20:03:17 +09003444 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo70cd0712007-11-27 19:43:40 +09003445 if (dev->pio_mode == 0xff) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003446 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09003447 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003448 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09003449 }
3450
3451 dev->xfer_mode = dev->pio_mode;
3452 dev->xfer_shift = ATA_SHIFT_PIO;
3453 if (ap->ops->set_piomode)
3454 ap->ops->set_piomode(ap, dev);
3455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Tejun Heoa6d5a512006-03-06 04:31:57 +09003457 /* step 3: set host DMA timings */
Tejun Heo1eca4362008-11-03 20:03:17 +09003458 ata_for_each_dev(dev, link, ENABLED) {
3459 if (!ata_dma_enabled(dev))
Tejun Heoe8e06192006-04-01 01:38:18 +09003460 continue;
3461
3462 dev->xfer_mode = dev->dma_mode;
3463 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3464 if (ap->ops->set_dmamode)
3465 ap->ops->set_dmamode(ap, dev);
3466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467
3468 /* step 4: update devices' xfer mode */
Tejun Heo1eca4362008-11-03 20:03:17 +09003469 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo3373efd2006-05-15 20:57:53 +09003470 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09003471 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003472 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09003473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Tejun Heoe8e06192006-04-01 01:38:18 +09003475 /* Record simplex status. If we selected DMA then the other
3476 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01003477 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003478 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00003479 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003480
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003481 out:
3482 if (rc)
3483 *r_failed_dev = dev;
3484 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485}
3486
3487/**
Tejun Heoaa2731a2008-04-07 22:47:19 +09003488 * ata_wait_ready - wait for link to become ready
3489 * @link: link to be waited on
3490 * @deadline: deadline jiffies for the operation
3491 * @check_ready: callback to check link readiness
3492 *
3493 * Wait for @link to become ready. @check_ready should return
3494 * positive number if @link is ready, 0 if it isn't, -ENODEV if
3495 * link doesn't seem to be occupied, other errno for other error
3496 * conditions.
3497 *
3498 * Transient -ENODEV conditions are allowed for
3499 * ATA_TMOUT_FF_WAIT.
3500 *
3501 * LOCKING:
3502 * EH context.
3503 *
3504 * RETURNS:
3505 * 0 if @linke is ready before @deadline; otherwise, -errno.
3506 */
3507int ata_wait_ready(struct ata_link *link, unsigned long deadline,
3508 int (*check_ready)(struct ata_link *link))
3509{
3510 unsigned long start = jiffies;
Tejun Heo341c2c92008-05-20 02:17:51 +09003511 unsigned long nodev_deadline = ata_deadline(start, ATA_TMOUT_FF_WAIT);
Tejun Heoaa2731a2008-04-07 22:47:19 +09003512 int warned = 0;
3513
Tejun Heob1c72912008-07-31 17:02:43 +09003514 /* Slave readiness can't be tested separately from master. On
3515 * M/S emulation configuration, this function should be called
3516 * only on the master and it will handle both master and slave.
3517 */
3518 WARN_ON(link == link->ap->slave_link);
3519
Tejun Heoaa2731a2008-04-07 22:47:19 +09003520 if (time_after(nodev_deadline, deadline))
3521 nodev_deadline = deadline;
3522
3523 while (1) {
3524 unsigned long now = jiffies;
3525 int ready, tmp;
3526
3527 ready = tmp = check_ready(link);
3528 if (ready > 0)
3529 return 0;
3530
3531 /* -ENODEV could be transient. Ignore -ENODEV if link
3532 * is online. Also, some SATA devices take a long
3533 * time to clear 0xff after reset. For example,
3534 * HHD424020F7SV00 iVDR needs >= 800ms while Quantum
3535 * GoVault needs even more than that. Wait for
3536 * ATA_TMOUT_FF_WAIT on -ENODEV if link isn't offline.
3537 *
3538 * Note that some PATA controllers (pata_ali) explode
3539 * if status register is read more than once when
3540 * there's no device attached.
3541 */
3542 if (ready == -ENODEV) {
3543 if (ata_link_online(link))
3544 ready = 0;
3545 else if ((link->ap->flags & ATA_FLAG_SATA) &&
3546 !ata_link_offline(link) &&
3547 time_before(now, nodev_deadline))
3548 ready = 0;
3549 }
3550
3551 if (ready)
3552 return ready;
3553 if (time_after(now, deadline))
3554 return -EBUSY;
3555
3556 if (!warned && time_after(now, start + 5 * HZ) &&
3557 (deadline - now > 3 * HZ)) {
3558 ata_link_printk(link, KERN_WARNING,
3559 "link is slow to respond, please be patient "
3560 "(ready=%d)\n", tmp);
3561 warned = 1;
3562 }
3563
3564 msleep(50);
3565 }
3566}
3567
3568/**
3569 * ata_wait_after_reset - wait for link to become ready after reset
3570 * @link: link to be waited on
3571 * @deadline: deadline jiffies for the operation
3572 * @check_ready: callback to check link readiness
3573 *
3574 * Wait for @link to become ready after reset.
3575 *
3576 * LOCKING:
3577 * EH context.
3578 *
3579 * RETURNS:
3580 * 0 if @linke is ready before @deadline; otherwise, -errno.
3581 */
Harvey Harrison2b4221b2008-04-24 18:37:34 -07003582int ata_wait_after_reset(struct ata_link *link, unsigned long deadline,
Tejun Heoaa2731a2008-04-07 22:47:19 +09003583 int (*check_ready)(struct ata_link *link))
3584{
Tejun Heo341c2c92008-05-20 02:17:51 +09003585 msleep(ATA_WAIT_AFTER_RESET);
Tejun Heoaa2731a2008-04-07 22:47:19 +09003586
3587 return ata_wait_ready(link, deadline, check_ready);
3588}
3589
3590/**
Tejun Heo936fd732007-08-06 18:36:23 +09003591 * sata_link_debounce - debounce SATA phy status
3592 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003593 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003594 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003595 *
Tejun Heo936fd732007-08-06 18:36:23 +09003596* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003597 * holding the same value where DET is not 1 for @duration polled
3598 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003599 * beginning of the stable state. Because DET gets stuck at 1 on
3600 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003601 * until timeout then returns 0 if DET is stable at 1.
3602 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003603 * @timeout is further limited by @deadline. The sooner of the
3604 * two is used.
3605 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003606 * LOCKING:
3607 * Kernel thread context (may sleep)
3608 *
3609 * RETURNS:
3610 * 0 on success, -errno on failure.
3611 */
Tejun Heo936fd732007-08-06 18:36:23 +09003612int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3613 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003614{
Tejun Heo341c2c92008-05-20 02:17:51 +09003615 unsigned long interval = params[0];
3616 unsigned long duration = params[1];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003617 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003618 u32 last, cur;
3619 int rc;
3620
Tejun Heo341c2c92008-05-20 02:17:51 +09003621 t = ata_deadline(jiffies, params[2]);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003622 if (time_before(t, deadline))
3623 deadline = t;
3624
Tejun Heo936fd732007-08-06 18:36:23 +09003625 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003626 return rc;
3627 cur &= 0xf;
3628
3629 last = cur;
3630 last_jiffies = jiffies;
3631
3632 while (1) {
Tejun Heo341c2c92008-05-20 02:17:51 +09003633 msleep(interval);
Tejun Heo936fd732007-08-06 18:36:23 +09003634 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003635 return rc;
3636 cur &= 0xf;
3637
3638 /* DET stable? */
3639 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003640 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003641 continue;
Tejun Heo341c2c92008-05-20 02:17:51 +09003642 if (time_after(jiffies,
3643 ata_deadline(last_jiffies, duration)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003644 return 0;
3645 continue;
3646 }
3647
3648 /* unstable, start over */
3649 last = cur;
3650 last_jiffies = jiffies;
3651
Tejun Heof1545152007-07-16 14:29:40 +09003652 /* Check deadline. If debouncing failed, return
3653 * -EPIPE to tell upper layer to lower link speed.
3654 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003655 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003656 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003657 }
3658}
3659
3660/**
Tejun Heo936fd732007-08-06 18:36:23 +09003661 * sata_link_resume - resume SATA link
3662 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003663 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003664 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003665 *
Tejun Heo936fd732007-08-06 18:36:23 +09003666 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003667 *
3668 * LOCKING:
3669 * Kernel thread context (may sleep)
3670 *
3671 * RETURNS:
3672 * 0 on success, -errno on failure.
3673 */
Tejun Heo936fd732007-08-06 18:36:23 +09003674int sata_link_resume(struct ata_link *link, const unsigned long *params,
3675 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003676{
Tejun Heoac371982008-04-07 22:47:19 +09003677 u32 scontrol, serror;
Tejun Heo81952c52006-05-15 20:57:47 +09003678 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003679
Tejun Heo936fd732007-08-06 18:36:23 +09003680 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003681 return rc;
3682
Tejun Heo852ee162006-04-01 01:38:18 +09003683 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003684
Tejun Heo936fd732007-08-06 18:36:23 +09003685 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003686 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003687
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003688 /* Some PHYs react badly if SStatus is pounded immediately
3689 * after resuming. Delay 200ms before debouncing.
3690 */
3691 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003692
Tejun Heoac371982008-04-07 22:47:19 +09003693 if ((rc = sata_link_debounce(link, params, deadline)))
3694 return rc;
3695
Tejun Heof0465192008-05-19 01:15:08 +09003696 /* clear SError, some PHYs require this even for SRST to work */
Tejun Heoac371982008-04-07 22:47:19 +09003697 if (!(rc = sata_scr_read(link, SCR_ERROR, &serror)))
3698 rc = sata_scr_write(link, SCR_ERROR, serror);
Tejun Heoac371982008-04-07 22:47:19 +09003699
Tejun Heof0465192008-05-19 01:15:08 +09003700 return rc != -EINVAL ? rc : 0;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003701}
3702
Tejun Heof5914a42006-05-31 18:27:48 +09003703/**
Tejun Heo0aa11132008-04-07 22:47:18 +09003704 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003705 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003706 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003707 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003708 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003709 * prereset makes libata abort whole reset sequence and give up
3710 * that port, so prereset should be best-effort. It does its
3711 * best to prepare for reset sequence but if things go wrong, it
3712 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003713 *
3714 * LOCKING:
3715 * Kernel thread context (may sleep)
3716 *
3717 * RETURNS:
3718 * 0 on success, -errno otherwise.
3719 */
Tejun Heo0aa11132008-04-07 22:47:18 +09003720int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003721{
Tejun Heocc0680a2007-08-06 18:36:23 +09003722 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003723 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003724 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003725 int rc;
3726
Tejun Heof5914a42006-05-31 18:27:48 +09003727 /* if we're about to do hardreset, nothing more to do */
3728 if (ehc->i.action & ATA_EH_HARDRESET)
3729 return 0;
3730
Tejun Heo936fd732007-08-06 18:36:23 +09003731 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003732 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003733 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003734 /* whine about phy resume failure but proceed */
3735 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003736 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003737 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003738 }
3739
Tejun Heo45db2f62008-04-08 01:46:56 +09003740 /* no point in trying softreset on offline link */
Tejun Heob1c72912008-07-31 17:02:43 +09003741 if (ata_phys_link_offline(link))
Tejun Heo45db2f62008-04-08 01:46:56 +09003742 ehc->i.action &= ~ATA_EH_SOFTRESET;
3743
Tejun Heof5914a42006-05-31 18:27:48 +09003744 return 0;
3745}
3746
Tejun Heoc2bd5802006-01-24 17:05:22 +09003747/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003748 * sata_link_hardreset - reset link via SATA phy reset
3749 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003750 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003751 * @deadline: deadline jiffies for the operation
Tejun Heo9dadd452008-04-07 22:47:19 +09003752 * @online: optional out parameter indicating link onlineness
3753 * @check_ready: optional callback to check link readiness
Tejun Heoc2bd5802006-01-24 17:05:22 +09003754 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003755 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heo9dadd452008-04-07 22:47:19 +09003756 * After hardreset, link readiness is waited upon using
3757 * ata_wait_ready() if @check_ready is specified. LLDs are
3758 * allowed to not specify @check_ready and wait itself after this
3759 * function returns. Device classification is LLD's
3760 * responsibility.
3761 *
3762 * *@online is set to one iff reset succeeded and @link is online
3763 * after reset.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003764 *
3765 * LOCKING:
3766 * Kernel thread context (may sleep)
3767 *
3768 * RETURNS:
3769 * 0 on success, -errno otherwise.
3770 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003771int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heo9dadd452008-04-07 22:47:19 +09003772 unsigned long deadline,
3773 bool *online, int (*check_ready)(struct ata_link *))
Tejun Heoc2bd5802006-01-24 17:05:22 +09003774{
Tejun Heo852ee162006-04-01 01:38:18 +09003775 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003776 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003777
Tejun Heoc2bd5802006-01-24 17:05:22 +09003778 DPRINTK("ENTER\n");
3779
Tejun Heo9dadd452008-04-07 22:47:19 +09003780 if (online)
3781 *online = false;
3782
Tejun Heo936fd732007-08-06 18:36:23 +09003783 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003784 /* SATA spec says nothing about how to reconfigure
3785 * spd. To be on the safe side, turn off phy during
3786 * reconfiguration. This works for at least ICH7 AHCI
3787 * and Sil3124.
3788 */
Tejun Heo936fd732007-08-06 18:36:23 +09003789 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003790 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003791
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003792 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003793
Tejun Heo936fd732007-08-06 18:36:23 +09003794 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003795 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003796
Tejun Heo936fd732007-08-06 18:36:23 +09003797 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003798 }
3799
3800 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003801 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003802 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003803
Tejun Heo852ee162006-04-01 01:38:18 +09003804 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003805
Tejun Heo936fd732007-08-06 18:36:23 +09003806 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003807 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003808
Tejun Heo1c3fae42006-04-02 20:53:28 +09003809 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003810 * 10.4.2 says at least 1 ms.
3811 */
3812 msleep(1);
3813
Tejun Heo936fd732007-08-06 18:36:23 +09003814 /* bring link back */
3815 rc = sata_link_resume(link, timing, deadline);
Tejun Heo9dadd452008-04-07 22:47:19 +09003816 if (rc)
3817 goto out;
3818 /* if link is offline nothing more to do */
Tejun Heob1c72912008-07-31 17:02:43 +09003819 if (ata_phys_link_offline(link))
Tejun Heo9dadd452008-04-07 22:47:19 +09003820 goto out;
3821
3822 /* Link is online. From this point, -ENODEV too is an error. */
3823 if (online)
3824 *online = true;
3825
Tejun Heo071f44b2008-04-07 22:47:22 +09003826 if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) {
Tejun Heo9dadd452008-04-07 22:47:19 +09003827 /* If PMP is supported, we have to do follow-up SRST.
3828 * Some PMPs don't send D2H Reg FIS after hardreset if
3829 * the first port is empty. Wait only for
3830 * ATA_TMOUT_PMP_SRST_WAIT.
3831 */
3832 if (check_ready) {
3833 unsigned long pmp_deadline;
3834
Tejun Heo341c2c92008-05-20 02:17:51 +09003835 pmp_deadline = ata_deadline(jiffies,
3836 ATA_TMOUT_PMP_SRST_WAIT);
Tejun Heo9dadd452008-04-07 22:47:19 +09003837 if (time_after(pmp_deadline, deadline))
3838 pmp_deadline = deadline;
3839 ata_wait_ready(link, pmp_deadline, check_ready);
3840 }
3841 rc = -EAGAIN;
3842 goto out;
3843 }
3844
3845 rc = 0;
3846 if (check_ready)
3847 rc = ata_wait_ready(link, deadline, check_ready);
Tejun Heob6103f62006-11-01 17:59:53 +09003848 out:
Tejun Heo0cbf0712008-05-19 01:15:05 +09003849 if (rc && rc != -EAGAIN) {
3850 /* online is set iff link is online && reset succeeded */
3851 if (online)
3852 *online = false;
Tejun Heo9dadd452008-04-07 22:47:19 +09003853 ata_link_printk(link, KERN_ERR,
3854 "COMRESET failed (errno=%d)\n", rc);
Tejun Heo0cbf0712008-05-19 01:15:05 +09003855 }
Tejun Heob6103f62006-11-01 17:59:53 +09003856 DPRINTK("EXIT, rc=%d\n", rc);
3857 return rc;
3858}
3859
3860/**
Tejun Heo57c9efd2008-04-07 22:47:19 +09003861 * sata_std_hardreset - COMRESET w/o waiting or classification
3862 * @link: link to reset
3863 * @class: resulting class of attached device
3864 * @deadline: deadline jiffies for the operation
3865 *
3866 * Standard SATA COMRESET w/o waiting or classification.
3867 *
3868 * LOCKING:
3869 * Kernel thread context (may sleep)
3870 *
3871 * RETURNS:
3872 * 0 if link offline, -EAGAIN if link online, -errno on errors.
3873 */
3874int sata_std_hardreset(struct ata_link *link, unsigned int *class,
3875 unsigned long deadline)
3876{
3877 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
3878 bool online;
3879 int rc;
3880
3881 /* do hardreset */
3882 rc = sata_link_hardreset(link, timing, deadline, &online, NULL);
Tejun Heo57c9efd2008-04-07 22:47:19 +09003883 return online ? -EAGAIN : rc;
3884}
3885
3886/**
Tejun Heo203c75b2008-04-07 22:47:18 +09003887 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003888 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003889 * @classes: classes of attached devices
3890 *
3891 * This function is invoked after a successful reset. Note that
3892 * the device might have been reset more than once using
3893 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003894 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003895 * LOCKING:
3896 * Kernel thread context (may sleep)
3897 */
Tejun Heo203c75b2008-04-07 22:47:18 +09003898void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003899{
Tejun Heof0465192008-05-19 01:15:08 +09003900 u32 serror;
3901
Tejun Heoc2bd5802006-01-24 17:05:22 +09003902 DPRINTK("ENTER\n");
3903
Tejun Heof0465192008-05-19 01:15:08 +09003904 /* reset complete, clear SError */
3905 if (!sata_scr_read(link, SCR_ERROR, &serror))
3906 sata_scr_write(link, SCR_ERROR, serror);
3907
Tejun Heoc2bd5802006-01-24 17:05:22 +09003908 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003909 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003910
Tejun Heoc2bd5802006-01-24 17:05:22 +09003911 DPRINTK("EXIT\n");
3912}
3913
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003914/**
Tejun Heo623a3122006-03-05 17:55:58 +09003915 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003916 * @dev: device to compare against
3917 * @new_class: class of the new device
3918 * @new_id: IDENTIFY page of the new device
3919 *
3920 * Compare @new_class and @new_id against @dev and determine
3921 * whether @dev is the device indicated by @new_class and
3922 * @new_id.
3923 *
3924 * LOCKING:
3925 * None.
3926 *
3927 * RETURNS:
3928 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3929 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003930static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3931 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003932{
3933 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003934 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3935 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003936
3937 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003938 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3939 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003940 return 0;
3941 }
3942
Tejun Heoa0cf7332007-01-02 20:18:49 +09003943 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3944 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3945 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3946 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003947
3948 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003949 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3950 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003951 return 0;
3952 }
3953
3954 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003955 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3956 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003957 return 0;
3958 }
3959
Tejun Heo623a3122006-03-05 17:55:58 +09003960 return 1;
3961}
3962
3963/**
Tejun Heofe309112007-05-15 03:28:15 +09003964 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003965 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003966 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003967 *
3968 * Re-read IDENTIFY page and make sure @dev is still attached to
3969 * the port.
3970 *
3971 * LOCKING:
3972 * Kernel thread context (may sleep)
3973 *
3974 * RETURNS:
3975 * 0 on success, negative errno otherwise
3976 */
Tejun Heofe309112007-05-15 03:28:15 +09003977int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003978{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003979 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003980 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003981 int rc;
3982
Tejun Heofe635c72006-05-15 20:57:35 +09003983 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003984 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003985 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003986 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003987
3988 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003989 if (!ata_dev_same_device(dev, class, id))
3990 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003991
Tejun Heofe635c72006-05-15 20:57:35 +09003992 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003993 return 0;
3994}
3995
3996/**
3997 * ata_dev_revalidate - Revalidate ATA device
3998 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09003999 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09004000 * @readid_flags: read ID flags
4001 *
4002 * Re-read IDENTIFY page, make sure @dev is still attached to the
4003 * port and reconfigure it according to the new IDENTIFY page.
4004 *
4005 * LOCKING:
4006 * Kernel thread context (may sleep)
4007 *
4008 * RETURNS:
4009 * 0 on success, negative errno otherwise
4010 */
Tejun Heo422c9da2007-09-23 13:14:12 +09004011int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
4012 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09004013{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004014 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09004015 int rc;
4016
4017 if (!ata_dev_enabled(dev))
4018 return -ENODEV;
4019
Tejun Heo422c9da2007-09-23 13:14:12 +09004020 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
4021 if (ata_class_enabled(new_class) &&
4022 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
4023 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
4024 dev->class, new_class);
4025 rc = -ENODEV;
4026 goto fail;
4027 }
4028
Tejun Heofe309112007-05-15 03:28:15 +09004029 /* re-read ID */
4030 rc = ata_dev_reread_id(dev, readid_flags);
4031 if (rc)
4032 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09004033
4034 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09004035 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004036 if (rc)
4037 goto fail;
4038
4039 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09004040 if (dev->class == ATA_DEV_ATA && n_sectors &&
4041 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004042 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
4043 "%llu != %llu\n",
4044 (unsigned long long)n_sectors,
4045 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09004046
4047 /* restore original n_sectors */
4048 dev->n_sectors = n_sectors;
4049
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004050 rc = -ENODEV;
4051 goto fail;
4052 }
4053
4054 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09004055
4056 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09004057 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09004058 return rc;
4059}
4060
Alan Cox6919a0a2006-10-27 19:08:46 -07004061struct ata_blacklist_entry {
4062 const char *model_num;
4063 const char *model_rev;
4064 unsigned long horkage;
4065};
4066
4067static const struct ata_blacklist_entry ata_device_blacklist [] = {
4068 /* Devices with DMA related problems under Linux */
4069 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
4070 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
4071 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
4072 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
4073 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
4074 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
4075 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
4076 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
4077 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
4078 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
4079 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
4080 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
4081 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
4082 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
4083 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
4084 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
4085 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
4086 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
4087 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
4088 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
4089 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
4090 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
4091 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
4092 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
4093 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
4094 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004095 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
4096 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004097 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04004098 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09004099 /* Odd clown on sil3726/4726 PMPs */
Tejun Heo50af2fa2008-05-19 01:15:14 +09004100 { "Config Disk", NULL, ATA_HORKAGE_DISABLE },
Alan Cox6919a0a2006-10-27 19:08:46 -07004101
Albert Lee18d6e9d2007-04-02 11:34:15 +08004102 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09004103 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Tejun Heo6a87e422008-11-03 19:01:09 +09004104 { "QUANTUM DAT DAT72-000", NULL, ATA_HORKAGE_ATAPI_MOD16_DMA },
Albert Lee18d6e9d2007-04-02 11:34:15 +08004105
Alan Cox6919a0a2006-10-27 19:08:46 -07004106 /* Devices we expect to fail diagnostics */
4107
4108 /* Devices where NCQ should be avoided */
4109 /* NCQ is slow */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004110 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo459ad682007-12-07 12:46:23 +09004111 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo09125ea2007-02-28 15:21:23 +09004112 /* http://thread.gmane.org/gmane.linux.ide/14907 */
4113 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08004114 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004115 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01004116 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Paolo Ornatida6f0ec2007-10-04 11:06:56 +09004117 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
Tejun Heoe41bd3e2007-12-09 19:45:39 +09004118 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
Lubomir Bulej5ccfca92008-12-22 11:35:22 +01004119 { "OCZ CORE_SSD", "02.10104", ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004120
Tejun Heoac70a962008-11-27 13:36:48 +09004121 /* Seagate NCQ + FLUSH CACHE firmware bug */
Tejun Heod10d4912008-12-11 13:42:42 +09004122 { "ST31500341AS", "SD15", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004123 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004124 { "ST31500341AS", "SD16", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004125 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004126 { "ST31500341AS", "SD17", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004127 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004128 { "ST31500341AS", "SD18", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004129 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004130 { "ST31500341AS", "SD19", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004131 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004132
4133 { "ST31000333AS", "SD15", ATA_HORKAGE_NONCQ |
4134 ATA_HORKAGE_FIRMWARE_WARN },
4135 { "ST31000333AS", "SD16", ATA_HORKAGE_NONCQ |
4136 ATA_HORKAGE_FIRMWARE_WARN },
4137 { "ST31000333AS", "SD17", ATA_HORKAGE_NONCQ |
4138 ATA_HORKAGE_FIRMWARE_WARN },
4139 { "ST31000333AS", "SD18", ATA_HORKAGE_NONCQ |
4140 ATA_HORKAGE_FIRMWARE_WARN },
4141 { "ST31000333AS", "SD19", ATA_HORKAGE_NONCQ |
4142 ATA_HORKAGE_FIRMWARE_WARN },
4143
4144 { "ST3640623AS", "SD15", ATA_HORKAGE_NONCQ |
4145 ATA_HORKAGE_FIRMWARE_WARN },
4146 { "ST3640623AS", "SD16", ATA_HORKAGE_NONCQ |
4147 ATA_HORKAGE_FIRMWARE_WARN },
4148 { "ST3640623AS", "SD17", ATA_HORKAGE_NONCQ |
4149 ATA_HORKAGE_FIRMWARE_WARN },
4150 { "ST3640623AS", "SD18", ATA_HORKAGE_NONCQ |
4151 ATA_HORKAGE_FIRMWARE_WARN },
4152 { "ST3640623AS", "SD19", ATA_HORKAGE_NONCQ |
4153 ATA_HORKAGE_FIRMWARE_WARN },
4154
4155 { "ST3640323AS", "SD15", ATA_HORKAGE_NONCQ |
4156 ATA_HORKAGE_FIRMWARE_WARN },
4157 { "ST3640323AS", "SD16", ATA_HORKAGE_NONCQ |
4158 ATA_HORKAGE_FIRMWARE_WARN },
4159 { "ST3640323AS", "SD17", ATA_HORKAGE_NONCQ |
4160 ATA_HORKAGE_FIRMWARE_WARN },
4161 { "ST3640323AS", "SD18", ATA_HORKAGE_NONCQ |
4162 ATA_HORKAGE_FIRMWARE_WARN },
4163 { "ST3640323AS", "SD19", ATA_HORKAGE_NONCQ |
4164 ATA_HORKAGE_FIRMWARE_WARN },
4165
4166 { "ST3320813AS", "SD15", ATA_HORKAGE_NONCQ |
4167 ATA_HORKAGE_FIRMWARE_WARN },
4168 { "ST3320813AS", "SD16", ATA_HORKAGE_NONCQ |
4169 ATA_HORKAGE_FIRMWARE_WARN },
4170 { "ST3320813AS", "SD17", ATA_HORKAGE_NONCQ |
4171 ATA_HORKAGE_FIRMWARE_WARN },
4172 { "ST3320813AS", "SD18", ATA_HORKAGE_NONCQ |
4173 ATA_HORKAGE_FIRMWARE_WARN },
4174 { "ST3320813AS", "SD19", ATA_HORKAGE_NONCQ |
4175 ATA_HORKAGE_FIRMWARE_WARN },
4176
4177 { "ST3320613AS", "SD15", ATA_HORKAGE_NONCQ |
4178 ATA_HORKAGE_FIRMWARE_WARN },
4179 { "ST3320613AS", "SD16", ATA_HORKAGE_NONCQ |
4180 ATA_HORKAGE_FIRMWARE_WARN },
4181 { "ST3320613AS", "SD17", ATA_HORKAGE_NONCQ |
4182 ATA_HORKAGE_FIRMWARE_WARN },
4183 { "ST3320613AS", "SD18", ATA_HORKAGE_NONCQ |
4184 ATA_HORKAGE_FIRMWARE_WARN },
4185 { "ST3320613AS", "SD19", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004186 ATA_HORKAGE_FIRMWARE_WARN },
4187
Robert Hancock36e337d2007-04-02 22:05:29 -06004188 /* Blacklist entries taken from Silicon Image 3124/3132
4189 Windows driver .inf file - also several Linux problem reports */
4190 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
4191 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
4192 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07004193
Tejun Heo16c55b02007-08-29 11:58:33 +09004194 /* devices which puke on READ_NATIVE_MAX */
4195 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
4196 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
4197 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
4198 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004199
Alan Cox93328e12007-09-29 04:06:48 -04004200 /* Devices which report 1 sector over size HPA */
4201 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
4202 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
Mikko Rapelib152fcd2008-02-19 01:41:25 +01004203 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
Alan Cox93328e12007-09-29 04:06:48 -04004204
Alan Cox6bbfd532007-11-05 22:58:58 +00004205 /* Devices which get the IVB wrong */
4206 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
Alan Coxa79067e2008-04-29 14:08:36 +01004207 /* Maybe we should just blacklist TSSTcorp... */
4208 { "TSSTcorp CDDVDW SH-S202H", "SB00", ATA_HORKAGE_IVB, },
4209 { "TSSTcorp CDDVDW SH-S202H", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00004210 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
Peter Missele9f33402007-11-27 18:04:42 +01004211 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
4212 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
4213 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00004214
Jens Axboe9ce8e302008-08-27 15:23:18 +02004215 /* Devices that do not need bridging limits applied */
4216 { "MTRON MSP-SATA*", NULL, ATA_HORKAGE_BRIDGE_OK, },
4217
Alan Cox6919a0a2006-10-27 19:08:46 -07004218 /* End Marker */
4219 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004221
Adrian Bunk741b7762007-10-24 18:23:06 +02004222static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004223{
4224 const char *p;
4225 int len;
4226
4227 /*
4228 * check for trailing wildcard: *\0
4229 */
4230 p = strchr(patt, wildchar);
4231 if (p && ((*(p + 1)) == 0))
4232 len = p - patt;
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004233 else {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004234 len = strlen(name);
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004235 if (!len) {
4236 if (!*patt)
4237 return 0;
4238 return -1;
4239 }
4240 }
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004241
4242 return strncmp(patt, name, len);
4243}
4244
Tejun Heo75683fe2007-07-05 13:31:27 +09004245static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004247 unsigned char model_num[ATA_ID_PROD_LEN + 1];
4248 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07004249 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08004250
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004251 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
4252 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253
Alan Cox6919a0a2006-10-27 19:08:46 -07004254 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004255 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07004256 if (ad->model_rev == NULL)
4257 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004258 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07004259 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004260 }
Alan Cox6919a0a2006-10-27 19:08:46 -07004261 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 return 0;
4264}
4265
Alan Cox6919a0a2006-10-27 19:08:46 -07004266static int ata_dma_blacklisted(const struct ata_device *dev)
4267{
4268 /* We don't support polling DMA.
4269 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
4270 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
4271 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004272 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07004273 (dev->flags & ATA_DFLAG_CDB_INTR))
4274 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09004275 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07004276}
4277
Tejun Heoa6d5a512006-03-06 04:31:57 +09004278/**
Alan Cox6bbfd532007-11-05 22:58:58 +00004279 * ata_is_40wire - check drive side detection
4280 * @dev: device
4281 *
4282 * Perform drive side detection decoding, allowing for device vendors
4283 * who can't follow the documentation.
4284 */
4285
4286static int ata_is_40wire(struct ata_device *dev)
4287{
4288 if (dev->horkage & ATA_HORKAGE_IVB)
4289 return ata_drive_40wire_relaxed(dev->id);
4290 return ata_drive_40wire(dev->id);
4291}
4292
4293/**
Alan Cox15a55512008-03-28 14:33:46 -07004294 * cable_is_40wire - 40/80/SATA decider
4295 * @ap: port to consider
4296 *
4297 * This function encapsulates the policy for speed management
4298 * in one place. At the moment we don't cache the result but
4299 * there is a good case for setting ap->cbl to the result when
4300 * we are called with unknown cables (and figuring out if it
4301 * impacts hotplug at all).
4302 *
4303 * Return 1 if the cable appears to be 40 wire.
4304 */
4305
4306static int cable_is_40wire(struct ata_port *ap)
4307{
4308 struct ata_link *link;
4309 struct ata_device *dev;
4310
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004311 /* If the controller thinks we are 40 wire, we are. */
Alan Cox15a55512008-03-28 14:33:46 -07004312 if (ap->cbl == ATA_CBL_PATA40)
4313 return 1;
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004314
4315 /* If the controller thinks we are 80 wire, we are. */
Alan Cox15a55512008-03-28 14:33:46 -07004316 if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA)
4317 return 0;
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004318
4319 /* If the system is known to be 40 wire short cable (eg
4320 * laptop), then we allow 80 wire modes even if the drive
4321 * isn't sure.
4322 */
Alan Coxf7920682008-04-08 16:37:50 +01004323 if (ap->cbl == ATA_CBL_PATA40_SHORT)
4324 return 0;
Alan Cox15a55512008-03-28 14:33:46 -07004325
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004326 /* If the controller doesn't know, we scan.
4327 *
4328 * Note: We look for all 40 wire detects at this point. Any
4329 * 80 wire detect is taken to be 80 wire cable because
4330 * - in many setups only the one drive (slave if present) will
4331 * give a valid detect
4332 * - if you have a non detect capable drive you don't want it
4333 * to colour the choice
4334 */
Tejun Heo1eca4362008-11-03 20:03:17 +09004335 ata_for_each_link(link, ap, EDGE) {
4336 ata_for_each_dev(dev, link, ENABLED) {
4337 if (!ata_is_40wire(dev))
Alan Cox15a55512008-03-28 14:33:46 -07004338 return 0;
4339 }
4340 }
4341 return 1;
4342}
4343
4344/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09004345 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09004346 * @dev: Device to compute xfermask for
4347 *
Tejun Heoacf356b2006-03-24 14:07:50 +09004348 * Compute supported xfermask of @dev and store it in
4349 * dev->*_mask. This function is responsible for applying all
4350 * known limits including host controller limits, device
4351 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09004352 *
4353 * LOCKING:
4354 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09004355 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004356static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004358 struct ata_link *link = dev->link;
4359 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04004360 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09004361 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362
Tejun Heo37deecb2006-08-10 16:59:07 +09004363 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09004364 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4365 ap->mwdma_mask, ap->udma_mask);
4366
Robert Hancock8343f882007-03-06 02:37:51 -08004367 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09004368 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4369 dev->mwdma_mask, dev->udma_mask);
4370 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09004371
Alan Coxb352e572006-08-10 18:52:12 +01004372 /*
4373 * CFA Advanced TrueIDE timings are not allowed on a shared
4374 * cable
4375 */
4376 if (ata_dev_pair(dev)) {
4377 /* No PIO5 or PIO6 */
4378 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4379 /* No MWDMA3 or MWDMA 4 */
4380 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4381 }
4382
Tejun Heo37deecb2006-08-10 16:59:07 +09004383 if (ata_dma_blacklisted(dev)) {
4384 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09004385 ata_dev_printk(dev, KERN_WARNING,
4386 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09004387 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09004388
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01004389 if ((host->flags & ATA_HOST_SIMPLEX) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004390 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09004391 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4392 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4393 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01004394 }
Tejun Heo565083e2006-04-02 17:54:47 +09004395
Jeff Garzike4246752007-03-09 09:56:46 -05004396 if (ap->flags & ATA_FLAG_NO_IORDY)
4397 xfer_mask &= ata_pio_mask_no_iordy(dev);
4398
Alan Cox5444a6f2006-03-27 18:58:20 +01004399 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05004400 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01004401
Robert Hancock8343f882007-03-06 02:37:51 -08004402 /* Apply cable rule here. Don't apply it early because when
4403 * we handle hot plug the cable type can itself change.
4404 * Check this last so that we know if the transfer rate was
4405 * solely limited by the cable.
4406 * Unknown or 80 wire cables reported host side are checked
4407 * drive side as well. Cases where we know a 40wire cable
4408 * is used safely for 80 are not checked here.
4409 */
4410 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4411 /* UDMA/44 or higher would be available */
Alan Cox15a55512008-03-28 14:33:46 -07004412 if (cable_is_40wire(ap)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004413 ata_dev_printk(dev, KERN_WARNING,
Robert Hancock8343f882007-03-06 02:37:51 -08004414 "limited to UDMA/33 due to 40-wire cable\n");
4415 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4416 }
4417
Tejun Heo565083e2006-04-02 17:54:47 +09004418 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4419 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420}
4421
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 * @dev: Device to which command will be sent
4425 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004426 * Issue SET FEATURES - XFER MODE command to device @dev
4427 * on port @ap.
4428 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004430 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004431 *
4432 * RETURNS:
4433 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 */
4435
Tejun Heo3373efd2006-05-15 20:57:53 +09004436static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437{
Tejun Heoa0123702005-12-13 14:49:31 +09004438 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004439 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440
4441 /* set up set-features taskfile */
4442 DPRINTK("set features - xfer mode\n");
4443
Tejun Heo464cf172007-05-27 15:10:40 +02004444 /* Some controllers and ATAPI devices show flaky interrupt
4445 * behavior after setting xfer mode. Use polling instead.
4446 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004447 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004448 tf.command = ATA_CMD_SET_FEATURES;
4449 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004450 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004451 tf.protocol = ATA_PROT_NODATA;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004452 /* If we are using IORDY we must send the mode setting command */
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004453 if (ata_pio_need_iordy(dev))
4454 tf.nsect = dev->xfer_mode;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004455 /* If the device has IORDY and the controller does not - turn it off */
4456 else if (ata_id_has_iordy(dev->id))
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004457 tf.nsect = 0x01;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004458 else /* In the ancient relic department - skip all of this */
4459 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460
Tejun Heo2b789102007-10-09 15:05:44 +09004461 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
Tejun Heo83206a22006-03-24 15:25:31 +09004463 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4464 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466/**
Jeff Garzik218f3d32007-10-25 00:33:27 -04004467 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004468 * @dev: Device to which command will be sent
4469 * @enable: Whether to enable or disable the feature
Jeff Garzik218f3d32007-10-25 00:33:27 -04004470 * @feature: The sector count represents the feature to set
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004471 *
4472 * Issue SET FEATURES - SATA FEATURES command to device @dev
Jeff Garzik218f3d32007-10-25 00:33:27 -04004473 * on port @ap with sector count
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004474 *
4475 * LOCKING:
4476 * PCI/etc. bus probe sem.
4477 *
4478 * RETURNS:
4479 * 0 on success, AC_ERR_* mask otherwise.
4480 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04004481static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4482 u8 feature)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004483{
4484 struct ata_taskfile tf;
4485 unsigned int err_mask;
4486
4487 /* set up set-features taskfile */
4488 DPRINTK("set features - SATA features\n");
4489
4490 ata_tf_init(dev, &tf);
4491 tf.command = ATA_CMD_SET_FEATURES;
4492 tf.feature = enable;
4493 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4494 tf.protocol = ATA_PROT_NODATA;
Jeff Garzik218f3d32007-10-25 00:33:27 -04004495 tf.nsect = feature;
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004496
Tejun Heo2b789102007-10-09 15:05:44 +09004497 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004498
4499 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4500 return err_mask;
4501}
4502
4503/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004504 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004505 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004506 * @heads: Number of heads (taskfile parameter)
4507 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004508 *
4509 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004510 * Kernel thread context (may sleep)
4511 *
4512 * RETURNS:
4513 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004514 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004515static unsigned int ata_dev_init_params(struct ata_device *dev,
4516 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004517{
Tejun Heoa0123702005-12-13 14:49:31 +09004518 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004519 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004520
4521 /* Number of sectors per track 1-255. Number of heads 1-16 */
4522 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004523 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004524
4525 /* set up init dev params taskfile */
4526 DPRINTK("init dev params \n");
4527
Tejun Heo3373efd2006-05-15 20:57:53 +09004528 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004529 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4530 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4531 tf.protocol = ATA_PROT_NODATA;
4532 tf.nsect = sectors;
4533 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004534
Tejun Heo2b789102007-10-09 15:05:44 +09004535 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004536 /* A clean abort indicates an original or just out of spec drive
4537 and we should continue as we issue the setup based on the
4538 drive reported working geometry */
4539 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4540 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004541
Tejun Heo6aff8f12006-02-15 18:24:09 +09004542 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4543 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004544}
4545
4546/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004547 * ata_sg_clean - Unmap DMA memory associated with command
4548 * @qc: Command containing DMA memory to be released
4549 *
4550 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 *
4552 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004553 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004555void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556{
4557 struct ata_port *ap = qc->ap;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004558 struct scatterlist *sg = qc->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 int dir = qc->dma_dir;
4560
Tejun Heoefcb3cf2009-01-09 19:19:14 +09004561 WARN_ON_ONCE(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
James Bottomleydde20202008-02-19 11:36:56 +01004563 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
James Bottomleydde20202008-02-19 11:36:56 +01004565 if (qc->n_elem)
4566 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
4568 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004569 qc->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570}
4571
4572/**
Tejun Heo5895ef92008-06-17 12:36:26 +09004573 * atapi_check_dma - Check whether ATAPI DMA can be supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 * @qc: Metadata associated with taskfile to check
4575 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004576 * Allow low-level driver to filter ATA PACKET commands, returning
4577 * a status indicating whether or not it is OK to use DMA for the
4578 * supplied PACKET command.
4579 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004581 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004582 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 * RETURNS: 0 when ATAPI DMA can be used
4584 * nonzero otherwise
4585 */
Tejun Heo5895ef92008-06-17 12:36:26 +09004586int atapi_check_dma(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587{
4588 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589
Tejun Heob9a41972007-06-27 02:48:43 +09004590 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4591 * few ATAPI devices choke on such DMA requests.
4592 */
Tejun Heo6a87e422008-11-03 19:01:09 +09004593 if (!(qc->dev->horkage & ATA_HORKAGE_ATAPI_MOD16_DMA) &&
4594 unlikely(qc->nbytes & 15))
Tejun Heob9a41972007-06-27 02:48:43 +09004595 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004596
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004598 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599
Tejun Heob9a41972007-06-27 02:48:43 +09004600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601}
Tejun Heob9a41972007-06-27 02:48:43 +09004602
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004604 * ata_std_qc_defer - Check whether a qc needs to be deferred
4605 * @qc: ATA command in question
4606 *
4607 * Non-NCQ commands cannot run with any other command, NCQ or
4608 * not. As upper layer only knows the queue depth, we are
4609 * responsible for maintaining exclusion. This function checks
4610 * whether a new command @qc can be issued.
4611 *
4612 * LOCKING:
4613 * spin_lock_irqsave(host lock)
4614 *
4615 * RETURNS:
4616 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4617 */
4618int ata_std_qc_defer(struct ata_queued_cmd *qc)
4619{
4620 struct ata_link *link = qc->dev->link;
4621
4622 if (qc->tf.protocol == ATA_PROT_NCQ) {
4623 if (!ata_tag_valid(link->active_tag))
4624 return 0;
4625 } else {
4626 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4627 return 0;
4628 }
4629
4630 return ATA_DEFER_LINK;
4631}
4632
Brian Kinge46834c2006-03-17 17:04:03 -06004633void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4634
Jeff Garzik0cba6322005-05-30 19:49:12 -04004635/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004636 * ata_sg_init - Associate command with scatter-gather table.
4637 * @qc: Command to be associated
4638 * @sg: Scatter-gather table.
4639 * @n_elem: Number of elements in s/g table.
4640 *
4641 * Initialize the data-related elements of queued_cmd @qc
4642 * to point to a scatter-gather table @sg, containing @n_elem
4643 * elements.
4644 *
4645 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004646 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004647 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4649 unsigned int n_elem)
4650{
Tejun Heoff2aeb12007-12-05 16:43:11 +09004651 qc->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 qc->n_elem = n_elem;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004653 qc->cursg = qc->sg;
4654}
4655
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004657 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4658 * @qc: Command with scatter-gather table to be mapped.
4659 *
4660 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 *
4662 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004663 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 *
4665 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004666 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667 *
4668 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669static int ata_sg_setup(struct ata_queued_cmd *qc)
4670{
4671 struct ata_port *ap = qc->ap;
James Bottomleydde20202008-02-19 11:36:56 +01004672 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
Tejun Heo44877b42007-02-21 01:06:51 +09004674 VPRINTK("ENTER, ata%u\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675
James Bottomleydde20202008-02-19 11:36:56 +01004676 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
4677 if (n_elem < 1)
4678 return -1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004679
James Bottomleydde20202008-02-19 11:36:56 +01004680 DPRINTK("%d sg elements mapped\n", n_elem);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004681
James Bottomleydde20202008-02-19 11:36:56 +01004682 qc->n_elem = n_elem;
Tejun Heof92a2632007-12-05 16:43:10 +09004683 qc->flags |= ATA_QCFLAG_DMAMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684
4685 return 0;
4686}
4687
4688/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004689 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004690 * @buf: Buffer to swap
4691 * @buf_words: Number of 16-bit words in buffer.
4692 *
4693 * Swap halves of 16-bit words if needed to convert from
4694 * little-endian byte order to native cpu byte order, or
4695 * vice-versa.
4696 *
4697 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004698 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004699 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700void swap_buf_le16(u16 *buf, unsigned int buf_words)
4701{
4702#ifdef __BIG_ENDIAN
4703 unsigned int i;
4704
4705 for (i = 0; i < buf_words; i++)
4706 buf[i] = le16_to_cpu(buf[i]);
4707#endif /* __BIG_ENDIAN */
4708}
4709
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004710/**
Tejun Heo8a8bc222008-11-10 14:48:21 +09004711 * ata_qc_new - Request an available ATA command, for queueing
4712 * @ap: Port associated with device @dev
4713 * @dev: Device from whom we request an available command structure
4714 *
4715 * LOCKING:
4716 * None.
4717 */
4718
4719static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4720{
4721 struct ata_queued_cmd *qc = NULL;
4722 unsigned int i;
4723
4724 /* no command while frozen */
4725 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
4726 return NULL;
4727
4728 /* the last tag is reserved for internal command. */
4729 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
4730 if (!test_and_set_bit(i, &ap->qc_allocated)) {
4731 qc = __ata_qc_from_tag(ap, i);
4732 break;
4733 }
4734
4735 if (qc)
4736 qc->tag = i;
4737
4738 return qc;
4739}
4740
4741/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 * @dev: Device from whom we request an available command structure
4744 *
4745 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004746 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 */
4748
Tejun Heo8a8bc222008-11-10 14:48:21 +09004749struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004751 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 struct ata_queued_cmd *qc;
4753
Tejun Heo8a8bc222008-11-10 14:48:21 +09004754 qc = ata_qc_new(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756 qc->scsicmd = NULL;
4757 qc->ap = ap;
4758 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004760 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 }
4762
4763 return qc;
4764}
4765
Tejun Heo8a8bc222008-11-10 14:48:21 +09004766/**
4767 * ata_qc_free - free unused ata_queued_cmd
4768 * @qc: Command to complete
4769 *
4770 * Designed to free unused ata_queued_cmd object
4771 * in case something prevents using it.
4772 *
4773 * LOCKING:
4774 * spin_lock_irqsave(host lock)
4775 */
4776void ata_qc_free(struct ata_queued_cmd *qc)
4777{
4778 struct ata_port *ap = qc->ap;
4779 unsigned int tag;
4780
Tejun Heoefcb3cf2009-01-09 19:19:14 +09004781 WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
Tejun Heo8a8bc222008-11-10 14:48:21 +09004782
4783 qc->flags = 0;
4784 tag = qc->tag;
4785 if (likely(ata_tag_valid(tag))) {
4786 qc->tag = ATA_TAG_POISON;
4787 clear_bit(tag, &ap->qc_allocated);
4788 }
4789}
4790
Tejun Heo76014422006-02-11 15:13:49 +09004791void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004793 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004794 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004795
Tejun Heoefcb3cf2009-01-09 19:19:14 +09004796 WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4797 WARN_ON_ONCE(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4800 ata_sg_clean(qc);
4801
Tejun Heo7401abf2006-05-15 20:57:32 +09004802 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09004803 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004804 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09004805 if (!link->sactive)
4806 ap->nr_active_links--;
4807 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004808 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09004809 ap->nr_active_links--;
4810 }
4811
4812 /* clear exclusive status */
4813 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
4814 ap->excl_link == link))
4815 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09004816
Albert Lee3f3791d2005-08-16 14:25:38 +08004817 /* atapi: mark qc as inactive to prevent the interrupt handler
4818 * from completing the command twice later, before the error handler
4819 * is called. (when rc != 0 and atapi request sense is needed)
4820 */
4821 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004822 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004823
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004825 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826}
4827
Tejun Heo39599a52006-11-14 22:37:35 +09004828static void fill_result_tf(struct ata_queued_cmd *qc)
4829{
4830 struct ata_port *ap = qc->ap;
4831
Tejun Heo39599a52006-11-14 22:37:35 +09004832 qc->result_tf.flags = qc->tf.flags;
Tejun Heo22183bf2008-04-07 22:47:20 +09004833 ap->ops->qc_fill_rtf(qc);
Tejun Heo39599a52006-11-14 22:37:35 +09004834}
4835
Tejun Heo00115e02007-11-27 19:28:58 +09004836static void ata_verify_xfer(struct ata_queued_cmd *qc)
4837{
4838 struct ata_device *dev = qc->dev;
4839
4840 if (ata_tag_internal(qc->tag))
4841 return;
4842
4843 if (ata_is_nodata(qc->tf.protocol))
4844 return;
4845
4846 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
4847 return;
4848
4849 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
4850}
4851
Tejun Heof686bcb2006-05-15 20:58:05 +09004852/**
4853 * ata_qc_complete - Complete an active ATA command
4854 * @qc: Command to complete
Tejun Heof686bcb2006-05-15 20:58:05 +09004855 *
4856 * Indicate to the mid and upper layers that an ATA
4857 * command has completed, with either an ok or not-ok status.
4858 *
4859 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004860 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09004861 */
4862void ata_qc_complete(struct ata_queued_cmd *qc)
4863{
4864 struct ata_port *ap = qc->ap;
4865
4866 /* XXX: New EH and old EH use different mechanisms to
4867 * synchronize EH with regular execution path.
4868 *
4869 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4870 * Normal execution path is responsible for not accessing a
4871 * failed qc. libata core enforces the rule by returning NULL
4872 * from ata_qc_from_tag() for failed qcs.
4873 *
4874 * Old EH depends on ata_qc_complete() nullifying completion
4875 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4876 * not synchronize with interrupt handler. Only PIO task is
4877 * taken care of.
4878 */
4879 if (ap->ops->error_handler) {
Tejun Heo4dbfa392007-10-25 18:22:44 +09004880 struct ata_device *dev = qc->dev;
4881 struct ata_eh_info *ehi = &dev->link->eh_info;
4882
Tejun Heoefcb3cf2009-01-09 19:19:14 +09004883 WARN_ON_ONCE(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09004884
4885 if (unlikely(qc->err_mask))
4886 qc->flags |= ATA_QCFLAG_FAILED;
4887
4888 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4889 if (!ata_tag_internal(qc->tag)) {
4890 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09004891 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004892 ata_qc_schedule_eh(qc);
4893 return;
4894 }
4895 }
4896
4897 /* read result TF if requested */
4898 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004899 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004900
Tejun Heo4dbfa392007-10-25 18:22:44 +09004901 /* Some commands need post-processing after successful
4902 * completion.
4903 */
4904 switch (qc->tf.command) {
4905 case ATA_CMD_SET_FEATURES:
4906 if (qc->tf.feature != SETFEATURES_WC_ON &&
4907 qc->tf.feature != SETFEATURES_WC_OFF)
4908 break;
4909 /* fall through */
4910 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
4911 case ATA_CMD_SET_MULTI: /* multi_count changed */
4912 /* revalidate device */
4913 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
4914 ata_port_schedule_eh(ap);
4915 break;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004916
4917 case ATA_CMD_SLEEP:
4918 dev->flags |= ATA_DFLAG_SLEEPING;
4919 break;
Tejun Heo4dbfa392007-10-25 18:22:44 +09004920 }
4921
Tejun Heo00115e02007-11-27 19:28:58 +09004922 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
4923 ata_verify_xfer(qc);
4924
Tejun Heof686bcb2006-05-15 20:58:05 +09004925 __ata_qc_complete(qc);
4926 } else {
4927 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4928 return;
4929
4930 /* read result TF if failed or requested */
4931 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004932 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004933
4934 __ata_qc_complete(qc);
4935 }
4936}
4937
Tejun Heodedaf2b2006-05-15 21:03:43 +09004938/**
4939 * ata_qc_complete_multiple - Complete multiple qcs successfully
4940 * @ap: port in question
4941 * @qc_active: new qc_active mask
Tejun Heodedaf2b2006-05-15 21:03:43 +09004942 *
4943 * Complete in-flight commands. This functions is meant to be
4944 * called from low-level driver's interrupt routine to complete
4945 * requests normally. ap->qc_active and @qc_active is compared
4946 * and commands are completed accordingly.
4947 *
4948 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004949 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004950 *
4951 * RETURNS:
4952 * Number of completed commands on success, -errno otherwise.
4953 */
Tejun Heo79f97da2008-04-07 22:47:20 +09004954int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004955{
4956 int nr_done = 0;
4957 u32 done_mask;
4958 int i;
4959
4960 done_mask = ap->qc_active ^ qc_active;
4961
4962 if (unlikely(done_mask & qc_active)) {
4963 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4964 "(%08x->%08x)\n", ap->qc_active, qc_active);
4965 return -EINVAL;
4966 }
4967
4968 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4969 struct ata_queued_cmd *qc;
4970
4971 if (!(done_mask & (1 << i)))
4972 continue;
4973
4974 if ((qc = ata_qc_from_tag(ap, i))) {
Tejun Heodedaf2b2006-05-15 21:03:43 +09004975 ata_qc_complete(qc);
4976 nr_done++;
4977 }
4978 }
4979
4980 return nr_done;
4981}
4982
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983/**
4984 * ata_qc_issue - issue taskfile to device
4985 * @qc: command to issue to device
4986 *
4987 * Prepare an ATA command to submission to device.
4988 * This includes mapping the data into a DMA-able
4989 * area, filling in the S/G table, and finally
4990 * writing the taskfile to hardware, starting the command.
4991 *
4992 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004993 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004995void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996{
4997 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004998 struct ata_link *link = qc->dev->link;
Tejun Heo405e66b2007-11-27 19:28:53 +09004999 u8 prot = qc->tf.protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000
Tejun Heodedaf2b2006-05-15 21:03:43 +09005001 /* Make sure only one non-NCQ command is outstanding. The
5002 * check is skipped for old EH because it reuses active qc to
5003 * request ATAPI sense.
5004 */
Tejun Heoefcb3cf2009-01-09 19:19:14 +09005005 WARN_ON_ONCE(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09005006
Tejun Heo1973a022007-12-05 10:36:13 +09005007 if (ata_is_ncq(prot)) {
Tejun Heoefcb3cf2009-01-09 19:19:14 +09005008 WARN_ON_ONCE(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09005009
5010 if (!link->sactive)
5011 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005012 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005013 } else {
Tejun Heoefcb3cf2009-01-09 19:19:14 +09005014 WARN_ON_ONCE(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09005015
5016 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005017 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005018 }
5019
Tejun Heoe4a70e72006-03-31 20:36:47 +09005020 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005021 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005022
Tejun Heof92a2632007-12-05 16:43:10 +09005023 /* We guarantee to LLDs that they will have at least one
5024 * non-zero sg if the command is a data command.
5025 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09005026 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
Tejun Heof92a2632007-12-05 16:43:10 +09005027
Tejun Heo405e66b2007-11-27 19:28:53 +09005028 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
Tejun Heof92a2632007-12-05 16:43:10 +09005029 (ap->flags & ATA_FLAG_PIO_DMA)))
Tejun Heo001102d2007-12-05 16:43:09 +09005030 if (ata_sg_setup(qc))
5031 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032
Tejun Heocf480622008-01-24 00:05:14 +09005033 /* if device is sleeping, schedule reset and abort the link */
Tejun Heo054a5fb2007-10-25 18:30:36 +09005034 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
Tejun Heocf480622008-01-24 00:05:14 +09005035 link->eh_info.action |= ATA_EH_RESET;
Tejun Heo054a5fb2007-10-25 18:30:36 +09005036 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
5037 ata_link_abort(link);
5038 return;
5039 }
5040
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 ap->ops->qc_prep(qc);
5042
Tejun Heo8e0e6942006-03-31 20:41:11 +09005043 qc->err_mask |= ap->ops->qc_issue(qc);
5044 if (unlikely(qc->err_mask))
5045 goto err;
5046 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047
Tejun Heo8e436af2006-01-23 13:09:36 +09005048sg_err:
Tejun Heo8e0e6942006-03-31 20:41:11 +09005049 qc->err_mask |= AC_ERR_SYSTEM;
5050err:
5051 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052}
5053
5054/**
Tejun Heo34bf2172006-05-15 20:57:46 +09005055 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09005056 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09005057 *
Tejun Heo936fd732007-08-06 18:36:23 +09005058 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09005059 *
5060 * LOCKING:
5061 * None.
5062 *
5063 * RETURNS:
5064 * 1 if SCRs are accessible, 0 otherwise.
5065 */
Tejun Heo936fd732007-08-06 18:36:23 +09005066int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005067{
Tejun Heo936fd732007-08-06 18:36:23 +09005068 struct ata_port *ap = link->ap;
5069
Tejun Heoa16abc02007-05-21 18:33:47 +02005070 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09005071}
5072
5073/**
5074 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005075 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005076 * @reg: SCR to read
5077 * @val: Place to store read value
5078 *
Tejun Heo936fd732007-08-06 18:36:23 +09005079 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09005080 * guaranteed to succeed if @link is ap->link, the cable type of
5081 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09005082 *
5083 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09005084 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09005085 *
5086 * RETURNS:
5087 * 0 on success, negative errno on failure.
5088 */
Tejun Heo936fd732007-08-06 18:36:23 +09005089int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005090{
Tejun Heo633273a32007-09-23 13:19:54 +09005091 if (ata_is_host_link(link)) {
Tejun Heo633273a32007-09-23 13:19:54 +09005092 if (sata_scr_valid(link))
Tejun Heo82ef04f2008-07-31 17:02:40 +09005093 return link->ap->ops->scr_read(link, reg, val);
Tejun Heo633273a32007-09-23 13:19:54 +09005094 return -EOPNOTSUPP;
5095 }
5096
5097 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005098}
5099
5100/**
5101 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005102 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005103 * @reg: SCR to write
5104 * @val: value to write
5105 *
Tejun Heo936fd732007-08-06 18:36:23 +09005106 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09005107 * guaranteed to succeed if @link is ap->link, the cable type of
5108 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09005109 *
5110 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09005111 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09005112 *
5113 * RETURNS:
5114 * 0 on success, negative errno on failure.
5115 */
Tejun Heo936fd732007-08-06 18:36:23 +09005116int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005117{
Tejun Heo633273a32007-09-23 13:19:54 +09005118 if (ata_is_host_link(link)) {
Tejun Heo633273a32007-09-23 13:19:54 +09005119 if (sata_scr_valid(link))
Tejun Heo82ef04f2008-07-31 17:02:40 +09005120 return link->ap->ops->scr_write(link, reg, val);
Tejun Heo633273a32007-09-23 13:19:54 +09005121 return -EOPNOTSUPP;
5122 }
5123
5124 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005125}
5126
5127/**
5128 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09005129 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005130 * @reg: SCR to write
5131 * @val: value to write
5132 *
5133 * This function is identical to sata_scr_write() except that this
5134 * function performs flush after writing to the register.
5135 *
5136 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09005137 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09005138 *
5139 * RETURNS:
5140 * 0 on success, negative errno on failure.
5141 */
Tejun Heo936fd732007-08-06 18:36:23 +09005142int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005143{
Tejun Heo633273a32007-09-23 13:19:54 +09005144 if (ata_is_host_link(link)) {
Tejun Heo633273a32007-09-23 13:19:54 +09005145 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09005146
Tejun Heo633273a32007-09-23 13:19:54 +09005147 if (sata_scr_valid(link)) {
Tejun Heo82ef04f2008-07-31 17:02:40 +09005148 rc = link->ap->ops->scr_write(link, reg, val);
Tejun Heo633273a32007-09-23 13:19:54 +09005149 if (rc == 0)
Tejun Heo82ef04f2008-07-31 17:02:40 +09005150 rc = link->ap->ops->scr_read(link, reg, &val);
Tejun Heo633273a32007-09-23 13:19:54 +09005151 return rc;
5152 }
5153 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09005154 }
Tejun Heo633273a32007-09-23 13:19:54 +09005155
5156 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005157}
5158
5159/**
Tejun Heob1c72912008-07-31 17:02:43 +09005160 * ata_phys_link_online - test whether the given link is online
Tejun Heo936fd732007-08-06 18:36:23 +09005161 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005162 *
Tejun Heo936fd732007-08-06 18:36:23 +09005163 * Test whether @link is online. Note that this function returns
5164 * 0 if online status of @link cannot be obtained, so
5165 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005166 *
5167 * LOCKING:
5168 * None.
5169 *
5170 * RETURNS:
Tejun Heob5b3fa32008-07-31 17:02:42 +09005171 * True if the port online status is available and online.
Tejun Heo34bf2172006-05-15 20:57:46 +09005172 */
Tejun Heob1c72912008-07-31 17:02:43 +09005173bool ata_phys_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005174{
5175 u32 sstatus;
5176
Tejun Heo936fd732007-08-06 18:36:23 +09005177 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5178 (sstatus & 0xf) == 0x3)
Tejun Heob5b3fa32008-07-31 17:02:42 +09005179 return true;
5180 return false;
Tejun Heo34bf2172006-05-15 20:57:46 +09005181}
5182
5183/**
Tejun Heob1c72912008-07-31 17:02:43 +09005184 * ata_phys_link_offline - test whether the given link is offline
Tejun Heo936fd732007-08-06 18:36:23 +09005185 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005186 *
Tejun Heo936fd732007-08-06 18:36:23 +09005187 * Test whether @link is offline. Note that this function
5188 * returns 0 if offline status of @link cannot be obtained, so
5189 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005190 *
5191 * LOCKING:
5192 * None.
5193 *
5194 * RETURNS:
Tejun Heob5b3fa32008-07-31 17:02:42 +09005195 * True if the port offline status is available and offline.
Tejun Heo34bf2172006-05-15 20:57:46 +09005196 */
Tejun Heob1c72912008-07-31 17:02:43 +09005197bool ata_phys_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005198{
5199 u32 sstatus;
5200
Tejun Heo936fd732007-08-06 18:36:23 +09005201 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5202 (sstatus & 0xf) != 0x3)
Tejun Heob5b3fa32008-07-31 17:02:42 +09005203 return true;
5204 return false;
Tejun Heo34bf2172006-05-15 20:57:46 +09005205}
Edward Falk0baab862005-06-02 18:17:13 -04005206
Tejun Heob1c72912008-07-31 17:02:43 +09005207/**
5208 * ata_link_online - test whether the given link is online
5209 * @link: ATA link to test
5210 *
5211 * Test whether @link is online. This is identical to
5212 * ata_phys_link_online() when there's no slave link. When
5213 * there's a slave link, this function should only be called on
5214 * the master link and will return true if any of M/S links is
5215 * online.
5216 *
5217 * LOCKING:
5218 * None.
5219 *
5220 * RETURNS:
5221 * True if the port online status is available and online.
5222 */
5223bool ata_link_online(struct ata_link *link)
5224{
5225 struct ata_link *slave = link->ap->slave_link;
5226
5227 WARN_ON(link == slave); /* shouldn't be called on slave link */
5228
5229 return ata_phys_link_online(link) ||
5230 (slave && ata_phys_link_online(slave));
5231}
5232
5233/**
5234 * ata_link_offline - test whether the given link is offline
5235 * @link: ATA link to test
5236 *
5237 * Test whether @link is offline. This is identical to
5238 * ata_phys_link_offline() when there's no slave link. When
5239 * there's a slave link, this function should only be called on
5240 * the master link and will return true if both M/S links are
5241 * offline.
5242 *
5243 * LOCKING:
5244 * None.
5245 *
5246 * RETURNS:
5247 * True if the port offline status is available and offline.
5248 */
5249bool ata_link_offline(struct ata_link *link)
5250{
5251 struct ata_link *slave = link->ap->slave_link;
5252
5253 WARN_ON(link == slave); /* shouldn't be called on slave link */
5254
5255 return ata_phys_link_offline(link) &&
5256 (!slave || ata_phys_link_offline(slave));
5257}
5258
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005259#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04005260static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5261 unsigned int action, unsigned int ehi_flags,
5262 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005263{
5264 unsigned long flags;
5265 int i, rc;
5266
Jeff Garzikcca39742006-08-24 03:19:22 -04005267 for (i = 0; i < host->n_ports; i++) {
5268 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09005269 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09005270
5271 /* Previous resume operation might still be in
5272 * progress. Wait for PM_PENDING to clear.
5273 */
5274 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5275 ata_port_wait_eh(ap);
5276 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5277 }
5278
5279 /* request PM ops to EH */
5280 spin_lock_irqsave(ap->lock, flags);
5281
5282 ap->pm_mesg = mesg;
5283 if (wait) {
5284 rc = 0;
5285 ap->pm_result = &rc;
5286 }
5287
5288 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heo1eca4362008-11-03 20:03:17 +09005289 ata_for_each_link(link, ap, HOST_FIRST) {
Tejun Heoe3667eb2007-08-06 18:36:24 +09005290 link->eh_info.action |= action;
5291 link->eh_info.flags |= ehi_flags;
5292 }
Tejun Heo500530f2006-07-03 16:07:27 +09005293
5294 ata_port_schedule_eh(ap);
5295
5296 spin_unlock_irqrestore(ap->lock, flags);
5297
5298 /* wait and check result */
5299 if (wait) {
5300 ata_port_wait_eh(ap);
5301 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5302 if (rc)
5303 return rc;
5304 }
5305 }
5306
5307 return 0;
5308}
5309
5310/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005311 * ata_host_suspend - suspend host
5312 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09005313 * @mesg: PM message
5314 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005315 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005316 * function requests EH to perform PM operations and waits for EH
5317 * to finish.
5318 *
5319 * LOCKING:
5320 * Kernel thread context (may sleep).
5321 *
5322 * RETURNS:
5323 * 0 on success, -errno on failure.
5324 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005325int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005326{
Tejun Heo9666f402007-05-04 21:27:47 +02005327 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005328
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005329 /*
5330 * disable link pm on all ports before requesting
5331 * any pm activity
5332 */
5333 ata_lpm_enable(host);
5334
Jeff Garzikcca39742006-08-24 03:19:22 -04005335 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005336 if (rc == 0)
5337 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005338 return rc;
5339}
5340
5341/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005342 * ata_host_resume - resume host
5343 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005344 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005345 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005346 * function requests EH to perform PM operations and returns.
5347 * Note that all resume operations are performed parallely.
5348 *
5349 * LOCKING:
5350 * Kernel thread context (may sleep).
5351 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005352void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005353{
Tejun Heocf480622008-01-24 00:05:14 +09005354 ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET,
Jeff Garzikcca39742006-08-24 03:19:22 -04005355 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005356 host->dev->power.power_state = PMSG_ON;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005357
5358 /* reenable link pm */
5359 ata_lpm_disable(host);
Tejun Heo500530f2006-07-03 16:07:27 +09005360}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005361#endif
Tejun Heo500530f2006-07-03 16:07:27 +09005362
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005363/**
5364 * ata_port_start - Set port up for dma.
5365 * @ap: Port to initialize
5366 *
5367 * Called just after data structures for each port are
5368 * initialized. Allocates space for PRD table.
5369 *
5370 * May be used as the port_start() entry in ata_port_operations.
5371 *
5372 * LOCKING:
5373 * Inherited from caller.
5374 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005375int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376{
Brian King2f1f6102006-03-23 17:30:15 -06005377 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378
Tejun Heof0d36ef2007-01-20 16:00:28 +09005379 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5380 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 if (!ap->prd)
5382 return -ENOMEM;
5383
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 return 0;
5385}
5386
Edward Falk0baab862005-06-02 18:17:13 -04005387/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005388 * ata_dev_init - Initialize an ata_device structure
5389 * @dev: Device structure to initialize
5390 *
5391 * Initialize @dev in preparation for probing.
5392 *
5393 * LOCKING:
5394 * Inherited from caller.
5395 */
5396void ata_dev_init(struct ata_device *dev)
5397{
Tejun Heob1c72912008-07-31 17:02:43 +09005398 struct ata_link *link = ata_dev_phys_link(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005399 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005400 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005401
Tejun Heob1c72912008-07-31 17:02:43 +09005402 /* SATA spd limit is bound to the attached device, reset together */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005403 link->sata_spd_limit = link->hw_sata_spd_limit;
5404 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005405
Tejun Heo72fa4b72006-05-31 18:27:32 +09005406 /* High bits of dev->flags are used to record warm plug
5407 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04005408 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09005409 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005410 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005411 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09005412 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005413 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005414
5415 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5416 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005417 dev->pio_mask = UINT_MAX;
5418 dev->mwdma_mask = UINT_MAX;
5419 dev->udma_mask = UINT_MAX;
5420}
5421
5422/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09005423 * ata_link_init - Initialize an ata_link structure
5424 * @ap: ATA port link is attached to
5425 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09005426 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09005427 *
5428 * Initialize @link.
5429 *
5430 * LOCKING:
5431 * Kernel thread context (may sleep)
5432 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005433void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005434{
5435 int i;
5436
5437 /* clear everything except for devices */
5438 memset(link, 0, offsetof(struct ata_link, device[0]));
5439
5440 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09005441 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005442 link->active_tag = ATA_TAG_POISON;
5443 link->hw_sata_spd_limit = UINT_MAX;
5444
5445 /* can't use iterator, ap isn't initialized yet */
5446 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5447 struct ata_device *dev = &link->device[i];
5448
5449 dev->link = link;
5450 dev->devno = dev - link->device;
5451 ata_dev_init(dev);
5452 }
5453}
5454
5455/**
5456 * sata_link_init_spd - Initialize link->sata_spd_limit
5457 * @link: Link to configure sata_spd_limit for
5458 *
5459 * Initialize @link->[hw_]sata_spd_limit to the currently
5460 * configured value.
5461 *
5462 * LOCKING:
5463 * Kernel thread context (may sleep).
5464 *
5465 * RETURNS:
5466 * 0 on success, -errno on failure.
5467 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005468int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005469{
Tejun Heo33267322008-02-13 09:15:09 +09005470 u8 spd;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005471 int rc;
5472
Tejun Heod127ea72008-07-31 16:09:34 +09005473 rc = sata_scr_read(link, SCR_CONTROL, &link->saved_scontrol);
Tejun Heo4fb37a22007-08-06 18:36:23 +09005474 if (rc)
5475 return rc;
5476
Tejun Heod127ea72008-07-31 16:09:34 +09005477 spd = (link->saved_scontrol >> 4) & 0xf;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005478 if (spd)
5479 link->hw_sata_spd_limit &= (1 << spd) - 1;
5480
Tejun Heo05944bd2008-08-13 20:19:09 +09005481 ata_force_link_limits(link);
Tejun Heo33267322008-02-13 09:15:09 +09005482
Tejun Heo4fb37a22007-08-06 18:36:23 +09005483 link->sata_spd_limit = link->hw_sata_spd_limit;
5484
5485 return 0;
5486}
5487
5488/**
Tejun Heof3187192007-04-17 23:44:07 +09005489 * ata_port_alloc - allocate and initialize basic ATA port resources
5490 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491 *
Tejun Heof3187192007-04-17 23:44:07 +09005492 * Allocate and initialize basic ATA port resources.
5493 *
5494 * RETURNS:
5495 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005496 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005498 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 */
Tejun Heof3187192007-04-17 23:44:07 +09005500struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501{
Tejun Heof3187192007-04-17 23:44:07 +09005502 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503
Tejun Heof3187192007-04-17 23:44:07 +09005504 DPRINTK("ENTER\n");
5505
5506 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5507 if (!ap)
5508 return NULL;
5509
Tejun Heof4d6d002007-05-01 11:50:15 +02005510 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04005511 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005512 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09005513 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04005515 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09005516 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005518
5519#if defined(ATA_VERBOSE_DEBUG)
5520 /* turn on all debugging levels */
5521 ap->msg_enable = 0x00FF;
5522#elif defined(ATA_DEBUG)
5523 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 +09005524#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005525 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005526#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
Tejun Heo127102a2008-04-07 22:47:21 +09005528#ifdef CONFIG_ATA_SFF
Jeff Garzik442eacc2007-12-19 04:25:10 -05005529 INIT_DELAYED_WORK(&ap->port_task, ata_pio_task);
Tejun Heof667fdb2008-10-20 13:11:56 +09005530#else
5531 INIT_DELAYED_WORK(&ap->port_task, NULL);
Tejun Heo127102a2008-04-07 22:47:21 +09005532#endif
David Howells65f27f32006-11-22 14:55:48 +00005533 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5534 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005535 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005536 init_waitqueue_head(&ap->eh_wait_q);
Elias Oltmanns45fabbb2008-09-21 11:54:08 +02005537 init_completion(&ap->park_req_pending);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09005538 init_timer_deferrable(&ap->fastdrain_timer);
5539 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
5540 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541
Tejun Heo838df622006-05-15 20:57:44 +09005542 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09005543
Tejun Heo89898052007-08-06 18:36:23 +09005544 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545
5546#ifdef ATA_IRQ_TRAP
5547 ap->stats.unhandled_irq = 1;
5548 ap->stats.idle_irq = 1;
5549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551}
5552
Tejun Heof0d36ef2007-01-20 16:00:28 +09005553static void ata_host_release(struct device *gendev, void *res)
5554{
5555 struct ata_host *host = dev_get_drvdata(gendev);
5556 int i;
5557
5558 for (i = 0; i < host->n_ports; i++) {
5559 struct ata_port *ap = host->ports[i];
5560
Tejun Heoecef7252007-04-17 23:44:06 +09005561 if (!ap)
5562 continue;
5563
Tejun Heo49114872007-04-17 23:44:06 +09005564 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09005565 scsi_host_put(ap->scsi_host);
5566
Tejun Heo633273a32007-09-23 13:19:54 +09005567 kfree(ap->pmp_link);
Tejun Heob1c72912008-07-31 17:02:43 +09005568 kfree(ap->slave_link);
Tejun Heo49114872007-04-17 23:44:06 +09005569 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09005570 host->ports[i] = NULL;
5571 }
5572
Tejun Heo1aa56cc2007-02-27 22:33:21 +09005573 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005574}
5575
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576/**
Tejun Heof3187192007-04-17 23:44:07 +09005577 * ata_host_alloc - allocate and init basic ATA host resources
5578 * @dev: generic device this host is associated with
5579 * @max_ports: maximum number of ATA ports associated with this host
5580 *
5581 * Allocate and initialize basic ATA host resources. LLD calls
5582 * this function to allocate a host, initializes it fully and
5583 * attaches it using ata_host_register().
5584 *
5585 * @max_ports ports are allocated and host->n_ports is
5586 * initialized to @max_ports. The caller is allowed to decrease
5587 * host->n_ports before calling ata_host_register(). The unused
5588 * ports will be automatically freed on registration.
5589 *
5590 * RETURNS:
5591 * Allocate ATA host on success, NULL on failure.
5592 *
5593 * LOCKING:
5594 * Inherited from calling layer (may sleep).
5595 */
5596struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
5597{
5598 struct ata_host *host;
5599 size_t sz;
5600 int i;
5601
5602 DPRINTK("ENTER\n");
5603
5604 if (!devres_open_group(dev, NULL, GFP_KERNEL))
5605 return NULL;
5606
5607 /* alloc a container for our list of ATA ports (buses) */
5608 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
5609 /* alloc a container for our list of ATA ports (buses) */
5610 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
5611 if (!host)
5612 goto err_out;
5613
5614 devres_add(dev, host);
5615 dev_set_drvdata(dev, host);
5616
5617 spin_lock_init(&host->lock);
5618 host->dev = dev;
5619 host->n_ports = max_ports;
5620
5621 /* allocate ports bound to this host */
5622 for (i = 0; i < max_ports; i++) {
5623 struct ata_port *ap;
5624
5625 ap = ata_port_alloc(host);
5626 if (!ap)
5627 goto err_out;
5628
5629 ap->port_no = i;
5630 host->ports[i] = ap;
5631 }
5632
5633 devres_remove_group(dev, NULL);
5634 return host;
5635
5636 err_out:
5637 devres_release_group(dev, NULL);
5638 return NULL;
5639}
5640
5641/**
Tejun Heof5cda252007-04-17 23:44:07 +09005642 * ata_host_alloc_pinfo - alloc host and init with port_info array
5643 * @dev: generic device this host is associated with
5644 * @ppi: array of ATA port_info to initialize host with
5645 * @n_ports: number of ATA ports attached to this host
5646 *
5647 * Allocate ATA host and initialize with info from @ppi. If NULL
5648 * terminated, @ppi may contain fewer entries than @n_ports. The
5649 * last entry will be used for the remaining ports.
5650 *
5651 * RETURNS:
5652 * Allocate ATA host on success, NULL on failure.
5653 *
5654 * LOCKING:
5655 * Inherited from calling layer (may sleep).
5656 */
5657struct ata_host *ata_host_alloc_pinfo(struct device *dev,
5658 const struct ata_port_info * const * ppi,
5659 int n_ports)
5660{
5661 const struct ata_port_info *pi;
5662 struct ata_host *host;
5663 int i, j;
5664
5665 host = ata_host_alloc(dev, n_ports);
5666 if (!host)
5667 return NULL;
5668
5669 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
5670 struct ata_port *ap = host->ports[i];
5671
5672 if (ppi[j])
5673 pi = ppi[j++];
5674
5675 ap->pio_mask = pi->pio_mask;
5676 ap->mwdma_mask = pi->mwdma_mask;
5677 ap->udma_mask = pi->udma_mask;
5678 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09005679 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09005680 ap->ops = pi->port_ops;
5681
5682 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
5683 host->ops = pi->port_ops;
Tejun Heof5cda252007-04-17 23:44:07 +09005684 }
5685
5686 return host;
5687}
5688
Tejun Heob1c72912008-07-31 17:02:43 +09005689/**
5690 * ata_slave_link_init - initialize slave link
5691 * @ap: port to initialize slave link for
5692 *
5693 * Create and initialize slave link for @ap. This enables slave
5694 * link handling on the port.
5695 *
5696 * In libata, a port contains links and a link contains devices.
5697 * There is single host link but if a PMP is attached to it,
5698 * there can be multiple fan-out links. On SATA, there's usually
5699 * a single device connected to a link but PATA and SATA
5700 * controllers emulating TF based interface can have two - master
5701 * and slave.
5702 *
5703 * However, there are a few controllers which don't fit into this
5704 * abstraction too well - SATA controllers which emulate TF
5705 * interface with both master and slave devices but also have
5706 * separate SCR register sets for each device. These controllers
5707 * need separate links for physical link handling
5708 * (e.g. onlineness, link speed) but should be treated like a
5709 * traditional M/S controller for everything else (e.g. command
5710 * issue, softreset).
5711 *
5712 * slave_link is libata's way of handling this class of
5713 * controllers without impacting core layer too much. For
5714 * anything other than physical link handling, the default host
5715 * link is used for both master and slave. For physical link
5716 * handling, separate @ap->slave_link is used. All dirty details
5717 * are implemented inside libata core layer. From LLD's POV, the
5718 * only difference is that prereset, hardreset and postreset are
5719 * called once more for the slave link, so the reset sequence
5720 * looks like the following.
5721 *
5722 * prereset(M) -> prereset(S) -> hardreset(M) -> hardreset(S) ->
5723 * softreset(M) -> postreset(M) -> postreset(S)
5724 *
5725 * Note that softreset is called only for the master. Softreset
5726 * resets both M/S by definition, so SRST on master should handle
5727 * both (the standard method will work just fine).
5728 *
5729 * LOCKING:
5730 * Should be called before host is registered.
5731 *
5732 * RETURNS:
5733 * 0 on success, -errno on failure.
5734 */
5735int ata_slave_link_init(struct ata_port *ap)
5736{
5737 struct ata_link *link;
5738
5739 WARN_ON(ap->slave_link);
5740 WARN_ON(ap->flags & ATA_FLAG_PMP);
5741
5742 link = kzalloc(sizeof(*link), GFP_KERNEL);
5743 if (!link)
5744 return -ENOMEM;
5745
5746 ata_link_init(ap, link, 1);
5747 ap->slave_link = link;
5748 return 0;
5749}
5750
Tejun Heo32ebbc02007-11-08 13:09:00 +09005751static void ata_host_stop(struct device *gendev, void *res)
5752{
5753 struct ata_host *host = dev_get_drvdata(gendev);
5754 int i;
5755
5756 WARN_ON(!(host->flags & ATA_HOST_STARTED));
5757
5758 for (i = 0; i < host->n_ports; i++) {
5759 struct ata_port *ap = host->ports[i];
5760
5761 if (ap->ops->port_stop)
5762 ap->ops->port_stop(ap);
5763 }
5764
5765 if (host->ops->host_stop)
5766 host->ops->host_stop(host);
5767}
5768
Tejun Heof5cda252007-04-17 23:44:07 +09005769/**
Tejun Heo029cfd62008-03-25 12:22:49 +09005770 * ata_finalize_port_ops - finalize ata_port_operations
5771 * @ops: ata_port_operations to finalize
5772 *
5773 * An ata_port_operations can inherit from another ops and that
5774 * ops can again inherit from another. This can go on as many
5775 * times as necessary as long as there is no loop in the
5776 * inheritance chain.
5777 *
5778 * Ops tables are finalized when the host is started. NULL or
5779 * unspecified entries are inherited from the closet ancestor
5780 * which has the method and the entry is populated with it.
5781 * After finalization, the ops table directly points to all the
5782 * methods and ->inherits is no longer necessary and cleared.
5783 *
5784 * Using ATA_OP_NULL, inheriting ops can force a method to NULL.
5785 *
5786 * LOCKING:
5787 * None.
5788 */
5789static void ata_finalize_port_ops(struct ata_port_operations *ops)
5790{
Pradeep Singh Rautela2da67652008-05-29 23:28:14 +05305791 static DEFINE_SPINLOCK(lock);
Tejun Heo029cfd62008-03-25 12:22:49 +09005792 const struct ata_port_operations *cur;
5793 void **begin = (void **)ops;
5794 void **end = (void **)&ops->inherits;
5795 void **pp;
5796
5797 if (!ops || !ops->inherits)
5798 return;
5799
5800 spin_lock(&lock);
5801
5802 for (cur = ops->inherits; cur; cur = cur->inherits) {
5803 void **inherit = (void **)cur;
5804
5805 for (pp = begin; pp < end; pp++, inherit++)
5806 if (!*pp)
5807 *pp = *inherit;
5808 }
5809
5810 for (pp = begin; pp < end; pp++)
5811 if (IS_ERR(*pp))
5812 *pp = NULL;
5813
5814 ops->inherits = NULL;
5815
5816 spin_unlock(&lock);
5817}
5818
5819/**
Tejun Heoecef7252007-04-17 23:44:06 +09005820 * ata_host_start - start and freeze ports of an ATA host
5821 * @host: ATA host to start ports for
5822 *
5823 * Start and then freeze ports of @host. Started status is
5824 * recorded in host->flags, so this function can be called
5825 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09005826 * once. If host->ops isn't initialized yet, its set to the
5827 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09005828 *
5829 * LOCKING:
5830 * Inherited from calling layer (may sleep).
5831 *
5832 * RETURNS:
5833 * 0 if all ports are started successfully, -errno otherwise.
5834 */
5835int ata_host_start(struct ata_host *host)
5836{
Tejun Heo32ebbc02007-11-08 13:09:00 +09005837 int have_stop = 0;
5838 void *start_dr = NULL;
Tejun Heoecef7252007-04-17 23:44:06 +09005839 int i, rc;
5840
5841 if (host->flags & ATA_HOST_STARTED)
5842 return 0;
5843
Tejun Heo029cfd62008-03-25 12:22:49 +09005844 ata_finalize_port_ops(host->ops);
5845
Tejun Heoecef7252007-04-17 23:44:06 +09005846 for (i = 0; i < host->n_ports; i++) {
5847 struct ata_port *ap = host->ports[i];
5848
Tejun Heo029cfd62008-03-25 12:22:49 +09005849 ata_finalize_port_ops(ap->ops);
5850
Tejun Heof3187192007-04-17 23:44:07 +09005851 if (!host->ops && !ata_port_is_dummy(ap))
5852 host->ops = ap->ops;
5853
Tejun Heo32ebbc02007-11-08 13:09:00 +09005854 if (ap->ops->port_stop)
5855 have_stop = 1;
5856 }
5857
5858 if (host->ops->host_stop)
5859 have_stop = 1;
5860
5861 if (have_stop) {
5862 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
5863 if (!start_dr)
5864 return -ENOMEM;
5865 }
5866
5867 for (i = 0; i < host->n_ports; i++) {
5868 struct ata_port *ap = host->ports[i];
5869
Tejun Heoecef7252007-04-17 23:44:06 +09005870 if (ap->ops->port_start) {
5871 rc = ap->ops->port_start(ap);
5872 if (rc) {
Alan Cox0f9fe9b2007-11-30 15:23:16 +00005873 if (rc != -ENODEV)
Andrew Morton0f757742008-01-10 14:33:09 -08005874 dev_printk(KERN_ERR, host->dev,
5875 "failed to start port %d "
5876 "(errno=%d)\n", i, rc);
Tejun Heoecef7252007-04-17 23:44:06 +09005877 goto err_out;
5878 }
5879 }
Tejun Heoecef7252007-04-17 23:44:06 +09005880 ata_eh_freeze_port(ap);
5881 }
5882
Tejun Heo32ebbc02007-11-08 13:09:00 +09005883 if (start_dr)
5884 devres_add(host->dev, start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005885 host->flags |= ATA_HOST_STARTED;
5886 return 0;
5887
5888 err_out:
5889 while (--i >= 0) {
5890 struct ata_port *ap = host->ports[i];
5891
5892 if (ap->ops->port_stop)
5893 ap->ops->port_stop(ap);
5894 }
Tejun Heo32ebbc02007-11-08 13:09:00 +09005895 devres_free(start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005896 return rc;
5897}
5898
5899/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005900 * ata_sas_host_init - Initialize a host struct
5901 * @host: host to initialize
5902 * @dev: device host is attached to
5903 * @flags: host flags
5904 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05005905 *
5906 * LOCKING:
5907 * PCI/etc. bus probe sem.
5908 *
5909 */
Tejun Heof3187192007-04-17 23:44:07 +09005910/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04005911void ata_host_init(struct ata_host *host, struct device *dev,
Tejun Heo029cfd62008-03-25 12:22:49 +09005912 unsigned long flags, struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05005913{
Jeff Garzikcca39742006-08-24 03:19:22 -04005914 spin_lock_init(&host->lock);
5915 host->dev = dev;
5916 host->flags = flags;
5917 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05005918}
5919
Arjan van de Ven79318052009-01-04 05:32:28 -08005920
5921static void async_port_probe(void *data, async_cookie_t cookie)
5922{
5923 int rc;
5924 struct ata_port *ap = data;
Arjan van de Ven886ad092009-01-09 15:54:07 -08005925
5926 /*
5927 * If we're not allowed to scan this host in parallel,
5928 * we need to wait until all previous scans have completed
5929 * before going further.
Arjan van de Venfa853a42009-01-10 10:18:44 -08005930 * Jeff Garzik says this is only within a controller, so we
5931 * don't need to wait for port 0, only for later ports.
Arjan van de Ven886ad092009-01-09 15:54:07 -08005932 */
Arjan van de Venfa853a42009-01-10 10:18:44 -08005933 if (!(ap->host->flags & ATA_HOST_PARALLEL_SCAN) && ap->port_no != 0)
Arjan van de Ven886ad092009-01-09 15:54:07 -08005934 async_synchronize_cookie(cookie);
5935
Arjan van de Ven79318052009-01-04 05:32:28 -08005936 /* probe */
5937 if (ap->ops->error_handler) {
5938 struct ata_eh_info *ehi = &ap->link.eh_info;
5939 unsigned long flags;
5940
5941 ata_port_probe(ap);
5942
5943 /* kick EH for boot probing */
5944 spin_lock_irqsave(ap->lock, flags);
5945
5946 ehi->probe_mask |= ATA_ALL_DEVICES;
5947 ehi->action |= ATA_EH_RESET | ATA_EH_LPM;
5948 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
5949
5950 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
5951 ap->pflags |= ATA_PFLAG_LOADING;
5952 ata_port_schedule_eh(ap);
5953
5954 spin_unlock_irqrestore(ap->lock, flags);
5955
5956 /* wait for EH to finish */
5957 ata_port_wait_eh(ap);
5958 } else {
5959 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
5960 rc = ata_bus_probe(ap);
5961 DPRINTK("ata%u: bus probe end\n", ap->print_id);
5962
5963 if (rc) {
5964 /* FIXME: do something useful here?
5965 * Current libata behavior will
5966 * tear down everything when
5967 * the module is removed
5968 * or the h/w is unplugged.
5969 */
5970 }
5971 }
Arjan van de Venf29d3b22009-01-05 15:07:07 -08005972
5973 /* in order to keep device order, we need to synchronize at this point */
5974 async_synchronize_cookie(cookie);
5975
5976 ata_scsi_scan_host(ap, 1);
5977
Arjan van de Ven79318052009-01-04 05:32:28 -08005978}
Brian Kingb03732f2006-08-07 14:27:10 -05005979/**
Tejun Heof3187192007-04-17 23:44:07 +09005980 * ata_host_register - register initialized ATA host
5981 * @host: ATA host to register
5982 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04005983 *
Tejun Heof3187192007-04-17 23:44:07 +09005984 * Register initialized ATA host. @host is allocated using
5985 * ata_host_alloc() and fully initialized by LLD. This function
5986 * starts ports, registers @host with ATA and SCSI layers and
5987 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988 *
5989 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005990 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991 *
5992 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09005993 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994 */
Tejun Heof3187192007-04-17 23:44:07 +09005995int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996{
Tejun Heof3187192007-04-17 23:44:07 +09005997 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
Tejun Heof3187192007-04-17 23:44:07 +09005999 /* host must have been started */
6000 if (!(host->flags & ATA_HOST_STARTED)) {
6001 dev_printk(KERN_ERR, host->dev,
6002 "BUG: trying to register unstarted host\n");
6003 WARN_ON(1);
6004 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01006005 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09006006
Tejun Heof3187192007-04-17 23:44:07 +09006007 /* Blow away unused ports. This happens when LLD can't
6008 * determine the exact number of ports to allocate at
6009 * allocation time.
6010 */
6011 for (i = host->n_ports; host->ports[i]; i++)
6012 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013
Tejun Heof3187192007-04-17 23:44:07 +09006014 /* give ports names and add SCSI hosts */
6015 for (i = 0; i < host->n_ports; i++)
6016 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006017
Tejun Heof3187192007-04-17 23:44:07 +09006018 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006019 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006020 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006021
Tejun Heofafbae82007-05-15 03:28:16 +09006022 /* associate with ACPI nodes */
6023 ata_acpi_associate(host);
6024
Tejun Heof3187192007-04-17 23:44:07 +09006025 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006026 for (i = 0; i < host->n_ports; i++) {
6027 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006028 unsigned long xfer_mask;
6029
6030 /* set SATA cable type if still unset */
6031 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6032 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033
Tejun Heo5a04bf42006-05-31 18:27:38 +09006034 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09006035 sata_link_init_spd(&ap->link);
Tejun Heob1c72912008-07-31 17:02:43 +09006036 if (ap->slave_link)
6037 sata_link_init_spd(ap->slave_link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09006038
Tejun Heocbcdd872007-08-18 13:14:55 +09006039 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09006040 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6041 ap->udma_mask);
6042
Tejun Heoabf6e8e2007-10-09 14:57:25 +09006043 if (!ata_port_is_dummy(ap)) {
Tejun Heocbcdd872007-08-18 13:14:55 +09006044 ata_port_printk(ap, KERN_INFO,
6045 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02006046 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09006047 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09006048 ap->link.eh_info.desc);
Tejun Heoabf6e8e2007-10-09 14:57:25 +09006049 ata_ehi_clear_desc(&ap->link.eh_info);
6050 } else
Tejun Heof3187192007-04-17 23:44:07 +09006051 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6052 }
6053
6054 /* perform each probe synchronously */
6055 DPRINTK("probe begin\n");
6056 for (i = 0; i < host->n_ports; i++) {
6057 struct ata_port *ap = host->ports[i];
Arjan van de Ven79318052009-01-04 05:32:28 -08006058 async_schedule(async_port_probe, ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 }
Arjan van de Venf29d3b22009-01-05 15:07:07 -08006060 DPRINTK("probe end\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061
Tejun Heof3187192007-04-17 23:44:07 +09006062 return 0;
6063}
6064
6065/**
Tejun Heof5cda252007-04-17 23:44:07 +09006066 * ata_host_activate - start host, request IRQ and register it
6067 * @host: target ATA host
6068 * @irq: IRQ to request
6069 * @irq_handler: irq_handler used when requesting IRQ
6070 * @irq_flags: irq_flags used when requesting IRQ
6071 * @sht: scsi_host_template to use when registering the host
6072 *
6073 * After allocating an ATA host and initializing it, most libata
6074 * LLDs perform three steps to activate the host - start host,
6075 * request IRQ and register it. This helper takes necessasry
6076 * arguments and performs the three steps in one go.
6077 *
Paul Mundt3d46b2e2007-11-08 11:14:56 +09006078 * An invalid IRQ skips the IRQ registration and expects the host to
6079 * have set polling mode on the port. In this case, @irq_handler
6080 * should be NULL.
6081 *
Tejun Heof5cda252007-04-17 23:44:07 +09006082 * LOCKING:
6083 * Inherited from calling layer (may sleep).
6084 *
6085 * RETURNS:
6086 * 0 on success, -errno otherwise.
6087 */
6088int ata_host_activate(struct ata_host *host, int irq,
6089 irq_handler_t irq_handler, unsigned long irq_flags,
6090 struct scsi_host_template *sht)
6091{
Tejun Heocbcdd872007-08-18 13:14:55 +09006092 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09006093
6094 rc = ata_host_start(host);
6095 if (rc)
6096 return rc;
6097
Paul Mundt3d46b2e2007-11-08 11:14:56 +09006098 /* Special case for polling mode */
6099 if (!irq) {
6100 WARN_ON(irq_handler);
6101 return ata_host_register(host, sht);
6102 }
6103
Tejun Heof5cda252007-04-17 23:44:07 +09006104 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6105 dev_driver_string(host->dev), host);
6106 if (rc)
6107 return rc;
6108
Tejun Heocbcdd872007-08-18 13:14:55 +09006109 for (i = 0; i < host->n_ports; i++)
6110 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09006111
Tejun Heof5cda252007-04-17 23:44:07 +09006112 rc = ata_host_register(host, sht);
6113 /* if failed, just free the IRQ and leave ports alone */
6114 if (rc)
6115 devm_free_irq(host->dev, irq, host);
6116
6117 return rc;
6118}
6119
6120/**
Tejun Heo720ba122006-05-31 18:28:13 +09006121 * ata_port_detach - Detach ATA port in prepration of device removal
6122 * @ap: ATA port to be detached
6123 *
6124 * Detach all ATA devices and the associated SCSI devices of @ap;
6125 * then, remove the associated SCSI host. @ap is guaranteed to
6126 * be quiescent on return from this function.
6127 *
6128 * LOCKING:
6129 * Kernel thread context (may sleep).
6130 */
Adrian Bunk741b7762007-10-24 18:23:06 +02006131static void ata_port_detach(struct ata_port *ap)
Tejun Heo720ba122006-05-31 18:28:13 +09006132{
6133 unsigned long flags;
Tejun Heo720ba122006-05-31 18:28:13 +09006134
6135 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006136 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006137
6138 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006139 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006140 ap->pflags |= ATA_PFLAG_UNLOADING;
Tejun Heoece180d2008-11-03 20:04:37 +09006141 ata_port_schedule_eh(ap);
Jeff Garzikba6a1302006-06-22 23:46:10 -04006142 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006143
Tejun Heoece180d2008-11-03 20:04:37 +09006144 /* wait till EH commits suicide */
Tejun Heo720ba122006-05-31 18:28:13 +09006145 ata_port_wait_eh(ap);
6146
Tejun Heoece180d2008-11-03 20:04:37 +09006147 /* it better be dead now */
6148 WARN_ON(!(ap->pflags & ATA_PFLAG_UNLOADED));
Tejun Heo720ba122006-05-31 18:28:13 +09006149
Oleg Nesterov45a66c12007-07-09 11:46:13 -07006150 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09006151
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006152 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006153 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006154 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006155}
6156
6157/**
Tejun Heo0529c152007-01-20 16:00:26 +09006158 * ata_host_detach - Detach all ports of an ATA host
6159 * @host: Host to detach
6160 *
6161 * Detach all ports of @host.
6162 *
6163 * LOCKING:
6164 * Kernel thread context (may sleep).
6165 */
6166void ata_host_detach(struct ata_host *host)
6167{
6168 int i;
6169
6170 for (i = 0; i < host->n_ports; i++)
6171 ata_port_detach(host->ports[i]);
Tejun Heo562f0c22007-12-15 15:05:01 +09006172
6173 /* the host is dead now, dissociate ACPI */
6174 ata_acpi_dissociate(host);
Tejun Heo0529c152007-01-20 16:00:26 +09006175}
6176
Jeff Garzik374b1872005-08-30 05:42:52 -04006177#ifdef CONFIG_PCI
6178
Edward Falk0baab862005-06-02 18:17:13 -04006179/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180 * ata_pci_remove_one - PCI layer callback for device removal
6181 * @pdev: PCI device that was removed
6182 *
Tejun Heob878ca52007-01-20 16:00:28 +09006183 * PCI layer indicates to libata via this hook that hot-unplug or
6184 * module unload event has occurred. Detach all ports. Resource
6185 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186 *
6187 * LOCKING:
6188 * Inherited from PCI layer (may sleep).
6189 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006190void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191{
Jeff Garzik28555682007-10-11 17:12:35 -04006192 struct device *dev = &pdev->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04006193 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194
Tejun Heob878ca52007-01-20 16:00:28 +09006195 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196}
6197
6198/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006199int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200{
6201 unsigned long tmp = 0;
6202
6203 switch (bits->width) {
6204 case 1: {
6205 u8 tmp8 = 0;
6206 pci_read_config_byte(pdev, bits->reg, &tmp8);
6207 tmp = tmp8;
6208 break;
6209 }
6210 case 2: {
6211 u16 tmp16 = 0;
6212 pci_read_config_word(pdev, bits->reg, &tmp16);
6213 tmp = tmp16;
6214 break;
6215 }
6216 case 4: {
6217 u32 tmp32 = 0;
6218 pci_read_config_dword(pdev, bits->reg, &tmp32);
6219 tmp = tmp32;
6220 break;
6221 }
6222
6223 default:
6224 return -EINVAL;
6225 }
6226
6227 tmp &= bits->mask;
6228
6229 return (tmp == bits->val) ? 1 : 0;
6230}
Jens Axboe9b847542006-01-06 09:28:07 +01006231
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006232#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09006233void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006234{
6235 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09006236 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006237
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01006238 if (mesg.event & PM_EVENT_SLEEP)
Tejun Heo500530f2006-07-03 16:07:27 +09006239 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01006240}
6241
Tejun Heo553c4aa2006-12-26 19:39:50 +09006242int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006243{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006244 int rc;
6245
Jens Axboe9b847542006-01-06 09:28:07 +01006246 pci_set_power_state(pdev, PCI_D0);
6247 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006248
Tejun Heob878ca52007-01-20 16:00:28 +09006249 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006250 if (rc) {
6251 dev_printk(KERN_ERR, &pdev->dev,
6252 "failed to enable device after resume (%d)\n", rc);
6253 return rc;
6254 }
6255
Jens Axboe9b847542006-01-06 09:28:07 +01006256 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006257 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006258}
6259
Tejun Heo3c5100c2006-07-26 16:58:33 +09006260int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006261{
Jeff Garzikcca39742006-08-24 03:19:22 -04006262 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006263 int rc = 0;
6264
Jeff Garzikcca39742006-08-24 03:19:22 -04006265 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006266 if (rc)
6267 return rc;
6268
Tejun Heo3c5100c2006-07-26 16:58:33 +09006269 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006270
6271 return 0;
6272}
6273
6274int ata_pci_device_resume(struct pci_dev *pdev)
6275{
Jeff Garzikcca39742006-08-24 03:19:22 -04006276 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006277 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006278
Tejun Heo553c4aa2006-12-26 19:39:50 +09006279 rc = ata_pci_device_do_resume(pdev);
6280 if (rc == 0)
6281 ata_host_resume(host);
6282 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006283}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006284#endif /* CONFIG_PM */
6285
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286#endif /* CONFIG_PCI */
6287
Tejun Heo33267322008-02-13 09:15:09 +09006288static int __init ata_parse_force_one(char **cur,
6289 struct ata_force_ent *force_ent,
6290 const char **reason)
6291{
6292 /* FIXME: Currently, there's no way to tag init const data and
6293 * using __initdata causes build failure on some versions of
6294 * gcc. Once __initdataconst is implemented, add const to the
6295 * following structure.
6296 */
6297 static struct ata_force_param force_tbl[] __initdata = {
6298 { "40c", .cbl = ATA_CBL_PATA40 },
6299 { "80c", .cbl = ATA_CBL_PATA80 },
6300 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
6301 { "unk", .cbl = ATA_CBL_PATA_UNK },
6302 { "ign", .cbl = ATA_CBL_PATA_IGN },
6303 { "sata", .cbl = ATA_CBL_SATA },
6304 { "1.5Gbps", .spd_limit = 1 },
6305 { "3.0Gbps", .spd_limit = 2 },
6306 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
6307 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
6308 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
6309 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
6310 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
6311 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
6312 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
6313 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
6314 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
6315 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
6316 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
6317 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
6318 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
6319 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
6320 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
6321 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
6322 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
6323 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
6324 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
6325 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
6326 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
6327 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
6328 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
6329 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
6330 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
6331 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
6332 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
6333 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
6334 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
6335 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
6336 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
6337 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
6338 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
6339 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
6340 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
6341 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
Tejun Heo05944bd2008-08-13 20:19:09 +09006342 { "nohrst", .lflags = ATA_LFLAG_NO_HRST },
6343 { "nosrst", .lflags = ATA_LFLAG_NO_SRST },
6344 { "norst", .lflags = ATA_LFLAG_NO_HRST | ATA_LFLAG_NO_SRST },
Tejun Heo33267322008-02-13 09:15:09 +09006345 };
6346 char *start = *cur, *p = *cur;
6347 char *id, *val, *endp;
6348 const struct ata_force_param *match_fp = NULL;
6349 int nr_matches = 0, i;
6350
6351 /* find where this param ends and update *cur */
6352 while (*p != '\0' && *p != ',')
6353 p++;
6354
6355 if (*p == '\0')
6356 *cur = p;
6357 else
6358 *cur = p + 1;
6359
6360 *p = '\0';
6361
6362 /* parse */
6363 p = strchr(start, ':');
6364 if (!p) {
6365 val = strstrip(start);
6366 goto parse_val;
6367 }
6368 *p = '\0';
6369
6370 id = strstrip(start);
6371 val = strstrip(p + 1);
6372
6373 /* parse id */
6374 p = strchr(id, '.');
6375 if (p) {
6376 *p++ = '\0';
6377 force_ent->device = simple_strtoul(p, &endp, 10);
6378 if (p == endp || *endp != '\0') {
6379 *reason = "invalid device";
6380 return -EINVAL;
6381 }
6382 }
6383
6384 force_ent->port = simple_strtoul(id, &endp, 10);
6385 if (p == endp || *endp != '\0') {
6386 *reason = "invalid port/link";
6387 return -EINVAL;
6388 }
6389
6390 parse_val:
6391 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
6392 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
6393 const struct ata_force_param *fp = &force_tbl[i];
6394
6395 if (strncasecmp(val, fp->name, strlen(val)))
6396 continue;
6397
6398 nr_matches++;
6399 match_fp = fp;
6400
6401 if (strcasecmp(val, fp->name) == 0) {
6402 nr_matches = 1;
6403 break;
6404 }
6405 }
6406
6407 if (!nr_matches) {
6408 *reason = "unknown value";
6409 return -EINVAL;
6410 }
6411 if (nr_matches > 1) {
6412 *reason = "ambigious value";
6413 return -EINVAL;
6414 }
6415
6416 force_ent->param = *match_fp;
6417
6418 return 0;
6419}
6420
6421static void __init ata_parse_force_param(void)
6422{
6423 int idx = 0, size = 1;
6424 int last_port = -1, last_device = -1;
6425 char *p, *cur, *next;
6426
6427 /* calculate maximum number of params and allocate force_tbl */
6428 for (p = ata_force_param_buf; *p; p++)
6429 if (*p == ',')
6430 size++;
6431
6432 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
6433 if (!ata_force_tbl) {
6434 printk(KERN_WARNING "ata: failed to extend force table, "
6435 "libata.force ignored\n");
6436 return;
6437 }
6438
6439 /* parse and populate the table */
6440 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
6441 const char *reason = "";
6442 struct ata_force_ent te = { .port = -1, .device = -1 };
6443
6444 next = cur;
6445 if (ata_parse_force_one(&next, &te, &reason)) {
6446 printk(KERN_WARNING "ata: failed to parse force "
6447 "parameter \"%s\" (%s)\n",
6448 cur, reason);
6449 continue;
6450 }
6451
6452 if (te.port == -1) {
6453 te.port = last_port;
6454 te.device = last_device;
6455 }
6456
6457 ata_force_tbl[idx++] = te;
6458
6459 last_port = te.port;
6460 last_device = te.device;
6461 }
6462
6463 ata_force_tbl_size = idx;
6464}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466static int __init ata_init(void)
6467{
Tejun Heo33267322008-02-13 09:15:09 +09006468 ata_parse_force_param();
6469
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470 ata_wq = create_workqueue("ata");
6471 if (!ata_wq)
Elias Oltmanns49ea3b02008-07-30 12:32:39 -07006472 goto free_force_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473
Tejun Heo453b07a2006-05-31 18:27:42 +09006474 ata_aux_wq = create_singlethread_workqueue("ata_aux");
Elias Oltmanns49ea3b02008-07-30 12:32:39 -07006475 if (!ata_aux_wq)
6476 goto free_wq;
Tejun Heo453b07a2006-05-31 18:27:42 +09006477
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6479 return 0;
Elias Oltmanns49ea3b02008-07-30 12:32:39 -07006480
6481free_wq:
6482 destroy_workqueue(ata_wq);
6483free_force_tbl:
6484 kfree(ata_force_tbl);
6485 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486}
6487
6488static void __exit ata_exit(void)
6489{
Tejun Heo33267322008-02-13 09:15:09 +09006490 kfree(ata_force_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006492 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493}
6494
Brian Kinga4625082006-11-13 16:32:36 -06006495subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496module_exit(ata_exit);
6497
Jeff Garzik67846b32005-10-05 02:58:32 -04006498static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006499static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006500
6501int ata_ratelimit(void)
6502{
6503 int rc;
6504 unsigned long flags;
6505
6506 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6507
6508 if (time_after(jiffies, ratelimit_time)) {
6509 rc = 1;
6510 ratelimit_time = jiffies + (HZ/5);
6511 } else
6512 rc = 0;
6513
6514 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6515
6516 return rc;
6517}
6518
Tejun Heoc22daff2006-04-11 22:22:29 +09006519/**
6520 * ata_wait_register - wait until register value changes
6521 * @reg: IO-mapped register
6522 * @mask: Mask to apply to read register value
6523 * @val: Wait condition
Tejun Heo341c2c92008-05-20 02:17:51 +09006524 * @interval: polling interval in milliseconds
6525 * @timeout: timeout in milliseconds
Tejun Heoc22daff2006-04-11 22:22:29 +09006526 *
6527 * Waiting for some bits of register to change is a common
6528 * operation for ATA controllers. This function reads 32bit LE
6529 * IO-mapped register @reg and tests for the following condition.
6530 *
6531 * (*@reg & mask) != val
6532 *
6533 * If the condition is met, it returns; otherwise, the process is
6534 * repeated after @interval_msec until timeout.
6535 *
6536 * LOCKING:
6537 * Kernel thread context (may sleep)
6538 *
6539 * RETURNS:
6540 * The final register value.
6541 */
6542u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
Tejun Heo341c2c92008-05-20 02:17:51 +09006543 unsigned long interval, unsigned long timeout)
Tejun Heoc22daff2006-04-11 22:22:29 +09006544{
Tejun Heo341c2c92008-05-20 02:17:51 +09006545 unsigned long deadline;
Tejun Heoc22daff2006-04-11 22:22:29 +09006546 u32 tmp;
6547
6548 tmp = ioread32(reg);
6549
6550 /* Calculate timeout _after_ the first read to make sure
6551 * preceding writes reach the controller before starting to
6552 * eat away the timeout.
6553 */
Tejun Heo341c2c92008-05-20 02:17:51 +09006554 deadline = ata_deadline(jiffies, timeout);
Tejun Heoc22daff2006-04-11 22:22:29 +09006555
Tejun Heo341c2c92008-05-20 02:17:51 +09006556 while ((tmp & mask) == val && time_before(jiffies, deadline)) {
6557 msleep(interval);
Tejun Heoc22daff2006-04-11 22:22:29 +09006558 tmp = ioread32(reg);
6559 }
6560
6561 return tmp;
6562}
6563
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006565 * Dummy port_ops
6566 */
Tejun Heodd5b06c2006-08-10 16:59:12 +09006567static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6568{
6569 return AC_ERR_SYSTEM;
6570}
6571
Tejun Heo182d7bb2008-04-07 22:47:21 +09006572static void ata_dummy_error_handler(struct ata_port *ap)
6573{
6574 /* truly dummy */
6575}
6576
Tejun Heo029cfd62008-03-25 12:22:49 +09006577struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09006578 .qc_prep = ata_noop_qc_prep,
6579 .qc_issue = ata_dummy_qc_issue,
Tejun Heo182d7bb2008-04-07 22:47:21 +09006580 .error_handler = ata_dummy_error_handler,
Tejun Heodd5b06c2006-08-10 16:59:12 +09006581};
6582
Tejun Heo21b0ad42007-04-17 23:44:07 +09006583const struct ata_port_info ata_dummy_port_info = {
6584 .port_ops = &ata_dummy_port_ops,
6585};
6586
Tejun Heodd5b06c2006-08-10 16:59:12 +09006587/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588 * libata is essentially a library of internal helper functions for
6589 * low-level ATA host controller drivers. As such, the API/ABI is
6590 * likely to change as new drivers are added and updated.
6591 * Do not depend on ABI/API stability.
6592 */
Tejun Heoe9c83912006-07-03 16:07:26 +09006593EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6594EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6595EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heo029cfd62008-03-25 12:22:49 +09006596EXPORT_SYMBOL_GPL(ata_base_port_ops);
6597EXPORT_SYMBOL_GPL(sata_port_ops);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006598EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006599EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Tejun Heo1eca4362008-11-03 20:03:17 +09006600EXPORT_SYMBOL_GPL(ata_link_next);
6601EXPORT_SYMBOL_GPL(ata_dev_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602EXPORT_SYMBOL_GPL(ata_std_bios_param);
Jeff Garzikcca39742006-08-24 03:19:22 -04006603EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006604EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006605EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heob1c72912008-07-31 17:02:43 +09006606EXPORT_SYMBOL_GPL(ata_slave_link_init);
Tejun Heoecef7252007-04-17 23:44:06 +09006607EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006608EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006609EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09006610EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611EXPORT_SYMBOL_GPL(ata_sg_init);
Tejun Heof686bcb2006-05-15 20:58:05 +09006612EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006613EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Tejun Heo436d34b2008-04-02 17:28:46 +09006614EXPORT_SYMBOL_GPL(atapi_cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6616EXPORT_SYMBOL_GPL(ata_tf_from_fis);
Tejun Heo63573572007-11-27 19:43:39 +09006617EXPORT_SYMBOL_GPL(ata_pack_xfermask);
6618EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
6619EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
6620EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
6621EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
6622EXPORT_SYMBOL_GPL(ata_mode_string);
6623EXPORT_SYMBOL_GPL(ata_id_xfermask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624EXPORT_SYMBOL_GPL(ata_port_start);
Alan04351822007-03-06 02:37:52 -08006625EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo31cc23b2007-09-23 13:14:12 +09006626EXPORT_SYMBOL_GPL(ata_std_qc_defer);
Brian Kinge46834c2006-03-17 17:04:03 -06006627EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00006629EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09006630EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heoaa2731a2008-04-07 22:47:19 +09006631EXPORT_SYMBOL_GPL(ata_wait_after_reset);
Tejun Heo936fd732007-08-06 18:36:23 +09006632EXPORT_SYMBOL_GPL(sata_link_debounce);
6633EXPORT_SYMBOL_GPL(sata_link_resume);
Tejun Heo0aa11132008-04-07 22:47:18 +09006634EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heocc0680a2007-08-06 18:36:23 +09006635EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heo57c9efd2008-04-07 22:47:19 +09006636EXPORT_SYMBOL_GPL(sata_std_hardreset);
Tejun Heo203c75b2008-04-07 22:47:18 +09006637EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006638EXPORT_SYMBOL_GPL(ata_dev_classify);
6639EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006641EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006642EXPORT_SYMBOL_GPL(ata_wait_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006645EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006646EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Tejun Heo34bf2172006-05-15 20:57:46 +09006647EXPORT_SYMBOL_GPL(sata_scr_valid);
6648EXPORT_SYMBOL_GPL(sata_scr_read);
6649EXPORT_SYMBOL_GPL(sata_scr_write);
6650EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09006651EXPORT_SYMBOL_GPL(ata_link_online);
6652EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006653#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006654EXPORT_SYMBOL_GPL(ata_host_suspend);
6655EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006656#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09006657EXPORT_SYMBOL_GPL(ata_id_string);
6658EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan Cox963e4972008-07-24 17:16:06 +01006659EXPORT_SYMBOL_GPL(ata_do_dev_read_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6661
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006662EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Tejun Heo63573572007-11-27 19:43:39 +09006663EXPORT_SYMBOL_GPL(ata_timing_find_mode);
Alan Cox452503f2005-10-21 19:01:32 -04006664EXPORT_SYMBOL_GPL(ata_timing_compute);
6665EXPORT_SYMBOL_GPL(ata_timing_merge);
Tejun Heoa0f79b92007-12-18 16:33:05 +09006666EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
Alan Cox452503f2005-10-21 19:01:32 -04006667
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668#ifdef CONFIG_PCI
6669EXPORT_SYMBOL_GPL(pci_test_config_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006671#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09006672EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6673EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006674EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6675EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006676#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006678
Tejun Heob64bbc32007-07-16 14:29:39 +09006679EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
6680EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
6681EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09006682EXPORT_SYMBOL_GPL(ata_port_desc);
6683#ifdef CONFIG_PCI
6684EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
6685#endif /* CONFIG_PCI */
Tejun Heo7b70fc02006-05-15 20:58:07 +09006686EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09006687EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006688EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006689EXPORT_SYMBOL_GPL(ata_port_freeze);
Tejun Heo7d77b242007-09-23 13:14:13 +09006690EXPORT_SYMBOL_GPL(sata_async_notification);
Tejun Heoe3180492006-05-15 20:58:09 +09006691EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6692EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006693EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6694EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Mark Lord10acf3b2008-05-02 02:14:53 -04006695EXPORT_SYMBOL_GPL(ata_eh_analyze_ncq_error);
Tejun Heo022bdb02006-05-15 20:58:22 +09006696EXPORT_SYMBOL_GPL(ata_do_eh);
Tejun Heoa1efdab2008-03-25 12:22:50 +09006697EXPORT_SYMBOL_GPL(ata_std_error_handler);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006698
6699EXPORT_SYMBOL_GPL(ata_cable_40wire);
6700EXPORT_SYMBOL_GPL(ata_cable_80wire);
6701EXPORT_SYMBOL_GPL(ata_cable_unknown);
Tejun Heoc88f90c2007-11-27 19:43:48 +09006702EXPORT_SYMBOL_GPL(ata_cable_ignore);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006703EXPORT_SYMBOL_GPL(ata_cable_sata);