blob: 9ae583554c8b79791b42e544caf14648adbfddaf [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;
Alan Cox432729f2007-03-08 23:22:59 +00002004 /* PIO3 and higher it is mandatory */
2005 if (adev->pio_mode > XFER_PIO_2)
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002006 return 1;
Alan Cox432729f2007-03-08 23:22:59 +00002007 /* We turn it on when possible */
2008 if (ata_id_has_iordy(adev->id))
2009 return 1;
2010 return 0;
2011}
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002012
Alan Cox432729f2007-03-08 23:22:59 +00002013/**
2014 * ata_pio_mask_no_iordy - Return the non IORDY mask
2015 * @adev: ATA device
2016 *
2017 * Compute the highest mode possible if we are not using iordy. Return
2018 * -1 if no iordy mode is available.
2019 */
Jeff Garzika617c092007-05-21 20:14:23 -04002020
Alan Cox432729f2007-03-08 23:22:59 +00002021static u32 ata_pio_mask_no_iordy(const struct ata_device *adev)
2022{
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002023 /* If we have no drive specific rule, then PIO 2 is non IORDY */
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002024 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */
Alan Cox432729f2007-03-08 23:22:59 +00002025 u16 pio = adev->id[ATA_ID_EIDE_PIO];
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002026 /* Is the speed faster than the drive allows non IORDY ? */
2027 if (pio) {
2028 /* This is cycle times not frequency - watch the logic! */
2029 if (pio > 240) /* PIO2 is 240nS per cycle */
Alan Cox432729f2007-03-08 23:22:59 +00002030 return 3 << ATA_SHIFT_PIO;
2031 return 7 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002032 }
2033 }
Alan Cox432729f2007-03-08 23:22:59 +00002034 return 3 << ATA_SHIFT_PIO;
Alan Cox1bc4ccf2006-01-09 17:18:14 +00002035}
2036
2037/**
Alan Cox963e4972008-07-24 17:16:06 +01002038 * ata_do_dev_read_id - default ID read method
2039 * @dev: device
2040 * @tf: proposed taskfile
2041 * @id: data buffer
2042 *
2043 * Issue the identify taskfile and hand back the buffer containing
2044 * identify data. For some RAID controllers and for pre ATA devices
2045 * this function is wrapped or replaced by the driver
2046 */
2047unsigned int ata_do_dev_read_id(struct ata_device *dev,
2048 struct ata_taskfile *tf, u16 *id)
2049{
2050 return ata_exec_internal(dev, tf, NULL, DMA_FROM_DEVICE,
2051 id, sizeof(id[0]) * ATA_ID_WORDS, 0);
2052}
2053
2054/**
Tejun Heo49016ac2006-02-21 02:12:11 +09002055 * ata_dev_read_id - Read ID data from the specified device
Tejun Heo49016ac2006-02-21 02:12:11 +09002056 * @dev: target device
2057 * @p_class: pointer to class of the target device (may be changed)
Tejun Heobff04642006-11-10 18:08:10 +09002058 * @flags: ATA_READID_* flags
Tejun Heofe635c72006-05-15 20:57:35 +09002059 * @id: buffer to read IDENTIFY data into
Tejun Heo49016ac2006-02-21 02:12:11 +09002060 *
2061 * Read ID data from the specified device. ATA_CMD_ID_ATA is
2062 * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI
Tejun Heoaec5c3c2006-03-25 01:33:34 +09002063 * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS
2064 * for pre-ATA4 drives.
Tejun Heo49016ac2006-02-21 02:12:11 +09002065 *
Alan Cox50a99012007-08-08 14:27:00 +01002066 * FIXME: ATA_CMD_ID_ATA is optional for early drives and right
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002067 * now we abort if we hit that case.
Alan Cox50a99012007-08-08 14:27:00 +01002068 *
Tejun Heo49016ac2006-02-21 02:12:11 +09002069 * LOCKING:
2070 * Kernel thread context (may sleep)
2071 *
2072 * RETURNS:
2073 * 0 on success, -errno otherwise.
2074 */
Tejun Heoa9beec92006-05-31 18:27:44 +09002075int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
Tejun Heobff04642006-11-10 18:08:10 +09002076 unsigned int flags, u16 *id)
Tejun Heo49016ac2006-02-21 02:12:11 +09002077{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002078 struct ata_port *ap = dev->link->ap;
Tejun Heo49016ac2006-02-21 02:12:11 +09002079 unsigned int class = *p_class;
Tejun Heo49016ac2006-02-21 02:12:11 +09002080 struct ata_taskfile tf;
2081 unsigned int err_mask = 0;
2082 const char *reason;
Tejun Heo54936f82007-05-11 14:35:29 +02002083 int may_fallback = 1, tried_spinup = 0;
Tejun Heo49016ac2006-02-21 02:12:11 +09002084 int rc;
2085
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002086 if (ata_msg_ctl(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002087 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Tejun Heo49016ac2006-02-21 02:12:11 +09002088
Alan Cox963e4972008-07-24 17:16:06 +01002089retry:
Tejun Heo3373efd2006-05-15 20:57:53 +09002090 ata_tf_init(dev, &tf);
Tejun Heo49016ac2006-02-21 02:12:11 +09002091
2092 switch (class) {
2093 case ATA_DEV_ATA:
2094 tf.command = ATA_CMD_ID_ATA;
2095 break;
2096 case ATA_DEV_ATAPI:
2097 tf.command = ATA_CMD_ID_ATAPI;
2098 break;
2099 default:
2100 rc = -ENODEV;
2101 reason = "unsupported class";
2102 goto err_out;
2103 }
2104
2105 tf.protocol = ATA_PROT_PIO;
Tejun Heo81afe892007-02-07 12:37:41 -08002106
2107 /* Some devices choke if TF registers contain garbage. Make
2108 * sure those are properly initialized.
2109 */
2110 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2111
2112 /* Device presence detection is unreliable on some
2113 * controllers. Always poll IDENTIFY if available.
2114 */
2115 tf.flags |= ATA_TFLAG_POLLING;
Tejun Heo49016ac2006-02-21 02:12:11 +09002116
Alan Cox963e4972008-07-24 17:16:06 +01002117 if (ap->ops->read_id)
2118 err_mask = ap->ops->read_id(dev, &tf, id);
2119 else
2120 err_mask = ata_do_dev_read_id(dev, &tf, id);
2121
Tejun Heo49016ac2006-02-21 02:12:11 +09002122 if (err_mask) {
Tejun Heo800b3992006-12-03 21:34:13 +09002123 if (err_mask & AC_ERR_NODEV_HINT) {
Tejun Heo1ffc1512008-03-23 15:16:53 +09002124 ata_dev_printk(dev, KERN_DEBUG,
2125 "NODEV after polling detection\n");
Tejun Heo55a8e2c2006-11-10 18:08:10 +09002126 return -ENOENT;
2127 }
2128
Tejun Heo1ffc1512008-03-23 15:16:53 +09002129 if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) {
2130 /* Device or controller might have reported
2131 * the wrong device class. Give a shot at the
2132 * other IDENTIFY if the current one is
2133 * aborted by the device.
2134 */
2135 if (may_fallback) {
2136 may_fallback = 0;
Tejun Heo54936f82007-05-11 14:35:29 +02002137
Tejun Heo1ffc1512008-03-23 15:16:53 +09002138 if (class == ATA_DEV_ATA)
2139 class = ATA_DEV_ATAPI;
2140 else
2141 class = ATA_DEV_ATA;
2142 goto retry;
2143 }
2144
2145 /* Control reaches here iff the device aborted
2146 * both flavors of IDENTIFYs which happens
2147 * sometimes with phantom devices.
2148 */
2149 ata_dev_printk(dev, KERN_DEBUG,
2150 "both IDENTIFYs aborted, assuming NODEV\n");
2151 return -ENOENT;
Tejun Heo54936f82007-05-11 14:35:29 +02002152 }
2153
Tejun Heo49016ac2006-02-21 02:12:11 +09002154 rc = -EIO;
2155 reason = "I/O error";
Tejun Heo49016ac2006-02-21 02:12:11 +09002156 goto err_out;
2157 }
2158
Tejun Heo54936f82007-05-11 14:35:29 +02002159 /* Falling back doesn't make sense if ID data was read
2160 * successfully at least once.
2161 */
2162 may_fallback = 0;
2163
Tejun Heo49016ac2006-02-21 02:12:11 +09002164 swap_buf_le16(id, ATA_ID_WORDS);
2165
Tejun Heo49016ac2006-02-21 02:12:11 +09002166 /* sanity check */
Tejun Heoa4f57492006-09-12 20:35:49 -07002167 rc = -EINVAL;
Alan Cox60700682007-06-07 16:13:55 +01002168 reason = "device reports invalid type";
Tejun Heoa4f57492006-09-12 20:35:49 -07002169
2170 if (class == ATA_DEV_ATA) {
2171 if (!ata_id_is_ata(id) && !ata_id_is_cfa(id))
2172 goto err_out;
2173 } else {
2174 if (ata_id_is_ata(id))
2175 goto err_out;
Tejun Heo49016ac2006-02-21 02:12:11 +09002176 }
2177
Mark Lord169439c2007-04-17 18:26:07 -04002178 if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) {
2179 tried_spinup = 1;
2180 /*
2181 * Drive powered-up in standby mode, and requires a specific
2182 * SET_FEATURES spin-up subcommand before it will accept
2183 * anything other than the original IDENTIFY command.
2184 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002185 err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0);
Ryan Powerfb0582f92007-08-10 13:59:35 -07002186 if (err_mask && id[2] != 0x738c) {
Mark Lord169439c2007-04-17 18:26:07 -04002187 rc = -EIO;
2188 reason = "SPINUP failed";
2189 goto err_out;
2190 }
2191 /*
2192 * If the drive initially returned incomplete IDENTIFY info,
2193 * we now must reissue the IDENTIFY command.
2194 */
2195 if (id[2] == 0x37c8)
2196 goto retry;
2197 }
2198
Tejun Heobff04642006-11-10 18:08:10 +09002199 if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) {
Tejun Heo49016ac2006-02-21 02:12:11 +09002200 /*
2201 * The exact sequence expected by certain pre-ATA4 drives is:
2202 * SRST RESET
Alan Cox50a99012007-08-08 14:27:00 +01002203 * IDENTIFY (optional in early ATA)
2204 * INITIALIZE DEVICE PARAMETERS (later IDE and ATA)
Tejun Heo49016ac2006-02-21 02:12:11 +09002205 * anything else..
2206 * Some drives were very specific about that exact sequence.
Alan Cox50a99012007-08-08 14:27:00 +01002207 *
2208 * Note that ATA4 says lba is mandatory so the second check
2209 * shoud never trigger.
Tejun Heo49016ac2006-02-21 02:12:11 +09002210 */
2211 if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) {
Tejun Heo3373efd2006-05-15 20:57:53 +09002212 err_mask = ata_dev_init_params(dev, id[3], id[6]);
Tejun Heo49016ac2006-02-21 02:12:11 +09002213 if (err_mask) {
2214 rc = -EIO;
2215 reason = "INIT_DEV_PARAMS failed";
2216 goto err_out;
2217 }
2218
2219 /* current CHS translation info (id[53-58]) might be
2220 * changed. reread the identify device info.
2221 */
Tejun Heobff04642006-11-10 18:08:10 +09002222 flags &= ~ATA_READID_POSTRESET;
Tejun Heo49016ac2006-02-21 02:12:11 +09002223 goto retry;
2224 }
2225 }
2226
2227 *p_class = class;
Tejun Heofe635c72006-05-15 20:57:35 +09002228
Tejun Heo49016ac2006-02-21 02:12:11 +09002229 return 0;
2230
2231 err_out:
Tejun Heo88574552006-06-25 20:00:35 +09002232 if (ata_msg_warn(ap))
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002233 ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY "
Tejun Heo88574552006-06-25 20:00:35 +09002234 "(%s, err_mask=0x%x)\n", reason, err_mask);
Tejun Heo49016ac2006-02-21 02:12:11 +09002235 return rc;
2236}
2237
Tejun Heo3373efd2006-05-15 20:57:53 +09002238static inline u8 ata_dev_knobble(struct ata_device *dev)
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002239{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002240 struct ata_port *ap = dev->link->ap;
Jens Axboe9ce8e302008-08-27 15:23:18 +02002241
2242 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_BRIDGE_OK)
2243 return 0;
2244
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002245 return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id)));
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002246}
2247
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002248static void ata_dev_config_ncq(struct ata_device *dev,
2249 char *desc, size_t desc_sz)
2250{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002251 struct ata_port *ap = dev->link->ap;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002252 int hdepth = 0, ddepth = ata_id_queue_depth(dev->id);
2253
2254 if (!ata_id_has_ncq(dev->id)) {
2255 desc[0] = '\0';
2256 return;
2257 }
Tejun Heo75683fe2007-07-05 13:31:27 +09002258 if (dev->horkage & ATA_HORKAGE_NONCQ) {
Alan Cox6919a0a2006-10-27 19:08:46 -07002259 snprintf(desc, desc_sz, "NCQ (not used)");
2260 return;
2261 }
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002262 if (ap->flags & ATA_FLAG_NCQ) {
Jeff Garzikcca39742006-08-24 03:19:22 -04002263 hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002264 dev->flags |= ATA_DFLAG_NCQ;
2265 }
2266
2267 if (hdepth >= ddepth)
2268 snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth);
2269 else
2270 snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth);
2271}
2272
Tejun Heo49016ac2006-02-21 02:12:11 +09002273/**
Tejun Heoffeae412006-03-01 16:09:35 +09002274 * ata_dev_configure - Configure the specified ATA/ATAPI device
Tejun Heoffeae412006-03-01 16:09:35 +09002275 * @dev: Target device to configure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 *
Tejun Heoffeae412006-03-01 16:09:35 +09002277 * Configure @dev according to @dev->id. Generic and low-level
2278 * driver specific fixups are also applied.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 *
2280 * LOCKING:
Tejun Heoffeae412006-03-01 16:09:35 +09002281 * Kernel thread context (may sleep)
2282 *
2283 * RETURNS:
2284 * 0 on success, -errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 */
Tejun Heoefdaedc2006-11-01 18:38:52 +09002286int ata_dev_configure(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002288 struct ata_port *ap = dev->link->ap;
2289 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo67465442007-05-15 03:28:16 +09002290 int print_info = ehc->i.flags & ATA_EHI_PRINTINFO;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002291 const u16 *id = dev->id;
Tejun Heo7dc951a2007-11-27 19:43:42 +09002292 unsigned long xfer_mask;
Alan Coxb352e572006-08-10 18:52:12 +01002293 char revbuf[7]; /* XYZ-99\0 */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002294 char fwrevbuf[ATA_ID_FW_REV_LEN+1];
2295 char modelbuf[ATA_ID_PROD_LEN+1];
Brian Kinge6d902a2006-06-28 08:30:31 -05002296 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002298 if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
Tejun Heo44877b42007-02-21 01:06:51 +09002299 ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002300 __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002301 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 }
2303
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002304 if (ata_msg_probe(ap))
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002305 ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Tejun Heo75683fe2007-07-05 13:31:27 +09002307 /* set horkage */
2308 dev->horkage |= ata_dev_blacklisted(dev);
Tejun Heo33267322008-02-13 09:15:09 +09002309 ata_force_horkage(dev);
Tejun Heo75683fe2007-07-05 13:31:27 +09002310
Tejun Heo50af2fa2008-05-19 01:15:14 +09002311 if (dev->horkage & ATA_HORKAGE_DISABLE) {
2312 ata_dev_printk(dev, KERN_INFO,
2313 "unsupported device, disabling\n");
2314 ata_dev_disable(dev);
2315 return 0;
2316 }
2317
Tejun Heo2486fa52008-07-31 07:52:40 +09002318 if ((!atapi_enabled || (ap->flags & ATA_FLAG_NO_ATAPI)) &&
2319 dev->class == ATA_DEV_ATAPI) {
2320 ata_dev_printk(dev, KERN_WARNING,
2321 "WARNING: ATAPI is %s, device ignored.\n",
2322 atapi_enabled ? "not supported with this driver"
2323 : "disabled");
2324 ata_dev_disable(dev);
2325 return 0;
2326 }
2327
Tejun Heo67465442007-05-15 03:28:16 +09002328 /* let ACPI work its magic */
2329 rc = ata_acpi_on_devcfg(dev);
2330 if (rc)
2331 return rc;
Kristen Carlson Accardi08573a82006-11-10 16:14:47 -08002332
Tejun Heo05027ad2007-09-03 12:32:57 +09002333 /* massage HPA, do it early as it might change IDENTIFY data */
2334 rc = ata_hpa_resize(dev);
2335 if (rc)
2336 return rc;
2337
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002338 /* print device capabilities */
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002339 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002340 ata_dev_printk(dev, KERN_DEBUG,
2341 "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x "
2342 "85:%04x 86:%04x 87:%04x 88:%04x\n",
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002343 __func__,
Tejun Heof15a1da2006-05-15 20:57:56 +09002344 id[49], id[82], id[83], id[84],
2345 id[85], id[86], id[87], id[88]);
Tejun Heoc39f5eb2006-03-13 19:51:19 +09002346
Tejun Heo208a9932006-03-05 17:55:58 +09002347 /* initialize to-be-configured parameters */
Tejun Heoea1dd4e2006-04-02 18:51:53 +09002348 dev->flags &= ~ATA_DFLAG_CFG_MASK;
Tejun Heo208a9932006-03-05 17:55:58 +09002349 dev->max_sectors = 0;
2350 dev->cdb_len = 0;
2351 dev->n_sectors = 0;
2352 dev->cylinders = 0;
2353 dev->heads = 0;
2354 dev->sectors = 0;
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 /*
2357 * common ATA, ATAPI feature tests
2358 */
2359
Tejun Heoff8854b2006-03-06 04:31:56 +09002360 /* find max transfer mode; for printk only */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002361 xfer_mask = ata_id_xfermask(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002363 if (ata_msg_probe(ap))
2364 ata_dump_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Albert Leeef143d52007-06-05 13:01:33 +08002366 /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */
2367 ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV,
2368 sizeof(fwrevbuf));
2369
2370 ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD,
2371 sizeof(modelbuf));
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 /* ATA-specific feature tests */
2374 if (dev->class == ATA_DEV_ATA) {
Alan Coxb352e572006-08-10 18:52:12 +01002375 if (ata_id_is_cfa(id)) {
2376 if (id[162] & 1) /* CPRM may make this media unusable */
Tejun Heo44877b42007-02-21 01:06:51 +09002377 ata_dev_printk(dev, KERN_WARNING,
2378 "supports DRM functions and may "
2379 "not be fully accessable.\n");
Alan Coxb352e572006-08-10 18:52:12 +01002380 snprintf(revbuf, 7, "CFA");
Alan Coxae8d4ee2007-11-04 22:05:49 -05002381 } else {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002382 snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id));
Alan Coxae8d4ee2007-11-04 22:05:49 -05002383 /* Warn the user if the device has TPM extensions */
2384 if (ata_id_has_tpm(id))
2385 ata_dev_printk(dev, KERN_WARNING,
2386 "supports DRM functions and may "
2387 "not be fully accessable.\n");
2388 }
Alan Coxb352e572006-08-10 18:52:12 +01002389
Tejun Heo1148c3a2006-03-13 19:48:04 +09002390 dev->n_sectors = ata_id_n_sectors(id);
Tejun Heo29407402006-02-12 22:47:04 +09002391
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002392 if (dev->id[59] & 0x100)
2393 dev->multi_count = dev->id[59] & 0xff;
2394
Tejun Heo1148c3a2006-03-13 19:48:04 +09002395 if (ata_id_has_lba(id)) {
Tejun Heo4c2d7212006-03-05 17:55:58 +09002396 const char *lba_desc;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002397 char ncq_desc[20];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002398
Tejun Heo4c2d7212006-03-05 17:55:58 +09002399 lba_desc = "LBA";
2400 dev->flags |= ATA_DFLAG_LBA;
Tejun Heo1148c3a2006-03-13 19:48:04 +09002401 if (ata_id_has_lba48(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002402 dev->flags |= ATA_DFLAG_LBA48;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002403 lba_desc = "LBA48";
Tejun Heo6fc49ad2006-11-11 20:10:45 +09002404
2405 if (dev->n_sectors >= (1UL << 28) &&
2406 ata_id_has_flush_ext(id))
2407 dev->flags |= ATA_DFLAG_FLUSH_EXT;
Tejun Heo4c2d7212006-03-05 17:55:58 +09002408 }
Albert Lee8bf62ece2005-05-12 15:29:42 -04002409
Tejun Heoa6e6ce82006-05-15 21:03:48 +09002410 /* config NCQ */
2411 ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc));
2412
Albert Lee8bf62ece2005-05-12 15:29:42 -04002413 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002414 if (ata_msg_drv(ap) && print_info) {
2415 ata_dev_printk(dev, KERN_INFO,
2416 "%s: %s, %s, max %s\n",
2417 revbuf, modelbuf, fwrevbuf,
2418 ata_mode_string(xfer_mask));
2419 ata_dev_printk(dev, KERN_INFO,
2420 "%Lu sectors, multi %u: %s %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002421 (unsigned long long)dev->n_sectors,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002422 dev->multi_count, lba_desc, ncq_desc);
2423 }
Tejun Heoffeae412006-03-01 16:09:35 +09002424 } else {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002425 /* CHS */
2426
2427 /* Default translation */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002428 dev->cylinders = id[1];
2429 dev->heads = id[3];
2430 dev->sectors = id[6];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002431
Tejun Heo1148c3a2006-03-13 19:48:04 +09002432 if (ata_id_current_chs_valid(id)) {
Albert Lee8bf62ece2005-05-12 15:29:42 -04002433 /* Current CHS translation is valid. */
Tejun Heo1148c3a2006-03-13 19:48:04 +09002434 dev->cylinders = id[54];
2435 dev->heads = id[55];
2436 dev->sectors = id[56];
Albert Lee8bf62ece2005-05-12 15:29:42 -04002437 }
2438
2439 /* print device info to dmesg */
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002440 if (ata_msg_drv(ap) && print_info) {
Tejun Heo88574552006-06-25 20:00:35 +09002441 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002442 "%s: %s, %s, max %s\n",
2443 revbuf, modelbuf, fwrevbuf,
2444 ata_mode_string(xfer_mask));
Jeff Garzika84471f2007-02-26 05:51:33 -05002445 ata_dev_printk(dev, KERN_INFO,
Eric D. Mudama3f64f562007-01-30 23:00:40 -07002446 "%Lu sectors, multi %u, CHS %u/%u/%u\n",
2447 (unsigned long long)dev->n_sectors,
2448 dev->multi_count, dev->cylinders,
2449 dev->heads, dev->sectors);
2450 }
Albert Lee07f6f7d2005-11-01 19:33:20 +08002451 }
2452
Tejun Heo6e7846e2006-02-12 23:32:58 +09002453 dev->cdb_len = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 }
2455
2456 /* ATAPI-specific feature tests */
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05002457 else if (dev->class == ATA_DEV_ATAPI) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002458 const char *cdb_intr_string = "";
2459 const char *atapi_an_string = "";
Tejun Heo91163002008-02-21 13:25:50 +09002460 const char *dma_dir_string = "";
Tejun Heo7d77b242007-09-23 13:14:13 +09002461 u32 sntf;
Albert Lee08a556d2006-03-31 13:29:04 +08002462
Tejun Heo1148c3a2006-03-13 19:48:04 +09002463 rc = atapi_cdb_len(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 if ((rc < 12) || (rc > ATAPI_CDB_LEN)) {
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002465 if (ata_msg_warn(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002466 ata_dev_printk(dev, KERN_WARNING,
2467 "unsupported CDB len\n");
Tejun Heoffeae412006-03-01 16:09:35 +09002468 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 goto err_out_nosup;
2470 }
Tejun Heo6e7846e2006-02-12 23:32:58 +09002471 dev->cdb_len = (unsigned int) rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Tejun Heo7d77b242007-09-23 13:14:13 +09002473 /* Enable ATAPI AN if both the host and device have
2474 * the support. If PMP is attached, SNTF is required
2475 * to enable ATAPI AN to discern between PHY status
2476 * changed notifications and ATAPI ANs.
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002477 */
Tejun Heo7d77b242007-09-23 13:14:13 +09002478 if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) &&
Tejun Heo071f44b2008-04-07 22:47:22 +09002479 (!sata_pmp_attached(ap) ||
Tejun Heo7d77b242007-09-23 13:14:13 +09002480 sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) {
Tejun Heo854c73a2007-09-23 13:14:11 +09002481 unsigned int err_mask;
2482
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002483 /* issue SET feature command to turn this on */
Jeff Garzik218f3d32007-10-25 00:33:27 -04002484 err_mask = ata_dev_set_feature(dev,
2485 SETFEATURES_SATA_ENABLE, SATA_AN);
Tejun Heo854c73a2007-09-23 13:14:11 +09002486 if (err_mask)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002487 ata_dev_printk(dev, KERN_ERR,
Tejun Heo854c73a2007-09-23 13:14:11 +09002488 "failed to enable ATAPI AN "
2489 "(err_mask=0x%x)\n", err_mask);
2490 else {
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002491 dev->flags |= ATA_DFLAG_AN;
Tejun Heo854c73a2007-09-23 13:14:11 +09002492 atapi_an_string = ", ATAPI AN";
2493 }
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04002494 }
2495
Albert Lee08a556d2006-03-31 13:29:04 +08002496 if (ata_id_cdb_intr(dev->id)) {
Albert Lee312f7da2005-09-27 17:38:03 +08002497 dev->flags |= ATA_DFLAG_CDB_INTR;
Albert Lee08a556d2006-03-31 13:29:04 +08002498 cdb_intr_string = ", CDB intr";
2499 }
Albert Lee312f7da2005-09-27 17:38:03 +08002500
Tejun Heo91163002008-02-21 13:25:50 +09002501 if (atapi_dmadir || atapi_id_dmadir(dev->id)) {
2502 dev->flags |= ATA_DFLAG_DMADIR;
2503 dma_dir_string = ", DMADIR";
2504 }
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 /* print device info to dmesg */
Borislav Petkov5afc8142006-06-27 14:51:25 +02002507 if (ata_msg_drv(ap) && print_info)
Albert Leeef143d52007-06-05 13:01:33 +08002508 ata_dev_printk(dev, KERN_INFO,
Tejun Heo91163002008-02-21 13:25:50 +09002509 "ATAPI: %s, %s, max %s%s%s%s\n",
Albert Leeef143d52007-06-05 13:01:33 +08002510 modelbuf, fwrevbuf,
Tejun Heo12436c32006-05-15 20:59:15 +09002511 ata_mode_string(xfer_mask),
Tejun Heo91163002008-02-21 13:25:50 +09002512 cdb_intr_string, atapi_an_string,
2513 dma_dir_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 }
2515
Tejun Heo914ed352006-11-01 18:39:55 +09002516 /* determine max_sectors */
2517 dev->max_sectors = ATA_MAX_SECTORS;
2518 if (dev->flags & ATA_DFLAG_LBA48)
2519 dev->max_sectors = ATA_MAX_SECTORS_LBA48;
2520
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002521 if (!(dev->horkage & ATA_HORKAGE_IPM)) {
2522 if (ata_id_has_hipm(dev->id))
2523 dev->flags |= ATA_DFLAG_HIPM;
2524 if (ata_id_has_dipm(dev->id))
2525 dev->flags |= ATA_DFLAG_DIPM;
2526 }
2527
Alan Coxc5038fc2007-10-25 14:21:16 +01002528 /* Limit PATA drive on SATA cable bridge transfers to udma5,
2529 200 sectors */
Tejun Heo3373efd2006-05-15 20:57:53 +09002530 if (ata_dev_knobble(dev)) {
Borislav Petkov5afc8142006-06-27 14:51:25 +02002531 if (ata_msg_drv(ap) && print_info)
Tejun Heof15a1da2006-05-15 20:57:56 +09002532 ata_dev_printk(dev, KERN_INFO,
2533 "applying bridge limits\n");
Tejun Heo5a529132006-03-24 14:07:50 +09002534 dev->udma_mask &= ATA_UDMA5;
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002535 dev->max_sectors = ATA_MAX_SECTORS;
2536 }
2537
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002538 if ((dev->class == ATA_DEV_ATAPI) &&
Albert Leef442cd82007-11-15 10:35:47 +09002539 (atapi_command_packet_set(id) == TYPE_TAPE)) {
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002540 dev->max_sectors = ATA_MAX_SECTORS_TAPE;
Albert Leef442cd82007-11-15 10:35:47 +09002541 dev->horkage |= ATA_HORKAGE_STUCK_ERR;
2542 }
Tony Battersbyf8d8e572007-10-30 11:44:35 -04002543
Tejun Heo75683fe2007-07-05 13:31:27 +09002544 if (dev->horkage & ATA_HORKAGE_MAX_SEC_128)
Tejun Heo03ec52d2007-04-12 13:38:11 +09002545 dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128,
2546 dev->max_sectors);
Albert Lee18d6e9d2007-04-02 11:34:15 +08002547
Kristen Carlson Accardica773292007-10-25 00:58:59 -04002548 if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) {
2549 dev->horkage |= ATA_HORKAGE_IPM;
2550
2551 /* reset link pm_policy for this port to no pm */
2552 ap->pm_policy = MAX_PERFORMANCE;
2553 }
2554
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002555 if (ap->ops->dev_config)
Alancd0d3bb2007-03-02 00:56:15 +00002556 ap->ops->dev_config(dev);
Tejun Heo4b2f3ed2006-03-01 16:09:36 +09002557
Alan Coxc5038fc2007-10-25 14:21:16 +01002558 if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) {
2559 /* Let the user know. We don't want to disallow opens for
2560 rescue purposes, or in case the vendor is just a blithering
2561 idiot. Do this after the dev_config call as some controllers
2562 with buggy firmware may want to avoid reporting false device
2563 bugs */
2564
2565 if (print_info) {
2566 ata_dev_printk(dev, KERN_WARNING,
2567"Drive reports diagnostics failure. This may indicate a drive\n");
2568 ata_dev_printk(dev, KERN_WARNING,
2569"fault or invalid emulation. Contact drive vendor for information.\n");
2570 }
2571 }
2572
Tejun Heoac70a962008-11-27 13:36:48 +09002573 if ((dev->horkage & ATA_HORKAGE_FIRMWARE_WARN) && print_info) {
2574 ata_dev_printk(dev, KERN_WARNING, "WARNING: device requires "
2575 "firmware update to be fully functional.\n");
2576 ata_dev_printk(dev, KERN_WARNING, " contact the vendor "
2577 "or visit http://ata.wiki.kernel.org.\n");
2578 }
2579
Tejun Heoffeae412006-03-01 16:09:35 +09002580 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582err_out_nosup:
Borislav Petkov0dd4b212006-06-23 02:29:08 -04002583 if (ata_msg_probe(ap))
Tejun Heo88574552006-06-25 20:00:35 +09002584 ata_dev_printk(dev, KERN_DEBUG,
Harvey Harrison7f5e4e82008-03-05 18:24:52 -08002585 "%s: EXIT, err\n", __func__);
Tejun Heoffeae412006-03-01 16:09:35 +09002586 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587}
2588
2589/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002590 * ata_cable_40wire - return 40 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002591 * @ap: port
2592 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002593 * Helper method for drivers which want to hardwire 40 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002594 * detection.
2595 */
2596
2597int ata_cable_40wire(struct ata_port *ap)
2598{
2599 return ATA_CBL_PATA40;
2600}
2601
2602/**
Alan Cox2e41e8e2007-03-08 23:19:19 +00002603 * ata_cable_80wire - return 80 wire cable type
Alan Coxbe0d18d2007-03-06 02:37:56 -08002604 * @ap: port
2605 *
Alan Cox2e41e8e2007-03-08 23:19:19 +00002606 * Helper method for drivers which want to hardwire 80 wire cable
Alan Coxbe0d18d2007-03-06 02:37:56 -08002607 * detection.
2608 */
2609
2610int ata_cable_80wire(struct ata_port *ap)
2611{
2612 return ATA_CBL_PATA80;
2613}
2614
2615/**
2616 * ata_cable_unknown - return unknown PATA cable.
2617 * @ap: port
2618 *
2619 * Helper method for drivers which have no PATA cable detection.
2620 */
2621
2622int ata_cable_unknown(struct ata_port *ap)
2623{
2624 return ATA_CBL_PATA_UNK;
2625}
2626
2627/**
Tejun Heoc88f90c2007-11-27 19:43:48 +09002628 * ata_cable_ignore - return ignored PATA cable.
2629 * @ap: port
2630 *
2631 * Helper method for drivers which don't use cable type to limit
2632 * transfer mode.
2633 */
2634int ata_cable_ignore(struct ata_port *ap)
2635{
2636 return ATA_CBL_PATA_IGN;
2637}
2638
2639/**
Alan Coxbe0d18d2007-03-06 02:37:56 -08002640 * ata_cable_sata - return SATA cable type
2641 * @ap: port
2642 *
2643 * Helper method for drivers which have SATA cables
2644 */
2645
2646int ata_cable_sata(struct ata_port *ap)
2647{
2648 return ATA_CBL_SATA;
2649}
2650
2651/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 * ata_bus_probe - Reset and probe ATA bus
2653 * @ap: Bus to probe
2654 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002655 * Master ATA bus probing function. Initiates a hardware-dependent
2656 * bus reset, then attempts to identify any devices found on
2657 * the bus.
2658 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04002660 * PCI/etc. bus probe sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 *
2662 * RETURNS:
Tejun Heo96072e62006-04-01 01:38:17 +09002663 * Zero on success, negative errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 */
2665
Brian King80289162006-08-07 14:27:31 -05002666int ata_bus_probe(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
Tejun Heo28ca5c52006-03-01 16:09:36 +09002668 unsigned int classes[ATA_MAX_DEVICES];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002669 int tries[ATA_MAX_DEVICES];
Tejun Heof58229f2007-08-06 18:36:23 +09002670 int rc;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002671 struct ata_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Tejun Heo28ca5c52006-03-01 16:09:36 +09002673 ata_port_probe(ap);
2674
Tejun Heo1eca4362008-11-03 20:03:17 +09002675 ata_for_each_dev(dev, &ap->link, ALL)
Tejun Heof58229f2007-08-06 18:36:23 +09002676 tries[dev->devno] = ATA_PROBE_MAX_TRIES;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002677
2678 retry:
Tejun Heo1eca4362008-11-03 20:03:17 +09002679 ata_for_each_dev(dev, &ap->link, ALL) {
Tejun Heocdeab112007-10-29 16:41:09 +09002680 /* If we issue an SRST then an ATA drive (not ATAPI)
2681 * may change configuration and be in PIO0 timing. If
2682 * we do a hard reset (or are coming from power on)
2683 * this is true for ATA or ATAPI. Until we've set a
2684 * suitable controller mode we should not touch the
2685 * bus as we may be talking too fast.
2686 */
2687 dev->pio_mode = XFER_PIO_0;
2688
2689 /* If the controller has a pio mode setup function
2690 * then use it to set the chipset to rights. Don't
2691 * touch the DMA setup as that will be dealt with when
2692 * configuring devices.
2693 */
2694 if (ap->ops->set_piomode)
2695 ap->ops->set_piomode(ap, dev);
2696 }
2697
Tejun Heo20444702006-03-13 01:57:01 +09002698 /* reset and determine device classes */
Tejun Heo52783c52006-05-31 18:28:22 +09002699 ap->ops->phy_reset(ap);
Tejun Heo2061a472006-03-12 00:57:39 +09002700
Tejun Heo1eca4362008-11-03 20:03:17 +09002701 ata_for_each_dev(dev, &ap->link, ALL) {
Tejun Heo52783c52006-05-31 18:28:22 +09002702 if (!(ap->flags & ATA_FLAG_DISABLED) &&
2703 dev->class != ATA_DEV_UNKNOWN)
2704 classes[dev->devno] = dev->class;
2705 else
2706 classes[dev->devno] = ATA_DEV_NONE;
Tejun Heo20444702006-03-13 01:57:01 +09002707
Tejun Heo52783c52006-05-31 18:28:22 +09002708 dev->class = ATA_DEV_UNKNOWN;
Tejun Heo28ca5c52006-03-01 16:09:36 +09002709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Tejun Heo52783c52006-05-31 18:28:22 +09002711 ata_port_probe(ap);
Tejun Heo20444702006-03-13 01:57:01 +09002712
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002713 /* read IDENTIFY page and configure devices. We have to do the identify
2714 specific sequence bass-ackwards so that PDIAG- is released by
2715 the slave device */
2716
Tejun Heo1eca4362008-11-03 20:03:17 +09002717 ata_for_each_dev(dev, &ap->link, ALL_REVERSE) {
Tejun Heof58229f2007-08-06 18:36:23 +09002718 if (tries[dev->devno])
2719 dev->class = classes[dev->devno];
Tejun Heo14d2bac2006-04-02 17:54:46 +09002720
Tejun Heoe1211e32006-04-01 01:38:18 +09002721 if (!ata_dev_enabled(dev))
Tejun Heoffeae412006-03-01 16:09:35 +09002722 continue;
2723
Tejun Heobff04642006-11-10 18:08:10 +09002724 rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET,
2725 dev->id);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002726 if (rc)
2727 goto fail;
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002728 }
2729
Alan Coxbe0d18d2007-03-06 02:37:56 -08002730 /* Now ask for the cable type as PDIAG- should have been released */
2731 if (ap->ops->cable_detect)
2732 ap->cbl = ap->ops->cable_detect(ap);
2733
Tejun Heo1eca4362008-11-03 20:03:17 +09002734 /* We may have SATA bridge glue hiding here irrespective of
2735 * the reported cable types and sensed types. When SATA
2736 * drives indicate we have a bridge, we don't know which end
2737 * of the link the bridge is which is a problem.
2738 */
2739 ata_for_each_dev(dev, &ap->link, ENABLED)
Alan Cox614fe292007-08-22 23:22:45 +01002740 if (ata_id_is_sata(dev->id))
2741 ap->cbl = ATA_CBL_SATA;
Alan Cox614fe292007-08-22 23:22:45 +01002742
Jeff Garzikf31f0cc2007-03-02 17:47:28 -05002743 /* After the identify sequence we can now set up the devices. We do
2744 this in the normal order so that the user doesn't get confused */
2745
Tejun Heo1eca4362008-11-03 20:03:17 +09002746 ata_for_each_dev(dev, &ap->link, ENABLED) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002747 ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO;
Tejun Heoefdaedc2006-11-01 18:38:52 +09002748 rc = ata_dev_configure(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002749 ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002750 if (rc)
2751 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 }
2753
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002754 /* configure transfer mode */
Tejun Heo02607312007-08-06 18:36:23 +09002755 rc = ata_set_mode(&ap->link, &dev);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002756 if (rc)
Tejun Heo51713d32006-04-11 22:26:29 +09002757 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Tejun Heo1eca4362008-11-03 20:03:17 +09002759 ata_for_each_dev(dev, &ap->link, ENABLED)
2760 return 0;
Alan Coxe35a9e02006-03-27 18:46:37 +01002761
Tejun Heoe82cbdb2006-04-01 01:38:18 +09002762 /* no device present, disable port */
2763 ata_port_disable(ap);
Tejun Heo96072e62006-04-01 01:38:17 +09002764 return -ENODEV;
Tejun Heo14d2bac2006-04-02 17:54:46 +09002765
2766 fail:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002767 tries[dev->devno]--;
2768
Tejun Heo14d2bac2006-04-02 17:54:46 +09002769 switch (rc) {
2770 case -EINVAL:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002771 /* eeek, something went very wrong, give up */
Tejun Heo14d2bac2006-04-02 17:54:46 +09002772 tries[dev->devno] = 0;
2773 break;
Tejun Heo4ae72a12007-02-02 16:22:30 +09002774
2775 case -ENODEV:
2776 /* give it just one more chance */
2777 tries[dev->devno] = min(tries[dev->devno], 1);
Tejun Heo14d2bac2006-04-02 17:54:46 +09002778 case -EIO:
Tejun Heo4ae72a12007-02-02 16:22:30 +09002779 if (tries[dev->devno] == 1) {
2780 /* This is the last chance, better to slow
2781 * down than lose it.
2782 */
Tejun Heo936fd732007-08-06 18:36:23 +09002783 sata_down_spd_limit(&ap->link);
Tejun Heo4ae72a12007-02-02 16:22:30 +09002784 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2785 }
Tejun Heo14d2bac2006-04-02 17:54:46 +09002786 }
2787
Tejun Heo4ae72a12007-02-02 16:22:30 +09002788 if (!tries[dev->devno])
Tejun Heo3373efd2006-05-15 20:57:53 +09002789 ata_dev_disable(dev);
Tejun Heoec573752006-04-11 22:26:29 +09002790
Tejun Heo14d2bac2006-04-02 17:54:46 +09002791 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792}
2793
2794/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002795 * ata_port_probe - Mark port as enabled
2796 * @ap: Port for which we indicate enablement
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 *
Jeff Garzik0cba6322005-05-30 19:49:12 -04002798 * Modify @ap data structure such that the system
2799 * thinks that the entire port is enabled.
2800 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002801 * LOCKING: host lock, or some other form of
Jeff Garzik0cba6322005-05-30 19:49:12 -04002802 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 */
2804
2805void ata_port_probe(struct ata_port *ap)
2806{
Tejun Heo198e0fe2006-04-02 18:51:52 +09002807 ap->flags &= ~ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808}
2809
2810/**
Tejun Heo3be680b2005-12-19 22:35:02 +09002811 * sata_print_link_status - Print SATA link status
Tejun Heo936fd732007-08-06 18:36:23 +09002812 * @link: SATA link to printk link status about
Tejun Heo3be680b2005-12-19 22:35:02 +09002813 *
2814 * This function prints link speed and status of a SATA link.
2815 *
2816 * LOCKING:
2817 * None.
2818 */
Adrian Bunk6bdb4fc2008-04-21 11:51:11 +03002819static void sata_print_link_status(struct ata_link *link)
Tejun Heo3be680b2005-12-19 22:35:02 +09002820{
Tejun Heo6d5f9732006-04-03 00:09:41 +09002821 u32 sstatus, scontrol, tmp;
Tejun Heo3be680b2005-12-19 22:35:02 +09002822
Tejun Heo936fd732007-08-06 18:36:23 +09002823 if (sata_scr_read(link, SCR_STATUS, &sstatus))
Tejun Heo3be680b2005-12-19 22:35:02 +09002824 return;
Tejun Heo936fd732007-08-06 18:36:23 +09002825 sata_scr_read(link, SCR_CONTROL, &scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002826
Tejun Heob1c72912008-07-31 17:02:43 +09002827 if (ata_phys_link_online(link)) {
Tejun Heo3be680b2005-12-19 22:35:02 +09002828 tmp = (sstatus >> 4) & 0xf;
Tejun Heo936fd732007-08-06 18:36:23 +09002829 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002830 "SATA link up %s (SStatus %X SControl %X)\n",
2831 sata_spd_string(tmp), sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002832 } else {
Tejun Heo936fd732007-08-06 18:36:23 +09002833 ata_link_printk(link, KERN_INFO,
Tejun Heof15a1da2006-05-15 20:57:56 +09002834 "SATA link down (SStatus %X SControl %X)\n",
2835 sstatus, scontrol);
Tejun Heo3be680b2005-12-19 22:35:02 +09002836 }
2837}
2838
2839/**
Alan Coxebdfca62006-03-23 15:38:34 +00002840 * ata_dev_pair - return other device on cable
Alan Coxebdfca62006-03-23 15:38:34 +00002841 * @adev: device
2842 *
2843 * Obtain the other device on the same cable, or if none is
2844 * present NULL is returned
2845 */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05002846
Tejun Heo3373efd2006-05-15 20:57:53 +09002847struct ata_device *ata_dev_pair(struct ata_device *adev)
Alan Coxebdfca62006-03-23 15:38:34 +00002848{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002849 struct ata_link *link = adev->link;
2850 struct ata_device *pair = &link->device[1 - adev->devno];
Tejun Heoe1211e32006-04-01 01:38:18 +09002851 if (!ata_dev_enabled(pair))
Alan Coxebdfca62006-03-23 15:38:34 +00002852 return NULL;
2853 return pair;
2854}
2855
2856/**
Jeff Garzik780a87f2005-05-30 15:41:05 -04002857 * ata_port_disable - Disable port.
2858 * @ap: Port to be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04002860 * Modify @ap data structure such that the system
2861 * thinks that the entire port is disabled, and should
2862 * never attempt to probe or communicate with devices
2863 * on this port.
2864 *
Jeff Garzikcca39742006-08-24 03:19:22 -04002865 * LOCKING: host lock, or some other form of
Jeff Garzik780a87f2005-05-30 15:41:05 -04002866 * serialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 */
2868
2869void ata_port_disable(struct ata_port *ap)
2870{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002871 ap->link.device[0].class = ATA_DEV_NONE;
2872 ap->link.device[1].class = ATA_DEV_NONE;
Tejun Heo198e0fe2006-04-02 18:51:52 +09002873 ap->flags |= ATA_FLAG_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874}
2875
Tejun Heo1c3fae42006-04-02 20:53:28 +09002876/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002877 * sata_down_spd_limit - adjust SATA spd limit downward
Tejun Heo936fd732007-08-06 18:36:23 +09002878 * @link: Link to adjust SATA spd limit for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002879 *
Tejun Heo936fd732007-08-06 18:36:23 +09002880 * Adjust SATA spd limit of @link downward. Note that this
Tejun Heo1c3fae42006-04-02 20:53:28 +09002881 * function only adjusts the limit. The change must be applied
Tejun Heo3c567b72006-05-15 20:57:23 +09002882 * using sata_set_spd().
Tejun Heo1c3fae42006-04-02 20:53:28 +09002883 *
2884 * LOCKING:
2885 * Inherited from caller.
2886 *
2887 * RETURNS:
2888 * 0 on success, negative errno on failure
2889 */
Tejun Heo936fd732007-08-06 18:36:23 +09002890int sata_down_spd_limit(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002891{
Tejun Heo81952c52006-05-15 20:57:47 +09002892 u32 sstatus, spd, mask;
2893 int rc, highbit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002894
Tejun Heo936fd732007-08-06 18:36:23 +09002895 if (!sata_scr_valid(link))
Tejun Heo008a7892007-07-16 14:29:40 +09002896 return -EOPNOTSUPP;
2897
2898 /* If SCR can be read, use it to determine the current SPD.
Tejun Heo936fd732007-08-06 18:36:23 +09002899 * If not, use cached value in link->sata_spd.
Tejun Heo008a7892007-07-16 14:29:40 +09002900 */
Tejun Heo936fd732007-08-06 18:36:23 +09002901 rc = sata_scr_read(link, SCR_STATUS, &sstatus);
Tejun Heo008a7892007-07-16 14:29:40 +09002902 if (rc == 0)
2903 spd = (sstatus >> 4) & 0xf;
2904 else
Tejun Heo936fd732007-08-06 18:36:23 +09002905 spd = link->sata_spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002906
Tejun Heo936fd732007-08-06 18:36:23 +09002907 mask = link->sata_spd_limit;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002908 if (mask <= 1)
2909 return -EINVAL;
Tejun Heo008a7892007-07-16 14:29:40 +09002910
2911 /* unconditionally mask off the highest bit */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002912 highbit = fls(mask) - 1;
2913 mask &= ~(1 << highbit);
2914
Tejun Heo008a7892007-07-16 14:29:40 +09002915 /* Mask off all speeds higher than or equal to the current
2916 * one. Force 1.5Gbps if current SPD is not available.
2917 */
2918 if (spd > 1)
2919 mask &= (1 << (spd - 1)) - 1;
2920 else
2921 mask &= 1;
2922
2923 /* were we already at the bottom? */
Tejun Heo1c3fae42006-04-02 20:53:28 +09002924 if (!mask)
2925 return -EINVAL;
2926
Tejun Heo936fd732007-08-06 18:36:23 +09002927 link->sata_spd_limit = mask;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002928
Tejun Heo936fd732007-08-06 18:36:23 +09002929 ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n",
Tejun Heof15a1da2006-05-15 20:57:56 +09002930 sata_spd_string(fls(mask)));
Tejun Heo1c3fae42006-04-02 20:53:28 +09002931
2932 return 0;
2933}
2934
Tejun Heo936fd732007-08-06 18:36:23 +09002935static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002936{
Tejun Heo52702222007-10-31 10:17:07 +09002937 struct ata_link *host_link = &link->ap->link;
2938 u32 limit, target, spd;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002939
Tejun Heo52702222007-10-31 10:17:07 +09002940 limit = link->sata_spd_limit;
2941
2942 /* Don't configure downstream link faster than upstream link.
2943 * It doesn't speed up anything and some PMPs choke on such
2944 * configuration.
2945 */
2946 if (!ata_is_host_link(link) && host_link->sata_spd)
2947 limit &= (1 << host_link->sata_spd) - 1;
2948
2949 if (limit == UINT_MAX)
2950 target = 0;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002951 else
Tejun Heo52702222007-10-31 10:17:07 +09002952 target = fls(limit);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002953
2954 spd = (*scontrol >> 4) & 0xf;
Tejun Heo52702222007-10-31 10:17:07 +09002955 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002956
Tejun Heo52702222007-10-31 10:17:07 +09002957 return spd != target;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002958}
2959
2960/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002961 * sata_set_spd_needed - is SATA spd configuration needed
Tejun Heo936fd732007-08-06 18:36:23 +09002962 * @link: Link in question
Tejun Heo1c3fae42006-04-02 20:53:28 +09002963 *
2964 * Test whether the spd limit in SControl matches
Tejun Heo936fd732007-08-06 18:36:23 +09002965 * @link->sata_spd_limit. This function is used to determine
Tejun Heo1c3fae42006-04-02 20:53:28 +09002966 * whether hardreset is necessary to apply SATA spd
2967 * configuration.
2968 *
2969 * LOCKING:
2970 * Inherited from caller.
2971 *
2972 * RETURNS:
2973 * 1 if SATA spd configuration is needed, 0 otherwise.
2974 */
Adrian Bunk1dc55e82008-04-21 11:51:17 +03002975static int sata_set_spd_needed(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002976{
2977 u32 scontrol;
2978
Tejun Heo936fd732007-08-06 18:36:23 +09002979 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
Tejun Heodb64bcf2007-10-31 10:17:06 +09002980 return 1;
Tejun Heo1c3fae42006-04-02 20:53:28 +09002981
Tejun Heo936fd732007-08-06 18:36:23 +09002982 return __sata_set_spd_needed(link, &scontrol);
Tejun Heo1c3fae42006-04-02 20:53:28 +09002983}
2984
2985/**
Tejun Heo3c567b72006-05-15 20:57:23 +09002986 * sata_set_spd - set SATA spd according to spd limit
Tejun Heo936fd732007-08-06 18:36:23 +09002987 * @link: Link to set SATA spd for
Tejun Heo1c3fae42006-04-02 20:53:28 +09002988 *
Tejun Heo936fd732007-08-06 18:36:23 +09002989 * Set SATA spd of @link according to sata_spd_limit.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002990 *
2991 * LOCKING:
2992 * Inherited from caller.
2993 *
2994 * RETURNS:
2995 * 0 if spd doesn't need to be changed, 1 if spd has been
Tejun Heo81952c52006-05-15 20:57:47 +09002996 * changed. Negative errno if SCR registers are inaccessible.
Tejun Heo1c3fae42006-04-02 20:53:28 +09002997 */
Tejun Heo936fd732007-08-06 18:36:23 +09002998int sata_set_spd(struct ata_link *link)
Tejun Heo1c3fae42006-04-02 20:53:28 +09002999{
3000 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003001 int rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003002
Tejun Heo936fd732007-08-06 18:36:23 +09003003 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003004 return rc;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003005
Tejun Heo936fd732007-08-06 18:36:23 +09003006 if (!__sata_set_spd_needed(link, &scontrol))
Tejun Heo1c3fae42006-04-02 20:53:28 +09003007 return 0;
3008
Tejun Heo936fd732007-08-06 18:36:23 +09003009 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003010 return rc;
3011
Tejun Heo1c3fae42006-04-02 20:53:28 +09003012 return 1;
3013}
3014
Alan Cox452503f2005-10-21 19:01:32 -04003015/*
3016 * This mode timing computation functionality is ported over from
3017 * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik
3018 */
3019/*
Alan Coxb352e572006-08-10 18:52:12 +01003020 * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
Alan Cox452503f2005-10-21 19:01:32 -04003021 * These were taken from ATA/ATAPI-6 standard, rev 0a, except
Alan Coxb352e572006-08-10 18:52:12 +01003022 * for UDMA6, which is currently supported only by Maxtor drives.
3023 *
3024 * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0.
Alan Cox452503f2005-10-21 19:01:32 -04003025 */
3026
3027static const struct ata_timing ata_timing[] = {
Tejun Heo70cd0712007-11-27 19:43:40 +09003028/* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */
3029 { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 },
3030 { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 },
3031 { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 },
3032 { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 },
3033 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
3034 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
3035 { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003036
Tejun Heo70cd0712007-11-27 19:43:40 +09003037 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 },
3038 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 },
3039 { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003040
Tejun Heo70cd0712007-11-27 19:43:40 +09003041 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 },
3042 { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 },
3043 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
Alan Coxb352e572006-08-10 18:52:12 +01003044 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
Tejun Heo70cd0712007-11-27 19:43:40 +09003045 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
Alan Cox452503f2005-10-21 19:01:32 -04003046
3047/* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */
Tejun Heo70cd0712007-11-27 19:43:40 +09003048 { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 },
3049 { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 },
3050 { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 },
3051 { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 },
3052 { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 },
3053 { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 },
3054 { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 },
Alan Cox452503f2005-10-21 19:01:32 -04003055
3056 { 0xFF }
3057};
3058
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003059#define ENOUGH(v, unit) (((v)-1)/(unit)+1)
3060#define EZ(v, unit) ((v)?ENOUGH(v, unit):0)
Alan Cox452503f2005-10-21 19:01:32 -04003061
3062static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT)
3063{
3064 q->setup = EZ(t->setup * 1000, T);
3065 q->act8b = EZ(t->act8b * 1000, T);
3066 q->rec8b = EZ(t->rec8b * 1000, T);
3067 q->cyc8b = EZ(t->cyc8b * 1000, T);
3068 q->active = EZ(t->active * 1000, T);
3069 q->recover = EZ(t->recover * 1000, T);
3070 q->cycle = EZ(t->cycle * 1000, T);
3071 q->udma = EZ(t->udma * 1000, UT);
3072}
3073
3074void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b,
3075 struct ata_timing *m, unsigned int what)
3076{
3077 if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup);
3078 if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b);
3079 if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b);
3080 if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b);
3081 if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active);
3082 if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover);
3083 if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle);
3084 if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma);
3085}
3086
Tejun Heo63573572007-11-27 19:43:39 +09003087const struct ata_timing *ata_timing_find_mode(u8 xfer_mode)
Alan Cox452503f2005-10-21 19:01:32 -04003088{
Tejun Heo70cd0712007-11-27 19:43:40 +09003089 const struct ata_timing *t = ata_timing;
Alan Cox452503f2005-10-21 19:01:32 -04003090
Tejun Heo70cd0712007-11-27 19:43:40 +09003091 while (xfer_mode > t->mode)
3092 t++;
3093
3094 if (xfer_mode == t->mode)
3095 return t;
3096 return NULL;
Alan Cox452503f2005-10-21 19:01:32 -04003097}
3098
3099int ata_timing_compute(struct ata_device *adev, unsigned short speed,
3100 struct ata_timing *t, int T, int UT)
3101{
3102 const struct ata_timing *s;
3103 struct ata_timing p;
3104
3105 /*
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05003106 * Find the mode.
Albert Lee75b1f2f2005-11-16 17:06:18 +08003107 */
Alan Cox452503f2005-10-21 19:01:32 -04003108
3109 if (!(s = ata_timing_find_mode(speed)))
3110 return -EINVAL;
3111
Albert Lee75b1f2f2005-11-16 17:06:18 +08003112 memcpy(t, s, sizeof(*s));
3113
Alan Cox452503f2005-10-21 19:01:32 -04003114 /*
3115 * If the drive is an EIDE drive, it can tell us it needs extended
3116 * PIO/MW_DMA cycle timing.
3117 */
3118
3119 if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */
3120 memset(&p, 0, sizeof(p));
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003121 if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) {
Alan Cox452503f2005-10-21 19:01:32 -04003122 if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO];
3123 else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY];
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003124 } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) {
Alan Cox452503f2005-10-21 19:01:32 -04003125 p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN];
3126 }
3127 ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);
3128 }
3129
3130 /*
3131 * Convert the timing to bus clock counts.
3132 */
3133
Albert Lee75b1f2f2005-11-16 17:06:18 +08003134 ata_timing_quantize(t, t, T, UT);
Alan Cox452503f2005-10-21 19:01:32 -04003135
3136 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003137 * Even in DMA/UDMA modes we still use PIO access for IDENTIFY,
3138 * S.M.A.R.T * and some other commands. We have to ensure that the
3139 * DMA cycle timing is slower/equal than the fastest PIO timing.
Alan Cox452503f2005-10-21 19:01:32 -04003140 */
3141
Alanfd3367af2006-12-07 12:41:18 +00003142 if (speed > XFER_PIO_6) {
Alan Cox452503f2005-10-21 19:01:32 -04003143 ata_timing_compute(adev, adev->pio_mode, &p, T, UT);
3144 ata_timing_merge(&p, t, t, ATA_TIMING_ALL);
3145 }
3146
3147 /*
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003148 * Lengthen active & recovery time so that cycle time is correct.
Alan Cox452503f2005-10-21 19:01:32 -04003149 */
3150
3151 if (t->act8b + t->rec8b < t->cyc8b) {
3152 t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
3153 t->rec8b = t->cyc8b - t->act8b;
3154 }
3155
3156 if (t->active + t->recover < t->cycle) {
3157 t->active += (t->cycle - (t->active + t->recover)) / 2;
3158 t->recover = t->cycle - t->active;
3159 }
Jeff Garzika617c092007-05-21 20:14:23 -04003160
Alan Cox4f701d12007-04-23 11:55:36 +01003161 /* In a few cases quantisation may produce enough errors to
3162 leave t->cycle too low for the sum of active and recovery
3163 if so we must correct this */
3164 if (t->active + t->recover > t->cycle)
3165 t->cycle = t->active + t->recover;
Alan Cox452503f2005-10-21 19:01:32 -04003166
3167 return 0;
3168}
3169
Tejun Heocf176e12006-04-02 17:54:46 +09003170/**
Tejun Heoa0f79b92007-12-18 16:33:05 +09003171 * ata_timing_cycle2mode - find xfer mode for the specified cycle duration
3172 * @xfer_shift: ATA_SHIFT_* value for transfer type to examine.
3173 * @cycle: cycle duration in ns
3174 *
3175 * Return matching xfer mode for @cycle. The returned mode is of
3176 * the transfer type specified by @xfer_shift. If @cycle is too
3177 * slow for @xfer_shift, 0xff is returned. If @cycle is faster
3178 * than the fastest known mode, the fasted mode is returned.
3179 *
3180 * LOCKING:
3181 * None.
3182 *
3183 * RETURNS:
3184 * Matching xfer_mode, 0xff if no match found.
3185 */
3186u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle)
3187{
3188 u8 base_mode = 0xff, last_mode = 0xff;
3189 const struct ata_xfer_ent *ent;
3190 const struct ata_timing *t;
3191
3192 for (ent = ata_xfer_tbl; ent->shift >= 0; ent++)
3193 if (ent->shift == xfer_shift)
3194 base_mode = ent->base;
3195
3196 for (t = ata_timing_find_mode(base_mode);
3197 t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) {
3198 unsigned short this_cycle;
3199
3200 switch (xfer_shift) {
3201 case ATA_SHIFT_PIO:
3202 case ATA_SHIFT_MWDMA:
3203 this_cycle = t->cycle;
3204 break;
3205 case ATA_SHIFT_UDMA:
3206 this_cycle = t->udma;
3207 break;
3208 default:
3209 return 0xff;
3210 }
3211
3212 if (cycle > this_cycle)
3213 break;
3214
3215 last_mode = t->mode;
3216 }
3217
3218 return last_mode;
3219}
3220
3221/**
Tejun Heocf176e12006-04-02 17:54:46 +09003222 * ata_down_xfermask_limit - adjust dev xfer masks downward
Tejun Heocf176e12006-04-02 17:54:46 +09003223 * @dev: Device to adjust xfer masks
Tejun Heo458337d2007-02-02 16:22:30 +09003224 * @sel: ATA_DNXFER_* selector
Tejun Heocf176e12006-04-02 17:54:46 +09003225 *
3226 * Adjust xfer masks of @dev downward. Note that this function
3227 * does not apply the change. Invoking ata_set_mode() afterwards
3228 * will apply the limit.
3229 *
3230 * LOCKING:
3231 * Inherited from caller.
3232 *
3233 * RETURNS:
3234 * 0 on success, negative errno on failure
3235 */
Tejun Heo458337d2007-02-02 16:22:30 +09003236int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel)
Tejun Heocf176e12006-04-02 17:54:46 +09003237{
Tejun Heo458337d2007-02-02 16:22:30 +09003238 char buf[32];
Tejun Heo7dc951a2007-11-27 19:43:42 +09003239 unsigned long orig_mask, xfer_mask;
3240 unsigned long pio_mask, mwdma_mask, udma_mask;
Tejun Heo458337d2007-02-02 16:22:30 +09003241 int quiet, highbit;
Tejun Heocf176e12006-04-02 17:54:46 +09003242
Tejun Heo458337d2007-02-02 16:22:30 +09003243 quiet = !!(sel & ATA_DNXFER_QUIET);
3244 sel &= ~ATA_DNXFER_QUIET;
Tejun Heocf176e12006-04-02 17:54:46 +09003245
Tejun Heo458337d2007-02-02 16:22:30 +09003246 xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask,
3247 dev->mwdma_mask,
3248 dev->udma_mask);
3249 ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask);
Tejun Heocf176e12006-04-02 17:54:46 +09003250
Tejun Heo458337d2007-02-02 16:22:30 +09003251 switch (sel) {
3252 case ATA_DNXFER_PIO:
3253 highbit = fls(pio_mask) - 1;
3254 pio_mask &= ~(1 << highbit);
3255 break;
3256
3257 case ATA_DNXFER_DMA:
3258 if (udma_mask) {
3259 highbit = fls(udma_mask) - 1;
3260 udma_mask &= ~(1 << highbit);
3261 if (!udma_mask)
3262 return -ENOENT;
3263 } else if (mwdma_mask) {
3264 highbit = fls(mwdma_mask) - 1;
3265 mwdma_mask &= ~(1 << highbit);
3266 if (!mwdma_mask)
3267 return -ENOENT;
3268 }
3269 break;
3270
3271 case ATA_DNXFER_40C:
3272 udma_mask &= ATA_UDMA_MASK_40C;
3273 break;
3274
3275 case ATA_DNXFER_FORCE_PIO0:
3276 pio_mask &= 1;
3277 case ATA_DNXFER_FORCE_PIO:
3278 mwdma_mask = 0;
3279 udma_mask = 0;
3280 break;
3281
Tejun Heo458337d2007-02-02 16:22:30 +09003282 default:
3283 BUG();
3284 }
3285
3286 xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask);
3287
3288 if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask)
3289 return -ENOENT;
3290
3291 if (!quiet) {
3292 if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA))
3293 snprintf(buf, sizeof(buf), "%s:%s",
3294 ata_mode_string(xfer_mask),
3295 ata_mode_string(xfer_mask & ATA_MASK_PIO));
3296 else
3297 snprintf(buf, sizeof(buf), "%s",
3298 ata_mode_string(xfer_mask));
3299
3300 ata_dev_printk(dev, KERN_WARNING,
3301 "limiting speed to %s\n", buf);
3302 }
Tejun Heocf176e12006-04-02 17:54:46 +09003303
3304 ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask,
3305 &dev->udma_mask);
3306
Tejun Heocf176e12006-04-02 17:54:46 +09003307 return 0;
Tejun Heocf176e12006-04-02 17:54:46 +09003308}
3309
Tejun Heo3373efd2006-05-15 20:57:53 +09003310static int ata_dev_set_mode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003312 struct ata_eh_context *ehc = &dev->link->eh_context;
Tejun Heo4055dee2008-02-07 10:34:08 +09003313 const char *dev_err_whine = "";
3314 int ign_dev_err = 0;
Tejun Heo83206a22006-03-24 15:25:31 +09003315 unsigned int err_mask;
3316 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
Tejun Heoe8384602006-04-02 18:51:53 +09003318 dev->flags &= ~ATA_DFLAG_PIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 if (dev->xfer_shift == ATA_SHIFT_PIO)
3320 dev->flags |= ATA_DFLAG_PIO;
3321
Tejun Heo3373efd2006-05-15 20:57:53 +09003322 err_mask = ata_dev_set_xfermode(dev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003323
Tejun Heo4055dee2008-02-07 10:34:08 +09003324 if (err_mask & ~AC_ERR_DEV)
3325 goto fail;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003326
Tejun Heo4055dee2008-02-07 10:34:08 +09003327 /* revalidate */
Tejun Heobaa1e782006-11-01 18:39:27 +09003328 ehc->i.flags |= ATA_EHI_POST_SETMODE;
Tejun Heo422c9da2007-09-23 13:14:12 +09003329 rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0);
Tejun Heobaa1e782006-11-01 18:39:27 +09003330 ehc->i.flags &= ~ATA_EHI_POST_SETMODE;
Tejun Heo5eb45c02006-04-02 18:51:52 +09003331 if (rc)
Tejun Heo83206a22006-03-24 15:25:31 +09003332 return rc;
Tejun Heo48a8a142006-03-05 17:55:58 +09003333
Alan Coxb93fda12008-04-08 16:36:44 +01003334 if (dev->xfer_shift == ATA_SHIFT_PIO) {
3335 /* Old CFA may refuse this command, which is just fine */
3336 if (ata_id_is_cfa(dev->id))
3337 ign_dev_err = 1;
3338 /* Catch several broken garbage emulations plus some pre
3339 ATA devices */
3340 if (ata_id_major_version(dev->id) == 0 &&
3341 dev->pio_mode <= XFER_PIO_2)
3342 ign_dev_err = 1;
3343 /* Some very old devices and some bad newer ones fail
3344 any kind of SET_XFERMODE request but support PIO0-2
3345 timings and no IORDY */
3346 if (!ata_id_has_iordy(dev->id) && dev->pio_mode <= XFER_PIO_2)
3347 ign_dev_err = 1;
3348 }
Tejun Heo4055dee2008-02-07 10:34:08 +09003349 /* Early MWDMA devices do DMA but don't allow DMA mode setting.
3350 Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */
3351 if (dev->xfer_shift == ATA_SHIFT_MWDMA &&
3352 dev->dma_mode == XFER_MW_DMA_0 &&
3353 (dev->id[63] >> 8) & 1)
3354 ign_dev_err = 1;
3355
3356 /* if the device is actually configured correctly, ignore dev err */
3357 if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id)))
3358 ign_dev_err = 1;
3359
3360 if (err_mask & AC_ERR_DEV) {
3361 if (!ign_dev_err)
3362 goto fail;
3363 else
3364 dev_err_whine = " (device error ignored)";
3365 }
3366
Tejun Heo23e71c32006-03-06 04:31:57 +09003367 DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n",
3368 dev->xfer_shift, (int)dev->xfer_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Tejun Heo4055dee2008-02-07 10:34:08 +09003370 ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n",
3371 ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)),
3372 dev_err_whine);
3373
Tejun Heo83206a22006-03-24 15:25:31 +09003374 return 0;
Tejun Heo4055dee2008-02-07 10:34:08 +09003375
3376 fail:
3377 ata_dev_printk(dev, KERN_ERR, "failed to set xfermode "
3378 "(err_mask=0x%x)\n", err_mask);
3379 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380}
3381
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382/**
Alan04351822007-03-06 02:37:52 -08003383 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER
Tejun Heo02607312007-08-06 18:36:23 +09003384 * @link: link on which timings will be programmed
Joe Perches1967b7f2008-02-03 17:08:11 +02003385 * @r_failed_dev: out parameter for failed device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 *
Alan04351822007-03-06 02:37:52 -08003387 * Standard implementation of the function used to tune and set
3388 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3389 * ata_dev_set_mode() fails, pointer to the failing device is
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003390 * returned in @r_failed_dev.
Jeff Garzik780a87f2005-05-30 15:41:05 -04003391 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04003393 * PCI/etc. bus probe sem.
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003394 *
3395 * RETURNS:
3396 * 0 on success, negative errno otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 */
Alan04351822007-03-06 02:37:52 -08003398
Tejun Heo02607312007-08-06 18:36:23 +09003399int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400{
Tejun Heo02607312007-08-06 18:36:23 +09003401 struct ata_port *ap = link->ap;
Tejun Heoe8e06192006-04-01 01:38:18 +09003402 struct ata_device *dev;
Tejun Heof58229f2007-08-06 18:36:23 +09003403 int rc = 0, used_dma = 0, found = 0;
Tejun Heo3adcebb2006-05-15 20:57:37 +09003404
Tejun Heoa6d5a512006-03-06 04:31:57 +09003405 /* step 1: calculate xfer_mask */
Tejun Heo1eca4362008-11-03 20:03:17 +09003406 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo7dc951a2007-11-27 19:43:42 +09003407 unsigned long pio_mask, dma_mask;
Alan Coxb3a70602007-10-02 12:38:26 -04003408 unsigned int mode_mask;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003409
Alan Coxb3a70602007-10-02 12:38:26 -04003410 mode_mask = ATA_DMA_MASK_ATA;
3411 if (dev->class == ATA_DEV_ATAPI)
3412 mode_mask = ATA_DMA_MASK_ATAPI;
3413 else if (ata_id_is_cfa(dev->id))
3414 mode_mask = ATA_DMA_MASK_CFA;
3415
Tejun Heo3373efd2006-05-15 20:57:53 +09003416 ata_dev_xfermask(dev);
Tejun Heo33267322008-02-13 09:15:09 +09003417 ata_force_xfermask(dev);
Tejun Heoa6d5a512006-03-06 04:31:57 +09003418
Tejun Heoacf356b2006-03-24 14:07:50 +09003419 pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0);
3420 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
Alan Coxb3a70602007-10-02 12:38:26 -04003421
3422 if (libata_dma_mask & mode_mask)
3423 dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask);
3424 else
3425 dma_mask = 0;
3426
Tejun Heoacf356b2006-03-24 14:07:50 +09003427 dev->pio_mode = ata_xfer_mask2mode(pio_mask);
3428 dev->dma_mode = ata_xfer_mask2mode(dma_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01003429
Tejun Heo4f659772006-04-01 01:38:18 +09003430 found = 1;
Alan Coxb15b3eb2008-08-01 09:18:34 +01003431 if (ata_dma_enabled(dev))
Alan Cox5444a6f2006-03-27 18:58:20 +01003432 used_dma = 1;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003433 }
Tejun Heo4f659772006-04-01 01:38:18 +09003434 if (!found)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003435 goto out;
Tejun Heoa6d5a512006-03-06 04:31:57 +09003436
3437 /* step 2: always set host PIO timings */
Tejun Heo1eca4362008-11-03 20:03:17 +09003438 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo70cd0712007-11-27 19:43:40 +09003439 if (dev->pio_mode == 0xff) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003440 ata_dev_printk(dev, KERN_WARNING, "no PIO support\n");
Tejun Heoe8e06192006-04-01 01:38:18 +09003441 rc = -EINVAL;
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003442 goto out;
Tejun Heoe8e06192006-04-01 01:38:18 +09003443 }
3444
3445 dev->xfer_mode = dev->pio_mode;
3446 dev->xfer_shift = ATA_SHIFT_PIO;
3447 if (ap->ops->set_piomode)
3448 ap->ops->set_piomode(ap, dev);
3449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Tejun Heoa6d5a512006-03-06 04:31:57 +09003451 /* step 3: set host DMA timings */
Tejun Heo1eca4362008-11-03 20:03:17 +09003452 ata_for_each_dev(dev, link, ENABLED) {
3453 if (!ata_dma_enabled(dev))
Tejun Heoe8e06192006-04-01 01:38:18 +09003454 continue;
3455
3456 dev->xfer_mode = dev->dma_mode;
3457 dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode);
3458 if (ap->ops->set_dmamode)
3459 ap->ops->set_dmamode(ap, dev);
3460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
3462 /* step 4: update devices' xfer mode */
Tejun Heo1eca4362008-11-03 20:03:17 +09003463 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo3373efd2006-05-15 20:57:53 +09003464 rc = ata_dev_set_mode(dev);
Tejun Heo5bbc53f2006-04-01 01:38:17 +09003465 if (rc)
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003466 goto out;
Tejun Heo83206a22006-03-24 15:25:31 +09003467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
Tejun Heoe8e06192006-04-01 01:38:18 +09003469 /* Record simplex status. If we selected DMA then the other
3470 * host channels are not permitted to do so.
Alan Cox5444a6f2006-03-27 18:58:20 +01003471 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003472 if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX))
Alan032af1c2007-03-01 17:36:46 +00003473 ap->host->simplex_claimed = ap;
Alan Cox5444a6f2006-03-27 18:58:20 +01003474
Tejun Heoe82cbdb2006-04-01 01:38:18 +09003475 out:
3476 if (rc)
3477 *r_failed_dev = dev;
3478 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479}
3480
3481/**
Tejun Heoaa2731a2008-04-07 22:47:19 +09003482 * ata_wait_ready - wait for link to become ready
3483 * @link: link to be waited on
3484 * @deadline: deadline jiffies for the operation
3485 * @check_ready: callback to check link readiness
3486 *
3487 * Wait for @link to become ready. @check_ready should return
3488 * positive number if @link is ready, 0 if it isn't, -ENODEV if
3489 * link doesn't seem to be occupied, other errno for other error
3490 * conditions.
3491 *
3492 * Transient -ENODEV conditions are allowed for
3493 * ATA_TMOUT_FF_WAIT.
3494 *
3495 * LOCKING:
3496 * EH context.
3497 *
3498 * RETURNS:
3499 * 0 if @linke is ready before @deadline; otherwise, -errno.
3500 */
3501int ata_wait_ready(struct ata_link *link, unsigned long deadline,
3502 int (*check_ready)(struct ata_link *link))
3503{
3504 unsigned long start = jiffies;
Tejun Heo341c2c92008-05-20 02:17:51 +09003505 unsigned long nodev_deadline = ata_deadline(start, ATA_TMOUT_FF_WAIT);
Tejun Heoaa2731a2008-04-07 22:47:19 +09003506 int warned = 0;
3507
Tejun Heob1c72912008-07-31 17:02:43 +09003508 /* Slave readiness can't be tested separately from master. On
3509 * M/S emulation configuration, this function should be called
3510 * only on the master and it will handle both master and slave.
3511 */
3512 WARN_ON(link == link->ap->slave_link);
3513
Tejun Heoaa2731a2008-04-07 22:47:19 +09003514 if (time_after(nodev_deadline, deadline))
3515 nodev_deadline = deadline;
3516
3517 while (1) {
3518 unsigned long now = jiffies;
3519 int ready, tmp;
3520
3521 ready = tmp = check_ready(link);
3522 if (ready > 0)
3523 return 0;
3524
3525 /* -ENODEV could be transient. Ignore -ENODEV if link
3526 * is online. Also, some SATA devices take a long
3527 * time to clear 0xff after reset. For example,
3528 * HHD424020F7SV00 iVDR needs >= 800ms while Quantum
3529 * GoVault needs even more than that. Wait for
3530 * ATA_TMOUT_FF_WAIT on -ENODEV if link isn't offline.
3531 *
3532 * Note that some PATA controllers (pata_ali) explode
3533 * if status register is read more than once when
3534 * there's no device attached.
3535 */
3536 if (ready == -ENODEV) {
3537 if (ata_link_online(link))
3538 ready = 0;
3539 else if ((link->ap->flags & ATA_FLAG_SATA) &&
3540 !ata_link_offline(link) &&
3541 time_before(now, nodev_deadline))
3542 ready = 0;
3543 }
3544
3545 if (ready)
3546 return ready;
3547 if (time_after(now, deadline))
3548 return -EBUSY;
3549
3550 if (!warned && time_after(now, start + 5 * HZ) &&
3551 (deadline - now > 3 * HZ)) {
3552 ata_link_printk(link, KERN_WARNING,
3553 "link is slow to respond, please be patient "
3554 "(ready=%d)\n", tmp);
3555 warned = 1;
3556 }
3557
3558 msleep(50);
3559 }
3560}
3561
3562/**
3563 * ata_wait_after_reset - wait for link to become ready after reset
3564 * @link: link to be waited on
3565 * @deadline: deadline jiffies for the operation
3566 * @check_ready: callback to check link readiness
3567 *
3568 * Wait for @link to become ready after reset.
3569 *
3570 * LOCKING:
3571 * EH context.
3572 *
3573 * RETURNS:
3574 * 0 if @linke is ready before @deadline; otherwise, -errno.
3575 */
Harvey Harrison2b4221b2008-04-24 18:37:34 -07003576int ata_wait_after_reset(struct ata_link *link, unsigned long deadline,
Tejun Heoaa2731a2008-04-07 22:47:19 +09003577 int (*check_ready)(struct ata_link *link))
3578{
Tejun Heo341c2c92008-05-20 02:17:51 +09003579 msleep(ATA_WAIT_AFTER_RESET);
Tejun Heoaa2731a2008-04-07 22:47:19 +09003580
3581 return ata_wait_ready(link, deadline, check_ready);
3582}
3583
3584/**
Tejun Heo936fd732007-08-06 18:36:23 +09003585 * sata_link_debounce - debounce SATA phy status
3586 * @link: ATA link to debounce SATA phy status for
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003587 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003588 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003589 *
Tejun Heo936fd732007-08-06 18:36:23 +09003590* Make sure SStatus of @link reaches stable state, determined by
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003591 * holding the same value where DET is not 1 for @duration polled
3592 * every @interval, before @timeout. Timeout constraints the
Tejun Heod4b2bab2007-02-02 16:50:52 +09003593 * beginning of the stable state. Because DET gets stuck at 1 on
3594 * some controllers after hot unplugging, this functions waits
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003595 * until timeout then returns 0 if DET is stable at 1.
3596 *
Tejun Heod4b2bab2007-02-02 16:50:52 +09003597 * @timeout is further limited by @deadline. The sooner of the
3598 * two is used.
3599 *
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003600 * LOCKING:
3601 * Kernel thread context (may sleep)
3602 *
3603 * RETURNS:
3604 * 0 on success, -errno on failure.
3605 */
Tejun Heo936fd732007-08-06 18:36:23 +09003606int sata_link_debounce(struct ata_link *link, const unsigned long *params,
3607 unsigned long deadline)
Tejun Heo7a7921e2006-02-02 18:20:00 +09003608{
Tejun Heo341c2c92008-05-20 02:17:51 +09003609 unsigned long interval = params[0];
3610 unsigned long duration = params[1];
Tejun Heod4b2bab2007-02-02 16:50:52 +09003611 unsigned long last_jiffies, t;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003612 u32 last, cur;
3613 int rc;
3614
Tejun Heo341c2c92008-05-20 02:17:51 +09003615 t = ata_deadline(jiffies, params[2]);
Tejun Heod4b2bab2007-02-02 16:50:52 +09003616 if (time_before(t, deadline))
3617 deadline = t;
3618
Tejun Heo936fd732007-08-06 18:36:23 +09003619 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003620 return rc;
3621 cur &= 0xf;
3622
3623 last = cur;
3624 last_jiffies = jiffies;
3625
3626 while (1) {
Tejun Heo341c2c92008-05-20 02:17:51 +09003627 msleep(interval);
Tejun Heo936fd732007-08-06 18:36:23 +09003628 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003629 return rc;
3630 cur &= 0xf;
3631
3632 /* DET stable? */
3633 if (cur == last) {
Tejun Heod4b2bab2007-02-02 16:50:52 +09003634 if (cur == 1 && time_before(jiffies, deadline))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003635 continue;
Tejun Heo341c2c92008-05-20 02:17:51 +09003636 if (time_after(jiffies,
3637 ata_deadline(last_jiffies, duration)))
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003638 return 0;
3639 continue;
3640 }
3641
3642 /* unstable, start over */
3643 last = cur;
3644 last_jiffies = jiffies;
3645
Tejun Heof1545152007-07-16 14:29:40 +09003646 /* Check deadline. If debouncing failed, return
3647 * -EPIPE to tell upper layer to lower link speed.
3648 */
Tejun Heod4b2bab2007-02-02 16:50:52 +09003649 if (time_after(jiffies, deadline))
Tejun Heof1545152007-07-16 14:29:40 +09003650 return -EPIPE;
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003651 }
3652}
3653
3654/**
Tejun Heo936fd732007-08-06 18:36:23 +09003655 * sata_link_resume - resume SATA link
3656 * @link: ATA link to resume SATA
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003657 * @params: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003658 * @deadline: deadline jiffies for the operation
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003659 *
Tejun Heo936fd732007-08-06 18:36:23 +09003660 * Resume SATA phy @link and debounce it.
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003661 *
3662 * LOCKING:
3663 * Kernel thread context (may sleep)
3664 *
3665 * RETURNS:
3666 * 0 on success, -errno on failure.
3667 */
Tejun Heo936fd732007-08-06 18:36:23 +09003668int sata_link_resume(struct ata_link *link, const unsigned long *params,
3669 unsigned long deadline)
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003670{
Tejun Heoac371982008-04-07 22:47:19 +09003671 u32 scontrol, serror;
Tejun Heo81952c52006-05-15 20:57:47 +09003672 int rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003673
Tejun Heo936fd732007-08-06 18:36:23 +09003674 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003675 return rc;
3676
Tejun Heo852ee162006-04-01 01:38:18 +09003677 scontrol = (scontrol & 0x0f0) | 0x300;
Tejun Heo81952c52006-05-15 20:57:47 +09003678
Tejun Heo936fd732007-08-06 18:36:23 +09003679 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heo81952c52006-05-15 20:57:47 +09003680 return rc;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003681
Tejun Heod7bb4cc2006-05-31 18:27:46 +09003682 /* Some PHYs react badly if SStatus is pounded immediately
3683 * after resuming. Delay 200ms before debouncing.
3684 */
3685 msleep(200);
Tejun Heo7a7921e2006-02-02 18:20:00 +09003686
Tejun Heoac371982008-04-07 22:47:19 +09003687 if ((rc = sata_link_debounce(link, params, deadline)))
3688 return rc;
3689
Tejun Heof0465192008-05-19 01:15:08 +09003690 /* clear SError, some PHYs require this even for SRST to work */
Tejun Heoac371982008-04-07 22:47:19 +09003691 if (!(rc = sata_scr_read(link, SCR_ERROR, &serror)))
3692 rc = sata_scr_write(link, SCR_ERROR, serror);
Tejun Heoac371982008-04-07 22:47:19 +09003693
Tejun Heof0465192008-05-19 01:15:08 +09003694 return rc != -EINVAL ? rc : 0;
Tejun Heo7a7921e2006-02-02 18:20:00 +09003695}
3696
Tejun Heof5914a42006-05-31 18:27:48 +09003697/**
Tejun Heo0aa11132008-04-07 22:47:18 +09003698 * ata_std_prereset - prepare for reset
Tejun Heocc0680a2007-08-06 18:36:23 +09003699 * @link: ATA link to be reset
Tejun Heod4b2bab2007-02-02 16:50:52 +09003700 * @deadline: deadline jiffies for the operation
Tejun Heof5914a42006-05-31 18:27:48 +09003701 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003702 * @link is about to be reset. Initialize it. Failure from
Tejun Heob8cffc62007-02-02 16:50:52 +09003703 * prereset makes libata abort whole reset sequence and give up
3704 * that port, so prereset should be best-effort. It does its
3705 * best to prepare for reset sequence but if things go wrong, it
3706 * should just whine, not fail.
Tejun Heof5914a42006-05-31 18:27:48 +09003707 *
3708 * LOCKING:
3709 * Kernel thread context (may sleep)
3710 *
3711 * RETURNS:
3712 * 0 on success, -errno otherwise.
3713 */
Tejun Heo0aa11132008-04-07 22:47:18 +09003714int ata_std_prereset(struct ata_link *link, unsigned long deadline)
Tejun Heof5914a42006-05-31 18:27:48 +09003715{
Tejun Heocc0680a2007-08-06 18:36:23 +09003716 struct ata_port *ap = link->ap;
Tejun Heo936fd732007-08-06 18:36:23 +09003717 struct ata_eh_context *ehc = &link->eh_context;
Tejun Heoe9c83912006-07-03 16:07:26 +09003718 const unsigned long *timing = sata_ehc_deb_timing(ehc);
Tejun Heof5914a42006-05-31 18:27:48 +09003719 int rc;
3720
Tejun Heof5914a42006-05-31 18:27:48 +09003721 /* if we're about to do hardreset, nothing more to do */
3722 if (ehc->i.action & ATA_EH_HARDRESET)
3723 return 0;
3724
Tejun Heo936fd732007-08-06 18:36:23 +09003725 /* if SATA, resume link */
Tejun Heoa16abc02007-05-21 18:33:47 +02003726 if (ap->flags & ATA_FLAG_SATA) {
Tejun Heo936fd732007-08-06 18:36:23 +09003727 rc = sata_link_resume(link, timing, deadline);
Tejun Heob8cffc62007-02-02 16:50:52 +09003728 /* whine about phy resume failure but proceed */
3729 if (rc && rc != -EOPNOTSUPP)
Tejun Heocc0680a2007-08-06 18:36:23 +09003730 ata_link_printk(link, KERN_WARNING, "failed to resume "
Tejun Heof5914a42006-05-31 18:27:48 +09003731 "link for reset (errno=%d)\n", rc);
Tejun Heof5914a42006-05-31 18:27:48 +09003732 }
3733
Tejun Heo45db2f62008-04-08 01:46:56 +09003734 /* no point in trying softreset on offline link */
Tejun Heob1c72912008-07-31 17:02:43 +09003735 if (ata_phys_link_offline(link))
Tejun Heo45db2f62008-04-08 01:46:56 +09003736 ehc->i.action &= ~ATA_EH_SOFTRESET;
3737
Tejun Heof5914a42006-05-31 18:27:48 +09003738 return 0;
3739}
3740
Tejun Heoc2bd5802006-01-24 17:05:22 +09003741/**
Tejun Heocc0680a2007-08-06 18:36:23 +09003742 * sata_link_hardreset - reset link via SATA phy reset
3743 * @link: link to reset
Tejun Heob6103f62006-11-01 17:59:53 +09003744 * @timing: timing parameters { interval, duratinon, timeout } in msec
Tejun Heod4b2bab2007-02-02 16:50:52 +09003745 * @deadline: deadline jiffies for the operation
Tejun Heo9dadd452008-04-07 22:47:19 +09003746 * @online: optional out parameter indicating link onlineness
3747 * @check_ready: optional callback to check link readiness
Tejun Heoc2bd5802006-01-24 17:05:22 +09003748 *
Tejun Heocc0680a2007-08-06 18:36:23 +09003749 * SATA phy-reset @link using DET bits of SControl register.
Tejun Heo9dadd452008-04-07 22:47:19 +09003750 * After hardreset, link readiness is waited upon using
3751 * ata_wait_ready() if @check_ready is specified. LLDs are
3752 * allowed to not specify @check_ready and wait itself after this
3753 * function returns. Device classification is LLD's
3754 * responsibility.
3755 *
3756 * *@online is set to one iff reset succeeded and @link is online
3757 * after reset.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003758 *
3759 * LOCKING:
3760 * Kernel thread context (may sleep)
3761 *
3762 * RETURNS:
3763 * 0 on success, -errno otherwise.
3764 */
Tejun Heocc0680a2007-08-06 18:36:23 +09003765int sata_link_hardreset(struct ata_link *link, const unsigned long *timing,
Tejun Heo9dadd452008-04-07 22:47:19 +09003766 unsigned long deadline,
3767 bool *online, int (*check_ready)(struct ata_link *))
Tejun Heoc2bd5802006-01-24 17:05:22 +09003768{
Tejun Heo852ee162006-04-01 01:38:18 +09003769 u32 scontrol;
Tejun Heo81952c52006-05-15 20:57:47 +09003770 int rc;
Tejun Heo852ee162006-04-01 01:38:18 +09003771
Tejun Heoc2bd5802006-01-24 17:05:22 +09003772 DPRINTK("ENTER\n");
3773
Tejun Heo9dadd452008-04-07 22:47:19 +09003774 if (online)
3775 *online = false;
3776
Tejun Heo936fd732007-08-06 18:36:23 +09003777 if (sata_set_spd_needed(link)) {
Tejun Heo1c3fae42006-04-02 20:53:28 +09003778 /* SATA spec says nothing about how to reconfigure
3779 * spd. To be on the safe side, turn off phy during
3780 * reconfiguration. This works for at least ICH7 AHCI
3781 * and Sil3124.
3782 */
Tejun Heo936fd732007-08-06 18:36:23 +09003783 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003784 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003785
Martin Hicksa34b6fc2006-07-05 15:06:13 -04003786 scontrol = (scontrol & 0x0f0) | 0x304;
Tejun Heo81952c52006-05-15 20:57:47 +09003787
Tejun Heo936fd732007-08-06 18:36:23 +09003788 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003789 goto out;
Tejun Heo1c3fae42006-04-02 20:53:28 +09003790
Tejun Heo936fd732007-08-06 18:36:23 +09003791 sata_set_spd(link);
Tejun Heo1c3fae42006-04-02 20:53:28 +09003792 }
3793
3794 /* issue phy wake/reset */
Tejun Heo936fd732007-08-06 18:36:23 +09003795 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003796 goto out;
Tejun Heo81952c52006-05-15 20:57:47 +09003797
Tejun Heo852ee162006-04-01 01:38:18 +09003798 scontrol = (scontrol & 0x0f0) | 0x301;
Tejun Heo81952c52006-05-15 20:57:47 +09003799
Tejun Heo936fd732007-08-06 18:36:23 +09003800 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
Tejun Heob6103f62006-11-01 17:59:53 +09003801 goto out;
Tejun Heoc2bd5802006-01-24 17:05:22 +09003802
Tejun Heo1c3fae42006-04-02 20:53:28 +09003803 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
Tejun Heoc2bd5802006-01-24 17:05:22 +09003804 * 10.4.2 says at least 1 ms.
3805 */
3806 msleep(1);
3807
Tejun Heo936fd732007-08-06 18:36:23 +09003808 /* bring link back */
3809 rc = sata_link_resume(link, timing, deadline);
Tejun Heo9dadd452008-04-07 22:47:19 +09003810 if (rc)
3811 goto out;
3812 /* if link is offline nothing more to do */
Tejun Heob1c72912008-07-31 17:02:43 +09003813 if (ata_phys_link_offline(link))
Tejun Heo9dadd452008-04-07 22:47:19 +09003814 goto out;
3815
3816 /* Link is online. From this point, -ENODEV too is an error. */
3817 if (online)
3818 *online = true;
3819
Tejun Heo071f44b2008-04-07 22:47:22 +09003820 if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) {
Tejun Heo9dadd452008-04-07 22:47:19 +09003821 /* If PMP is supported, we have to do follow-up SRST.
3822 * Some PMPs don't send D2H Reg FIS after hardreset if
3823 * the first port is empty. Wait only for
3824 * ATA_TMOUT_PMP_SRST_WAIT.
3825 */
3826 if (check_ready) {
3827 unsigned long pmp_deadline;
3828
Tejun Heo341c2c92008-05-20 02:17:51 +09003829 pmp_deadline = ata_deadline(jiffies,
3830 ATA_TMOUT_PMP_SRST_WAIT);
Tejun Heo9dadd452008-04-07 22:47:19 +09003831 if (time_after(pmp_deadline, deadline))
3832 pmp_deadline = deadline;
3833 ata_wait_ready(link, pmp_deadline, check_ready);
3834 }
3835 rc = -EAGAIN;
3836 goto out;
3837 }
3838
3839 rc = 0;
3840 if (check_ready)
3841 rc = ata_wait_ready(link, deadline, check_ready);
Tejun Heob6103f62006-11-01 17:59:53 +09003842 out:
Tejun Heo0cbf0712008-05-19 01:15:05 +09003843 if (rc && rc != -EAGAIN) {
3844 /* online is set iff link is online && reset succeeded */
3845 if (online)
3846 *online = false;
Tejun Heo9dadd452008-04-07 22:47:19 +09003847 ata_link_printk(link, KERN_ERR,
3848 "COMRESET failed (errno=%d)\n", rc);
Tejun Heo0cbf0712008-05-19 01:15:05 +09003849 }
Tejun Heob6103f62006-11-01 17:59:53 +09003850 DPRINTK("EXIT, rc=%d\n", rc);
3851 return rc;
3852}
3853
3854/**
Tejun Heo57c9efd2008-04-07 22:47:19 +09003855 * sata_std_hardreset - COMRESET w/o waiting or classification
3856 * @link: link to reset
3857 * @class: resulting class of attached device
3858 * @deadline: deadline jiffies for the operation
3859 *
3860 * Standard SATA COMRESET w/o waiting or classification.
3861 *
3862 * LOCKING:
3863 * Kernel thread context (may sleep)
3864 *
3865 * RETURNS:
3866 * 0 if link offline, -EAGAIN if link online, -errno on errors.
3867 */
3868int sata_std_hardreset(struct ata_link *link, unsigned int *class,
3869 unsigned long deadline)
3870{
3871 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
3872 bool online;
3873 int rc;
3874
3875 /* do hardreset */
3876 rc = sata_link_hardreset(link, timing, deadline, &online, NULL);
Tejun Heo57c9efd2008-04-07 22:47:19 +09003877 return online ? -EAGAIN : rc;
3878}
3879
3880/**
Tejun Heo203c75b2008-04-07 22:47:18 +09003881 * ata_std_postreset - standard postreset callback
Tejun Heocc0680a2007-08-06 18:36:23 +09003882 * @link: the target ata_link
Tejun Heoc2bd5802006-01-24 17:05:22 +09003883 * @classes: classes of attached devices
3884 *
3885 * This function is invoked after a successful reset. Note that
3886 * the device might have been reset more than once using
3887 * different reset methods before postreset is invoked.
Tejun Heoc2bd5802006-01-24 17:05:22 +09003888 *
Tejun Heoc2bd5802006-01-24 17:05:22 +09003889 * LOCKING:
3890 * Kernel thread context (may sleep)
3891 */
Tejun Heo203c75b2008-04-07 22:47:18 +09003892void ata_std_postreset(struct ata_link *link, unsigned int *classes)
Tejun Heoc2bd5802006-01-24 17:05:22 +09003893{
Tejun Heof0465192008-05-19 01:15:08 +09003894 u32 serror;
3895
Tejun Heoc2bd5802006-01-24 17:05:22 +09003896 DPRINTK("ENTER\n");
3897
Tejun Heof0465192008-05-19 01:15:08 +09003898 /* reset complete, clear SError */
3899 if (!sata_scr_read(link, SCR_ERROR, &serror))
3900 sata_scr_write(link, SCR_ERROR, serror);
3901
Tejun Heoc2bd5802006-01-24 17:05:22 +09003902 /* print link status */
Tejun Heo936fd732007-08-06 18:36:23 +09003903 sata_print_link_status(link);
Tejun Heoc2bd5802006-01-24 17:05:22 +09003904
Tejun Heoc2bd5802006-01-24 17:05:22 +09003905 DPRINTK("EXIT\n");
3906}
3907
Tejun Heoa62c0fc2006-01-24 17:05:22 +09003908/**
Tejun Heo623a3122006-03-05 17:55:58 +09003909 * ata_dev_same_device - Determine whether new ID matches configured device
Tejun Heo623a3122006-03-05 17:55:58 +09003910 * @dev: device to compare against
3911 * @new_class: class of the new device
3912 * @new_id: IDENTIFY page of the new device
3913 *
3914 * Compare @new_class and @new_id against @dev and determine
3915 * whether @dev is the device indicated by @new_class and
3916 * @new_id.
3917 *
3918 * LOCKING:
3919 * None.
3920 *
3921 * RETURNS:
3922 * 1 if @dev matches @new_class and @new_id, 0 otherwise.
3923 */
Tejun Heo3373efd2006-05-15 20:57:53 +09003924static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
3925 const u16 *new_id)
Tejun Heo623a3122006-03-05 17:55:58 +09003926{
3927 const u16 *old_id = dev->id;
Tejun Heoa0cf7332007-01-02 20:18:49 +09003928 unsigned char model[2][ATA_ID_PROD_LEN + 1];
3929 unsigned char serial[2][ATA_ID_SERNO_LEN + 1];
Tejun Heo623a3122006-03-05 17:55:58 +09003930
3931 if (dev->class != new_class) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003932 ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n",
3933 dev->class, new_class);
Tejun Heo623a3122006-03-05 17:55:58 +09003934 return 0;
3935 }
3936
Tejun Heoa0cf7332007-01-02 20:18:49 +09003937 ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0]));
3938 ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1]));
3939 ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0]));
3940 ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1]));
Tejun Heo623a3122006-03-05 17:55:58 +09003941
3942 if (strcmp(model[0], model[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003943 ata_dev_printk(dev, KERN_INFO, "model number mismatch "
3944 "'%s' != '%s'\n", model[0], model[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003945 return 0;
3946 }
3947
3948 if (strcmp(serial[0], serial[1])) {
Tejun Heof15a1da2006-05-15 20:57:56 +09003949 ata_dev_printk(dev, KERN_INFO, "serial number mismatch "
3950 "'%s' != '%s'\n", serial[0], serial[1]);
Tejun Heo623a3122006-03-05 17:55:58 +09003951 return 0;
3952 }
3953
Tejun Heo623a3122006-03-05 17:55:58 +09003954 return 1;
3955}
3956
3957/**
Tejun Heofe309112007-05-15 03:28:15 +09003958 * ata_dev_reread_id - Re-read IDENTIFY data
Henrik Kretzschmar3fae4502007-06-19 10:10:50 +02003959 * @dev: target ATA device
Tejun Heobff04642006-11-10 18:08:10 +09003960 * @readid_flags: read ID flags
Tejun Heo623a3122006-03-05 17:55:58 +09003961 *
3962 * Re-read IDENTIFY page and make sure @dev is still attached to
3963 * the port.
3964 *
3965 * LOCKING:
3966 * Kernel thread context (may sleep)
3967 *
3968 * RETURNS:
3969 * 0 on success, negative errno otherwise
3970 */
Tejun Heofe309112007-05-15 03:28:15 +09003971int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags)
Tejun Heo623a3122006-03-05 17:55:58 +09003972{
Tejun Heo5eb45c02006-04-02 18:51:52 +09003973 unsigned int class = dev->class;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003974 u16 *id = (void *)dev->link->ap->sector_buf;
Tejun Heo623a3122006-03-05 17:55:58 +09003975 int rc;
3976
Tejun Heofe635c72006-05-15 20:57:35 +09003977 /* read ID data */
Tejun Heobff04642006-11-10 18:08:10 +09003978 rc = ata_dev_read_id(dev, &class, readid_flags, id);
Tejun Heo623a3122006-03-05 17:55:58 +09003979 if (rc)
Tejun Heofe309112007-05-15 03:28:15 +09003980 return rc;
Tejun Heo623a3122006-03-05 17:55:58 +09003981
3982 /* is the device still there? */
Tejun Heofe309112007-05-15 03:28:15 +09003983 if (!ata_dev_same_device(dev, class, id))
3984 return -ENODEV;
Tejun Heo623a3122006-03-05 17:55:58 +09003985
Tejun Heofe635c72006-05-15 20:57:35 +09003986 memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS);
Tejun Heofe309112007-05-15 03:28:15 +09003987 return 0;
3988}
3989
3990/**
3991 * ata_dev_revalidate - Revalidate ATA device
3992 * @dev: device to revalidate
Tejun Heo422c9da2007-09-23 13:14:12 +09003993 * @new_class: new class code
Tejun Heofe309112007-05-15 03:28:15 +09003994 * @readid_flags: read ID flags
3995 *
3996 * Re-read IDENTIFY page, make sure @dev is still attached to the
3997 * port and reconfigure it according to the new IDENTIFY page.
3998 *
3999 * LOCKING:
4000 * Kernel thread context (may sleep)
4001 *
4002 * RETURNS:
4003 * 0 on success, negative errno otherwise
4004 */
Tejun Heo422c9da2007-09-23 13:14:12 +09004005int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class,
4006 unsigned int readid_flags)
Tejun Heofe309112007-05-15 03:28:15 +09004007{
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004008 u64 n_sectors = dev->n_sectors;
Tejun Heofe309112007-05-15 03:28:15 +09004009 int rc;
4010
4011 if (!ata_dev_enabled(dev))
4012 return -ENODEV;
4013
Tejun Heo422c9da2007-09-23 13:14:12 +09004014 /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */
4015 if (ata_class_enabled(new_class) &&
4016 new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) {
4017 ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n",
4018 dev->class, new_class);
4019 rc = -ENODEV;
4020 goto fail;
4021 }
4022
Tejun Heofe309112007-05-15 03:28:15 +09004023 /* re-read ID */
4024 rc = ata_dev_reread_id(dev, readid_flags);
4025 if (rc)
4026 goto fail;
Tejun Heo623a3122006-03-05 17:55:58 +09004027
4028 /* configure device according to the new ID */
Tejun Heoefdaedc2006-11-01 18:38:52 +09004029 rc = ata_dev_configure(dev);
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004030 if (rc)
4031 goto fail;
4032
4033 /* verify n_sectors hasn't changed */
Tejun Heob54eebd2007-08-17 18:46:51 +09004034 if (dev->class == ATA_DEV_ATA && n_sectors &&
4035 dev->n_sectors != n_sectors) {
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004036 ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch "
4037 "%llu != %llu\n",
4038 (unsigned long long)n_sectors,
4039 (unsigned long long)dev->n_sectors);
Tejun Heo8270bec2007-08-16 03:02:22 +09004040
4041 /* restore original n_sectors */
4042 dev->n_sectors = n_sectors;
4043
Tejun Heo6ddcd3b2007-05-15 03:28:15 +09004044 rc = -ENODEV;
4045 goto fail;
4046 }
4047
4048 return 0;
Tejun Heo623a3122006-03-05 17:55:58 +09004049
4050 fail:
Tejun Heof15a1da2006-05-15 20:57:56 +09004051 ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc);
Tejun Heo623a3122006-03-05 17:55:58 +09004052 return rc;
4053}
4054
Alan Cox6919a0a2006-10-27 19:08:46 -07004055struct ata_blacklist_entry {
4056 const char *model_num;
4057 const char *model_rev;
4058 unsigned long horkage;
4059};
4060
4061static const struct ata_blacklist_entry ata_device_blacklist [] = {
4062 /* Devices with DMA related problems under Linux */
4063 { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA },
4064 { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA },
4065 { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA },
4066 { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA },
4067 { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA },
4068 { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA },
4069 { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA },
4070 { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA },
4071 { "CRD-8400B", NULL, ATA_HORKAGE_NODMA },
4072 { "CRD-8480B", NULL, ATA_HORKAGE_NODMA },
4073 { "CRD-8482B", NULL, ATA_HORKAGE_NODMA },
4074 { "CRD-84", NULL, ATA_HORKAGE_NODMA },
4075 { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA },
4076 { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA },
4077 { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA },
4078 { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA },
4079 { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA },
4080 { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA },
4081 { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA },
4082 { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA },
4083 { "CD-532E-A", NULL, ATA_HORKAGE_NODMA },
4084 { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA },
4085 { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA },
4086 { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA },
4087 { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA },
4088 { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004089 { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA },
4090 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004091 { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA },
Dave Jones39f19882007-05-21 14:31:03 -04004092 { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA },
Tejun Heo3af9a772007-09-23 13:19:54 +09004093 /* Odd clown on sil3726/4726 PMPs */
Tejun Heo50af2fa2008-05-19 01:15:14 +09004094 { "Config Disk", NULL, ATA_HORKAGE_DISABLE },
Alan Cox6919a0a2006-10-27 19:08:46 -07004095
Albert Lee18d6e9d2007-04-02 11:34:15 +08004096 /* Weird ATAPI devices */
Tejun Heo40a1d532007-06-27 02:49:38 +09004097 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
Tejun Heo6a87e422008-11-03 19:01:09 +09004098 { "QUANTUM DAT DAT72-000", NULL, ATA_HORKAGE_ATAPI_MOD16_DMA },
Albert Lee18d6e9d2007-04-02 11:34:15 +08004099
Alan Cox6919a0a2006-10-27 19:08:46 -07004100 /* Devices we expect to fail diagnostics */
4101
4102 /* Devices where NCQ should be avoided */
4103 /* NCQ is slow */
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004104 { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ },
Tejun Heo459ad682007-12-07 12:46:23 +09004105 { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, },
Tejun Heo09125ea2007-02-28 15:21:23 +09004106 /* http://thread.gmane.org/gmane.linux.ide/14907 */
4107 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
Paul Rolland7acfaf32007-03-26 21:43:44 -08004108 /* NCQ is broken */
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004109 { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ },
Alan Cox0e3dbc02007-09-20 15:22:47 +01004110 { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ },
Paolo Ornatida6f0ec2007-10-04 11:06:56 +09004111 { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ },
Tejun Heoe41bd3e2007-12-09 19:45:39 +09004112 { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ },
Lubomir Bulej5ccfca92008-12-22 11:35:22 +01004113 { "OCZ CORE_SSD", "02.10104", ATA_HORKAGE_NONCQ },
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004114
Tejun Heoac70a962008-11-27 13:36:48 +09004115 /* Seagate NCQ + FLUSH CACHE firmware bug */
Tejun Heod10d4912008-12-11 13:42:42 +09004116 { "ST31500341AS", "SD15", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004117 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004118 { "ST31500341AS", "SD16", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004119 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004120 { "ST31500341AS", "SD17", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004121 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004122 { "ST31500341AS", "SD18", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004123 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004124 { "ST31500341AS", "SD19", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004125 ATA_HORKAGE_FIRMWARE_WARN },
Tejun Heod10d4912008-12-11 13:42:42 +09004126
4127 { "ST31000333AS", "SD15", ATA_HORKAGE_NONCQ |
4128 ATA_HORKAGE_FIRMWARE_WARN },
4129 { "ST31000333AS", "SD16", ATA_HORKAGE_NONCQ |
4130 ATA_HORKAGE_FIRMWARE_WARN },
4131 { "ST31000333AS", "SD17", ATA_HORKAGE_NONCQ |
4132 ATA_HORKAGE_FIRMWARE_WARN },
4133 { "ST31000333AS", "SD18", ATA_HORKAGE_NONCQ |
4134 ATA_HORKAGE_FIRMWARE_WARN },
4135 { "ST31000333AS", "SD19", ATA_HORKAGE_NONCQ |
4136 ATA_HORKAGE_FIRMWARE_WARN },
4137
4138 { "ST3640623AS", "SD15", ATA_HORKAGE_NONCQ |
4139 ATA_HORKAGE_FIRMWARE_WARN },
4140 { "ST3640623AS", "SD16", ATA_HORKAGE_NONCQ |
4141 ATA_HORKAGE_FIRMWARE_WARN },
4142 { "ST3640623AS", "SD17", ATA_HORKAGE_NONCQ |
4143 ATA_HORKAGE_FIRMWARE_WARN },
4144 { "ST3640623AS", "SD18", ATA_HORKAGE_NONCQ |
4145 ATA_HORKAGE_FIRMWARE_WARN },
4146 { "ST3640623AS", "SD19", ATA_HORKAGE_NONCQ |
4147 ATA_HORKAGE_FIRMWARE_WARN },
4148
4149 { "ST3640323AS", "SD15", ATA_HORKAGE_NONCQ |
4150 ATA_HORKAGE_FIRMWARE_WARN },
4151 { "ST3640323AS", "SD16", ATA_HORKAGE_NONCQ |
4152 ATA_HORKAGE_FIRMWARE_WARN },
4153 { "ST3640323AS", "SD17", ATA_HORKAGE_NONCQ |
4154 ATA_HORKAGE_FIRMWARE_WARN },
4155 { "ST3640323AS", "SD18", ATA_HORKAGE_NONCQ |
4156 ATA_HORKAGE_FIRMWARE_WARN },
4157 { "ST3640323AS", "SD19", ATA_HORKAGE_NONCQ |
4158 ATA_HORKAGE_FIRMWARE_WARN },
4159
4160 { "ST3320813AS", "SD15", ATA_HORKAGE_NONCQ |
4161 ATA_HORKAGE_FIRMWARE_WARN },
4162 { "ST3320813AS", "SD16", ATA_HORKAGE_NONCQ |
4163 ATA_HORKAGE_FIRMWARE_WARN },
4164 { "ST3320813AS", "SD17", ATA_HORKAGE_NONCQ |
4165 ATA_HORKAGE_FIRMWARE_WARN },
4166 { "ST3320813AS", "SD18", ATA_HORKAGE_NONCQ |
4167 ATA_HORKAGE_FIRMWARE_WARN },
4168 { "ST3320813AS", "SD19", ATA_HORKAGE_NONCQ |
4169 ATA_HORKAGE_FIRMWARE_WARN },
4170
4171 { "ST3320613AS", "SD15", ATA_HORKAGE_NONCQ |
4172 ATA_HORKAGE_FIRMWARE_WARN },
4173 { "ST3320613AS", "SD16", ATA_HORKAGE_NONCQ |
4174 ATA_HORKAGE_FIRMWARE_WARN },
4175 { "ST3320613AS", "SD17", ATA_HORKAGE_NONCQ |
4176 ATA_HORKAGE_FIRMWARE_WARN },
4177 { "ST3320613AS", "SD18", ATA_HORKAGE_NONCQ |
4178 ATA_HORKAGE_FIRMWARE_WARN },
4179 { "ST3320613AS", "SD19", ATA_HORKAGE_NONCQ |
Tejun Heoac70a962008-11-27 13:36:48 +09004180 ATA_HORKAGE_FIRMWARE_WARN },
4181
Robert Hancock36e337d2007-04-02 22:05:29 -06004182 /* Blacklist entries taken from Silicon Image 3124/3132
4183 Windows driver .inf file - also several Linux problem reports */
4184 { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, },
4185 { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, },
4186 { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, },
Alan Cox6919a0a2006-10-27 19:08:46 -07004187
Tejun Heo16c55b02007-08-29 11:58:33 +09004188 /* devices which puke on READ_NATIVE_MAX */
4189 { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, },
4190 { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA },
4191 { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA },
4192 { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA },
Alan Cox6919a0a2006-10-27 19:08:46 -07004193
Alan Cox93328e12007-09-29 04:06:48 -04004194 /* Devices which report 1 sector over size HPA */
4195 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
4196 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
Mikko Rapelib152fcd2008-02-19 01:41:25 +01004197 { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, },
Alan Cox93328e12007-09-29 04:06:48 -04004198
Alan Cox6bbfd532007-11-05 22:58:58 +00004199 /* Devices which get the IVB wrong */
4200 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
Alan Coxa79067e2008-04-29 14:08:36 +01004201 /* Maybe we should just blacklist TSSTcorp... */
4202 { "TSSTcorp CDDVDW SH-S202H", "SB00", ATA_HORKAGE_IVB, },
4203 { "TSSTcorp CDDVDW SH-S202H", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00004204 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
Peter Missele9f33402007-11-27 18:04:42 +01004205 { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, },
4206 { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, },
4207 { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, },
Alan Cox6bbfd532007-11-05 22:58:58 +00004208
Jens Axboe9ce8e302008-08-27 15:23:18 +02004209 /* Devices that do not need bridging limits applied */
4210 { "MTRON MSP-SATA*", NULL, ATA_HORKAGE_BRIDGE_OK, },
4211
Alan Cox6919a0a2006-10-27 19:08:46 -07004212 /* End Marker */
4213 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214};
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05004215
Adrian Bunk741b7762007-10-24 18:23:06 +02004216static int strn_pattern_cmp(const char *patt, const char *name, int wildchar)
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004217{
4218 const char *p;
4219 int len;
4220
4221 /*
4222 * check for trailing wildcard: *\0
4223 */
4224 p = strchr(patt, wildchar);
4225 if (p && ((*(p + 1)) == 0))
4226 len = p - patt;
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004227 else {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004228 len = strlen(name);
Andrew Paprocki317b50b2007-10-15 15:43:12 -04004229 if (!len) {
4230 if (!*patt)
4231 return 0;
4232 return -1;
4233 }
4234 }
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004235
4236 return strncmp(patt, name, len);
4237}
4238
Tejun Heo75683fe2007-07-05 13:31:27 +09004239static unsigned long ata_dev_blacklisted(const struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240{
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004241 unsigned char model_num[ATA_ID_PROD_LEN + 1];
4242 unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
Alan Cox6919a0a2006-10-27 19:08:46 -07004243 const struct ata_blacklist_entry *ad = ata_device_blacklist;
Albert Lee3a778272006-06-22 13:00:25 +08004244
Tejun Heo8bfa79f2007-01-02 20:19:40 +09004245 ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
4246 ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247
Alan Cox6919a0a2006-10-27 19:08:46 -07004248 while (ad->model_num) {
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004249 if (!strn_pattern_cmp(ad->model_num, model_num, '*')) {
Alan Cox6919a0a2006-10-27 19:08:46 -07004250 if (ad->model_rev == NULL)
4251 return ad->horkage;
Jeff Garzik539cc7c2007-09-20 16:31:47 -04004252 if (!strn_pattern_cmp(ad->model_rev, model_rev, '*'))
Alan Cox6919a0a2006-10-27 19:08:46 -07004253 return ad->horkage;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004254 }
Alan Cox6919a0a2006-10-27 19:08:46 -07004255 ad++;
Alan Coxf4b15fe2006-03-22 15:54:04 +00004256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 return 0;
4258}
4259
Alan Cox6919a0a2006-10-27 19:08:46 -07004260static int ata_dma_blacklisted(const struct ata_device *dev)
4261{
4262 /* We don't support polling DMA.
4263 * DMA blacklist those ATAPI devices with CDB-intr (and use PIO)
4264 * if the LLDD handles only interrupts in the HSM_ST_LAST state.
4265 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004266 if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) &&
Alan Cox6919a0a2006-10-27 19:08:46 -07004267 (dev->flags & ATA_DFLAG_CDB_INTR))
4268 return 1;
Tejun Heo75683fe2007-07-05 13:31:27 +09004269 return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0;
Alan Cox6919a0a2006-10-27 19:08:46 -07004270}
4271
Tejun Heoa6d5a512006-03-06 04:31:57 +09004272/**
Alan Cox6bbfd532007-11-05 22:58:58 +00004273 * ata_is_40wire - check drive side detection
4274 * @dev: device
4275 *
4276 * Perform drive side detection decoding, allowing for device vendors
4277 * who can't follow the documentation.
4278 */
4279
4280static int ata_is_40wire(struct ata_device *dev)
4281{
4282 if (dev->horkage & ATA_HORKAGE_IVB)
4283 return ata_drive_40wire_relaxed(dev->id);
4284 return ata_drive_40wire(dev->id);
4285}
4286
4287/**
Alan Cox15a55512008-03-28 14:33:46 -07004288 * cable_is_40wire - 40/80/SATA decider
4289 * @ap: port to consider
4290 *
4291 * This function encapsulates the policy for speed management
4292 * in one place. At the moment we don't cache the result but
4293 * there is a good case for setting ap->cbl to the result when
4294 * we are called with unknown cables (and figuring out if it
4295 * impacts hotplug at all).
4296 *
4297 * Return 1 if the cable appears to be 40 wire.
4298 */
4299
4300static int cable_is_40wire(struct ata_port *ap)
4301{
4302 struct ata_link *link;
4303 struct ata_device *dev;
4304
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004305 /* If the controller thinks we are 40 wire, we are. */
Alan Cox15a55512008-03-28 14:33:46 -07004306 if (ap->cbl == ATA_CBL_PATA40)
4307 return 1;
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004308
4309 /* If the controller thinks we are 80 wire, we are. */
Alan Cox15a55512008-03-28 14:33:46 -07004310 if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA)
4311 return 0;
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004312
4313 /* If the system is known to be 40 wire short cable (eg
4314 * laptop), then we allow 80 wire modes even if the drive
4315 * isn't sure.
4316 */
Alan Coxf7920682008-04-08 16:37:50 +01004317 if (ap->cbl == ATA_CBL_PATA40_SHORT)
4318 return 0;
Alan Cox15a55512008-03-28 14:33:46 -07004319
Tejun Heo4a9c7b32008-10-27 19:59:23 +09004320 /* If the controller doesn't know, we scan.
4321 *
4322 * Note: We look for all 40 wire detects at this point. Any
4323 * 80 wire detect is taken to be 80 wire cable because
4324 * - in many setups only the one drive (slave if present) will
4325 * give a valid detect
4326 * - if you have a non detect capable drive you don't want it
4327 * to colour the choice
4328 */
Tejun Heo1eca4362008-11-03 20:03:17 +09004329 ata_for_each_link(link, ap, EDGE) {
4330 ata_for_each_dev(dev, link, ENABLED) {
4331 if (!ata_is_40wire(dev))
Alan Cox15a55512008-03-28 14:33:46 -07004332 return 0;
4333 }
4334 }
4335 return 1;
4336}
4337
4338/**
Tejun Heoa6d5a512006-03-06 04:31:57 +09004339 * ata_dev_xfermask - Compute supported xfermask of the given device
Tejun Heoa6d5a512006-03-06 04:31:57 +09004340 * @dev: Device to compute xfermask for
4341 *
Tejun Heoacf356b2006-03-24 14:07:50 +09004342 * Compute supported xfermask of @dev and store it in
4343 * dev->*_mask. This function is responsible for applying all
4344 * known limits including host controller limits, device
4345 * blacklist, etc...
Tejun Heoa6d5a512006-03-06 04:31:57 +09004346 *
4347 * LOCKING:
4348 * None.
Tejun Heoa6d5a512006-03-06 04:31:57 +09004349 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004350static void ata_dev_xfermask(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004352 struct ata_link *link = dev->link;
4353 struct ata_port *ap = link->ap;
Jeff Garzikcca39742006-08-24 03:19:22 -04004354 struct ata_host *host = ap->host;
Tejun Heoa6d5a512006-03-06 04:31:57 +09004355 unsigned long xfer_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356
Tejun Heo37deecb2006-08-10 16:59:07 +09004357 /* controller modes available */
Tejun Heo565083e2006-04-02 17:54:47 +09004358 xfer_mask = ata_pack_xfermask(ap->pio_mask,
4359 ap->mwdma_mask, ap->udma_mask);
4360
Robert Hancock8343f882007-03-06 02:37:51 -08004361 /* drive modes available */
Tejun Heo37deecb2006-08-10 16:59:07 +09004362 xfer_mask &= ata_pack_xfermask(dev->pio_mask,
4363 dev->mwdma_mask, dev->udma_mask);
4364 xfer_mask &= ata_id_xfermask(dev->id);
Tejun Heo565083e2006-04-02 17:54:47 +09004365
Alan Coxb352e572006-08-10 18:52:12 +01004366 /*
4367 * CFA Advanced TrueIDE timings are not allowed on a shared
4368 * cable
4369 */
4370 if (ata_dev_pair(dev)) {
4371 /* No PIO5 or PIO6 */
4372 xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5));
4373 /* No MWDMA3 or MWDMA 4 */
4374 xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3));
4375 }
4376
Tejun Heo37deecb2006-08-10 16:59:07 +09004377 if (ata_dma_blacklisted(dev)) {
4378 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
Tejun Heof15a1da2006-05-15 20:57:56 +09004379 ata_dev_printk(dev, KERN_WARNING,
4380 "device is on DMA blacklist, disabling DMA\n");
Tejun Heo37deecb2006-08-10 16:59:07 +09004381 }
Tejun Heoa6d5a512006-03-06 04:31:57 +09004382
Petr Vandrovec14d66ab2007-03-08 10:12:12 +01004383 if ((host->flags & ATA_HOST_SIMPLEX) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004384 host->simplex_claimed && host->simplex_claimed != ap) {
Tejun Heo37deecb2006-08-10 16:59:07 +09004385 xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
4386 ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by "
4387 "other device, disabling DMA\n");
Alan Cox5444a6f2006-03-27 18:58:20 +01004388 }
Tejun Heo565083e2006-04-02 17:54:47 +09004389
Jeff Garzike4246752007-03-09 09:56:46 -05004390 if (ap->flags & ATA_FLAG_NO_IORDY)
4391 xfer_mask &= ata_pio_mask_no_iordy(dev);
4392
Alan Cox5444a6f2006-03-27 18:58:20 +01004393 if (ap->ops->mode_filter)
Alan Coxa76b62c2007-03-09 09:34:07 -05004394 xfer_mask = ap->ops->mode_filter(dev, xfer_mask);
Alan Cox5444a6f2006-03-27 18:58:20 +01004395
Robert Hancock8343f882007-03-06 02:37:51 -08004396 /* Apply cable rule here. Don't apply it early because when
4397 * we handle hot plug the cable type can itself change.
4398 * Check this last so that we know if the transfer rate was
4399 * solely limited by the cable.
4400 * Unknown or 80 wire cables reported host side are checked
4401 * drive side as well. Cases where we know a 40wire cable
4402 * is used safely for 80 are not checked here.
4403 */
4404 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4405 /* UDMA/44 or higher would be available */
Alan Cox15a55512008-03-28 14:33:46 -07004406 if (cable_is_40wire(ap)) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04004407 ata_dev_printk(dev, KERN_WARNING,
Robert Hancock8343f882007-03-06 02:37:51 -08004408 "limited to UDMA/33 due to 40-wire cable\n");
4409 xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA);
4410 }
4411
Tejun Heo565083e2006-04-02 17:54:47 +09004412 ata_unpack_xfermask(xfer_mask, &dev->pio_mask,
4413 &dev->mwdma_mask, &dev->udma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414}
4415
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418 * @dev: Device to which command will be sent
4419 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004420 * Issue SET FEATURES - XFER MODE command to device @dev
4421 * on port @ap.
4422 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004424 * PCI/etc. bus probe sem.
Tejun Heo83206a22006-03-24 15:25:31 +09004425 *
4426 * RETURNS:
4427 * 0 on success, AC_ERR_* mask otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 */
4429
Tejun Heo3373efd2006-05-15 20:57:53 +09004430static unsigned int ata_dev_set_xfermode(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431{
Tejun Heoa0123702005-12-13 14:49:31 +09004432 struct ata_taskfile tf;
Tejun Heo83206a22006-03-24 15:25:31 +09004433 unsigned int err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
4435 /* set up set-features taskfile */
4436 DPRINTK("set features - xfer mode\n");
4437
Tejun Heo464cf172007-05-27 15:10:40 +02004438 /* Some controllers and ATAPI devices show flaky interrupt
4439 * behavior after setting xfer mode. Use polling instead.
4440 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004441 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004442 tf.command = ATA_CMD_SET_FEATURES;
4443 tf.feature = SETFEATURES_XFER;
Tejun Heo464cf172007-05-27 15:10:40 +02004444 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING;
Tejun Heoa0123702005-12-13 14:49:31 +09004445 tf.protocol = ATA_PROT_NODATA;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004446 /* If we are using IORDY we must send the mode setting command */
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004447 if (ata_pio_need_iordy(dev))
4448 tf.nsect = dev->xfer_mode;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004449 /* If the device has IORDY and the controller does not - turn it off */
4450 else if (ata_id_has_iordy(dev->id))
Jeff Garzik11b7bec2007-11-23 21:12:14 -05004451 tf.nsect = 0x01;
Alan Coxb9f8ab22007-11-19 14:33:11 +00004452 else /* In the ancient relic department - skip all of this */
4453 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454
Tejun Heo2b789102007-10-09 15:05:44 +09004455 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
Tejun Heo83206a22006-03-24 15:25:31 +09004457 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4458 return err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460/**
Jeff Garzik218f3d32007-10-25 00:33:27 -04004461 * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004462 * @dev: Device to which command will be sent
4463 * @enable: Whether to enable or disable the feature
Jeff Garzik218f3d32007-10-25 00:33:27 -04004464 * @feature: The sector count represents the feature to set
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004465 *
4466 * Issue SET FEATURES - SATA FEATURES command to device @dev
Jeff Garzik218f3d32007-10-25 00:33:27 -04004467 * on port @ap with sector count
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004468 *
4469 * LOCKING:
4470 * PCI/etc. bus probe sem.
4471 *
4472 * RETURNS:
4473 * 0 on success, AC_ERR_* mask otherwise.
4474 */
Jeff Garzik218f3d32007-10-25 00:33:27 -04004475static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable,
4476 u8 feature)
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004477{
4478 struct ata_taskfile tf;
4479 unsigned int err_mask;
4480
4481 /* set up set-features taskfile */
4482 DPRINTK("set features - SATA features\n");
4483
4484 ata_tf_init(dev, &tf);
4485 tf.command = ATA_CMD_SET_FEATURES;
4486 tf.feature = enable;
4487 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4488 tf.protocol = ATA_PROT_NODATA;
Jeff Garzik218f3d32007-10-25 00:33:27 -04004489 tf.nsect = feature;
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004490
Tejun Heo2b789102007-10-09 15:05:44 +09004491 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Kristen Carlson Accardi9f45cbd2007-08-15 03:57:11 -04004492
4493 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4494 return err_mask;
4495}
4496
4497/**
Albert Lee8bf62ece2005-05-12 15:29:42 -04004498 * ata_dev_init_params - Issue INIT DEV PARAMS command
Albert Lee8bf62ece2005-05-12 15:29:42 -04004499 * @dev: Device to which command will be sent
Randy Dunlape2a7f772006-05-18 10:50:18 -07004500 * @heads: Number of heads (taskfile parameter)
4501 * @sectors: Number of sectors (taskfile parameter)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004502 *
4503 * LOCKING:
Tejun Heo6aff8f12006-02-15 18:24:09 +09004504 * Kernel thread context (may sleep)
4505 *
4506 * RETURNS:
4507 * 0 on success, AC_ERR_* mask otherwise.
Albert Lee8bf62ece2005-05-12 15:29:42 -04004508 */
Tejun Heo3373efd2006-05-15 20:57:53 +09004509static unsigned int ata_dev_init_params(struct ata_device *dev,
4510 u16 heads, u16 sectors)
Albert Lee8bf62ece2005-05-12 15:29:42 -04004511{
Tejun Heoa0123702005-12-13 14:49:31 +09004512 struct ata_taskfile tf;
Tejun Heo6aff8f12006-02-15 18:24:09 +09004513 unsigned int err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004514
4515 /* Number of sectors per track 1-255. Number of heads 1-16 */
4516 if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16)
Albert Lee00b6f5e2006-03-27 16:39:18 +08004517 return AC_ERR_INVALID;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004518
4519 /* set up init dev params taskfile */
4520 DPRINTK("init dev params \n");
4521
Tejun Heo3373efd2006-05-15 20:57:53 +09004522 ata_tf_init(dev, &tf);
Tejun Heoa0123702005-12-13 14:49:31 +09004523 tf.command = ATA_CMD_INIT_DEV_PARAMS;
4524 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
4525 tf.protocol = ATA_PROT_NODATA;
4526 tf.nsect = sectors;
4527 tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */
Albert Lee8bf62ece2005-05-12 15:29:42 -04004528
Tejun Heo2b789102007-10-09 15:05:44 +09004529 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
Alan Cox18b24662007-08-08 14:28:49 +01004530 /* A clean abort indicates an original or just out of spec drive
4531 and we should continue as we issue the setup based on the
4532 drive reported working geometry */
4533 if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED))
4534 err_mask = 0;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004535
Tejun Heo6aff8f12006-02-15 18:24:09 +09004536 DPRINTK("EXIT, err_mask=%x\n", err_mask);
4537 return err_mask;
Albert Lee8bf62ece2005-05-12 15:29:42 -04004538}
4539
4540/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004541 * ata_sg_clean - Unmap DMA memory associated with command
4542 * @qc: Command containing DMA memory to be released
4543 *
4544 * Unmap all mapped DMA memory associated with this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 *
4546 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004547 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 */
Tejun Heo70e6ad02006-11-14 22:47:10 +09004549void ata_sg_clean(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550{
4551 struct ata_port *ap = qc->ap;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004552 struct scatterlist *sg = qc->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 int dir = qc->dma_dir;
4554
Tejun Heoa46314742006-02-11 19:11:13 +09004555 WARN_ON(sg == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
James Bottomleydde20202008-02-19 11:36:56 +01004557 VPRINTK("unmapping %u sg elements\n", qc->n_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
James Bottomleydde20202008-02-19 11:36:56 +01004559 if (qc->n_elem)
4560 dma_unmap_sg(ap->dev, sg, qc->n_elem, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
4562 qc->flags &= ~ATA_QCFLAG_DMAMAP;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004563 qc->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564}
4565
4566/**
Tejun Heo5895ef92008-06-17 12:36:26 +09004567 * atapi_check_dma - Check whether ATAPI DMA can be supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 * @qc: Metadata associated with taskfile to check
4569 *
Jeff Garzik780a87f2005-05-30 15:41:05 -04004570 * Allow low-level driver to filter ATA PACKET commands, returning
4571 * a status indicating whether or not it is OK to use DMA for the
4572 * supplied PACKET command.
4573 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004575 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004576 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 * RETURNS: 0 when ATAPI DMA can be used
4578 * nonzero otherwise
4579 */
Tejun Heo5895ef92008-06-17 12:36:26 +09004580int atapi_check_dma(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581{
4582 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
Tejun Heob9a41972007-06-27 02:48:43 +09004584 /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a
4585 * few ATAPI devices choke on such DMA requests.
4586 */
Tejun Heo6a87e422008-11-03 19:01:09 +09004587 if (!(qc->dev->horkage & ATA_HORKAGE_ATAPI_MOD16_DMA) &&
4588 unlikely(qc->nbytes & 15))
Tejun Heob9a41972007-06-27 02:48:43 +09004589 return 1;
Albert Lee6f23a312007-04-02 11:39:25 +08004590
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 if (ap->ops->check_atapi_dma)
Tejun Heob9a41972007-06-27 02:48:43 +09004592 return ap->ops->check_atapi_dma(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
Tejun Heob9a41972007-06-27 02:48:43 +09004594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595}
Tejun Heob9a41972007-06-27 02:48:43 +09004596
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597/**
Tejun Heo31cc23b2007-09-23 13:14:12 +09004598 * ata_std_qc_defer - Check whether a qc needs to be deferred
4599 * @qc: ATA command in question
4600 *
4601 * Non-NCQ commands cannot run with any other command, NCQ or
4602 * not. As upper layer only knows the queue depth, we are
4603 * responsible for maintaining exclusion. This function checks
4604 * whether a new command @qc can be issued.
4605 *
4606 * LOCKING:
4607 * spin_lock_irqsave(host lock)
4608 *
4609 * RETURNS:
4610 * ATA_DEFER_* if deferring is needed, 0 otherwise.
4611 */
4612int ata_std_qc_defer(struct ata_queued_cmd *qc)
4613{
4614 struct ata_link *link = qc->dev->link;
4615
4616 if (qc->tf.protocol == ATA_PROT_NCQ) {
4617 if (!ata_tag_valid(link->active_tag))
4618 return 0;
4619 } else {
4620 if (!ata_tag_valid(link->active_tag) && !link->sactive)
4621 return 0;
4622 }
4623
4624 return ATA_DEFER_LINK;
4625}
4626
Brian Kinge46834c2006-03-17 17:04:03 -06004627void ata_noop_qc_prep(struct ata_queued_cmd *qc) { }
4628
Jeff Garzik0cba6322005-05-30 19:49:12 -04004629/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004630 * ata_sg_init - Associate command with scatter-gather table.
4631 * @qc: Command to be associated
4632 * @sg: Scatter-gather table.
4633 * @n_elem: Number of elements in s/g table.
4634 *
4635 * Initialize the data-related elements of queued_cmd @qc
4636 * to point to a scatter-gather table @sg, containing @n_elem
4637 * elements.
4638 *
4639 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004640 * spin_lock_irqsave(host lock)
Jeff Garzik0cba6322005-05-30 19:49:12 -04004641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
4643 unsigned int n_elem)
4644{
Tejun Heoff2aeb12007-12-05 16:43:11 +09004645 qc->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 qc->n_elem = n_elem;
Tejun Heoff2aeb12007-12-05 16:43:11 +09004647 qc->cursg = qc->sg;
4648}
4649
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04004651 * ata_sg_setup - DMA-map the scatter-gather table associated with a command.
4652 * @qc: Command with scatter-gather table to be mapped.
4653 *
4654 * DMA-map the scatter-gather table associated with queued_cmd @qc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 *
4656 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004657 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 *
4659 * RETURNS:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004660 * Zero on success, negative on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 *
4662 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663static int ata_sg_setup(struct ata_queued_cmd *qc)
4664{
4665 struct ata_port *ap = qc->ap;
James Bottomleydde20202008-02-19 11:36:56 +01004666 unsigned int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
Tejun Heo44877b42007-02-21 01:06:51 +09004668 VPRINTK("ENTER, ata%u\n", ap->print_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
James Bottomleydde20202008-02-19 11:36:56 +01004670 n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir);
4671 if (n_elem < 1)
4672 return -1;
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004673
James Bottomleydde20202008-02-19 11:36:56 +01004674 DPRINTK("%d sg elements mapped\n", n_elem);
Jeff Garzikcedc9a42005-10-05 07:13:30 -04004675
James Bottomleydde20202008-02-19 11:36:56 +01004676 qc->n_elem = n_elem;
Tejun Heof92a2632007-12-05 16:43:10 +09004677 qc->flags |= ATA_QCFLAG_DMAMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678
4679 return 0;
4680}
4681
4682/**
Randy Dunlapc893a3a2006-01-28 13:15:32 -05004683 * swap_buf_le16 - swap halves of 16-bit words in place
Edward Falk0baab862005-06-02 18:17:13 -04004684 * @buf: Buffer to swap
4685 * @buf_words: Number of 16-bit words in buffer.
4686 *
4687 * Swap halves of 16-bit words if needed to convert from
4688 * little-endian byte order to native cpu byte order, or
4689 * vice-versa.
4690 *
4691 * LOCKING:
Randy Dunlap6f0ef4f2005-10-25 01:44:30 -04004692 * Inherited from caller.
Edward Falk0baab862005-06-02 18:17:13 -04004693 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694void swap_buf_le16(u16 *buf, unsigned int buf_words)
4695{
4696#ifdef __BIG_ENDIAN
4697 unsigned int i;
4698
4699 for (i = 0; i < buf_words; i++)
4700 buf[i] = le16_to_cpu(buf[i]);
4701#endif /* __BIG_ENDIAN */
4702}
4703
Albert Lee6ae4cfb2005-08-12 14:15:34 +08004704/**
Tejun Heo8a8bc222008-11-10 14:48:21 +09004705 * ata_qc_new - Request an available ATA command, for queueing
4706 * @ap: Port associated with device @dev
4707 * @dev: Device from whom we request an available command structure
4708 *
4709 * LOCKING:
4710 * None.
4711 */
4712
4713static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
4714{
4715 struct ata_queued_cmd *qc = NULL;
4716 unsigned int i;
4717
4718 /* no command while frozen */
4719 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN))
4720 return NULL;
4721
4722 /* the last tag is reserved for internal command. */
4723 for (i = 0; i < ATA_MAX_QUEUE - 1; i++)
4724 if (!test_and_set_bit(i, &ap->qc_allocated)) {
4725 qc = __ata_qc_from_tag(ap, i);
4726 break;
4727 }
4728
4729 if (qc)
4730 qc->tag = i;
4731
4732 return qc;
4733}
4734
4735/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 * ata_qc_new_init - Request an available ATA command, and initialize it
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 * @dev: Device from whom we request an available command structure
4738 *
4739 * LOCKING:
Jeff Garzik0cba6322005-05-30 19:49:12 -04004740 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 */
4742
Tejun Heo8a8bc222008-11-10 14:48:21 +09004743struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004745 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 struct ata_queued_cmd *qc;
4747
Tejun Heo8a8bc222008-11-10 14:48:21 +09004748 qc = ata_qc_new(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 if (qc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 qc->scsicmd = NULL;
4751 qc->ap = ap;
4752 qc->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753
Jeff Garzik2c13b7c2005-11-14 14:14:16 -05004754 ata_qc_reinit(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 }
4756
4757 return qc;
4758}
4759
Tejun Heo8a8bc222008-11-10 14:48:21 +09004760/**
4761 * ata_qc_free - free unused ata_queued_cmd
4762 * @qc: Command to complete
4763 *
4764 * Designed to free unused ata_queued_cmd object
4765 * in case something prevents using it.
4766 *
4767 * LOCKING:
4768 * spin_lock_irqsave(host lock)
4769 */
4770void ata_qc_free(struct ata_queued_cmd *qc)
4771{
4772 struct ata_port *ap = qc->ap;
4773 unsigned int tag;
4774
4775 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4776
4777 qc->flags = 0;
4778 tag = qc->tag;
4779 if (likely(ata_tag_valid(tag))) {
4780 qc->tag = ATA_TAG_POISON;
4781 clear_bit(tag, &ap->qc_allocated);
4782 }
4783}
4784
Tejun Heo76014422006-02-11 15:13:49 +09004785void __ata_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786{
Tejun Heodedaf2b2006-05-15 21:03:43 +09004787 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004788 struct ata_link *link = qc->dev->link;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004789
Tejun Heoa46314742006-02-11 19:11:13 +09004790 WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */
4791 WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792
4793 if (likely(qc->flags & ATA_QCFLAG_DMAMAP))
4794 ata_sg_clean(qc);
4795
Tejun Heo7401abf2006-05-15 20:57:32 +09004796 /* command should be marked inactive atomically with qc completion */
Tejun Heoda917d62007-09-23 13:14:12 +09004797 if (qc->tf.protocol == ATA_PROT_NCQ) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004798 link->sactive &= ~(1 << qc->tag);
Tejun Heoda917d62007-09-23 13:14:12 +09004799 if (!link->sactive)
4800 ap->nr_active_links--;
4801 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004802 link->active_tag = ATA_TAG_POISON;
Tejun Heoda917d62007-09-23 13:14:12 +09004803 ap->nr_active_links--;
4804 }
4805
4806 /* clear exclusive status */
4807 if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL &&
4808 ap->excl_link == link))
4809 ap->excl_link = NULL;
Tejun Heo7401abf2006-05-15 20:57:32 +09004810
Albert Lee3f3791d2005-08-16 14:25:38 +08004811 /* atapi: mark qc as inactive to prevent the interrupt handler
4812 * from completing the command twice later, before the error handler
4813 * is called. (when rc != 0 and atapi request sense is needed)
4814 */
4815 qc->flags &= ~ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09004816 ap->qc_active &= ~(1 << qc->tag);
Albert Lee3f3791d2005-08-16 14:25:38 +08004817
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 /* call completion callback */
Tejun Heo77853bf2006-01-23 13:09:36 +09004819 qc->complete_fn(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820}
4821
Tejun Heo39599a52006-11-14 22:37:35 +09004822static void fill_result_tf(struct ata_queued_cmd *qc)
4823{
4824 struct ata_port *ap = qc->ap;
4825
Tejun Heo39599a52006-11-14 22:37:35 +09004826 qc->result_tf.flags = qc->tf.flags;
Tejun Heo22183bf2008-04-07 22:47:20 +09004827 ap->ops->qc_fill_rtf(qc);
Tejun Heo39599a52006-11-14 22:37:35 +09004828}
4829
Tejun Heo00115e02007-11-27 19:28:58 +09004830static void ata_verify_xfer(struct ata_queued_cmd *qc)
4831{
4832 struct ata_device *dev = qc->dev;
4833
4834 if (ata_tag_internal(qc->tag))
4835 return;
4836
4837 if (ata_is_nodata(qc->tf.protocol))
4838 return;
4839
4840 if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol))
4841 return;
4842
4843 dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER;
4844}
4845
Tejun Heof686bcb2006-05-15 20:58:05 +09004846/**
4847 * ata_qc_complete - Complete an active ATA command
4848 * @qc: Command to complete
Tejun Heof686bcb2006-05-15 20:58:05 +09004849 *
4850 * Indicate to the mid and upper layers that an ATA
4851 * command has completed, with either an ok or not-ok status.
4852 *
4853 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004854 * spin_lock_irqsave(host lock)
Tejun Heof686bcb2006-05-15 20:58:05 +09004855 */
4856void ata_qc_complete(struct ata_queued_cmd *qc)
4857{
4858 struct ata_port *ap = qc->ap;
4859
4860 /* XXX: New EH and old EH use different mechanisms to
4861 * synchronize EH with regular execution path.
4862 *
4863 * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED.
4864 * Normal execution path is responsible for not accessing a
4865 * failed qc. libata core enforces the rule by returning NULL
4866 * from ata_qc_from_tag() for failed qcs.
4867 *
4868 * Old EH depends on ata_qc_complete() nullifying completion
4869 * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does
4870 * not synchronize with interrupt handler. Only PIO task is
4871 * taken care of.
4872 */
4873 if (ap->ops->error_handler) {
Tejun Heo4dbfa392007-10-25 18:22:44 +09004874 struct ata_device *dev = qc->dev;
4875 struct ata_eh_info *ehi = &dev->link->eh_info;
4876
Tejun Heob51e9e52006-06-29 01:29:30 +09004877 WARN_ON(ap->pflags & ATA_PFLAG_FROZEN);
Tejun Heof686bcb2006-05-15 20:58:05 +09004878
4879 if (unlikely(qc->err_mask))
4880 qc->flags |= ATA_QCFLAG_FAILED;
4881
4882 if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) {
4883 if (!ata_tag_internal(qc->tag)) {
4884 /* always fill result TF for failed qc */
Tejun Heo39599a52006-11-14 22:37:35 +09004885 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004886 ata_qc_schedule_eh(qc);
4887 return;
4888 }
4889 }
4890
4891 /* read result TF if requested */
4892 if (qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004893 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004894
Tejun Heo4dbfa392007-10-25 18:22:44 +09004895 /* Some commands need post-processing after successful
4896 * completion.
4897 */
4898 switch (qc->tf.command) {
4899 case ATA_CMD_SET_FEATURES:
4900 if (qc->tf.feature != SETFEATURES_WC_ON &&
4901 qc->tf.feature != SETFEATURES_WC_OFF)
4902 break;
4903 /* fall through */
4904 case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */
4905 case ATA_CMD_SET_MULTI: /* multi_count changed */
4906 /* revalidate device */
4907 ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE;
4908 ata_port_schedule_eh(ap);
4909 break;
Tejun Heo054a5fb2007-10-25 18:30:36 +09004910
4911 case ATA_CMD_SLEEP:
4912 dev->flags |= ATA_DFLAG_SLEEPING;
4913 break;
Tejun Heo4dbfa392007-10-25 18:22:44 +09004914 }
4915
Tejun Heo00115e02007-11-27 19:28:58 +09004916 if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER))
4917 ata_verify_xfer(qc);
4918
Tejun Heof686bcb2006-05-15 20:58:05 +09004919 __ata_qc_complete(qc);
4920 } else {
4921 if (qc->flags & ATA_QCFLAG_EH_SCHEDULED)
4922 return;
4923
4924 /* read result TF if failed or requested */
4925 if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF)
Tejun Heo39599a52006-11-14 22:37:35 +09004926 fill_result_tf(qc);
Tejun Heof686bcb2006-05-15 20:58:05 +09004927
4928 __ata_qc_complete(qc);
4929 }
4930}
4931
Tejun Heodedaf2b2006-05-15 21:03:43 +09004932/**
4933 * ata_qc_complete_multiple - Complete multiple qcs successfully
4934 * @ap: port in question
4935 * @qc_active: new qc_active mask
Tejun Heodedaf2b2006-05-15 21:03:43 +09004936 *
4937 * Complete in-flight commands. This functions is meant to be
4938 * called from low-level driver's interrupt routine to complete
4939 * requests normally. ap->qc_active and @qc_active is compared
4940 * and commands are completed accordingly.
4941 *
4942 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004943 * spin_lock_irqsave(host lock)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004944 *
4945 * RETURNS:
4946 * Number of completed commands on success, -errno otherwise.
4947 */
Tejun Heo79f97da2008-04-07 22:47:20 +09004948int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active)
Tejun Heodedaf2b2006-05-15 21:03:43 +09004949{
4950 int nr_done = 0;
4951 u32 done_mask;
4952 int i;
4953
4954 done_mask = ap->qc_active ^ qc_active;
4955
4956 if (unlikely(done_mask & qc_active)) {
4957 ata_port_printk(ap, KERN_ERR, "illegal qc_active transition "
4958 "(%08x->%08x)\n", ap->qc_active, qc_active);
4959 return -EINVAL;
4960 }
4961
4962 for (i = 0; i < ATA_MAX_QUEUE; i++) {
4963 struct ata_queued_cmd *qc;
4964
4965 if (!(done_mask & (1 << i)))
4966 continue;
4967
4968 if ((qc = ata_qc_from_tag(ap, i))) {
Tejun Heodedaf2b2006-05-15 21:03:43 +09004969 ata_qc_complete(qc);
4970 nr_done++;
4971 }
4972 }
4973
4974 return nr_done;
4975}
4976
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977/**
4978 * ata_qc_issue - issue taskfile to device
4979 * @qc: command to issue to device
4980 *
4981 * Prepare an ATA command to submission to device.
4982 * This includes mapping the data into a DMA-able
4983 * area, filling in the S/G table, and finally
4984 * writing the taskfile to hardware, starting the command.
4985 *
4986 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04004987 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 */
Tejun Heo8e0e6942006-03-31 20:41:11 +09004989void ata_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990{
4991 struct ata_port *ap = qc->ap;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004992 struct ata_link *link = qc->dev->link;
Tejun Heo405e66b2007-11-27 19:28:53 +09004993 u8 prot = qc->tf.protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994
Tejun Heodedaf2b2006-05-15 21:03:43 +09004995 /* Make sure only one non-NCQ command is outstanding. The
4996 * check is skipped for old EH because it reuses active qc to
4997 * request ATAPI sense.
4998 */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09004999 WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag));
Tejun Heodedaf2b2006-05-15 21:03:43 +09005000
Tejun Heo1973a022007-12-05 10:36:13 +09005001 if (ata_is_ncq(prot)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005002 WARN_ON(link->sactive & (1 << qc->tag));
Tejun Heoda917d62007-09-23 13:14:12 +09005003
5004 if (!link->sactive)
5005 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005006 link->sactive |= 1 << qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005007 } else {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005008 WARN_ON(link->sactive);
Tejun Heoda917d62007-09-23 13:14:12 +09005009
5010 ap->nr_active_links++;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005011 link->active_tag = qc->tag;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005012 }
5013
Tejun Heoe4a70e72006-03-31 20:36:47 +09005014 qc->flags |= ATA_QCFLAG_ACTIVE;
Tejun Heodedaf2b2006-05-15 21:03:43 +09005015 ap->qc_active |= 1 << qc->tag;
Tejun Heoe4a70e72006-03-31 20:36:47 +09005016
Tejun Heof92a2632007-12-05 16:43:10 +09005017 /* We guarantee to LLDs that they will have at least one
5018 * non-zero sg if the command is a data command.
5019 */
Tejun Heoff2aeb12007-12-05 16:43:11 +09005020 BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes));
Tejun Heof92a2632007-12-05 16:43:10 +09005021
Tejun Heo405e66b2007-11-27 19:28:53 +09005022 if (ata_is_dma(prot) || (ata_is_pio(prot) &&
Tejun Heof92a2632007-12-05 16:43:10 +09005023 (ap->flags & ATA_FLAG_PIO_DMA)))
Tejun Heo001102d2007-12-05 16:43:09 +09005024 if (ata_sg_setup(qc))
5025 goto sg_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
Tejun Heocf480622008-01-24 00:05:14 +09005027 /* if device is sleeping, schedule reset and abort the link */
Tejun Heo054a5fb2007-10-25 18:30:36 +09005028 if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
Tejun Heocf480622008-01-24 00:05:14 +09005029 link->eh_info.action |= ATA_EH_RESET;
Tejun Heo054a5fb2007-10-25 18:30:36 +09005030 ata_ehi_push_desc(&link->eh_info, "waking up from sleep");
5031 ata_link_abort(link);
5032 return;
5033 }
5034
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 ap->ops->qc_prep(qc);
5036
Tejun Heo8e0e6942006-03-31 20:41:11 +09005037 qc->err_mask |= ap->ops->qc_issue(qc);
5038 if (unlikely(qc->err_mask))
5039 goto err;
5040 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041
Tejun Heo8e436af2006-01-23 13:09:36 +09005042sg_err:
Tejun Heo8e0e6942006-03-31 20:41:11 +09005043 qc->err_mask |= AC_ERR_SYSTEM;
5044err:
5045 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046}
5047
5048/**
Tejun Heo34bf2172006-05-15 20:57:46 +09005049 * sata_scr_valid - test whether SCRs are accessible
Tejun Heo936fd732007-08-06 18:36:23 +09005050 * @link: ATA link to test SCR accessibility for
Tejun Heo34bf2172006-05-15 20:57:46 +09005051 *
Tejun Heo936fd732007-08-06 18:36:23 +09005052 * Test whether SCRs are accessible for @link.
Tejun Heo34bf2172006-05-15 20:57:46 +09005053 *
5054 * LOCKING:
5055 * None.
5056 *
5057 * RETURNS:
5058 * 1 if SCRs are accessible, 0 otherwise.
5059 */
Tejun Heo936fd732007-08-06 18:36:23 +09005060int sata_scr_valid(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005061{
Tejun Heo936fd732007-08-06 18:36:23 +09005062 struct ata_port *ap = link->ap;
5063
Tejun Heoa16abc02007-05-21 18:33:47 +02005064 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
Tejun Heo34bf2172006-05-15 20:57:46 +09005065}
5066
5067/**
5068 * sata_scr_read - read SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005069 * @link: ATA link to read SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005070 * @reg: SCR to read
5071 * @val: Place to store read value
5072 *
Tejun Heo936fd732007-08-06 18:36:23 +09005073 * Read SCR register @reg of @link into *@val. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09005074 * guaranteed to succeed if @link is ap->link, the cable type of
5075 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09005076 *
5077 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09005078 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09005079 *
5080 * RETURNS:
5081 * 0 on success, negative errno on failure.
5082 */
Tejun Heo936fd732007-08-06 18:36:23 +09005083int sata_scr_read(struct ata_link *link, int reg, u32 *val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005084{
Tejun Heo633273a32007-09-23 13:19:54 +09005085 if (ata_is_host_link(link)) {
Tejun Heo633273a32007-09-23 13:19:54 +09005086 if (sata_scr_valid(link))
Tejun Heo82ef04f2008-07-31 17:02:40 +09005087 return link->ap->ops->scr_read(link, reg, val);
Tejun Heo633273a32007-09-23 13:19:54 +09005088 return -EOPNOTSUPP;
5089 }
5090
5091 return sata_pmp_scr_read(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005092}
5093
5094/**
5095 * sata_scr_write - write SCR register of the specified port
Tejun Heo936fd732007-08-06 18:36:23 +09005096 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005097 * @reg: SCR to write
5098 * @val: value to write
5099 *
Tejun Heo936fd732007-08-06 18:36:23 +09005100 * Write @val to SCR register @reg of @link. This function is
Tejun Heo633273a32007-09-23 13:19:54 +09005101 * guaranteed to succeed if @link is ap->link, the cable type of
5102 * the port is SATA and the port implements ->scr_read.
Tejun Heo34bf2172006-05-15 20:57:46 +09005103 *
5104 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09005105 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09005106 *
5107 * RETURNS:
5108 * 0 on success, negative errno on failure.
5109 */
Tejun Heo936fd732007-08-06 18:36:23 +09005110int sata_scr_write(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005111{
Tejun Heo633273a32007-09-23 13:19:54 +09005112 if (ata_is_host_link(link)) {
Tejun Heo633273a32007-09-23 13:19:54 +09005113 if (sata_scr_valid(link))
Tejun Heo82ef04f2008-07-31 17:02:40 +09005114 return link->ap->ops->scr_write(link, reg, val);
Tejun Heo633273a32007-09-23 13:19:54 +09005115 return -EOPNOTSUPP;
5116 }
5117
5118 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005119}
5120
5121/**
5122 * sata_scr_write_flush - write SCR register of the specified port and flush
Tejun Heo936fd732007-08-06 18:36:23 +09005123 * @link: ATA link to write SCR for
Tejun Heo34bf2172006-05-15 20:57:46 +09005124 * @reg: SCR to write
5125 * @val: value to write
5126 *
5127 * This function is identical to sata_scr_write() except that this
5128 * function performs flush after writing to the register.
5129 *
5130 * LOCKING:
Tejun Heo633273a32007-09-23 13:19:54 +09005131 * None if @link is ap->link. Kernel thread context otherwise.
Tejun Heo34bf2172006-05-15 20:57:46 +09005132 *
5133 * RETURNS:
5134 * 0 on success, negative errno on failure.
5135 */
Tejun Heo936fd732007-08-06 18:36:23 +09005136int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
Tejun Heo34bf2172006-05-15 20:57:46 +09005137{
Tejun Heo633273a32007-09-23 13:19:54 +09005138 if (ata_is_host_link(link)) {
Tejun Heo633273a32007-09-23 13:19:54 +09005139 int rc;
Tejun Heoda3dbb12007-07-16 14:29:40 +09005140
Tejun Heo633273a32007-09-23 13:19:54 +09005141 if (sata_scr_valid(link)) {
Tejun Heo82ef04f2008-07-31 17:02:40 +09005142 rc = link->ap->ops->scr_write(link, reg, val);
Tejun Heo633273a32007-09-23 13:19:54 +09005143 if (rc == 0)
Tejun Heo82ef04f2008-07-31 17:02:40 +09005144 rc = link->ap->ops->scr_read(link, reg, &val);
Tejun Heo633273a32007-09-23 13:19:54 +09005145 return rc;
5146 }
5147 return -EOPNOTSUPP;
Tejun Heo34bf2172006-05-15 20:57:46 +09005148 }
Tejun Heo633273a32007-09-23 13:19:54 +09005149
5150 return sata_pmp_scr_write(link, reg, val);
Tejun Heo34bf2172006-05-15 20:57:46 +09005151}
5152
5153/**
Tejun Heob1c72912008-07-31 17:02:43 +09005154 * ata_phys_link_online - test whether the given link is online
Tejun Heo936fd732007-08-06 18:36:23 +09005155 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005156 *
Tejun Heo936fd732007-08-06 18:36:23 +09005157 * Test whether @link is online. Note that this function returns
5158 * 0 if online status of @link cannot be obtained, so
5159 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005160 *
5161 * LOCKING:
5162 * None.
5163 *
5164 * RETURNS:
Tejun Heob5b3fa32008-07-31 17:02:42 +09005165 * True if the port online status is available and online.
Tejun Heo34bf2172006-05-15 20:57:46 +09005166 */
Tejun Heob1c72912008-07-31 17:02:43 +09005167bool ata_phys_link_online(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005168{
5169 u32 sstatus;
5170
Tejun Heo936fd732007-08-06 18:36:23 +09005171 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5172 (sstatus & 0xf) == 0x3)
Tejun Heob5b3fa32008-07-31 17:02:42 +09005173 return true;
5174 return false;
Tejun Heo34bf2172006-05-15 20:57:46 +09005175}
5176
5177/**
Tejun Heob1c72912008-07-31 17:02:43 +09005178 * ata_phys_link_offline - test whether the given link is offline
Tejun Heo936fd732007-08-06 18:36:23 +09005179 * @link: ATA link to test
Tejun Heo34bf2172006-05-15 20:57:46 +09005180 *
Tejun Heo936fd732007-08-06 18:36:23 +09005181 * Test whether @link is offline. Note that this function
5182 * returns 0 if offline status of @link cannot be obtained, so
5183 * ata_link_online(link) != !ata_link_offline(link).
Tejun Heo34bf2172006-05-15 20:57:46 +09005184 *
5185 * LOCKING:
5186 * None.
5187 *
5188 * RETURNS:
Tejun Heob5b3fa32008-07-31 17:02:42 +09005189 * True if the port offline status is available and offline.
Tejun Heo34bf2172006-05-15 20:57:46 +09005190 */
Tejun Heob1c72912008-07-31 17:02:43 +09005191bool ata_phys_link_offline(struct ata_link *link)
Tejun Heo34bf2172006-05-15 20:57:46 +09005192{
5193 u32 sstatus;
5194
Tejun Heo936fd732007-08-06 18:36:23 +09005195 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 &&
5196 (sstatus & 0xf) != 0x3)
Tejun Heob5b3fa32008-07-31 17:02:42 +09005197 return true;
5198 return false;
Tejun Heo34bf2172006-05-15 20:57:46 +09005199}
Edward Falk0baab862005-06-02 18:17:13 -04005200
Tejun Heob1c72912008-07-31 17:02:43 +09005201/**
5202 * ata_link_online - test whether the given link is online
5203 * @link: ATA link to test
5204 *
5205 * Test whether @link is online. This is identical to
5206 * ata_phys_link_online() when there's no slave link. When
5207 * there's a slave link, this function should only be called on
5208 * the master link and will return true if any of M/S links is
5209 * online.
5210 *
5211 * LOCKING:
5212 * None.
5213 *
5214 * RETURNS:
5215 * True if the port online status is available and online.
5216 */
5217bool ata_link_online(struct ata_link *link)
5218{
5219 struct ata_link *slave = link->ap->slave_link;
5220
5221 WARN_ON(link == slave); /* shouldn't be called on slave link */
5222
5223 return ata_phys_link_online(link) ||
5224 (slave && ata_phys_link_online(slave));
5225}
5226
5227/**
5228 * ata_link_offline - test whether the given link is offline
5229 * @link: ATA link to test
5230 *
5231 * Test whether @link is offline. This is identical to
5232 * ata_phys_link_offline() when there's no slave link. When
5233 * there's a slave link, this function should only be called on
5234 * the master link and will return true if both M/S links are
5235 * offline.
5236 *
5237 * LOCKING:
5238 * None.
5239 *
5240 * RETURNS:
5241 * True if the port offline status is available and offline.
5242 */
5243bool ata_link_offline(struct ata_link *link)
5244{
5245 struct ata_link *slave = link->ap->slave_link;
5246
5247 WARN_ON(link == slave); /* shouldn't be called on slave link */
5248
5249 return ata_phys_link_offline(link) &&
5250 (!slave || ata_phys_link_offline(slave));
5251}
5252
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005253#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04005254static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg,
5255 unsigned int action, unsigned int ehi_flags,
5256 int wait)
Tejun Heo500530f2006-07-03 16:07:27 +09005257{
5258 unsigned long flags;
5259 int i, rc;
5260
Jeff Garzikcca39742006-08-24 03:19:22 -04005261 for (i = 0; i < host->n_ports; i++) {
5262 struct ata_port *ap = host->ports[i];
Tejun Heoe3667eb2007-08-06 18:36:24 +09005263 struct ata_link *link;
Tejun Heo500530f2006-07-03 16:07:27 +09005264
5265 /* Previous resume operation might still be in
5266 * progress. Wait for PM_PENDING to clear.
5267 */
5268 if (ap->pflags & ATA_PFLAG_PM_PENDING) {
5269 ata_port_wait_eh(ap);
5270 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5271 }
5272
5273 /* request PM ops to EH */
5274 spin_lock_irqsave(ap->lock, flags);
5275
5276 ap->pm_mesg = mesg;
5277 if (wait) {
5278 rc = 0;
5279 ap->pm_result = &rc;
5280 }
5281
5282 ap->pflags |= ATA_PFLAG_PM_PENDING;
Tejun Heo1eca4362008-11-03 20:03:17 +09005283 ata_for_each_link(link, ap, HOST_FIRST) {
Tejun Heoe3667eb2007-08-06 18:36:24 +09005284 link->eh_info.action |= action;
5285 link->eh_info.flags |= ehi_flags;
5286 }
Tejun Heo500530f2006-07-03 16:07:27 +09005287
5288 ata_port_schedule_eh(ap);
5289
5290 spin_unlock_irqrestore(ap->lock, flags);
5291
5292 /* wait and check result */
5293 if (wait) {
5294 ata_port_wait_eh(ap);
5295 WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING);
5296 if (rc)
5297 return rc;
5298 }
5299 }
5300
5301 return 0;
5302}
5303
5304/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005305 * ata_host_suspend - suspend host
5306 * @host: host to suspend
Tejun Heo500530f2006-07-03 16:07:27 +09005307 * @mesg: PM message
5308 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005309 * Suspend @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005310 * function requests EH to perform PM operations and waits for EH
5311 * to finish.
5312 *
5313 * LOCKING:
5314 * Kernel thread context (may sleep).
5315 *
5316 * RETURNS:
5317 * 0 on success, -errno on failure.
5318 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005319int ata_host_suspend(struct ata_host *host, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09005320{
Tejun Heo9666f402007-05-04 21:27:47 +02005321 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09005322
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005323 /*
5324 * disable link pm on all ports before requesting
5325 * any pm activity
5326 */
5327 ata_lpm_enable(host);
5328
Jeff Garzikcca39742006-08-24 03:19:22 -04005329 rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005330 if (rc == 0)
5331 host->dev->power.power_state = mesg;
Tejun Heo500530f2006-07-03 16:07:27 +09005332 return rc;
5333}
5334
5335/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005336 * ata_host_resume - resume host
5337 * @host: host to resume
Tejun Heo500530f2006-07-03 16:07:27 +09005338 *
Jeff Garzikcca39742006-08-24 03:19:22 -04005339 * Resume @host. Actual operation is performed by EH. This
Tejun Heo500530f2006-07-03 16:07:27 +09005340 * function requests EH to perform PM operations and returns.
5341 * Note that all resume operations are performed parallely.
5342 *
5343 * LOCKING:
5344 * Kernel thread context (may sleep).
5345 */
Jeff Garzikcca39742006-08-24 03:19:22 -04005346void ata_host_resume(struct ata_host *host)
Tejun Heo500530f2006-07-03 16:07:27 +09005347{
Tejun Heocf480622008-01-24 00:05:14 +09005348 ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET,
Jeff Garzikcca39742006-08-24 03:19:22 -04005349 ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0);
Jeff Garzik72ad6ec2008-02-25 17:31:10 -05005350 host->dev->power.power_state = PMSG_ON;
Kristen Carlson Accardica773292007-10-25 00:58:59 -04005351
5352 /* reenable link pm */
5353 ata_lpm_disable(host);
Tejun Heo500530f2006-07-03 16:07:27 +09005354}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09005355#endif
Tejun Heo500530f2006-07-03 16:07:27 +09005356
Randy Dunlapc893a3a2006-01-28 13:15:32 -05005357/**
5358 * ata_port_start - Set port up for dma.
5359 * @ap: Port to initialize
5360 *
5361 * Called just after data structures for each port are
5362 * initialized. Allocates space for PRD table.
5363 *
5364 * May be used as the port_start() entry in ata_port_operations.
5365 *
5366 * LOCKING:
5367 * Inherited from caller.
5368 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09005369int ata_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370{
Brian King2f1f6102006-03-23 17:30:15 -06005371 struct device *dev = ap->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372
Tejun Heof0d36ef2007-01-20 16:00:28 +09005373 ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma,
5374 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 if (!ap->prd)
5376 return -ENOMEM;
5377
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378 return 0;
5379}
5380
Edward Falk0baab862005-06-02 18:17:13 -04005381/**
Tejun Heo3ef3b432006-05-31 18:27:30 +09005382 * ata_dev_init - Initialize an ata_device structure
5383 * @dev: Device structure to initialize
5384 *
5385 * Initialize @dev in preparation for probing.
5386 *
5387 * LOCKING:
5388 * Inherited from caller.
5389 */
5390void ata_dev_init(struct ata_device *dev)
5391{
Tejun Heob1c72912008-07-31 17:02:43 +09005392 struct ata_link *link = ata_dev_phys_link(dev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005393 struct ata_port *ap = link->ap;
Tejun Heo72fa4b72006-05-31 18:27:32 +09005394 unsigned long flags;
Tejun Heo3ef3b432006-05-31 18:27:30 +09005395
Tejun Heob1c72912008-07-31 17:02:43 +09005396 /* SATA spd limit is bound to the attached device, reset together */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09005397 link->sata_spd_limit = link->hw_sata_spd_limit;
5398 link->sata_spd = 0;
Tejun Heo5a04bf42006-05-31 18:27:38 +09005399
Tejun Heo72fa4b72006-05-31 18:27:32 +09005400 /* High bits of dev->flags are used to record warm plug
5401 * requests which occur asynchronously. Synchronize using
Jeff Garzikcca39742006-08-24 03:19:22 -04005402 * host lock.
Tejun Heo72fa4b72006-05-31 18:27:32 +09005403 */
Jeff Garzikba6a1302006-06-22 23:46:10 -04005404 spin_lock_irqsave(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005405 dev->flags &= ~ATA_DFLAG_INIT_MASK;
Tejun Heo3dcc3232007-09-03 12:20:11 +09005406 dev->horkage = 0;
Jeff Garzikba6a1302006-06-22 23:46:10 -04005407 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo72fa4b72006-05-31 18:27:32 +09005408
5409 memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0,
5410 sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET);
Tejun Heo3ef3b432006-05-31 18:27:30 +09005411 dev->pio_mask = UINT_MAX;
5412 dev->mwdma_mask = UINT_MAX;
5413 dev->udma_mask = UINT_MAX;
5414}
5415
5416/**
Tejun Heo4fb37a22007-08-06 18:36:23 +09005417 * ata_link_init - Initialize an ata_link structure
5418 * @ap: ATA port link is attached to
5419 * @link: Link structure to initialize
Tejun Heo89898052007-08-06 18:36:23 +09005420 * @pmp: Port multiplier port number
Tejun Heo4fb37a22007-08-06 18:36:23 +09005421 *
5422 * Initialize @link.
5423 *
5424 * LOCKING:
5425 * Kernel thread context (may sleep)
5426 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005427void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005428{
5429 int i;
5430
5431 /* clear everything except for devices */
5432 memset(link, 0, offsetof(struct ata_link, device[0]));
5433
5434 link->ap = ap;
Tejun Heo89898052007-08-06 18:36:23 +09005435 link->pmp = pmp;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005436 link->active_tag = ATA_TAG_POISON;
5437 link->hw_sata_spd_limit = UINT_MAX;
5438
5439 /* can't use iterator, ap isn't initialized yet */
5440 for (i = 0; i < ATA_MAX_DEVICES; i++) {
5441 struct ata_device *dev = &link->device[i];
5442
5443 dev->link = link;
5444 dev->devno = dev - link->device;
5445 ata_dev_init(dev);
5446 }
5447}
5448
5449/**
5450 * sata_link_init_spd - Initialize link->sata_spd_limit
5451 * @link: Link to configure sata_spd_limit for
5452 *
5453 * Initialize @link->[hw_]sata_spd_limit to the currently
5454 * configured value.
5455 *
5456 * LOCKING:
5457 * Kernel thread context (may sleep).
5458 *
5459 * RETURNS:
5460 * 0 on success, -errno on failure.
5461 */
Tejun Heofb7fd612007-09-23 13:14:12 +09005462int sata_link_init_spd(struct ata_link *link)
Tejun Heo4fb37a22007-08-06 18:36:23 +09005463{
Tejun Heo33267322008-02-13 09:15:09 +09005464 u8 spd;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005465 int rc;
5466
Tejun Heod127ea72008-07-31 16:09:34 +09005467 rc = sata_scr_read(link, SCR_CONTROL, &link->saved_scontrol);
Tejun Heo4fb37a22007-08-06 18:36:23 +09005468 if (rc)
5469 return rc;
5470
Tejun Heod127ea72008-07-31 16:09:34 +09005471 spd = (link->saved_scontrol >> 4) & 0xf;
Tejun Heo4fb37a22007-08-06 18:36:23 +09005472 if (spd)
5473 link->hw_sata_spd_limit &= (1 << spd) - 1;
5474
Tejun Heo05944bd2008-08-13 20:19:09 +09005475 ata_force_link_limits(link);
Tejun Heo33267322008-02-13 09:15:09 +09005476
Tejun Heo4fb37a22007-08-06 18:36:23 +09005477 link->sata_spd_limit = link->hw_sata_spd_limit;
5478
5479 return 0;
5480}
5481
5482/**
Tejun Heof3187192007-04-17 23:44:07 +09005483 * ata_port_alloc - allocate and initialize basic ATA port resources
5484 * @host: ATA host this allocated port belongs to
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 *
Tejun Heof3187192007-04-17 23:44:07 +09005486 * Allocate and initialize basic ATA port resources.
5487 *
5488 * RETURNS:
5489 * Allocate ATA port on success, NULL on failure.
Jeff Garzik0cba6322005-05-30 19:49:12 -04005490 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005492 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493 */
Tejun Heof3187192007-04-17 23:44:07 +09005494struct ata_port *ata_port_alloc(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495{
Tejun Heof3187192007-04-17 23:44:07 +09005496 struct ata_port *ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497
Tejun Heof3187192007-04-17 23:44:07 +09005498 DPRINTK("ENTER\n");
5499
5500 ap = kzalloc(sizeof(*ap), GFP_KERNEL);
5501 if (!ap)
5502 return NULL;
5503
Tejun Heof4d6d002007-05-01 11:50:15 +02005504 ap->pflags |= ATA_PFLAG_INITIALIZING;
Jeff Garzikcca39742006-08-24 03:19:22 -04005505 ap->lock = &host->lock;
Tejun Heo198e0fe2006-04-02 18:51:52 +09005506 ap->flags = ATA_FLAG_DISABLED;
Tejun Heof3187192007-04-17 23:44:07 +09005507 ap->print_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 ap->ctl = ATA_DEVCTL_OBS;
Jeff Garzikcca39742006-08-24 03:19:22 -04005509 ap->host = host;
Tejun Heof3187192007-04-17 23:44:07 +09005510 ap->dev = host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511 ap->last_ctl = 0xFF;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005512
5513#if defined(ATA_VERBOSE_DEBUG)
5514 /* turn on all debugging levels */
5515 ap->msg_enable = 0x00FF;
5516#elif defined(ATA_DEBUG)
5517 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 +09005518#else
Borislav Petkov0dd4b212006-06-23 02:29:08 -04005519 ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN;
Borislav Petkovbd5d8252006-06-11 23:17:01 -04005520#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521
Tejun Heo127102a2008-04-07 22:47:21 +09005522#ifdef CONFIG_ATA_SFF
Jeff Garzik442eacc2007-12-19 04:25:10 -05005523 INIT_DELAYED_WORK(&ap->port_task, ata_pio_task);
Tejun Heof667fdb2008-10-20 13:11:56 +09005524#else
5525 INIT_DELAYED_WORK(&ap->port_task, NULL);
Tejun Heo127102a2008-04-07 22:47:21 +09005526#endif
David Howells65f27f32006-11-22 14:55:48 +00005527 INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug);
5528 INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan);
Tejun Heoa72ec4c2006-01-23 13:09:37 +09005529 INIT_LIST_HEAD(&ap->eh_done_q);
Tejun Heoc6cf9e92006-05-31 18:27:27 +09005530 init_waitqueue_head(&ap->eh_wait_q);
Elias Oltmanns45fabbb2008-09-21 11:54:08 +02005531 init_completion(&ap->park_req_pending);
Tejun Heo5ddf24c2007-07-16 14:29:41 +09005532 init_timer_deferrable(&ap->fastdrain_timer);
5533 ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
5534 ap->fastdrain_timer.data = (unsigned long)ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535
Tejun Heo838df622006-05-15 20:57:44 +09005536 ap->cbl = ATA_CBL_NONE;
Tejun Heo838df622006-05-15 20:57:44 +09005537
Tejun Heo89898052007-08-06 18:36:23 +09005538 ata_link_init(ap, &ap->link, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539
5540#ifdef ATA_IRQ_TRAP
5541 ap->stats.unhandled_irq = 1;
5542 ap->stats.idle_irq = 1;
5543#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 return ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545}
5546
Tejun Heof0d36ef2007-01-20 16:00:28 +09005547static void ata_host_release(struct device *gendev, void *res)
5548{
5549 struct ata_host *host = dev_get_drvdata(gendev);
5550 int i;
5551
5552 for (i = 0; i < host->n_ports; i++) {
5553 struct ata_port *ap = host->ports[i];
5554
Tejun Heoecef7252007-04-17 23:44:06 +09005555 if (!ap)
5556 continue;
5557
Tejun Heo49114872007-04-17 23:44:06 +09005558 if (ap->scsi_host)
Tejun Heo1aa506e2007-03-09 19:36:12 +09005559 scsi_host_put(ap->scsi_host);
5560
Tejun Heo633273a32007-09-23 13:19:54 +09005561 kfree(ap->pmp_link);
Tejun Heob1c72912008-07-31 17:02:43 +09005562 kfree(ap->slave_link);
Tejun Heo49114872007-04-17 23:44:06 +09005563 kfree(ap);
Tejun Heo1aa506e2007-03-09 19:36:12 +09005564 host->ports[i] = NULL;
5565 }
5566
Tejun Heo1aa56cc2007-02-27 22:33:21 +09005567 dev_set_drvdata(gendev, NULL);
Tejun Heof0d36ef2007-01-20 16:00:28 +09005568}
5569
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570/**
Tejun Heof3187192007-04-17 23:44:07 +09005571 * ata_host_alloc - allocate and init basic ATA host resources
5572 * @dev: generic device this host is associated with
5573 * @max_ports: maximum number of ATA ports associated with this host
5574 *
5575 * Allocate and initialize basic ATA host resources. LLD calls
5576 * this function to allocate a host, initializes it fully and
5577 * attaches it using ata_host_register().
5578 *
5579 * @max_ports ports are allocated and host->n_ports is
5580 * initialized to @max_ports. The caller is allowed to decrease
5581 * host->n_ports before calling ata_host_register(). The unused
5582 * ports will be automatically freed on registration.
5583 *
5584 * RETURNS:
5585 * Allocate ATA host on success, NULL on failure.
5586 *
5587 * LOCKING:
5588 * Inherited from calling layer (may sleep).
5589 */
5590struct ata_host *ata_host_alloc(struct device *dev, int max_ports)
5591{
5592 struct ata_host *host;
5593 size_t sz;
5594 int i;
5595
5596 DPRINTK("ENTER\n");
5597
5598 if (!devres_open_group(dev, NULL, GFP_KERNEL))
5599 return NULL;
5600
5601 /* alloc a container for our list of ATA ports (buses) */
5602 sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *);
5603 /* alloc a container for our list of ATA ports (buses) */
5604 host = devres_alloc(ata_host_release, sz, GFP_KERNEL);
5605 if (!host)
5606 goto err_out;
5607
5608 devres_add(dev, host);
5609 dev_set_drvdata(dev, host);
5610
5611 spin_lock_init(&host->lock);
5612 host->dev = dev;
5613 host->n_ports = max_ports;
5614
5615 /* allocate ports bound to this host */
5616 for (i = 0; i < max_ports; i++) {
5617 struct ata_port *ap;
5618
5619 ap = ata_port_alloc(host);
5620 if (!ap)
5621 goto err_out;
5622
5623 ap->port_no = i;
5624 host->ports[i] = ap;
5625 }
5626
5627 devres_remove_group(dev, NULL);
5628 return host;
5629
5630 err_out:
5631 devres_release_group(dev, NULL);
5632 return NULL;
5633}
5634
5635/**
Tejun Heof5cda252007-04-17 23:44:07 +09005636 * ata_host_alloc_pinfo - alloc host and init with port_info array
5637 * @dev: generic device this host is associated with
5638 * @ppi: array of ATA port_info to initialize host with
5639 * @n_ports: number of ATA ports attached to this host
5640 *
5641 * Allocate ATA host and initialize with info from @ppi. If NULL
5642 * terminated, @ppi may contain fewer entries than @n_ports. The
5643 * last entry will be used for the remaining ports.
5644 *
5645 * RETURNS:
5646 * Allocate ATA host on success, NULL on failure.
5647 *
5648 * LOCKING:
5649 * Inherited from calling layer (may sleep).
5650 */
5651struct ata_host *ata_host_alloc_pinfo(struct device *dev,
5652 const struct ata_port_info * const * ppi,
5653 int n_ports)
5654{
5655 const struct ata_port_info *pi;
5656 struct ata_host *host;
5657 int i, j;
5658
5659 host = ata_host_alloc(dev, n_ports);
5660 if (!host)
5661 return NULL;
5662
5663 for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) {
5664 struct ata_port *ap = host->ports[i];
5665
5666 if (ppi[j])
5667 pi = ppi[j++];
5668
5669 ap->pio_mask = pi->pio_mask;
5670 ap->mwdma_mask = pi->mwdma_mask;
5671 ap->udma_mask = pi->udma_mask;
5672 ap->flags |= pi->flags;
Tejun Heo0c887582007-08-06 18:36:23 +09005673 ap->link.flags |= pi->link_flags;
Tejun Heof5cda252007-04-17 23:44:07 +09005674 ap->ops = pi->port_ops;
5675
5676 if (!host->ops && (pi->port_ops != &ata_dummy_port_ops))
5677 host->ops = pi->port_ops;
Tejun Heof5cda252007-04-17 23:44:07 +09005678 }
5679
5680 return host;
5681}
5682
Tejun Heob1c72912008-07-31 17:02:43 +09005683/**
5684 * ata_slave_link_init - initialize slave link
5685 * @ap: port to initialize slave link for
5686 *
5687 * Create and initialize slave link for @ap. This enables slave
5688 * link handling on the port.
5689 *
5690 * In libata, a port contains links and a link contains devices.
5691 * There is single host link but if a PMP is attached to it,
5692 * there can be multiple fan-out links. On SATA, there's usually
5693 * a single device connected to a link but PATA and SATA
5694 * controllers emulating TF based interface can have two - master
5695 * and slave.
5696 *
5697 * However, there are a few controllers which don't fit into this
5698 * abstraction too well - SATA controllers which emulate TF
5699 * interface with both master and slave devices but also have
5700 * separate SCR register sets for each device. These controllers
5701 * need separate links for physical link handling
5702 * (e.g. onlineness, link speed) but should be treated like a
5703 * traditional M/S controller for everything else (e.g. command
5704 * issue, softreset).
5705 *
5706 * slave_link is libata's way of handling this class of
5707 * controllers without impacting core layer too much. For
5708 * anything other than physical link handling, the default host
5709 * link is used for both master and slave. For physical link
5710 * handling, separate @ap->slave_link is used. All dirty details
5711 * are implemented inside libata core layer. From LLD's POV, the
5712 * only difference is that prereset, hardreset and postreset are
5713 * called once more for the slave link, so the reset sequence
5714 * looks like the following.
5715 *
5716 * prereset(M) -> prereset(S) -> hardreset(M) -> hardreset(S) ->
5717 * softreset(M) -> postreset(M) -> postreset(S)
5718 *
5719 * Note that softreset is called only for the master. Softreset
5720 * resets both M/S by definition, so SRST on master should handle
5721 * both (the standard method will work just fine).
5722 *
5723 * LOCKING:
5724 * Should be called before host is registered.
5725 *
5726 * RETURNS:
5727 * 0 on success, -errno on failure.
5728 */
5729int ata_slave_link_init(struct ata_port *ap)
5730{
5731 struct ata_link *link;
5732
5733 WARN_ON(ap->slave_link);
5734 WARN_ON(ap->flags & ATA_FLAG_PMP);
5735
5736 link = kzalloc(sizeof(*link), GFP_KERNEL);
5737 if (!link)
5738 return -ENOMEM;
5739
5740 ata_link_init(ap, link, 1);
5741 ap->slave_link = link;
5742 return 0;
5743}
5744
Tejun Heo32ebbc02007-11-08 13:09:00 +09005745static void ata_host_stop(struct device *gendev, void *res)
5746{
5747 struct ata_host *host = dev_get_drvdata(gendev);
5748 int i;
5749
5750 WARN_ON(!(host->flags & ATA_HOST_STARTED));
5751
5752 for (i = 0; i < host->n_ports; i++) {
5753 struct ata_port *ap = host->ports[i];
5754
5755 if (ap->ops->port_stop)
5756 ap->ops->port_stop(ap);
5757 }
5758
5759 if (host->ops->host_stop)
5760 host->ops->host_stop(host);
5761}
5762
Tejun Heof5cda252007-04-17 23:44:07 +09005763/**
Tejun Heo029cfd62008-03-25 12:22:49 +09005764 * ata_finalize_port_ops - finalize ata_port_operations
5765 * @ops: ata_port_operations to finalize
5766 *
5767 * An ata_port_operations can inherit from another ops and that
5768 * ops can again inherit from another. This can go on as many
5769 * times as necessary as long as there is no loop in the
5770 * inheritance chain.
5771 *
5772 * Ops tables are finalized when the host is started. NULL or
5773 * unspecified entries are inherited from the closet ancestor
5774 * which has the method and the entry is populated with it.
5775 * After finalization, the ops table directly points to all the
5776 * methods and ->inherits is no longer necessary and cleared.
5777 *
5778 * Using ATA_OP_NULL, inheriting ops can force a method to NULL.
5779 *
5780 * LOCKING:
5781 * None.
5782 */
5783static void ata_finalize_port_ops(struct ata_port_operations *ops)
5784{
Pradeep Singh Rautela2da67652008-05-29 23:28:14 +05305785 static DEFINE_SPINLOCK(lock);
Tejun Heo029cfd62008-03-25 12:22:49 +09005786 const struct ata_port_operations *cur;
5787 void **begin = (void **)ops;
5788 void **end = (void **)&ops->inherits;
5789 void **pp;
5790
5791 if (!ops || !ops->inherits)
5792 return;
5793
5794 spin_lock(&lock);
5795
5796 for (cur = ops->inherits; cur; cur = cur->inherits) {
5797 void **inherit = (void **)cur;
5798
5799 for (pp = begin; pp < end; pp++, inherit++)
5800 if (!*pp)
5801 *pp = *inherit;
5802 }
5803
5804 for (pp = begin; pp < end; pp++)
5805 if (IS_ERR(*pp))
5806 *pp = NULL;
5807
5808 ops->inherits = NULL;
5809
5810 spin_unlock(&lock);
5811}
5812
5813/**
Tejun Heoecef7252007-04-17 23:44:06 +09005814 * ata_host_start - start and freeze ports of an ATA host
5815 * @host: ATA host to start ports for
5816 *
5817 * Start and then freeze ports of @host. Started status is
5818 * recorded in host->flags, so this function can be called
5819 * multiple times. Ports are guaranteed to get started only
Tejun Heof3187192007-04-17 23:44:07 +09005820 * once. If host->ops isn't initialized yet, its set to the
5821 * first non-dummy port ops.
Tejun Heoecef7252007-04-17 23:44:06 +09005822 *
5823 * LOCKING:
5824 * Inherited from calling layer (may sleep).
5825 *
5826 * RETURNS:
5827 * 0 if all ports are started successfully, -errno otherwise.
5828 */
5829int ata_host_start(struct ata_host *host)
5830{
Tejun Heo32ebbc02007-11-08 13:09:00 +09005831 int have_stop = 0;
5832 void *start_dr = NULL;
Tejun Heoecef7252007-04-17 23:44:06 +09005833 int i, rc;
5834
5835 if (host->flags & ATA_HOST_STARTED)
5836 return 0;
5837
Tejun Heo029cfd62008-03-25 12:22:49 +09005838 ata_finalize_port_ops(host->ops);
5839
Tejun Heoecef7252007-04-17 23:44:06 +09005840 for (i = 0; i < host->n_ports; i++) {
5841 struct ata_port *ap = host->ports[i];
5842
Tejun Heo029cfd62008-03-25 12:22:49 +09005843 ata_finalize_port_ops(ap->ops);
5844
Tejun Heof3187192007-04-17 23:44:07 +09005845 if (!host->ops && !ata_port_is_dummy(ap))
5846 host->ops = ap->ops;
5847
Tejun Heo32ebbc02007-11-08 13:09:00 +09005848 if (ap->ops->port_stop)
5849 have_stop = 1;
5850 }
5851
5852 if (host->ops->host_stop)
5853 have_stop = 1;
5854
5855 if (have_stop) {
5856 start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL);
5857 if (!start_dr)
5858 return -ENOMEM;
5859 }
5860
5861 for (i = 0; i < host->n_ports; i++) {
5862 struct ata_port *ap = host->ports[i];
5863
Tejun Heoecef7252007-04-17 23:44:06 +09005864 if (ap->ops->port_start) {
5865 rc = ap->ops->port_start(ap);
5866 if (rc) {
Alan Cox0f9fe9b2007-11-30 15:23:16 +00005867 if (rc != -ENODEV)
Andrew Morton0f757742008-01-10 14:33:09 -08005868 dev_printk(KERN_ERR, host->dev,
5869 "failed to start port %d "
5870 "(errno=%d)\n", i, rc);
Tejun Heoecef7252007-04-17 23:44:06 +09005871 goto err_out;
5872 }
5873 }
Tejun Heoecef7252007-04-17 23:44:06 +09005874 ata_eh_freeze_port(ap);
5875 }
5876
Tejun Heo32ebbc02007-11-08 13:09:00 +09005877 if (start_dr)
5878 devres_add(host->dev, start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005879 host->flags |= ATA_HOST_STARTED;
5880 return 0;
5881
5882 err_out:
5883 while (--i >= 0) {
5884 struct ata_port *ap = host->ports[i];
5885
5886 if (ap->ops->port_stop)
5887 ap->ops->port_stop(ap);
5888 }
Tejun Heo32ebbc02007-11-08 13:09:00 +09005889 devres_free(start_dr);
Tejun Heoecef7252007-04-17 23:44:06 +09005890 return rc;
5891}
5892
5893/**
Jeff Garzikcca39742006-08-24 03:19:22 -04005894 * ata_sas_host_init - Initialize a host struct
5895 * @host: host to initialize
5896 * @dev: device host is attached to
5897 * @flags: host flags
5898 * @ops: port_ops
Brian Kingb03732f2006-08-07 14:27:10 -05005899 *
5900 * LOCKING:
5901 * PCI/etc. bus probe sem.
5902 *
5903 */
Tejun Heof3187192007-04-17 23:44:07 +09005904/* KILLME - the only user left is ipr */
Jeff Garzikcca39742006-08-24 03:19:22 -04005905void ata_host_init(struct ata_host *host, struct device *dev,
Tejun Heo029cfd62008-03-25 12:22:49 +09005906 unsigned long flags, struct ata_port_operations *ops)
Brian Kingb03732f2006-08-07 14:27:10 -05005907{
Jeff Garzikcca39742006-08-24 03:19:22 -04005908 spin_lock_init(&host->lock);
5909 host->dev = dev;
5910 host->flags = flags;
5911 host->ops = ops;
Brian Kingb03732f2006-08-07 14:27:10 -05005912}
5913
Arjan van de Ven79318052009-01-04 05:32:28 -08005914
5915static void async_port_probe(void *data, async_cookie_t cookie)
5916{
5917 int rc;
5918 struct ata_port *ap = data;
5919 /* probe */
5920 if (ap->ops->error_handler) {
5921 struct ata_eh_info *ehi = &ap->link.eh_info;
5922 unsigned long flags;
5923
5924 ata_port_probe(ap);
5925
5926 /* kick EH for boot probing */
5927 spin_lock_irqsave(ap->lock, flags);
5928
5929 ehi->probe_mask |= ATA_ALL_DEVICES;
5930 ehi->action |= ATA_EH_RESET | ATA_EH_LPM;
5931 ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET;
5932
5933 ap->pflags &= ~ATA_PFLAG_INITIALIZING;
5934 ap->pflags |= ATA_PFLAG_LOADING;
5935 ata_port_schedule_eh(ap);
5936
5937 spin_unlock_irqrestore(ap->lock, flags);
5938
5939 /* wait for EH to finish */
5940 ata_port_wait_eh(ap);
5941 } else {
5942 DPRINTK("ata%u: bus probe begin\n", ap->print_id);
5943 rc = ata_bus_probe(ap);
5944 DPRINTK("ata%u: bus probe end\n", ap->print_id);
5945
5946 if (rc) {
5947 /* FIXME: do something useful here?
5948 * Current libata behavior will
5949 * tear down everything when
5950 * the module is removed
5951 * or the h/w is unplugged.
5952 */
5953 }
5954 }
Arjan van de Venf29d3b22009-01-05 15:07:07 -08005955
5956 /* in order to keep device order, we need to synchronize at this point */
5957 async_synchronize_cookie(cookie);
5958
5959 ata_scsi_scan_host(ap, 1);
5960
Arjan van de Ven79318052009-01-04 05:32:28 -08005961}
Brian Kingb03732f2006-08-07 14:27:10 -05005962/**
Tejun Heof3187192007-04-17 23:44:07 +09005963 * ata_host_register - register initialized ATA host
5964 * @host: ATA host to register
5965 * @sht: template for SCSI host
Jeff Garzik0cba6322005-05-30 19:49:12 -04005966 *
Tejun Heof3187192007-04-17 23:44:07 +09005967 * Register initialized ATA host. @host is allocated using
5968 * ata_host_alloc() and fully initialized by LLD. This function
5969 * starts ports, registers @host with ATA and SCSI layers and
5970 * probe registered devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971 *
5972 * LOCKING:
Tejun Heof3187192007-04-17 23:44:07 +09005973 * Inherited from calling layer (may sleep).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974 *
5975 * RETURNS:
Tejun Heof3187192007-04-17 23:44:07 +09005976 * 0 on success, -errno otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977 */
Tejun Heof3187192007-04-17 23:44:07 +09005978int ata_host_register(struct ata_host *host, struct scsi_host_template *sht)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979{
Tejun Heof3187192007-04-17 23:44:07 +09005980 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
Tejun Heof3187192007-04-17 23:44:07 +09005982 /* host must have been started */
5983 if (!(host->flags & ATA_HOST_STARTED)) {
5984 dev_printk(KERN_ERR, host->dev,
5985 "BUG: trying to register unstarted host\n");
5986 WARN_ON(1);
5987 return -EINVAL;
Alan Cox02f076a2006-09-26 17:35:32 +01005988 }
Tejun Heof0d36ef2007-01-20 16:00:28 +09005989
Tejun Heof3187192007-04-17 23:44:07 +09005990 /* Blow away unused ports. This happens when LLD can't
5991 * determine the exact number of ports to allocate at
5992 * allocation time.
5993 */
5994 for (i = host->n_ports; host->ports[i]; i++)
5995 kfree(host->ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996
Tejun Heof3187192007-04-17 23:44:07 +09005997 /* give ports names and add SCSI hosts */
5998 for (i = 0; i < host->n_ports; i++)
5999 host->ports[i]->print_id = ata_print_id++;
Tejun Heof0d36ef2007-01-20 16:00:28 +09006000
Tejun Heof3187192007-04-17 23:44:07 +09006001 rc = ata_scsi_add_hosts(host, sht);
Tejun Heoecef7252007-04-17 23:44:06 +09006002 if (rc)
Tejun Heof3187192007-04-17 23:44:07 +09006003 return rc;
Tejun Heoecef7252007-04-17 23:44:06 +09006004
Tejun Heofafbae82007-05-15 03:28:16 +09006005 /* associate with ACPI nodes */
6006 ata_acpi_associate(host);
6007
Tejun Heof3187192007-04-17 23:44:07 +09006008 /* set cable, sata_spd_limit and report */
Jeff Garzikcca39742006-08-24 03:19:22 -04006009 for (i = 0; i < host->n_ports; i++) {
6010 struct ata_port *ap = host->ports[i];
Tejun Heof3187192007-04-17 23:44:07 +09006011 unsigned long xfer_mask;
6012
6013 /* set SATA cable type if still unset */
6014 if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA))
6015 ap->cbl = ATA_CBL_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016
Tejun Heo5a04bf42006-05-31 18:27:38 +09006017 /* init sata_spd_limit to the current value */
Tejun Heo4fb37a22007-08-06 18:36:23 +09006018 sata_link_init_spd(&ap->link);
Tejun Heob1c72912008-07-31 17:02:43 +09006019 if (ap->slave_link)
6020 sata_link_init_spd(ap->slave_link);
Tejun Heo5a04bf42006-05-31 18:27:38 +09006021
Tejun Heocbcdd872007-08-18 13:14:55 +09006022 /* print per-port info to dmesg */
Tejun Heof3187192007-04-17 23:44:07 +09006023 xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask,
6024 ap->udma_mask);
6025
Tejun Heoabf6e8e2007-10-09 14:57:25 +09006026 if (!ata_port_is_dummy(ap)) {
Tejun Heocbcdd872007-08-18 13:14:55 +09006027 ata_port_printk(ap, KERN_INFO,
6028 "%cATA max %s %s\n",
Tejun Heoa16abc02007-05-21 18:33:47 +02006029 (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P',
Tejun Heof3187192007-04-17 23:44:07 +09006030 ata_mode_string(xfer_mask),
Tejun Heocbcdd872007-08-18 13:14:55 +09006031 ap->link.eh_info.desc);
Tejun Heoabf6e8e2007-10-09 14:57:25 +09006032 ata_ehi_clear_desc(&ap->link.eh_info);
6033 } else
Tejun Heof3187192007-04-17 23:44:07 +09006034 ata_port_printk(ap, KERN_INFO, "DUMMY\n");
6035 }
6036
6037 /* perform each probe synchronously */
6038 DPRINTK("probe begin\n");
6039 for (i = 0; i < host->n_ports; i++) {
6040 struct ata_port *ap = host->ports[i];
Arjan van de Ven79318052009-01-04 05:32:28 -08006041 async_schedule(async_port_probe, ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042 }
Arjan van de Venf29d3b22009-01-05 15:07:07 -08006043 DPRINTK("probe end\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044
Tejun Heof3187192007-04-17 23:44:07 +09006045 return 0;
6046}
6047
6048/**
Tejun Heof5cda252007-04-17 23:44:07 +09006049 * ata_host_activate - start host, request IRQ and register it
6050 * @host: target ATA host
6051 * @irq: IRQ to request
6052 * @irq_handler: irq_handler used when requesting IRQ
6053 * @irq_flags: irq_flags used when requesting IRQ
6054 * @sht: scsi_host_template to use when registering the host
6055 *
6056 * After allocating an ATA host and initializing it, most libata
6057 * LLDs perform three steps to activate the host - start host,
6058 * request IRQ and register it. This helper takes necessasry
6059 * arguments and performs the three steps in one go.
6060 *
Paul Mundt3d46b2e2007-11-08 11:14:56 +09006061 * An invalid IRQ skips the IRQ registration and expects the host to
6062 * have set polling mode on the port. In this case, @irq_handler
6063 * should be NULL.
6064 *
Tejun Heof5cda252007-04-17 23:44:07 +09006065 * LOCKING:
6066 * Inherited from calling layer (may sleep).
6067 *
6068 * RETURNS:
6069 * 0 on success, -errno otherwise.
6070 */
6071int ata_host_activate(struct ata_host *host, int irq,
6072 irq_handler_t irq_handler, unsigned long irq_flags,
6073 struct scsi_host_template *sht)
6074{
Tejun Heocbcdd872007-08-18 13:14:55 +09006075 int i, rc;
Tejun Heof5cda252007-04-17 23:44:07 +09006076
6077 rc = ata_host_start(host);
6078 if (rc)
6079 return rc;
6080
Paul Mundt3d46b2e2007-11-08 11:14:56 +09006081 /* Special case for polling mode */
6082 if (!irq) {
6083 WARN_ON(irq_handler);
6084 return ata_host_register(host, sht);
6085 }
6086
Tejun Heof5cda252007-04-17 23:44:07 +09006087 rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags,
6088 dev_driver_string(host->dev), host);
6089 if (rc)
6090 return rc;
6091
Tejun Heocbcdd872007-08-18 13:14:55 +09006092 for (i = 0; i < host->n_ports; i++)
6093 ata_port_desc(host->ports[i], "irq %d", irq);
Tejun Heo40318262007-07-03 01:38:47 +09006094
Tejun Heof5cda252007-04-17 23:44:07 +09006095 rc = ata_host_register(host, sht);
6096 /* if failed, just free the IRQ and leave ports alone */
6097 if (rc)
6098 devm_free_irq(host->dev, irq, host);
6099
6100 return rc;
6101}
6102
6103/**
Tejun Heo720ba122006-05-31 18:28:13 +09006104 * ata_port_detach - Detach ATA port in prepration of device removal
6105 * @ap: ATA port to be detached
6106 *
6107 * Detach all ATA devices and the associated SCSI devices of @ap;
6108 * then, remove the associated SCSI host. @ap is guaranteed to
6109 * be quiescent on return from this function.
6110 *
6111 * LOCKING:
6112 * Kernel thread context (may sleep).
6113 */
Adrian Bunk741b7762007-10-24 18:23:06 +02006114static void ata_port_detach(struct ata_port *ap)
Tejun Heo720ba122006-05-31 18:28:13 +09006115{
6116 unsigned long flags;
Tejun Heo720ba122006-05-31 18:28:13 +09006117
6118 if (!ap->ops->error_handler)
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006119 goto skip_eh;
Tejun Heo720ba122006-05-31 18:28:13 +09006120
6121 /* tell EH we're leaving & flush EH */
Jeff Garzikba6a1302006-06-22 23:46:10 -04006122 spin_lock_irqsave(ap->lock, flags);
Tejun Heob51e9e52006-06-29 01:29:30 +09006123 ap->pflags |= ATA_PFLAG_UNLOADING;
Tejun Heoece180d2008-11-03 20:04:37 +09006124 ata_port_schedule_eh(ap);
Jeff Garzikba6a1302006-06-22 23:46:10 -04006125 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo720ba122006-05-31 18:28:13 +09006126
Tejun Heoece180d2008-11-03 20:04:37 +09006127 /* wait till EH commits suicide */
Tejun Heo720ba122006-05-31 18:28:13 +09006128 ata_port_wait_eh(ap);
6129
Tejun Heoece180d2008-11-03 20:04:37 +09006130 /* it better be dead now */
6131 WARN_ON(!(ap->pflags & ATA_PFLAG_UNLOADED));
Tejun Heo720ba122006-05-31 18:28:13 +09006132
Oleg Nesterov45a66c12007-07-09 11:46:13 -07006133 cancel_rearming_delayed_work(&ap->hotplug_task);
Tejun Heo720ba122006-05-31 18:28:13 +09006134
Tejun Heoc3cf30a2006-08-05 03:59:11 +09006135 skip_eh:
Tejun Heo720ba122006-05-31 18:28:13 +09006136 /* remove the associated SCSI host */
Jeff Garzikcca39742006-08-24 03:19:22 -04006137 scsi_remove_host(ap->scsi_host);
Tejun Heo720ba122006-05-31 18:28:13 +09006138}
6139
6140/**
Tejun Heo0529c152007-01-20 16:00:26 +09006141 * ata_host_detach - Detach all ports of an ATA host
6142 * @host: Host to detach
6143 *
6144 * Detach all ports of @host.
6145 *
6146 * LOCKING:
6147 * Kernel thread context (may sleep).
6148 */
6149void ata_host_detach(struct ata_host *host)
6150{
6151 int i;
6152
6153 for (i = 0; i < host->n_ports; i++)
6154 ata_port_detach(host->ports[i]);
Tejun Heo562f0c22007-12-15 15:05:01 +09006155
6156 /* the host is dead now, dissociate ACPI */
6157 ata_acpi_dissociate(host);
Tejun Heo0529c152007-01-20 16:00:26 +09006158}
6159
Jeff Garzik374b1872005-08-30 05:42:52 -04006160#ifdef CONFIG_PCI
6161
Edward Falk0baab862005-06-02 18:17:13 -04006162/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163 * ata_pci_remove_one - PCI layer callback for device removal
6164 * @pdev: PCI device that was removed
6165 *
Tejun Heob878ca52007-01-20 16:00:28 +09006166 * PCI layer indicates to libata via this hook that hot-unplug or
6167 * module unload event has occurred. Detach all ports. Resource
6168 * release is handled via devres.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169 *
6170 * LOCKING:
6171 * Inherited from PCI layer (may sleep).
6172 */
Tejun Heof0d36ef2007-01-20 16:00:28 +09006173void ata_pci_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174{
Jeff Garzik28555682007-10-11 17:12:35 -04006175 struct device *dev = &pdev->dev;
Jeff Garzikcca39742006-08-24 03:19:22 -04006176 struct ata_host *host = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177
Tejun Heob878ca52007-01-20 16:00:28 +09006178 ata_host_detach(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179}
6180
6181/* move to PCI subsystem */
Jeff Garzik057ace52005-10-22 14:27:05 -04006182int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183{
6184 unsigned long tmp = 0;
6185
6186 switch (bits->width) {
6187 case 1: {
6188 u8 tmp8 = 0;
6189 pci_read_config_byte(pdev, bits->reg, &tmp8);
6190 tmp = tmp8;
6191 break;
6192 }
6193 case 2: {
6194 u16 tmp16 = 0;
6195 pci_read_config_word(pdev, bits->reg, &tmp16);
6196 tmp = tmp16;
6197 break;
6198 }
6199 case 4: {
6200 u32 tmp32 = 0;
6201 pci_read_config_dword(pdev, bits->reg, &tmp32);
6202 tmp = tmp32;
6203 break;
6204 }
6205
6206 default:
6207 return -EINVAL;
6208 }
6209
6210 tmp &= bits->mask;
6211
6212 return (tmp == bits->val) ? 1 : 0;
6213}
Jens Axboe9b847542006-01-06 09:28:07 +01006214
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006215#ifdef CONFIG_PM
Tejun Heo3c5100c2006-07-26 16:58:33 +09006216void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg)
Jens Axboe9b847542006-01-06 09:28:07 +01006217{
6218 pci_save_state(pdev);
Tejun Heo4c90d972007-02-20 18:14:48 +09006219 pci_disable_device(pdev);
Tejun Heo500530f2006-07-03 16:07:27 +09006220
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01006221 if (mesg.event & PM_EVENT_SLEEP)
Tejun Heo500530f2006-07-03 16:07:27 +09006222 pci_set_power_state(pdev, PCI_D3hot);
Jens Axboe9b847542006-01-06 09:28:07 +01006223}
6224
Tejun Heo553c4aa2006-12-26 19:39:50 +09006225int ata_pci_device_do_resume(struct pci_dev *pdev)
Jens Axboe9b847542006-01-06 09:28:07 +01006226{
Tejun Heo553c4aa2006-12-26 19:39:50 +09006227 int rc;
6228
Jens Axboe9b847542006-01-06 09:28:07 +01006229 pci_set_power_state(pdev, PCI_D0);
6230 pci_restore_state(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006231
Tejun Heob878ca52007-01-20 16:00:28 +09006232 rc = pcim_enable_device(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006233 if (rc) {
6234 dev_printk(KERN_ERR, &pdev->dev,
6235 "failed to enable device after resume (%d)\n", rc);
6236 return rc;
6237 }
6238
Jens Axboe9b847542006-01-06 09:28:07 +01006239 pci_set_master(pdev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006240 return 0;
Tejun Heo500530f2006-07-03 16:07:27 +09006241}
6242
Tejun Heo3c5100c2006-07-26 16:58:33 +09006243int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
Tejun Heo500530f2006-07-03 16:07:27 +09006244{
Jeff Garzikcca39742006-08-24 03:19:22 -04006245 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo500530f2006-07-03 16:07:27 +09006246 int rc = 0;
6247
Jeff Garzikcca39742006-08-24 03:19:22 -04006248 rc = ata_host_suspend(host, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006249 if (rc)
6250 return rc;
6251
Tejun Heo3c5100c2006-07-26 16:58:33 +09006252 ata_pci_device_do_suspend(pdev, mesg);
Tejun Heo500530f2006-07-03 16:07:27 +09006253
6254 return 0;
6255}
6256
6257int ata_pci_device_resume(struct pci_dev *pdev)
6258{
Jeff Garzikcca39742006-08-24 03:19:22 -04006259 struct ata_host *host = dev_get_drvdata(&pdev->dev);
Tejun Heo553c4aa2006-12-26 19:39:50 +09006260 int rc;
Tejun Heo500530f2006-07-03 16:07:27 +09006261
Tejun Heo553c4aa2006-12-26 19:39:50 +09006262 rc = ata_pci_device_do_resume(pdev);
6263 if (rc == 0)
6264 ata_host_resume(host);
6265 return rc;
Jens Axboe9b847542006-01-06 09:28:07 +01006266}
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006267#endif /* CONFIG_PM */
6268
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269#endif /* CONFIG_PCI */
6270
Tejun Heo33267322008-02-13 09:15:09 +09006271static int __init ata_parse_force_one(char **cur,
6272 struct ata_force_ent *force_ent,
6273 const char **reason)
6274{
6275 /* FIXME: Currently, there's no way to tag init const data and
6276 * using __initdata causes build failure on some versions of
6277 * gcc. Once __initdataconst is implemented, add const to the
6278 * following structure.
6279 */
6280 static struct ata_force_param force_tbl[] __initdata = {
6281 { "40c", .cbl = ATA_CBL_PATA40 },
6282 { "80c", .cbl = ATA_CBL_PATA80 },
6283 { "short40c", .cbl = ATA_CBL_PATA40_SHORT },
6284 { "unk", .cbl = ATA_CBL_PATA_UNK },
6285 { "ign", .cbl = ATA_CBL_PATA_IGN },
6286 { "sata", .cbl = ATA_CBL_SATA },
6287 { "1.5Gbps", .spd_limit = 1 },
6288 { "3.0Gbps", .spd_limit = 2 },
6289 { "noncq", .horkage_on = ATA_HORKAGE_NONCQ },
6290 { "ncq", .horkage_off = ATA_HORKAGE_NONCQ },
6291 { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) },
6292 { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) },
6293 { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) },
6294 { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) },
6295 { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) },
6296 { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) },
6297 { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) },
6298 { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) },
6299 { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) },
6300 { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) },
6301 { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) },
6302 { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) },
6303 { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
6304 { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
6305 { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) },
6306 { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
6307 { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
6308 { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) },
6309 { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
6310 { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
6311 { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) },
6312 { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
6313 { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
6314 { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) },
6315 { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
6316 { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
6317 { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) },
6318 { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
6319 { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
6320 { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) },
6321 { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
6322 { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
6323 { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) },
6324 { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) },
Tejun Heo05944bd2008-08-13 20:19:09 +09006325 { "nohrst", .lflags = ATA_LFLAG_NO_HRST },
6326 { "nosrst", .lflags = ATA_LFLAG_NO_SRST },
6327 { "norst", .lflags = ATA_LFLAG_NO_HRST | ATA_LFLAG_NO_SRST },
Tejun Heo33267322008-02-13 09:15:09 +09006328 };
6329 char *start = *cur, *p = *cur;
6330 char *id, *val, *endp;
6331 const struct ata_force_param *match_fp = NULL;
6332 int nr_matches = 0, i;
6333
6334 /* find where this param ends and update *cur */
6335 while (*p != '\0' && *p != ',')
6336 p++;
6337
6338 if (*p == '\0')
6339 *cur = p;
6340 else
6341 *cur = p + 1;
6342
6343 *p = '\0';
6344
6345 /* parse */
6346 p = strchr(start, ':');
6347 if (!p) {
6348 val = strstrip(start);
6349 goto parse_val;
6350 }
6351 *p = '\0';
6352
6353 id = strstrip(start);
6354 val = strstrip(p + 1);
6355
6356 /* parse id */
6357 p = strchr(id, '.');
6358 if (p) {
6359 *p++ = '\0';
6360 force_ent->device = simple_strtoul(p, &endp, 10);
6361 if (p == endp || *endp != '\0') {
6362 *reason = "invalid device";
6363 return -EINVAL;
6364 }
6365 }
6366
6367 force_ent->port = simple_strtoul(id, &endp, 10);
6368 if (p == endp || *endp != '\0') {
6369 *reason = "invalid port/link";
6370 return -EINVAL;
6371 }
6372
6373 parse_val:
6374 /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */
6375 for (i = 0; i < ARRAY_SIZE(force_tbl); i++) {
6376 const struct ata_force_param *fp = &force_tbl[i];
6377
6378 if (strncasecmp(val, fp->name, strlen(val)))
6379 continue;
6380
6381 nr_matches++;
6382 match_fp = fp;
6383
6384 if (strcasecmp(val, fp->name) == 0) {
6385 nr_matches = 1;
6386 break;
6387 }
6388 }
6389
6390 if (!nr_matches) {
6391 *reason = "unknown value";
6392 return -EINVAL;
6393 }
6394 if (nr_matches > 1) {
6395 *reason = "ambigious value";
6396 return -EINVAL;
6397 }
6398
6399 force_ent->param = *match_fp;
6400
6401 return 0;
6402}
6403
6404static void __init ata_parse_force_param(void)
6405{
6406 int idx = 0, size = 1;
6407 int last_port = -1, last_device = -1;
6408 char *p, *cur, *next;
6409
6410 /* calculate maximum number of params and allocate force_tbl */
6411 for (p = ata_force_param_buf; *p; p++)
6412 if (*p == ',')
6413 size++;
6414
6415 ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL);
6416 if (!ata_force_tbl) {
6417 printk(KERN_WARNING "ata: failed to extend force table, "
6418 "libata.force ignored\n");
6419 return;
6420 }
6421
6422 /* parse and populate the table */
6423 for (cur = ata_force_param_buf; *cur != '\0'; cur = next) {
6424 const char *reason = "";
6425 struct ata_force_ent te = { .port = -1, .device = -1 };
6426
6427 next = cur;
6428 if (ata_parse_force_one(&next, &te, &reason)) {
6429 printk(KERN_WARNING "ata: failed to parse force "
6430 "parameter \"%s\" (%s)\n",
6431 cur, reason);
6432 continue;
6433 }
6434
6435 if (te.port == -1) {
6436 te.port = last_port;
6437 te.device = last_device;
6438 }
6439
6440 ata_force_tbl[idx++] = te;
6441
6442 last_port = te.port;
6443 last_device = te.device;
6444 }
6445
6446 ata_force_tbl_size = idx;
6447}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449static int __init ata_init(void)
6450{
Tejun Heo33267322008-02-13 09:15:09 +09006451 ata_parse_force_param();
6452
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453 ata_wq = create_workqueue("ata");
6454 if (!ata_wq)
Elias Oltmanns49ea3b02008-07-30 12:32:39 -07006455 goto free_force_tbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456
Tejun Heo453b07a2006-05-31 18:27:42 +09006457 ata_aux_wq = create_singlethread_workqueue("ata_aux");
Elias Oltmanns49ea3b02008-07-30 12:32:39 -07006458 if (!ata_aux_wq)
6459 goto free_wq;
Tejun Heo453b07a2006-05-31 18:27:42 +09006460
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461 printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n");
6462 return 0;
Elias Oltmanns49ea3b02008-07-30 12:32:39 -07006463
6464free_wq:
6465 destroy_workqueue(ata_wq);
6466free_force_tbl:
6467 kfree(ata_force_tbl);
6468 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469}
6470
6471static void __exit ata_exit(void)
6472{
Tejun Heo33267322008-02-13 09:15:09 +09006473 kfree(ata_force_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474 destroy_workqueue(ata_wq);
Tejun Heo453b07a2006-05-31 18:27:42 +09006475 destroy_workqueue(ata_aux_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476}
6477
Brian Kinga4625082006-11-13 16:32:36 -06006478subsys_initcall(ata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479module_exit(ata_exit);
6480
Jeff Garzik67846b32005-10-05 02:58:32 -04006481static unsigned long ratelimit_time;
Ingo Molnar34af9462006-06-27 02:53:55 -07006482static DEFINE_SPINLOCK(ata_ratelimit_lock);
Jeff Garzik67846b32005-10-05 02:58:32 -04006483
6484int ata_ratelimit(void)
6485{
6486 int rc;
6487 unsigned long flags;
6488
6489 spin_lock_irqsave(&ata_ratelimit_lock, flags);
6490
6491 if (time_after(jiffies, ratelimit_time)) {
6492 rc = 1;
6493 ratelimit_time = jiffies + (HZ/5);
6494 } else
6495 rc = 0;
6496
6497 spin_unlock_irqrestore(&ata_ratelimit_lock, flags);
6498
6499 return rc;
6500}
6501
Tejun Heoc22daff2006-04-11 22:22:29 +09006502/**
6503 * ata_wait_register - wait until register value changes
6504 * @reg: IO-mapped register
6505 * @mask: Mask to apply to read register value
6506 * @val: Wait condition
Tejun Heo341c2c92008-05-20 02:17:51 +09006507 * @interval: polling interval in milliseconds
6508 * @timeout: timeout in milliseconds
Tejun Heoc22daff2006-04-11 22:22:29 +09006509 *
6510 * Waiting for some bits of register to change is a common
6511 * operation for ATA controllers. This function reads 32bit LE
6512 * IO-mapped register @reg and tests for the following condition.
6513 *
6514 * (*@reg & mask) != val
6515 *
6516 * If the condition is met, it returns; otherwise, the process is
6517 * repeated after @interval_msec until timeout.
6518 *
6519 * LOCKING:
6520 * Kernel thread context (may sleep)
6521 *
6522 * RETURNS:
6523 * The final register value.
6524 */
6525u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val,
Tejun Heo341c2c92008-05-20 02:17:51 +09006526 unsigned long interval, unsigned long timeout)
Tejun Heoc22daff2006-04-11 22:22:29 +09006527{
Tejun Heo341c2c92008-05-20 02:17:51 +09006528 unsigned long deadline;
Tejun Heoc22daff2006-04-11 22:22:29 +09006529 u32 tmp;
6530
6531 tmp = ioread32(reg);
6532
6533 /* Calculate timeout _after_ the first read to make sure
6534 * preceding writes reach the controller before starting to
6535 * eat away the timeout.
6536 */
Tejun Heo341c2c92008-05-20 02:17:51 +09006537 deadline = ata_deadline(jiffies, timeout);
Tejun Heoc22daff2006-04-11 22:22:29 +09006538
Tejun Heo341c2c92008-05-20 02:17:51 +09006539 while ((tmp & mask) == val && time_before(jiffies, deadline)) {
6540 msleep(interval);
Tejun Heoc22daff2006-04-11 22:22:29 +09006541 tmp = ioread32(reg);
6542 }
6543
6544 return tmp;
6545}
6546
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547/*
Tejun Heodd5b06c2006-08-10 16:59:12 +09006548 * Dummy port_ops
6549 */
Tejun Heodd5b06c2006-08-10 16:59:12 +09006550static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc)
6551{
6552 return AC_ERR_SYSTEM;
6553}
6554
Tejun Heo182d7bb2008-04-07 22:47:21 +09006555static void ata_dummy_error_handler(struct ata_port *ap)
6556{
6557 /* truly dummy */
6558}
6559
Tejun Heo029cfd62008-03-25 12:22:49 +09006560struct ata_port_operations ata_dummy_port_ops = {
Tejun Heodd5b06c2006-08-10 16:59:12 +09006561 .qc_prep = ata_noop_qc_prep,
6562 .qc_issue = ata_dummy_qc_issue,
Tejun Heo182d7bb2008-04-07 22:47:21 +09006563 .error_handler = ata_dummy_error_handler,
Tejun Heodd5b06c2006-08-10 16:59:12 +09006564};
6565
Tejun Heo21b0ad42007-04-17 23:44:07 +09006566const struct ata_port_info ata_dummy_port_info = {
6567 .port_ops = &ata_dummy_port_ops,
6568};
6569
Tejun Heodd5b06c2006-08-10 16:59:12 +09006570/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571 * libata is essentially a library of internal helper functions for
6572 * low-level ATA host controller drivers. As such, the API/ABI is
6573 * likely to change as new drivers are added and updated.
6574 * Do not depend on ABI/API stability.
6575 */
Tejun Heoe9c83912006-07-03 16:07:26 +09006576EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
6577EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
6578EXPORT_SYMBOL_GPL(sata_deb_timing_long);
Tejun Heo029cfd62008-03-25 12:22:49 +09006579EXPORT_SYMBOL_GPL(ata_base_port_ops);
6580EXPORT_SYMBOL_GPL(sata_port_ops);
Tejun Heodd5b06c2006-08-10 16:59:12 +09006581EXPORT_SYMBOL_GPL(ata_dummy_port_ops);
Tejun Heo21b0ad42007-04-17 23:44:07 +09006582EXPORT_SYMBOL_GPL(ata_dummy_port_info);
Tejun Heo1eca4362008-11-03 20:03:17 +09006583EXPORT_SYMBOL_GPL(ata_link_next);
6584EXPORT_SYMBOL_GPL(ata_dev_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006585EXPORT_SYMBOL_GPL(ata_std_bios_param);
Jeff Garzikcca39742006-08-24 03:19:22 -04006586EXPORT_SYMBOL_GPL(ata_host_init);
Tejun Heof3187192007-04-17 23:44:07 +09006587EXPORT_SYMBOL_GPL(ata_host_alloc);
Tejun Heof5cda252007-04-17 23:44:07 +09006588EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo);
Tejun Heob1c72912008-07-31 17:02:43 +09006589EXPORT_SYMBOL_GPL(ata_slave_link_init);
Tejun Heoecef7252007-04-17 23:44:06 +09006590EXPORT_SYMBOL_GPL(ata_host_start);
Tejun Heof3187192007-04-17 23:44:07 +09006591EXPORT_SYMBOL_GPL(ata_host_register);
Tejun Heof5cda252007-04-17 23:44:07 +09006592EXPORT_SYMBOL_GPL(ata_host_activate);
Tejun Heo0529c152007-01-20 16:00:26 +09006593EXPORT_SYMBOL_GPL(ata_host_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594EXPORT_SYMBOL_GPL(ata_sg_init);
Tejun Heof686bcb2006-05-15 20:58:05 +09006595EXPORT_SYMBOL_GPL(ata_qc_complete);
Tejun Heodedaf2b2006-05-15 21:03:43 +09006596EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
Tejun Heo436d34b2008-04-02 17:28:46 +09006597EXPORT_SYMBOL_GPL(atapi_cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598EXPORT_SYMBOL_GPL(ata_tf_to_fis);
6599EXPORT_SYMBOL_GPL(ata_tf_from_fis);
Tejun Heo63573572007-11-27 19:43:39 +09006600EXPORT_SYMBOL_GPL(ata_pack_xfermask);
6601EXPORT_SYMBOL_GPL(ata_unpack_xfermask);
6602EXPORT_SYMBOL_GPL(ata_xfer_mask2mode);
6603EXPORT_SYMBOL_GPL(ata_xfer_mode2mask);
6604EXPORT_SYMBOL_GPL(ata_xfer_mode2shift);
6605EXPORT_SYMBOL_GPL(ata_mode_string);
6606EXPORT_SYMBOL_GPL(ata_id_xfermask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607EXPORT_SYMBOL_GPL(ata_port_start);
Alan04351822007-03-06 02:37:52 -08006608EXPORT_SYMBOL_GPL(ata_do_set_mode);
Tejun Heo31cc23b2007-09-23 13:14:12 +09006609EXPORT_SYMBOL_GPL(ata_std_qc_defer);
Brian Kinge46834c2006-03-17 17:04:03 -06006610EXPORT_SYMBOL_GPL(ata_noop_qc_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611EXPORT_SYMBOL_GPL(ata_port_probe);
Alan10305f02007-02-20 18:01:59 +00006612EXPORT_SYMBOL_GPL(ata_dev_disable);
Tejun Heo3c567b72006-05-15 20:57:23 +09006613EXPORT_SYMBOL_GPL(sata_set_spd);
Tejun Heoaa2731a2008-04-07 22:47:19 +09006614EXPORT_SYMBOL_GPL(ata_wait_after_reset);
Tejun Heo936fd732007-08-06 18:36:23 +09006615EXPORT_SYMBOL_GPL(sata_link_debounce);
6616EXPORT_SYMBOL_GPL(sata_link_resume);
Tejun Heo0aa11132008-04-07 22:47:18 +09006617EXPORT_SYMBOL_GPL(ata_std_prereset);
Tejun Heocc0680a2007-08-06 18:36:23 +09006618EXPORT_SYMBOL_GPL(sata_link_hardreset);
Tejun Heo57c9efd2008-04-07 22:47:19 +09006619EXPORT_SYMBOL_GPL(sata_std_hardreset);
Tejun Heo203c75b2008-04-07 22:47:18 +09006620EXPORT_SYMBOL_GPL(ata_std_postreset);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05006621EXPORT_SYMBOL_GPL(ata_dev_classify);
6622EXPORT_SYMBOL_GPL(ata_dev_pair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623EXPORT_SYMBOL_GPL(ata_port_disable);
Jeff Garzik67846b32005-10-05 02:58:32 -04006624EXPORT_SYMBOL_GPL(ata_ratelimit);
Tejun Heoc22daff2006-04-11 22:22:29 +09006625EXPORT_SYMBOL_GPL(ata_wait_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
6627EXPORT_SYMBOL_GPL(ata_scsi_queuecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
Tejun Heo83c47bc2006-05-31 18:28:07 +09006629EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09006630EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
Tejun Heo34bf2172006-05-15 20:57:46 +09006631EXPORT_SYMBOL_GPL(sata_scr_valid);
6632EXPORT_SYMBOL_GPL(sata_scr_read);
6633EXPORT_SYMBOL_GPL(sata_scr_write);
6634EXPORT_SYMBOL_GPL(sata_scr_write_flush);
Tejun Heo936fd732007-08-06 18:36:23 +09006635EXPORT_SYMBOL_GPL(ata_link_online);
6636EXPORT_SYMBOL_GPL(ata_link_offline);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006637#ifdef CONFIG_PM
Jeff Garzikcca39742006-08-24 03:19:22 -04006638EXPORT_SYMBOL_GPL(ata_host_suspend);
6639EXPORT_SYMBOL_GPL(ata_host_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006640#endif /* CONFIG_PM */
Tejun Heo6a62a042006-02-13 10:02:46 +09006641EXPORT_SYMBOL_GPL(ata_id_string);
6642EXPORT_SYMBOL_GPL(ata_id_c_string);
Alan Cox963e4972008-07-24 17:16:06 +01006643EXPORT_SYMBOL_GPL(ata_do_dev_read_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644EXPORT_SYMBOL_GPL(ata_scsi_simulate);
6645
Alan Cox1bc4ccf2006-01-09 17:18:14 +00006646EXPORT_SYMBOL_GPL(ata_pio_need_iordy);
Tejun Heo63573572007-11-27 19:43:39 +09006647EXPORT_SYMBOL_GPL(ata_timing_find_mode);
Alan Cox452503f2005-10-21 19:01:32 -04006648EXPORT_SYMBOL_GPL(ata_timing_compute);
6649EXPORT_SYMBOL_GPL(ata_timing_merge);
Tejun Heoa0f79b92007-12-18 16:33:05 +09006650EXPORT_SYMBOL_GPL(ata_timing_cycle2mode);
Alan Cox452503f2005-10-21 19:01:32 -04006651
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652#ifdef CONFIG_PCI
6653EXPORT_SYMBOL_GPL(pci_test_config_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654EXPORT_SYMBOL_GPL(ata_pci_remove_one);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006655#ifdef CONFIG_PM
Tejun Heo500530f2006-07-03 16:07:27 +09006656EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend);
6657EXPORT_SYMBOL_GPL(ata_pci_device_do_resume);
Jens Axboe9b847542006-01-06 09:28:07 +01006658EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
6659EXPORT_SYMBOL_GPL(ata_pci_device_resume);
Tejun Heo6ffa01d2007-03-02 17:32:47 +09006660#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661#endif /* CONFIG_PCI */
Jens Axboe9b847542006-01-06 09:28:07 +01006662
Tejun Heob64bbc32007-07-16 14:29:39 +09006663EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
6664EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
6665EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
Tejun Heocbcdd872007-08-18 13:14:55 +09006666EXPORT_SYMBOL_GPL(ata_port_desc);
6667#ifdef CONFIG_PCI
6668EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
6669#endif /* CONFIG_PCI */
Tejun Heo7b70fc02006-05-15 20:58:07 +09006670EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
Tejun Heodbd82612007-08-06 18:36:23 +09006671EXPORT_SYMBOL_GPL(ata_link_abort);
Tejun Heo7b70fc02006-05-15 20:58:07 +09006672EXPORT_SYMBOL_GPL(ata_port_abort);
Tejun Heoe3180492006-05-15 20:58:09 +09006673EXPORT_SYMBOL_GPL(ata_port_freeze);
Tejun Heo7d77b242007-09-23 13:14:13 +09006674EXPORT_SYMBOL_GPL(sata_async_notification);
Tejun Heoe3180492006-05-15 20:58:09 +09006675EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
6676EXPORT_SYMBOL_GPL(ata_eh_thaw_port);
Tejun Heoece1d632006-04-02 18:51:53 +09006677EXPORT_SYMBOL_GPL(ata_eh_qc_complete);
6678EXPORT_SYMBOL_GPL(ata_eh_qc_retry);
Mark Lord10acf3b2008-05-02 02:14:53 -04006679EXPORT_SYMBOL_GPL(ata_eh_analyze_ncq_error);
Tejun Heo022bdb02006-05-15 20:58:22 +09006680EXPORT_SYMBOL_GPL(ata_do_eh);
Tejun Heoa1efdab2008-03-25 12:22:50 +09006681EXPORT_SYMBOL_GPL(ata_std_error_handler);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006682
6683EXPORT_SYMBOL_GPL(ata_cable_40wire);
6684EXPORT_SYMBOL_GPL(ata_cable_80wire);
6685EXPORT_SYMBOL_GPL(ata_cable_unknown);
Tejun Heoc88f90c2007-11-27 19:43:48 +09006686EXPORT_SYMBOL_GPL(ata_cable_ignore);
Alan Coxbe0d18d2007-03-06 02:37:56 -08006687EXPORT_SYMBOL_GPL(ata_cable_sata);